.video-box {
    width: 100vw;
    height: 100vh;
    margin-top: 0;
    position: relative;
}



#video-banner {
    display: none;
}

#video-banner-web {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 9999;
    object-fit: cover;
}

.video-box button {
    z-index: 99999;
    padding: 1em 2em;
    background: var(--accent-color-2);
    
    color: var(--primary-green);
    text-decoration: none;
    border-radius: .125em;
    margin-bottom: 14em;
    border: 1px solid var(--accent-color-2);
}

.video-box button a {
    font-family: var(--body-font);
    text-decoration: none;
    color: var(--primary-green);
    font-weight: light;
    font-size: 1.375em;
    letter-spacing: .125em;
}

.scroll-btn {
    position: absolute;
    bottom: 2em;
    right: 10%;
    float: center;
    display: none;
    width: 80vw;
    font-size: 1.125em;
    align-self: center;
    margin-bottom: 0 !important;
    cursor: pointer;
    border-radius: 2em !important;
    background: none !important;
    color: #fff !important;
    border: 1px solid #fff !important;
}

.web-banner-box {
    display: none;
}

.mobile-banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    grid-template-areas: 
        "col-1 col-2"
        "col-3 col-4"
    ;
    min-height: 94vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    margin-top: 4em;

    position: relative;

    background: var(--accent-color);
}

.mobile-banner a 
{
    z-index: 9999;
}

.floating-menu  {
    position: absolute;
    top: 1em;
    right: 1em;
    background: #294C4E;
    z-index: 9999;
    padding: 1em 1em;
    display: flex;
    flex-direction: column;
    row-gap: .75em;
}

.floating-menu h4 {
    color: #fff;
    font-family: var(--header-font);
    line-height: 0;
    font-weight: 800;
    text-transform: uppercase;
}


.floating-menu ul  {
   margin: 0;
   padding: 0;
    display: flex;
    flex-direction: column;
    row-gap: .75em;
}

.floating-menu  li {
    color: #d9d9d9;
    font-weight: 600;
    font-family: var(--numbers-font);
}

.floating-menu  li  a {
    color: #d9d9d9;
    font-size: .875em;
    display: flex;
    align-items: center;
    font-weight: 600;
    text-decoration: underline;
    justify-content: space-between;
    text-transform: uppercase;    
}

.floating-menu  li  a img {
    width: 16px;
    height: 16px;
}

.col-x {
    padding: .25em;
}

.col-1 {
    grid-area: col-1;
    display: flex;
   
    padding-left: 1em;
    flex-direction: column;
    justify-content: center;
}

.col-1 h1 {
    font-family: var(--header-font);
    font-weight: 200;
    line-height: 0;
    text-transform: uppercase;
    font-size: 2em;
    color: var(--primary-green);
}

.col-1 h3 {
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 0;
    color: var(--primary-green);
}

.col-1 p {
    font-family: var(--body-font);
    color: hsl(0, 0%, 26%);
    font-size: .875em;
    width: 38vw;
}

.col-1 p:nth-child(2) {
    padding-top: 0;
}

.col-2 {
    position: relative;
    grid-area: col-2;
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.col-2 img {
    height: 45vh;
    position: absolute;
    top: 5%;
    right: 20%;
}

.col-3 {
    grid-area: col-3;
    position: relative;
}

.col-3 img {
    height: 48vh;
    /* position: absolute;
    bottom: 5%; */
    margin-left: .5em;
}

.col-4 {
    grid-area: col-4;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    position: relative;
}

.col-4 a {
    position: absolute;
    top: 28%;
    right: 28%;
    background: none;
    border: none;
    text-decoration: none;
}

.col-4 a  img {
    width: 8em;
    height: 8em;
}

.green-comb-svg{
    width: 6vh;
    position: absolute;
    top: 65%;
    left: 28%;
}

@media only screen and (min-width: 1200px) {

    .mobile-banner{
        display: none;
    }

    .video-box {
        position: relative;
        width: 100vw;
        height: 100vh;
        margin-top: 0vh;
    }

    #video-banner-web {
        display: none;
    }

    .webVideo {
        width: 100vw;
        height: 100vh;
        display: none;
    }

    #video-banner {
        display: flex;
        max-width: 100%;
        height: 100vh;
        position: absolute;
        object-fit: cover;
        top: 0;
        display: none;
        left: 0;
        right: 0;
        z-index: 9999;
    }

    #browse-btn {
        display: none;
    }

    .scroll-btn {
        position: absolute;
        bottom: 1em;
        right:43%;
        display: none;
        float: center;
        width: unset;
        align-self: center;
        margin-bottom: 0 !important;
        cursor: pointer;
        font-size: .875em !important;
        border-radius: 2em !important;
        background: none !important;
        color: #fff !important;
        border: 1px solid #fff !important;
    }

    .web-banner-box {
        position: relative;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        background: var(--primary-green);
    }


    .web-banner-box-1 {
        margin-top: 15em;
        width: 42vw;
        height: 100vh;
        display: flex;
        position: relative;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .web-banner-box-2 {
        width: 43vw;
        height: 100vh;
        margin-top: 15em;
        background: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-direction: column;
        text-align: center;
    }

    .banner-box-img{
        width: 20vw;
        height: 60vh;
        object-fit: contain;
    }

    .web-banner-box-1 h1 {
        color: var(--accent-color);
        font-size: 3em;
        font-family: var(--header-font);
        font-weight: 100;
        text-align: center;
    }

    .box-child-1-btn {
        background: none !important;
        border: none !important;
        position: absolute;
        top: 58%;
        left: 60%;
    }

    .box-child-1-btn img {
        width: 12em;
        height: 12em;
    }



    .web-banner-box-2 h1 {
        color: var(--primary-green);
        font-weight: 100;
        font-size: 3em;
        font-family: var(--header-font);
    }

    .banner-box-child-2 {
        width: 22vw;
        background-image: url("/assets/thayah_banner.png");
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
        background-position: center;
        height: 60vh;
    }

    .box-child-2-btn {
        background: none !important;
        border: none !important;
        position: absolute;
        top: 70%;
        left: 75%;
    }

    .box-child-2-btn img {
        width: 12em;
        height: 12em;
    }

 
    .web-banner-box-33 {
        background: var(--accent-color);
        height: 100vh;
        border: 1px solid var(--primary-green);
        
        width: 15vw;

        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        align-items: center;
        font-family: var(--body-font);
        
        text-align: center;

        position: relative;
    }
  
   
    /* .web-banner-box-33  p {
        position: absolute;
        font-family: var(--body-font);
        color: var(--primary-green);
        line-break: none;
        bottom: 18%;
        line-height: 1.125em;
        font-size: .875em;
        width: 15vw;
        left: -35%;
        transform: rotate(-90deg);
        padding: 1em;
        margin-bottom: 10em;
    } */

    .web-banner-box-33  p {

        color: var(--primary-green);
        line-height: 1.875em;
        text-transform: uppercase;
        font-family: var(--body-font);
        font-size: .75em;
        text-decoration: none;
     }

    .scrl-btn {
        border: 1px solid rgba(13, 35, 36, .5) !important;
        width: 96px;
        height: 96px;
        display: flex;
        margin-top: 2em;
        
        color: #f5f5f5 !important;
        align-items: center;
        justify-content: center;
        border-radius: 50% !important ;
        background: none !important;


        margin-bottom: 10em !important;
    }

    .scrl-btn img {
        transform: rotate(90deg);
        width: 4em;
        height: 4em;
    }
}