
/** main-slider **/

.main-slider{
    position:relative;
  }
  
  .main-slider .slide{
    position:relative;
    padding:195px 0px 170px 0px;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center center;
  }
  
  .main-slider .slide:before{
    position: absolute;
    content: '';
    background: rgba(0, 0, 0, 0.0);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
  }
  
  .main-slider.style-one .slide:before{
    background: rgba(255, 255, 255, 0.50);
  }
  
  .main-slider .content-box{
    position: relative;
    display: block;
    max-width: 700px;
    width: 100%;
  }
  
  .main-slider  h3{
    position:relative;
    display: block;
    font-size: 28px;
    line-height: 35px;
    color: var(--main-color);
    font-weight: 900;
    opacity: 0;
    margin-bottom: 11px;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    -o-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  
  .main-slider .active h3{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1000ms;
  }
  
  .main-slider h1{
    position:relative;
    display: block;
    font-size: 60px;
    line-height: 70px;
    color: #2b3c6b;
    font-weight: 900;
    margin-bottom: 25px;
    opacity:0;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    transform: translateX(-50px);
  }
  
  .main-slider .active h1{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1500ms;
  }
  
  .main-slider .text{
    position:relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #454442;
    margin-bottom: 37px;
    opacity:0;
    -webkit-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    transition: all 1500ms ease;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
  }
  
  .main-slider .active .text{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    transition-delay: 1500ms;
  }
  
  .main-slider .btn-box{
    opacity:0;
    -webkit-transition: all 1800ms ease;
    -moz-transition: all 1800ms ease;
    -ms-transition: all 1800ms ease;
    -o-transition: all 1800ms ease;
    transition: all 1800ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
  }
  
  .main-slider .active .btn-box{
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1800ms;
  }
  
  /* slide nav */
  
  
  .main-slider .owl-dots{
    position: absolute;
    text-align: center;
    left: 50%;
    bottom: 52px;
    display: none;
  }
  
  .main-slider .owl-dots .owl-dot span{
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.50);
    cursor: pointer;
    margin: 0px 3px;
    transition: all 500ms ease;
  }
  
  .main-slider .owl-dots .owl-dot.active span,
  .main-slider .owl-dots .owl-dot:hover span{
    background: #ffffff;
    border: none;
  }
  
  .main-slider .owl-nav{
    position:absolute;
    left:0px;
    top:50%;
    z-index:1;
    width:100%;
    margin-top:-20px;
  }
  
  .main-slider .owl-theme .owl-controls .owl-nav [class*="owl-"]{
    position: absolute;
    color: rgba(255, 255, 255, 0.10);
  }
  
  .main-slider .nav-style-one .owl-nav .owl-prev{
    left: 70px;
  }
  
  .main-slider .owl-nav .owl-prev{
    position:absolute;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background: var(--main-color);
    width: 75px;
    height: 75px;
    line-height:75px;
    font-weight: 700;
    margin: 0px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
  }
  
  .main-slider .owl-nav .owl-next{
    position:absolute;
    cursor: pointer;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    background: var(--main-color);
    width: 75px;
    height: 75px;
    line-height:75px;
    font-weight: 700;
    margin: 0px;
    cursor: pointer;
    border-radius: 50%;
    text-align: center;
    transition: all 500ms ease;
  }
  
  .main-slider .nav-style-one .owl-nav .owl-next{
    right: 70px;
  }
  
  .main-slider .owl-nav .owl-prev:hover,
  .main-slider .owl-nav .owl-next:hover{
    background-color:#fff;
    color: #b2b2b2;
  }
  
  .float-bob-y{
    animation-name: float-bob-y; 
    animation-duration: 2s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-y; 
    -webkit-animation-duration: 2s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-y; 
    -moz-animation-duration: 2s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-y; 
    -ms-animation-duration: 2s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-y; 
    -o-animation-duration: 2s; 
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
  }
  
  .float-bob-x{
    animation-name: float-bob-x;
    animation-duration: 15s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: float-bob-x;
    -webkit-animation-duration: 15s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: float-bob-x;
    -moz-animation-duration: 15s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: float-bob-x;
    -ms-animation-duration: 15s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: float-bob-x;
    -o-animation-duration: 15s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
  }/** cta-section **/
.cta-section{
    position: relative;
    display: block;
    width: 100%;
    background: #9321eb;
    padding: 95px 0px 100px 0px;
  }
  
  .cta-section .content-box h3{
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    font-weight: 900;
    margin-bottom: 11px;
  }
  
  .cta-section .content-box h1{
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 70px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    font-weight: 900;
    margin-bottom: 25px;
  }
  
  .cta-section .content-box .text{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: #dfbdf9;
    font-weight: 600;
    margin-bottom: 36px;
  }
  .parallax-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
  /** fact-counter **/

