@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: #061e56;
    background-image: url(../images/background.webp);
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
footer a{
    font-weight: 800;
    font-size: 10px;
    line-height: 178.52%;
    letter-spacing: 0.23em;
    color: #8C9091;
    opacity: 0.72;
    text-transform: uppercase;
}

h1{
    font-size: 16px;
    margin-bottom: 35px;
}

address{
    font-style: normal;
}

a, span{
    font-weight: 400;
    font-size: 18px;
    line-height: 178.52%;
    color: #FFF;
    text-decoration: none;
    display: block;
}

a:hover{
    transition: .2s;
    text-shadow: 2px 2px 5px rgba(48, 87, 86, 0.7);
}

.mb{
    margin-bottom: 35px;
}

.container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1335px;
    min-height: 100vh;
    margin-left: 10vw;
}

footer{
    position: relative;
    max-width: 1625px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: -8vh;
}

.footer-links{
    display: flex;
    align-items: center;
    gap: 40px;
}

.info{
    max-width: 215px;
    margin-top: 10vh;
}
.info-large{
    max-width: 500px;
    margin-top: 10vh;
}
.social-media{
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    
}
.logo{
    height: 100%;
    width: 775px;
}
.logo img{
    object-fit: contain;
    width: 100%;
}
.btn-menu{
    margin-top: 55px;
    filter: drop-shadow(2px 2px 5px rgba(48, 87, 86, 0.7));
    background: #FF87A0;
    width: 165px;
    height: 50px;
    background-image: url(../images/btn-menu.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: none;
}

.blisq,
.social-media-facebook,
.social-media-instagram{
    transition: all .2s;
}

.blisq:hover,
.social-media-facebook:hover,
.social-media-instagram:hover{
    filter: drop-shadow(2px 2px 5px rgba(48, 87, 86, 0.7));
}

@media screen and (max-width: 1680px){
    .container{
        margin: 0 auto;
    }
    footer{
        padding: 0 30px;
    }
}

@media screen and (max-width: 1440px){

    .container{
        justify-content: center;
        gap: 10vw;
        margin-top: -5vh;
    }
    a, span {
        font-size: 16px;
    }
    footer{
        margin-top: -3vh;
    }
    .logo{
        width: 735px;
    }
}
@media screen and (max-width: 1376px) {
    .logo {
        width: 585px;
    }
}
@media screen and (max-width: 912px){
    .container{
        flex-direction: column;
        gap: 0;
    }
    .logo {
        width: 60%;
        margin-left: -10vw;
    }
    footer {
        margin-top: 0;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 820px){
    .container{
        margin-top: 20px;
        min-height: 90vh;
        margin-bottom: 40px;
    }
    .footer-links {
        gap: 10px;
        flex-direction: column;
    }
    h1{
        margin-top: -20px;
    }
}

@media screen and (max-width: 550px){
    .logo {
        width: 80%;
    }

    h1, a, span {
        font-size: 14px;
    }
    footer a {
        font-size: 8px;
    }
    .info-large{
        padding: 0 30px;
    }
}