
@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/BebasNeue-Regular.otf') format('opentype'),
        url('../fonts/BebasNeue-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'BebasNeue';
    src: url('../fonts/BebasNeue-Bold.otf') format('opentype'),
        url('../fonts/BebasNeue-Bold.ttf') format('truetype');
    font-weight: 700;
}

html {
    -webkit-font-smoothing: antialiased;
    -webkit-text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

p {
    margin: 0;
}

a,
a:focus,
a:hover {
    text-decoration: none;
    color: #0e314c;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

h1,
h2,
h3 {
    font-weight: 700;
    font-family: 'BebasNeue';
    color: #0e314c;
}

h4,
h5,
h6 {
    font-weight: 400;
}

input,
button,
textarea,
select {
    font-family: 'Arial', sans-serif;
    outline: none;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: none;
}

.no-padding {
    padding: 0 !important;
}

.fixed-header {
    position: fixed;
    z-index: 99;
    background: #FFF;
    width: 100%;
}

.no-margin {
    margin: 0 !important;
}

.centered-img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

/*buttons*/
.btn {
    font-family: 'BebasNeue';
    font-weight: 400;
    font-size: 16px;
    line-height: 50px;
    letter-spacing: 2px;
    border: none;
    padding: 0 35px;
    position: relative;
    border-radius: 4px;
    z-index: 1;
    text-transform: uppercase;
    transition: .5s;
}

.btn::after,
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    transition: .5s;
    background: #c679e3;
    z-index: -1
}

.btn::after {
    left: 0;
    border-radius: 4px 0 0 4px
}

.btn::before {
    right: 0;
    border-radius: 0 4px 4px 0
}

.btn:hover::after,
.btn:hover::before {
    width: 50%
}

.btn-green {
    color: #fff !important;
    background-color: #44ce6f;
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, .25);
    margin-left: 10px;
}

.btn-green:active,
.btn-green:focus,
.btn-green:hover {
    color: #fff;
    background: #0e314c;
    transform: translateY(-5px);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, .25)
}

.btn-blue {
    color: #fff;
    background-color: #c679e3;
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, .25)
}

.btn-blue::after,
.btn-blue::before {
    background: #44ce6f;
}

.btn-blue:active,
.btn-blue:focus,
.btn-blue:hover {
    color: #fff;
    background: #0e314c;
    transform: translateY(-5px);
    box-shadow: 0 13px 27px 0 rgba(198, 121, 227, .25)
}

.btn-group-sm>.btn,
.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

/*form*/
ul.form-list {
    position: relative;
}

ul.form-list>li {
    margin-bottom: 10px;
    position: relative;
}

.input-box {
    position: relative;
}

ul.form-list>li .icon {
    position: relative;
}

ul.form-list>li .icon>img {
    position: absolute;
    top: 50%;
    left: 0px;
    transform: translateY(-50%);
}

ul.form-list>li .icon>i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: #44ce6f;
    font-size: 16px;
}

ul.form-list>li .icon .form-control {
    padding-left: 30px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0 20px;
    font-size: 14px;
    line-height: 40px;
    color: #6084a4;
    height: auto;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    font-weight: 500;
    box-shadow: none;
    border-radius: 0px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
}

.form-control:focus {
    border-color: #44ce6f;
    box-shadow: none;
}

.form-control::placeholder {
    color: #6084a4;
}

select.form-control {
    min-height: 44px;
}

select.form-control option {
    color: #6084a4;
}

.form-control[disabled],
fieldset[disabled] .form-control {
    background: transparent;
}

/*body*/
body {
    color: #6084a4;
    font-size: 14px;
    line-height: 1.3;
    font-family: 'Arial';
    font-weight: 300;
    position: relative;
}

.main-banner {
    z-index: 1;
    position: relative;
    background: url(../images/banner-bg.jpg) right top no-repeat;
}

.shape1 {
    position: absolute;
    top: 60px;
    z-index: -1;
    left: 30px;
    -webkit-animation: 4s linear infinite rotate3d;
    animation: 4s linear infinite rotate3d;
    opacity: .4
}

.shape2 {
    position: absolute;
    z-index: -1;
    top: 48%;
    left: 15%
}

.shape3 {
    position: absolute;
    left: 25%;
    bottom: 15%;
    z-index: -1;
    -webkit-animation: 15s linear infinite animationFramesOne;
    animation: 15s linear infinite animationFramesOne
}

.shape4 {
    position: absolute;
    right: 25%;
    bottom: 15%;
    z-index: -1;
    -webkit-animation: 20s linear infinite animationFramesOne;
    animation: 20s linear infinite animationFramesOne
}

