@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap');

:root {
    --large_font: 36px;
    --large_font_mb: 18px;
    --green-color:  #009092;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    overflow-y: scroll;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    padding: 1.2rem 2rem;

}

.logo-container {
    width: 146px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.logo-container img {
    width: 100%;
    height: 100%;
}

.nav-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    column-gap: 2rem;
}

ul {
    list-style-type: none;
}

li a {
    all: unset;
    cursor: pointer;
}

li{
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

li:hover {
    border-bottom: 2px solid var(--green-color);
}

.mobile-menu {
    display: none;
}

.desktop-menu {
    display: block;
}

.menu-icon {
    width: 20px;
    height: 20px;
}

.menu-icon label img {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

#menuicon {
    display: none;  
}

.content-body {
    margin-bottom: 2rem;
}

.content-body-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: var(--large_font);
    background-color: var(--green-color);
    color: #ffffff;
    padding: 1rem;
    transition: all 0.3s ease;
}

.content-body-hero {
    margin: 2rem auto;
    max-width: 800px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: justify;
    padding: 0.1rem 1rem;
    line-height: 32px;
    transition: all 0.3s ease;
}

.get_wysa_container {
    width: 100%;
    max-width: 800px;
    background-color: #ebf8f7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    margin: 2rem auto ;
}

.get_wysa_title {
    text-align: center;
    padding: 30px;
    font-weight: 400;
    font-size: 1.5rem;
}

.get_wysa_inner_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-content: space-between;
    padding: 1rem;
    transition: all 0.3s ease;
    padding-left: 30px;
}

.video-container{
    display: flex;
    max-width: 800px;
    margin: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1rem;
    padding: 0.1rem 1rem;
}

.video-title {
    font-size: 30px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0em;
    text-align: center;
    color: #293357;
    transition: all 0.3s ease;
}

.video-container-body {
    width: 800px;
    aspect-ratio: 16/9;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.video-container-body video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    transition: all 0.3s ease;  
}

@media screen and (max-width: 768px) {
    .nav-container {
        padding: 1rem;
    }

    .mobile-menu {
        display: flex;
        overflow: hidden;
    }

    .desktop-menu {
        display: none;
    }

    /* sidebar */
    .sidebar {
        position: absolute;  
        background-color: var(--green-color);
        left: 0;
        width: 100%;
        height: auto;
        color: white;
        z-index: 10;
        transform: translateY(-1000px);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        row-gap: 1rem;
    }

    .active {
        transform: translateY(-25px);
        transition: transform 0.3s ease;
    }

    .menu-cross {
        padding: 1.5rem 1rem;
        display: flex;
        justify-content: flex-end;
    }

    .sidebar-items {
        display: flex;
        padding: 1rem;
        padding-bottom: 2rem;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        row-gap: 2rem;
    }
   
    .logo-container {
        width: 105px;
        height: 35px;
    }

    li {
        font-size: 0.9rem;
    }

    .nav-items {    
        column-gap: 1rem;
    }

    .content-body-title { 
        font-size: var(--large_font_mb);
        padding: 1.2rem;
    }

    .content-body-hero {
        font-size: 14px;
        margin: 1.5rem auto;
        line-height: 20px;
     }

    .get_wysa_inner_container {
        display: grid;
        grid-template-rows: 1fr 1fr;
        grid-template-columns: none;
     }

     .video-title {
        font-size: 20px;
    }

    .video-container-body {
        width: 320px;
    }

}