* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Circular', sans-serif !important; */
    font-family: 'Poppins', sans-serif;
}

html {
    overflow-x: hidden;
}

/* Common styles */
p {
    margin: 0;
}

.pt-5 {
    padding-top: 5px;
}

.mb-40 {
    margin-bottom: 40px;
}

a:hover {
    text-decoration: none;
    color: #fff;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mt-30 {
    margin-top: 30px;
}

.whatsup-icon {
    position: fixed;
    bottom: 10px;
    left: 10px;
}

.whatsup-icon img {
    width: 50px;
}

.skew-up.is-inview {
    -webkit-transform: skewY(0);
    -ms-transform: skewY(0);
    transform: skewY(0);
    opacity: 1;
}

.skew-up {
    opacity: 0;
    -webkit-transform: skewY(5deg) translatey(50%);
    -ms-transform: skewY(5deg) translatey(50%);
    transform: skewY(5deg) translatey(50%);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: opacity 0.5s ease, -webkit-transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition: opacity 0.5s ease, -webkit-transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -o-transition: transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.5s ease;
    transition: transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.5s ease;
    transition: transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000), opacity 0.5s ease, -webkit-transform 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.has-animation {
    -webkit-transition-duration: .8s;
    -o-transition-duration: .8s;
    transition-duration: .8s;
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s;
}

/* Common styles */





/* Style Begin */

.nav-container {
    padding: 0 72px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.custom-container {
    padding: 0 132px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#nav-2 a.nav-link {
    color: #414042;
    font-size: 16px;
    margin: 9px 0px;
    padding: 5px 0px;
    margin-right: 40px;

    border-bottom: 2px solid transparent;
}

/* #nav-2 .navbar-light .navbar-nav .nav-link {
    color: #414042;
    padding: 5px 15px;
        color: #fff;
} */

#nav-2 a.nav-link:hover {
    border-bottom: 2px solid #007392;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

#nav-2 a.nav-link.active {
    border-bottom: 2px solid #007392;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}



#nav-2 .logo {
    font-weight: 400;
    font-size: 22px;
    color: #374760 !important;
    letter-spacing: 1px;
    margin-right: 65px;
}

#nav-2 .logo .fa-long-arrow-alt-up {
    font-size: 26px;
    height: 19px;
    line-height: 26px;
    width: 30px;
    color: #333;
}

#nav-2 .logo .fa-long-arrow-alt-down {
    font-size: 18px;
    height: 21px;
    line-height: 26px;
    width: 30px;
    color: #333;
}

#nav-2 .top-nav-collapse {
    padding: 5px 0px !important;
    transition: all 1s ease !important;
    box-shadow: 0 0 5px #777;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0%;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 13px;

    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box;
}

#nav-2 a.dropdown-item {
    padding: 10px 20px;
}

#nav-2 .navbar-expand-lg .navbar-nav .dropdown-menu {
    padding: 4px 0;
    background: #f8f8ff;
    border-radius: 4px !important;
    -webkit-animation: dropdownOpen 0.3s ease-out;
    -o-animation: dropdownOpen 0.3s ease-out;
    animation: dropdownOpen 0.3s ease-out;
    border: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
}

#nav-2 .navbar-light {
    background-color: #fff !important;
    width: 100%;
    border-radius: 0px;
    z-index: 999;
    padding: 8px 0;
    margin-bottom: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -moz-box-shadow: 0 0 5px #777;
}

.auth-wrap {
    display: flex;
    align-items: center;
}


.orange-auth {
    color: #007392;
    /* color: #F7941D; */
    font-weight: 500;
    font-size: 16px;
    margin: 9px 0px;
    padding: 5px 2px;

}

.orange-auth:hover {
    color: #007392;
    /* color: #F7941D; */
    font-weight: 500;
    text-decoration: none;
}

.auth-wrap p {
    color: #007392;
    /* color: #F7941D; */
    font-weight: 500;
    font-size: 16px;
    margin: 0;
}