.shape5 {
    position: absolute;
    right: 5%;
    top: 10%;
    z-index: -1;
    -webkit-animation: 5s linear infinite movebounce;
    animation: 5s linear infinite movebounce;
    opacity: .2
}

.shape6 {
    position: absolute;
    z-index: -1;
    top: 40%;
    right: 10%
}

.shape7 {
    position: absolute;
    left: 25%;
    top: 15%;
    z-index: -1;
    -webkit-animation: 20s linear infinite animationFramesOne;
    animation: 20s linear infinite animationFramesOne
}

.shape8 {
    position: absolute;
    z-index: -1;
    top: 15%;
    right: 10%
}

@-webkit-keyframes movebounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }
}

@keyframes movebounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(20px)
    }
}

@-webkit-keyframes moveleftbounce {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(20px)
    }
}

@keyframes moveleftbounce {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(20px)
    }
}

.rotateme {
    -webkit-animation-name: rotateme;
    animation-name: rotateme;
    -webkit-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear
}

@keyframes rotateme {
    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes rotate3d {
    0% {
        transform: rotateY(0)
    }

    100% {
        transform: rotateY(360deg)
    }
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0)
    }

    100% {
        transform: rotateY(360deg)
    }
}

@keyframes animationFramesOne {

    0%,
    100% {
        transform: translate(0, 0) rotate(0)
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg)
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg)
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg)
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg)
    }
}

@-webkit-keyframes animationFramesOne {

    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0)
    }

    20% {
        -webkit-transform: translate(73px, -1px) rotate(36deg)
    }

    40% {
        -webkit-transform: translate(141px, 72px) rotate(72deg)
    }

    60% {
        -webkit-transform: translate(83px, 122px) rotate(108deg)
    }

    80% {
        -webkit-transform: translate(-40px, 72px) rotate(144deg)
    }
}

/*header*/
header {
    position: relative;
}

.bottom-header {
    position: relative;
    padding: 15px 0;
}

.logo {
    float: left;
    margin: 10px 0;
    position: relative;
}

.logo a img {
    display: block;
    max-height: 55px;
}

.menu {
    float: right;
}

.menu {
    float: left;
    margin-top: 20px;
}

.menu>li {
    float: left;
    position: relative;
}

.menu>li>a {
    display: block;
    font-size: 13px;
    line-height: 35px;
    letter-spacing: 2px;
    padding: 0 15px;
    transition: 0.6s all;
    -webkit-transition: 0.6s all;
    -moz-transition: 0.6s all;
    text-transform: uppercase;
    color: #4a6f8a;
    font-weight: 700;
}

.menu>li>a:hover {
    color: #44ce6f;
}

.submenu {
    position: absolute;
    visibility: hidden;
    top: 60px;
    height: max-content;
    width: 150px;
    padding: 10px 0;
    background: #eee;
    z-index: 99;
}

.submenu>li>a {
    display: block;
    font-size: 12px;
    line-height: 29px;
    letter-spacing: 2px;
    padding: 0 15px;
    text-transform: uppercase;
    color: #4a6f8a;
    font-weight: 700;
}

.menu>li:hover .submenu {
    visibility: visible;
}

.user-btn {
    float: right;
    margin-top: 10px;
}

.user-btn>li {
    float: left;
    margin-left: 10px;
}

.user-btn>li a.btn {
    line-height: 40px;
}

/*titles*/
.section-title {
    position: relative;
    margin-bottom: 30px;
}

.section-title.text-center {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 40px;
    text-transform: uppercase;
    color: #0e314c;
    letter-spacing: 2px;
    margin-bottom: 0;
    line-height: 1;
}

.section-title .bar {
    height: 5px;
    width: 90px;
    background: #cdf1d8;
    margin: 20px 0 20px 0;
    position: relative;
    border-radius: 30px;
}

.section-title.text-center .bar {
    margin: 20px auto;
}

.section-title .bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: -2.7px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #44ce6f;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: MOVE-BG;
    animation-name: MOVE-BG;
}

@-webkit-keyframes MOVE-BG {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(88px)
    }
}

@keyframes MOVE-BG {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(88px)
    }
}

.section-title p {
    font-size: 20px;
    margin-top: 10px;
    line-height: 30px;
    letter-spacing: 0.5px;
}

/*footer*/
footer {
    padding-top: 80px;
    position: relative;
    z-index: 1;
    background-color: #f7fafd;
}

