/* GENERAL -------------------------------------------------------------------------------*/
#general_container{
    justify-content: space-between;
}



/* NAV HEADER-------------------------------------------------------------------------------*/
.nav_header{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
}

.nav_header h1, .nav_header h1 a, .nav_header h1 a p{
    width: 100% !important;
}


/* TEXT -------------------------------------------------------------------------------*/
#text_container{
    width: 26.5%;
    min-width: 310px;
    max-width: 350px;
    overflow: unset !important;
    background-color: white;
    overflow: hidden !important;
}

#container_content_experimentation{    
    position: absolute;
    z-index: 90;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: unset;
    width: 90vh;
    height: fit-content;
    box-sizing: border-box;
    bottom: 0%;
    left: 0%;
    transform: translate(clamp(0px, -20%, 100px), 100%) rotate(-90deg);
    transform-origin: 0% 0% 0px;
}

#container_content_experimentation h2, #container_content_experimentation h3{
    box-sizing: border-box;
    width: 100%;
    padding: 31px 110px 31px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#container_content_experimentation h2{
    font-size: clamp(2rem, 2.2vw, 4rem) !important;
    padding: 30px 110px 40px 30px;
    white-space: nowrap;
}

#container_content_experimentation h3{
    font-variation-settings: 'wght' 500;
    line-height: 1.6;
    font-size: clamp(1.5rem, 1.7vw, 3rem) !important;
}

#container_content_experimentation h3:last-of-type{
    border-bottom: none;
}

#container_content_experimentation h3 p{
    font-variation-settings: 'wght' 800;
}



/* IMAGE -------------------------------------------------------------------------------*/
#container_image_experimentation{
    width: 100%;
}

#image_container{
    width: 100%;
    height: calc(100% - 10vh) !important;
}



/* NAV FOOTER -------------------------------------------------------------------------------*/
.nav_prev_next{
    height: 10vh !important;
}

.prev_next{
    height: 100%;

}



/* MOBILE -----------------------------------------------------------------------------------------------*/
@media screen and (max-width: 700px) {
    #general_container{
        justify-content: flex-start;
    }

    #container_content_experimentation{
        position: relative;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        height: fit-content;
        transform: translate(0%, 0%) rotate(0deg);
        width: 100%;
    }

    .nav_header{
        position: relative;
        width: 100%;
        min-width: unset;
    }

    .nav_header h1{
        width: 100% !important;
        border: none;
    }

    #container_content_experimentation h2, #container_content_experimentation h3{
        height: 100%;
        border: none;
        width: 100%;
        border-bottom: var(--border) !important;
        white-space: normal;
    }

    #container_content_experimentation h3{
        line-height: 1.4;
        font-size: clamp(1.1rem, 1.5vw, 3rem) !important;
    }

    #text_container{
        width: 100%;
        height: fit-content !important;
        min-width: unset;
        max-width: unset;
    }

    #container_image_experimentation{
        position: relative;
        justify-content: flex-start;
        height: 30%;
    }

    #image_container{
        height: 100% !important;
    }

    .nav_prev_next{
        position: absolute;
        max-height: 80px;
    }

    .prev_next p{
        font-size: clamp(.9rem, 1.1vw, 3rem);
    }
}