@import "_fonts.css";
@import "_header.css";

html {
    font-size: calc(100vw / 192);
    font-family: 'HarmonyOS Sans';
    font-display: swap;


    /*Colors*/
    --red : #A6192E;

    /*CarsColor*/
    --green : #889D9D;
    --lightgrey : #DDDDDD;
    --purple : #694C73;
    --midgrey : #999999;
    --cyan : #2E5CAA;
    --black : #000000;
    --white : #FFFFFF;
    --grey : #8F8383;
   --car-red :  #C02929;
   --blue :  #70B4DE;

}

@media (min-width: 361px) and (max-width: 767px) {
    html {
        font-size: 10px;
    }
}

@media (max-width: 360px) {
    html {
        font-size: 8px;
    }
}
html * {
    box-sizing: border-box;
    outline: transparent;
}

div,
span,
p {
    display: block;
}

body {
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 1.6rem;
}
@media(max-width: 767px){
    html,body {
        overflow-x: hidden;
    }
}
img {
    display: block;
    width: 100%;
    height: 100%;
}
a {
    color: #000;
    text-decoration: none;
}
.container {
    display: block;
    width: 129.6rem;
    margin: 0 auto;
    height: inherit;
}
@media(max-width: 767px){
    .container {
        width: unset;
    }
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.btn--svg {
    grid-gap: 1rem;
}
.btn--svg svg{
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}
.btn--white {
    background: #fff;
    color: #000;
}
.btn--bordered{
    border: 1px solid #000;
}
.btn--black {
    background-color: #000;
    color: #fff;
}
.btn--red {
    background-color: var(--red);
    color: #fff;
}
.btn__label {
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 500;
    cursor: pointer;
}
.hidden{
    display: none;
}
.overfill {
    display: none;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(0,0,0,.66);
}
.popup__inner{
    display: none;
}
.popup{
    display: flex;
    flex-direction: row;
    width: 107.6rem;
    height: 43.5rem;
    position: fixed;
    z-index: 10;
    top: calc(50% - 21.75rem);
    left: calc(50% - 53.8rem);
    background-color: #fff;
}
.popup__l {

}
.popup__l img{
    width: 58rem;
    height: 100%;
    object-fit: contain;
}
.popup__r,
.popup__success{
    display: flex;
    flex-direction: column;
    padding: 6rem;
}
.popup__success{
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.popup__success-inner {
    display: none;
    width: 100%;
    height: 100%;
}
.popup__title {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 2.64rem;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 1.4rem;
    text-align: center;
}
.popup__subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.92rem;
    margin-bottom: 2.4rem;
    text-align: center;

}
.popup__input {
    margin-bottom: 1.4rem;
}
.popup__input input {
    height: 5.2rem;
    width: 100%;
    padding: 1.85rem 2rem;
    border: 1px solid #000;
    color: #000;
    font-size: 1.4rem;
    background-color: transparent;
}
.popup__btn {
    margin-bottom: 1.4rem;
}
.popup__btn .btn {
    width: 37.6rem;
    height: 5.2rem;
    grid-gap: 1rem;
}

.popup__btn .btn:not(.popup__success-btn .btn) {
    border: none;
}
.popup__btn .btn:hover {
    background-color: var(--red);
}
.popup__btn .btn svg{
    width: 1rem;
    height: 1rem;
}
.popup__success-btn .btn{
    width: 15.6rem;
}
.popup__success-btn .btn:hover {
    color: #fff;
    border: none;
}
.popup__success-btn .btn:hover svg path{
    stroke: #fff;
}
.popup__sogl {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.popup__sogl input {
    margin-right: .6rem;

}
.popup__sogl label {
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.32rem;
}
.popup__close {
    position: absolute;
    z-index: 1;
    top: .5rem;
    right: 1rem;
    cursor: pointer;
}
.popup__close span{
    font-size: 3.6rem;
    line-height: 3.6rem;
}
@media(max-width: 767px){
    .popup {
        width: 35.5rem;
        height: 53.5rem;
        top: calc(50% - 26.75rem + 4rem);
        left: calc(50% - 17.75rem);
        flex-direction: column;
    }
    .popup__l img {
        height: 18rem;
        width: 100%;
        object-fit: cover;
        object-position: 0 10%;
    }
    .popup__close span {
        color: #fff;
    }
    .popup__r {
        padding: 1.5rem;
    }
    .popup__title br {
        display: none;
    }
    .popup__btn .btn {
        width: 100%;
    }
    .popup  .checkbox__inner input[type=checkbox] {
        border: 2px solid #000;
    }
    .popup__close {
        top: -4rem;
    }
}


.checkbox__inner {
 position: relative;
}
.checkbox__inner input[type=checkbox] {
    position: relative;
    border: 2px solid #fff;
    border-radius: .5rem;
    background: none;
    cursor: pointer;
    line-height: 0;
    margin: 0 .6rem 0 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 1.75rem;
    width: 1.75rem;
    -webkit-appearance: none;
    opacity: .5;
}

.checkbox__inner input[type=checkbox]:hover {
    opacity: 1;
}

.checkbox__inner input[type=checkbox]:checked {
    background-color: #000;
    opacity: 1;
    border-color: #fff;
}

.checkbox__inner input[type=checkbox]:checked::before {
    content: '';
    position: absolute;
    right: 50%;
    top: 50%;
    width: 3px;
    height: 8px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}
.checkbox__inner input[type=checkbox].error{
    border: solid red;
}
.mobile-menu__inner{
    display: none;
}
@media(max-width: 767px){
    .mobile-menu {
        position: fixed;
        top: 5.6rem;
        background: #000;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 5.6rem);
        z-index: 1001;
        padding: 4rem 1.5rem;
    }
    .mobile-menu__title {
        font-size: 2.2rem;
        font-weight: 700;
        line-height: 2.42rem;
        color: #FFFFFF;
        margin-bottom: 1.4rem;

    }
    .mobile-menu__item {
        display: flex;
        flex-direction: row;
        align-items: center;
        grid-gap: 1rem;
        margin-bottom: 1.4rem;
    }
    .mobile-menu__item:last-child {
        margin-bottom: 0;
    }
    .mobile-menu__item svg {
        width: 1.4rem;
        height: 1.67rem;
        object-fit: contain;
    }
    .mobile-menu__item span {
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.98rem;
        color: #FFFFFF99;
    }
    .mobile-menu__btn .btn {
        width: 34.5rem;
        height: 5.2rem;
        margin-top: 2.4rem;
    }
}


canvas#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 101;
}



.form-page{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 100vh;
    max-height: 100vh;
}
.form-page__image{
    width: 66.666%;
    height: 100%;
}
.form-page__image picture{
    display: block;
    width: 100%;
    height: 100%;
}
.form-page__image picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-page__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 33.333%;
    background-color: #efefef;
    padding: 12rem 6rem;
}
.form-page__title {
    display: inline-flex;
    flex-direction: row;
    grid-gap: 1rem;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 4rem;
    margin-bottom: 1rem;

}
.form-page__title span {
    display: inline-block;
    color: var(--red);  
}
.form-page__subtitle {
    font-size: 2rem;
    margin-bottom: 4rem;
}
.form-page__text {
    font-size: 2.4rem; 
    line-height: 2.4rem;
    margin-bottom: 4rem;
}
.form-page__input {
    margin-bottom: 2rem;
}
.form-page__input input{
    height: 5.2rem;
    width: 100%;
    padding: 1.85rem 2rem;
    border: 1px solid #000000;
    color: #00000066;
    background-color: transparent;
    font-size: 2.4rem;
    font-weight: 500;
}
.form-page__btn {
    width: 100%;
    height: 5.2rem;
    border: none;
    margin-bottom: 2rem;
}
.form-page__btn:hover {
    color: #fff;
    background-color: var(--red);
}
.form-page__btn:hover svg path {
    stroke: #fff;
}
.form-page__sogl {
    
    
}
.form-page__sogl a{
    color: var(--red);
}
.form-page__sogl .checkbox__inner {
    display: inline-block;
}
.form-page__sogl .checkbox__inner input[type=checkbox]{
    border-color: var(--red);
}
.form-page__sogl .checkbox__inner input[type=checkbox]:checked{
    border-color: var(--black);
}
.form-page__sogl p{
    margin: 0;
}
.form__error {
    color: red;
    margin: 0 0 2rem;
}

