* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "GenesisSansHead", sans-serif;
}

#map__ya {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

p {
  font-family: "GenesisSansText", sans-serif;
}

input {
  outline: none;
}

button {
  border: 0;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: #fff;
}

li {
  list-style-type: none;
}

.container {
  max-width: 1650px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .container {
    width: calc(100% - 15px);
  }
}

.promo {
  position: relative;
  height: 100vh;
  background: url("/img/promo_img.jpg") center center/cover no-repeat;
  color: #fff;
  font-family: "GenesisSansHead", sans-serif;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .promo {
    background: url("/img/main-mobile.jpg") center center/cover no-repeat;
  }
}

.promo__container {
  position: relative;
  border: 1px solid #9c6848;
  margin: 120px auto 0;
  padding: 80px 50px 200px;
  height: calc(100vh - 100px);
}

@media only screen and (max-width: 1024px) {
  .promo__container {
    padding: 56px 33px 61px;
  }
}

.promo__title {
  font-size: 52px;
  line-height: 110%;
  text-transform: uppercase;
  max-width: 740px;
}

@media only screen and (max-width: 1024px) {
  .promo__title {
    font-size: 44px;
  }
}

@media only screen and (max-width: 425px) {
  .promo__title {
    font-size: 30px;
  }
}

.promo__request {
  position: absolute;
  bottom: 120px;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .promo__request {
    width: 50%;
    bottom: 60px;
    left: 0;
    padding: 0 33px;
  }
}

@media only screen and (max-width: 768px) {
  .promo__request {
    width: 100%;
  }
}

.promo__request-title {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

@media only screen and (max-width: 425px) {
  .promo__request-title {
    font-size: 20px;
  }
}

.promo__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.promo__inputWrapper {
  position: relative;
  margin-right: 8px;
  width: 100%;
  max-width: 348px;
  height: 48px;
  border: 1px solid #fff;
}

@media only screen and (max-width: 1024px) {
  .promo__inputWrapper {
    margin-right: 0px;
    margin-bottom: 8px;
  }
}

@media only screen and (max-width: 768px) {
  .promo__inputWrapper {
    max-width: 100%;
  }
}

.promo__label {
  font-family: "GenesisSansText", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 24px;
}

.promo__input {
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
  border: none;
  color: #fff;
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 13px 24px;
}

.promo__btn {
  height: 48px;
  background: #000;
  color: #fff;
  border: 1px solid #fff;
  max-width: 211px;
  width: 100%;
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

@media only screen and (max-width: 768px) {
  .promo__btn {
    max-width: 100%;
  }
}

.promo__btn span {
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  z-index: 2;
  color: #000;
  display: block;
  position: relative;
}

.promo__btn:hover span {
  color: #fff;
}

.promo__btn:hover:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.promo__btn:before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.sticky {
  background: #000;
  z-index: 100;
}

.sticky .header__container {
  height: 85px;
}

.header {
  text-transform: uppercase;
  position: fixed;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 999;
  color: #fff;
}

.header__container {
  height: 100px;
  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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1200px) {
  .header__nav {
    width: 50%;
  }
}

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

.header__navList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 1200px) {
  .header__navList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header__navItem-link {
  font-size: 16px;
  font-weight: 400;
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 1440px) {
  .header__right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: right;
  }
}

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

.header__logo {
  margin-right: 22px;
}

@media only screen and (max-width: 425px) {
  .header__logo {
    margin-right: 10px;
  }
}

.header__logo-img {
  width: 138px;
}

@media only screen and (max-width: 425px) {
  .header__logo-img {
    width: 109px;
  }
}

.header__name {
  font-weight: 300;
  font-size: 14px;
  line-height: 120%;
  max-width: 150px;
}

@media only screen and (max-width: 425px) {
  .header__name {
    font-size: 11px;
    max-width: 120px;
  }
}

.header__navItem {
  padding: 0 20px;
}

@media only screen and (max-width: 1200px) {
  .header__navItem {
    padding: 5px 20px;
  }
}

.header__phone {
  margin-right: 50px;
}

@media only screen and (max-width: 1440px) {
  .header__phone {
    margin-right: 0px;
  }
}

.header__address {
  text-align: right;
  padding-top: 15px;
}

@media only screen and (max-width: 1440px) {
  .header__address {
    padding-top: 0px;
  }
}

.header__address span {
  display: block;
  font-size: 11px;
}

.header__btn-show {
  display: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .header__btn-show {
    display: block;
  }
}

.header--content {
  background: #000;
}

.responsiveMenu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 35px 15px;
  z-index: 12;
  background: #fff;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  -webkit-transition: -webkit-transform 0.35s ease-in-out;
  transition: -webkit-transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out;
  transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  background: #000;
}