.logo-img {
    width: 88px;
    margin-right: 75px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.call-btn {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 5px 0px;
    width: 150px;
    /* height: 48px; */
    background: #F7941D;
    border-radius: 24px;
    color: #fff;
    font-size: 18px;
    margin-left: 44px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.call-btn img {
    margin-right: 12px;
}

.top-nav-collapse .logo-img {
    width: 65px;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/* 
------------------------------------------------------------------------------------------------main nav ends here  */
.bottom-nav {
    margin-top: 96px;
    background: #007392;
    height: 58px;
    display: flex;
    align-items: center;
}

.nav-btm-left {
    display: flex;
    align-items: center;
}

.nav-btm-icn {
    display: flex;
}

.nav-btm-left a {
    color: #fff;
    margin-right: 48px;
    font-size: 15px;
}

.nav-btm-cnt {
    display: flex;
    align-items: center;
}

.nav-btm-right {}

.nav-btm-right a {
    color: #fff;
    margin-left: 35px;
    font-size: 15px;
}

.bottom-nav-collapse {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    height: 0;
}

.hidden {
    display: none;
}

.page-header {
    background-color: #FF8A5B;
    border-radius: 16px;
    padding: 100px 40px;
    margin-bottom: 40px;
}

/* 
------------------------------------------------------------------------------------------------nav bottom ends here  */
.banner-carousel .carousel-caption {
    position: absolute;
    right: 40%;
    bottom: 17%;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

.contact-carousel .carousel-caption {
    position: absolute;
    right: 40%;
    bottom: 27%;
    left: 10%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

.career-btm {
    bottom: 30% !important;
}

.btm-n {
    bottom: 0% !important;
}

.banner-carousel h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 16px;
}

.btm-gp h1 {
    margin-bottom: 0;
}

.banner-carousel h6 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
}

.banner-carousel p {
    font-size: 16px;
    line-height: 31px;
    margin-bottom: 32px;
}

.banner-carousel .banner-btn {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 3px 17px;
    width: 200px;
    height: 56px;
    border-radius: 12px;
    background: #F7941D;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.cmn-sec-marg {
    margin-bottom: 100px;
}

#home,
#about,
#events,
#services,
#belive,
#contact {
    margin-bottom: 75px;
}

/* 
------------------------------------------------------------------------------------------------banner-carousel ends here  */


.sec-head {
    font-weight: 700;
    font-size: 64px;
    line-height: 81px;
    /* identical to box height */
    text-align: center;

    color: #414042;
    margin: 0 auto;
    margin-bottom: 60px;
}

.common-txt {
    font-weight: 450;
    font-size: 16px;
    line-height: 30px;
    /* or 150% */
    color: #414042;
}

.about-blue-hd {
    font-style: normal;
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;

    /* Lecom/Primary Colour */
    color: #007392;
    margin-bottom: 20px;
}

.about-list {
    margin-bottom: 40px;
}

.abt-list-item {
    display: flex;
    align-items: center;
}

.about-btn {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 3px 17px;
    width: 200px;
    height: 56px;
    border-radius: 12px;
    background: #007392;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
}

.abt-list-icon {
    margin-right: 15px;
}

.common-bld-txt {
    font-size: 20px;
    font-weight: 500;
}

.event-carousel.owl-theme .owl-dots {
    background: #FFFFFF;
    box-shadow: 8px 18px 44px -6px #e4e4f8;
    border-radius: 13.5px;
    display: flex;
    margin: 0 auto;
    /* padding: 11px; */
    height: 36px;
    align-items: center;
    align-self: center;
    text-align: center;
    width: fit-content;
    /* margin-top: -26px; */
}

.event-carousel.owl-theme .owl-dots .owl-dot span {
    width: 7px;
    height: 7px;
    margin: 5px 7px;
    background: #000000;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
}

.event-carousel.owl-theme .owl-dots .owl-dot.active span,
.event-carousel.owl-theme .owl-dots .owl-dot:hover span {
    width: 10px;
    height: 10px;
    background: #000000;
}

.event-carousel.owl-carousel .owl-item img {
    display: block;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
}
/* 
------------------------------------------------------------------------------------------------Events ends here  */
.product-card {
    background: #fff;
    box-shadow: 8px 18px 44px -6px #E4E4F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 50px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-transform: uppercase;
    color: #414042;
}

.product-card-icon {
    margin-right: 35px;
}

.product-card p {
    font-size: 16px;
    line-height: 24px;
    color: #414042;
    margin-bottom: 10px;
}

.product-card a {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    float: right;
    color: #F7941D;
}

.product-card a img {
    margin-left: 20px;
}

/* 
------------------------------------------------------------------------------------------------products ends here  */

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 52px;
    min-height: 375px;
    background: #FFFFFF;
    box-shadow: 8px 18px 44px -6px #e4e4f8;
    margin-bottom: 100px;
}

.service-card h4 {
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #414042;
    margin-top: 35px;
    margin-bottom: 25px;
}

.service-card p {
    font-style: normal;
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #414042;
}



.feature-benifit-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.feature-benifit-card h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-align: center;

    /* Lecom/Black */
    color: #414042;
    margin-bottom: 40px;
}

