
@font-face {
    font-family: 'TTNorms-Regular';
    src: url('./../assets/fonts/TTNorms-Regular.eot');
    src: url('./../assets/fonts/TTNorms-Regular.woff2') format('woff2'), 
    url('./../assets/fonts/TTNorms-Regular.woff') format('woff'),
    url('./../assets/fonts/TTNorms-Regular.ttf') format('truetype'),
    url('./../assets/fonts/TTNorms-Regular.otf') format('opentype'),
    url('./../assets/fonts/TTNorms-Regular.svg') format('svg');
}
@font-face {
    font-family: 'TTNorms-Bold';
    src: url('./../assets/fonts/TTNorms-Bold.eot');
    src: url('./../assets/fonts/TTNorms-Bold.woff2') format('woff2'), 
    url('./../assets/fonts/TTNorms-Bold.woff') format('woff'),
    url('./../assets/fonts/TTNorms-Bold.ttf') format('truetype'),
    url('./../assets/fonts/TTNorms-Bold.otf') format('opentype'),
    url('./../assets/fonts/TTNorms-Bold.svg') format('svg');
}
font-face {
    font-family: 'TTNorms-Medium';
    src: url('./../assets/fonts/TTNorms-Medium.eot');
    src: url('./../assets/fonts/TTNorms-Medium.woff2') format('woff2'), 
    url('./../assets/fonts/TTNorms-Medium.woff') format('woff'),
    url('./../assets/fonts/TTNorms-Medium.ttf') format('truetype'),
    url('./../assets/fonts/TTNorms-Medium.otf') format('opentype'),
    url('./../assets/fonts/TTNorms-Medium.svg') format('svg');
}
font-face {
    font-family: 'TTNorms-ExtraBold';
    src: url('./../assets/fonts/TTNorms-ExtraBold.eot');
    src: url('./../assets/fonts/TTNorms-ExtraBold.woff2') format('woff2'), 
    url('./../assets/fonts/TTNorms-ExtraBold.woff') format('woff'),
    url('./../assets/fonts/TTNorms-ExtraBold.ttf') format('truetype'),
    url('./../assets/fonts/TTNorms-ExtraBold.otf') format('opentype'),
    url('./../assets/fonts/TTNorms-ExtraBold.svg') format('svg');
}

:root {
    --black: #000000;
    --white: #ffffffe6;
    --font-weight-reg:400;
    --font-weight-bold:700;
    --site-color:#f1b92f;
    --site-text-color:#646464;
    --site-primary-font: 'TTNorms-Regular';
    --site-bg-color: #fffff;
    --white-color: #ffffff;
    --black-color: #000000;

}

* {
    
    box-sizing: border-box;
}


body{
    
    font-size: 1vw !important;
    color: var(--site-text-color);
    /* background: url(./../assets/images/bg-gradient.png) no-repeat; */
    /* background: linear-gradient(to bottom right, #001a32, #144563); */
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    font-family: var(--site-primary-font) !important;
    color: var(--black-color);
    overflow-x: hidden;
   
}
img{
    width: 100%;
}
.full-width-wrapper {
    width: 100%;
    padding: 1vw 0;
    background-color: var(--site-bg-color);
    transition: ease-in-out all .3s;
}
.full-width-wrapper.nav-bar {
    /* position: fixed; */
    top: 0;
    z-index: 2;
}
.site-logo{
    transition: ease-in-out all .3s;
}
.full-width-wrapper.nav-bar.nav-scrolled .site-logo#site-name {
   width: 20%;
}
.full-width-wrapper.nav-bar.nav-scrolled {
    background: #fff;
    position:fixed;
}
.main-wrapper{
    position: relative;
    width: 100vw;
    margin: 0 auto;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
section.header {
    /* background-image: -webkit-linear-gradient(150deg, #f1b92f 45%, transparent 35%); */
    /* background: url(./../assets/images/desktop-bg2.jpg) no-repeat center; */
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    /* padding-top: 7vw; */
}
body .carousel {
    position: relative;
    overflow: hidden;
    height: 100%;
}
.carousel.pointer-event{
    height: 100%;
    overflow: hidden;
}
body .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 100%;
}
body .carousel-item{
    height: 100%;
}
body .carousel-caption {
    background: rgb(0 0 0 / 80%);
    left: 0;
    top: 30%;
    height: 20vw;
    width: 80%;
    margin: 0 auto;
    right: 0;
    display: flex;
    align-items: center;
    padding: 2vw;
    font-size: 1.5vw;
    display: none;
}
body .carousel-caption .info{
    width: 80%;
    margin: 0 auto;
}
.header-content-wrapper1{
    /* background: url(./../assets/images/bg.png) no-repeat center; */
    width: 100%;
    max-width: 60%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right 0;
}
.pay-content-wrapper,.deal-content-wrapper {
    display: flex;
    
}
.pay-left-content-wrapper {
    background: url(./../assets/images/pay-section-bg.jpg) no-repeat center;
    background-size: cover;
    width: 50%;
}
.pay-right-content-wrapper,.deal-left-content-wrapper {
    width: 50%;
    z-index: 1;
}
.pay-right-content-wrapper .items{
    position: relative;
    padding: 5vw 5vw 3vw 2vw;
}
.pay-right-content-wrapper .items:before {
    content: "";
    background: #fff;
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    left: -80px;
    transform: skew(-0.03turn);
    z-index: -1;
}
.track-right-wrapper .items{
    height:101%;
}
a.cta {
    color: var(--site-color);
    font-weight: 700;
    font-size: 2vw;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 35px 0 0;
}
.cta .icon {
    margin: 0 0 0 16px;
}
section.header1:after{
    -webkit-transform: rotate(45deg); 
    -moz-transform: rotate(45deg);
}
.left-content-wrapper {
    width: 50%;
    font-size: 2vw;
}
.right-content-wrapper {
    width: 50%;
    text-align: center;
}
.right-content-wrapper .card {
    background: var(--white-color);
}
.section-title{
    /* text-shadow: 0 2px 4px rgb(0 0 0 / 50%); */
    font-weight: 700;
    font-size: 3vw;
    /* padding-bottom: 3vw; */
}
section.download{
    background-image: -webkit-linear-gradient(150deg, transparent 45%, #f1b92f 35%);
    background: #fff;
    padding: 6vw 2vw;
    text-align: center;
}
section.contact{
    background: var(--site-color);
    padding: 6vw 2vw;
    text-align: center;
}


.section-desc {
    padding: 2vw 0;
    font-size: 1.5vw;
   
}
.col-cta {
    max-width: 30vw;
    box-shadow: 0 0 8px 0 rgb(0 0 0 / 24%);
    border-radius: 16px;
    background: #f1b92f;
    margin: 0 auto;
    padding: 2vw;
}
.btn-group.cta a img {
    width: auto;
    max-width: 100%;
    max-height: 50px;
    margin: 0 auto;
    padding: 0 5px;
}
section.socials{
    padding: 6vw 2vw;
    text-align: center;
}
.socials-content-wrapper .logo {
    width: 10%;
    margin: 0 auto;
    padding-bottom: 2vw;
}
.socials-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}
.socials-nav a{
    padding: 1vw;
    font-size: 2vw;
    width: 4vw;
    text-align: center;
    text-decoration: none;
    margin: 0 1vw;
    background-color: var(--site-color);
    border-radius: 50%;
    color: var(--black-color);
    transition: 0.5s ease-in-out;
    border: 1px solid var(--site-color);
}
.socials-nav a:hover{
    background: var(--black-color);
    color: var(--site-color);
}

