.content-bg {
    position: relative;
    padding: 64px 0;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 1920 / 845;
    width: 100%;
    min-height: 100%;
    height: auto;
}

.content-bg::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 51, 0.50);
    pointer-events: none;
}

.content-bg>* {
    z-index: 1;
    height: 100%;
    position: relative;
}

.content-bg .boxes-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-bg .content-title-wrapper h2,
.content-bg .content-title-wrapper p {
    color: #fff;
}

.content-bg .btn-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

@media (max-width:1199px) {
    .content-bg {
        padding: 48px 0;
        aspect-ratio: auto;
    }
}