.hero_content{
    display: flex;
    flex-direction: column;
    margin: auto;
    gap: 3.333vw;
    z-index: 1;
    padding: 10.278vw 0 13.75vw 0;
    align-items: center;
    max-width: 900px;
}

.hero_landing_bg{
    background-image: url(../items/backgrounds/hero_landing.svg);
    background-size: 100%;    
}

.text{
    display: flex;
    flex-direction: column;
    width: 62.500vw;
    max-width: 900px;
    gap: 3.889vw;
    align-items: center;
    color: #202020;
    text-align: center;
}

.large{
    font-size: 5.278vw;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.211vw;
}

.small{
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    color: #202020;
}

.brands{
    display: flex;
    flex-direction: column;
    z-index: 1;
    align-items: center;
    overflow: hidden;
    padding-bottom: 40px;
    gap: 24px;
}

.title{
    font-size: 16px;
    font-weight: 700;
    line-height: 150%;
    color: #545454;
}

.logos{
    display: flex;
    overflow: hidden;
    gap: 100px;
    width: 1360px;
    box-sizing: border-box;
}

.logos:first-child{
    padding-left: 50px;
}

.logos:last-child{
    padding-right: 50px;
}

.logos div{
    display: flex;
    height: 60px;
    animation: moving 20s linear infinite;
}

.logos img{
    align-items: center;
    height: 100%;
}

@keyframes moving{
    0%{
        transform: translateX(0px);
    }

    100%{
        transform: translateX(calc(-220px*9));
    }
}

/* @media screen and (max-width: 347px){
    .small{
        margin-top: 25px;
    }
} */

@media screen and (max-width: 768px) {
    .hero_content{
        padding: 56px 16px 0 16px;
        gap: 48px;
        margin: initial;
        align-items: start;
    }

    .text{
        gap: 32px;
        width: auto;
        text-align: start;
        align-items: start;
    }

    .large{
        font-size: 39px;
        letter-spacing: -1.56px;
    }

    .small{
        font-size: 20px;
        font-weight: 500;
        color: #202020;
    }

    .brands{
        gap: 12px;
        padding: 96px 16px 33px 16px;
        padding-bottom: none;
    }

    .logos{
        width: auto;
        width: 94.444vw;
    }

    .logos:first-child{
        padding-left: none;
    }

    .logos:last-child{
        padding-right: none;
    }

    .logos div{
        height: 80px;
        animation: movingM 20s linear infinite;
    }

    @keyframes movingM{
        0%{
            transform: translateX(0vw);
        }
    
        100%{
            transform: translateX(calc(-260px*9));
        }
    }
}

@media screen and (min-width: 1440px){
    .large{
        font-size: 61px;
        letter-spacing: -2.44px;
    }

    .small{
        font-size: 20px;
    }

    /* .logos{
        gap: 100px;
        max-width: 1360px;
    } */

    .logos:first-child{
        padding-left: 50px;
    }

    .logos:last-child{
        padding-right: 50px;
    }
}