/** 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;
  }

  /** feature-section **/

.feature-section{
    position: relative;
    display: block;
    background: #f0eee7;
    padding: 144px 0px;
  }
  
  .feature-section .image-column{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .feature-section .sec-title{
    margin-bottom: 41px;
  }
  
  .feature-section .inner-box .single-item{
    position: relative;
    display: block;
    padding: 0px 0px 0px 105px;
    margin-bottom: 50px;
  }
  
  .feature-section .inner-box .single-item:last-child{
    margin-bottom: 0px;
  }
  
  .feature-section .inner-box .single-item .icon-box{
    position: absolute;
    left: 0px;
    top: -1px;
    font-size: 40px;
    width: 85px;
    height: 85px;
    line-height: 85px;
    color: #fff;
    background: #fbb419;
    text-align: center;
    border-radius: 50%;
    z-index: 1;
  }
  
  .feature-section .inner-box .single-item .icon-box:before{
    position: absolute;
    content: '';
    background: #2b3c6b;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    border-radius: 50%;
    transform: scale(0,0);
    z-index: -1;
    transition: all 500ms ease;
  }
  
  .feature-section .inner-box .single-item:hover .icon-box:before{
    transform: scale(1,1);
  }
  
  .feature-section .inner-box .single-item:nth-child(2) .icon-box{
    background: #43b3d9;
  }
  
  .feature-section .inner-box .single-item:last-child .icon-box{
    background: var(--main-color);
  }

/** 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;
  }
  /** gallery-section **/

.gallery-section{
    position: relative;
    display: block;
    background: #f2eee9;
    padding-left: 100px;
    padding-right: 100px;
  }
  
  .gallery-section .sec-title{
    position: relative;
    display: block;
    margin-bottom: 60px;
  }
  
  .gallery-block{
    position: relative;
  }
  
  .gallery-block .image-box{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .gallery-block .image-box .image{
    position: relative;
  }
  
  .gallery-block .image-box .image img{
    display: block;
    width: 100%;
    height: auto;
  }
  
  .gallery-block .overlay-box{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: rgba(33, 47, 84, 0.5);
    content: "";
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
  
  .gallery-block .image-box:hover .overlay-box{
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
  
  .gallery-block .overlay-box a{
    position: absolute;
    left: 50%;
    top: 50%;
    display: block;
    height: 70px;
    width: 70px;
    font-size: 20px;
    background-color: var(--main-color);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    font-weight: 400;
    line-height: 70px;
    transform: translate(-50%,-50%);
  }
  
  .gallery-block .overlay-box a i{
    position: relative;
    font-weight: 700;
  }
  
  .gallery-section .owl-nav,
  .gallery-section .owl-dots{
    display: none;
  }/** 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;
  }/** 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;
  }
  
/** 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;
  }
  
/** about-style-two **/

.about-section.style-two{
    position: relative;
    padding: 150px 0px 215px 0px;
  }
  
  .about-section.style-two .image-box{
    margin: 0px 0px 0px 220px;
  }
  
  .about-section.style-two .image-box:before{
    display: none;
  }
  
  .about-section.style-two .image-box .image-2{
    left: -185px;
    bottom: -245px;
  }
  
  .about-section.style-two .content-box{
    margin-top: 60px;
  }
  
  .our-teachers.about-page{
    background: #f2f0eb;
  }/** 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;
  }
  
/*** 

====================================================================
                        Faq-Page
====================================================================

***/

.faq-page-section{
    position: relative;
    display: block;
    padding: 144px 0px 150px 0px;
  }
  
  .faq-page-section .accordion-box .block:nth-child(3){
    border-color: var(--main-color);
  }
  
  .faq-page-section .accordion-box .block:nth-child(4){
    border-color: #b350ff;
  }
  
  .faq-page-section .accordion-box .block:last-child{
    border-color: #7379fe;
  }
  
  .faq-page-section .content-box .sec-title{
    margin-bottom: 32px;
  }
  
  .faq-page-section .content-box .text p{
    position: relative;
    display: block;
    margin-bottom: 26px;
  }
  
  .faq-page-section .faq-content{
    margin-top: 6px;
    height: 680px;
  }

  .faq-page-section .accordion-box .block:nth-child(3) .acc-btn.active h4, 
.faq-page-section .accordion-box .block:nth-child(3) .acc-btn.active .icon-outer {
  color: var(--main-color);
}

.faq-page-section .accordion-box .block:nth-child(4) .acc-btn.active h4, 
.faq-page-section .accordion-box .block:nth-child(4) .acc-btn.active .icon-outer {
  color: #b350ff;
}

.faq-page-section .accordion-box .block:last-child .acc-btn.active h4, 
.faq-page-section .accordion-box .block:last-child .acc-btn.active .icon-outer {
  color: #7379fe;
}/** 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";
  }