body .nav-wrapper #nav-items a:hover{
    /* color: var(--white); */

}
.full-width-wrapper.nav-bar.nav-scrolled .nav-wrapper #nav-items a:hover{
    color: var(--site-color);

}
.deal-right-content-wrapper{
    background: url(./../assets/images/wine.gif) no-repeat center;
    background-size: cover;
    width: 50%;
}
.track-left-wrrapper{
    background: url(./../assets/images/slide_1.jpg) no-repeat center;
    background-size: cover;
    width: 50%;
}
.res-right-content-wrapper{
    background: url(./../assets/images/become-partner.png) no-repeat center;
    background-size: 100% auto;
    width: 50%;
}
.driver-left-wrrapper{
    background: url(./../assets/images/delivery.gif) no-repeat center;
    background-size: cover;
    width: 50%;
}
.deal-left-content-wrapper .items{
    position: relative;
    padding: 5vw 5vw 3vw 2vw;
}
.deal-left-content-wrapper .items:before {
    content: "";
    background: #fff;
    position: absolute;
    width: 120%;
    height: 100%;
    top: 0;
    right: -80px;
    transform: skew(0.03turn);
    z-index: -1;
}
.item-ico {
    padding-bottom: 2vw;
}
.item-ico img {
    width: auto;
}
.whatsapp {
    position: fixed;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
    z-index: 1;
}
.whatsapp a {
    padding: 1vw;
    font-size: 2vw;
    width: 4vw;
    text-align: center;
    text-decoration: none;
    margin: 0 1vw;
    background-color: #25D366;
    border-radius: 50%;
    color: #fff;
    transition: 0.5s ease-in-out;
    border: 1px solid #25D366;
    margin: 0;
}
.whatsapp a:hover{
    background:var(--black-color);
    border-color:var(--black-color);
    color:#25D366;
}
body .full-width-wrapper .language-translation.en {
    font-size: 0.95vw;
}
body .full-width-wrapper .language-translation {
    color: #ffff;
    font-size: 1.1vw;
}
body .language-translation a {
    color: #fff;
    text-decoration: underline;
    transition: 0.5s ease-in-out;
  
}
body .language-translation a:hover{
    color: var(--site-color);
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 97%;
    margin: 0 auto;
    background-color: var(--site-bg-color);
}
.home .header-wrapper{
    position: absolute;
    z-index: 2;
}

