.cta-section {
    padding: 40px 20px;
    background: #060b16;
    position: relative;
    overflow: hidden;
    background-image: url(../images/contact-avtion.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgb(255 255 255 / 78%) 3%, rgba(227, 218, 218, 0.707) 42%, rgb(222 209 209 / 28%) 58%, rgb(255 255 255 / 45%) 100%);
}

.cta-section .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    margin-bottom: 25px;
    background: rgba(0, 208, 132, .12);
    border: 1px solid rgba(0, 208, 132, .25);
    color: #022e59;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
}

.cta-section .action_bx {
    width: 60%;
    margin: auto;
    text-align: center;
}

.cta-section .action_bx p {
    color: #000;
    line-height: 1.5;
    font-size: 20px;
    margin-top: 20px;
}

.cta-section .cta-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #011e55;
    border-radius: 50%;
    box-shadow: 0 0 15px #001753;
}

.cta-section .action_bx h2 {
    color: var(--base-color);
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 600;
}


.cta-section .cta-buttons {
    margin-top: 45px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .cta-btn {
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: .4s;
}

.cta-section .primary-btn {
    background: linear-gradient(135deg, #003253, #00a96d);
    color: #fff;

    box-shadow:
        0 10px 30px rgba(0, 208, 132, .25);
}

.cta-section .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 40px rgba(0, 208, 132, .35);
}

.cta-section .secondary-btn {
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    background: rgb(0 50 83);
}

/* .cta-section .secondary-btn:hover {
    background: rgba(255, 255, 255, .08);
    transform: translateY(-5px);
} */

@media(max-width:990px) {
.cta-section {
    padding: 50px 0;
}
    .cta-section .cta-container {
        padding: 60px 25px;
    }

    .cta-section .cta-container h2 {
        font-size: 38px;
    }

    .cta-section .cta-container p {
        font-size: 16px;
    }

    .cta-section .cta-btn {
        width: 100%;
        max-width: 320px;
    }
    .cta-section .action_bx{
        width: 100%;
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    .cta-section .action_bx h2 {
        font-size: 35px;
    }

    .cta-section .action_bx p {
        font-size: 17px;
    }

    .cta-section .cta-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (min-width:1901px) and (max-width:3000px) {
    .cta-section .action_bx h2 {
        font-size: 45px;
    }

    .cta-section .action_bx p {
        font-size: 20px;
    }

    .cta-section .cta-btn {
        padding: 24px 40px;
        font-size: 20px;
    }
}