@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    box-sizing: border-box;
    scroll-behavior: smooth;
    /* cursor: none; */
}

body{
    overflow-x: hidden;
}

h1,h2,h3,h4,h5{
    font-family: "Ubuntu", sans-serif;
}

.whsp-btn{
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 4;
    animation: updown 4s infinite linear;
}
@keyframes updown {
    0%,100%{
        transform: scale(0.9);
    }50%{
        transform: scale(1.1);
    }
}

/* .tracker {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    aspect-ratio: 1/1;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tracker img {
    width: 40px;
    transition: transform 0.1s ease-out;
} */

/* NAVIGATION------------------START-----------------HERE--------------- */

.top-row{
    background-image: url(../images/header-top-shape.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 90px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
} 

.top-row a.icn {
    color: #FFF;
    font-size: 18px;
    padding: 0 3px;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

nav{
    position: absolute;
    left: 0;
    z-index: 2;
    top: 100px;
    width: 100%;
    transition: all 0.5s ease-in-out;
}

nav img{
    width: 170px;
}

nav ul.nav-bar {
    display: flex;
    align-items: center;
    list-style: none;
}

nav li.nav-active-item {
    margin: 0 15px;
    padding: 5px 0;
    position: relative;
}

nav li.nav-active-item.active::before{
    content:"";
    background: #0F85C7;
    width: 100%;
    height: 2px;
    position: absolute;
    right: 0;
    bottom: 0;
}

nav li.nav-active-item::before{
    content:"";
    background: #0F85C7;
    width: 0%;
    height: 2px;
    position: absolute;
    right:0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
}

nav li.nav-active-item:hover::before{
    width: 100%;
    right: auto;
    left: 0;
}

nav li.nav-active-item.active a.nav-active-link{
    color: #0F85C7;
}

nav li.nav-active-item:hover a.nav-active-link{
    color: #0F85C7;
}

nav a.nav-active-link {
    color: #292929;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

nav ul.drop-down {
    background: #FFF;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
    position: absolute;
    z-index: 3;
    top: 100px;
    box-shadow: 0 0 10px #80808096; 
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

nav #drop-1:hover ul.drop-down{
    top: 50px;
    opacity: 1;
    visibility: visible;
}

nav ul.drop-down li:hover{
    background: #0F85C7;
}

nav ul.drop-down li:hover a{
    color: #FFF;
}

nav ul.drop-down li {
    padding: 10px 10px 10px 30px;
    transition: all 0.3s ease-in-out;
}

nav ul.drop-down a {
    color: #39556A;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease-in-out;
}

nav .nav-show-btn,.nav-hide-btn {    
    display: none;
}

@media only screen and (max-width: 992px){
    nav ul.nav-bar {
        width: 300px;
        height: 100vh;
        background: #FFF;
        position: fixed;
        display: block;
        top: 0;
        right: -100%;
        z-index: 2;
        transition: all 0.5s ease-in-out;
        box-shadow: 0 0 10px rgba(128, 128, 128, 0.507);
    }
    nav li.nav-active-item {
        margin: 20px 25px;
        width: max-content;
    }
    nav a.nav-show {
        color: #5C707E;
        font-size: 25px;
    }
    nav a.nav-hide {
        width: 50px;
        height: 50px;
        background: #0F85C7;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFF;
        font-size: 22px;
        text-decoration: none;
        border-radius: 100px;
        margin: 15px 15px 30px auto;
    }
    nav .nav-show-btn,.nav-hide-btn {
        display: block;
    }
    .top-row p{
        font-size: 13px !important;
        margin-right: 10px !important;
    }
}
@media only screen and (max-width: 767px){
    .top-row{
        display: none;
    }
    nav{
        top: 0 !important;
        background: #F4EEE6;
        padding: 10px 0 !important;
    }
    nav .btn-18{
        display: none;
    }
    nav img{
        width: 150px !important;
    }
}
/* NAVIGATION------------------ENDS-----------------HERE--------------- */

/* BANNER------------------START-----------------HERE--------------- */

.banner{
    background-image: url(../images/banner-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 110vh;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.banner::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/bottom.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100px;
    z-index: 1;
}

.banner h2 {
    color: #0F85C7;
}

.banner h1 {
    font-size: 55px;
    color: #292929;
}

.banner .main-img{
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 0;
}

.img-up-down{
    position: absolute;
    z-index: -1;
    animation: up-and-down 2s infinite;
}
@keyframes up-and-down {
    0% {
      transform: translateY(0);
    }50% {
      transform: translateY(-20px);
    }100% {
      transform: translateY(0);
    }
}
.img-right-left{
    position: absolute;
    z-index: -1;
    animation: moveRightLeft 2s infinite alternate;
}
@keyframes moveRightLeft {
    0% {
        left: 0;
    }100% {
        left: calc(10% - 20px);
    }
}

.btn-18 {
    background-color: #0F85C7;
    color: #fff;
}
.btn-18 {
    border-radius: 100px;
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    text-decoration: none;
}
.btn-18,.btn-18 .text-container {
    overflow: hidden;
    position: relative;
}
.btn-18 .text-container {
    display: block;
}
.btn-18 .text {
    display: block;
    position: relative;
}
.btn-18:after,.btn-18:before {
    content: "";
    --tilt: 20px;
    background: #292929;
    clip-path: polygon(0 0,calc(100% - var(--tilt)) 0,100% 50%,calc(100% - var(--tilt)) 100%,0 100%);
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: transform 0.6s;
    width: 100%;
    color: #FFF ;
}
.btn-18:after {
    clip-path: polygon(var(--tilt) 0, 0 50%, var(--tilt) 100%, 100% 100%, 100% 0);
    left: 100%;
    z-index: -1;
}
.btn-18:hover:before {
    transform: translateX(100%);
}
.btn-18:hover:after {
    transform: translateX(-100%);
}
.btn-18:hover .text {
    animation: move-up-alternate 0.3s forwards;
}
@keyframes move-up-alternate {
    0% {
        transform: translateY(0);
    }50% {
        transform: translateY(80%);
    }51% {
        transform: translateY(-80%);
    }to {
        transform: translateY(0);
    }
}

@media only screen and (max-width: 1200px){
    .banner .banner-content{
        margin-top: 90px !important;
    }
    .banner .main-img{
        top: 25px;
    }
    .banner h1 {
        font-size: 45px;
    }
    .banner p{
        width: 100% !important;
        margin-bottom: 25px !important;
    }
    .banner .img-right-left{
        top: 100px !important;
    }
}
@media only screen and (max-width: 992px){
    .banner .main-img {
        top: 120px;
    }
    .banner h1 {
        font-size: 35px;
    }
    .banner p{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .banner .banner-content{
        margin-top: 120px !important;
        text-align: center;
        padding: 0 !important;
    }
    .banner .img-1{
        left: 0px !important;
        top: 0;
        width: 70px;
    } 
    .banner .main-img{
        position: static;
    }
    .banner .btn-18{
        margin: 0 auto;
    }
}

/* BANNER------------------ENDS-----------------HERE--------------- */

/* ABOUT------------------START-----------------HERE--------------- */

.about .img{
    background-image: url(../images/about-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
    border-radius: 30% 70% 55% 45% / 50% 30% 70% 50%;
    position: relative;
}

.about h3 {
    color: #0F85C7;
}

.about h2 {
    color: #292929;
    font-size: 45px;
}

.about .img-up-down{
    right: 0;
}

@media only screen and (max-width: 1200px){
    .about .about-btn{
        width: 100% !important;
    }
    .about h2 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 992px){
    .about h4{
        font-size: 16px !important;
    }
    .about h2{
        font-size: 35px;
    }
    .about .img-up-down{
        width: 130px;
    }
    .about .abt-deal {
        width: 100% !important;
    }
    .about p.fs-5 {
        font-size: 16px !important;
    }
    .about .btn-18{
        width: 160px;
    }
}
@media only screen and (max-width: 767px){
    .about .img{
        height: 300px;
    }
    .about .about-content-2 {
        text-align: center;
        margin: 70px 0 0 0 ;
    }
    .about .img-up-down{
        width: 100px;
    }
}

/* ABOUT------------------ENDS-----------------HERE--------------- */

/* PROGRAM------------------START-----------------HERE--------------- */

.program{
    background: #EFF5F6;
    position: relative;
    padding: 150px 0 100px 0;
}

.program::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/program-up.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 80px;
}
.program::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: url(../images/program-down.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 80px;
}

.program h3 {
    color: #0F85C7;
    font-size: 22px;
}

.program h2 {
    color: #292929;
    font-size: 45px;
}

.program .program-content{
    background: #0F85C7;
    padding: 25px;
    border-radius: 25% 40% 50% 30%;
    height: 470px;
    position: relative;
    z-index: 1;
}

.program a.program-btn{
    background: #87898B;
    width: 70px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-decoration: none;
    border-radius: 20px;
    font-size: 18px;
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.program a.program-btn:hover{
    background: #292929;
}

.img-rote{
    position: absolute;
    z-index: -1;
    animation: rotate 5s linear infinite;
}
@keyframes rotate {
    0% {
      transform: rotate(-20deg);
    }50% {
      transform: rotate(20deg);
    }75% {
      transform: rotate(-20deg);
    }100%{
        transform: rotate(-20deg);
    }
}

@media only screen and (max-width: 1200px){
    .program p{
        width: 100% !important;
    }
    .program h2 {
        font-size: 40px;
    }    
}
@media only screen and (max-width: 992px){
    .program img.w-100{
        height: 200px !important;
    }
    .program .program-content {
        padding: 25px 10px;
    }
    .program p{
        font-size: 14px;
    }
    .program h2 {
        font-size: 30px;
    } 
}
@media only screen and (max-width: 767px){
    .program .program-content {
        margin: 25px 0;
    }
    .program .program-title{
        width: 100% !important;
    }
    .program h2 {
        font-size: 25px;
    } 
}

/* PROGRAM------------------ENDS-----------------HERE--------------- */

/* SERVICE------------------START-----------------HERE--------------- */

.service .img{
    background-image: url(../images/icon-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

.service .img::before{
    content: "";
    background-image: url(../images/line.webp);
    background-size: cover;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    position: absolute;
    right: -190px;
    bottom: -170px;
}

.service #img-2::before{
    content: "";
    background-image: url(../images/line-2.webp);
    right: -200px;
    top: -140px;
}

.service #img-4::before{
    content: "";
    display: none;
}

.service h3 {
    color: #292929;
}

@media only screen and (max-width: 992px){
    .service .service-content{
        position: static !important;
        margin: 20px 0;
    }
    .service .img::before {
        display: none;
    }
    .service #img-2::before {
        display: none;
    }
}

/* SERVICE------------------ENDS-----------------HERE--------------- */

/* BEST------------------START-----------------HERE--------------- */

.best .img-2{
    position: absolute;
    top: 15px;
    left: -15px;
}

.best h3 {
    color: #0F85C7;
}

.best h2 {
    color: #292929;
    font-size: 40px;
}

.best small {
    background: #FEF5DD;
    width: 140px;
    height: 80px;
    display: flex;
    justify-content: center;
    font-size: 38px;
    color: #F8B81F;
    align-items: center;
    border-radius: 10px;
}

@media only screen and (max-width: 1200px){
    .best p{
        font-size: 13px;
    }
    .best small {
        width: 130px;
        font-size: 30px;
        height: 70px;
    }
}
@media only screen and (max-width: 992px){
    .best h2{
        font-size: 30px;
    }
    .best .best-subject{
        flex-direction: column;
    }
    .best small {
        width: 80px;
        margin: 0 auto 15px 0;
    }
    .best p{
        margin: 0 !important;
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .best .img-rote{
        width: 200px;
        left: 0;
    }
    .best .best-content{
        margin: 20px 0;
        text-align: center;
    }
    .best small {
        margin: 0 auto 15px;
    }
    .best h5{
        font-size: 16px !important;
    }
    .best{
        padding-top: 0 !important;
    }
}

/* BEST------------------ENDS-----------------HERE--------------- */

/* TEAM------------------START-----------------HERE--------------- */

.team{
    background: #EFF5F6;
    padding: 100px 0;
    position: relative;
}

.team::before{
    content: "";
    background-image: url(../images/team-section-top-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.team h3 {
    color: #0F85C7;
}

.team h2 {
    color: #292929;
    font-size: 40px;
}

.team .img{
    background-image: url(../images/team-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 300px;
    border-radius: 10px;
    position: relative;
    padding: 10px;
}

.team a.icn-show,.icnn {
    display: flex;
    border: 1px solid #FFF;
    width: 40px;
    height: 40px;
    margin: 0 0 10px auto;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    color: #FFFF;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.team a.icnn:hover{
    background: #0F85C7 !important;
    color: #FFF !important;
    border-color: #0F85C7;
}

.team a.icn-show:hover{
    background: #FFF;
    color: #0F85C7;
}

.team .icns {
    position: relative;
    top: -300px;
    transition: all 0.5s ease-in-out;
}

.team .icns-show-btn:hover .icns{
    top: 0;
}

.team .swiper-button-next,.swiper-button-prev {
    background: #FFF;
    color: #8796A1;
    width: 80px;
    height: 60px;
    border-radius: 20px;
    z-index: 2;
}

.team .swiper-button-prev:hover{
    background: #0F85C7;
    color: #FFF;
}

.team .swiper-button-next:hover{
    color: #0F85C7 !important;
    background: #FFF !important;
}

.team .swiper-button-next::after{
    font-size: 25px;
}

.team .swiper-button-prev::after{
    font-size: 25px;
}

@media only screen and (max-width: 992px){
    .team h2 {
        font-size: 40px;
    }
}
@media only screen and (max-width: 767px){
    .team .team-title{
        flex-direction: column;
        text-align: center;
    }
    .team .slider-btn {
        margin: 40px 0 20px 0;
    }
    .team h2{
        font-size: 25px;
    }
}

/* TEAM------------------ENDS-----------------HERE--------------- */

/* TESTIMONIAL------------------START-----------------HERE--------------- */

.testimonial h2 {
    color: #292929;
    font-size: 40px;
}

.testimonial .testimonial-content {
    background: #87898B;
    color: #FFF;
    text-align: center;
    padding: 40px 35px 30px 35px;
    border-radius: 100px 20px 100px 20px;
}

.testimonial h5::before{
    content: "";
    width: 80px;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial .swiper-pagination-horizontal {
    bottom: -30px !important;
    position: relative;
    margin-bottom: 50px;
}

.testimonial .swiper-pagination-bullet-active,.swiper-pagination-bullet  {
    background: #0F85C7;
    width: 10px;
    height: 10px;
}

@media only screen and (max-width: 992px){
    .testimonial .testimonial-title{
        width: 80% !important;
    }
}
@media only screen and (max-width: 767px){
    .testimonial .testimonial-title{
        width: 100% !important;
    }
    .testimonial h2{
        font-size: 25px;
    }
    .testimonial .testimonial-content {
        padding: 40px 20px 30px 20px;
    }
}

/* TESTIMONIAL------------------ENDS-----------------HERE--------------- */

/* QUALITY------------------START-----------------HERE--------------- */

.quality{
    background: #0F85C7;
    position: relative;
    padding: 100px 0 0 0;
    z-index: 1;
}

.quality::before{
    content: "";
    background-image: url(../images/quality-back-shap.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.quality h2 {
    font-size: 45px;
    margin: 15px 0;
}

.quality .img-1{
    width: 360px;
    display: block;
    margin: 0 auto; 
    position: relative;
    top: -30px;
    margin-bottom: -30px;
}

@media only screen and (max-width: 992px){
    .quality .img {
        display: none;
    }  
    .quality .quality-content{
        text-align: center;
    }
    .quality .btn-18 {
        margin: 0 auto;
    }  
    .quality {
        padding: 60px 0;
    }
    .quality .img-rote{
        top: -100px !important;
    }
}
@media only screen and (max-width: 767px){
    .quality h2 {
        font-size: 25px;
    }
}

/* QUALITY------------------ENDS-----------------HERE--------------- */

/* ACADMEY------------------START-----------------HERE--------------- */

.academy h3{
    font-size: 20px;
    color:#292929;
    transition: all 0.3s ease-in-out;
}

.academy .acd-content:hover h3{
    color: #0F85C7;
}

.academy .acd-txt span{
    background: #0F85C7;
    color: #FFF;
    border-radius: 5px;
    padding: 4px 20px;
}

.academy .acd-content img{
    transition: all 0.3s ease-in-out;
}

.academy .acd-content:hover img{
    transform: scale(1.1) rotate(5deg);
}

.academy .btnn{
    color:#000;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.academy .btnn:hover{
    color: #0F85C7;
}

@media only screen and (max-width: 1200px){
    .academy .acd-txt span{
        padding: 4px 15px;
    }
}
@media only screen and (max-width: 992px){
    .academy h2{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px){
    .academy .acd-txt span{ 
        font-size: 14px;
    }
    .academy h3{
        font-size: 18px;
    }
    .academy p{
        font-size: 14px;
    }
    .academy .acd-title{
        width: 100% !important;
    }
    .academy h2{
        font-size: 25px;
    }
}

/* ACADMEY------------------ENDS-----------------HERE--------------- */

/* SUBSCRIBE------------------START-----------------HERE--------------- */

.subscribe{
    background: #0F85C7;
    padding: 60px 0;
    width: 100%;
}

.subscribe h1 {
    font-size: 40px;
}

.subscribe form {
    background: #FFF;
    width: 100%;
    border-radius: 10px;
    padding: 10px;
}

.subscribe input#email {
    width: 70%;
    border: none;
    padding: 0 20px;
    color: #385469;
}

.subscribe input#email:focus{
    outline: none;
}

@media only screen and (max-width: 1200px){
    .subscribe h1{
        font-size: 35px;
    }
}
@media only screen and (max-width: 992px){
    .subscribe .subscribe-content{
        width: 80% !important;
    }
}
@media only screen and (max-width: 767px){
    .subscribe .subscribe-content{
        width: 100% !important;
        padding: 0 12px; 
    }
    .subscribe h1{
        font-size: 25px;
    }
}
/* SUBSCRIBE------------------ENDS-----------------HERE--------------- */

/* IMAGES------------------START-----------------HERE--------------- */

.images .img{
    background-image: url(../images/images-01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 170px;
    position: relative;
}

.img-over {
    background: rgb(0 0 0 / 51%);
    width: 100%;
    height: 170px;
    position: absolute;
    top: -100%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out
}

.images .img:hover .img-over{
    top: 0;
}

/* IMAGES------------------ENDS-----------------HERE--------------- */

/* FOOTER------------------START-----------------HERE--------------- */

.footer{
    background: #EFF5F6;
    position: relative;
    padding: 100px 0 0 0;
}

.footer::before{
    content: "";
    background-image: url(../images/footer-top.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 80px;
    position: absolute;
    top: 0;
    left: 0;
}

.footer small {
    display: flex;
    color: #0F85C7;
    border: 1px dashed #0F85C7;
    width: 60px;
    height: 60px;
    font-size: 18px;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.footer a.f-icn {
    color: #292929;
    border: 1px solid #292929;
    width: 40px;
    height: 40px;
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease-in-out;
}

.footer a.f-icn:hover{
    color: #FFF;
    background: #0F85C7;
    border-color: #0F85C7;
}

.footer h3{
    font-size: 20px;
}

.footer h2 {
    color: #292929;
    width: max-content;
    border-bottom: 2px solid #87898B;
}

.footer li {
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
}

.footer li:hover{
    padding-left: 5px;
}

.footer li:hover a{
    color: #0F85C7;
}

.footer a {
    color: #87898B;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer h1 {
    color: #292929;
    transition: all 0.3s ease-in-out;
}

.footer h1:hover{
    color: #0F85C7;
    cursor: pointer;
}

.pre-footer{
    background-image: url(../images/footer-bottom.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    /* height: 80px; */
    padding: 15px 0 0 0;
    display: flex;
    align-items: center;
    margin-top: 100px;
}

.pre-footer a{
    color: #FFF;
    padding: 0 10px;
    transition: all 0.3s ease-in-out;
}

.pre-footer a:hover{
    color: #292929;
}

@media only screen and (max-width: 1200px){
    .footer h1{
        font-size: 16px !important;
    }
    .footer h3{
        font-size: 18px !important;
    }
}
@media only screen and (max-width: 992px){
    .footer .footer-content{
        margin: 20px 0;
    }
    .footer h3{
        font-size: 13px !important;
    }
    .footer small{
        width: 50px;
        height: 50px;
    }
}
@media only screen and (max-width: 767px){
    .footer p{
        width: 100% !important;
    }
    .pre-footer .container{
        flex-direction: column;
        text-align: center;
        /* padding: 10px 12px 10px 12px; */
    }
    .footer .info-content{
        justify-content: center;
        margin: 10px 0;
    }
    .footer h3{
        font-size: 16px !important;
    }
    .pre-footer p{
        font-size: 14px;
    }
}

/* FOOTER------------------ENDS-----------------HERE--------------- */

/* ABOUT-------------PAGE--------------START---------------HERE---------------- */

/* BANNER-2------------------START-----------------HERE--------------- */

.banner-2{
    background-image: url(../images/banner-shape.webp);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 300px;
    margin-top: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-2 h1 {
    font-size: 50px;
    color: #292929;
}

@media only screen and (max-width: 767px){
    .banner-2 {
        margin-top: 80px;
    }
}

/* BANNER-2------------------ENDS-----------------HERE--------------- */

/* OUR------------------START-----------------HERE--------------- */

.our .our-content{
    width: 85%;
}

.our h2{
    font-size: 35px;
}

.our p{
    color: #7a7a7a;
    font-size: 20px;    
}

.our .img{
    border: 4px solid #0E85C8;
    border-radius: 100%;
    width: 270px;
    margin: 0 auto;
    display: block;
}

@media only screen and (max-width: 992px){
    .our p{
        font-size: 16px;
    }
    .our .img{
        width: 100%;
    }
}
@media only screen and (max-width: 767px){
    .our p{
        font-size: 14px;
    }
    .our h2{
        font-size: 33px;
    }
    .our .our-content{
        width: 100%;
        text-align: center;
    }
    .our .img{
        width: 250px !important;
        margin: 50px auto 0;
    }
}

/* OUR------------------ENDS-----------------HERE--------------- */

/* COUNTER------------------START-----------------HERE--------------- */

.counter{
    background: #0F85C7;
    padding: 80px 0;
    margin: 100px 0;
}

.counter .counter-content {
    text-align: center;
    border-right: 1px solid #FFF;
}

.counter h2 {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 50px;
    margin: 15px 0 5px 0;
}

.counter h5 {
    color: #FFFF;
    font-weight: 500;
    margin: 0;
}

@media only screen and (max-width: 992px){
    .counter .counter-content {
        margin: 20px 0;
        border: none !important;
    }
    .counter .cloud{
        display: none;
    }
}

/* COUNTER------------------ENDS-----------------HERE--------------- */

/* ONLINE------------------START-----------------HERE--------------- */

.online .online-content {
    background: #F8F8F8;
    padding: 24px;
    border-radius: 20px;
    margin: 20px 0;
}

.online h3 {
    color: #385469;
    font-size: 22px;
    font-weight: 600;
}

.online p {
    color: #60707E;
    border-bottom: 2px dashed #0F85C7;
    padding: 15px 0px 25px 0;
}
@media only screen and (max-width: 1200px){
    .online .online-content {
        padding: 20px;
    }
    .online h6 {
        font-size: 13px;
    }
}
@media only screen and (max-width: 992px){
    .online h6{
        font-size: 14px;
    }
}
@media only screen and (max-width: 767px){
    .online .online-content{
        padding: 20px 12px;
    }
}

/* ONLINE------------------ENDS-----------------HERE--------------- */

/* CONTACT ------------------START-----------------HERE--------------- */

.contact .contact-content i{
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    border: 2px dashed #FFF;
    border-radius: 100px;
    color: #FFF;
    font-size: 18px;
}

.contact .contact-content{
    background: #0F85C7;
    padding: 30px 40px;
    border-radius: 20px 20px 0 0;
}

.contact .infom {
    border-bottom: 1px solid #FFF;
    padding: 20px 0px;
}

.contact .img{
    background-image: url(../images/contac\ video.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    width: 100%;
    height: 250px;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact h2 {
    color: #292929;
    font-weight: 600;
    font-size: 45px;
    width: 70%;
}

.contact label span{
    color: red;
}

.contact label {
    color: #292929;
    font-weight: 700;
    padding-bottom: 5px;
}

.contact input#name,#email,#message {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    border: 1px solid #E5E5E5;
}

.contact #name,#email,#message:focus{
    outline: none;
}

@media only screen and (max-width: 992px){
    .contact h4{
        font-size: 16px;
    }
    .contact h2 {
        width: 100%;
    } 
    .contact input#name, #email{
        height: 50px;
    }
}
@media only screen and (max-width: 767px){
    .contact .img {
        margin-bottom: 30px;
    }
    .contact .contact-content {
        padding: 30px 20px;
    }
    .contact .contact-content i{
        width: 50px;
        height: 50px;
    }
    .contact .contact-content-2{
        text-align: center;
    }
    .contact .btn-18{
        margin: 0 auto;
    }
}

/* CONTACT------------------ENDS-----------------HERE--------------- */

/* ACDD------------------STTARTS-----------------HERE--------------- */

.acdd h2{
    font-size: 35px;
}

.acdd .d-flex span{
    background: #0F85C7;
    color: #FFF;
    border-radius: 5px;
    padding: 2px 7px;
    font-size: 14px;
    margin: 2px 5px 0 2px;
}

@media only screen and (max-width: 1200px){
    .acdd h2{
        font-size: 30px;
    }
    .acdd .acd-content{
        margin: 0 !important;
    }
}
@media only screen and (max-width: 992px){
    .acdd h2{
        font-size: 22px;
    }
    .acdd p{
        font-size: 14px;
    }
    .acdd img{
        margin-top: 70px;
    }
}
@media only screen and (max-width: 767px){
    .acdd img{
        margin: 0 !important;
    }
    .acdd h2{
        font-size: 25px;
    }
    .acdd .acdd-content{
        padding: 0 !important;
        text-align: center;
        margin: 20px 0 !important;
    }
    .acdd .acdd-content .d-flex{
        justify-content: center;
    }
    .acdd .btn-18{
        margin: 0 auto;
    }
}

/* ACDD------------------ENDS-----------------HERE--------------- */

/* GALLERY------------------START-----------------HERE--------------- */

.gallery .img{
    background-image: url(https://thempaschool.com/web-images/gallery-1.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 250px;
    border-radius: 20px;
}

@media only screen and (max-width: 767px){
    .gallery .gallery-content{
        height: 250px !important;
        position: static;
        top: 0 !important;
        margin: 20px 0 !important;
        margin-bottom: 0 !important;
    }
    .gallery .img{
        height: 250px !important;
        top: 0 !important
    }
}

/* GALLERY------------------ENDS-----------------HERE--------------- */

/* ABOUT-------------PAGE--------------ENDS---------------HERE---------------- */