.responsiveMenu__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  border-bottom: 1px solid #8c8c8c;
  padding-bottom: 20px;
  margin-bottom: 34px;
}

.responsiveMenu__logo {
  margin-right: 10px;
}

.responsiveMenu__logo-img {
  width: 109px;
}

.responsiveMenu__name {
  font-weight: 300;
  font-size: 11px;
  line-height: 120%;
  max-width: 130px;
}

.responsiveMenu__close {
  position: absolute;
  right: 0;
  cursor: pointer;
}

.responsiveMenu__navItem {
  padding: 16px 0;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.responsiveMenu__navItem:after {
  content: url("/img/Subtract.svg");
  position: absolute;
  right: 0;
}

.responsiveMenu__bottom {
  position: absolute;
  bottom: 30px;
}

.responsiveMenu__address {
  font-size: 20px;
  margin-top: 40px;
}

.responsiveMenu__phone {
  font-size: 26px;
  text-decoration: underline;
}

.is-active {
  -webkit-transform: translate(0);
  transform: translate(0);
}

.offers {
  padding: 30px 0 30px;
}

.offers__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template: 1fr 1fr / 1fr 1fr 1fr 1fr;
  grid-gap: 8px;
  height: 638px;
  font-family: "GenesisSansHead", sans-serif;
}

@media only screen and (max-width: 1024px) {
  .offers__items {
    -ms-grid-rows: 1fr 1fr 1fr;
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template: 1fr 1fr 1fr / 1fr 1fr 1fr 1fr 1fr;
    height: calc(100vh - 100px);
  }
}

@media only screen and (max-width: 768px) {
  .offers__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    height: 100%;
  }
}

.offers__item {
  position: relative;
  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .offers__item {
    height: 290px;
  }
}

.offers__item:nth-child(1) {
  grid-row: span 2;
}

@media only screen and (max-width: 1024px) {
  .offers__item:nth-child(1) {
    grid-row: span 1;
    grid-column: span 5;
  }
}

@media only screen and (max-width: 768px) {
  .offers__item:nth-child(1) {
    grid-column: span 1;
  }
}

.offers__item:nth-child(2) {
  grid-column: span 2;
}

@media only screen and (max-width: 1024px) {
  .offers__item:nth-child(2) {
    grid-column: span 3;
  }
}

@media only screen and (max-width: 768px) {
  .offers__item:nth-child(2) {
    grid-column: span 1;
  }
}

@media only screen and (max-width: 1024px) {
  .offers__item:nth-child(3) {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 768px) {
  .offers__item:nth-child(3) {
    grid-column: span 1;
  }
}

@media only screen and (max-width: 1024px) {
  .offers__item:nth-child(4) {
    grid-column: span 2;
  }
}

@media only screen and (max-width: 768px) {
  .offers__item:nth-child(4) {
    grid-column: span 1;
  }
}

.offers__item:nth-child(5) {
  grid-column: span 2;
}

@media only screen and (max-width: 1024px) {
  .offers__item:nth-child(5) {
    grid-column: span 3;
  }
}

@media only screen and (max-width: 768px) {
  .offers__item:nth-child(5) {
    grid-column: span 1;
  }
}

.offers__item-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.offers__item-title {
  position: absolute;
  top: 20px;
  left: 30px;
  color: #fff;
  z-index: 1;
  font-size: 22px;
  line-height: 130%;
  max-width: 270px;
}

.offers__item-subtitle {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: #fff;
  z-index: 1;
  font-size: 16px;
  line-height: 130%;
}

.prices {
  padding: 30px 0 30px;
  color: #000;
}

.prices__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr;
  -ms-grid-columns: 400px 1fr;
  grid-template: 1fr/ 400px 1fr;
  grid-gap: 50px;
}

