.hero-block{
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 24px;
}
.hero-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.hero-title{
    font-size: clamp(64px, 8vw, 120px);
    letter-spacing: clamp(4px, 1vw, 12px);
    text-transform: uppercase;
    color: #333333;
    font-weight: 400;
    font-family: "Capture it";
    text-align: left;
    white-space: nowrap;
    line-height: 1;
}
.hero-subtitle{
    font-size: 40px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: #20120b;
    font-weight: 600;
}
.hero-btn{
    margin-top: 60px;
}
.hero-right{
    position: absolute;
    top: 50px;
    width: 150px;
    right: clamp(-50px, calc((var(--container) - 100vw) / 2), 0px);
}
.main-text{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 30px;
    color: #333333;
    font-weight: 500;
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.main-text a{
    text-decoration: underline;
    font-weight: 700;
}
.main-text a:hover{
    color: #fc932e;
}

@media (max-width: 1199px){
    .hero-block{
        flex-direction: column;
    }
    .hero-right{
        top: unset;
        bottom: 0;
    }
}
@media (max-width: 767px){
    .hero-block{
        padding-top: 0;
    }
    .hero-title{
        font-size: 48px;
        white-space: unset;
    }
    .hero-subtitle{
        font-size: 24px;
    }
}
@media (max-width: 520px){
    .hero-title{
        font-size: 32px;
        text-align: center;
    }
    .hero-subtitle{
        font-size: 14px;
        text-align: center;
    }
    .hero-right{
        display: none;
    }
    .for-block{
        padding-bottom: 0;
    }
}