@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=Volkhov:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Light Theme (Default) */
:root {
    --body-font-family:"Lato", sans-serif;
    --header-font-family: "Volkhov", sans-serif;
    --bg-color: #fff;
    --navbar-bg : #F6E5C780;
    --static-navbar-bg : #F6E5C7;
    --navbar-text-color:#2C2F24;
    --body-font-size: 16px;
    --primary-text: #181E4B;
    --secondary-text:#5E6282;
    --tertiary-text:#DF6951;
    --primary-bg: #ffffff;
    --button-bg: #F1A501;
    --secondary-btn-bg:#AD343E;
    --button-hover: #cb8b02;
    --button-color: #fff;
    --button-border-radius: 10px;
    --button-font-size: 14px;
    --button-font-weight: 500;
    --button-padding : 0.75rem 1rem;
    --section-padding:4rem 0;
  }
  
body,html {
    margin:0;
    padding:0;
}
body {
    height:100%;
    width:100%;
    background-color: var(--bg-color);
    color: var(--secondary-text);
    font-size: var(--body-font-size);
    font-family: var(--body-font-family);
}
.common_btn {
    background: var(--button-bg);
    color:var(--button-color);
    border:none;
    padding:var(--button-padding);
    border-radius: var(--button-border-radius);
    font-size:18px;
    font-weight: var(--button-font-weight);
    margin-top: 1rem;
}
.common_btn:hover{
    background: var(--button-hover);
}

/*navbar*/
.custom_navbar .navbar-nav {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
}
.custom_navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: var(--navbar-bg)!important;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    z-index: 2;
}
.custom_navbar .navbar-nav .nav-item .nav-link {
    color: var(--navbar-text-color);
    font-size: 16px;
    font-weight: 500;
}
.custom_navbar .navbar-nav .nav-item {
    margin-right:8px;
    margin-left:8px;
}
.custom_navbar .navbar-nav .nav-item .nav-link.active {
    border: 2px solid var(--tertiary-text);
    border-radius: 20px;
    font-weight: 700;
    padding: 0.2rem 1rem;
}
.custom_navbar .navbar-brand.logo {
    color:var(--primary-text);
    font-family: var( --header-font-family);
    font-weight: 900;
    font-style: italic;
    font-size:24px;
}
.static_navbar {
    background: var(--static-navbar-bg)!important;
    position: fixed;
    width:100%;
    top: 0;
    left: 0;
    transition: .5s;
}

/*common*/

.section_padding {
    padding: var(--section-padding);
}
.section_header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 2rem;
}
.title {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 15px;
    color:var(--primary-text);
}

.subtitle {
    font-size: 16px;
    font-weight:400;
    color:var(--tertiary-text);
}
.content {
    color:var(--secondary-text);
}
.max_container {
    max-width: 1380px;
}
.title_content {
    font-size: 15px;
}