.fact-counter{
    position: relative;
    display: block;
    background: #fbb419;
    padding: 93px 0px 102px 0px;
  }
  
  .fact-counter .counter-block{
    position: relative;
    display: block;
    padding: 0px 0px 0px 80px;
  }
  
  .fact-counter .counter-block .icon-box{
    position: absolute;
    left: 0px;
    top: 12px;
    font-size: 60px;
    line-height: 60px;
    color: #fff;
  }
  
  .fact-counter .counter-block .count-outer span{
    position: relative;
    display: block;
    font-size: 60px;
    line-height: 70px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    font-weight: 900;
    margin-bottom: 9px;
  }
  
  .fact-counter .counter-block .text{
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 26px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    font-weight: 700;
  }
  
  /** counter-style-two **/

.fact-counter.style-two{
  position: relative;
  background: #253b70;
}

.fact-counter.style-two .counter-block .icon-box{
  color: #7c89a9;
}

.fact-counter.style-two .counter-block .count-outer span{
  color: #4ac0e8;
}

.fact-counter.style-two .counter-column:nth-child(2) .counter-block .count-outer span{
  color: var(--main-color);
}

.fact-counter.style-two .counter-column:nth-child(3) .counter-block .count-outer span{
  color: #bc64ff;
}

.fact-counter.style-two .counter-column:last-child .counter-block .count-outer span{
  color: #fbb419;
}
/** service-section **/