ul#primary-menu-list {
    display: flex;
    list-style: none;
    justify-content: space-between;
}
body.ta .nav-wrapper #nav-items a, ul#primary-menu-list a{
    font-size: 1vw;
}
body.en .nav-wrapper #nav-items a, ul#primary-menu-list a{
    font-size: 1vw;
}
.nav-wrapper #nav-items a, ul#primary-menu-list a {
    color: var(--black);
    font-weight: normal;
    line-height: 30px;
    text-decoration: none;
    outline:none !important;
    font-weight:500;
    display: flex;
    font-weight: 700;
    text-decoration: none;
   
    align-items: center;
    padding: 12px 12px;
    border-radius: 6px;
    margin-right: 12px;
    text-align: center;
    background: rgba(255,255,255,.3);
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 24%);

}
li.menu-item-has-children {
    position: relative;
}
.primary-navigation > .primary-menu-container ul > li .sub-menu-toggle[aria-expanded=false] ~ ul {
    display: none;
}
.nav-wrapper #nav-items a[aria-current=page], ul#primary-menu-list a[aria-current=page]{
    color: var(--site-color);
}
.primary-navigation > div > .menu-wrapper > li > .sub-menu {
    right: 0;
    margin: 0;
    min-width: max-content;
    position: absolute;
    top: 100%;
    padding-top: 3px;
    transition: all 0.5s ease;
    z-index: 88888;
    list-style: none;
    padding: 1vw;
    text-align: left;
    width: 100%;
}
button.sub-menu-toggle {
    display: none;
}
li.menu-item-has-children:hover ul.sub-menu {
    display: block;
    background: var(--site-bg-color);
    color: #000;
    border: 1px solid #fff;
}
.nav-wrapper #nav-items a:last-child{
    /* padding-right: 0; */
   
}
ul#primary-menu-list li:last-child a{
    margin-right: 0;
}
#site-name {
    width: 40%;
    margin: 0;
   
}
#site-name img {
    width:15%;
}
#site-name a {
    display: block;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
}
span.logo-name {
    color: #ecc22c;
    font-weight: normal;
    text-decoration: none;
    padding-bottom: 5px;
    font-size: 20px;
}
span.logo-content {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}
span.kural {
    font-size: 1vw;
    color: var(--white);
    font-weight: normal;
}
a:hover{
    /* opacity: 0.6; */
    transition: 0.5 ease;
}
.nav-wrapper #nav-items a:hover, .menu-social-menu-container ul li a:hover, .footer a:hover{
    color:var(--site-color);
}
.home-banner {
    position: relative;
}
.recent-events {
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 20px;
}
.main-content-wrapper p {
    font-size: 18px;
    padding-bottom: 20px;
    margin: 0;
}
.schools-description p {
    margin: 0;
}
.school-details .faculty-info .info {
    font-weight: bold;
}
.facult-info-grid,.event-info-grid {
    background: #144563;
    color: var(--white);
    margin: 1vw 0;
    padding: 1vw;
}
body .event-info-grid {
    width:100%;
    background-color: #f0eaea;
    text-align: center;
}
.facult-info-grid a{
    color: #fff;
    transition: 0.5s ease-in-out;
}
.event-info-grid a {
    color: #000;
    transition: 0.5s ease-in-out;
}
.facult-info-grid a:hover {
    color: #ecc22c;
}
.event-info-grid a:hover {
    color: var(--site-bg-color);
}
.footer-desc {
    background: var(--site-color);
    color: #000;
    text-align: center;
    padding: 10px 0;
}

.footer {
    width: 100%;
    text-align: left;
    padding: 3vw 0;
    font-family: var(--site-primary-font);
    font-weight: normal;
    background: var(--site-bg-color);
    padding-bottom: 0;
}
.footer-content-wrapper {
    width: 100vw;
    margin: 0 auto;
}
.footer-menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 2vw;
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 1vw;
}
.footer-logo {
    text-align: center;
}
.footer-logo img {
    width:75%;
}
.menu-grid {
    padding-left: 2vw;
}
.menu-grid ul {
    list-style: none;
    padding: 0;
}
.menu-grid ul li {
    font-size: 1.042vw;
    line-height: 1.875vw;
    color: var(--white);
}
.menu-grid ul li a {
    color: var(--white);
  
}
.menu-title {
    font-size: 1.25vw;
    line-height: 1.875vw;
    padding-bottom: 1vw;
    color: var(--white);
}
.address p {
    font-size: 1.042vw;
    line-height: 1.875vw;
}
.home .footer{
    position: absolute;
    bottom: 15px;
    padding: 0;
}
.footer a {
    font-size: 16px;
    line-height: 12px;
    color:var(--white);
    text-decoration: none;
}
.copy-right-section {
    padding: 1vw 0;
    text-align: center;
    color: var(--black);
    justify-content: center;
    font-size: 1.042vw;
    line-height: 1.875vw;
    font-weight: 500;
    background: var(--site-color);
}
.copy-right-section a {
    color: var(--black-color);
    transition: 0.5s ease-in-out;
}
.copy-right-section a:hover{
    color: var(--white-color);
}
.additional-menus{
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
}
.additional-menus .action{
    display: flex;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    align-items: center;
    padding: 12px 12px;
    border-radius: 6px;
    margin-right: 12px;
    text-align: center;
    background: rgba(255,255,255,.3);
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 24%);
}


.site-name .menu-text{
    display:none;
}
.mobile-only {
    display: none;
}
#close-wrapper {
    display: none;
}


