
/* POLICE */
@font-face {

    font-family: "Aday"; 
    
    src: url(../fonts/A\ DAY\ WITHOUT\ SUN.otf); 
    
    
    }

/* GENERAL */
html{
    font-size: medium;
}
body{
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
    font-family: Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
img{
    max-width: 100%;
}
h5{
    font-size: 1rem;
    font-weight: bold;

    text-align: center;

    margin: 0;
}
h2{
    font-family: 'Aday', sans-serif;;
    font-size: 2.4rem;
    font-weight: normal;
    text-align: center;
    letter-spacing: 2px;

    margin-bottom: 0px;
}
#header{
    height: 60vh;
    max-height: 300px;
    width: 100vw;
}
#header img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#body{
    width: 80vw;

    padding: 50px 10vw 120px 10vw;

    display: flex;
    flex-direction: column;
    align-items: center;
}

#footer{
    width: 50vw;
    padding: 50px 25vw 120px 25vw;

    background-color: #222;
    display: flex;
    justify-content: space-between;
}
#footer h2{
    color: #84754e;
    text-align: left;
}
#footer div{
    margin: 10px 0px;
}
#footer a{
    color: white;
    text-decoration: none;
}
#footer img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 0px 5px;
    transform: translateY(5px);
}
#footer .socials{
    margin: 0px 0px 50px;
}
#footer .socials i{
    height: 16px;
    width: 16px;
    padding: 10px;
    margin: 10px;
    background-color: #4B77A9;
    border-radius: 100%;
    text-align: center;
    transition: 0.3s;
}
#footer .socials i:hover{
    background-color: #456c8c;
}

/* IMAGES */
#hyatt{
    width: 10vw;
    min-width: 150px;
}
#mayo{
    max-width: 15vw;
    min-width: 80px;
    margin: 50px;
    margin-bottom: 0;
}
#mealplan{
    margin: 35px 0px;
}
.divider{
    width: 15vw;
    max-width: 50px;

    margin: 50px 0px 16px;
}

/* GENERAL */
.container-flex{
    display: flex;
    justify-content: center;

    width: 80%;
    margin-top: 35px;
}
.container-flex img{
    padding-right: 10%;
    width: 40%;
    object-fit: contain;
}
.container-flex p{
    font-size: 1.4rem;
    font-weight: 400;

    width: 50%;
}
.container-flex div{
    display: flex;
    justify-content: center;
}
.container-flex div img{
    width: calc(50% - 20px);
    padding: 10px;
}
.container-flex-wrap{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 80%;
}
.container-flex-avantages{
    margin: 50px 0px;

}
.container-flex-avantages img{
    padding: 10px;
    min-width: 100px;
    width: 20%;
    max-width: 135px;
    object-fit: contain;
}
.container-flex-mealplans{
    margin-top: 60px;
    margin-bottom: 25px;
}
.container-flex-mealplans img{
    padding: 10px;
    min-width: 100px;
    width: 25%;
    max-width: 135px;
    object-fit: contain;
}
.button-blue{
    font-size: 1.8rem;
    font-weight: 400;
    text-decoration: none;
    text-align: center;

    color: white;
    background-color: #4B77A9;
    border-radius: 50px;
    padding: 6px 20px;

}
.button-clear{
    font-size: 1.6rem;
    font-weight: 400;
    text-decoration: none;
    text-align: center;

    color: #4A0D66;
    border: solid #4A0D66 1px;
    border-radius: 50px;
    padding: 6px 20px;

    max-width: 80%;
}

/* RESPONSIV */
@media screen and (max-width: 770px) {
    html{
        font-size: small;
    }
    #body{
        width: 90vw;
        padding: 50px 5vw 120px 5vw;
    }
    #footer{
        width: 80vw;
        padding: 25px 10vw 60px 10vw;
    }
    .container-flex{
        flex-direction: column;
        align-items: center;
    }
    .container-flex img{
        padding-right: 0px;
        width: 100%;
    }
    .container-flex p{
        width: 100%;
        text-align: center;
    }
    .container-flex-wrap{
        width: 100%;
    }
}