@media only screen and (max-width: 1024px) {
  .prices__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.prices__title {
  font-family: "GenesisSansHead", sans-serif;
  font-size: 34px;
  line-height: 130%;
}

@media only screen and (max-width: 1024px) {
  .prices__title {
    width: 50%;
  }
}

@media only screen and (max-width: 425px) {
  .prices__title {
    width: 100%;
  }
}

@media only screen and (max-width: 375px) {
  .prices__title {
    font-size: 32px;
  }
}

.prices__models {
  max-width: 1000px;
  width: 100%;
}

.prices__item {
  position: relative;
  border-top: 1px solid #dbdbdb;
  padding: 15px 75px 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 425px) {
  .prices__item {
    padding: 15px 0 60px;
  }
}

.prices__name {
  font-family: "GenesisSansText", sans-serif;
  font-size: 24px;
  line-height: 130%;
}

@media only screen and (max-width: 425px) {
  .prices__name {
    font-size: 20px;
  }
}

.prices__value {
  position: absolute;
  left: 78%;
  top: 20px;
  font-family: "GenesisSansText", sans-serif;
  font-size: 18px;
  color: #9c6848;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .prices__value {
    left: 70%;
  }
}

@media only screen and (max-width: 425px) {
  .prices__value {
    left: 65%;
  }
}

.specials {
  color: #000;
  padding: 30px 10px 30px;
}

.specials__title {
  text-align: center;
  font-size: 38px;
  line-height: 120%;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1024px) {
  .specials__title {
    font-size: 34px;
    text-align: left;
  }
}

.specials__swiper {
  position: relative;
}

.specials__slide {
  max-height: 570px;
  padding: 0 4px;
  cursor: pointer;
}

.specials__link {
  color: #000;
}

.specials__imgWrapper {
  margin-bottom: 22px;
}

.specials__img {
  max-width: 535px;
  width: 100%;
}

.specials__slideTitle {
  font-size: 21px;
  line-height: 26px;
  margin-bottom: 6px;
  width: 70%;
}

@media only screen and (max-width: 425px) {
  .specials__slideTitle {
    font-size: 17px;
    line-height: 21px;
  }
}

.specials__slideSubtitle {
  font-family: "GenesisSansText", sans-serif;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 425px) {
  .specials__slideSubtitle {
    font-size: 14px;
    line-height: 17px;
  }
}

.specials__slideBtn {
  color: #000;
  font-family: "GenesisSansText", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
}

@media only screen and (max-width: 425px) {
  .specials__slideBtn {
    font-size: 13px;
  }
}

.specials__slideBtn:after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #9c6848;
  border-top: 1px solid #9c6848;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 9px;
}

.specials__btn-prev,
.specials__btn-next {
  position: absolute;
  top: 35%;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  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;
}

@media only screen and (max-width: 1024px) {
  .specials__btn-prev,
  .specials__btn-next {
    display: none;
  }
}

.specials__btn-next {
  right: -18px;
}

.specials__btn-prev {
  left: -20px;
}

.individualOffer {
  background: url("/img/ind_offer.jpg") center center/cover no-repeat;
  position: relative;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 0;
}

