@charset "UTF-8";
* {
    padding: 0;
    margin: 0;
    border: 0
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

aside, footer, header, nav, section {
    display: block
}

html {
    font-size: 16px
}

body, html {
    height: 100%;
    min-width: 320px
}

body {
    line-height: 1;
    font-family: Montserrat;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

button, input, textarea {
    font-family: Montserrat;
    font-size: inherit
}

input::-ms-clear {
    display: none
}

button {
    cursor: pointer;
    background-color: inherit
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

a {
    text-decoration: none;
    color: inherit
}

a:visited {
    text-decoration: none
}

a:hover {
    text-decoration: none
}

ul li {
    list-style: none
}

img {
    vertical-align: top
}

h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit
}

body {
    color: #000
}

body._lock {
    overflow: hidden
}

.wrapper {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

._container {
    max-width: 1370px;
    margin: 0 auto;
    padding: 0 15px
}

.button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 0 0
}

.button._fw {
    width: 100%
}

.select {
    position: relative;
    max-width: 230px
}

.select__item {
    position: relative
}

.select__title {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #9e9e9e;
    background-color: #fff;
    cursor: pointer;
    border-radius: 4px
}

.select__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    background: #fff;
    -webkit-box-shadow: 0 0 5px 2px rgba(91, 91, 91, .25);
    box-shadow: 0 0 5px 2px rgba(91, 91, 91, .25);
    border-radius: 10px;
    height: 40px;
    padding: 0 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.select__value span {
    height: 1em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical
}

.select__value:before {
    content: "";
    display: inline-block;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    width: 11px;
    height: 7px;
    background: url(../img/icons/select.svg) center/100% no-repeat
}

.select__input {
    width: 100%;
    background-color: transparent;
    height: 100%
}

.select__options {
    color: #000;
    position: absolute;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #9e9e9e;
    top: 29px;
    border-radius: 0 0 4px 4px;
    min-width: 100%;
    left: 0;
    background-color: #fff;
    border-top: 0;
    border: 1px solid #d9d9d9;
    border-top: 0;
    font-size: 14px;
    padding: 10px 0 5px 0
}

.select__option {
    cursor: pointer;
    padding: 5px 15px;
    margin: 0
}

.select._active {
    z-index: 5
}

.select._active .select__value:before {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.select._active .select__options {
    display: block
}

input[type=email], input[type=tel], input[type=text], textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

input[type=email]:focus, input[type=tel]:focus, input[type=text]:focus, textarea:focus {
    outline: 0
}

.input {
    border-radius: 0 !important;
    width: 100%;
    display: block;
    padding: 0 20px;
    background: #e5e5e5;
    border-radius: 5px;
    height: 40px
}

textarea.input {
    resize: none;
    padding: 0 0
}

.checkbox {
    position: relative
}

.checkbox__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden
}

.checkbox__input:checked + .checkbox__text:before {
    background: #76587d;
    border-radius: 5px
}

.checkbox__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #000;
    letter-spacing: -.3px;
    line-height: calc(20 / 16);
    cursor: pointer;
    padding-left: 25px
}

.checkbox__text:before {
    content: "";
    position: absolute;
    margin: 0 14px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15px;
    flex: 0 0 15px;
    left: 0;
    top: 45%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background: #e5e5e5;
    border-radius: 5px
}

.checkbox a {
    color: #fff;
    text-decoration: underline
}

.checkbox._error .checkbox__text:before {
    border: 1px solid #ee1212
}

.options {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.options__item {
    position: relative;
    cursor: pointer
}

.options__input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    left: 0;
    top: 0;
    visibility: hidden
}

.options__input:checked + .options__text:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.options__text {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    font-size: 16px;
    color: #fff;
    letter-spacing: -.3px;
    line-height: calc(20 / 16)
}

.options__text:before {
    content: "";
    -ms-flex-item-align: start;
    align-self: flex-start;
    margin: 0 14px 0 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20px;
    flex: 0 0 20px;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 20px;
    height: 18px;
    background: #fff;
    border: 1px solid #a7a9ac
}

.options__text:after {
    content: "";
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #77243a;
    position: absolute;
    left: 5px;
    top: 4px
}

.rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    font-size: 40px;
    line-height: .75;
    -webkit-transition: opacity .3s ease 0s;
    -o-transition: opacity .3s ease 0s;
    transition: opacity .3s ease 0s
}

.rating.rating_sending {
    opacity: .2
}

.rating.rating_set .rating__active, .rating.rating_set .rating__item {
    cursor: pointer
}

.rating__body {
    position: relative
}

.rating__body::before {
    content: "★★★★★";
    display: block
}

.rating__active {
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden
}

.rating__active::before {
    content: "★★★★★";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #ffd300
}

.rating__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.rating__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    height: 100%;
    opacity: 0
}

.rating__value {
    font-size: 50%;
    line-height: 1;
    padding: 0 0 0 10px
}

.quantity {
    width: 88px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgba(166, 166, 166, .45)
}

.quantity__button {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30px;
    flex: 0 0 30px;
    position: relative;
    cursor: pointer
}

.quantity__button::after, .quantity__button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    margin: 0 0 0 -4.5px;
    background-color: #a6a6a6;
    width: 9px;
    height: 1px
}

.quantity__button_plus::before {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.quantity__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

.quantity__input input {
    height: 100%;
    color: #a6a6a6;
    font-size: 12px;
    width: 100%;
    text-align: center
}

._title {
    font-weight: 700;
    font-size: 30px;
    line-height: 123.3333333333%;
    text-align: center
}

.breadcrumbs {
    padding: 30px 0 40px
}

.breadcrumbs__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.breadcrumbs__link {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #000;
    text-transform: uppercase;
    margin-right: 5px;
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.breadcrumbs__link::after {
    content: "";
    width: 5px;
    height: 10px;
    background: url(../img/arrow-breadcrumbs.svg) center/cover no-repeat;
    display: block;
    margin-left: 5px;
    margin-right: 10px
}

.breadcrumbs__icon {
    margin-right: 20px
}

.breadcrumbs__item {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #9e9e9e;
    text-transform: uppercase
}

.row:after {
    display: block;
    content: "";
    clear: both
}

.rub:after {
    content: "₽"
}

ol.counter {
    list-style-type: none;
    counter-reset: item
}

ol.counter li {
    position: relative;
    padding: 0 0 0 45px
}

ol.counter li:before {
    counter-increment: item;
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    color: #818181;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 26px;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    border: 1px solid #4274bb
}

.ellipsis {
    display: block;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.es {
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.table {
    display: table;
    font-size: 0;
    width: 100%
}

.trow {
    display: table-row
}

.cell {
    display: table-cell
}

.cell.full {
    width: 100%
}

._ibg {
    position: relative
}

._ibg img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover
}

body.ie ._ibg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

body.ie ._ibg img {
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden
}

._video {
    position: relative;
    overflow: hidden;
    height: 0;
    padding-bottom: 56.25%
}

._video embed, ._video iframe, ._video object, ._video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.videobg embed, .videobg iframe, .videobg object, .videobg video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover
}

._more-content {
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    overflow: hidden
}

._more-link {
    cursor: pointer
}

._more-link span {
    font-style: normal
}

._more-link span:first-child {
    display: block
}

._more-link span:last-child {
    display: none
}

._more-link._active span {
    font-style: normal
}

._more-link._active span:first-child {
    display: none
}

._more-link._active span:last-child {
    display: block
}

#map {
    background: url(../img/icons/loading.gif) center/50px no-repeat
}

._swiper {
    overflow: hidden
}

._swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

._swiper.swiper-container-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

._swiper.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swiper-container-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.swiper-container-android .swiper-slide, .swiper-container-android .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
    display: none !important
}

._tabs-block {
    display: none
}

._tabs-block._active {
    display: block
}