/*hero section*/
.hero_section {
    background: var(--bg-color);
    background-image: url(../images/hero-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 98vh;
    margin-top: -80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.hero_section .row {
    padding-top: 72px;
}
.hero_container .row {
    padding: 2rem 0;
}
.hero_content_sec .title,
.hero_content_sec .subtitle {
    max-width: 520px;
}
.hero_content_sec .title {
    font-size: 50px;
    color:var(--primary-text);
    font-family: var(--header-font-family);
}
.hero_content_sec .subtitle {
    color:var(--tertiary-text);
}
.hero_content_sec .content {
    color:var(--secondary-text);
}
.hero_section .col_mb {
    display: flex;
    align-items: end;
}
.aboutus_img_sec {
    text-align: start;
}

.hero_section .row,
.aboutus_section .row,
.hiw_section .row {
    display: flex;
    align-items: center;
}

/*services*/
.service_box {
    text-align: center;
    margin-bottom: 2rem;
}
.service_box img {
    width: 80px;
    margin-bottom: 0.75rem;
}
.service_box .service_title {
    font-weight: 700;
    font-size: 20px;
}
.service_box .service_content {
    margin-bottom: 0;
    max-width: 300px;
}
.services_section .row.services_maindiv {
    margin-top: 4rem;
}

/*facilities*/

.hiw_list {
    list-style-type: none;
    padding-left: 0;
}

.hiw_list .hiw_div {
    display: flex;
    align-items: center;
    margin-bottom:2rem;
}
.hiw_content {
    text-align: left;
    padding-left: 1rem;
}
.hiw_content .hiw-title {
    margin-bottom: 0;
    color:var(--primary-text);
    font-weight:600;
}
.hiw_content .hiw-text {
    margin-bottom: 0;
    color:var(--secondary-text);
}

/*footer*/
.footer_section .footer_logo {
    width: 140px;
    margin-bottom: 1rem;
}
.footer_section .social_link_div a img {
    width: 40px;
    margin: 0 0.25rem;
}
.footer_section .footer_content {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;    margin-bottom: 3rem;
}
.footer_section {
    padding: 4rem 0 0 0;
}
.footer_section .footer_desc {
    margin: 1rem 0 2rem 0;
    max-width: 800px;
    text-align: center;
    opacity: 0.6;
    font-size: 14px;
}
.secondary_footer_Section {
    background: var(--static-navbar-bg);
    padding: 0.5rem 0;
}
.secondary_footer_Section p {
   color:var(--primary-text);
   text-align: center;
   margin-bottom:0;
   font-size: 14px;
    opacity: 0.8;
   font-weight:500;
}

/*about us*/
.aboutus_box{
    border-radius:20px;
    margin:0 15px;
    margin-bottom:2.5rem;
}
.aboutus_box .aboutus_img {
    border-top-right-radius:20px;
    border-top-left-radius:20px;
}
.aboutus_box .aboutus_content .aboutus_title{
    color:var(--tertiary-text);
}
.aboutus_box .aboutus_content .aboutus_para {
    color:var(--secondary-text);
}
.aboutus_section .max_container {
    max-width: 1200px;
}

/*download apk*/
.dwnld_apk_section {
    background-image: url(../images/download-apk-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*partner section*/
.partner_maindiv {
    display: flex;
    margin:0 auto;
}

/*footer*/

.widget_iframe {
    height:95vh;
    width:350px;
    width: 100%;
    position: fixed; 
    bottom:0; 
    right:0;
    z-index:999;
}

.footer_content .contact_text {
    max-width:650px;
    margin:0 auto;
    text-align: center;
    opacity:0.7;
    margin-bottom:2rem;
    font-weight:400;
}
.footer_content .contact_address {
    max-width:650px;
    text-align: center;
}
.footer_content .contact_address p {
   margin-bottom:0.2rem;
}
.footer_content .social_link_div {
    margin-top:2rem;
}
@media screen and (max-width:1420px) {
    .max_container {
        max-width: 1140px;
    }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
    .max_container {
        max-width: 1040px;
    }
}
@media screen and (max-width:991px){
    .hero_content_sec .title {
        font-size: 60px;
    }
    .hero_section {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        min-height: 100vh;
        margin-top: 0;
        height: auto;
    }
    .hero_content_sec {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
    }
    .custom_navbar {
        padding: 0.5rem;
        background: #07060B !important;
    }
    .custom_navbar .navbar-toggler-icon {
        filter: invert(2);
    }
    .hero_section .row {
        padding-top: 5px;
        min-height: 100vh;
    }
    .common_btn {
        margin-top: 0.5rem;
    }
    .title {
        font-size: 32px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .section_padding {
        padding: 2rem 0.5rem;
    }
    .facilities_list li {
        margin-bottom: 0.5rem;
    }
    .facilities_list {
        margin-top: 2rem;
    }
    .gallery_swiper_section {
        margin-top: 2rem;
    } 
    .footer_section {
        padding: 2rem 0 0 0;
    }
}
@media screen and (max-width:767px){
    .col_order_2 {
        order:2;
    }    
    .aboutus_content_sec {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .title_content {
        text-align: justify;
    }
    .image_section.aboutus_img_sec,
    .image_section.facility_img_sec {
        margin-top: 1rem;
        text-align: center;
    }
    .service_box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .facilities_list {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .hero_content_sec .title {
        font-size: 40px;
    }
    .image_section.hero_img_sec {
        min-height: auto;
        display: initial;
        align-items: initial;
    }
    .hero_section .col_mb {
        margin-top: auto;
    }
    .widget_iframe {
        height:100vh;
        width:100%;
    }
}