@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
    --main: #fecb10;
    --black: #171717;
    --gray1: #999999;
    --gray2: #3d3d3d;
}

::selection {
    background-color: var(--main);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 0.8vw;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: var(--main);
    border-radius: 1vh;
    width: 0.2vw !important;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}


a {
    text-decoration: none;
    color: var(--black);
}

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

img {
    height: 90%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    height: auto;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

.header_container,
.navbar_container,
.content_container,
.footer_container {
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header_container {
    /* background-color: var(--gray1); */
    color: var(--black);
    height: 7vh;
}

.header_container .main_container {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.header_container .main_container .section1 {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 2vh;
    justify-content: center;
}

.header_container .main_container .section1 span:first-child {
    aspect-ratio: 1/1;
    height: 5vh;
    width: 5vh;
    background: #171717;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.header_container .main_container .section1 span:first-child:hover {
    transform: scale(1.1);
}

/* .header_container .main_container .section2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 20%;
    font-size: 2vh;
}

.header_container .main_container .section2 span {
    aspect-ratio: 1/1;
    height: 5vh;
    width: 5vh;
    background: #171717;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.header_container .main_container .section2 span:hover {
    transform: scale(1.1);
} */


.header_container .main_container .section2 {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 2vh;
    justify-content: center;
}


span a {
    color: inherit;
    text-decoration: none;
}


.header_container .main_container .section2 span:first-child {
    aspect-ratio: 1/1;
    height: 5vh;
    width: 5vh;
    background: #171717;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.5s;
}

.header_container .main_container .section2 span:first-child:hover {
    transform: scale(1.1);
}

.navbar_container {
    height: 78vh;
}

.navbar_container a {
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.navbar_container .main_container {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 4vh;
}

.navbar_container .main_container .section {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar_container .main_container .section1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 90vh;
    position: relative;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .navbar_container .main_container .section1 {
        height: 40vh;
    }
    
}

.navbar_container .main_container .section1 .nav_icons {
    /* visibility: hidden;     */
}

.navbar_container .main_container .section1 .nav_icons1 {
    position: absolute;
    font-size: 12vh;
    top: 18vh;
    left: 12vw;
    color: transparent;
}

.navbar_container .main_container .section1 .nav_icons1::after {
    content: "";
    position: absolute;
    background: black;
    width: 0;
    height: 0.2vh;
    bottom: 4vh;
    left: 0;
}

.navbar_container .main_container .section1 .nav_icons1:hover::after {
    width: 100%;
    transition: 0.5s;
}

.navbar_container .main_container .section1 .nav_icons2 {
    position: absolute;
    font-size: 12vh;
    bottom: 16vh;
    left: 1vw;
    color: transparent;
}

.navbar_container .main_container .section1 .nav_icons2::after {
    content: "";
    position: absolute;
    background: black;
    width: 0;
    height: 0.2vh;
    bottom: 4vh;
    left: 0;
}

.navbar_container .main_container .section1 .nav_icons2:hover::after {
    width: 100%;
    transition: 0.5s;
}

.navbar_container .main_container .section1 .nav_icons3 {
    position: absolute;
    font-size: 12vh;
    bottom: 16vh;
    right: 1vw;
    color: transparent;
}

.navbar_container .main_container .section1 .nav_icons3::after {
    content: "";
    position: absolute;
    background: black;
    width: 0;
    height: 0.2vh;
    bottom: 4vh;
    left: 0;
}

.navbar_container .main_container .section1 .nav_icons3:hover::after {
    width: 100%;
    transition: 0.5s;
}

.navbar_container .main_container .section1 img {
    width: auto;
}

.content_container {
    height: auto;
}

.content_container .main_container {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5vh;
}

.content_container .main_container {
    padding: 4vh 0;
}

.content_container .main_container .banner_section {
    display: block;
    height: 80vh;
    width: 100%;
    position: relative;
}

.content_container .main_container .banner_section .banners {
    width: 100%;
    height: 100%;
    position: relative;
}

.content_container .main_container .banner_section .banners .banner_text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    padding: 2vw 8vw;
    background: #0000004d;
}

.banners .banner_text h1 {
    font-size: 12vh;
    color: var(--main);
}

.banners .banner_text p {
    font-size: 3vh;
    color: white;
    font-weight: bold;
    width: 80%;
}

.content_container .main_container .banner_section .banner {
    height: 100%;
    width: 100%;
    display: none;
}

.content_container .main_container .banner_section .banner.active {
    display: block;
}

.content_container .main_container .banner_section #prevBtn {
    position: absolute;
    top: 50%;
    font-size: 2vh;
    transform: translateY(-50%);
    left: 2vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background: var(--gray1);
    color: white;
    aspect-ratio: 1/1;
    border-radius: 50%;
    height: 3vw;
    width: 3vw;
}

.content_container .main_container .banner_section #nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2vw;
    font-size: 2vh;
    background-color: transparent;
    border: none;
    cursor: pointer;
    background: var(--gray1);
    color: white;
    aspect-ratio: 1/1;
    border-radius: 50%;
    height: 3vw;
    width: 3vw;
}

.container_section {
    display: grid;
    grid-template-columns: 20% 80%;
    border: 0.5vh solid var(--main);
    width: 85%;
    height: 65vh;
}

.container_section .tab_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    border: 0.5vh solid var(--main);
    align-items: center;
    justify-content: space-evenly;
}

