.hero-section {
    margin-top: -130px;
    height: 100vh;
    background: url("../img/pool2.jpg") no-repeat center top / cover;
}

.kinds-blurb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kinds-blurb__img {
    display: flex;
    margin-right: 8px;
}

.kinds-blurb__text {
    margin: 0;
    margin-left: 8px;
    color: var(--main-color);
    font-size: 20px;
}

.contact-container {
    background: var(--main-color);
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
}

.contact-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-block__text {
    color: #fff;
    font-size: 25px;
}

.contact-block__btn {
    background: #fff;
    color: var(--main-color);
    font-weight: 500;
}

.contact-block__btn:hover {
    color: var(--main-color);
    box-shadow: 1px 1px 5px rgba(255,255,255,0.5);
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: 90vh;
        background: url("../img/pool-mobile2.jpg") no-repeat center center / cover;
    }

    .main-offer-mobile {
        flex-direction: column;
        justify-content: center;
        margin-top: 90%;
        background: rgba(0,0,0,0.5);
        padding: 15px;
    }

    .header-description {
        margin: 0;
        text-align: center;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
        font-size: 25px;
    }

    .contact-block {
        display: flex;
        flex-direction: column;
    }

    .contact-block__text {
        text-align: center;
        margin-bottom: 16px;
    }
}
