:root
{
    --orange-color: #F35808;
    --black-color: #181818;
    --grey-color: #292B2C;
    --white-color: #FEEFD1;
    --nav-height: 7vh;
    --box-height: 40vh;
    --container-height: 60vh;
    --h1-font-size: clamp(5vh, 6vh, 8vh);
}
@keyframes showInStart {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}
.show-in-start
{
    animation: showInStart 1.5s forwards;
}
.slide-in-left-slow
{
    animation: slideInLeft 1.5s forwards;
}
.slide-in-left {
    animation: slideInLeft 0.5s forwards;
}

.slide-out-left {
    animation: slideOutLeft 0.5s forwards;
}
.slide-in-right-slow
{
    animation: slideInRight 1.5s forwards;
}
.slide-in-right {
    animation: slideInRight 0.5s forwards;
}

.slide-out-right {
    animation: slideOutRight 0.5s forwards;
}
#main-container
{
    max-width: 100vw;
}
/*======= INTRO ========*/
#intro {
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4vh;
    height: 100vh;
    max-height: 100vh;
    opacity: 1;
    overflow: hidden;
    transform: scaleY(1);
    transform-origin: top;
    transition: transform 800ms ease, max-height 800ms ease, opacity 800ms ease;
   
}

#intro.hidden {
    transform: scaleY(0.3);
    opacity: 0;
}

#intro .row-container {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    min-height: var(--container-height);
    flex-direction: row;
    justify-content: center;
}

#intro .column-container{
    flex: 1 1 40%;
    min-height: var(--container-height);
    box-sizing: border-box;
    justify-content: center;
    text-align: center;
    z-index: 10;
    max-width: 40vw;
    display: flex;
    padding: 3vh 5vw 3vh 7vw;
}
#intro h2
{
    font-size: 3.5vh;
}
#intro .text-container
{
    max-width: 30vw;
    margin: 0 auto;
}
#intro .rectangle
{
    padding: 10px;
    font-size: 2vh;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--orange-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    cursor: default;
    text-align: center;
}
.little
{
    font-size: 2vh;
    padding: 1vh;
}
#intro button
{
    max-width: 25vw;
    min-width: 13vw;
    min-height: 6.5vh;
    max-height: 8vh;
    font-size: 3vh;
    padding: 0 10px;
    margin: 10px 0 20px;
    font-weight: 600;
}
#intro button:first-child
{
    margin-left: auto;
}
#intro button:last-child
{
    margin-right: auto;
}
#intro .box
{
    display: flex;
    gap: 20px;
}
#intro .image-container
{
    padding: 0 1vh;
    max-height: 80vh;
    max-width: 40vw;
}
#intro .image-container img
{
    max-height: 80vh;
}
@media (max-width: 1800px) {
    #intro .box
    {
        flex-direction: column;
        gap: 0;
    }
    #intro button
    {
        min-width: 25vw;
        margin: 10px auto 20px;
    }
    #intro .text-container
    {
        max-width: 40vw;
    }
    #intro .column-container, #intro .image-container {
        max-width: none;
    }
}
@media (max-width: 1000px) {
    #intro .row-container
    {
        padding: 2vh;
    }
    #intro .column-container {
        opacity: 1;
        padding: 0 2vh;
        margin-top: 10vh;
        max-height: 50vh;
        min-height: 20vh;
    }
    #intro .column-container .rectangle
    {
        padding: 0;
        margin-top: 3vh;
    }
    #intro .column-container h1
    {
        font-size: 5vh;
    }
    #intro .column-container h2
    {
        font-size: 3vh;
    }
    #intro .column-container span
    {
        font-size: 3vh;
    }
    #intro .text-container
    {
        text-align: center;
        margin: 0 auto;
        max-width: 100vw;
        max-height: 30vh;
        padding: 0 2vh;
    }
    #intro .box
    {
        flex-direction: row;
        margin: 2vh auto;
        gap: 20px;
    }
    #intro button
    {
        max-width: none;
    }
    .little
    {
        max-width: 70vw;
        margin: 0 auto;
    }
    #intro .image-container
    {
        width: 90%;
        max-height: 50vh;
    }
}
/*======= ABTME ======*/
#abtme
{
    margin-top: 10vh;
    display: flex;
    justify-content: center;
}
#abtme h1
    {
        font-size: var(--h1-font-size);
        text-align: center;
    }
