.hero {
    padding-top: 80px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.hero__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    max-width: 80vw;
}

.hero__title {
    color: #191919;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    letter-spacing: -1.68px;
    max-width: 1000px;
}

.hero__container p {
    color: #313131;
    text-align: center;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    max-width: 400px;
}

.hero__btn{
    font-weight: 400;
}

.hero__bg {
 width: 100%;
 height: 100%;
 object-fit: cover;
}

.hero__subtitle-mobile{
    display: none;
}
.hero__bg-mobile{
    display: none;
}

.hero__bg{
    display: block;
}
@media (max-width: 768px) {
    .hero{
        padding-top: 48px;
        padding-bottom: 20px;
    }
    .hero__container{
        margin: 0 ;
    }
    .hero__title{
        font-size: 32px;
    }

    .hero__subtitle{
        display: none;
    }

    .hero__subtitle-mobile{
        display: block;
        color: #313131;
        text-align: center;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%;
        max-width: 200px;
    }

    .hero__bg-mobile{
        display: block;
        width: 100%;
    }
    .hero__bg{
        display: none;
    }

    .hero__container p{
        max-width: 280px;
    }
}