.cta-section {
    position: relative;
    padding-top: 6.25rem;
    overflow: visible;
}

.cta-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.cta-title {
    margin-bottom: 1.875rem;
    color: var(--bi-black);
}

.cta-title strong{
    color: var(--bi-blue);
}

.cta-subtitle {
    font-family: "Manrope";
    color: var(--bi-gray);
    line-height: 1.5;
	max-width: 49rem;
}

.cta-form-container {
    position: relative;
    background: #FFF;
    padding: 5rem;
    margin: 0 12rem;
    z-index: 5;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 1.25rem;
}

.cta-form input, 
.cta-form textarea {
    width: 100%;
    background-color: #F7F5F3;
    border: none;
    font-size: 1.5rem;
    font-family: inherit;
    outline: none;
    padding: 2.3125rem 2.25rem;
}

.cta-form input::placeholder, 
.cta-form textarea::placeholder {
    color: var(--bi-gray);
}

.cta-circle-btn {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%); 
    width: 15.625rem;
    height: 15.625rem;
    background-color: #4A5B7E;
    border: none;
    border-radius: 50%;
    color: #FFF;
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.cta-circle-btn:hover{
	background-color: #ABB1C1;
}
.cta-circle-btn span {
    font-size: 1.5rem;
    line-height: 120%;
}

.cta-image-wrapper {
    width: 100%;
    height: 42rem;
    overflow: hidden;
    margin-top: -16%;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 767px) {
    .cta-title { 
        font-size: 1.75rem; 
    }
    .cta-subtitle {
        font-size: 1rem;
    }
    .form-row { 
        flex-direction: column; 
    }
    .cta-form-container { 
        padding: 2.1875rem 1.25rem 2.5rem 1.25rem; 
        margin: 0;
    }
    .cta-form input::placeholder, 
    .cta-form textarea::placeholder {
        font-size: 1rem;
    }
    .cta-form textarea {
        height: 17.6875rem;
    }
    .cta-circle-btn { 
        width: 11.25rem; 
        height: 11.25rem; 
    }
    .cta-circle-btn span {
        font-size: 1.125rem;
    }
    .cta-image-wrapper {
        margin-top: -110%;
    }
    .cta-form input, .cta-form textarea {
        padding: 1.5625rem 1.9375rem;
    }
}