.hero {
    overflow: none;
}

.hero.container {
    overflow: hidden;
}

.hero__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26.5rem;
    margin: 0;
    padding: 0;
}

.hero__up-text {
    margin-top: 3.5rem;
    /* max-width: none; */
}

.hero__logo {
    width: 464px;
    height: auto;
    max-width: none;
    /* margin-inline: auto; */
    margin-left: -3.7rem;
}

.hero__down-text {
    margin: auto;
}

.hero__text {
    color: var(--txt-color);
    font-size: 1.3rem;
}

.hero__insta-button {
    background-color: rgba(1, 152, 132, 0.6);
    width: 192px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto 5.5rem;
}

.hero__insta-button-text {
    font-size: 1.2rem;
}



/* Media query */

@media (min-width: 475px){
    .bg__container {
        max-width: 640px;
        background-position: center;
    }

    .hero__up-text {
        margin: auto;
    }

    .hero__logo {
        margin-left: 0;
        width: 500px;
    }
}

@media (min-width: 640px){
    .bg__container {
        max-width: 768px;
    }
}

@media (min-width: 768px){
    .bg__container {
        background: 
        /* linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),  */
        url(./images/bg-winter_big.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: 50% 70%;
        max-width: 1024px;
    }

    .hero__up-text {
        margin-top: -3rem;
    }

    .hero__container {
        gap: 14rem;
    }

    .hero__logo {
        width: 650px;
    }

    .hero__text {
        font-size: 1.6rem;
    }

    .hero__insta-button {
        width: 220px;
        height: 50px;
    }

    .hero__insta-button-text {
        font-size: 1.4rem;
    }

    .hero__insta-button-icon {
        width: 35px;
        height: 35px;
    }
}

@media (min-width: 1024px){
    .bg__container {
        max-width: 1280px;
    }

    .hero__logo {
        width: 800px
    }

    .hero__text {
        font-size: 2rem;
    }
}

@media (min-width: 1280px){
    .bg__container {
        max-width: 1536px;
    }
}

@media (min-width: 1536px){
    .bg__container {
        max-width: unset;
    }
}