.first-screen {
    padding-top: 90px;
    background-image: url('/wp-content/themes/ilovelasik/images/green-marble.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding-bottom: 130px;
}
.first-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #003B3FCC;
    z-index: -1;
}
.first-screen__container {
    display: flex;
    flex-direction: column;
    gap: 90px;
}
.first-screen__video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.first-screen__flex-row {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
}
.first-screen__content h1 {
    color: #fff;
    line-height: 1.22;
    font-size: 64px;
    margin-bottom: 32px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    max-width: 880px;
}
.first-screen__text {
    max-width: 689px;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.16em;
}
.first-screen__blurred {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    padding-block: 35px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}
.first-screen__list {
    color: #fff;
    margin-left: 24px;
    letter-spacing: 0.18em;
    margin-block: 0 20px;
    padding-inline: 20px;
}
.first-screen__list li {
    padding-block: 0 8px;
    line-height: 2;
}
.first-screen__list li::before {
    content: '•';
    left: -6px;
    top: -1px;
}
.first-screen__list li a {
    color: #fff;
    text-decoration: none;
}
.first-screen__list li a:hover {
    color: #C39560;
    text-decoration: underline;
}
.first-screen__buttons {
    display: flex;
    gap: 15px 30px;
    flex-wrap: wrap;
    padding-inline: 30px;
}
.first-screen__book-consultation-button {
    background: linear-gradient(120deg, #8e6a41 0%, #cb9e69 40.39%, #a77840 63.55%, #c3945b 68.97%, #9f6f36 73.89%, #ad7c40 100%);
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #fff;
}
.first-screen__book-consultation-button:hover {
    border-color: #fff;
    transition: all 0.3s ease-in-out;
    color: #fff;
    background: linear-gradient(120deg, #8e6a41 0%, #cb9e69 40.39%, #a77840 63.55%, #c3945b 68.97%, #9f6f36 73.89%, #ad7c40 100%);
}
.first-screen__take-test-button {
    color: #fff;
}

@media (max-width: 1700px) {
    .first-screen {
        padding-bottom: 90px;
    }
    .first-screen__container {
        gap: 60px;
    }
    .first-screen__content h1 {
        font-size: 40px;
        margin-bottom: 20px;
        max-width: 550px;
    }
    .first-screen__text {
        max-width: 600px;
        font-size: 18px;
        letter-spacing: 0.16em;
    }
}

@media (max-width: 980px) {
    .first-screen {
        padding-block: 50px 80px;
    }
    .first-screen__container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .first-screen__flex-row {
        flex-wrap: wrap;
        justify-content: start;
    }
    .first-screen__text {
        max-width: 100%;
    }
}

@media (max-width: 540px) {
    .first-screen {
        padding-block: 50px;
    }
    .first-screen__blurred {
        padding-block: 25px;
    }
    .first-screen__list {
        padding-inline: 10px;
        margin-left: 15px;
    }
    .first-screen__list li {
        line-height: 1.5;
        font-size: 16px;
    }
    .first-screen__buttons {
        padding-inline: 20px;
    }
}