.cta-section{
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: cover;
    width: 100%;
    background-size: cover;
}

.cta-section .btn-primary:hover{
    color: var(--white-color);
    border-color: var(--white-color);
}

.cta-content{
    max-width: 1200px;
    margin: 0 auto;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

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

.cta-section .main-title{
    margin-bottom: 50px;
    color: var(--white-color);
}

.cta-section .description-text{
    color: var(--white-color);
}