.service-section{
    position: relative;
    display: block;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .service-section:before{
    position: absolute;
    content: '';
    background: rgba(33, 47, 84, 0.50);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
  }
  
  .service-section .carousel-content{
    position: relative;
    display: block;
    margin-right: -340px;
    margin-top: 6px;
  }
  
  .service-block-one{
    position: relative;
    display: block;
    background: #fff;
    padding: 83px 30px 68px 30px;
    text-align: center;
    border-radius: 20px;
    transition: all 500ms ease;
  }
  
  .service-block-one .icon-box{
    position: relative;
    display: inline-block;
    font-size: 65px;
    line-height: 65px;
    color: var(--main-color);
    margin-bottom: 25px;
  }
  .service-section .owl-item:nth-child(odd) .service-block-one .icon-box{
    color: #43b3d9;
  }
  .service-section .owl-item:nth-child(3n+1) .service-block-one .icon-box{
    color: #fbb419;
  }
  .service-block-one:hover .icon-box:before{
    transform: rotate(25deg) !important;
  }
  
  .service-block-one h3{
    margin-bottom: 27px;
  }
  
  h3{
    position: relative;
    display: block;
    font-size: 22px;
    line-height: 30px;
    font-weight: 900;
    color: #2b3c6b;
    margin-bottom: 10px;
  }
  
  h3 a{
    position: relative;
    display: inline-block;
    color: #2b3c6b;
  }
  
  h3 a:hover{
    color: var(--main-color);
  }
  
  .service-section .inner-content .sec-title h1,
  .service-section .inner-content .text{
    color: #fff;
  }
  
  .service-section .inner-content{
    position: relative;
    display: block;
    margin-right: 20px;
  }
  
  .service-section .inner-content .sec-title{
    margin-bottom: 34px;
  }
  
  .service-section .owl-dots{
    display: none;
  }
  
  .service-section .owl-nav .owl-prev,
  .service-section .owl-nav .owl-next{
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    background: var(--main-color);
    text-align: center;
    border-radius: 50%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all 500ms ease;
  }
  
  .service-section .owl-nav .owl-prev:hover,
  .service-section .owl-nav .owl-next:hover{
    background: #fff;
    color: #2b3c6b;
  }
  
  .service-section .owl-nav{
    position: absolute;
    left: -405px;
    bottom: 0px;
  }/** service-style-two **/
.service-style-two{
    position: relative;
    display: block;
    background: #fff;
  }
  
  .service-style-two .service-block-one{
    padding: 93px 30px 78px 30px;
    box-shadow: 0 20px 50px rgba(229, 229, 229, 0.8);
  }
  
  .service-style-two .inner-content{
    position: relative;
    margin-top: -120px;
    z-index: 11;
  }
  
  .service-style-two .service-block-one .icon-box{
    color: #fbb419;
  }
  .service-style-two .service-column:nth-child(2) .service-block-one .icon-box{
    color: #43b3d9;
  }
  .service-style-two .service-column:last-child .service-block-one .icon-box{
    color: var(--main-color);
  }
    /** about-section **/

.about-section{
    position: relative;
    display: block;
    padding: 144px 0px 250px 0px;
  }
  
  .anim-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
  
  .anim-icon .icon{
    position: absolute;
    background-repeat: no-repeat;
  }
  
  .about-section .image-box{
    position: relative;
    display: block;
    margin: 6px 30px 0px 140px;
  }
  
  .about-section .image-box:before{
    position: absolute;
    content: '';
    background: #9be9ff;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    left: -135px;
    top: 105px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
  }
  
  .about-section .image-box .image{
    position: relative;
    display: block;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
  }
  
  .about-section .image-box .image img{
    width: 100%;
  }
  
  .about-section .image-box .image-1{
    position: relative;
    display: block;
    border-radius: 30px;
  }
  
  .about-section .image-box .image-1 img{
    border-radius: 30px;
  }
  
  .about-section .image-box .image-2{
    position: absolute;
    left: -85px;
    bottom: -125px;
    border: 15px solid #fff;
    border-radius: 30px;
  }
  
  .about-section .content-box .sec-title{
    position: relative;
    display: block;
    margin-bottom: 33px;
  }
  
  .about-section .content-box .bold-text{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #4c4c4c;
    font-weight: 400;
    margin-bottom: 15px;
  }
  
  .about-section .content-box p{
    position: relative;
    display: block;
    margin-bottom: 46px;
  }
  
/** classes-style-two **/

.classes-section.style-two{
    position: relative;
    display: block;
    background: #253b70;
  }
  
  .classes-section.style-two .sec-title h1{
    color: #fff;
  }
  
  .classes-section.style-two .inner-block{
    box-shadow: none;
  }
  
  .classes-section.style-two .inner-block .lower-content .price{
    margin-bottom: 31px;
  }
  
  .classes-section.style-two .inner-block .lower-content{
    padding-bottom: 48px;
  }
  
  .classes-section.style-two .parallax-icon .icon-3{
    left: 8% !important;
  }
  
  .classes-section.style-two .parallax-icon .icon-7{
    left: 85% !important;
  }
  
  .classes-section.style-two .parallax-icon .icon-6{
    left: 90% !important;
  }/** classes-section **/

.classes-section{
    position: relative;
    display: block;
  }
  
  .classes-section .inner-block{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(229, 229, 229, 0.8);
  }
  
  .classes-section .inner-block .image-box{
    position: relative;
    display: block;
    background: #253b71;
    overflow: hidden;
  }
  
  .classes-section .inner-block .image-box img{
    width: 100%;
    transition: all 500ms ease;
  }
  
  .classes-section .inner-block:hover .image-box img{
    opacity: 0.5;
    transform: scale(1.02);
  }
  
  .classes-section .inner-block .lower-content{
    position: relative;
    display: block;
    padding: 34px 40px 37px 40px;
  }
  
  .classes-section .inner-block .lower-content .link-btn{
    position: absolute;
    top: -35px;
    right: 40px;
    clear: both;
  }
  
  .classes-section .inner-block .lower-content .link-btn a{
    position: relative;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    background: #fbb419;
    border-radius: 50%;
    transition: all 500ms ease;
  }
  
  .classes-section .inner-block .lower-content .link-btn a:hover{
    background: #253b71 !important;
  }
  
  .classes-section .inner-block:hover .lower-content .link-btn a {
    -webkit-transform: scale(-1) rotate(-180deg);
    -moz-transform: scale(-1) rotate(-180deg);
    -ms-transform: scale(-1) rotate(-180deg);
    -o-transform: scale(-1) rotate(-180deg);
    transform: scale(-1) rotate(-180deg);
  }
  
  .classes-section .block-column:nth-child(2) .inner-block .lower-content .link-btn a{
    background: #43b3d9;
  }
  
  .classes-section .block-column:last-child .inner-block .lower-content .link-btn a{
    background: var(--main-color);
  }
  
  .classes-section .inner-block .lower-content h3{
    margin-bottom: 9px;
  }
  
  .classes-section .inner-block .lower-content .price{
    position: relative;
    display: block;
    font-size: 18px;
    color: var(--main-color);
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    margin-bottom: 17px;
  }
  
  .classes-section .inner-block .lower-content .text{
    position: relative;
    display: block;
    margin-bottom: 26px;
  }

  
.classes-section .inner-block .lower-content .info-box li{
    position: relative;
    display: inline-block;
    font-size: 15px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    margin: 0px 10px;
    text-transform: uppercase;
  }
  
  .classes-section .inner-block .lower-content .info-box li:before{
    position: absolute;
    content: '';
    border: 1px dashed #59688e;
    width: 1px;
    height: 20px;
    top: 4px;
    right: -12px;
  }
  
  .classes-section .inner-block .lower-content .info-box li:last-child:before{
    display: none;
  }
  
  .classes-section .inner-block .lower-content .info-box li span{
    color: var(--main-color);
    text-transform: capitalize;
  }
  
  .classes-section .sec-title{
    position: relative;
    display: block;
    margin-bottom: 60px;
  }

  /** activities-section **/
.activities-section{
    position: relative;
    display: block;
    padding: 144px 0px 100px 0px;
  }
  
  .activities-section .sec-title{
    margin-bottom: 12px;
  }
  
  .activities-section .title-box{
    margin-bottom: 65px;
  }
  
  .activities-section .inner-box .single-item{
    position: relative;
    display: block;
    margin-bottom: 45px;
  }
  
  .activities-section .inner-box .single-item .icon-box{
    position: relative;
    display: inline-block;
    font-size: 65px;
    line-height: 65px;
    color: #fbb419;
    margin-bottom: 22px;
  }
  .activities-section .inner-box .column:nth-child(2) .single-item .icon-box{
    color: #b350ff;
  }
  
  .activities-section .inner-box .column:nth-child(3) .single-item .icon-box{
    color: #43b3d9;
  }
  
  .activities-section .inner-box .column:last-child .single-item .icon-box{
    color: var(--main-color);
  }
  
  .activities-section .inner-box .single-item:hover .icon-box:before{
    transform: rotate(25deg);
  }
  
  .activities-section .image-box{
    position: relative;
    display: block;
    margin-left: 70px;
    margin-top: 225px;
  }
  
  .activities-section .image-box .image{
    position: relative;
    display: block;
    float: left;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 30px 50px rgba(0,0,0,.1);
  }
  
  .activities-section .image-box .image:before{
    position: absolute;
    content: '';
    background: #9be9ff;
    height: 290px;
    width: 290px;
    top: -110px;
    right: -110px;
    border-radius: 20px;
    z-index: -1;
  }
  
  .activities-section .image-box .image img{
    width: 100%;
    border-radius: 20px;
  }/** .activities-style-two **/

.activities-section.style-two{
  position: relative;
}

.activities-section.style-two .image-box {
  margin: 120px 70px 0px 110px;
}

.activities-section.style-two .image-box .image:before{
  right: 205px;
  background: #d9f0f7;
  height: 400px;
}/** testimonial-faq **/

.testimonial-faq{
    position: relative;
    display: block;
    padding: 144px 0px 135px 0px;
  }
  .testimonial-content .client-thumb-outer{
    position:relative;
    max-width:350px;
    margin:0 auto;
    overflow:hidden;
    padding-top: 43px;
  }
  
  .testimonial-content .client-thumb-outer .client-thumbs-carousel{
    position: relative;
    max-width: 110px;
    margin: 0 auto;
    margin-bottom: 5px;
  }
  
  .testimonial-content .client-thumb-outer .client-thumbs-carousel .owl-stage-outer{
    overflow:visible;
  }
  
  .testimonial-content .client-thumb-outer .client-thumbs-carousel .thumb-item{
    position:relative;
    width:90px;
    border-radius:50%;
    margin: 0 auto;
  }
  .testimonial-content .client-thumb-outer .thumb-item .thumb-box{
    width:90px;
    height:90px;
    cursor:pointer;
    overflow: hidden;
    border-radius:50%;
    box-shadow: 0 10px 20px rgba(8,13,62,.15);
  }
  
  .testimonial-content .client-thumb-outer .owl-item.active .thumb-item{
    width: 110px;
    top: -20px;
  }
  
  .testimonial-content .owl-item.active .thumb-item .thumb-box{
    width: 110px;
    height: 110px;
  }
  
  .testimonial-content .client-thumb-outer .client-thumbs-carousel .thumb-item img{
    overflow:hidden;
    width:100%;
    height:100%;
    display:block;
    border-radius:50%;
  }
  


.testimonial-content{
    position: relative;
    display: block;
    margin-right: 30px;
  }
  
  .testimonial-content .owl-nav,
  .testimonial-content .owl-dots{
    display: none;
  }
  
  .testimonial-content .sec-title{
    position: relative;
    display: block;
    margin-bottom: 48px;
  }
  
  .testimonial-block .inner-box{
    position: relative;
    display: block;
    background: #253b71;
    border-radius: 20px;
    padding: 42px 30px 41px 60px;
    margin-bottom: 20px;
  }
  
  .testimonial-block .inner-box:before{
    position: absolute;
    content: '';
    background: #253b71;
    width: 28px;
    height: 28px;
    border-radius: 5px;
    left: 50%;
    margin-left: -15px;
    bottom: -8px;
    transform: rotate(-45deg);
  }
  
  .testimonial-block .inner-box .author{
    position: relative;
    display: block;
    font-size: 20px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    line-height: 30px;
    color: var(--main-color);
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .testimonial-block .inner-box .author span{
    font-size: 15px;
    font-weight: 400;
    color: #fff;
  }
  
  .testimonial-block .inner-box .rating{
    position: relative;
    display: block;
    margin-bottom: 32px;
  }
  
  .testimonial-block .inner-box .rating li{
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #fbb419;
  }
  
  .testimonial-block .inner-box .text{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 30px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 700;
    color: #fff;
    z-index: 1;
  }
  
  .testimonial-block .inner-box .text:before{
    position: absolute;
    content: "\f109";
    font-family: Flaticon;
    font-size: 60px;
    line-height: 60px;
    color: #51628d;
    left: 40px;
    top: -17px;
    z-index: -1;
  }
  
  .faq-content{
    position: relative;
    display: block;
    margin-left: 30px;
    height: 597px;
  }
  
  .faq-content .sec-title{
    position: relative;
    display: block;
    margin-bottom: 48px;
  }
  
  .accordion-box{
    position:relative;
  }
  
  .accordion-box .block{
    position:relative;
    margin-bottom: 20px;
    border: 2px solid #43b3d9;
    border-radius: 20px;
    padding: 0px 28px;
  }
  
  .accordion-box .block:nth-child(2){
    border-color: #fbb419;
  }
  
  .accordion-box .block:last-child{
    margin-bottom: 0px;
    border-color: var(--main-color);
  }
  
  .accordion-box .block .acc-btn h4{
    position:relative;
    display: block;
    font-size:20px;
    font-weight: 700;
    color:#3b3634;
    padding: 28px 0px 34px 0px;
    cursor:pointer;
    transition: all 500ms ease;
  }
  
  .accordion-box .block .acc-btn.active h4{
    color: #43b3d9;
  }
  
  .accordion-box .block:nth-child(2) .acc-btn.active h4,
  .accordion-box .block:nth-child(2) .acc-btn.active .icon-outer{
    color: #fbb419;
  }
  
  .accordion-box .block:last-child .acc-btn.active h4,
  .accordion-box .block:last-child .acc-btn.active .icon-outer{
    color: var(--main-color);
  }
  
  .accordion-box .block .acc-content{
    position:relative;
    display:none; 
    border-top: 1px solid #e5e5e5;
    padding-top: 24px;
    padding-bottom: 47px;
  }
  
  .accordion-box .block .acc-content.current{
    display:block;  
  }
  
  .accordion-box .block .content .text{
    position:relative;
    display: block;
    color: #2b3c6b;
    padding-right: 40px;
  }
  
  .accordion-box .block .acc-btn .icon-outer{
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 20px;
    color: #2b3c6b;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    transition: all 500ms ease;
    z-index: 1;
  }
  
  .accordion-box .block .acc-btn.active .icon-outer{
    color: #43b3d9;
  }
  
  .accordion-box .block .acc-btn.active .icon-outer i:before{
    position: relative;
    font-size: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    margin: 0px;
    content: "\f106";
  }/** testimonial-video **/
.testimonial-video{
    position: relative;
    display: block;
  }
  
  .testimonial-video .outer-container {
    position: relative;
    min-height: 350px;
  }
  
  .testimonial-video .video-column{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
  }
  
  .testimonial-video .video-column .video-inner{
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    padding: 316px 0px 315px 0px;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .testimonial-video .video-column .video-inner:before{
    position: absolute;
    content: '';
    background: rgba(67, 179, 217, 0.85);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
  }
  
  .testimonial-video .video-column .video-inner a{
    position: relative;
    display: inline-block;
    width: 110px;
    height: 110px;
    line-height: 110px;
    background: #fff;
    font-size: 30px;
    color: #2b3c6b;
    text-align: center;
    border-radius: 50%;
    -webkit-animation: pulse 3s infinite;
    -o-animation: pulse 3s infinite;
    animation: pulse 3s infinite;
  }
  
  .testimonial-video .testimonial-column{
    position: relative;
    float: right;
    width: 50%;
  }
  
  .testimonial-video .testimonial-column .testimonial-content{
    position: relative;
    width: 100%;
    max-width: 615px;
    padding: 144px 15px 116px 150px;
  }
  
  .testimonial-video .testimonial-column .testimonial-block .inner-box{
    background: transparent;
    padding: 0px;
    border-radius: 0px;
  }
  
  .testimonial-video .testimonial-column .testimonial-block .inner-box:before{
    display: none;
  }
  
  .testimonial-video .testimonial-column .testimonial-block .inner-box .text{
    color: #2b3c6b;
  }
  
  .testimonial-video .testimonial-column .testimonial-block .inner-box .author span{
    color: #848484;
  }
  
  .testimonial-video .testimonial-column .testimonial-block .inner-box .text:before{
    left: 2px;
    color: #e5e7ed;
  }
  
  .testimonial-video .testimonial-content .sec-title{
    margin-bottom: 32px;
  }
  
  .testimonial-video .testimonial-content .client-thumb-outer{
    margin: 0px;
    padding: 0px;
  }
  
  .testimonial-video .testimonial-content .owl-item.active .thumb-item .thumb-box{
    width: 90px;
    height: 90px;
  }
  
  .testimonial-video .testimonial-content .client-thumb-outer .owl-item.active .thumb-item{
    width: 90px;
    top: 0px;
  }
  
  .testimonial-video .testimonial-content .client-thumb-outer .client-thumbs-carousel .thumb-item{
    margin: 0px;
    margin-bottom: 30px;
  }
  
  .testimonial-video .testimonial-content .client-thumb-outer .client-thumbs-carousel{
    max-width: 100px;
  }
  
  .testimonial-video .testimonial-content .client-thumb-outer{
    max-width: 320px;
  }/** testimonial-style-two **/
.testimonial-style-two{
    position: relative;
    display: block;
    background: #f0efe9;
    padding: 144px 0px 143px 0px;
  }
  
  .testimonial-style-two .owl-nav{
    display: none;
  }
  
  .testimonial-style-two .sec-title{
    margin-bottom: 60px;
  }
  
  .testimonial-block-two .inner-box{
    position: relative;
    display: block;
    background: #fff;
    padding: 51px 30px 60px 50px;
    border-radius: 20px;
  }
  
  .testimonial-block-two .inner-box .text{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 32px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-weight: 500;
    color: #2b3c6b;
    margin-bottom: 20px;
    padding-bottom: 51px;
    z-index: 1;
  }
  .testimonial-block-two .inner-box .text:after{
    position: absolute;
    content: "\f109";
    font-family: Flaticon;
    font-size: 60px;
    line-height: 60px;
    color: #e3f4f9;
    left: 50%;
    margin-left: -50px;
    top: 30px;
    z-index: -1;
  }
  
  .testimonial-style-two .owl-item:nth-child(odd) .testimonial-block-two .inner-box .text:after{
    color: #ffeae8;
  }
  
  .testimonial-block-two .inner-box .author-info{
    position: relative;
    display: block;
    padding: 17px 0px 11px 95px;
  }
  
  .testimonial-block-two .inner-box .author-info .author-thumb{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 50%;
  }
  
  .testimonial-block-two .inner-box .author-info .author-thumb img{
    width: 100%;
    border-radius: 50%
  }
  
  .testimonial-block-two .inner-box .author-info h5{
    position: relative;
    display: block;
    font-size: 18px;
    color: #43b3d9;
    font-weight: 700;
    margin-bottom: 0px;
  }
  
  .testimonial-block-two .inner-box .author-info .designation{
    position: relative;
    display: block;
    font-size: 15px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
  }
  
  .testimonial-style-two .owl-item:nth-child(odd) .testimonial-block-two .inner-box .author-info h5{
    color: var(--main-color);
  }
  
  .testimonial-style-two .owl-dots{
    position: relative;
    display: block;
    text-align: center;
    margin-top: 65px;
  }
  
  .testimonial-style-two .owl-theme .owl-dots .owl-dot span{
    border: 3px solid #c5c7cc;
    height: 14px;
    width: 14px;
    cursor: pointer;
    transition: all 500ms ease;
  }
  
  .testimonial-style-two .owl-theme .owl-dots .owl-dot.active span,
  .testimonial-style-two .owl-theme .owl-dots .owl-dot span:hover{
    background: transparent;
    border-color: var(--main-color);
  }/** about-section **/

.about-section{
    position: relative;
    display: block;
    padding: 144px 0px 250px 0px;
  }
  
  .anim-icon {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
  }
  
  .anim-icon .icon{
    position: absolute;
    background-repeat: no-repeat;
  }
  
  .about-section .image-box{
    position: relative;
    display: block;
    margin: 6px 30px 0px 140px;
  }
  
  .about-section .image-box:before{
    position: absolute;
    content: '';
    background: #9be9ff;
    width: 215px;
    height: 215px;
    border-radius: 50%;
    left: -135px;
    top: 105px;
    -webkit-animation: zoom-fade 5s infinite linear;
    animation: zoom-fade 5s infinite linear;
  }
  
  .about-section .image-box .image{
    position: relative;
    display: block;
    box-shadow: 0 30px 50px rgba(8,13,62,.15);
  }
  
  .about-section .image-box .image img{
    width: 100%;
  }
  
  .about-section .image-box .image-1{
    position: relative;
    display: block;
    border-radius: 30px;
  }
  
  .about-section .image-box .image-1 img{
    border-radius: 30px;
  }
  
  .about-section .image-box .image-2{
    position: absolute;
    left: -85px;
    bottom: -125px;
    border: 15px solid #fff;
    border-radius: 30px;
  }
  
  .about-section .content-box .sec-title{
    position: relative;
    display: block;
    margin-bottom: 33px;
  }
  
  .about-section .content-box .bold-text{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #4c4c4c;
    font-weight: 400;
    margin-bottom: 15px;
  }
  
  .about-section .content-box p{
    position: relative;
    display: block;
    margin-bottom: 46px;
  }
  
/** our-teachers **/
.our-teachers{
    position: relative;
    display: block;
  }
  
  .our-teachers .sec-title{
    margin-bottom: 60px;
  }
  
  .teachers-block-one{
    position: relative;
    display: block;
  }
  
  .teachers-block-one .inner-box .image-holder{
    position: relative;
    display: inline-block;
    border: 2px dashed #fbb928;
    padding: 18px;
    border-radius: 50%;
  }
  
  .our-teachers .block-column:nth-child(2) .teachers-block-one .inner-box .image-holder{
    border-color: #43b3d9;
  }
  
  .our-teachers .block-column:last-child .teachers-block-one .inner-box .image-holder{
    border-color: var(--main-color);
  }
  
  .teachers-block-one .inner-box .image-holder img{
    width: 100%;
    border-radius: 50%;
    transition: all 500ms ease;
  }
  
  .teachers-block-one .inner-box .image-holder .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    background: #2b3c6b;
    border-radius: 50%;
  }
  
  .teachers-block-one .inner-box:hover .image-holder img{
    transform: scale(1.03);
    opacity: 0.5;
  }
  
  .teachers-block-one .inner-box{
    position: relative;
    overflow: hidden;
  }

  .teachers-block-one .inner-box .lower-content h3{
    color: #fff;
    margin-bottom: 5px;
  }
  
  .teachers-block-one .inner-box .lower-content h3 a{
    position: relative;
    display: inline-block;
    color: #fff;
  }
  
  .teachers-block-one .inner-box .lower-content .designation{
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    margin-bottom: 7px;
  }
  
  .teachers-block-one .inner-box .lower-content .social-list{
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 900ms ease;
  }
  
  .teachers-block-one .inner-box:hover .lower-content .social-list{
    opacity: 1;
    transform: translateY(0px);
  }
  
  .teachers-block-one .inner-box .lower-content .social-list li{
    position: relative;
    display: inline-block;
    margin: 0px 10px;
  }
  
  .teachers-block-one .inner-box .lower-content .social-list li a{
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #fff;
  }/** teachers-style-two **/

.our-teachers.style-two{
    position: relative;
    background: #253b70;
  }
  
  .our-teachers.style-two .sec-title h1{
    color: #fff;
  }
  
  .our-teachers.style-two .parallax-icon .icon-3{
    left: 10% !important;
  }
  
  .our-teachers.style-two .parallax-icon .icon-5{
    left: 80% !important;
  }
  
  .our-teachers.style-two .parallax-icon .icon-6{
    left: 90% !important;
  }
  
  .our-teachers.style-two .parallax-icon .icon-7{
    left: 85% !important;
  }/** teachers-style-three **/
.our-teachers.style-three{
    position: relative;
  }
  
  .teachers-block-two{
    position: relative;
    display: block;
  }
  
  .teachers-block-two .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    background: #2b3c6b;
    border-radius: 20px;
  }
  
  .teachers-block-two .inner-box .image-box img{
    width: 100%;
    border-radius: 20px;
    transition: all 500ms ease;
  }
  
  .teachers-block-two .inner-box:hover .image-box img{
    opacity: 0.5;
    transform: scale(1.03);
  }
  
  .teachers-block-two .inner-box{
    position: relative;
    overflow: hidden;
  }
  .teachers-block-two .inner-box .lower-content h3{
    color: #fff;
    margin-bottom: 5px;
  }
  
  .teachers-block-two .inner-box .lower-content h3 a{
    color: #fff;
  }
  
  .teachers-block-two .inner-box .lower-content .designation{
    position: relative;
    display: block;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: #fff;
    margin-bottom: 7px;
  }
  
  .teachers-block-two .inner-box .lower-content .social-list{
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: all 900ms ease;
  }

  
.teachers-block-two .inner-box .lower-content .social-list li{
    position: relative;
    display: inline-block;
    margin: 0px 10px;
  }
  
  .teachers-block-two .inner-box .lower-content .social-list li a{
    position: relative;
    display: inline-block;
    font-size: 15px;
    color: #fff;
  }
  
  .teachers-block-two .inner-box:hover .lower-content .social-list{
    opacity: 1;
    transform: translateY(0px);
  }
  
  .our-teachers.style-three .inner-content{
    position: relative;
    display: block;
    margin: 0px -15px;
  }
  
  .our-teachers.style-three .block-column{
    padding: 0px 30px;
  }/** news-style-two **/
.news-section.style-two{
    position: relative;
    background: #f0ede6;
    padding: 144px 0px 150px 0px;
  }
  
  .news-block-two .inner-box{
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(229, 229, 229, 0.8);
  }
  
  .news-block-two .inner-box .image-box{
    position: relative;
    display: block;
    overflow: hidden;
    background: #2b3c6b;
  }
  
  .news-block-two .inner-box .image-box img{
    width: 100%;
    transition: all 500ms ease;
  }
  
  .news-block-two .inner-box:hover .image-box img{
    opacity: 0.5;
    transform: scale(1.03);
  }
  
  .news-block-two .inner-box .lower-content{
    position: relative;
    display: block;
    background: #fff;
    padding: 43px 30px 60px 50px;
  }
  
  .news-block-two .inner-box .lower-content h3{
    line-height: 28px;
    margin-bottom: 26px;
  }
  
  .news-block-two .inner-box .lower-content .info-box{
    position: relative;
    display: block;
    margin-bottom: 6px;
  }
  
  .news-block-two .inner-box .lower-content .info-box li{
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    color: var(--main-color);
    margin-right: 38px;
  }
  
  .news-block-two .inner-box .lower-content .info-box li:before{
    position: absolute;
    content: '';
    background: #848484;
    width: 1px;
    height: 10px;
    top: 8px;
    right: -20px;
  }
  
  .news-block-two .inner-box .lower-content .info-box li:last-child:before{
    display: none;
  }
  
  .news-block-two .inner-box .lower-content .info-box li:last-child{
    color: #848484;
  }
  
  .news-block-two .inner-box .lower-content .text{
    position: relative;
    display: block;
    margin-bottom: 33px;
  }
  
  .news-section.style-two .news-block:last-child .news-block-two .inner-box{
    margin-bottom: 20px;
  }
  
  .news-section.style-two .news-block:last-child .news-block-two:last-child .inner-box{
    margin-bottom: 0px;
  }
  
  .news-section.style-two .news-block:last-child .news-block-two .inner-box .lower-content .text{
    margin-bottom: 0px;
  }
  
  .news-section.style-two .news-block:last-child .news-block-two .inner-box .lower-content{
    padding-bottom: 42px;
  }/** contact-section **/

.contact-section{
    position: relative;
  }
  
  .contact-section .outer-container{
    position: relative;
    min-height: 350px;
  }
  
  .contact-section .outer-container .contact-column{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background: #fbb419;
  }
  
  .contact-section .outer-container .contact-column .content-box{
    position: relative;
    display: block;
    max-width: 690px;
    width: 100%;
    margin: 0 auto;
    padding: 144px 15px 167px 15px;
  }
  
  .contact-section .outer-container .map-column{
    position: relative;
    float: right;
    width: 50%;
  }
  
  .contact-section .outer-container .map-column .google-map-area{
    position: relative;
    display: block;
    background: #fff;
  }
  
  .contact-section .outer-container .map-column .google-map-area #contact-google-map{
    position: relative;
    display: block;
    width: 100%;
    height: 800px;
  }
  
  .contact-section .outer-container .contact-column .sec-title{
    position: relative;
    display: block;
    margin-bottom: 40px;
  }
  
  .contact-section .outer-container .contact-column .sec-title h5,
  .contact-section .outer-container .contact-column .sec-title h1{
    color: #fff;
  }
  
  .contact-section .outer-container .contact-column .sec-title h5:before{
    background: #fff;
  }
  
  .contact-section .outer-container .contact-column .form-group{
    position: relative;
    display: block;
    margin-bottom: 20px;
  }
  
  .contact-section .outer-container .contact-column .form-group:last-child{
    margin-bottom: 0px;
  }
  
  .contact-section .outer-container .contact-column .form-group input[type='text'],
  .contact-section .outer-container .contact-column .form-group input[type='email'],
  .contact-section .outer-container .contact-column .form-group textarea{
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
    background: #fcc753;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 15px;
    color: #fff;
    transition: all 500ms ease;
  }
  
  .contact-section .outer-container .contact-column .form-group input:focus,
  .contact-section .outer-container .contact-column .form-group textarea:focus{
    background: #2b3c6b;
  }
  
  .contact-section .outer-container .contact-column .form-group textarea{
    height: 170px;
    resize: none;
    margin-bottom: 30px;
  }
  
  .contact-section .outer-container .contact-column .form-group input::-webkit-input-placeholder,
  .contact-section .outer-container .contact-column .form-group textarea::-webkit-input-placeholder{
    color:#fff;
  }
  
  .contact-section .outer-container .contact-column .form-group .theme-btn{
    background: #fff;
    color: #2b3c6b !important;
  }
  
  .contact-section .outer-container .contact-column .form-group .theme-btn:hover{
    color: #fff !important;
  }