@media(min-width: 768px) and (max-width: 1280px) {
    .form-page {
        flex-direction: column;
        background-color: #efefef;
        height: auto;
        max-height: unset;
    }
    .form-page__image {
        width: 100%;
        height: 100%;
    }
    .form-page__content {
        width: 100%;
        height: auto;
        padding: 8rem 4rem;
        justify-content: unset;
    }
    .form-page__title {
        font-size: 12.6rem;
        font-weight: 900;
        line-height: 12.6rem;
        margin-bottom: 4rem;
    }
    .form-page__subtitle {
        font-size: 4.4rem;
        line-height: 4.4rem;
    }
    .form-page__text {
        font-size: 6.4rem;
        line-height: 6.4rem;
        margin-bottom: 8rem;
    }
    .form-page__input {
        margin-bottom: 4rem;
    }
    .form-page__input input {
        height: 15rem;
        padding: 4rem;
        font-size: 4.4rem;
    }
    .form-page__btn {
        height: 15rem;
        margin-bottom: 8rem;
    }
    .form-page__btn .btn__label {
        font-size: 4.4rem;
    }
    .form-page__btn.btn--svg svg {
        width: 4rem;
        height: 4rem;
    }
    .form-page__sogl {
        font-size: 4.4rem;
    }
    .form__error {
        font-size: 4.4rem;
    }
    .checkbox__inner input[type=checkbox] {
        height: 5.75rem;
        width: 5.75rem;
    }
}
@media(max-width: 767px){
    .form-page {
        flex-direction: column;
        background-color: #efefef;
    }
    .form-page__image {
        width: 100%;
        height: 100%;
    }
    .form-page__content {
        width: 100%;
        height: auto;
        padding: 2rem;
        justify-content: unset;
    }
    .form-page__title {
        font-size: 3rem;
        line-height: 3rem;
    }
    .form-page__subtitle {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    .form-page__text {
        font-size: 1.6rem;
        line-height: 1.6rem;
        margin-bottom: 2rem;
    }
    .form-page__sogl {
        font-size: 1.1rem;
    }
}


.mobile-menu__list {
    display: flex;
    flex-direction: column;
    grid-gap: 1.4rem;
    margin-bottom: 4rem;
}
.mobile-menu__link {
    color:#fff;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2rem;
}


.info-widget {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    border-radius: 1rem 1rem 0 0;
    background-color: #000;
    z-index: 10000000001;
    box-shadow: 3px 5px 15px rgba(0, 0, 0, 0.66);
    height: 7.6rem;
    overflow: hidden;
}
.info-widget__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.info-widget__content p{
    font-size: 1.6rem;
    line-height: 1.6rem;
    color: #fff;
    margin: 0 0 1rem;
}
.info-widget__content a{
   font-size: 2rem;
   font-weight: 600;
   line-height: 2rem;
   color: #fff; 
}
@media(max-width: 767px){
    .info-widget{
        display: none;
        bottom: env(safe-area-inset-bottom, 0);
    }
}

.footer{
    background-color: #000;
    padding: 2rem 0;
}
@media(max-width: 767px){
    .footer {
        padding: 2rem 1.5rem;
    }
    .conditions .container{
        width: 100%;
    }
}
.footer__row{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.footer__link{
    color: #fff;
    text-transform: uppercase;
}
.footer__text{
    color: #fff;
}







.podbor__filter {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
    justify-content: space-between;
    grid-gap: 2rem;
    margin-bottom: 2rem;
}
.form__input-dropdown {
  width: 100%;
  position: relative;
  cursor: pointer;
  max-width: 100%;
}
@media (max-width: 767px) {
  .form__input-dropdown {
    max-width: 100%;
  }
}

.form__input-single {
  width: 100%;
  position: relative;
  cursor: pointer;
}

.form__input-single input {
  width: 100%;
  border: 1px solid #000;
  outline: none;
  font-size: 15px;
  line-height: 1.2;
  color: #88979e;
  padding: 15px 15px 15px 20px;
  border-radius: 12px;
  cursor: pointer;
}

.form__input-dropdown input {
  width: 100%;
  border: 1px solid #000;
  outline: none;
  font-size: 1.4rem;
  line-height: 110%;
  color: #000;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  cursor: pointer;
  background-color: #fff;
  text-transform: uppercase;
}

.form__input-dropdown input::-moz-placeholder {
  color: #000;
}

.form__input-dropdown input::placeholder {
  color: #000;
}

.form__input-dropdown::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.form__input-dropdown-items {
  position: absolute;
  top: 5.2rem;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  margin: 0;
  list-style-type: none;
  font-size: 1.6rem;
  line-height: 110%;
  color: #000;
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  overflow-y: scroll;
  z-index: 40;
  box-shadow: 1px 3px 5px rgba(0, 0, 0, .05);
  border: 1px solid #000;
}

.form__input-dropdown-items li:not(:first-child) {
  padding-top: 1.5rem;
}

.form__input-dropdown-items::-webkit-scrollbar {
  width: 2rem;
  height: 0;
}

.form__input-dropdown-items::-webkit-scrollbar-thumb {
  height: 1em;
  border: 0.5rem solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
  -webkit-border-radius: 1rem;
  background-color: #000;
  -webkit-box-shadow: inset 0 0 0 1px rgba(213, 20, 20, 0.025);
}

.form__input-dropdown-items::-webkit-scrollbar-button {
  width: 0;
  height: 0;
  display: none;
}

.form__input-dropdown-items::-webkit-scrollbar-corner {
  background-color: transparent;
}

.form__input-dropdown-items li {
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 110%;
  text-transform: uppercase;
}
.form__input-dropdown-items li:hover {
    text-decoration: underline;
}
.none {
    display: none;
}

.filter-reset button{
    width: 100%;
    height: 5.2rem;
}

@media(max-width: 767px){
    .podbor__filter {
        grid-template-columns: repeat(1,1fr);
    }
}

.footer__link,
.footer__text p {
    font-size: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1280px){
    .footer {
        padding: 10rem 0;
    }
    .footer__link,
    .footer__text p {
        font-size: 4.4rem;
    } 
}
