.hero-vv {
    padding: 0;
    overflow: hidden;
}

.hero-inner-vv {
    max-width: 1520px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-left: 20px;
}
@media (min-width: 1920px) {
    .hero-inner-vv {
        max-width: 2500px;
        padding-left: 200px;
    }
    .hero-image-vv {
        width: 100vw;
        margin-left: calc((100% - 100vw) / -2);
    }
}
@media (max-width: 900px) {
    .hero-vv {
        padding: 0 5%;
    }
    .hero-inner-vv {
        flex-direction: column;
        gap: 16px;
        padding-left: 0;
    }
}

.hero-content-vv {
    flex: 1 1 auto;
    width: 100%;
}

.hero-content-vv h1 {
    color: #321E28;
    font-family: Inter, sans-serif;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 72px;
    letter-spacing: -5.12px;
}

.hero-content-vv h2 {
    color: #321E28;
    font-family: "Instrument Serif";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: -20px;
}

.hero-text-vv {
    width: 75%;
    color: #3F3F3F;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -1.92px;
}

.hero-buttons-vv {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.hero-button-wrap {
    text-align: left;
}

.hero-button-vv {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 18px;
    transition: opacity .2s ease;
    border-radius: 0;
    border: 1px solid #321E28;
    color: black;
}

.hero-button-vv svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.hero-button--primary {
    background-color: #D2A5C3;
    color: #321E28;
    border: none;
}

.hero-button--secondary {
    background-color: transparent;
}

.hero-button--primary:hover,
.hero-button--secondary:hover {
    opacity: .8;
}

.hero-image-vv {
    flex: 0 0 auto;
    margin-left: auto;
    width: clamp(300px, 50vw, 1200px);
    height: auto;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: url("images/Mask.png");
    mask-image: url("images/Mask.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: cover;
}
.hero-image-vv img {
    display: block;
}
.hero-button-subtext-vv {
    margin-top: 15px;
    color: #919141;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.32px;
}

@media (max-width: 1600px) {
    .hero-content-vv h2 {
        font-size: 30px;
        line-height: 1.2;
    }
    .hero-text-vv {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -1.6px;
    }
    .hero-button-vv {
        font-size: 17px;
        padding: 11px 22px;
    }
}
@media (max-width: 1500px) {
    .hero-content-vv h1 {
        font-size: 44px;
        line-height: 1.2;
    }
    .hero-content-vv h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    .hero-text-vv {
        font-size: 16px;
        line-height: 1.5;
    }
    .hero-button-vv {
        font-size: 16px;
        padding: 10px 20px;
    }
}
@media (max-width: 1300px) {
    .hero-content-vv h1 {
        font-size: 44px;
        line-height: 1.2;
    }
    .hero-content-vv h2 {
        font-size: 26px;
        line-height: 1.3;
    }
    .hero-text-vv {
        font-size: 16px;
        line-height: 1.5;
    }
    .hero-button-vv {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 1024px) {
    .hero-inner-vv {
        gap: 16px;
    }
    .hero-content-vv {
        flex: 1 1 100%;
        max-width: none;
    }
    .hero-image-vv {
        flex: 1 1 100%;
    }
}

@media (max-width: 900px) {
    .hero-inner-vv {
        flex-direction: column;
        gap: 16px;
    }
    .hero-content-vv {
        flex: 1 1 100%;
        text-align: center;
    }
    .hero-content-vv h1,
    .hero-content-vv h2,
    .hero-text-vv {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons-vv {
        justify-content: center;
    }
    .hero-button-vv {
        font-size: 12px;
    }
    .hero-button-wrap {
        width: 100%;
        text-align: center;
    }
    .hero-image-vv {
        flex: 1 1 100%;
        width: 100%;
        height: auto;
        margin-left: 0;
    }
}

@media (max-width: 700px) {
    .hero-inner-vv {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .hero-buttons-vv {
        justify-content: center;
    }
    .hero-button-wrap {
        width: 100%;
    }
}