#abtme .column-container
{
    width: 80vw;
    padding-bottom: 10vh ;
    
}
#abtme .text-container
{
    text-align: center;
    padding: 10px 20px;
    background-color: rgba(41,43,44, 0.5);
    box-shadow: 0 0 10px #aaa;
    border-radius: 10px;
}
/*====== OFFER =======*/
#offer
{
    /* width: 100vw; */
    min-height: 70vh;
    margin-bottom: 5vh;
    display: flex;
    justify-content: center;
    
}
#offer > .column-container > h1
{
    font-size: var(--h1-font-size);
    margin: 0 auto;
    width: 100%;
}
#offer .row-container
{
    justify-content: space-around;
    gap: 20px;
    overflow-x: hidden;
    padding: 2vh 0;
}
#offer .row-container button
{
    font-size: 4vh;
}
#offer .box
{
    width: 40vw;
    display: flex;
    flex-direction: column;
    
    min-height: var(--box-height);
}

#offer .box:last-child
{
    margin: 0;
}
#offer .text-container
{
    text-align: center;
    flex: 1 1 50%;
    min-height: var(--box-height);
    box-sizing: border-box;
    padding: 10px 20px;
    font-size: 3vh;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    background-color: rgba(41,43,44, 0.5);
    box-shadow: 0 0 10px #aaa;
    border-radius: 10px;
}
#offer .text-container h1
{
    color: var(--orange-color);
}
#offer .image-container
{
    flex: 1 1 50%;
    min-height: var(--box-height);
    box-sizing: border-box;
}

#offer .offer-btn
{
    padding: 1vh 3vw;
    font-size: 3vh;
    margin: 0 auto;
}  
@media (max-width: 1700px){
    #offer .row-container
    {
        flex-direction: column;
        width: 80vw;
    }
    #offer .box
    {
        min-height: 50vh;
        width: 80vw;
        flex-direction: column;
        justify-content: space-between;
        margin: 5vh 0;
        font-size: 2.5vh;
    }
    #offer .row-container button
    {
        font-size: 3vh;
    }
    #offer .text-container
    {
        width: 60vw;
        margin: 0 auto;
        min-height: auto;
    }
    #offer h1
    {
        text-align: center;
        height: 9vh;
    }
}
@media (max-width: 1600px){
    #offer .text-container
    {
        font-size: 2.5vh;
        width: 70vw;
    }
    #offer .text-container h1
    {
        text-align: center;
        height: 9vh;
        font-size: 5vh;
    }
}
/*====== LOCALISATION ======*/
#localisation > .column-container > h1
{
    font-size: var(--h1-font-size);
    margin: 5vh auto;
}
#localisation > .column-container > .row-container
{
    max-height: 72vh;
    box-shadow: 0 0 10px #aaa;
    background-color: rgba(41,43,44, 0.5);
    border-radius: 10px;
    
}
#localisation .column-container
{
    margin: 0 10vw 10vh 10vw;
    width: 80vw;
}
#localisation .text-container
{
    width: 40vw;
    height: 70vh;
    border-top-left-radius: 10px;
    border-bottom-left-radius:10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
#localisation .text-container h1
{
    width: 80%;
    margin-left: 1vw;
}
#localisation .text-container ul
{
    list-style-type: none;
    text-align: left;
    margin: 0 0 0 1.5vw;
    width: 100%;
    padding: 0;
}
#localisation .text-container ul li
{
    font-size: 3vh;
    display: flex;
    width: 100%;
    word-break: break-word;
    overflow-wrap: anywhere;
    margin-left: 1vw;
}

#localisation .text-container ul li i 
{
    font-size: 4vh;
    color:var(--orange-color);
    margin: auto 3vw auto 0;
}
#localisation .text-container i
{
    font-size: 2vh;
}
#localisation iframe
{
    width: 40vw;
    height: 71.5vh;
    border-top-right-radius: 5px;
    border-bottom-right-radius:5px;
}
@media (max-width: 1600px){
    #localisation .column-container
    {
        text-align: center;
    }
    #localisation .row-container
    {
        flex-direction: column;
        justify-content: center;
        min-height: 80vh;
    }
    #localisation .text-container h1
    {
        font-size: 4vh;
        text-align: center;
        margin-top: 9vh;
        max-width:85%;
        margin: 9vh auto 0;
    }
    #localisation .text-container
    {
        width: 100%;
    }
    #localisation .text-container ul
    {
        margin: 0 0 2vh;
    }
    #localisation .text-container ul li
    {
        font-size: 2.5vh;
        margin-left: 5vw;
    }
    #localisation .text-container ul li i
    {
        font-size: 4vh;
    }
    #iframe-container,  #localisation iframe
    {
        width: 100%;
        height: 40vh;
    }
    #localisation .text-container
    {
        text-align: center;
    }
}