.feature-benifit-card img {
    margin-bottom: 40px;
}

.feature-benifit-card p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    /* identical to box height, or 120% */
    text-align: center;

    /* Lecom/Black */
    color: #414042;
    margin-bottom: 15px;

}

/* 
------------------------------------------------------------------------------------------------service ends here  */

.why-us {
    background: #414042;
    padding: 50px 0;
    color: #fff;
}

.sec-head.wht {
    font-weight: 700;
    font-size: 64px;
    line-height: 81px;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.sec-head-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-bottom: 50px;
}

.sec-sub-hd.wht {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    max-width: 33%;
    text-align: center;
    line-height: 32px;
}

.why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 15px;
}

.why-card img {
    margin-bottom: 40px;
}

.why-card h4 {
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 16px;
    line-height: 35px;
}


/* 
------------------------------------------------------------------------------------------------why-us ends here  */
.sec-sub-hd.blv-wht {
    font-size: 20px;
    font-weight: 500;
    /* max-width: 60%;
    text-align: center; */
    line-height: 32px;
    margin: 0 auto;
    margin-bottom: 20px;
    /* color: #fff; */
}

.sec-head.orange {
    font-weight: 700;
    font-size: 64px;
    line-height: 81px;
    text-align: left;
    color: #F7941D;
    margin: 0 auto;
    margin-bottom: 25px;
}

.belive-inner-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.we-blv-left {
    width: 50%;
}

.we-blv-rgt {
    width: 50%;
}

.we-blv-rgt img {
    width: 100%;
}

/* .belive {
    background-image: url(../img/vector-new/index-weblv.jpg);
    min-height: 66vh;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
} */

/* 
------------------------------------------------------------------------------------------------belive ends here  */
.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-inner img {
    margin-bottom: 35px;
}

.contact-inner .contact-hd {
    font-weight: 700;
    font-size: 60px;
    line-height: 76px;
    text-align: center;
    color: #007392;
    padding: 0 55px;
    margin-bottom: 20px;
}

.contact-inner p {
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #414042;
}

/* 
------------------------------------------------------------------------------------------------contact ends here  */

footer {
    background: #007392;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    padding-bottom: 40px;
}

address {
    font-weight: 500;
    font-size: 20px;
    line-height: 35px;
    text-align: center;
    color: #FFFFFF;
    padding: 40px 0;
}

footer p {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}


/* ////////////////////////////////////////////////////////////////////////////================ inner page style starts here ============////  */

.blk-bg {
    background: #414042 !important;
}

.cmn-contact-inner-pg.contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #414042 !important;
    margin-bottom: 0 !important;
    padding: 100px 0;
}

.cmn-contact-inner-pg.contact-inner img {
    margin-bottom: 35px;
}

.cmn-contact-inner-pg.contact-inner .contact-hd {
    font-weight: 700;
    font-size: 50px;
    line-height: 76px;
    text-align: center;
    color: #fff;
    padding: 0 55px;
    margin-bottom: 15px;
}

.cmn-contact-inner-pg.contact-inner p {
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    color: #fff;
}

.team-card {
    margin-bottom: 50px;
}

