.cta-bg {
    padding: 120px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    overflow: hidden;
}

.cta-bg.bg-dark::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #224254;
    opacity: 0.8;
    pointer-events: none;
}

.cta-bg.location-icon::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 355px;
    height: 290px;
    background-image: url(../../assets/images/location-icon.svg);
    background-repeat: no-repeat;
    background-size: cover;
    pointer-events: none;
}

.cta-bg.bg-light::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #5086B4;
    opacity: 0.8;
    pointer-events: none;
}

.cta-bg>* {
    z-index: 4;
    position: relative;
}

.cta-bg .cta-bg-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-bg .cta-bg-wrapper h2 {
    color: #fff;
}

.cta-bg .cta-bg-wrapper p {
    color: #fff;
    font-size: 18px;
    opacity: 0.7;
}

.cta-bg .btn-wrapper {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.cta-bg .btn-wrapper+div{
	margin-top: 16px;
}

.cta-bg .btn-wrapper+div p{
    font-size: 12px;
}

.cta-bg .btn-wrapper+div strong{
	font-weight: 600;
}

@media (max-width:1366px) {
    .cta-bg {
        padding: 96px 0;
    }
}

@media (max-width:1199px) {
    .cta-bg {
        padding: 64px 0;
    }

    .cta-bg.location-icon::after {
        width: 157px;
        height: 173px;
    }

    .cta-bg .cta-bg-wrapper p {
        font-size: 16px;
    }

    .cta-bg h2 br {
        display: none;
    }
}