@media only screen and (max-width: 1024px) {
  .individualOffer {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 425px) {
  .individualOffer {
    padding: 60px 0;
  }
}

.individualOffer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media only screen and (max-width: 1024px) {
  .individualOffer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.individualOffer__imgWrapper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: calc(100vw - 50%);
}

@media only screen and (max-width: 1200px) {
  .individualOffer__imgWrapper {
    width: calc(100vw - 55%);
  }
}

@media only screen and (max-width: 1024px) {
  .individualOffer__imgWrapper {
    position: relative;
    top: 0;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin: 0 auto;
    width: 100%;
    -webkit-transform: initial;
    transform: initial;
  }
}

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

.individualOffer__img {
  width: 100%;
}

.individualOffer__formWrapper {
  max-width: 540px;
  width: 100%;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
}

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

@media only screen and (max-width: 1024px) {
  .individualOffer__formWrapper {
    margin: 0 auto 65px;
  }
}

@media only screen and (max-width: 768px) {
  .individualOffer__formWrapper {
    max-width: 100%;
  }
}

.individualOffer__form {
  width: 100%;
}

.individualOffer__title {
  font-size: 38px;
  line-height: 120%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .individualOffer__title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 360px) {
  .individualOffer__title {
    font-size: 30px;
  }
}

.individualOffer__subtitle {
  font-family: "GenesisSansText", sans-serif;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 40px;
}

.individualOffer__inputWrapper {
  position: relative;
  width: 100%;
  height: 48px;
  background: rgba(44, 44, 44, 0.8);
  border: 1px solid #606060;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}

.individualOffer__label {
  font-family: "GenesisSansText", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 24px;
  color: #f1f1f1;
}

.individualOffer__input {
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
  color: #f1f1f1;
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 13px 24px;
  border: none;
}

.individualOffer__btn {
  background: #fff;
  width: 100%;
  height: 48px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.individualOffer__btn span {
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  z-index: 2;
  color: #fff;
  display: block;
  position: relative;
}

.individualOffer__btn:hover span {
  color: #000;
}

.individualOffer__btn:hover:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.individualOffer__btn:before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  background: #9c6848;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.individualOffer__policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 768px) {
  .individualOffer__policy {
    max-width: 100%;
  }
}

.individualOffer__policy-input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

.individualOffer__policy-label {
  font-family: "GenesisSansText", sans-serif;
  color: #717171;
  font-size: 13px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.individualOffer__policy-text {
  font-family: "GenesisSansText", sans-serif;
  color: #717171;
  font-size: 13px;
}

.individualOffer__policy-label a {
  font-family: "GenesisSansText", sans-serif;
  color: #717171;
  font-size: 13px;
  text-decoration: underline;
}

.individualOffer__policy-check {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #ffffff;
  background: transparent;
  margin-right: 10px;
}

.individualOffer__svg {
  display: none;
  width: 100%;
  height: 100%;
}

.individualOffer__policy-input:checked
  + .individualOffer__policy-check
  .individualOffer__svg {
  display: block;
}

.advantages {
  background: url("/img/adv__img.jpg") center center/cover no-repeat;
  position: relative;
  color: #fff;
  padding: 100px 0 80px;
}

@media only screen and (max-width: 1024px) {
  .advantages {
    background: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(rgba(0, 0, 0, 0.7)),
        color-stop(31.95%, rgba(0, 0, 0, 0.245)),
        color-stop(56.81%, rgba(0, 0, 0, 0.7))
      ),
      -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.14)), to(rgba(0, 0, 0, 0.14))),
      url(/img/adv__img.jpg) center center/cover no-repeat;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.245) 31.95%,
        rgba(0, 0, 0, 0.7) 56.81%
      ),
      linear-gradient(0deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.14)),
      url(/img/adv__img.jpg) center center/cover no-repeat;
  }
}

@media only screen and (max-width: 425px) {
  .advantages {
    padding: 60px 0 60px;
  }
}

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

@media only screen and (max-width: 1024px) {
  .advantages__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.advantages__title {
  font-size: 38px;
  line-height: 120%;
  max-width: 500px;
}

@media only screen and (max-width: 1024px) {
  .advantages__title {
    margin: 0 auto;
    margin-bottom: 160px;
  }
}

@media only screen and (max-width: 768px) {
  .advantages__title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 425px) {
  .advantages__title {
    margin-bottom: 60px;
  }
}

.advantages__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 500px;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 1024px) {
  .advantages__items {
    margin: 0 auto;
    max-width: 550px;
  }
}

@media only screen and (max-width: 500px) {
  .advantages__items {
    max-width: 100%;
  }
}

.advantages__item {
  max-width: 212px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 500px) {
  .advantages__item {
    width: 50%;
    padding: 0px 20px;
  }
}