.team-card img {
    width: 100%;
    margin-bottom: 35px;
}

.team-card h3 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: #F7941D;
}

.team-card .designation {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #414042;
}

.team-card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #414042;
    margin: 10px 0;
}

/* 
------------------------------------------------------------------------------------------------about-inner-pg ends here  */
.class-i-p-card {
    position: relative;
    margin-bottom: 60px;
}

.class-i-p-card img {
    width: 100%;
    border-radius: 10px;
}

.card-btm {
    height: 64px;
    background: #F7941D;
    opacity: 0.9;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.card-btm p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

/* 
------------------------------------------------------------------------------------------------demo-class-inner-pg ends here  */
.demo-class-i-p-card {
    position: relative;
    margin-bottom: 60px;
    height: 300px;
    object-fit: contain;
}

.demo-class-i-p-card img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.demo-class-card-btm {
    height: 64px;
    background: #414042;
    opacity: 0.9;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-class-card-btm p {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.custom-modal {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-mdl .modal-dialog {
    max-width: 65% !important;
}

.custom-modal video {
    width: 100%;
    object-fit: contain;
}

/* 
------------------------------------------------------------------------------------------------class-inner-pg ends here  */
.subject-list-item {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    margin-bottom: 60px;
    box-shadow: 8px 18px 44px -6px #e4e4f8;
}

.subject-list-item img {
    margin-right: 60px;
}

.subject-list-item h3 {
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    color: #414042;
    margin-bottom: 15px;
}

.subject-list-item p {
    font-weight: 450;
    font-size: 16px;
    line-height: 27px;
    color: #414042;
    margin-bottom: 10px;
}

.subject-list-item a {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    float: right;
    color: #F7941D;
}

/* ********************************************* our teachers starts  */
.teacher-card img {
    width: 243px;
    height: 228px;
    margin-bottom: 15px;
}

.teacher-card {}

.teacher-card h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #007392;
}

.teacher-card p {
    font-weight: 450;
    font-size: 16px;
    line-height: 20px;
    color: #414042;
}

.teacher-item-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    grid-column-gap: 93px;
    grid-row-gap: 50px;
}

/* 
------------------------------------------------------------------------------------------------pricing-inner-pg ends here  */

.class-card {
    box-shadow: 8px 18px 44px -6px #e4e4f8;
    margin-bottom: 40px;
}

.class-card img {
    width: 100%;
}

.class-card h4 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #414042;
    margin-bottom: 4px;
}

.class-card-btm {
    padding: 20px 30px;
}

.class-card p {
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    color: #414042;
    margin-bottom: 4px;
}

.class-card p.green-txt {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #219653;
}

.class-card a {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 3px 17px;
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background: #F7941D;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.custom-class-ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px !important;
    box-shadow: 8px 18px 44px -6px #e4e4f8;
    width: max-content;
}

.custom-class-ul.nav-tabs .nav-link {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #007392;
    text-transform: capitalize;
    border-radius: 5px;
    padding: 20px;
}

.custom-class-ul.nav-tabs .nav-item.show .nav-link,
.custom-class-ul.nav-tabs .nav-link.active {
    background: #007392;
    color: #fff;
    border-radius: 5px;
}

/* 
------------------------------------------------------------------------------------------------career-inner-pg ends here  */
.contact-us-card-wrap {
    width: 100%;
}

.contact-us-tp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 45px;
    height: 296px;
    background: #FFFFFF;
    box-shadow: 8px 18px 44px -6px #E4E4F8;
    margin: 20px 20px;
}

.contact-us-tp-card h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #414042;
    margin-bottom: 20px;
}

.contact-us-tp-card p {
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #414042;
}

.contact-us-tp-card img {
    margin-bottom: 35px;
}

/* 
------------------------------------------------------------------------------------------------contact-inner-pg ends here  */
.feature-card-wrap {
    width: 100%;
}

.feature-card-wrap .active {
    background: #F7941D;
}

.feature-card-wrap .active p {
    background: #F7941D;
    color: #fff;
}

.feature-tp-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 45px;
    height: 246px;
    background: #FFFFFF;
    box-shadow: 8px 18px 44px -6px #E4E4F8;
    margin: 20px 20px;
}