.mirror {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.nicescroll-rails {
    z-index: 1000 !important
}

._custom-scroll {
    position: fixed;
    right: 0;
    top: 0;
    width: 3px;
    height: 100%;
    z-index: 1000
}

._custom-scroll__line {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 3px 0 0 3px;
    position: relative;
    left: 0;
    top: 0;
    width: 100%
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
    color: #dedede
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none
}

.datepicker--cells {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.datepicker--cell {
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    position: relative;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 32px;
    z-index: 1
}

.datepicker--cell.-focus- {
    background: #f0f0f0
}

.datepicker--cell.-current- {
    color: #4eb5e6
}

.datepicker--cell.-current-.-focus- {
    color: #4a4a4a
}

.datepicker--cell.-current-.-in-range- {
    color: #4eb5e6
}

.datepicker--cell.-in-range- {
    background: rgba(92, 196, 239, .1);
    color: #4a4a4a;
    border-radius: 0
}

.datepicker--cell.-in-range-.-focus- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell.-disabled- {
    cursor: default;
    color: #aeaeae
}

.datepicker--cell.-disabled-.-focus- {
    color: #aeaeae
}

.datepicker--cell.-disabled-.-in-range- {
    color: #a1a1a1
}

.datepicker--cell.-disabled-.-current-.-focus- {
    color: #aeaeae
}

.datepicker--cell.-range-from- {
    border: 1px solid rgba(92, 196, 239, .5);
    background-color: rgba(92, 196, 239, .1);
    border-radius: 4px 0 0 4px
}

.datepicker--cell.-range-to- {
    border: 1px solid rgba(92, 196, 239, .5);
    background-color: rgba(92, 196, 239, .1);
    border-radius: 0 4px 4px 0
}

.datepicker--cell.-range-from-.-range-to- {
    border-radius: 4px
}

.datepicker--cell.-selected- {
    color: #fff;
    border: none;
    background: #5cc4ef
}

.datepicker--cell.-selected-.-current- {
    color: #fff;
    background: #5cc4ef
}

.datepicker--cell.-selected-.-focus- {
    background: #45bced
}

.datepicker--cell:empty {
    cursor: default
}

.datepicker--days-names {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 8px 0 3px
}

.datepicker--day-name {
    color: #ff9a19;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    text-align: center;
    text-transform: uppercase;
    font-size: .8em
}

.datepicker--cell-day {
    width: 14.28571%
}

.datepicker--cells-months {
    height: 170px
}

.datepicker--cell-month {
    width: 33.33%;
    height: 25%
}

.datepicker--years {
    height: 170px
}

.datepicker--cells-years {
    height: 170px
}

.datepicker--cell-year {
    width: 25%;
    height: 33.33%
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
    color: #dedede
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none
}

.datepickers-container {
    position: absolute;
    left: 0;
    top: 0
}

.datepicker {
    background: #fff;
    border: 1px solid #dbdbdb;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    font-family: Tahoma, sans-serif;
    font-size: 14px;
    color: #4a4a4a;
    width: 250px;
    position: absolute;
    left: -100000px;
    opacity: 0;
    transition: opacity .3s ease, left 0s .3s, -webkit-transform .3s ease;
    -webkit-transition: opacity .3s ease, left 0s .3s, -webkit-transform .3s ease;
    -o-transition: opacity .3s ease, transform .3s ease, left 0s .3s;
    transition: opacity .3s ease, transform .3s ease, left 0s .3s;
    transition: opacity .3s ease, transform .3s ease, left 0s .3s, -webkit-transform .3s ease;
    z-index: 100
}

.datepicker.-from-top- {
    -webkit-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px)
}

.datepicker.-from-right- {
    -webkit-transform: translateX(8px);
    -ms-transform: translateX(8px);
    transform: translateX(8px)
}

.datepicker.-from-bottom- {
    -webkit-transform: translateY(8px);
    -ms-transform: translateY(8px);
    transform: translateY(8px)
}

.datepicker.-from-left- {
    -webkit-transform: translateX(-8px);
    -ms-transform: translateX(-8px);
    transform: translateX(-8px)
}

.datepicker.active {
    opacity: 1;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    transition: opacity .3s ease, left 0s 0s, -webkit-transform .3s ease;
    -webkit-transition: opacity .3s ease, left 0s 0s, -webkit-transform .3s ease;
    -o-transition: opacity .3s ease, transform .3s ease, left 0s 0s;
    transition: opacity .3s ease, transform .3s ease, left 0s 0s;
    transition: opacity .3s ease, transform .3s ease, left 0s 0s, -webkit-transform .3s ease
}

.datepicker-inline .datepicker {
    border-color: #d7d7d7;
    -webkit-box-shadow: none;
    box-shadow: none;
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none
}

.datepicker-inline .datepicker--pointer {
    display: none
}

.datepicker--content {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    padding: 4px
}

.-only-timepicker- .datepicker--content {
    display: none
}

.datepicker--pointer {
    position: absolute;
    background: #fff;
    border-top: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    width: 10px;
    height: 10px;
    z-index: -1
}

.-top-center- .datepicker--pointer, .-top-left- .datepicker--pointer, .-top-right- .datepicker--pointer {
    top: calc(100% - 4px);
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg)
}

.-right-bottom- .datepicker--pointer, .-right-center- .datepicker--pointer, .-right-top- .datepicker--pointer {
    right: calc(100% - 4px);
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg)
}

.-bottom-center- .datepicker--pointer, .-bottom-left- .datepicker--pointer, .-bottom-right- .datepicker--pointer {
    bottom: calc(100% - 4px);
    -webkit-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    transform: rotate(315deg)
}

.-left-bottom- .datepicker--pointer, .-left-center- .datepicker--pointer, .-left-top- .datepicker--pointer {
    left: calc(100% - 4px);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.-bottom-left- .datepicker--pointer, .-top-left- .datepicker--pointer {
    left: 10px
}

.-bottom-right- .datepicker--pointer, .-top-right- .datepicker--pointer {
    right: 10px
}

.-bottom-center- .datepicker--pointer, .-top-center- .datepicker--pointer {
    left: calc(50% - 10px / 2)
}

.-left-top- .datepicker--pointer, .-right-top- .datepicker--pointer {
    top: 10px
}

.-left-bottom- .datepicker--pointer, .-right-bottom- .datepicker--pointer {
    bottom: 10px
}

.-left-center- .datepicker--pointer, .-right-center- .datepicker--pointer {
    top: calc(50% - 10px / 2)
}

.datepicker--body {
    display: none
}

.datepicker--body.active {
    display: block
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
    color: #dedede
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none
}

.datepicker--nav {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    border-bottom: 1px solid #efefef;
    min-height: 32px;
    padding: 4px
}

.-only-timepicker- .datepicker--nav {
    display: none
}

.datepicker--nav-action, .datepicker--nav-title {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    cursor: pointer;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center
}

.datepicker--nav-action {
    width: 32px;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.datepicker--nav-action:hover {
    background: #f0f0f0
}

.datepicker--nav-action.-disabled- {
    visibility: hidden
}

.datepicker--nav-action svg {
    width: 32px;
    height: 32px
}

.datepicker--nav-action path {
    fill: none;
    stroke: #9c9c9c;
    stroke-width: 2px
}

.datepicker--nav-title {
    border-radius: 4px;
    padding: 0 8px
}

.datepicker--nav-title i {
    font-style: normal;
    color: #9c9c9c;
    margin-left: 5px
}

.datepicker--nav-title:hover {
    background: #f0f0f0
}

.datepicker--nav-title.-disabled- {
    cursor: default;
    background: 0 0
}

.datepicker--buttons {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 4px;
    border-top: 1px solid #efefef
}

.datepicker--button {
    color: #4eb5e6;
    cursor: pointer;
    border-radius: 4px;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    display: -ms-inline-flexbox;
    display: -webkit-inline-box;
    display: inline-flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    height: 32px
}

.datepicker--button:hover {
    color: #4a4a4a;
    background: #f0f0f0
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
    color: #dedede
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none
}

.datepicker--time {
    border-top: 1px solid #efefef;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 4px;
    position: relative
}

.datepicker--time.-am-pm- .datepicker--time-sliders {
    -ms-flex: 0 1 138px;
    -webkit-box-flex: 0;
    flex: 0 1 138px;
    max-width: 138px
}

.-only-timepicker- .datepicker--time {
    border-top: none
}

.datepicker--time-sliders {
    -ms-flex: 0 1 153px;
    -webkit-box-flex: 0;
    flex: 0 1 153px;
    margin-right: 10px;
    max-width: 153px
}

.datepicker--time-label {
    display: none;
    font-size: 12px
}

.datepicker--time-current {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    font-size: 14px;
    text-align: center;
    margin: 0 0 0 10px
}

.datepicker--time-current-colon {
    margin: 0 2px 3px;
    line-height: 1
}

.datepicker--time-current-hours, .datepicker--time-current-minutes {
    line-height: 1;
    font-size: 19px;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
    position: relative;
    z-index: 1
}

.datepicker--time-current-hours:after, .datepicker--time-current-minutes:after {
    content: "";
    background: #f0f0f0;
    border-radius: 4px;
    position: absolute;
    left: -2px;
    top: -3px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    opacity: 0
}

.datepicker--time-current-hours.-focus-:after, .datepicker--time-current-minutes.-focus-:after {
    opacity: 1
}

.datepicker--time-current-ampm {
    text-transform: uppercase;
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    color: #9c9c9c;
    margin-left: 6px;
    font-size: 11px;
    margin-bottom: 1px
}

.datepicker--time-row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: 11px;
    height: 17px;
    background: -webkit-gradient(linear, left top, right top, from(#dedede), to(#dedede)) left 50%/100% 1px no-repeat;
    background: -o-linear-gradient(left, #dedede, #dedede) left 50%/100% 1px no-repeat;
    background: linear-gradient(to right, #dedede, #dedede) left 50%/100% 1px no-repeat
}

.datepicker--time-row:first-child {
    margin-bottom: 4px
}

.datepicker--time-row input[type=range] {
    background: 0 0;
    cursor: pointer;
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    height: 100%;
    padding: 0;
    margin: 0;
    -webkit-appearance: none
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none
}

.datepicker--time-row input[type=range]::-ms-tooltip {
    display: none
}

.datepicker--time-row input[type=range]:hover::-webkit-slider-thumb {
    border-color: #b8b8b8
}

.datepicker--time-row input[type=range]:hover::-moz-range-thumb {
    border-color: #b8b8b8
}

.datepicker--time-row input[type=range]:hover::-ms-thumb {
    border-color: #b8b8b8
}

.datepicker--time-row input[type=range]:focus {
    outline: 0
}

.datepicker--time-row input[type=range]:focus::-webkit-slider-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef
}

.datepicker--time-row input[type=range]:focus::-moz-range-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef
}

.datepicker--time-row input[type=range]:focus::-ms-thumb {
    background: #5cc4ef;
    border-color: #5cc4ef
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    -webkit-transition: background .2s;
    transition: background .2s
}

.datepicker--time-row input[type=range]::-moz-range-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    -moz-transition: background .2s;
    transition: background .2s
}

.datepicker--time-row input[type=range]::-ms-thumb {
    box-sizing: border-box;
    height: 12px;
    width: 12px;
    border-radius: 3px;
    border: 1px solid #dedede;
    background: #fff;
    cursor: pointer;
    -ms-transition: background .2s;
    transition: background .2s
}

.datepicker--time-row input[type=range]::-webkit-slider-thumb {
    margin-top: -6px
}

.datepicker--time-row input[type=range]::-webkit-slider-runnable-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: transparent;
    background: 0 0
}

.datepicker--time-row input[type=range]::-moz-range-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: transparent;
    background: 0 0
}