.advantages__icon {
  margin-bottom: 15px;
}

.advantages__icon-img {
  width: 40px;
  height: 40px;
}

.advantages__text {
  font-size: 14px;
  line-height: 141%;
}

@media only screen and (max-width: 500px) {
  .advantages__text {
    font-size: 12px;
  }
}

.map {
  height: 730px;
  position: relative;
}

.map__ya {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

@media only screen and (max-width: 1024px) {
  .map__ya {
    height: 420px;
  }
}

.map__contacts {
  position: absolute;
  top: 100px;
  right: 20%;
  max-width: 350px;
  width: 100%;
  padding: 30px 50px;
  background: #fff;
  z-index: 100;
}

@media only screen and (max-width: 1024px) {
  .map__contacts {
    position: relative;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
    padding: 60px 0;
  }
}

@media only screen and (max-width: 550px) {
  .map__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.map__title {
  font-size: 34px;
  margin-bottom: 26px;
}

@media only screen and (max-width: 1024px) {
  .map__title {
    width: 100%;
  }
}

@media only screen and (max-width: 550px) {
  .map__title {
    font-size: 30px;
  }
}

.map__phone {
  font-size: 22px;
  color: #000;
  margin-bottom: 16px;
}

@media only screen and (max-width: 1024px) {
  .map__phone {
    width: 50%;
  }
}

@media only screen and (max-width: 550px) {
  .map__phone {
    width: 100%;
  }
}

.map__address {
  font-family: "GenesisSansText", sans-serif;
  font-size: 18px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1024px) {
  .map__address {
    width: 50%;
  }
}

@media only screen and (max-width: 550px) {
  .map__address {
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  .map__time {
    width: 50%;
  }
}

@media only screen and (max-width: 550px) {
  .map__time {
    width: 100%;
  }
}

.map__time-title {
  font-family: "GenesisSansText", sans-serif;
  font-size: 14px;
  color: #9e9e9e;
  margin-bottom: 6px;
}

.map__time-text {
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  margin-bottom: 50px;
}

.map__btn {
  width: 248px;
  height: 48px;
  overflow: hidden;
  position: relative;
  background: #9c6848;
  padding: 13px;
  border: 1px solid #9c6848;
  cursor: pointer;
}

@media only screen and (max-width: 1024px) {
  .map__btn {
    width: 50%;
  }
}

@media only screen and (max-width: 550px) {
  .map__btn {
    width: 100%;
  }
}

.map__btn span {
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  z-index: 2;
  color: #000;
  display: block;
  position: relative;
  text-align: center;
}

.map__btn:hover span {
  color: #fff;
}

.map__btn:hover:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.map__btn:before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  border: 1px solid #9c6848;
}

.successPopUp {
  position: relative;
  display: none;
  margin: 0 auto;
  max-width: 430px;
  width: 100%;
  padding: 40px;
  z-index: 10;
  -webkit-animation: linearOpen 0.25s linear;
  animation: linearOpen 0.25s linear;
  text-align: center;
  background-color: #fff;
  border: 1px solid #979797;
  -webkit-box-shadow: 0 8px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.1);
}

.popUp {
  position: relative;
  display: none;
  margin: 0 auto;
  max-width: 430px;
  width: 100%;
  padding: 40px;
  z-index: 10;
  -webkit-animation: linearOpen 0.25s linear;
  animation: linearOpen 0.25s linear;
  text-align: center;
  background-color: #fff;
  border: 1px solid #979797;
  -webkit-box-shadow: 0 8px 50px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.1);
}

.popUp__form {
  max-width: 540px;
  width: 100%;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
}

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

@media only screen and (max-width: 768px) {
  .popUp__form {
    max-width: 100%;
  }
}

.popUp__form {
  width: 100%;
}

.popUp__title {
  font-size: 48px;
  line-height: 120%;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .popUp__title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 360px) {
  .popUp__title {
    font-size: 30px;
  }
}

.popUp__subtitle {
  font-family: "GenesisSansText", sans-serif;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 40px;
}