.container_section .tab_container .tab {
    width: 100%;
    height: 100%;
    background: var(--main);
    display: flex;
    flex-direction: column;
    font-size: 2vh;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.container_section .tab_container .custom_tab {
    height: 100%;
    background: var(--main);
    display: flex;
    flex-direction: column;
    font-size: 2vh;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

.dropdown_icon {
    font-size: 2vh;
}

.container_section .tab_container .tab.active {
    text-underline-offset: 1vh;
    text-decoration: underline;
    background: var(--gray1);
}

.container_section .tab_container .custom_tab.active {
    text-underline-offset: 1vh;
    text-decoration: underline;
    background: var(--gray1);
}

.container_section .tab_container_body {
    width: 100%;
}

.container_section .tab_container_body .tab_body {
    display: none;
}

.container_section .tab_container_body .custom_tab_body {
    display: none;
    height: 100%;
}

.container_section .tab_container_body .custom_tab_body span {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container_section .tab_container_body .tab_body span {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container_section .tab_container_body .tab_body.active {
    display: flex;
    flex-direction: column;
    padding: 1vh 1vh;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.custom_tab_body span.line {
    height: 0.3vh !important;
    width: 10vw !important;
    background: var(--main);
    margin-bottom: 5vh;
}

.container_section .tab_container_body .custom_tab_body.active {
    display: flex;
    flex-direction: column;
    padding: 1vh 1vh;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.container_section .tab_container_body .custom_tab_body.active span.text {
    width: 60%;
    align-items: flex-start;
    font-size: 2vh;
    height: auto;
    padding: 1vh 0;
}

.container_section .tab_container_body img {
    height: 62vh;
    width: 100%;
}

.content_container .about_us_section {
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    justify-content: center;
}

h1.heading {
    color: var(--main);
    font-size: 5vh;
    font-weight: 500;
}

.content_container .about_us_section p.description {
    font-size: 2.1vh;
}

.services_tabs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3vh;
    align-items: center;
    justify-content: space-between;
    height: 72vh;
    margin-bottom: 10vh;
}

.services_tabs .main_body {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.services_tabs .main_body .service_tab {
    height: 100%;
    width: 28%;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 4px 10px 1px rgba(39, 39, 39, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 1.5vh;
    padding: 2vh;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.services_tabs .main_body .service_tab:hover {
    transform: scale(1.06);
}

.services_tabs .main_body .service_tab .tab_heading {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    align-items: flex-start;
    justify-content: flex-start;
}

.services_tabs .main_body .service_tab .tab_heading .icon {
    height: 9vh;
    width: 9vh;
    font-size: 4vh;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--main);
    color: black;
}

span.heading {
    font-size: 2.6vh;
    text-align: left;
    font-weight: 600;
}

.services_tabs .main_body .service_tab .tab_body {
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 100%;
    height: auto;
    padding-top: 1.5vh;
    align-items: center;
    justify-content: center;
}

.services_tabs .main_body .service_tab .tab_body .text {
    width: 100%;
    text-align: justify;
    font-size: 2vh;
}

.tab_button {
    border-radius: 5vh;
    display: flex;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    background: var(--main);
    height: 6vh;
    font-weight: 600;
    padding: 0 3vh;
    font-size: 2.2vh;
    border: none;
    cursor: pointer;
    transition: 0.5s;
}

.tab_button:hover {
transform: scale(1.1);
}

.footer_container {
    height: auto;
}


.footer_navbar {
    width: 80%;
}

.footer_container .main_container .container {
    width: 100%;
    background: var(--gray1);
    padding-top: 5vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer_navbar .section2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 2vh;
    justify-content: space-between;
    position: relative;
}

.footer_navbar .section2 .services {
    position: absolute;
    height: auto;
    width: auto;
    padding: 0;
    bottom: -25vh;
    left: 11vh;
    background: rgb(241, 241, 241);
    z-index: 10;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 1vh;
}

.footer_navbar .section2 .services span:not(:last-child) {
    border-bottom: 0.3vh solid lightgray;
    width: 100%;
    font-size: 2.3vh;
    text-align: center;
    padding: 1vh;
}

.footer_navbar .section2 .services span {
    width: 100%;
    font-size: 2.3vh;
    text-align: center;
    padding: 1vh;
}

.footer_navbar .section2 .services span::after {
    display: none;
}

.footer_navbar .section2 span {
    font-size: 2.5vh;
    font-weight: 500;
    color: white;
    cursor: pointer;
}

.footer_navbar .section2 span::after {
    content: "";
    display: block;
    width: 0%;
    height: 0.35vh;
    background-color: white;
    transition: 0.5s;
}

.footer_navbar .section2 span:hover::after {
    width: 100%;
}


.footer_container .main_container {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer_container .main_container .highlight {
    height: 0.6vh;
    width: 100%;
    background: var(--main);
}

.footer_container .main_container .section {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background: var(--gray1);
}

.footer_container .section .section1 {
    color: white;
    font-size: 2vh;
    font-weight: 500;
}

.footer_container .section .section2 {
    width: 30%;
    color: white;
    font-weight: 500;
    display: flex;
    font-size: 2vh;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.document_modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.document_modal_container {
    height: 65vh;
    background: white;
    border-radius: 1.2vh;
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.document_modal_container .modal_header {
    height: 15%;
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0 2vw;
    align-items: center;
    justify-content: space-between;
}

.document_modal_container .modal_body {
    height: 85%;
    width: 100%;
    padding: 1vw 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.document_modal_container .modal_body .form_box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.document_modal_container .modal_body .form_box .form_control {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.document_modal_container input {
    width: 100%;
    height: 4.5vh;
    border: 0.2vh solid var(--black);
    border-radius: 0.7vh;
    padding-left: 0.9vh;
    font-size: 2vh;
}

.document_modal_container textarea {
    padding-left: 0.5vh;
    font-size: 2vh;
    width: 100%;
    border: 0.2vh solid var(--black);
    border-radius: 0.9vh;
}

.document_modal_container .custom_btn {
    height: 6vh;
    width: auto;
    padding: 0 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5vh;
    font-weight: 500;
    cursor: pointer;
    background: var(--main);
    border: 0.4vh solid var(--black);
    border-radius: 7vh;
}

.document_modal_container i {
    cursor: pointer;
}

.document_modal_container2, .document_modal_container3 {
    display: none;
}

.d_none {
    display: none !important;
}

.contact_modal_overlay {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 10;
    width: 100vw;
    background: rgba(0, 0, 0, 0.248);
}

.contact_modal_overlay .contact_modal_container {
    height: auto;
    min-height: 60vh;
    background: white;
    width: 40%;
    border-radius: 2vh;
}

.contact_modal_overlay .contact_modal_container .modal_header {
    height: 20%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2vh 2vw;
}

.contact_modal_overlay .contact_modal_container .modal_header i {
    cursor: pointer;
    font-size: 4vh;
}

.contact_modal_overlay .contact_modal_container .modal_header .heading {
    cursor: pointer;
    font-size: 4vh;
}

.contact_modal_overlay .contact_modal_container .modal_body {
    height: 85%;
    width: 100%;
    padding: 1vw 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
    justify-content: center;
}

.contact_modal_overlay .contact_modal_container .modal_body .form_group {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.contact_modal_overlay .contact_modal_container .modal_body .form_group input, .contact_modal_overlay .contact_modal_container .modal_body .form_group textarea {
    width: 100%;
    height: 5vh;
    border: none;
    border-bottom: 0.3vh solid var(--gray1);
    display: flex;
    text-align: left;
    font-size: 2vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact_modal_overlay .contact_modal_container .modal_body .form_group input:focus-visible, .contact_modal_overlay .contact_modal_container .modal_body .form_group textarea:focus-visible {
    outline: none;
}

.contact_modal_overlay .contact_modal_container .modal_body .custom_btn {
    height: 6vh;
    width: auto;
    padding: 0 2vw;
    font-size: 2.3vh;
    background: var(--main);
    color: var(--black);
    margin-top: 3vh;
    margin-bottom: 3vh;
    border-radius: 1.2vh;
    font-weight: bold;
    border: 0.5vh solid var(--black);
}

@media screen and (max-width: 768px) {
    .header_container .main_container {
        width: 97%;
        gap: 2vh;
        margin: 2vh 0;
    }

    .header_container {
        height: auto;
    }

    .header_container .main_container .section2 {
        width: 100%;
        justify-content: space-evenly;
    }

    .header_container .main_container {
        flex-direction: column-reverse;
    }

    /*.navbar_container {*/
    /*    height: 25vh;*/
    /*}*/

    .navbar_container .main_container {
        width: 95%;
    }

    .navbar_container .main_container .section1 img {
        height: auto;
        width: 100%;
    }

    .content_container .about_us_section {
        width: 100%;
    }

    .container_section {
        width: 100%;
        height: auto;
        display: none;
        flex-direction: column;
    }

    .services_tabs .main_body {
        width: 100%;
        gap: 3vh;
        flex-direction: column;
    }

    .services_tabs {
        margin-bottom: 5vh;
    }

    .services_tabs .main_body .service_tab {
        width: 100%;
    }

    .services_tabs {
        height: auto;
    }

    .footer_navbar {
        width: 95%;
    }

    .footer_container .main_container .container {
        padding-top: 1vh;
    }

    .footer_container .main_container .footer_navbar .section {
        display: grid;
        grid-template-columns: repeat(2, 50%);
        place-items: center;
    }
}