.home-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3vw;
    padding: 5vw 0;
}
.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3vw;
    padding: 3vw 0;
}
.contact-content-wrapper a {
    color: var(--site-bg-color);
    font-weight: bold;
}
.hover-image .module-inner {
    overflow: hidden !important;
    position: relative;
    display: inline-block;
}
.hover-image .module-image img {
    width: 100%;
}
.hover-image{
    margin-bottom: 2vw;
}
.hover-image .module-content {
    backface-visibility: hidden;
    height: 0%;
    left: 0;
    opacity: 1;
    overflow-x: hidden;
    /* overflow-y: hidden; */
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 9;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
 .hover-image .module-inner:hover .module-content:not(.class-content){
    overflow-y: scroll;
}
 .hover-image .module-content::-webkit-scrollbar {
    width: 5px;
}
  
 .hover-image .module-content::-webkit-scrollbar-track {
    background: #144563; 
}

 .hover-image .module-content::-webkit-scrollbar-thumb {
    background: var(--site-bg-color); 
}
  
.hover-image .module-content::-webkit-scrollbar-thumb:hover {
    background: var(--site-bg-color); 
}

.hover-image .module-content .content-inner {
    color: var(--white);
    line-height: 2rem;
    padding: 10px 13px;
    font-weight: normal;
}

.hover-image .module-inner:hover .module-content:not(.class-content),  .hover-image .module-inner:hover .module-background:not(.class-content) {
    height: 100%;
}

.hover-image .module-inner .module-content, .hover-image .module-inner .module-background {
    height: 40px;
}

.hover-image .module-background {
    backface-visibility: hidden;
    height: 0%;
    left: 0;
    opacity: 0.9;
    overflow-x: hidden;
    overflow-y: hidden;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
    background-color:#144563;
}
.hover-image .content-inner a {
    color: var(--white);
    font-weight: normal;
}
.class-content-wrapper .hover-image .module-content{
    top:0;
    padding: 0;
    overflow: hidden;
    background: var(--site-bg-color);
}
.class-content-wrapper .hover-image .module-background{
    background: var(--site-bg-color);
    top:0;
}
.class-content-wrapper .hover-image .module-content .content-inner{
    line-height: inherit;
}

.recent-event-title {
    margin-bottom: 1vw;
}

.schools-content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2vw;
    padding: 4vw 0;
    padding-top: 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2vw;
}
.schools-content-wrapper .hover-image {
    margin-bottom: 0;
}
.hover-image.hide-class1{
    pointer-events: none;
}
.hover-image.hide-class .module-image img{
    -webkit-filter: grayscale(100%); 
    filter: grayscale(100%);
}
 .class-content-wrapper .hover-image.hide-class .module-content{
    background-color: grey;
}
.search-form-title {
    padding-bottom: 0.5vw;
}
.schools-content-wrapper h4.pb_title {
    color: #ecc22c;
    margin: 0;
}
.faculty-info p {
    margin: 0;
}
.schools-content-wrapper h4.pb_title a {
    color: #ecc22c;
    text-decoration: none;
}
.schools-content-wrapper .class-content-wrapper h4.pb_title a{
    color:#fff;
}
.schools-content-wrapper .class-content-wrapper .hover-image.hide-class h4.pb_title a{
    pointer-events: none;
}
.class-content-wrapper .hover-image .module-content .content-inner{
    padding: 10px 6px;
}
.class-content-wrapper h4.pb_title a{
    font-size: 15px;
}
.schools-content-wrapper .class-content-wrapper h4.pb_title a:hover{
    color:#ecc22c;
}
.class-content-wrapper .content-inner hr {
    display: none;
}
.schools-content-wrapper .hover-image .module-content .content-inner { 
    text-align: center;
}
.schools-title{
    font-size: 20px;
    font-weight: bold;
    padding: 2vw 0 1vw;
    text-align: left;

}
.school-featured-image img {
    width: 100%;
}

body .tribe-common-l-container.tribe-events-l-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.contact-form-title {
    padding: 0 0 1vw 0;
}
.right-sidebar input, .right-sidebar textarea, footer input, .tml input:not(.tml-checkbox){
    border: 2px solid #f0eaea;
    border-radius: 6px;
    /* box-shadow: inset 0 1px 2px rgb(0 0 0 / 10%); */
    color: var(--site-text-color);;
    display: block;
    margin: 0 0 1rem 0;
    -webkit-appearance: none;
    padding: 1rem;
    width: 100%;
    /* background: #f0eaea; */
    /* background: #ede7e9; */
    background: #f0eaea80;
    font-size: 18px;
    
    
}
footer input{
    border: 2px solid #f0eaea;
    border-radius: 6px;
    color: #000;
    display: block;
    margin: 0 0 1rem 0;
    -webkit-appearance: none;
    padding: 1rem;
    width: 100%;
    background: #f0eaea;
   
}

