.home-cta-section {
    background-image: linear-gradient(90deg, rgba(8, 19, 35, 0.94) 0%, rgba(8, 19, 35, 0.78) 46%, rgba(8, 19, 35, 0.38) 100%), var(--home-cta-bg);
    background-position: center;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.home-cta-section::before {
    background-image: url(../img/square-pattern.png);
    background-size: 20px;
    content: "";
    inset: 0;
    opacity: 0.16;
    position: absolute;
    z-index: 0;
}

.home-cta-wrap {
    display: flex;
    align-items: center;
    min-height: 520px;
    position: relative;
    z-index: 1;
}

.home-cta-copy {
    display: flex;
    align-items: center;
    padding: 100px max(24px, calc((100vw - 1170px) / 2));
    width: 100%;
}

.home-cta-copy .section-heading {
    max-width: 760px;
}

.home-cta-copy .section-heading h3,
.home-cta-copy .section-heading h2,
.home-cta-copy .section-heading p {
    color: var(--white-color);
}

.home-cta-copy .section-heading h3::before {
    background-color: var(--primary-color) ;
}

.home-cta-copy .section-heading h2 span {
    color: #fff;
}

.home-cta-copy .section-heading p {
    max-width: 650px;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.home-cta-link {
    color: var(--white-color);
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 1;
    position: relative;
    margin-top: 15px;
}

.home-cta-link::after {
    background-color: var(--primary-color);
    bottom: -8px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.home-cta-link:hover {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .home-cta-copy {
        padding: 80px 24px;
    }
}

@media (max-width: 767px) {
    .home-cta-copy {
        padding: 60px 18px 36px;
    }

    .home-cta-copy .section-heading h2 {
        font-size: 34px;
        line-height: 42px;
    }

    .home-cta-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

}
