/*=========================================
            CONTACT CTA
=========================================*/

.contact-cta {
    position: relative;
    padding: 140px 20px;

    background-image: url("images/books-footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* CTA Overlay */

.cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.78);
}


/* CTA Content */

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: auto;

    text-align: center;
}


/* CTA Heading */

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;

    font-size: 64px;

    color: #4a403a;

    margin-bottom: 25px;
}


/* CTA Paragraph */

.cta-content p {
    font-family: "Lato", sans-serif;

    font-size: 24px;
    line-height: 1.8;

    color: #4e4e4e;

    margin-bottom: 45px;
}


/* CTA Button */

.cta-btn {
    display: inline-block;

    width: 400px;
    max-width: 100%;

    padding: 18px 20px;

    background: #f5a623;
    color: #333;

    font-size: 28px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 50px;

    transition: 0.35s;
}


/* CTA Button Hover */

.cta-btn:hover {
    background: #e49412;
    color: #fff;

    transform: translateY(-3px);
}


/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 768px) {

    .contact-cta {
        padding: 90px 20px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-btn {
        width: 100%;
        font-size: 22px;
    }

}
