@charset "UTF-8";

/* ===== Base / Reset that affects this layout ===== */
*,
:before,
:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::-webkit-input-placeholder { color: #666; opacity: 1; }
:-moz-placeholder { color: #666; opacity: 1; }
::-moz-placeholder { color: #666; opacity: 1; }
:-ms-input-placeholder { color: #666; opacity: 1; }

body,
html {
    height: 100%;
}

body {
    font-size: 16px;
    min-width: 320px;
    position: relative;
    line-height: 1.65;
    font-family: "Golos Text", sans-serif;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: #fcfcfc;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/* ===== Container (used in your markup) ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ===== Form color variants (used in your markup) ===== */
.form--white input { color: #fff !important; }

.form--white form input[type="email"]::-webkit-input-placeholder { color: #fff !important; }
.form--white input[type="email"]::placeholder { color: #fff; opacity: 1; }
.form--white form input[type=email] { color: #fff !important; }
.form--white form input[type=email]::-webkit-input-placeholder { color: #fff; }
.form--white form input[type=email]::-moz-placeholder { color: #fff; }
.form--white form input[type=email]:-ms-input-placeholder { color: #fff; }
.form--white form input[type=email]::-ms-input-placeholder { color: #fff; }
.form--white form input[type=email]::placeholder { color: #fff; }

.form-red input { color: #fff !important; }
.form-red input[type="email"]::placeholder { color: #fff; opacity: 1; }

/* ===== Base form styles (your forms rely on these) ===== */
.first__content-form-content form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-around;
    margin-top: 20px;
}

form input[type=checkbox],
form input[type=email],
form input[type=submit],
form input[type=tel],
form input[type=text] {
    font-family: inherit;
    font-size: 16px;
}

form button {
    font-family: inherit;
    font-size: 16px;
}

.first__content-form-content form input[type=email],
.first__content-form-content form input[type=tel],
.first__content-form-content form input[type=text] {
    padding: 12px 16px;
    color: #fff;
    width: 100%;
    height: 45px!important;
    max-width: 330px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border .3s ease;
    transition: border .3s ease;
    border-radius: 8px;
    border: 1px solid #eee;
    background: #fff;
}

/* placeholders for tel/text in base form */
form input[type=tel]::-webkit-input-placeholder,
form input[type=text]::-webkit-input-placeholder {
    color: #fff;
}
form input[type=tel]::-moz-placeholder,
form input[type=text]::-moz-placeholder {
    color: #fff;
}
form input[type=tel]:-ms-input-placeholder,
form input[type=text]:-ms-input-placeholder {
    color: #fff;
}
form input[type=tel]::-ms-input-placeholder,
form input[type=text]::-ms-input-placeholder {
    color: #fff;
}
form input[type=tel]::placeholder,
form input[type=text]::placeholder {
    color: #fff;
}

form input[type=tel]:focus,
form input[type=text]:focus {
    outline: 0;
    border-color: rgba(255, 255, 255, .8);
}

form input[type=checkbox] {
    accent-color: #fff;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

form label {
    color: #fff;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

form button[type=submit],
form input[type=submit] {
    background: -webkit-gradient(linear, left top, right top, from(#d40000), to(#8c0000));
    background: linear-gradient(90deg, #d40000, #8c0000);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 14px 50px;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

form button[type=submit]:hover,
form input[type=submit]:hover {
    background: -webkit-gradient(linear, left top, right top, from(#b30000), to(#730000));
    background: linear-gradient(90deg, #b30000, #730000);
}

/* intl-tel-input wrapper (your markup uses .tel + usually plugin adds .iti) */
.iti {
    max-width: 330px;
    width: 100%;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #fff;
}

/* checkbox block in your markup */
.checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 20px;
}

.checkbox a {
    text-decoration: none;
    color: #222;
    margin-left: 10px;
}

/* ===== Form card wrapper (your markup uses .form_content) ===== */
.form_content {
    background: linear-gradient(250deg, #750117 1.45%, #e70000 98.55%);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 999;
}

.form_content form { margin-top: 0; }

.form_content form input {
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .3) !important;
    color: #fff;
    max-width: 310px;
}

.form_content form input[type=email],
.form_content form input[type=tel],
.form_content form input[type=text] {
    padding: 12px 16px;
    color: #fff !important;
    width: 100%;
    max-width: 310px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border .3s ease;
    transition: border .3s ease;
    border-radius: 8px;
    border: 1px solid #eee;
    background: #fff;
}

/* (В оригинале тут есть опечатка "input [type=email]" — НЕ включаю её намеренно) */
.form_content form input[type=email]::-webkit-input-placeholder,
.form_content form input[type=tel]::-webkit-input-placeholder,
.form_content form input[type=text]::-webkit-input-placeholder {
    color: #fff !important;
}
.form_content form input[type=email]::-moz-placeholder,
.form_content form input[type=tel]::-moz-placeholder,
.form_content form input[type=text]::-moz-placeholder {
    color: #fff !important;
}
.form_content form input[type=email]:-ms-input-placeholder,
.form_content form input[type=tel]:-ms-input-placeholder,
.form_content form input[type=text]:-ms-input-placeholder {
    color: #fff !important;
}
.form_content form input[type=email]::-ms-input-placeholder,
.form_content form input[type=tel]::-ms-input-placeholder,
.form_content form input[type=text]::-ms-input-placeholder {
    color: #fff !important;
}
.form_content form input[type=email]::placeholder,
.form_content form input[type=tel]::placeholder,
.form_content form input[type=text]::placeholder {
    color: #fff !important;
}

.form_content form input[type=checkbox] { accent-color: red; }

.form_content form .checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 21% !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form_content-bottom form .checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 80% !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form_content form .checkbox a {
    color: #fff;
    text-align: left;
    font-size: 12px;
    margin-left: 10px;
    line-height: 12px;
}

.form_content form .iti { max-width: 310px !important; }
.form_content form .iti--separate-dial-code .iti__selected-dial-code { color: #fff !important; }

.form_content form button {
    background: #fff !important;
    color: #e70000 !important;
}

/* =========================================================
   first__v3 (desktop hero) — used directly in your markup
   ========================================================= */
.first__v3 {
    position: relative;
    background-image: url("../img/first__v3/1.png");
    background-position: 50% 50%;
    background-size: cover;
    padding-bottom: 30px;
}

.first__v3-top {
    padding-top: 150px;
    position: relative;
    min-height: 700px;
    text-align: left;
}

.first__v3-top p {
    font-size: 40px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    line-height: normal;
    margin-bottom: 20px;
}

.container_v3 {
    max-width: 1440px !important;
}

.first__v3-top .girl {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-45%);
    width: 32%;
}

.first__v3-top h2 {
    font-size: 70px;
    color: #fff;
    font-weight: 500;
    margin: 0;
    line-height: 100%;
    margin: 40px 0!important;
}

.first__v3-form {
    position: relative;
}

.first__v3-form p {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    position: absolute;
    top: -50px;
    left: 0;
}

.first__v3-form .form_content {
    background: rgba(255, 255, 255, 0.30) !important;
    backdrop-filter: blur(3px);
}

.first__v3-top_sbttl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 40px;
}

.first__v3-top_sbttl h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    line-height: 112%;
    margin: 0;
    margin-left: 10px!important;
}

.first__v3-top_sbttl ul {
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 999;
    height: fit-content;
}

.first__v3-top_sbttl ul li {
    list-style: none;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-right: 17px;
}

.first__v3-top_sbttl img {
    max-width: 140px;
}

/* =========================================================
   first__v2 (mobile hero) — used directly in your markup
   ========================================================= */
.first__v2 {
    width: 100%;
    display: none;
    position: relative;
    background: linear-gradient(250deg, #750117 1.45%, #e70000 98.55%);
    min-height: 90vh;
}

.decor {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: fit-content;
    height: 100%;
}

.first__v2-content { width: 38%; }

.first__v2_peoples {
    position: absolute;
    bottom: 0;
    right: 0;
    width: auto;
    object-fit: cover;
    height: 100%;
}

.first__v2__text {
    position: relative;
    z-index: 99;
    padding-top: 120px;
}

.first__v2__text ul {
    padding-left: 0;
    margin: 0;
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 20px 0;
}

.first__v2__text ul li {
    border-radius: 20px;
    border: 1px solid #fff;
    padding: 5px 10px;
    list-style: none;
    font-size: 16px;
    color: #fff;
    margin-right: 18px;
    position: relative;
}

.first__v2__text ul li img {
    position: relative;
    top: 4px;
}

.first__v2__text h2 {
    font-size: 50px;
    color: #fff;
    margin: 0;
    line-height: normal;
    font-weight: 600;
}

.first__v2__text p {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
}

.first__v2-form {
    width: 100%;
    background: none;
    padding: 0;
    border: none;
}

.first__v2-form input {
    border: 1px solid #fff;
    background: rgba(255, 255, 255, .3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.first__v2-form button {
    -webkit-box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 3px 12px 0 rgba(0, 0, 0, .2);
    border-radius: 20px !important;
    background: #E70000 !important;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    color: #fff !important;
    font-weight: 600;
}

/* ===== Responsive container widths (used by layout) ===== */
@media only screen and (min-width: 1550px) {
    .container { max-width: 1280px; }
}

@media only screen and (max-width: 1300px) {
    .container { max-width: 1223px; }
}

@media only screen and (max-width: 1200px) {
    .container { max-width: 1024px; }
}

@media only screen and (max-width: 992px) {
    .container { max-width: 960px; }
}

@media only screen and (max-width: 820px) {
    .container { max-width: 790px; }
}

@media only screen and (max-width: 768px) {
    .container { max-width: 740px; }
}

@media only screen and (max-width: 600px) {
    .container { max-width: 540px; }
}

@media only screen and (max-width: 480px) {
    .container { max-width: 440px; }
}

@media only screen and (max-width: 440px) {
    .container { max-width: 400px; }
}

@media only screen and (max-width: 414px) {
    .container { max-width: 375px; }
}

@media only screen and (max-width: 390px) {
    .container { max-width: 350px; }
}

@media only screen and (max-width: 375px) {
    .container { max-width: 345px; }
}

@media only screen and (max-width: 360px) {
    .container { max-width: 340px; }
}

/* ===== first__v3 breakpoints (as in original) ===== */
@media only screen and (min-width: 1600px) {
    .container_v3 { max-width: 1600px !important; }
    .first__v3-top { padding-top: 170px; min-height: 800px; }
    .first__v3-top h2 { font-size: 96px; margin: 60px 0; }
    .first__v3-top .girl { width: 30%; }
}

@media only screen and (max-width: 1440px) {
    .container_v3 { max-width: 1350px !important; }
    .first__v3-top h2 { font-size: 68px; }
}

@media only screen and (max-width: 1300px) {
    .container_v3 { max-width: 1280px !important; }
    .first__v3-top h2 { font-size: 68px; }
}

@media only screen and (max-width: 1200px) {
    .container_v3 { max-width: 1180px !important; }
}

/* ===== switch desktop hero off at <=992 (as in original) ===== */
@media only screen and (max-width: 992px) {

    .first__v2_peoples {
        display: none;
    }
    .first__v3 { display: none; }
    .first__v2 {
        display: block;
        overflow: hidden;
    }

    .first__v2-content { width: 100%; }
    .first__v2__text { text-align: center; }
    .first__v2__text ul { margin: 20px auto; }
    .first__v2__text ul li { margin-right: 0; }
    .first__content-form form { align-items: center; } /* affects your markup via class usage */
}

/* ===== mobile tweaks that are used inside your markup ===== */
@media only screen and (max-width: 600px) {
    .form_content-bottom form .checkbox  a {
        font-size: 9px;
    }
    .decor { width: 183%; }

    .girl-mob {
        position: relative;
        min-height: 270px;
    }

    .girl-mob img {
        position: absolute;
        right: -15px;
        bottom: 0px;
    }

    .present {
        position: absolute;
        top: 38px;
        left: 0;
        z-index: 10;
        max-width: 150px;
    }

    .first__v2__text { padding-top: 20px; }

    .first__v2__text p {
        font-size: 20px;
        font-weight: 400;
        line-height: 120%;
        margin: 0;
        text-align: left;
    }

    .line {
        display: block;
        height: 1px;
        width: 100%;
        background: #fff;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .first__v2-form form input {
        border: 1px solid #FFF !important;
        background: rgba(255, 255, 255, 0.30) !important;
        backdrop-filter: blur(3px);
        border-radius: 20px !important;
    }

    .first__v2-form .iti {
        margin: 5px 0;
    }

    .first__content-form form input {
        margin: 5px 0;
    }

    .first__v2__text .logo { max-width: 124px; }

    .first__v2-form .first__content-form-content {
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.30);
        backdrop-filter: blur(3px);
        padding: 10px 15px 15px;
    }

    .first__v2-form .iti { margin: 5px 0; }

    .first__v2-content {
        padding-bottom: 20px;
    }

    .first__content-form-content p {
        margin: 0;
        color: #fff;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
    }
    

    .first__v3-top_sbttl h3 {
        text-align: left;
        font-size: 22px;
        color: #fff;
        font-weight: 400;
        line-height: 112%;
        margin: 0;
        margin-left: 0px !important;
    }

    .first__v2__text h2 {
        font-size: 32px;
        margin: 20px 0!important;
        text-align: left;
        line-height: 100%;
        font-weight: 500;
    }

    .first__v2__text ul {
        flex-direction: column;
        justify-content: flex-start;
        width: 100%;
        align-items: flex-start;
        margin: 0;
    }

    .first__v2__text ul li {
        font-size: 14px;
        display: flex;
        align-items: center;
        border: none;
        padding: 0;
        margin-right: 0;
    }

    .first__v2__text ul li img {
        top: 0;
        max-width: 15px;
        margin-right: 10px;
    }

    .first__v2-content { width: 100%; }

    /* form_content checkbox on mobile */
    .form_content form .checkbox {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .form_content form .checkbox a br { display: none; }
}

/* ===== header (used by your mobileHeader markup) ===== */
.header {
    position: absolute;
    min-height: 100px;
    top: 0;
    right: 0;
    left: 0;
    padding: 32px 0;
    z-index: 99;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__content-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__content-logo a img {
    max-width: 200px;
}

.header__content-menu ul {
    padding-left: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__content-menu ul li {
    margin-right: 10px;
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 5px 10px;
}

.header__content-menu ul li img {
    margin-right: 10px;
}

/* ===== mobileHeader fixed state (exists in your CSS) ===== */
#mobileHeader.fixed {
    position: fixed;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
}

/* ===== header responsiveness from your CSS ===== */
@media only screen and (min-width: 1600px) {
    .header__content-logo a img {
        max-width: 300px;
    }

    .header__content-menu ul li {
        font-size: 24px;
    }
}

@media only screen and (max-width: 992px) {
    .header {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    .header {
        min-height: 79px;
        padding: 0;
    }
}