.feature-tp-card h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    text-transform: uppercase;
    color: #414042;
    margin-bottom: 20px;
}

.feature-tp-card p {
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #414042;
}

.fst-gp img {
    margin-bottom: 60px !important;
}

.feature-tp-card img {
    margin-bottom: 35px;
}

/* ***************************************** send message section starts  */
.send-msg-wrap {}

.send-msg-wrap img {
    width: 100%;
}

.send-msg-wrap h4 {
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
    color: #414042;
    margin-bottom: 15px;
}

.send-msg-wrap p {


    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
    color: #414042;
    margin-bottom: 35px;
}

.send-msg-wrap label {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #414042;
    margin-bottom: 5px;
}



.send-msg-wrap input {
    background: #FAFAFA;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    height: 55px;
    margin-bottom: 20px;
    padding: 4.5px 12px 3.68px;
    font-size: 15px;
}

.send-msg-wrap textarea {
    background: #FAFAFA;
    border: 1px solid #BDBDBD;
    border-radius: 4px;
    height: 155px;
    margin-bottom: 20px;
    width: 100%;
    padding: 9.5px 13px 3.68px;
    font-size: 15px;
}

.send-msg-btn {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 3px 17px;
    width: 200px;
    height: 56px;
    border-radius: 12px;
    background: #F7941D;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;

}

.remark-ht {
    height: 170px !important;
}

.contact-mdl {
    padding: 60px 100px;
    border-radius: 20px;
    background-image: url("../images/Rectangle\ 5404.svg");
    background-position: top;
    background-repeat: no-repeat;
}


.contact-top h5 {
    font-weight: 700;
    font-size: 32px;
    line-height: 44px;
    color: #666666;
}

.contact-contnt p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #666666;
}

/* ***************************************** send message section ends  */
.map-wrap {
    margin-top: 100px;
    width: 100%;
}

/* 
------------------------------------------------------------------------------------------------contact-inner-pg ends here  */
.lang-card-wrp {
    display: flex;
    justify-content: center;
}



html {
    scroll-behavior: smooth;
}

/* #about,
#service,
#product,
#Portfolio,
#contact {
    padding-top: 150px;
} */

.bold-txt {
    font-weight: bold;
}

.common-txt a {
    color: #414042;
}

.common-txt a:hover {
    text-decoration: none;
    color: #414042;
}

.spce-top {
    margin-top: 35px !important;
}

/* .rd-c {
    color: rgb(181, 58, 58);
} */

.tchr-img-wrp {
    min-height: 342px;
}

.tchr-img-wrp img {
    width: 250px;
    border-radius: 10px;
    min-height: 376px;
    object-fit: cover;
}

.sylb-btn {
    background-color: #007392;
    border-radius: 15px;
    height: 245px;
    width: 200px;
    display: flex;
    align-items: center;
    text-align: center;
    margin: auto;
}

.sylb-btn a {
    color: #fff;
    font-size: 30px;
}


.carousel-inner .carousel-item img {
    height: 448px;
    object-fit: contain;
}

/* Smartphones (portrait and landscape) -- -- -- -- -- - */

@media screen and (min-width: 320px) and (max-width: 667px) {

    /* Styles */
    /* #nav-2 .navbar-light .navbar-toggler {
        position: relative;
        float: right;
        padding: 5px 14px;
        margin-top: 8px;
        margin-right: 15px;
        margin-bottom: 8px;
        background-image: none;
        border: 1px solid #333;
        border-radius: 4px;
    }

    button.navbar-toggler:focus,
    button.navbar-toggler:active {
        outline: none;
    } */
}

/* iPads (portrait and landscape) -- -- -- -- -- - */