.datepicker--time-row input[type=range]::-ms-track {
    border: none;
    height: 1px;
    cursor: pointer;
    color: transparent;
    background: 0 0
}

.datepicker--time-row input[type=range]::-ms-fill-lower {
    background: 0 0
}

.datepicker--time-row input[type=range]::-ms-fill-upper {
    background: 0 0
}

.datepicker--time-row span {
    padding: 0 12px
}

.datepicker--time-icon {
    color: #9c9c9c;
    border: 1px solid;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    margin: 0 5px -1px 0;
    width: 1em;
    height: 1em
}

.datepicker--time-icon:after, .datepicker--time-icon:before {
    content: "";
    background: currentColor;
    position: absolute
}

.datepicker--time-icon:after {
    height: .4em;
    width: 1px;
    left: calc(50% - 1px);
    top: calc(50% + 1px);
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%)
}

.datepicker--time-icon:before {
    width: .4em;
    height: 1px;
    top: calc(50% + 1px);
    left: calc(50% - 1px)
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade- {
    color: #dedede
}

.datepicker--cell-day.-other-month-:hover, .datepicker--cell-year.-other-decade-:hover {
    color: #c5c5c5
}

.-disabled-.-focus-.datepicker--cell-day.-other-month-, .-disabled-.-focus-.datepicker--cell-year.-other-decade- {
    color: #dedede
}

.-selected-.datepicker--cell-day.-other-month-, .-selected-.datepicker--cell-year.-other-decade- {
    color: #fff;
    background: #a2ddf6
}

.-selected-.-focus-.datepicker--cell-day.-other-month-, .-selected-.-focus-.datepicker--cell-year.-other-decade- {
    background: #8ad5f4
}

.-in-range-.datepicker--cell-day.-other-month-, .-in-range-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .1);
    color: #ccc
}

.-in-range-.-focus-.datepicker--cell-day.-other-month-, .-in-range-.-focus-.datepicker--cell-year.-other-decade- {
    background-color: rgba(92, 196, 239, .2)
}

.datepicker--cell-day.-other-month-:empty, .datepicker--cell-year.-other-decade-:empty {
    background: 0 0;
    border: none
}

/*! nouislider - 14.6.0 - 6/27/2020 */
.noUi-target, .noUi-target * {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -ms-touch-action: none;
    touch-action: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-target {
    position: relative
}

.noUi-base, .noUi-connects {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1
}

.noUi-connects {
    overflow: hidden;
    z-index: 0
}

.noUi-connect, .noUi-origin {
    will-change: transform;
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    -ms-transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform-style: preserve-3d;
    transform-origin: 0 0;
    -webkit-transform-style: flat;
    transform-style: flat
}

.noUi-connect {
    height: 100%;
    width: 100%
}

.noUi-origin {
    height: 10%;
    width: 10%
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
    left: 0;
    right: auto
}

.noUi-vertical .noUi-origin {
    width: 0
}

.noUi-horizontal .noUi-origin {
    height: 0
}

.noUi-handle {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute
}

.noUi-touch-area {
    height: 100%;
    width: 100%
}

.noUi-state-tap .noUi-connect, .noUi-state-tap .noUi-origin {
    -webkit-transition: transform .3s;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    -o-transition: transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s
}

.noUi-state-drag * {
    cursor: inherit !important
}

.noUi-horizontal {
    height: 18px
}

.noUi-horizontal .noUi-handle {
    width: 23px;
    height: 23px;
    right: -11.5px;
    top: -10px
}

.noUi-vertical {
    width: 18px
}

.noUi-vertical .noUi-handle {
    width: 28px;
    height: 34px;
    right: -6px;
    top: -17px
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
    left: -17px;
    right: auto
}

.noUi-target {
    height: 4px;
    background-color: #eaeaea;
    margin: 0 11px 50px;
    position: relative
}

.noUi-target::after, .noUi-target::before {
    content: "";
    background-color: #eaeaea;
    width: 11px;
    height: 4px;
    position: absolute;
    top: 0
}

.noUi-target::before {
    left: -10px
}

.noUi-target::after {
    right: -10px
}

.noUi-connect {
    background-color: #ffcda5
}

.noUi-draggable {
    cursor: ew-resize
}

.noUi-vertical .noUi-draggable {
    cursor: ns-resize
}

.noUi-handle {
    border: 1px solid #f68038;
    background-color: #fff;
    border-radius: 50%;
    cursor: default
}

.noUi-handle::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    left: 3px;
    top: 3px;
    border-radius: 50%;
    background-color: #f68038
}

.noUi-active {
    -webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
    box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb
}

[disabled] .noUi-connect {
    background: #b8b8b8
}

[disabled] .noUi-handle, [disabled].noUi-handle, [disabled].noUi-target {
    cursor: not-allowed
}

.noUi-pips, .noUi-pips * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.noUi-pips {
    position: absolute;
    color: #999
}

.noUi-value {
    position: absolute;
    white-space: nowrap;
    text-align: center
}

.noUi-value-sub {
    color: #ccc;
    font-size: 10px
}

.noUi-marker {
    position: absolute;
    background: #ccc
}

.noUi-marker-sub {
    background: #aaa
}

.noUi-marker-large {
    background: #aaa
}

.noUi-pips-horizontal {
    padding: 10px 0;
    height: 80px;
    top: 100%;
    left: 0;
    width: 100%
}

.noUi-value-horizontal {
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%)
}

.noUi-rtl .noUi-value-horizontal {
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
    transform: translate(50%, 50%)
}

.noUi-marker-horizontal.noUi-marker {
    margin-left: -1px;
    width: 2px;
    height: 5px
}

.noUi-marker-horizontal.noUi-marker-sub {
    height: 10px
}

.noUi-marker-horizontal.noUi-marker-large {
    height: 15px
}

.noUi-pips-vertical {
    padding: 0 10px;
    height: 100%;
    top: 0;
    left: 100%
}

.noUi-value-vertical {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding-left: 25px
}

.noUi-rtl .noUi-value-vertical {
    -webkit-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    transform: translate(0, 50%)
}

.noUi-marker-vertical.noUi-marker {
    width: 5px;
    height: 2px;
    margin-top: -1px
}

.noUi-marker-vertical.noUi-marker-sub {
    width: 10px
}

.noUi-marker-vertical.noUi-marker-large {
    width: 15px
}

.noUi-tooltip {
    color: #999;
    font-size: 12px;
    position: absolute
}

.noUi-horizontal .noUi-tooltip {
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    left: 50%;
    bottom: -22px
}

.noUi-vertical .noUi-tooltip {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    top: 50%;
    right: 120%
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(50%, 0);
    -ms-transform: translate(50%, 0);
    transform: translate(50%, 0);
    left: auto;
    bottom: 10px
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
    -webkit-transform: translate(0, -18px);
    -ms-transform: translate(0, -18px);
    transform: translate(0, -18px);
    top: auto;
    right: 28px
}

.popup {
    -webkit-overflow-scrolling: touch;
    z-index: 100;
    padding: 30px 10px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: visibility .8s ease 0s;
    -o-transition: visibility .8s ease 0s;
    transition: visibility .8s ease 0s;
    visibility: hidden
}

.popup::before {
    content: "";
    background-color: rgba(0, 0, 0, .9);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .8s ease 0s;
    -o-transition: opacity .8s ease 0s;
    transition: opacity .8s ease 0s
}

.popup.show {
    visibility: visible;
    overflow: auto
}

.popup.show::before {
    opacity: 1
}

