@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*padding: 20px;*/
}

.main_top {
    background-image: url("assets/aqua_terra_bg.png");
    background-size: cover;
    background-position: center bottom;
    /*background-position: 30%;*/
    background-repeat: no-repeat;
    min-height: 650px;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 30px;
}
.logo {
    padding-bottom: 104px;
}
h1 {
    font-family: "EB Garamond", serif;
    color: #fff;
    font-size: 120px;
    line-height: 105px;
    font-weight: 700;
    text-align: center;
}
.bottom_container {
    position: relative;
}
.bottom {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -61%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 140px;
    padding-bottom: 30px;
}
.bottom_left {
    padding-top: 295px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.bottom_left p {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bottom_left p a {
    font-family: "Montserrat", sans-serif;
    color: #0D4BA0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.bottle_mobile {
    display: none;
}
@media (max-width: 851px) {
    .main_top {
        background-position: 30%;
    }
    .bottle_mobile {
        display: block;
    }
    .bottle_desktop {
        display: none;
    }
    .bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 0;
        transform: translate(-50%, -50%);
    }
    .bottom_left {
        padding-top: 0px;
        padding-left: 30px;
    }
}

@media (max-width: 520px) {
    .bottom {
        width: 90%;
    }
    .bottle_mobile {
        max-width: 100%;
    }
    h1 {
        font-size: 90px;
        line-height: 76px;
    }
}
@media (max-width: 364px) {
 h1 {
     font-size: 80px;
     line-height: 66px;
 }
}