@media screen and (min-width: 768px) and (max-width: 1200px) {
    #nav-2 nav.navbar.navbar-expand-lg.navbar-light.bg-light.fixed-top {
        padding: 10px 0px !important;
    }

    .banner-carousel .carousel-caption {
        bottom: 7%;
        right: 10%;
    }

    .custom-container {
        padding: 0 50px;
    }

    .service-card {
        min-height: 400px;
    }

    .contact-us-tp-card {
        padding: 20px;
    }

    #nav-2 a.nav-link {
        margin-right: 20px;
    }

    .nav-container {
        padding: 0 35px;
    }

    .call-btn {
        margin-left: 10px;
    }

    .custom-class-ul.nav-tabs .nav-link {
        padding: 15px;
        font-size: 14px;
    }

    /* .banr-btm {
        bottom: 30% !important;
    } */

    .bottom-nav {
        margin-top: 157px;
        height: fit-content;
        padding: 10px;
    }

    .banner-content h1 {
        font-size: 35px !important;
    }
}


@media screen and (min-width: 991px) and (max-width: 1107px) {
    .bottom-nav {
        margin-top: 156px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .container {
        max-width: 1286px !important;
    }

    #nav-2 a.nav-link {
        margin-right: 30px;
        font-size: 14px;
    }

    .custom-container {
        padding: 0 75px;
    }

    .custom-class-ul.nav-tabs .nav-link {
        padding: 15px;
        font-size: 17px;
    }

    .bottom-nav {
        margin-top: 96px;
        min-height: 96px;
    }

    .nav-btm-right a:first-child {
        margin-left: 0;
    }

    .banner-carousel .carousel-caption {
        bottom: 0;
    }

    .nav-btm-left a {
        margin-right: 35px;
        font-size: 14px;
    }

}

@media screen and (min-width: 1400px) and (max-width: 1600px) {
    .container {
        max-width: 1400px !important;
    }

    .nav-btm-left a {
        margin-right: 40px;
        font-size: 14px;
    }

    #nav-2 a.nav-link {
        font-size: 15px;
        margin-right: 35px;
    }

}


@media screen and (min-width: 1600px) {
    .container {
        max-width: 1536px;
    }
}

@media (max-width: 991px) {
    .custom-class-ul {
        width: auto;
        padding: 10px;
    }

    #nav-2 a.nav-link {
        text-align: center;
        margin-right: 0;
    }

    .res-cnt {
        margin: auto;
    }

    .nav-btm-left {
        display: block;
        text-align: center;
    }

    .nav-btm-cnt {
        justify-content: center;
        margin: 10px;
    }

    .nav-btm-right {
        margin: auto;
    }

    .bottom-nav {
        margin-top: 100px !important;
    }

    .price-wrp {
        display: block !important;
    }

    .price-left {
        width: 100% !important;
    }

    .price-right {
        margin-top: 50px;
        width: 100% !important;
    }

    .carousel-inner .carousel-item img {
        height: 100%;
    }

    .belive-inner-wrap {
        display: block;
    }

    .we-blv-left {
        margin-top: 50px;
        width: 100%;
    }

    .we-blv-rgt {
        width: 100%;
    }

    .call-btn {
        margin-left: 0;
    }
}

