body {
    margin: 0;
    padding: 0;
    font-family: 'SS Regular', sans-serif;
    color: #fff;
}

.section-bg {
    position: relative;
    overflow: hidden;
}


.section-bg,
.container,
.content {
    height: 100vh;
}

.section-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg.webp') center center / cover no-repeat;
    transform: scale(1);
    animation: zoomBg 20s ease-in-out infinite alternate;
    z-index: 0;
}

@media screen and (max-width: 991px) {
    .section-bg::before {
        background: url('images/m-bg.webp') center center / cover no-repeat;
    }
}


.section-bg::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 1;
    pointer-events: none;
}

.logo-container {
    padding: 10px;
    width: 100%;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: #00204c36;
    display: flex;
    justify-content: center;
}

.logo {
    width: 60vw;
    max-width: 350px;
}


@keyframes zoomBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}


.content {
    position: relative;
    z-index: 2;
    padding: 0 0 15vh 0;
}

.bottom-cta {
    color: #fff;
    text-align: center;
}

.bottom-cta h1 {
    padding: 15px;
    text-shadow: 5px 5px 40px rgba(0, 0, 0, 0.9);
    padding: 10px;
    width: 100%;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: #00204c36;
    border-radius: 15px;
    margin-bottom: 15px;
}

.somer-button {
    font-family: 'CS Medium';
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background: #c98a90;
    color: #fff;
    text-decoration: none;
}

@font-face {
    font-family: 'CS Regular';
    src: url('fonts/cs-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CS Medium';
    src: url('fonts/cs-medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'SS Regular';
    src: url('fonts/ss-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'SS Medium';
    src: url('fonts/ss-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

.section-not-found {
    background-color: #fffaeb;
}

.section-not-found .logo {
    margin-bottom: 15px;
}

.four-zero-four {
    font-size: 7.5rem;
    color: #555732;
}

.text {
    font-size: 1.2rem;
    color: #969696;
}