.hp-block {
    min-height: 100svh;
    background-image: url("../img/social-media-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    display: grid;
}
.hp-block__container {
    max-width: 720px;
    width: 100%;
    display: grid;
    margin: 0 auto;
    padding: 0 10px;
}
.hp-block__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
}
.hp-block__title {
    font-weight: 700;
    font-size: 55px;
    line-height: 140%;
    background: -webkit-gradient(linear, left top, right top, from(#ed4a5c), to(#fc8b43));
    background: -o-linear-gradient(left, #ed4a5c 0%, #fc8b43 100%);
    background: linear-gradient(90deg, #ed4a5c 0%, #fc8b43 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hp-block__subtitle {
    font-weight: 600;
    color: #000;
    font-size: 36px;
    line-height: 140%;
}
.hp-block__text {
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #000;
}
.hp-block__btn {
    max-width: 250px;
    width: 100%;
    min-width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.45;
    border-radius: 30px;
    background-color: #ed4a5c;
    min-height: 60px;
    padding: 10px 20px;
    -webkit-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.hp-block__copy {
    margin-top: 30px;
    font-size: 18px;
    line-height: 110%;
    color: #000;
    opacity: 0.5;
}
@media (any-hover: hover) {
    .hp-block__btn:hover {
        opacity: 0.7;
    }
}
@media (max-width: 991.98px) {
    .hp-block__body {
        gap: 24px;
    }
    .hp-block__title {
        font-size: 45px;
    }
    .hp-block__text {
        font-size: 18px;
    }
    .hp-block__subtitle {
        font-size: 26px;
    }
}
@media (max-width: 767.98px) {
    .hp-block {
        background-image: url("../img/social-media-bg-mob.jpg");
    }
}