.popup.show .popup__body {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.popup._active {
    overflow: auto;
    visibility: visible
}

.popup._active::before {
    opacity: 1
}

.popup._active .popup__body {
    -webkit-transition: all .3s ease .2s;
    -o-transition: all .3s ease .2s;
    transition: all .3s ease .2s;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center
}

.popup__body {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: #fff;
    width: 100%;
    max-width: 1180px;
    padding: 80px 35px
}

.popup__close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 35px;
    right: 35px;
    cursor: pointer;
    z-index: 30
}

.popup__dots {
    position: absolute;
    right: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.popup__dots-item {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #000;
    margin: 5px 0
}

.popup__dots-item._active {
    background: #000
}

.reviews-popap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 35px
}

.reviews-popap__loaded {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #e5e5e5;
    border-radius: 5px
}

.reviews-popap__loaded a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    max-width: 350px
}

.reviews-popap__loaded a span {
    margin-bottom: 20px
}

.reviews-popap__caption {
    font-weight: 600;
    font-size: 30px;
    line-height: 123.3333333333%;
    margin-bottom: 35px
}

.reviews-popap__row:not(:last-child) {
    margin: 0 0 30px 0
}

.reviews-popap__row input {
    width: 230px !important;
    background: #e5e5e5;
    border-radius: 5px !important;
    font-size: 14px;
    line-height: 16px;
    color: #868686
}

.reviews-popap__row textarea {
    padding: 15px;
    background: #e5e5e5;
    border-radius: 5px !important;
    height: 100px;
    resize: none;
    font-size: 14px;
    line-height: 16px;
    max-width: 430px;
    color: #868686
}

.reviews-popap__label span {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px
}

.reviews-popap__text {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px
}

.reviews-popap__btn {
    background: #76587d;
    border-radius: 10px;
    font-weight: 500;
    line-height: 20px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 40px;
    color: #fff;
    -webkit-transition: -webkit-box-shadow .3s ease 0s;
    transition: -webkit-box-shadow .3s ease 0s;
    -o-transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s
}

.reviews-popap .select__value span {
    height: auto
}

.rental-popup {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 25px
}

.rental-popup__left {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.rental-popup__img {
    width: 100%;
    margin-bottom: 30px
}

.rental-popup__img img {
    width: 100%
}

.rental-popup__content {
    max-width: 290px
}

.rental-popup__caption {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px
}

.rental-popup__text {
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    text-align: center
}

.rental-popup__head {
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 30px
}

.rental-popup__form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.rental-popup__form .select__value span {
    height: auto
}

.rental-popup__row {
    margin-bottom: -35px
}

.rental-popup__col {
    margin-bottom: 35px
}

.rental-popup__add {
    -ms-grid-column-span: 2;
    grid-column: span 2
}

.rental-popup__add-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #000;
    margin-bottom: 15px
}

.rental-popup__wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 10px
}

.rental-popup__add-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
}

.rental-popup__link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    height: 50px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #000;
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px
}

.form-rental__form {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 40px
}

.form-rental__col {
    margin-bottom: 35px
}

.form-rental__col span span {
    display: inline-block;
    color: #868686;
    margin-bottom: 0
}

.form-rental__col input {
    font-size: 14px;
    line-height: 16px;
    color: #868686;
    background: #e5e5e5;
    border-radius: 5px !important
}

.form-rental__col textarea {
    background: #e5e5e5;
    border-radius: 5px !important;
    padding: 15px;
    height: 75px;
    resize: none;
    font-size: 14px;
    line-height: 16px;
    color: #868686
}

.form-rental__label {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px
}

.form-rental__label span {
    margin-bottom: 15px;
    display: block
}

.form-rental__button {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    margin-top: -35px
}

.form-rental__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #76587d;
    border-radius: 10px;
    height: 50px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    padding: 0 40px
}

.form-rental__textarea {
    margin-top: -35px;
    -ms-grid-column-span: 2;
    grid-column: span 2
}

.header {
    background: #212121;
    font-weight: 500;
    color: #fff;
    position: relative;
    z-index: 2
}

.main .header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    border-bottom: 1px solid #fff
}

._touch._lock .main .header {
    bottom: 0
}

._pc._lock .main .header {
    bottom: 0
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100px
}

._lock .header__container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #212121;
    z-index: 5
}

.header__logo {
    z-index: 10
}
.header__logo img {
    max-width: 200px;
}
.header__btn {
    z-index: 10;
    font-size: 0
}

.header__btn svg {
    display: none;
    fill: #fff
}

.header__btn:active {
    background-color: #76587d;
    -webkit-box-shadow: inset 0 0 7px 2px #5a4260;
    box-shadow: inset 0 0 7px 2px #5a4260;
    border: 1px solid #5a4260
}

.menu__item {
    position: relative;
    font-size: 24px;
    padding: 15px 0
}

.menu__item a {
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s
}

body._touch .menu__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.menu__item:not(:last-child) {
    margin: 0 0 20px 0
}

.menu__item._active .menu__sub-list {
    opacity: 1;
    visibility: visible;
    top: 100%
}

/*.menu__item._active .menu__arrow {*/
/*    -webkit-transform: rotate(-180deg);*/
/*    -ms-transform: rotate(-180deg);*/
/*    transform: rotate(-180deg)*/
/*}*/

body._pc .menu__item:hover .menu__sub-list {
    opacity: 1;
    visibility: visible;
    top: 100%
}

/*.menu__arrow {*/
/*    display: none;*/
/*    -webkit-transition: -webkit-transform .3s ease 0s;*/
/*    transition: -webkit-transform .3s ease 0s;*/
/*    -o-transition: transform .3s ease 0s;*/
/*    transition: transform .3s ease 0s;*/
/*    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s*/
/*}*/

/*body._touch .menu__arrow {*/
/*    display: block;*/
/*    margin-left: 10px;*/
/*    border-left: 5px solid transparent;*/
/*    border-right: 5px solid transparent;*/
/*    border-top: 10px solid #fff;*/
/*    width: 0;*/
/*    height: 0*/
/*}*/

.menu__sub-list {
    position: absolute;
    z-index: 2;
    padding: 15px;
    color: #000;
    width: 240px;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 30px;
    background: #fff;
    top: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .3s ease 0s, top .3s ease 0s;
    -o-transition: opacity .3s ease 0s, top .3s ease 0s;
    transition: opacity .3s ease 0s, top .3s ease 0s
}

.menu__sub-list a {
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s
}

.menu__sub-item:not(:last-child) {
    margin: 0 0 10px 0
}

.icon-menu {
    display: none
}

.footer {
    background: #212121;
    padding: 40px 0
}

.footer__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 255px 1fr;
    grid-template-columns:255px 1fr;
    gap: 60px
}

.footer__menu {
    font-size: 16px;
    line-height: 125%;
    color: #fff
}

.menu-footer__title {
    cursor: default
}

.menu-footer__list li:not(:last-child) {
    margin: 0 0 10px 0
}

.menu-footer__list a {
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s
}

.menu-footer__box {
    margin-top: 25px;
    font-weight: 500;
    font-size: 18px;
    line-height: 122.2222222222%
}

.menu-footer__label {
    margin-bottom: 5px
}

.menu-footer__link {
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s
}

._footer-title {
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #fff;
    padding-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%
}

._footer-title._active span {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

._footer-title span {
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    -o-transition: transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s
}

.hero-slider {
    background: #000 center/cover no-repeat;
    color: #fff
}

.hero-slider__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    place-items: center;
    min-height: calc(100vh - 40px);
    padding: 200px 0 100px
}

.hero-slider__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    margin-bottom: 15px;
    margin-right: -200px
}

.hero-slider__text {
    margin-bottom: 45px
}

.hero-slider__link {
    display: inline-block;
    font-weight: 500;
    border: 1px solid #76587d;
    -webkit-filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .25));
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .25));
    border-radius: 10px;
    padding: 15px 20px;
    -webkit-transition: background-color .3s ease 0s;
    -o-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s
}

.hero-slider__link:active {
    background-color: #76587d;
    -webkit-box-shadow: inset 0 0 7px 2px #5a4260;
    box-shadow: inset 0 0 7px 2px #5a4260
}

.hero-slider__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 40px
}

.hero-slider__pagination .swiper-pagination-bullet {
    border: 1px solid #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer
}

.hero-slider__pagination .swiper-pagination-bullet-active {
    background: #fff
}

.populyar {
    margin-top: 90px;
    margin-bottom: 90px
}

.populyar__title {
    margin-bottom: 50px
}

.populyar__wrap {
    position: relative;
    margin: 0 auto
}

.populyar__slider {
    padding: 1px
}

.populyar__item {
    height: 100%
}

