.banner {
    margin-top: 30px;
    margin-bottom: 60px;
}

.banner-block {
    position: relative;
}

.banner-intro {
    position: relative;
    width: 100%;
    padding: 25px;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-pale-black);
    border-radius: 24px;
    margin-left: auto;
    line-height: 1.12;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, .95);
    margin-top: -90px;
}

.banner-intro p {
    margin-bottom: 16px;
}

.banner-button {
    text-align: center;
}

.banner-bg-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 30px;
}

.banner-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .banner-intro {
    text-align: unset;
}

@media screen and (min-width: 768px) {
    .banner {
        height: 400px;
        margin-top: 50px;
        margin-bottom: 110px;
    }

    .banner-block {
        height: 400px;
    }

    .banner-intro {
        padding: 30px;
        font-size: 34px;
        right: 24px;
        max-width: 430px;
        width: 100%;
        position: absolute;
        bottom: -75px;
    }

    .banner-bg-image {
        border-radius: 50px;
        height: 100%;
    }


}

