/* Bounded Regular */


@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




body {
   font-family: "Unbounded", sans-serif;
    font-weight: 400;
    color: #000;
    min-height: 100vh;
    position: relative;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
.background-container img {
         position: relative;
    top: -10px;
    }}

.content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    text-align: center;
    padding: 20px;
}

@media (max-width: 991px) {
.content {
         height: 95vh;
         position: relative;
         top: -20px;
    }}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 700;
}


@media (max-width: 1400px) {
  h1 {
   font-size: 2rem;
    }}

.cta-button {
    display: inline-block;
    background: url(/images/btn.webp);
    background-size: cover;
    color: #000000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    font-family: "Unbounded", sans-serif;
    font-size: 32px;
    margin-bottom: 40px;
}

@media (max-width: 1400px) {
 .cta-button {
   font-size: 24px;
    }}


@media (max-width: 991px) {
 .cta-button {
     margin-bottom: 2rem;
    }}

.cta-button:hover {
    background-color: #ff3742;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.two-line-text {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 1000px;
}

@media (max-width: 1400px) {
.two-line-text {
    font-size: 0.9rem;
    }}


.two-line-text p {
    margin-bottom: 1rem;
}


@media (max-width: 991px) {
  .two-line-text p {
     font-size: 10px;
    }}

/* Адаптивность */
@media (max-width: 1000px) {
    h1 {
      font-size: 1.9rem;
        font-weight: 800;
    }

    .cta-button {
        font-size: 1.4rem;
    }

    .two-line-text {
        font-size: 1rem;
    }
}




@media (max-width: 991px) {
  h1 span {
     font-size: 20px;
        display: block;
    }}

.logo {
    position: absolute;
    left: 50px;
    top: 50px;
    max-width: 200px;
}


@media (max-width: 991px) {
  .logo {
          position: absolute;

    top: 50px;
    max-width: 120px;
    left: calc(50% - 60px);
    }}


