.cta-section{
    position: relative;

    padding: 140px 7%;

    overflow: hidden;

    background-image:
        url("../../images/About/cta.jpg");

    background-size: cover;
    background-position: center;

    text-align: center;
}


/* BOTTOM GRADIENT OVERLAY */

.cta-section::before {

    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 1) 100%
    );

    z-index: 1;
}


/* CONTENT */

.cta-content{
    position: relative;
    z-index: 2;
}


/* TITLE */

.cta-content h2{

    color: #fff;

    font-weight: 900;

    font-size: 110px;

    line-height: 0.95;

    margin-bottom: 30px;

    letter-spacing: -5px;
}


/* TEXT */

.cta-content p{

    color: rgba(255,255,255,0.85);

    font-size: 22px;

    max-width: 700px;

    margin: auto auto 45px;

    line-height: 1.8;
}


/* BUTTON */

.cta-btn{

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 18px 40px;

    background: #fff;
    color: #000;

    border-radius: 100px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.4s ease;
}

.cta-btn:hover{

    transform: translateY(-5px);
}


/* =========================
   SCROLL REVEAL ANIMATIONS
========================= */

/* Default hidden states */
.cta-section.reveal-on-scroll .cta-content h2,
.cta-section.reveal-on-scroll .cta-content p,
.cta-section.reveal-on-scroll .cta-btn {
    opacity: 0;
    position: relative;
}

/* Scroll Triggered Sequence */
.cta-section.reveal-on-scroll.is-visible .cta-content h2 {
    animation: about-cta-fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.1s;
}

.cta-section.reveal-on-scroll.is-visible .cta-content p {
    animation: about-cta-fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

.cta-section.reveal-on-scroll.is-visible .cta-btn {
    animation: about-cta-fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
}

@keyframes about-cta-fade-up {
    0% {
        opacity: 0;
        top: 40px;
    }
    100% {
        opacity: 1;
        top: 0;
    }
}

/* RESPONSIVE */

@media(max-width:991px){

    .cta-section{
        padding: 110px 7%;
    }

    .cta-content h2{

        font-size: 58px;

        letter-spacing: -2px;
    }

    .cta-content p{

        font-size: 18px;
    }
}

@media(max-width:768px){
    .cta-content p{
        font-size: 15px;
    }
}