.populyar__wrapper {
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 15px 15px 50px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.populyar__img {
    text-align: center
}

.populyar__img img {
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.populyar__box {
    text-align: center
}

.populyar__box p {
    font-weight: 300;
    margin-bottom: 20px
}

.populyar__caption {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 10px
}

.populyar__price {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 30px
}

.populyar__link {
    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;
    min-height: 45px;
    background: #76587d;
    border-radius: 10px;
    color: #fff;
    margin-top: auto
}

.slider-navigation__prev {
    position: absolute;
    top: 50%;
    left: -30px
}

.slider-navigation__next {
    position: absolute;
    top: 50%;
    right: -30px
}

.about {
    padding-bottom: 90px
}

.about__title {
    margin-bottom: 60px
}

.about__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    gap: 40px
}

.about__item {
    text-align: center
}

.about__item p {
    font-weight: 300
}

.about__img {
    margin-bottom: 15px
}

.about__img img, .about__img svg {
    max-height: 90px;
    -o-object-fit: cover;
    object-fit: cover
}

.about__caption {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin: 0 0 .5em 0
}

.galery {
    padding-bottom: 90px
}

.galery__title {
    margin-bottom: 60px
}

.galery__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 66.4179104478% 1fr;
    grid-template-columns:66.4179104478% 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows:auto auto;
    gap: 20px
}

.galery__item {
    border-radius: 10px;
    overflow: hidden
}

.galery__item:first-child {
    -ms-grid-row-span: 2;
    grid-row: span 2
}

.galery__item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.reviews {
    padding-bottom: 90px
}

.reviews__title {
    margin-bottom: 60px
}

.reviews__wrap {
    position: relative;
    margin: 0 auto
}

.reviews__slider {
    padding: 1px
}

.reviews__wrapper {
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 30px 25px;
    text-align: center
}

.reviews__name {
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px
}

.reviews__stars {
    font-weight: 600;
    margin-bottom: 10px
}

.reviews__text {
    font-weight: 300;
    line-height: 20px
}

.reviews__photo {
    margin-top: 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr ;
    grid-template-columns:1fr ;
    gap: 15px
}

.reviews__photo img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 200px;
    margin: 0 auto;
}

.reviews__date {
    margin-top: 20px;
    font-weight: 300;
    line-height: 20px;
    color: #8a8a8a
}

.reviews__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 63px
}

.reviews__btn {
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 13px 15px;
    margin: 0 auto
}

.about-us {
    padding-bottom: 90px
}

.about-us__img {
    padding: 0 0 78.79% 0
}

.about-us__img img {
    border-radius: 10px
}

.about-us__title {
    text-align: left;
    margin-bottom: 15px
}

.about-us__text {
    height: 520px;
    overflow: auto;
    padding-right: 20px;
    line-height: 20px
}

.questions {
    padding-bottom: 70px
}

.questions__title {
    margin-bottom: 50px
}

.questions__item {
    margin-bottom: 20px
}

.questions__caption {
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    display: block;
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.questions__caption span {
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    -o-transition: transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
    margin-left: 20px
}

.questions__caption span path {
    fill: #000
}

.questions__caption._active {
    background: #76587d;
    color: #fff
}

.questions__caption._active span {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.questions__caption._active span path {
    fill: #fff
}

.questions__text {
    padding-top: 15px;
    font-weight: 300;
    padding: 15px 30px 0
}

.hero {
    background: #000 center/cover no-repeat
}

.hero__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #fff;
    height: 100vh;
    padding: 150px 0
}

.hero__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 504px;
    flex: 0 1 504px
}

.hero__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    margin-bottom: 15px
}

.hero__text {
    margin-bottom: 45px
}

.hero__link {
    display: inline-block;
    font-weight: 500;
    border: 1px solid #76587d;
    -webkit-filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .25));
    filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .25));
    border-radius: 10px;
    padding: 15px 20px;
    -webkit-transition: background-color .3s ease 0s;
    -o-transition: background-color .3s ease 0s;
    transition: background-color .3s ease 0s
}

.hero__link:active {
    background-color: #76587d;
    -webkit-box-shadow: inset 0 0 7px 2px #5a4260;
    box-shadow: inset 0 0 7px 2px #5a4260
}

.hero__img {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.requirement {
    padding-top: 90px;
    padding-bottom: 90px
}

.requirement__title {
    margin-bottom: 50px
}

.requirement__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    gap: 40px
}

.requirement__item {
    text-align: center
}

.requirement__img {
    margin-bottom: 20px
}

.requirement__img img {
    max-width: 150px;
    -o-object-fit: cover;
    object-fit: cover
}

.requirement__img svg {
    max-width: 150px
}

.requirement__caption {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 10px
}

.requirement__text {
    font-weight: 300
}

.questions-spoller__item:not(:last-child) {
    margin: 0 0 35px 0
}

.questions-spoller__caption {
    background: #76587d;
    border-radius: 10px;
    text-align: left;
    width: 100%;
    padding: 20px;
    font-size: 18px;
    line-height: 122.2222222222%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.questions-spoller__caption span {
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    -o-transition: transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s
}

.questions-spoller__caption span path {
    fill: #fff
}

.questions-spoller__caption._active span {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.questions-spoller__wrapper {
    padding-top: 15px
}

.questions-spoller__contents {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 20px;
    padding: 0 20px
}

.questions-spoller__img img {
    width: 100%
}

.questions-spoller__text p:not(:last-child) {
    margin: 0 0 20px 0
}

.questions-spoller__doc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.questions-spoller__doc a {
    padding: 15px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    font-size: 18px;
    line-height: 22px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(91, 91, 91, .2);
    box-shadow: 0 0 3px 1px rgba(91, 91, 91, .2);
    border-radius: 10px;
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s
}

.questions-spoller__doc a span path {
    -webkit-transition: fill .3s ease 0s;
    -o-transition: fill .3s ease 0s;
    transition: fill .3s ease 0s
}

.blog {
    padding-top: 70px;
    padding-bottom: 90px
}

.blog__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    color: #000;
    margin-bottom: 25px
}

.blog__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns:1fr 1fr;
    gap: 20px
}

.blog__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 505px;
    background: #000 center/cover no-repeat;
    border-radius: 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 40px
}

.blog__item a {
    z-index: 1
}

.blog__item::before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7)
}

.blog__caption {
    font-weight: 600;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    -webkit-transition: color .3s ease 0s;
    -o-transition: color .3s ease 0s;
    transition: color .3s ease 0s;
    color: #fff
}

.blog__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 35px
}

.blog__btn {
    background-color: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    padding: 13px 15px;
    -webkit-transition: background-color .3s ease, color .3s ease;
    -o-transition: background-color .3s ease, color .3s ease;
    transition: background-color .3s ease, color .3s ease
}

.blog-page {
    padding-bottom: 90px
}

.blog-page__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    color: #000;
    margin-bottom: 25px
}

.blog-page__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -10px
}

.blog-page__box:not(:last-child) {
    margin: 0 0 50px 0
}

.blog-page__img {
    margin: 0 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
}

.blog-page__img img {
    max-width: 100%
}

.blog-page__content {
    margin: 0 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
}

.blog-page__content p {
    font-size: 16px;
    line-height: 125%
}

.blog-page__content p:not(:last-child) {
    margin: 0 0 20px 0
}

.other-blog {
    padding-bottom: 90px
}

.other-blog__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    color: #000;
    margin-bottom: 50px
}

.other-blog__item {
    background: grey center/cover no-repeat;
    min-height: 230px;
    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;
    border-radius: 10px;
    position: relative
}

.other-blog__item a {
    z-index: 2
}

.other-blog__item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7)
}

.other-blog__caption {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #fff
}

.other-blog__nav .slider-navigation__prev {
    top: -120px
}

.other-blog__nav .slider-navigation__next {
    top: -120px
}

.partners-hero .hero__img {
    position: static
}

.partners-blog {
    padding-top: 90px;
    padding-bottom: 90px
}

.partners-blog__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px
}

.partners-blog__item:not(:last-child) {
    margin: 0 0 50px 0
}

.partners-blog__item:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.partners-blog__left {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
}

.partners-blog__left img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.partners-blog__right {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
}

.partners-blog__caption {
    font-weight: 600;
    font-size: 30px;
    line-height: 123.3333333333%;
    margin-bottom: 15px
}

.partners-blog__text p {
    line-height: 20px
}

.partners-blog__text p:not(:last-child) {
    margin: 0 0 20px 0
}

.car {
    padding-bottom: 90px
}

.car__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 57.8358208955% 1fr;
    grid-template-columns:57.8358208955% 1fr;
    gap: 40px
}

.car__slider {
    position: relative
}

.car__main-item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px;
}

.car__main-slider {
    margin-bottom: 10px
}

.car__secondary-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px
}

.car__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    margin-bottom: 60px
}

.car__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    place-items: center;
    text-align: center;
    gap: 35px 45px;
    margin-bottom: 60px
}

.car__img img, .car__img svg {
    max-width: 65px
}

.car__img img {
    -o-object-fit: cover;
    object-fit: cover
}

.car__descr {
    margin-top: 15px
}

.car__price {
    margin-bottom: 40px
}

.car__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.car__value:not(:last-child) {
    margin: 0 0 15px 0
}

.car__value span {
    line-height: 20px
}

