/* GLOBAL -----------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');



html, body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

body {
    color: #5c5c5c;
    font-family: "Montserrat", sans-serif;   
    background-color: white;
    font-weight: 300;
}

/* 
#index {
    overflow: hidden;
    position: fixed;
}
*/

a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
    color: #5c5c5c;
    /* transition: 0.3s; */
    cursor: pointer;
    line-height: 22px;
}


/* a:not(.no-hover):hover {
    border-bottom: 1px solid #5c5c5c;
} */

span {
    display: inline-block;
}

span.space {
    display: inline;
}

.main-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-color: white;
    overflow: hidden;
}

h1, h2 {
    font-weight: 400;
    margin-block-start: 0.4em;
    margin-block-end: 0.4em;
}

h3 {
    font-family: "Montserrat", sans-serif;
    margin-block-start: 0.2em;
    margin-block-end: 0.2em;
    font-weight: 600;
}

p {
    font-size: 1.1em;
    line-height: 22px;
    margin-block-start: 0.1em;
    margin-block-end: 0.1em;
    /* width: 90%; */
    max-width: 1200px;
}

.bold {
    font-weight: 600;
}


/* Loading Screen */

.loading-screen {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: #5c5c5c;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.loading-screen.hide {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.loading-screen.hide {
    display: none;
}

/* Button styles */

.btn {
    color: white;
    /* border: 1px solid #5c5c5c; */
    padding: 6px 20px;
    border-radius: 4px;
    /* transition: 0.3s; */
    font-size: 15px;
    background-color: #448ab2;
    margin: 10px 0px;
}

/* .btn:hover {
    color: #5c5c5c;
    background-color: transparent;
} */


/* HEADER / NAV -------------------------------------------------------------------- */


header {
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: tan; */
    font-size: .84rem;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.248);
    background-color: white;
}

nav {
    /* background-color: tan; */
    height: 100%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 50%;
    font-weight: 500;
    /* background-color: firebrick; */
}

.site-nav-link {
    margin-left: 40px;
}

header a {
    color: #5c5c5c;
}

.logo img {
    height: 30px;
    /* margin-left:80px; */
    /* background-color: teal; */
    margin-bottom: -8px;
}

/* .header a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #648290;
    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header a:not(.no_hover):hover::after {
    transform: scaleX(1);
    transform-origin: right;
} */


/* CONTENT SECTIONS ----------------------------------------------- */

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 60px;   /* clear fixed header (60 px) */
    padding-bottom: 40px; /* clear fixed footer (40 px) */
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.heading {
    font-size: 6rem;
    /* background-color: teal; */
}

.heading span {
    visibility: hidden;
}

.subheading {
    font-size: 2rem;
}

.bg_video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
}



/* SECTIONS */

section {
    position: relative; 
}

.section-content {
    width: 95%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
}

.hero-section .section-content {
    align-items: flex-start;
    justify-content: flex-end;
}

.status-section .section-content {
    width: 40%;
    height: 50%;
    padding: 20px 50px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    box-shadow: #5c5c5c31 0px 0px 10px;
    cursor: pointer;
    /* background-color: teal; */
}

.status-section__text-container {
    width: 60%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    /* background-color: tomato; */
}

.status-section__image-container {
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* background-color: teal; */
}

.app-image {
    width: 100%;
    max-width: 300px;
}

.status {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.status_bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4caf50; /* Green */
    display: inline-block;
    margin-left: 5px;
}



.hero-section {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background-color: lightblue; */
}

.status-section {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: center;
    /* background-color: #f2f2f2; */
}

.expansion-section {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* background-color: #e0e0e0; */
}




footer {
    position: fixed;
    bottom: 0;
    height: 40px;
    width: 100%;
    background-color: #5c5c5c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    color: white;
    font-weight: 100;
    font-size: 12px;
}





/* MOBILE MENU --------------------------------------------------- */

.mobile-menu {
    position: fixed;
    top: 0;
    z-index: 11;
    right: -400px;
    width: 60%;
    height: 100vh;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    color: black;
    font-family: "D-DIN";
}

.close-mobile-menu {
    position: absolute;
    left: 5px;
    top: 10px;
    width: 35px;
}

.mobile-menu-btn {
    display: none;
    width: 35px;
    margin-right: 40px;
}

.nav-links-mobile {
    width: 90%;
    position: absolute;
    top: 70px;
    min-height: calc(100% - 90px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.mobile-link {
    font-size: 20px;
    margin-bottom: 10px;
}



/* MEDIA QUERIES ------------------------------------------------ */


@media (max-width: 700px) {

    .heading {
        font-size: 180%;
    }

    h1 {
        font-size: 1.2rem;
    }
    
    p {
        font-size: 0.6rem;
        line-height: 12px;
    }


    .map-section {
        height: 70%; 
    }

    header {
        /* height: 40px; */
        justify-content: center;
    }

    .logo img {
        height: 18px;
    }


    .bg_video {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        left: 0;
        top: 40%;
        transform: translateY(-50%);
    }


    .hero-section {
        height: 200px;
    }

    .status-section {
        height: 600px;
    }

    .status-section .section-content {
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        width: 50%;
    }

    .status-section__text-container {
        width: 100%;
        height: 50%;
        /* background-color: tomato; */
    }

    .status-section__image-container {
        width: 100%;
        height: 50%;
        /* background-color: teal; */
    }

   .app-image {
        width: 80%;
        max-width: 150px;
    }

  
    

}