.right-sidebar textarea {
    resize: vertical;
}
.right-sidebar form p label {
    margin-bottom: 0.5vw;
    display: block;
}
.wpcf7-form textarea{
    width: 300px;
}
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"]{
    height: 50px;
    width: 300px;
}
input.wpcf7-submit, .tml .tml-button, .tml-links a{
    background: var(--black-color);
    cursor: pointer;
    transition: 0.5s ease-in-out;
    font-weight: bold;
    text-transform: uppercase;
    border: 1px solid var(--black-color);
    width: 50%;
    max-width: 200px;
    color:var(--white);
    margin-bottom: 0;
    padding: 1rem;
    border-radius: 6px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    text-decoration: none;
}
input.wpcf7-submit:hover, .tml .tml-button:hover,.tml-links a:hover{
    background: transparent;
    color:var(--site-bg-color);
    
}
.left-sidebar h4.pb_title {
    font-weight: normal;
    margin: 0;
}
footer input.wpcf7-submit {
    background: transparent;
    border: 1px solid var(--white);
   
}
footer input.wpcf7-submit:hover{
    background: var(--white);
    color:var(--site-bg-color);
    
}
.class-content-wrapper {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 1vw;
    padding: 3vw 0 4vw 0;
}
.class-content-wrapper .class-grid {
    background: #144563;
    color: var(--white);
    padding: 4vw 2vw;
    text-align: center;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}
.class-grid h4.pb_title a {
    color: var(--white);
    text-decoration: none;
    transition: 0.5s ease-in-out;
    text-decoration: none;
    font-weight: normal;
}
.class-grid h4.pb_title a:hover{
    color: #ecc22c;
}
.schools-landing-classes .classes-title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}
section.schools-landing {
    padding: 2vw 0 0 0;
}
.schools-landing .school-landing-title {
    padding-bottom: 1vw;
    font-weight: bold;
    font-size: 24px;
}
.school-description {
    padding: 2vw 0 0 0;
    font-size: 16px;
}

.school-featured-image img {
    width: 100%;
    
}
.class-teacher-profile-image img {
    width: 25%;
}
.breadcrumbs-section {
    padding: 2vw 0 0 0; 
}
.cd-breadcrumb, .cd-multi-steps {
    padding: 0.5em 1em;
    background-color: var(--site-bg-color);
    border-radius: .25em;
    width:100%;
    margin: 0;
}
.cd-breadcrumb li, .cd-multi-steps li {
    display: inline-block;
    margin: 0.5em 0;
}
.cd-breadcrumb.custom-separator li a {
    color:var(--white);
    text-decoration: none;
    transition: 0.5s ease-in-out;
}
.cd-breadcrumb.custom-separator li a:hover{
    color: #ecc22c;
}