.popUp__inputWrapper {
  position: relative;
  width: 100%;
  height: 48px;
  background: rgba(44, 44, 44, 0.8);
  border: 1px solid #606060;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}

.popUp__label {
  font-family: "GenesisSansText", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 24px;
  color: #f1f1f1;
}

.popUp__input {
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
  color: #f1f1f1;
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 13px 24px;
  border: none;
}

.popUp__btn {
  background: #fff;
  width: 100%;
  height: 48px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid #9c6848;
}

.popUp__btn span {
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  z-index: 2;
  color: #fff;
  display: block;
  position: relative;
}

.popUp__btn:hover span {
  color: #000;
}

.popUp__btn:hover:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.popUp__btn:before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  background: #9c6848;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  border: 1px solid #9c6848;
}

.label-out {
  opacity: 0;
  width: 0;
  top: 0;
}

.btn--disabled {
  pointer-events: none;
}

.errorMessage {
  position: absolute;
  top: 46px;
  font-size: 14px;
  color: red;
  padding-left: 22px;
  font-family: "GenesisSansText", sans-serif;
}

.content {
  padding: 200px 0 100px;
  max-width: 1080px;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .content {
    padding: 200px 0 100px;
  }
}

.content__title {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 80px;
  padding-bottom: 75px;
  border-bottom: 1px solid #000;
}

@media only screen and (max-width: 768px) {
  .content__title {
    font-size: 30px;
  }
}

.content__img {
  max-width: 1000px;
  width: 100%;
  margin-bottom: 30px;
}

.content__text {
  margin-bottom: 30px;
}

.content__text a {
  color: inherit;
}

.content__text p {
  font-size: 18px;
}

.content__text li {
  font-family: "GenesisSansText", sans-serif;
}

.content__btn {
  display: block;
  background: #fff;
  width: 100%;
  height: 48px;
  max-width: 249px;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid #9c6848;
  padding: 13px;
  margin-bottom: 30px;
}

.content__btn span {
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  z-index: 2;
  color: #fff;
  display: block;
  position: relative;
}

.content__btn:hover span {
  color: #000;
}