footer .map {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: -1;
    bottom: 0;
    opacity: .7;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-widget {
    padding-left: 40px;
}

.footer-widget h3 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    border-bottom: 1px solid #d8ebfd;
    padding-bottom: 10px;
}

.footer-widget ul.list li {
    margin-bottom: 10px;
    line-height: 24px;
}

.footer-widget ul.list li:last-child {
    margin-bottom: 0;
}

.footer-widget ul.list li a {
    color: #6084a4;
    transition: 0.5s;
    font-size: 16px;
    font-weight: 400;
}

.footer-widget ul.list li a:hover {
    color: #44ce6f;
    padding-left: 7px;
}

.copyright-area {
    margin-top: 80px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #d8ebfd;
    text-align: center;
}

.copyright-area p {
    font-size: 15px;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    padding-left: 15px;
    position: relative;
    line-height: 24px;
    font-size: 16px;
}

.footer-contact i {
    color: #44ce6f;
    font-size: 15px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}

.ft-social-media li {
    float: left;
    margin-right: 15px;
}

.ft-social-media li:last-child {
    margin-right: 0;
}

.actual-price{
    text-decoration: line-through;
    color: gray;
    margin-right: 8px;
}
.discounted-price{
    color: #ff5722;
    font-weight: bold;
}
.ft-social-media li a {
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    background-color: #44ce6f;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    text-align: center;
    font-size: 15px;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 13px 27px 0 rgba(68, 206, 111, .25);
}

.ft-social-media li a:hover {
    background-color: #c679e3;
}

.footer-cert p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    padding-left: 110px;
    background: url(../images/flag.png) no-repeat 0 50%;
    background-size: auto 90px;
}

.footer-cert p span {
    display: block;
    color: #44ce6f;
    font-size: 24px;
    font-weight: 400;
}

/*Main Section*/
.second-banner {
    padding: 80px 0;
}

.banner-caption {
    margin-top: 50px;
}