@media (max-width: 767.98px) {
    .banner-carousel .carousel-caption {
        bottom: 0;
        right: 10%;
    }

    .banner-carousel p {
        font-size: 14px;
    }

    .banner-carousel h1 {
        font-size: 30px;
    }

    .custom-container {
        padding: 0 30px;
    }

    .common-txt {
        text-align: justify;
    }

    .sec-head {
        font-size: 45px;
    }

    .about-blue-hd {
        font-size: 25px;
    }

    .product-card-icon {
        margin-right: 15px;
        width: 50px;
    }

    .product-card {
        padding: 30px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .product-card p {
        font-size: 14px;
    }

    .product-card a {
        font-size: 16px;
    }

    .product-card a img {
        margin-left: 10px;
        width: 20px;
    }

    .sec-head.wht {
        font-size: 40px;
    }

    .sec-sub-hd.wht {
        max-width: 100%;
    }

    .sec-head.orange {
        font-size: 40px;
    }

    .sec-sub-hd.blv-wht {
        font-size: 16px;
        max-width: 100%;
    }

    .contact-inner .contact-hd {
        font-size: 35px;
        line-height: 45px;
        padding: 0px 15px;
    }

    .subject-list-item img {
        margin-right: 15px;
    }

    .subject-list-item h3 {
        font-size: 20px;
    }

    .subject-list-item p {
        font-size: 12px;
        line-height: 24px;
    }

    .subject-list-item a {
        font-size: 15px;
    }

    .sub-img {
        width: 200px;
    }

    .banr-btm {
        bottom: 30% !important;
    }

    .bottom-nav {
        height: fit-content;
        padding: 10px;
    }

    .nav-btm-left {
        margin: auto;
        padding-bottom: 20px;
    }

    .tchr-img-wrp {
        height: 100%;
    }

}


@media (max-width: 575.98px) {


    .banner-carousel p {
        font-size: 12px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .banner-carousel h1 {
        font-size: 23px;
        line-height: 35px;
    }

    .service-card {
        padding: 15px;
        margin-bottom: 50px;
    }

    .nav-container {
        padding: 0px 10px;
    }

    .logo-img {
        width: 50px;
    }

    .nav-container .navbar-toggler-icon img {
        width: 30px;
    }

    .subject-list-item img {
        margin-right: 30px;
    }

    .sub-img {
        display: none;
    }

    .subject-list-item {
        padding-left: 10px;
    }

    .contact-us-tp-card {
        height: fit-content;
    }

    .custom-class-ul.nav-tabs .nav-link {
        font-size: 17px;
        padding: 20px;
    }

    .nav-container {
        justify-content: space-around;
    }

    .bottom-nav {
        margin-top: 65px;
    }

    .feature-benifit-card h3 {
        font-size: 25px;
    }

    .sec-head {
        font-size: 35px;
        line-height: 45px;
    }

    .txt-algn {
        bottom: 4% !important;
    }

    .nav-btm-icn {
        display: grid;
    }

    .bottom-nav {
        margin-top: 66px !important;
    }

    .banner-content h1 {
        font-size: 25px !important;
    }

    address {
        font-size: 14px;
        line-height: 28px;
    }

    .nav-btm-left a {
        font-size: 14px;
    }

    .nav-btm-right a {
        margin-left: 15px;
        font-size: 10px;
    }

    .banner-carousel .carousel-caption {
        bottom: 15%;
    }

    .cmn-contact-inner-pg.contact-inner .contact-hd {
        padding: 0 25px;
    }

    .subject-list-item h3 {
        font-size: 15px;
    }

    .class-card-btm {
        padding: 15px;
    }

    .reg-btn-wrap a {
        width: 100%;
    }

    .nav-btm-left a {
        margin-right: 15px;
    }
}







/* new style starts here => Banner (Vector) */

.banner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    margin-top: 50px;
}


.banner-content h1 {
    color: #007392;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.banner-content p {
    color: #414042;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

a.banner-btn {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 8px 17px;
    width: 180px;
    height: 48px;
    background: #F7941D;
    border-radius: 24px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
}

.banner-right img {
    width: 100%;
}

.clos-btn-vd button{
    display: flex;
    justify-content: flex-end;
}

.animate-text {
    display: inline-block;
}

.animate-text span {
    animation: fadeIn 0.5s ease-in-out forwards;
    opacity: 0;
}

.animate-text span:nth-child(1) {
    animation-delay: 0s;
}

.animate-text span:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-text span:nth-child(3) {
    animation-delay: 0.2s;
}

.price-wrp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-left {
    width: 50%;
}

.price-right {
    width: 50%;
}

.sub-img {
    width: 250px;
}

.reg-btn-wrap {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.reg-btn-wrap a {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
    padding: 3px 17px;
    width: 230px;
    height: 48px;
    border-radius: 12px;
    background: #F7941D;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.c-btm-txt {
    font-size: 8px;
    padding-top: 5px;
    font-style: italic;
}

.greentxt {
    color: #219653;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
}

.offer-prce-wp p {
    display: block;
    text-align: center;
    color: #219653;
    font-size: 25px;
    font-weight: 600;
    line-height: 20px;
    font-style: italic;
    margin: 50px 0px;
}


/* @keyframes move {
    to {
        transform: translateX(-100%);
    }
} */

/* Add more span nth-child selectors as needed */

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}