.cd-breadcrumb.custom-separator li:not(.current)::after, .cd-multi-steps.custom-separator li:not(.current)::after {
    content: '';
    display: inline-block;
    margin: 0 .6em;
    color: #959fa5;
    height: 16px;
    width: 16px;
    background: url(./../assets/images/cd-custom-separator.svg) no-repeat center center;
    vertical-align: middle;
}
.cd-breadcrumb.custom-separator li.current > * {
    color: #ecc22c;
}
.cd-breadcrumb::after, .cd-multi-steps::after {
    clear: both;
    content: "";
    display: table;
}
.school-desc-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2vw;
    padding-bottom: 3vw;
}
.class-desc-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    padding-bottom: 1vw;
    column-gap: 1vw;
    row-gap: 0.5vw;
}
.class-desc-grid span.label {
    font-weight: bold;
}
.class-teacher-profile-section .title {
    font-weight: bold;
}
.class-teacher-profile-section .teacher-name {
    padding: 10px 0;
}
.syllabus-grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 1vw;
    padding-top: 1vw;
}
.syllabus-link a, .home-link a {
    color: var(--white);
    font-weight: bold;
    transition: 0.5s ease-in-out;
}
.syllabus-link a:hover, .home-link a:hover {
    color: var(--site-color);
   
}
.breadcrumbs-nav {
    display: flex;
    justify-content: space-between;
    background: var(--site-bg-color);
    align-items: center;
    padding-right: 0.3vw;
}
.search-wrapper {
    display: flex;
    align-items: center;
}
span.search-heading {
    padding-right: 1vw;
    color: var(--white);
}
.tribe-common .tribe-common-c-svgicon__svg-fill{
    fill:var(--white);
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container{
    padding-top: 2vw;
    padding-bottom: 2vw;
}
body .tribe-common--breakpoint-medium.tribe-events .tribe-events-c-events-bar{
    flex-direction: row-reverse;
}

.tribe-events .tribe-events-c-events-bar .tribe-common-form-control-text__input{
    border: 1px solid #ddd;
    padding-top: 12px;
    padding-bottom: 10px;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-search__input-control-icon-svg {
    left: 16px;
    right: auto;
    color: #4a4a4a;
}
#tribe-events-pg-template {
    max-width: 100%;
    padding: 2vw 0;
}
.tribe-common .tribe-common-h3,.tribe-common .tribe-common-h7, .tribe-common .tribe-common-h8, .tribe-events .tribe-events-calendar-list__event-date-tag-weekday,
.tribe-common .tribe-common-h5, .tribe-common .tribe-common-h6,.tribe-events .tribe-events-calendar-list__event-datetime,.tribe-common a,.tribe-events .tribe-events-calendar-list__event-title-link,
.tribe-common--breakpoint-medium.tribe-common .tribe-common-b2,.tribe-events .tribe-events-calendar-month__day-date-daynum,
.tribe-events .tribe-events-calendar-month__header-column-title,
.tribe-events .tribe-events-calendar-day__event-datetime {
    color:var(--site-text-color) !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-top-bar__today-button{
    color:#000 !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-ical__link {
    color:var(--white) !important;
}
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-ical__link:hover{
    /* color:var(--site-text-color) !important; */
}
.tribe-common--breakpoint-medium.tribe-events .tribe-common-c-btn.tribe-events-c-search__button,
.tribe-common--breakpoint-medium.tribe-events .tribe-events-c-ical__link,
.tribe-events .tribe-common-c-btn.tribe-events-c-search__button {
    background: var(--site-bg-color);
    color:var(--white);
    border:1px solid var(--site-bg-color);
}
.tribe-common .tribe-common-c-svgicon {
    color:var(--white);
}
p.tribe-events-promo.tribe-common-b1.tribe-events-c-promo {
    display: none;
}
.class-teacher-profile-section {
    padding-top: 5vw;
}
.search-home-wrapper {
    padding-bottom: 20px;
}
.search-title-heading {
    padding-bottom: 10px;
}
.search-home-wrapper #ajaxsearchlite1 .probox, div.asl_w .probox {
    border-radius: 6px;
    color: #000 !important;
    display: block;
    margin: 0 0 1rem 0;
    -webkit-appearance: none;
    background: #f0eaea80;
    box-shadow: none;
}

.search-home-wrapper div.asl_w .probox .promagnifier {
    box-shadow: none;
}
.class-content {
    background: #144563;
    color: var(--white);
    padding: 1vw;
    text-align: center;
}
.main-wrapper.register,.main-wrapper.login,.main-wrapper.profile {
    padding: 3vw 0;
}
.tml {
    width: 50%;
    margin: 0 auto;
}
li.tml-lostpassword-link {
    display: none;
}
.main-wrapper h1.entry-title {
    text-align: center;
}
.main-wrapper.profile h1.entry-title {
    text-align: left;
}
ul.tml-links {
    list-style: none;
}
.schools-description a {
    color: var(--site-bg-color);
    transition: 0.5s ease-in-out;
    font-weight: bold;
}
.schools-description a:hover{
    color: var(--site-bg-color);
}
.tml-login-link,.tml-register-link {
    display: none;
}
.tml-field-wrap.tml-submit-wrap {
    text-align: center;
}
.wpcf7-spinner{
    display: inherit;
}
input.wpcf7-submit {
    display: block;
    margin: 0 auto;
}
body div.asl_m .probox .proinput {
    width: 65%;
}
body #ajaxsearchlite1 .probox .proinput input, div.asl_w .probox .proinput input {
    font-size: 18px;
    color: var(--site-text-color) !important;
}
.about-content-wrapper {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 3vw;
    padding: 5vw 0;
}
.event-info {
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    
}
.class-level-grid-items {
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.class-level-wrapper .title{
    padding: 20px 0;
    font-weight: bold;
}
.class-info-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.class-level-info {
    font-size: 15px;
    text-align: center;
    padding-top: 1vw;
}
.class-level-grid-wrapper .accordion-body {
    padding: 1rem 1rem;
}
body .accordion-item {
   border: none;
}
body .accordion-button, body .accordion-button:not(.collapsed){
    background-color: #144563;
    border: 1px solid #144563;
    color: #fff;
    font-size: 1.3rem;
    box-shadow: none;
}
body .accordion-button:focus {
    border: 1px solid #144563;
    box-shadow: none;
    outline: none;
}
.accordion-item:last-of-type .accordion-collapse {
    border: 1px solid #144563;
}
body .accordion-button::after,.body .accordion-button:not(.collapsed)::after {
    background-image: url(./../assets/images/arrow-down-acc.svg) !important;
}
@media only screen and (min-width: 1100px) {
    body .tribe-events .tribe-events-c-events-bar__search-form {
        width: 35%;
    }
}
.login-wrapper{
    display: none;
}
/* clears the ‘X’ from Internet Explorer */
input[type=search]::-ms-clear { display: none; width : 0; height: 0; }
input[type=search]::-ms-reveal { display: none; width : 0; height: 0; }
/* clears the ‘X’ from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
body .wp-block-search .wp-block-search__input {
    background: url(./../assets/images/search-icon.svg) no-repeat scroll #f0eaea 0 0;
    background-position: calc(100% - 10px);
    
    padding-right: 40px;
    border: 2px solid #f0eaea;
    border-radius: 6px;
    color: var(--site-text-color);
    display: block;
    -webkit-appearance: none;
    width: 100%;
    font-size: 18px;
}
body .wp-block-search .wp-block-search__input:focus-visible{
    outline: none;
}
body .search-wrapper .wp-block-search .wp-block-search__input{
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
}
.contact-image img {
    width:100%;
}
.profile-image {
    width: 35%;
    margin: 0 auto;
}
.profile-image img {
    width: 100%;
}
.login-header a {
    padding-right: 1vw;
}
.login-header a :last-child{
    padding: 0;
}
#registration-link img {
    vertical-align: bottom;
}
@media only screen and (max-width: 320px) {
    .footer-desc {
        font-size: 13px;
    }
}
@media only screen and (min-width: 768px) {
    
    .login-wrapper{
        width:100%;
        background: var(--site-color);
        display: block;
    }
    .login-header {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
        margin: 0 auto;
        padding-top: 0.2vw;

    }
    .login-header a {
        text-decoration: none;
        color: var(--site-bg-color);
    }
    .login-header a:hover{
        text-decoration: underline;
    }
    #register-link {
        padding-right: 10px;
    }
    #login-link{
        padding-left: 10px;
    }
    .hover-image .module-image img{
        height:200px;
        object-fit: cover;
    }
    .class-content-wrapper  .hover-image .module-image img{
        width: 10vw;
        object-fit: cover;
        height: 7vw;
    }
}
@media only screen and (max-width: 767px) {
    .desktop-only{
        display:none;
    }
    #site-name {
        /* width: 100%; */
    }
    section.header{
        background: var(--site-color);
        height: auto;
    }
    body .carousel-caption{
        height: auto;
        font-size: 2.5vw;
        top: 15%;
        
    }
    .section-title{
        font-size: 8vw;
    }
    .left-content-wrapper {
        width: 90%;
        font-size: 5vw;
        margin: 0 auto;
        text-align: center;
    }
    .deal-left-content-wrapper .items::before {
        display: none;
        content:none;
    }
    .pay-content-wrapper, .deal-content-wrapper {
        display: flex;
        flex-direction: column;
    }
    .pay-right-content-wrapper, .deal-left-content-wrapper{
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    .deal-left-content-wrapper .items {
        text-align: center;
    }
    .deal-right-content-wrapper,.track-left-wrrapper,.driver-left-wrrapper {
        height: 100vw;
        width: 100%;
        background-size: cover;
    }
    .section-desc {
        padding: 6vw 0;
        font-size: 5vw;
        margin: 0;
    }
    a.cta{
        font-size: 9vw;
        justify-content: center;
        padding: 5vw 0;
    }
    .track-content-wrapper,.driver-content-wrapper {
        flex-direction: column-reverse;
    }
    section.contact{
        font-size: 5vw;
    }
    .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea{
        width: 300px;
    }
    .socials-nav a,.whatsapp a {
        padding: 4vw;
        font-size: 7vw;
        width: 15vw;
    }
    .download-info{
        font-size: 5vw;
        margin-top: 0;
    }
    .socials-content-wrapper .logo {
        width: 20vw;
        margin: 0 auto;
        padding: 5vw 0;
    }
    .col-cta {
        max-width: 80vw;
        padding: 5vw;
    }
    button.sub-menu-toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 30%;
        margin-top: 10px;
    }
    ul#mobile-menu {
        margin: 0;
        list-style: none;
        padding: 0;
    }
    .primary-navigation > .primary-menu-container ul > li .sub-menu-toggle[aria-expanded=false] span.icon-minus{
        display: none;
    }
    .primary-navigation > .primary-menu-container ul > li .sub-menu-toggle[aria-expanded=true] span.icon-plus{
        display: none;
    }
    #mobile-menu li.menu-item-has-children ul.sub-menu{
        position: relative;
    }
    li.menu-item-has-children:hover ul.sub-menu{
        border:none;
        
    }
    span.logo-name{
        font-size: 4vw;
       
    }
    .footer span.logo-name{
        margin-top: 4vw;
    }
    #site-name img {
        width: 30%;
    }
    span.kural {
        font-size: 12px;
    }
    #mobile-menu .menu-item a,.menu-link { 
        font-size: 16px !important;
    }
    #mobile-menu .menu-item a[aria-current=page]{
        color:#fff;
    }
    div#nav {
        position: fixed;
        width: 100%;
        left: 0px;
        min-height: calc(100vh - 70px);
        top: 70px;
        height: 100%;
        background: var(--site-bg-color);
        color: #ecc22c;
        display: none;
        z-index: 2;
        overflow: auto;
    }
    div#close-wrapper {
        cursor: pointer;
        position: relative;
        z-index: 3;
    }
    
    div#nav-items {
        width: 100%;
        margin: 0 auto;
        text-align: left;
        height:100%;
    }
    .mobile-only {
        display: block;
    }
    .menu-link:nth-child(1) {
        padding-top: 30px;
    }
    .menu-title {
        font-size: 4.798vw;
        line-height: 6.93vw;
    }
    .menu-grid ul li {
        font-size: 4.8vw;
        line-height: 8.53vw;
    }
    div#nav-items a {
        display: block;
        text-align: left;
        margin-bottom:20px;
        font-size: 32px;
        line-height: 40px;
        color: #ecc22c;
        margin-right: 0px;
        padding-left: 40px;
    }
    .close-icon,.menu-text,.open-icon,.site-name a.active,.menu-social-menu-container {
        display:none;
    }
    .open-icon.active, .close-icon.active,.menu-text.active,.site-name .menu-text.active,#close-wrapper,div#nav.active{
        display: block;
    }
    .menu-text{
        z-index: 4;
        position: relative;
        font-size: 42px;
        color: #ecc22c;
        padding-left: 40px;
    }
    .footer .footer-logo a {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .footer .footer-logo img {
        width: 50%;
    }
    .nav-wrapper #nav-items a,.menu-text {
        color: #ecc22c;
        font-size: 32px;
        line-height: 40px;
    }
    .header-wrapper.active{
        position: fixed;
        padding-top: 5px;
        z-index: 99;
        height: 70px;
        background: var(--site-bg-color);
    }
    .header-wrapper.active::after{
        content: "";
        border-bottom: 2px solid #ecc22c;
        top: 70px;
        width: 100%;
        position: absolute;
        z-index: 10;
    }
    
    .home .footer {
        bottom: 5px;
    }
    
    .header-wrapper {
        padding-top: 5px;
        width:90%;
    }
    .home-content-wrapper, .footer-menu-wrapper, .schools-content-wrapper .content-wrapper, .schools-content-wrapper, .class-desc-grid,.school-desc-grid,.syllabus-grid, .contact-content-wrapper, .about-content-wrapper {
        grid-template-columns: 1fr;
    }
    .class-content-wrapper{
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .class-content-wrapper .hover-image .module-image img {
        width: 50vw;
        object-fit: cover;
        height: 40vw;
    }
    .class-desc-grid {
        row-gap: 2.5vw;
    }
    .main-wrapper,.footer-content-wrapper {
        width:100%;
    }
    .breadcrumbs-nav {
        flex-direction: column;
    }
    .search-wrapper {
        width: 100%;
        padding: 0.5em 1em;
        margin: 0.5em 0;
    }
    .class-landing .school-details {
        padding-bottom: 4vw;
    }
    .copy-right-section {
        font-size: 3.7vw;
        line-height: 6.53vw;
    }
    .tml {
        width: 100%;
        margin: 0 auto;
    }
    footer .menu-grid {
        padding-left: 0;
    }
    .event-info{
        grid-template-columns: 1fr 1fr;
    }
    .class-level-grid-items{
        grid-template-columns: 1fr;
    }
    
}
@media only screen and (max-width: 767px) and (orientation:landscape){ 
    .pay-right-content-wrapper, .deal-left-content-wrapper {
        width: 70%;
    }
    section.header {
        /* padding-top: 20vw; */
        height: 100%;
    }
    .section-title {
        font-size: 6vw;
    }
    .left-content-wrapper {
        width: 90%;
        font-size: 3vw;
        padding-bottom: 10vw;
    }
    .section-desc {
        padding: 4vw 0;
        font-size: 3vw;
        margin: 0;
    }
    a.cta {
        font-size: 6vw;
        justify-content: center;
        padding: 5vw 0;
    }
    .wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form input[type="tel"], .wpcf7-form textarea {
        width: 60vw;
    }
    .socials-nav a, .whatsapp a {
        padding: 3vw;
        font-size: 4vw;
        width: 10vw;
    }
    div#nav { 
        position: absolute;
    }
    span.kural {
        font-size: 14px;
    }
    .menu-title,.footer span.logo-name {
        font-size: 2.798vw;
        line-height: 3.93vw;
    }
    .menu-grid ul li {
        font-size: 2.4vw;
        line-height: 5.53vw;
    }
    .footer .footer-logo img {
        width: 30%;
    }
    .header-wrapper.active{
        height:140px;
    }
    div#nav {
        min-height: calc(100vh - 140px);
        top: 140px;
    }
    .header-wrapper.active::after{
        top: 145px;
        /* display: none; */
    }
    .copy-right-section {
        font-size: 2.7vw;
        line-height: 4.53vw;
    }
    #ajaxsearchlite1 .probox, div.asl_w .probox {
        width:50%;
    }
    .tml {
        width: 75%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px){
    section.header{
        height: 100%;
    }
    .pay-right-content-wrapper, .deal-left-content-wrapper {
        width: 44%;
        z-index: 1;
      }
      .deal-right-content-wrapper{
          width: 56%;
      }
      label {
        display: inline-block;
        font-size: 1.8vw;
      }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation:portrait){ 
    #site-name {
        width: 29%;
    }
    .nav-wrapper #nav-items a{
        font-size: 10px;
        padding-right: 15px;
    }
    span.logo-name{
        font-size: 10px;
    }
    .menu-title {
        font-size: 1.798vw;
        line-height: 2.93vw;
    }
    .menu-grid ul li {
        font-size: 1.4vw;
        line-height: 3.53vw;
    }
    .main-wrapper,.header-wrapper,.footer-content-wrapper,.login-header {
        width:100%;
    } 
    span.kural {
        font-size: 9px;
    }
    
}
@media only screen and (min-width: 768px) and (max-width: 1400px) and (orientation:landscape){
    #site-name {
        width: 33%;
    }
    .nav-wrapper #nav-items a{
      
        padding-right: 10px;
    }
    
    .main-wrapper,.footer-content-wrapper,.login-header1 {
        width:100vw;
    }
    span.kural {
        font-size: 10px;
    }
}
.mobile-menu-open i {
    font-size: 25px;
    color: var(--black-color);
}
.sidebar {
    height: 100%; 
    width: 0; 
    position: fixed; 
    z-index: 999; 
    top: 0;
    right: 0;
    background-color: var(--black-color); 
    overflow-x: hidden; 
    padding-top: 60px; 
    transition: 0.3s; 
}
.sidebar.active{
    width:85%;
}
.sidebar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 20px;
    color: #ecc22c;
    display: block;
    transition: 0.3s;
}
.sidebar a:hover {
    color: #f1f1f1;
}
.sidebar .closebtn {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 36px;
    margin-left: 0;
}