.banner-caption h1 {
    font-size: 54px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0e314c;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-caption p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

.banner-img {
    position: relative;
    top: -30px;
}

/*full width silder*/
.full-width-slider {
    position: relative;
}

#flex-2 .slides>li {
    /*	padding:120px 0 120px 0;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 0 0;
    height: 500px;
}

.banner-text.white,
.banner-text.white h2 {
    color: #fff;
}

.banner-text h2 {
    font-size: 54px;
    line-height: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-text p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
}

/*why*/
.why-choose-us {
    padding: 80px 0;
}

/*service*/
.service {
    position: relative;
}

.service-box {
    border: 1px dashed #cdf1d8;
    padding: 20px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px rgba(72, 69, 224, .1);
    transition: 0.6s all;
    -webkit-transition: 0.6s all;
    -moz-transition: 0.6s all;
}

.service-box .iconed {
    display: inline-block;
    text-align: center;
    width: 85px;
    height: 85px;
    line-height: 85px;
    background: #cdf1d8;
    border-radius: 50%;
    color: #44ce6f;
    transition: .5s;
}

.service-box .iconed img {
    height: 50px;
}

.service-box h3 {
    font-family: 'Arial';
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
    transition: .5s;
    color: #0e314c;
    text-transform: uppercase;
}

.service-box p {
    font-size: 16px;
    line-height: 24px;
}

.service-box:hover {
    transform: translateY(-9px);
    background: linear-gradient(135deg, #23bdb8 0, #43e794 100%);
    color: #fff;
}

.service-box:hover .iconed {
    background-color: #fff;
}

.service-box:hover h3 {
    color: #fff;
}

/*about us home*/
.about-us-home {
    padding: 80px 0;
    background: #f7fafd;
}

.std {
    position: relative;
}

.std p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}

.std p:last-child {
    margin-bottom: 0;
}

.button-set {
    margin-top: 20px;
}

/*how it works*/
.how-it-works {
    padding: 80px 0;
    background: url(../images/bg.png) no-repeat 0 50%;
}

.service.alt .service-box {
    padding: 35px;
    text-align: center;
}

.service.alt .service-box .iconed {
    background: transparent;
    border: 1px solid #e3f7e9;
}

.service.alt .service-box h3 {
    font-size: 18px;
}

.service.alt .service-box:hover .iconed {
    background-color: #fff;
}

/*page title*/
.page-title {
    padding: 100px 0 100px 0;
    text-align: center;
    border-bottom: 1px dashed #f1f1f1;
}

.page-title h1 {
    margin: 0;
    font-size: 50px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.page-title p {
    font-size: 16px;
    color: #6084a4;
    line-height: 24px;
    margin-top: 20px;
    font-weight: 400;
}

/*popular courses*/
.courses {
    padding: 80px 0 50px 0;
}

.course-details {
    position: relative;
    border: 1px solid #e5e5e5;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(72, 69, 224, .1);
    background-color: #fff;
    border-radius: 20px;
}

.course-image img {
    width: 100%;
    border-radius: 20px 20px 0 0;
    height: 200px;
}

.course-details h3 {
    font-family: 'BebasNeue';
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    padding: 20px 0;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.course-details h3 a {
    color: #0e314c;
}

ul.course-detail {
    padding: 0 20px;
    margin-bottom: 20px;
}

ul.course-detail li {
    margin-bottom: 5px;
}

ul.course-detail li:last-child {
    margin-bottom: 0;
}

ul.course-detail li p {
    font-size: 15px;
    color: #44ce6f;
}

ul.course-detail li p span {
    color: #6084a4;
}

.course-details .button-set {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.course-details .button-set span.price {
    display: block;
    color: #0e314c;
    font-size: 24px;
    font-family: 'BebasNeue';
    letter-spacing: 2px;
    font-weight: 700;
    float: left;
    line-height: 34px;
}

.course-details .button-set .btn {
    float: right;
    line-height: 34px;
    padding: 0 20px;
}

/*modal*/
.modal-header .close {
    margin-top: 3px;
}

.modal-title {
    color: #0e314c;
    font-family: 'BebasNeue';
    font-weight: 700;
    letter-spacing: 2px;
}

.modal-backdrop {
    background: #1d3e5a;
}

.radio {
    margin: 0;
}

.radio input {
    display: none;
}

.radio label {
    font-size: 14px;
    line-height: 24px;
    position: relative;
    cursor: pointer;
    margin-bottom: 0;
    padding-left: 30px;
}

.radio label:after {
    content: "";
    width: 22px;
    height: 22px;
    line-height: 18px;
    color: #44ce6f;
    border: 2px solid #44ce6f;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 0;
    font-family: "fontAwesome";
    text-align: center;
}

.radio input[type="checkbox"]:checked+label:after {
    content: "\f00c";
}

.radio label a {
    color: #44ce6f;
    font-weight: 400;
}

#toggle-menu {
    color: #44ce6f;
    font-size: 18px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 15px;
    top: 25px;
    z-index: 99;
}

.small-btn {
    padding: 5px 10px;
    line-height: 2;
    font-size: 12px;
}

.err {
    font-size: 10px;
    color: red;
}

/**
 * Testimonials
 * Author: @raman
 */
.section-testimonials-add {
    border: 2px solid #999;
    padding: 50px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*testimonials*/
.section-testimonials {
    padding: 80px 0;
    background-color: #f7fafd;
}

.testimonials {
    position: relative;
}

.testimonial-box {
    border: 1px dashed #cdf1d8;
    padding: 20px;
    position: relative;
    z-index: 1;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px rgba(72, 69, 224, .1);
    transition: 0.6s all;
    -webkit-transition: 0.6s all;
    -moz-transition: 0.6s all;
}

.testimonial-box .profile-img {
    display: inline-block;
    text-align: center;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #cdf1d8;
    border-radius: 50%;
    color: #44ce6f;
    transition: .5s;
}

.testimonial-box .profile-img img {
    height: 20px;
}

.testimonial-box h3 {
    font-family: 'Arial';
    font-size: 15px;
    margin-top: 25px;
    margin-bottom: 10px;
    transition: .5s;
    color: #0e314c;
    text-transform: uppercase;
}

.testimonial-box p {
    font-size: 16px;
    line-height: 24px;
    text-align: justify;
    padding: 0 20px;
    position: relative;
}

.testimonial-box:hover {
    transform: translateY(-9px);
    background: linear-gradient(135deg, #23bdb8 0, #43e794 100%);
    color: #fff;
}

.testimonial-box:hover .iconed {
    background-color: #fff;
}

.testimonial-box:hover h3 {
    color: #fff;
}

.testimonial-box p:before {
    content: "\f10d";
    font-family: 'Arial';
    font-size: 46px;
    position: absolute;
    left: -10px;
    top: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.testimonial-box p:after {
    content: "\f10e";
    font-family: 'Arial';
    font-size: 46px;
    position: absolute;
    right: 10px;
    bottom: 0;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.nav>li>a:focus, .nav>li>a:hover{
        background-color: #ffffff !important;
}