.content__btn:hover:before {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.content__btn:before {
  content: "";
  display: block;
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  background: #9c6848;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  border: 1px solid #9c6848;
}

.content__form {
  width: 100%;
  max-width: 400px;
}

.content__inputWrapper {
  position: relative;
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1px solid #606060;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}

.content__label {
  font-family: "GenesisSansText", sans-serif;
  font-weight: 400;
  font-size: 17px;
  text-transform: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  padding-left: 24px;
  color: #000;
}

.content__input {
  position: absolute;
  background: none;
  width: 100%;
  height: 100%;
  color: #000;
  font-family: "GenesisSansText", sans-serif;
  font-size: 17px;
  font-weight: 400;
  padding: 13px 24px;
  border: none;
}

.content .btn--back {
  border: 1px solid #9c6848;
  background: #9c6848;
}

.content .btn--back span {
  color: #000;
}

.content .btn--back:before {
  border: 1px solid #9c6848;
  background: #fff;
}

.content .btn--back:hover span {
  color: #fff;
}
.car {
  background: #f5f5f5;
  padding: 100px 0;
}

.car__breadcrumb {
  display: flex;
  gap: 15px;
  align-items: center;
  color: black;
  padding: 40px 0 30px;
  font-family: "GenesisSansText", sans-serif;
}

.car__row {
  display: grid;
  grid-template-columns: 935px auto;
  gap: 60px;
  align-items: flex-start;
}

@media only screen and (max-width: 1439px) {
  .car__row {
    grid-template-columns: 935px;
  }
}

@media only screen and (max-width: 1023px) {
  .car__row {
    grid-template-columns: 100%;
  }
}

.car__swiper {
  width: 100%;
  margin-bottom: 48px;
}

.car-pagination {
  margin-top: 10px;
  text-align: center;
}

.car__btn-prev,
.car__btn-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border: 5px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  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;
}

@media only screen and (max-width: 1024px) {
  .specials__btn-prev,
  .specials__btn-next {
    display: none;
  }
}

.car__btn-next {
  right: 15px;
}

.car__btn-prev {
  left: 15px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.car .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}

.car .swiper-pagination-bullet-active {
  background: #9c6848;
}

.car .swiper-button-disabled {
  opacity: 0;
}

.car__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.car__info {
  position: sticky;
  top: 110px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  background: #ffffff;
}

@media only screen and (max-width: 1439px) {
  .car__info {
    display: none;
  }
}
.car__info--mobile {
  position: relative;
  top: 0;
  display: none;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1439px) {
  .car__info--mobile {
    display: block;
  }
}

.car__title {
  font-weight: 400;
  font-size: 26px;
  line-height: 29px;
  padding: 20px 40px;
  border-bottom: 1px solid #d9d9d9;
  font-family: "GenesisSansText", sans-serif;
}
@media only screen and (max-width: 1023px) {
  .car__title {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .car__title {
    font-size: 22px;
    line-height: 25px;
  }
}

.car__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 45px;
  padding: 30px 40px;
}
@media only screen and (max-width: 1439px) {
  .car__specs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 1023px) {
  .car__specs {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px 20px;
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .car__specs {
    grid-template-columns: 1fr 1fr;
  }
}

.car__spec--full {
  grid-column: span 2;
}
@media only screen and (max-width: 1023px) {
  .car__spec--full {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 767px) {
  .car__spec--full {
    grid-column: span 2;
  }
}

.car__spec-title {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  margin-bottom: 6px;
  color: #9c6848;
  font-family: "GenesisSansText", sans-serif;
}

.car__spec-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  font-family: "GenesisSansText", sans-serif;
}

.car__spec-text--large {
  font-size: 22px;
  line-height: 25px;
}

.car__tth {
  background: #ffffff;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 50px 40px;
}
@media only screen and (max-width: 1023px) {
  .car__tth {
    padding: 30px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .car__tth {
    padding: 0;
  }
}

.car__tth-group {
  width: 100%;
}

.car__tth-title {
  font-weight: 400;
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 30px;
  font-family: "GenesisSansText", sans-serif;
}
@media only screen and (max-width: 767px) {
  .car__tth-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 0;
    padding: 26px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}

.car__tth-cols {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 73px;
  column-gap: 73px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 1023px) {
  .car__tth-cols {
    -moz-column-gap: 39px;
    column-gap: 39px;
  }
}
@media only screen and (max-width: 767px) {
  .car__tth-cols {
    -moz-column-count: 1;
    column-count: 1;
    margin-bottom: 0;
  }
}

.car__tth-col {
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .car__tth-col {
    padding: 28px 20px;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
}

.car__tth-subtitle {
  color: #9c6848;
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  margin-bottom: 20px;
  font-family: "GenesisSansText", sans-serif;
}
@media only screen and (max-width: 767px) {
  .car__tth-subtitle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .car__tth-content {
    padding-top: 20px;
  }
}

.car__tth-option {
  position: relative;
  padding-left: 33px;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  font-family: "GenesisSansText", sans-serif;
}

.car__tth-option:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 6px;
  height: 6px;
  background: black;
  border-radius: 100%;
}

@media only screen and (max-width: 1023px) {
  .car__tth-option {
    padding-left: 29px;
  }
  .car__tth-option:before {
    left: 7px;
  }
}

@media only screen and (min-width: 768px) {
  .js-toggle-trigger {
    pointer-events: none;
  }
  .js-toggle-trigger svg {
    display: none;
  }
}
.js-toggle-trigger svg {
  transition: all 0.3s linear;
}
.js-toggle-trigger.active svg {
  transform: rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .js-toggle-content {
    display: none;
  }
}
.header__navItem--dropdown {
  position: relative;
}

.header__dropdownMenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header__dropdownMenu.is-visible {
  opacity: 1;
  visibility: visible;
}

.header__dropdownItem {
  padding: 0;
}

.header__dropdownLink {
  display: block;
  padding: 8px 20px;
  color: #333;
  white-space: nowrap;
}

.header__dropdownLink:hover {
  background-color: #f5f5f5;
  color: #0049b7;
}
/*# sourceMappingURL=style.css.map */