.car__value span:nth-child(2) {
    font-weight: 500;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.car__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 15px
}

.car__checkbox span:nth-child(2) {
    font-weight: 500;
    line-height: 125%
}

.car__total {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.car__total span:first-child {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px
}

.car__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background: #76587d;
    border-radius: 10px;
    min-height: 45px;
    padding: 0 42px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: -webkit-box-shadow .3s ease 0s;
    transition: -webkit-box-shadow .3s ease 0s;
    -o-transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s
}

.car__pagging {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 40%;
    left: -30px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.car__pagging .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #000;
    margin: 5px 0
}

.car__pagging .swiper-pagination-bullet-active {
    background: #000
}

.checkbox-car {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.checkbox-car__text {
    margin-right: 10px;
    line-height: 20px;
    cursor: pointer
}

.checkbox-car__input {
    width: 40px;
    height: 20px;
    background: #fff;
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 25px;
    -webkit-appearance: none;
    margin: auto;
    cursor: pointer;
    outline: 0;
    position: relative
}

.checkbox-car__input:before {
    content: "";
    position: absolute;
    z-index: 1;
    width: 16px;
    height: 16px;
    background: #76587d;
    border-radius: 50%;
    top: 2px;
    left: 3px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s
}

.checkbox-car__input:checked {
    background: #fff
}

.checkbox-car__input:disabled:before {
    background: #e5e5e5
}

.checkbox-car__input:checked:before {
    left: 20px;
    background: #5a4260
}

.date__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 38.0597014925% 1fr;
    grid-template-columns:38.0597014925% 1fr;
    gap: 20px
}

.date__caption {
    font-weight: 600;
    font-size: 30px;
    line-height: 123.3333333333%;
    margin: 0 0 .6666666667em 0
}

.date__text {
    margin-bottom: 70px
}

.date__text p {
    line-height: 125%
}

.date__text p:not(:last-child) {
    margin: 0 0 20px 0
}

.date__item {
    line-height: 20px;
    position: relative;
    padding-left: 30px
}

.date__item:not(:last-child) {
    margin: 0 0 10px 0
}

.date__item::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
    background: #e5e5e5;
    border-radius: 5px
}

.date__item--orange::before {
    background: #f7c883
}

.date__calendar .datepicker-inline .datepicker {
    width: 100%;
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px
}

.date__calendar .datepicker--body {
    padding: 0 5px 25px
}

.date__calendar .datepicker--cell {
    padding: 30px 20px
}

.date__calendar .datepicker--nav {
    padding: 30px 0 20px
}

.date__calendar .datepicker--day-name {
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
    text-transform: uppercase;
    color: #868686
}

.date__calendar .datepicker--nav-action svg {
    display: none
}

.date__calendar .datepicker--nav-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #000
}

.contacts {
    padding-top: 70px;
    padding-bottom: 60px
}

.contacts__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    margin: 0 0 .6666666667em 0
}

.contacts__box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    gap: 30px
}

.contacts__head {
    font-weight: 500;
    font-size: 30px;
    line-height: 123.3333333333%;
    margin: 0 0 .8333333333em 0
}

.contacts__address {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 35px 1fr;
    grid-template-columns:35px 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows:auto auto;
    gap: 2px 10px;
    margin-bottom: 25px
}

.contacts__icon {
    -ms-grid-row-span: 2;
    grid-row: span 2
}

.contacts__caption {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px
}

.contacts__text {
    font-size: 18px;
    line-height: 22px
}

.contacts__time {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 35px 1fr;
    grid-template-columns:35px 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows:auto auto;
    gap: 2px 10px;
    margin-bottom: 25px
}

.contacts__phone {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 35px 1fr;
    grid-template-columns:35px 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows:auto auto;
    gap: 2px 10px;
    margin-bottom: 25px
}

.contacts__phone-link {
    font-size: 18px;
    line-height: 22px
}

.contacts__mail {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 35px 1fr;
    grid-template-columns:35px 1fr;
    -ms-grid-rows: auto auto;
    grid-template-rows:auto auto;
    gap: 2px 10px;
    margin-bottom: 25px
}

.contacts__mail-link {
    font-size: 18px;
    line-height: 22px
}

.map img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.product {
    padding-top: 70px
}

.product__title {
    font-weight: 700;
    font-size: 45px;
    line-height: 122.2222222222%;
    margin-bottom: 27px
}

.product__wrapper {
    position: relative;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 230px 1fr;
    grid-template-columns:230px 1fr;
    gap: 50px
}

.product__filtrs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500
}

.product__filtrs svg {
    margin-left: 10px;
    width: 20px;
    height: 20px
}

.product__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 3 ];
    grid-template-columns:repeat(3, 1fr);
    gap: 20px
}

.product__item {
    padding: 0 15px 30px;
    background: #fff;
    -webkit-box-shadow: 0 0 5px 2px rgba(91, 91, 91, .25);
    box-shadow: 0 0 5px 2px rgba(91, 91, 91, .25);
    border-radius: 10px
}

.product__img {
    margin-bottom: 10px
}

.product__img img {
    /*width: 100%;*/
    /*-o-object-fit: cover;*/
    /*object-fit: cover*/
    display: block;
    margin: 0 auto;
}

.product__head {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #000;
    margin: 0 0 1em 0
}

.product__fuatures {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 4 ];
    grid-template-columns:repeat(4, 1fr);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 15px
}

.product__items {
    font-size: 14px;
    line-height: 17px
}

.product__items img {
    margin-bottom: 5px
}

.product__prices .car__checkbox {
    margin-top: 20px;
    margin-bottom: 35px
}

.product__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px
}

.product__box:not(:last-child) {
    margin: 0 0 10px 0
}

.product__box span {
    line-height: 20px
}

.product__box span:nth-child(2) {
    font-weight: 500
}

.product__rental {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px
}

.product__rental span {
    font-weight: 700;
    font-size: 20px;
    line-height: 120%
}

.product__link {
    line-height: 125%;
    background: #76587d;
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 44px;
    padding: 0 12px;
    color: #fff;
    -webkit-transition: -webkit-box-shadow .3s ease 0s;
    transition: -webkit-box-shadow .3s ease 0s;
    -o-transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s;
    transition: box-shadow .3s ease 0s, -webkit-box-shadow .3s ease 0s
}

.product__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 90px
}

.product__btn {
    background: #fff;
    -webkit-box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, .25);
    border-radius: 10px;
    line-height: 125%;
    height: 45px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 15px
}

.aside-product__result {
    font-weight: 500;
    font-size: 25px;
    line-height: 37px;
    margin-bottom: 40px
}

.aside-product__box {
    margin-bottom: 35px
}

.aside-product__caption {
    font-weight: 500;
    line-height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #76587d
}

.aside-product__caption._active svg {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.aside-product__caption svg {
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    -o-transition: transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg)
}

.aside-product__list {
    padding-top: 15px
}

.aside-product__list.search-list {
    height: 170px;
    overflow: auto
}

.aside-product__item {
    margin-bottom: 10px
}

.aside-product__search {
    padding-top: 15px
}

.simplebar-scrollbar {
    width: 13px
}

.simplebar-scrollbar:before {
    position: absolute;
    content: "";
    background: #76587d;
    border-radius: 7px;
    left: 2px;
    right: 2px;
    opacity: 1;
    -webkit-transition: opacity .2s linear;
    -o-transition: opacity .2s linear;
    transition: opacity .2s linear
}

.simplebar-track {
    border: 1px solid #000;
    border-radius: 5px
}

.simplebar-track.simplebar-vertical {
    width: 15px
}

.search-form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.search-form__row button {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px
}

.search-form__row .input {
    padding-right: 40px;
    border-radius: 5px !important
}

.choice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.choice__btn {
    background: #e5e5e5;
    border-radius: 5px;
    margin-right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px;
    line-height: 20px;
    margin-bottom: 10px;
    font-size: 16px
}

.choice__btn svg {
    margin-left: 20px
}

.choice__clear {
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 10px;
    order: 1;
}

.range-price__title {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin-bottom: 15px
}

.range-price__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px
}

.noUi-handle {
    background: #f7c883;
    border-radius: 3px;
    border: none;
    cursor: pointer
}

.noUi-handle::after {
    content: "";
    display: none
}

.slider-navigation__next, .slider-navigation__prev {
    cursor: pointer
}

.page {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
}

@media (min-width: 767.98px) {
    .menu-footer {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 25%;
        flex: 0 1 25%
    }
}

@media (min-width: 921px) {
    .footer__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 80px
    }

    ._footer-title span {
        display: none
    }
}

@media (min-width: 991.98px) {
    .quantity__button:hover::after, .quantity__button:hover::before {
        background-color: rgba(0, 0, 0, .5)
    }

    .about-us__box {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns:1fr 1fr;
        gap: 20px
    }

    .questions__block {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns:1fr 1fr;
        gap: 20px
    }

    .blog-page__box:nth-child(odd) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse
    }

    .product__filtrs {
        display: none
    }
}

@media (min-width: 992px) {
    .select__option:hover {
        background: #d9d9d9
    }

    .checkbox a:hover {
        text-decoration: none
    }
}

@media (min-width: 1000px) {
    .menu__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .menu__item {
        font-size: 12px
    }

    .menu__item:not(:last-child) {
        margin: 0 25px 0 0
    }
}

@media (min-width: 1382px) {
    .rental-popup__link {
        margin-top: 50px
    }

    .menu__item {
        font-size: 16px
    }

    .menu-footer:last-child {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .hero__img {
        position: absolute;
        right: 0;
        bottom: 0
    }
}

@media (min-width: 1383px) {
    .header__btn {
        padding: 15px;
        border: 1px solid #fff;
        border-radius: 10px;
        -webkit-transition: background-color .3s ease 0s;
        -o-transition: background-color .3s ease 0s;
        transition: background-color .3s ease 0s;
        font-size: 16px
    }
}

@media (min-width: 1383px) and (any-hover: hover) {
    .header__btn:hover {
        background-color: #76587d;
        -webkit-box-shadow: 0 0 4px #76587d;
        box-shadow: 0 0 4px #76587d;
        border: 1px solid #5a4260
    }
}

@media (max-width: 1440px) {
    .slider-navigation__prev {
        left: -25px
    }

    .slider-navigation__next {
        right: -25px
    }
}

@media (max-width: 1420px) {
    .car__pagging {
        left: 10px
    }
}

@media (max-width: 1382px) {
    .rental-popup .select {
        max-width: 100%
    }

    .popup__dots {
        top: 44%;
        right: 5px
    }

    .rental-popup {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .rental-popup__img {
        text-align: center
    }

    .rental-popup__img img {
        max-width: 400px
    }

    .rental-popup__content {
        max-width: 100%
    }

    .rental-popup__head {
        text-align: center
    }

    .rental-popup__form {
        gap: 40px
    }

    .rental-popup__link {
        -ms-grid-column-span: 2;
        grid-column: span 2
    }

    .header__btn svg {
        display: block
    }

    .footer__container {
        -ms-grid-rows: auto auto;
        grid-template-rows:auto auto;
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .hero-slider__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 150px 0 0
    }

    .hero-slider__content {
        text-align: center;
        margin-bottom: 20px
    }

    .hero-slider__title {
        margin-right: 0
    }

    .hero-slider__img img {
        max-width: 100%
    }

    .populyar__wrap {
        max-width: 96%
    }

    .reviews__wrap {
        max-width: 96%
    }

    .hero__img img {
        max-width: 100%;
        width: 550px
    }

    .other-blog__nav .slider-navigation__prev {
        left: calc(100% - 100px);
        top: 0
    }

    .other-blog__nav .slider-navigation__next {
        right: 50px;
        top: 0
    }

    .partners-hero .hero__img img {
        width: auto
    }

    .car__box {
        display: block
    }

    .car__slider {
        margin-bottom: 30px
    }

    .car__title {
        text-align: center
    }

    .product__wrapper {
        gap: 25px
    }

    .product__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 1370px) {
    ._title {
        font-size: calc(25px + 5 * ((100vw - 320px) / 1050))
    }

    .reviews-popap__caption {
        font-size: calc(25px + 5 * ((100vw - 320px) / 1050))
    }

    .rental-popup__head {
        font-size: calc(25px + 5 * ((100vw - 320px) / 1050))
    }

    .hero-slider__title {
        font-size: calc(30px + 15 * ((100vw - 320px) / 1050))
    }

    .populyar {
        margin-top: calc(30px + 60 * ((100vw - 320px) / 1050))
    }

    .populyar__title {
        margin-bottom: calc(30px + 20 * ((100vw - 320px) / 1050))
    }

    .populyar__caption {
        font-size: calc(17px + 3 * ((100vw - 320px) / 1050))
    }

    .populyar__price {
        font-size: calc(17px + 3 * ((100vw - 320px) / 1050))
    }

    .populyar__price {
        margin-bottom: calc(20px + 10 * ((100vw - 320px) / 1050))
    }

    .about {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .about__title {
        margin-bottom: calc(30px + 30 * ((100vw - 320px) / 1050))
    }

    .about__caption {
        font-size: calc(18px + 2 * ((100vw - 320px) / 1050))
    }

    .galery {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .galery__title {
        margin-bottom: calc(40px + 20 * ((100vw - 320px) / 1050))
    }

    .reviews {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .reviews__title {
        margin-bottom: calc(40px + 20 * ((100vw - 320px) / 1050))
    }

    .about-us {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .questions {
        padding-bottom: calc(20px + 50 * ((100vw - 320px) / 1050))
    }

    .questions__title {
        margin-bottom: calc(40px + 10 * ((100vw - 320px) / 1050))
    }

    .hero__title {
        font-size: calc(30px + 15 * ((100vw - 320px) / 1050))
    }

    .requirement {
        padding-top: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .requirement {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .requirement__title {
        margin-bottom: calc(30px + 20 * ((100vw - 320px) / 1050))
    }

    .requirement__caption {
        font-size: calc(18px + 2 * ((100vw - 320px) / 1050))
    }

    .blog {
        padding-top: calc(40px + 30 * ((100vw - 320px) / 1050))
    }

    .blog {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .blog__title {
        font-size: calc(30px + 15 * ((100vw - 320px) / 1050))
    }

    .blog__button {
        padding-top: calc(30px + 5 * ((100vw - 320px) / 1050))
    }

    .blog-page {
        padding-bottom: calc(50px + 40 * ((100vw - 320px) / 1050))
    }

    .blog-page__title {
        font-size: calc(30px + 15 * ((100vw - 320px) / 1050))
    }

    .other-blog {
        padding-bottom: calc(70px + 20 * ((100vw - 320px) / 1050))
    }

    .other-blog__title {
        margin-bottom: calc(30px + 20 * ((100vw - 320px) / 1050))
    }

    .partners-blog {
        padding-top: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .partners-blog {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .car {
        padding-bottom: calc(40px + 50 * ((100vw - 320px) / 1050))
    }

    .car__title {
        font-size: calc(35px + 10 * ((100vw - 320px) / 1050))
    }

    .car__title {
        margin-bottom: calc(30px + 30 * ((100vw - 320px) / 1050))
    }

    .car__list {
        margin-bottom: calc(30px + 30 * ((100vw - 320px) / 1050))
    }

    .date__caption {
        font-size: calc(25px + 5 * ((100vw - 320px) / 1050))
    }

    .date__text {
        margin-bottom: calc(30px + 40 * ((100vw - 320px) / 1050))
    }

    .contacts {
        padding-top: calc(30px + 40 * ((100vw - 320px) / 1050))
    }

    .contacts {
        padding-bottom: calc(30px + 30 * ((100vw - 320px) / 1050))
    }

    .contacts__title {
        font-size: calc(30px + 15 * ((100vw - 320px) / 1050))
    }

    .contacts__head {
        font-size: calc(25px + 5 * ((100vw - 320px) / 1050))
    }

    .product {
        padding-top: calc(30px + 40 * ((100vw - 320px) / 1050))
    }

    .product__title {
        font-size: calc(35px + 10 * ((100vw - 320px) / 1050))
    }

    .product__head {
        font-size: calc(18px + 2 * ((100vw - 320px) / 1050))
    }

    .product__rental span {
        font-size: calc(18px + 2 * ((100vw - 320px) / 1050))
    }

    .product__buttons {
        margin-bottom: calc(50px + 40 * ((100vw - 320px) / 1050))
    }

    .choice__btn {
        font-size: calc(11px + 5 * ((100vw - 320px) / 1050))
    }

    .choice__clear {
        font-size: calc(12px + 4 * ((100vw - 320px) / 1050))
    }
}

@media (max-width: 1000px) {
    .header__btn {
        margin-left: auto;
        margin-right: 30px
    }

    .menu__body {
        display: none
    }

    .menu__body._active {
        display: block;
        position: fixed;
        z-index: 5;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #212121;
        padding: 100px 15px;
        overflow: auto
    }

    .icon-menu {
        display: block;
        position: relative;
        width: 30px;
        height: 18px;
        cursor: pointer;
        z-index: 6
    }

    .icon-menu span {
        -webkit-transition: all .3s ease 0s;
        -o-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        top: calc(50% - 1px);
        left: 0;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff
    }

    .icon-menu span:first-child {
        top: 0
    }

    .icon-menu span:last-child {
        top: auto;
        bottom: 0
    }

    .icon-menu._active span {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0)
    }

    .icon-menu._active span:first-child {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: calc(50% - 1px)
    }

    .icon-menu._active span:last-child {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: calc(50% - 1px)
    }
}

@media (max-width: 991.98px) {
    .select__title {
        font-size: 18px
    }

    .select__options {
        font-size: 18px
    }

    .menu-footer__list a {
        max-width: 90%;
        display: inline-block
    }

    .hero-slider__content {
        margin-bottom: 40px
    }

    .about__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .about-us__img {
        margin-bottom: 15px
    }

    .hero__inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: auto;
        padding: 150px 0 0
    }

    .hero__content {
        text-align: center;
        margin-bottom: 40px;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
    }

    .requirement__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr);
        gap: 30px
    }

    .blog-page__box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog-page__img {
        text-align: center;
        margin-bottom: 20px
    }

    .partners-blog__item:nth-child(even) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .partners-blog__item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .date__box {
        display: block
    }

    .date__content {
        margin-bottom: 30px
    }

    .contacts__box {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .product__wrapper {
        display: block
    }

    .product__aside {
        display: none;
        position: absolute;
        z-index: 2;
        left: 0;
        top: 80px;
        width: 103%;
        background-color: #fff;
        -webkit-box-shadow: 0 0 5px 2px rgba(91, 91, 91, .25);
        box-shadow: 0 0 5px 2px rgba(91, 91, 91, .25);
        margin: 0 -15px;
        padding: 0 15px
    }

    .product__aside._active {
        display: block
    }
}

@media (max-width: 921px) {
    .menu-footer {
        margin-bottom: 15px
    }
}

@media (max-width: 921px) and (max-width: 1370px) {
    .menu-footer {
        margin-bottom: calc(10px + 5 * ((100vw - 320px) / 1050))
    }
}

@media (max-width: 767.98px) {
    ._container {
        padding: 0 10px
    }

    .popup__body {
        padding: 80px 15px 15px
    }

    .popup__dots {
        top: 36%
    }

    .reviews-popap {
        display: block
    }

    .reviews-popap__loaded {
        min-height: 150px;
        margin-bottom: 30px;
        padding: 30px 15px
    }

    .rental-popup__row {
        -ms-grid-column-span: 2;
        grid-column: span 2
    }

    .form-rental__form {
        gap: 0
    }

    .form-rental__row {
        -ms-grid-column-span: 2;
        grid-column: span 2
    }

    .form-rental__col {
        margin-bottom: 10px
    }

    .form-rental__button {
        margin-top: 10px
    }

    .form-rental__textarea {
        margin-top: 10px
    }

    .slider-navigation__prev {
        left: -13px
    }

    .slider-navigation__prev img {
        height: 15px
    }

    .slider-navigation__next {
        right: -13px
    }

    .slider-navigation__next img {
        height: 15px
    }

    .about__list {
        gap: 25px
    }

    .about__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .galery__list {
        -ms-grid-columns: auto;
        grid-template-columns:auto
    }

    .questions-spoller__contents {
        -ms-grid-columns: auto;
        grid-template-columns:auto
    }

    .questions-spoller__doc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .blog__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .blog__item {
        padding: 20px
    }

    .other-blog__nav .slider-navigation__prev {
        left: 50%
    }

    .other-blog__nav .slider-navigation__next {
        right: 50%
    }

    .car__list {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr)
    }

    .contacts__box {
        gap: 15px;
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

@media (max-width: 650px) {
    .product__list {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }
}

@media (max-width: 649px) {
    .populyar__wrap .slider-navigation {
        display: none
    }
}

@media (max-width: 630px) {
    .requirement__list {
        -ms-grid-columns: auto;
        grid-template-columns:auto
    }
}

@media (max-width: 550px) {
    .header__btn {
        display: block;
        text-align: center;
        margin-top: 20px;
        margin-right: 0;
        padding: 15px;
        border: 1px solid #fff;
        border-radius: 10px;
        -webkit-transition: background-color .3s ease 0s;
        -o-transition: background-color .3s ease 0s;
        transition: background-color .3s ease 0s;
        font-size: 16px
    }

    .header__btn svg {
        display: none
    }
}

@media (max-width: 479.98px) {
    .rental-popup__wrap {
        -ms-grid-columns: 1fr;
        grid-template-columns:1fr
    }

    .car__list {
        -ms-grid-columns:(1fr) [ 2 ];
        grid-template-columns:repeat(2, 1fr)
    }

    .car__total {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .car__total span {
        text-align: center;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%
    }

    .car__total span:first-child {
        margin-bottom: 10px
    }
}

@media (min-width: 921px) and (max-width: 1370px) {
    .footer__wrapper {
        gap: calc(0px + 80 * ((100vw - 320px) / 1050))
    }
}

@media (any-hover: hover) {
    .breadcrumbs__link:hover {
        color: #333
    }

    .reviews-popap__btn:hover {
        -webkit-box-shadow: 0 0 4px #76587d;
        box-shadow: 0 0 4px #76587d
    }

    .header__btn svg:hover {
        fill: #76587d
    }

    .menu__item a:hover {
        color: #e6e6e6
    }

    .menu__sub-list a:hover {
        color: #1a1a1a
    }

    .menu-footer__list a:hover {
        color: #999
    }

    .menu-footer__link:hover {
        color: #999
    }

    .hero-slider__link:hover {
        background-color: #76587d;
        -webkit-box-shadow: 0 0 4px #76587d;
        box-shadow: 0 0 4px #76587d
    }

    .hero__link:hover {
        background-color: #76587d;
        -webkit-box-shadow: 0 0 4px #76587d;
        box-shadow: 0 0 4px #76587d
    }

    .questions-spoller__doc a:hover {
        color: #76587d
    }

    .questions-spoller__doc a:hover span path {
        fill: #76587d
    }

    .blog__caption:hover {
        color: #ccc
    }

    .blog__btn:hover {
        background-color: #76587d;
        color: #fff
    }

    .car__link:hover {
        -webkit-box-shadow: 0 0 4px #76587d;
        box-shadow: 0 0 4px #76587d
    }

    .contacts__phone-link:hover {
        text-decoration: underline
    }

    .contacts__mail-link:hover {
        text-decoration: underline
    }

    .product__link:hover {
        -webkit-box-shadow: 0 0 4px #76587d;
        box-shadow: 0 0 4px #76587d
    }
}

@media print {
    .datepickers-container {
        display: none
    }
}

юmenu__sub-list .menu__sub-item:not(:last-child) {
    margin: 0 0 10px 0;
}

.footer__logo img {
    max-width: 200px;
}

.input__wrapper {
    width: 100%;
    position: relative;
    margin: 15px 0;
    text-align: center;
}

.input__file {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.input__file-icon-wrapper {
    height: 60px;
    width: 60px;
    margin-right: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-right: 1px solid #fff;
}

.input__file-button-text {
    line-height: 1;
    margin-top: 1px;
}

.input__file-button {
    width: 100%;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    margin: 0 auto;
}

.rental-popup__link {
    min-width: 230px;
    margin-left: 50%;
    margin-top: 30px;
    display: inline-flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    /* identical to box height */
    text-align: center;
    color: #000000;
    background: #FFFFFF;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}
@media (min-width: 1382px) {
    .rental-popup__link {
        margin-top: 10px;
    }
}
@media (max-width: 1382px) {
    .rental-popup__link {
        margin-left: 0;
    }
}

.modal__bron {
    box-shadow: 0 0 5px 2px rgb(91 91 91 / 25%);
    border-radius: 10px;
    height: 40px;
    padding: 0 15px;
}

.menu__arrow::after {
    content: "";
    display: none;
    transition: transform 0.3s ease 0s;
}
body._touch .menu__arrow::after {
    display: block;
    margin-left: 10px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #fff;
    width: 0;
    height: 0;
}
.menu__arrow._active::after {
    transform: rotate(-180deg);
}

.search-form__row .icon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
}

#regiration_form fieldset:not(:first-of-type) {
    display: none;
}
.loader {
    display: none;
}
.loader.active {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.loader .car {
    padding: 0;
}
.car__body {
    animation: shake 0.2s ease-in-out infinite alternate;
}
.car__line {
    transform-origin: center right;
    stroke-dasharray: 22;
    animation: line 0.8s ease-in-out infinite;
    animation-fill-mode: both;
}
.car__line--top {
    animation-delay: 0s;
}
.car__line--middle {
    animation-delay: 0.2s;
}
.car__line--bottom {
    animation-delay: 0.4s;
}
@keyframes shake {
    0% {
        transform: translateY(-1%);
    }
    100% {
        transform: translateY(3%);
    }
}
@keyframes line {
    0% {
        stroke-dashoffset: 22;
    }
    25% {
        stroke-dashoffset: 22;
    }
    50% {
        stroke-dashoffset: 0;
    }
    51% {
        stroke-dashoffset: 0;
    }
    80% {
        stroke-dashoffset: -22;
    }
    100% {
        stroke-dashoffset: -22;
    }
}

.price {
    padding-top: 70px;
    padding-bottom: 60px;
}
.price__item:not(:last-child) {
    margin-bottom: 35px;
}
.price__wrapper {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(2,1fr);
}
.price__item-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 37px;
    color: #000000;
    margin-bottom: 15px;
}
.price__wrapper-title,
.price__wrapper-price{
    font-weight: 600;
    font-size: 16px;
    color: #000000;
}
.price__wrapper-title span,
.price__wrapper-price span{
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}
@media (max-width: 768px) {
    .price__wrapper {
        grid-template-columns: repeat(1,1fr);
    }
}

