

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}



.index-header {
  background-image: url('../img/header-bg.jpg');
  background-size: cover;
  background-position: top center;
  padding-bottom: 218px;
  background-repeat: no-repeat;
}

.page-header__wrapper {
  position: relative;
}

.page-header {
  display: flex;
  align-items: center;
  padding: 32px 0;
}

.side-menu__btn {
  display: none;
}

.page-header__logo {
  width: 190px;
  margin-right: 83px;
}

.header-nav {
  margin-right: auto;
}

.header-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
}



.header-nav__item a {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  margin-right: 40px;
  transition: 0.3s;
  position: relative;
}

.header-nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.header-nav__item a:hover::after {
  opacity: 1;
  visibility: visible;
}

.header-nav__item:last-child a {
  margin-right: 0;
}

.user-nav__list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.user-nav__item a {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  margin-right: 18px;
}

.user-nav__item :last-child a {
  margin-right: 0;
}

.user-nav__login a {
  position: relative;
}

.user-nav__login a::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 14px;
  left: -18px;
  top: 0px;
  background-image: url('../img/user-nav__login-img.png');
  background-size: cover;
}

.user-nav__login a::after {
  content: "/";
  position: absolute;
  color: #ffffff;
  font-family: Montserrat;
  top: 2px;
  right: -30px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 18px;
}

.user-nav__profile {
  position: relative;
  display: flex;
  align-items: center;
}

.user-nav__profile img {
  width: 41px;
  height: 41px;
  border-radius: 50%;
}

.user-nav__btn {
  width: 12px;
  height: 7px;
  background-color: transparent;
  padding: 0;
  border: none;
  background-image: url('../img/arrow-down.png');
  cursor: pointer;
  outline: none;
}

.user-nav__item .user-nav__logout,
.user-nav__item .user-nav__settings {
  position: absolute;
  bottom: -18px;
  right: -15px;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  margin: 0;
}


.user-nav__item .user-nav__logout {
  bottom: -48px;
  right: 0;
}



.user-nav__item .user-nav__logout--visible,
.user-nav__item .user-nav__settings--visible {
  visibility: visible;
  opacity: 1;
}




.side-menu {
  display: none;
}

.index-header__wrapper {
  padding-top: 100px;
}

.index-header__title {
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 46px;
  font-weight: 900;
  line-height: 61.48px;
  margin: 0;
  margin-bottom: 64px;
}

.index-header__title b {
  color: #def99e;
}

.index-header__subtitle {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 25px;
  font-weight: 500;
  margin: 0;
  margin-bottom: 88px;
}

.index-header__btn-wrapper {
  display: flex;
  align-items: center;
}

.index-header__btn {
  width: 298px;
  height: 72px;
  border-radius: 3px;
  background-color: #35b77e;
  background-image: linear-gradient(-26deg, #FFCD00 0%, #FFCD00 100%);
  color: #ffffff;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-left: 40px;
  margin-right: 30px;
  transition: 0.3s;
}


@-webkit-keyframes shakeMe {

  2%,
  18% {
    transform: translate3d(-5px, 0, 0);
  }

  4%,
  16% {
    transform: translate3d(5px, 0, 0);
  }

  6%,
  10%,
  14% {
    transform: translate3d(-5px, 0, 0);
  }

  8%,
  12% {
    transform: translate3d(5px, 0, 0);
  }

  18.1% {
    transform: translate3d(0px, 0, 0);
  }
}


@keyframes shakeMe {

  2%,
  18% {
    transform: translate3d(-5px, 0, 0);
  }

  4%,
  16% {
    transform: translate3d(5px, 0, 0);
  }

  6%,
  10%,
  14% {
    transform: translate3d(-5px, 0, 0);
  }

  8%,
  12% {
    transform: translate3d(5px, 0, 0);
  }

  18.1% {
    transform: translate3d(0px, 0, 0);
  }
}


.index-header__btn.index-header__btn--buyout {
  display: none;
  margin-bottom: 0;
  background-image: linear-gradient(-26deg, #ffc000 0%, #ff8400 100%);
}

.index-header__btn:hover {
  transform: scale(1.02);
}

.index-header__btn::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 10px;
  left: 29px;
  background-image: url('../img/arrow-right.png');
}

.index-header__text {
  padding: 28px 30px;
  box-shadow: 0 32px 35px 3px rgba(72, 92, 115, 0.22);
  background-color: #ffffff;
  color: #4f6278;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  position: relative;
}

.index-header__text::before {
  content: "";
  position: absolute;
  left: -18px;
  border: 10px solid transparent;
  border-right: 10px solid #fff;
}





.lots__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 30px;
  font-weight: 900;
  line-height: 61.48px;
  margin: 0;
  margin-top: -70px;
  position: relative;
  margin-bottom: 8px;
  z-index: 2;
}

.lots__title::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -50px;
  width: 1364px;
  height: 150px;
  border-radius: 20px 20px 0 0;
  background-color: #f2f3f4;
  z-index: -1;
}

.lots__slider-wrapper {
  background-color: #f2f3f4;
  padding-top: 60px;
  padding-bottom: 120px;
}

.lost-item {
  background-color: #fff;
  margin-left: 15px;
  margin-right: 15px;
  cursor: pointer;
}

.lost-item__img {
  width: 100%;
  height: 248px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}


.lost-item__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 15px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 41px;
  padding-left: 20px;
  position: relative;
}

.lost-item__title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -20px;
  left: 0;
  background-color: #f2f3f4;
}

.lost-item__start-price {
  color: #4f6278;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
  margin-bottom: 16px;
  padding-left: 20px;
}

.lost-item__sell-price {
  color: #4f6278;
  font-family: Montserrat ;
  font-size: 18px;
  font-weight: 900;
  line-height: 30.31px;
  padding-left: 20px;
}

.lost-item__sell-price span {
  color: #FFCD00;
}



.lots-CTA__wrapper {
  background-color: #f2f3f4;
  padding-bottom: 42px;
}

.lots-CTA {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lots-CTA * {
  z-index: 2;
}

.lots-CTA::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 1364px;
  height: 100px;
  border-radius: 0 0 20px 20px;
  background-color: #f2f3f4;
}

.lotslots-CTA__text {
  margin: 0;
  color: #333;
  font-family: Montserrat;
  font-size: 22px;
  font-weight: 500;
}



.lots-CTA__btn {
  width: 296px;
  height: 71px;
  background-image: url("../img/btn-big-bg.png");
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.lots-CTA__btn:hover {
  transform: scale(1.02);
}

.cost-difference {
  min-height: 905px;
  background-color: #333;
  background-image: url('../img/cost-difference-bg4.png'),
    url('../img/cost-difference-bg3.png'),
    url('../img/cost-difference-bg2.png'),
    url('../img/cost-difference-bg1.png');
  background-position: 75% 100%,
    80% 100%,
    bottom right,
    top left;
  background-repeat: no-repeat;
  padding-top: 160px;
}

.cost-difference__wrapper {
  display: flex;
  justify-content: space-between;
}

.cost-difference__side {
  width: 48%;
}

.cost-difference__title {
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 43px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 63px;
}

.cost-difference__title span {
  color: #def99e;
}

.cost-difference__subtitle {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 50px;
}


.cost-difference__list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-left: 100px;
  margin-bottom: 100px;
}

.cost-difference__item {
  color: #c6d0db;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 55px;
  position: relative;
}

.cost-difference__item::before {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  border-radius: 50%;
}

.cost-difference__item::after {
  content: attr(data-number);
  position: absolute;
  width: 58px;
  height: 58px;
  left: -78px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #487579;
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cost-difference__item:nth-child(2)::after {
  content: "02";
}

.cost-difference__item:nth-child(3)::after {
  content: "03";
}

.cost-difference__CTA-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cost-difference__CTA-wrapper.cost-difference__CTA-wrapper--mobile {
  display: none;
}

.cost-difference__CTA {
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 27px;
  margin: 0;
}

.cost-difference__btn {
  width: 296px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background-image: url('../img/btn-big-bg.png');
  background-size: cover;
  transition: 0.3s;
}

.cost-difference__btn:hover {
  transform: scale(1.02);
}

.cost-difference__text {
  color: #ffffff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
  margin-bottom: 40px;
}

.cost-difference__text.cost-difference__text--bold {
  font-weight: 700;
}

.cost-difference__more {
  color: #FFCD00;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-decoration: underline;
  text-align: center;
  display: block;
  display: none;
  border: none;
  background-color: transparent;
  margin: 0 auto;
  outline: none;
}

.why-us {
  min-height: 865px;
  background-color: #f2f3f4;
  padding-top: 150px;
  background-image: url('../img/why-us-bg2.png');
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 100%;
}

.why-us__wrapper {
  display: flex;
  align-items: flex-start;
}

.mobile-presentation {
  min-width: 649px;
  min-height: 785px;
  background-image: url('../img/why-us__mobile-img.png');
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 120px;
  padding-left: 203px;
  position: relative;
}

.why-us__info {
  position: relative;
}

.why-us__info::before {
  content: "";
  position: absolute;
  left: -210px;
  top: 20px;
  width: 183px;
  height: 5px;
  background-image: url('../img/why-us__info-bg1.png');
}



.why-us__presentation {
  margin-right: 70px;
}

.mobile-presentation__logo {
  width: 143px;
  margin-left: 30px;
  margin-bottom: 40px;
}

.mobile-presentation__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 19px;
  font-weight: 900;
  max-width: 180px;
  text-align: center;
  margin: 0;
  margin-left: 13px;
  margin-bottom: 25px;
}

.mobile-presentation__CTA {
  color: #333;
  font-family: Montserrat;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  max-width: 138px;
  margin: 0;
  margin-left: 32px;
  margin-bottom: 40px;
}

.mobile-presentation__btn {
  width: 192px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 13px;
  padding-left: 20px;
  font-weight: 700;
  text-transform: uppercase;
  background-image: url('../img/btn-big-bg.png');
  background-size: cover;
  transition: 0.3s;
}

.mobile-presentation__btn:hover {
  transform: scale(1.02);
}




.why-us__title {
  margin: 0;
  margin-bottom: 60px;
  color: #333;
  font-family: Montserrat ;
  font-size: 38px;
  line-height: 45.76px;
}

.why-us__title span {
  color: #FFCD00;
}

.why-us__list {
  padding: 0;
  margin: 0;
  list-style: none;
  padding-left: 110px;
  position: relative;
}

.why-us__list::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 00px;
  width: 5px;
  height: 333px;
  background-image: url('../img/why-us__info-bg2.png');
}



.why-us__item {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  position: relative;
  margin-bottom: 25px;
}

.why-us__item::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 12px;
  background-image: url('../img/checked.png');
  background-size: cover;
}

.footer {
  min-height: 500px;
  padding-top: 60px;
}

.footer__wrapper {
  display: flex;
  align-items: flex-start;
}

.footer-contacts {
  width: 430px;
  margin-right: 100px;
}

.footer-contacts__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 15px;
  margin: 0;
  margin-bottom: 25px;
}

.footer-contacts__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
  margin-bottom: 42px;
}

.footer-contacts__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-contacts__item {
  display: flex;
  align-items: center;
}

.footer-contacts__item a {
  color: #4f5c63;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 30px;
}

.footer__social-icon {
  fill: #FFCD00;
  margin-right: 8px;
  width: 14px;
  height: 14px;
}



.footer-contacts__buttons {
  display: flex;
}

.footer-contacts__button {
  width: 183px;
  height: 47px;
  border-radius: 5px;
  background-color: #333;
  margin-right: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 400;
  line-height: 60px;
  text-transform: uppercase;
  transition: 0.3s;
  position: relative;
}

.footer-contacts__button::after {
  content: attr(data-text);
  position: absolute;
  padding: 0px 10px;
  border-radius: 5px;
  background-color: #35b77e;
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  top: -70px;
  width: 100%;

  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  text-align: center;
}

.footer-contacts__button:last-child {
  margin-right: 0;
}

.footer-contacts__button:hover {
  transform: scale(1.02);
}

.footer-contacts__button:hover::after {
  visibility: visible;
  opacity: 1;
}

.footer__mobile-icon {
  fill: #51c75b;
  margin-right: 15px;
}


.footer-nav {
  margin-right: 94px;
}


.footer-nav__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav__item a {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  margin-left: 22px;
  display: inline-block;
  margin-bottom: 52px;
}

.footer-nav__item a::before {
  content: "•";
  position: absolute;
  left: -27px;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  line-height: 65px;
}

.footer-nav__item a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -3px;
  background-color: #333;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.footer-nav__item a:hover::after {
  visibility: visible;
  opacity: 1;
}

.footer-info {
  width: 402px;
}

.footer-info__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  text-align: right;
  margin: 0;
  margin-bottom: 45px;
}

.footer-info__btn {
  width: 351px;
  height: 53px;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background-image: url("../img/btn-thin-bg.png");
  background-size: cover;
  padding-left: 30px;
  margin-bottom: 95px;
  transition: 0.3s;
}

.footer-info__btn:hover {
  transform: scale(1.02);
}

.footer-info__list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}

.footer-info__item {
  color: #333;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
}


.overlay {
  position: fixed;
  display: none;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  background-color: #ffffff;
}


.popup-close {
  position: absolute;
  right: 2px;
  top: 2px;
  font-size: 25px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background-color: transparent;
  outline: none;
}


.login-popup {
  display: none;
  width: 337px;
  min-height: 423px;
  padding: 38px 44px;
}

.login-popup__nav {
  margin-bottom: 45px;
}

.login-popup__nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: space-between;
}

.login-popup__nav-item {
  color: #333;
  font-family: Montserrat ;
  font-size: 25px;
  font-weight: 900;
}

.login-popup__nav-link {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 37.82px;
}

.login-popup__form-label {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 37.82px;
  margin-bottom: 15px;
}

.login-popup__form-input {
  width: 100%;
  height: 48px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background-color: #f8f9fa;
  border: none;
  margin-bottom: 20px;
  padding-left: 10px;
  outline: none;
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 37.82px;
}

.login-popup__form-link {
  color: #FFCD00;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
}

.login-popup__form-submit {
  width: 100%;
  height: 48px;
  border-radius: 3px;
  background-color: #f8f9fa;
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  border: none;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}


.registration-popup {
  width: 337px;
  padding: 38px 44px 28px;
  max-height: 95vh;
  overflow-y: auto;
  display: none;
}


.registration-popup__nav {
  margin-bottom: 35px;
}

.registration-popup__nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: space-between;
}

.registration-popup__nav-item {
  color: #333;
  font-family: Montserrat ;
  font-size: 25px;
  font-weight: 900;
}

.registration-popup__nav-link {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 37.82px;
}



.registration-popup__form-label {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: block;
}

.registration-popup__form-input {
  width: 100%;
  height: 48px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background-color: #f8f9fa;
  border: none;
  margin-bottom: 15px;
  padding-left: 10px;
  outline: none;
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
}


.registration-popup__form-rules {
  display: flex;
  align-items: flex-start;
}

.registration-popup__form-checkbox {
  padding-left: 45px;
  position: relative;
}

.registration-popup__form-checkbox::before {
  content: "";
  position: absolute;
  left: 00px;
  top: 50%;
  transform-origin: translateY(-50%);
  width: 25px;
  height: 26px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background-color: #f8f9fa;
}


.registration-popup__form-checkbox {
  display: none;
}

.registration-popup__form-checkbox-label {
  padding-left: 35px;
  position: relative;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  line-height: 37.82px;
  color: #333;
  margin-bottom: 18px;
}

.registration-popup__form-checkbox-label a {
  color: #FFCD00;
}

.registration-popup__form-checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 26px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background-color: #f8f9fa;
}



.registration-popup__form-checkbox:checked+.registration-popup__form-checkbox-label::before {
  content: "";
  background-size: 15px 13px;
  background-image: url("../img/checkbox.png");
  background-position: center;
  background-repeat: no-repeat;
}

.registration-popup__form-submit {
  width: 100%;
  height: 48px;
  border-radius: 3px;
  background-color: #f8f9fa;
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  border: none;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.password-popup {
  width: 337px;
  padding: 38px 44px 34px;
  display: none;
}


.password-popup__nav {
  margin-bottom: 35px;
}

.password-popup__nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: space-between;
}

.password-popup__nav-item {
  color: #333;
  font-family: Montserrat ;
  font-size: 25px;
  font-weight: 900;
  line-height: 37.82px;
}

.password-popup__nav-link {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 37.82px;
}



.password-popup__form-label {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: block;
}

.password-popup__form-input {
  width: 100%;
  height: 48px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background-color: #f8f9fa;
  border: none;
  margin-bottom: 15px;
  padding-left: 10px;
  outline: none;
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
}


.password-popup__form-submit {
  width: 100%;
  height: 48px;
  border-radius: 3px;
  background-color: #f8f9fa;
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  border: none;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.notification-popup {
    box-shadow: #00000085 5px 5px 30px;
  width: 422px;
  padding: 40px 40px 40px 37px;
  display: none;
}


.notification-popup__wrapper {
  display: flex;
  align-items: flex-start;
}

.notification-popup__img {
  width: 56px;
  height: 56px;
  margin-right: 35px;
}

.notification-popup__text {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  margin: 0;
}

.share-popup {
  width: 337px;
  padding: 35px 44px;
  display: none;
}

.share-popup__nav {
  margin-bottom: 30px;
}

.share-popup__nav-list {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: space-between;
}

.share-popup__nav-item {
  color: #333;
  font-family: Montserrat ;
  font-size: 25px;
  font-weight: 900;
  line-height: 37.82px;
}

.share-popup__count {
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 40px;
}

.share-popup__count span {
  color: #FFCD00;
}


.share-popup__form-label {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 13px;
  display: -ms-flexbox;
  display: block;
}

.share-popup__form-input {
  width: 100%;
  height: 48px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  background-color: #f8f9fa;
  border: none;
  margin-bottom: 17px;
  padding-left: 10px;
  outline: none;
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
}


.share-popup__form-submit {
  width: 100%;
  height: 48px;
  border-radius: 3px;
  background-color: #f8f9fa;
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  border: none;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.lot-popup {
  width: 401px;
  padding: 30px 30px 55px;
  border-radius: 5px;
  max-height: 95vh;
  overflow-y: auto;
  display: none;
}

.lot-popup__img {
  width: 100%;
  margin-bottom: 19px;
}

.lot-popup__tite {
  color: #333;
  font-family: Montserrat ;
  font-size: 15px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 40px;
}

.lot-popup__price {
  color: #4f6278;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 30px;
}

.lot-popup__price b {
  font-family: "Montserrat Black";
  color: #FFCD00;
}

.lot-popup__table {
  width: 100%;
  margin-bottom: 30px;
}

.lot-popup__table th {
  color: #4f6278;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 25px;
  text-align: left;
}

.lot-popup__table td {
  color: #4f6278;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
}


.lot-popup__list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 25px;
}

.lot-popup__item {
  color: #4f6278;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 15px;
}

.lot-popup__item b {
  color: #43b977;
}

.lot-popup__wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.lot-popup__btn {
  width: 140px;
  height: 39px;
  border-radius: 3px;
  background-color: #51b8e6;
  background-image: linear-gradient(-26deg, #b4c546 0%, #FFCD00 100%);
  padding: 0;
  border: none;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 20px;
  margin-bottom: 25px;
}

.lot-popup__time {
  width: 140px;
  height: 39px;
  border-radius: 3px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-family: Montserrat ;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 25px;
}

.lot-popup__date {
  color: #333;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin: 0;
}

.lot-popup__date:last-child {
  margin-left: 35px;
}

.lot-popup__date b {
  display: block;

}

.lot-popup__date--open b {
  color: #43b977;
}

.lot-popup__date--close b {
  color: #ff0000;
}


.header--white .header-nav__item a,
.header--white .user-nav__item a {
  color: #333;
}

.header--white .header-nav__item a::after {
  background-color: #333;
}

.header--white .user-nav__login a::after {
  color: #333;
}


.partner-header__wrapper {
  padding: 65px 0 90px;
  background-image: url('../img/partner-header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.partner-header__title {
  margin: 0;
  margin-bottom: 21px;
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 46px;
  font-weight: 900;
  text-shadow: 1px 1px 10px black;
}


.partner-header__text {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 23px;
  font-weight: 500;
  text-shadow: 1px 1px 10px black;
}

.partner-reward {
  overflow: hidden;
}


.partner-reward__wrapper {
  display: flex;

}

.partner-presetnation {
  width: 711px;
  padding-top: 63px;
}


.partner-presetnation__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 30px;
  font-weight: 900;
  line-height: 40px;
  margin: 0;
  margin-bottom: 38px;
}

.partner-presetnation__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  margin-bottom: 35px;
  padding-right: 95px;
}

.partner-presetnation__img {
  max-width: 802px;
  margin-left: -91px;
}

.partner-info {
  padding-top: 63px;
  background-color: #f2f3f4;
  position: relative;
}

.partner-info::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: -100%;
  background-color: #f2f3f4;
}

.partner-info__list {
  padding-left: 166px;
  margin: 0;
  list-style: none;
  margin-bottom: 45px;
}

.partner-info__item {
  color: #333;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 35px;
  position: relative;
}

.partner-info__item::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-image: url('../img/partner-info__item-img1.png');
  background-size: cover;
  background-repeat: no-repeat;
}

.partner-info__item:nth-child(2)::before {
  background-image: url('../img/partner-info__item-img2.png');
}

.partner-info__item:nth-child(3)::before {
  background-image: url('../img/partner-info__item-img3.png');
}

.partner-info__text {
  padding: 40px 75px;
  background-color: #FFCD00;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  position: relative;
  margin: 0;
  margin-bottom: 50px;
}

.partner-info__text::after {
  content: "";
  position: absolute;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #FFCD00;
  z-index: 2;
}

.partner-info__text::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 75;
  z-index: 3;
  border: 10px solid transparent;
  border-top: 10px solid #FFCD00;
}


.partner-bonus__list {
  padding: 0;
  padding-left: 72px;
  margin: 0;
  list-style: none;
  margin-bottom: 80px;
}

.partner-bonus__item {
  color: #333;
  font-family: Montserrat ;
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  width: 388px;
  justify-content: space-between;
  margin-bottom: 25px;
}

.partner-bonus__item b {
  background-image: linear-gradient(-260deg, #FFCD00 0%, #FFCD00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Montserrat;
  font-size: 90px;
  line-height: 90px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
}

.partner-bonus__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 700;
  line-height: 24px;
  padding-left: 72px;
}

.about__facts {
  padding-left: 90px;
}

.facts__title {
  color: #333;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 45px;
}

.facts__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.facts__item {
  display: flex;
  flex-direction: column;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 80px;
  position: relative;
}

.facts__item b {
  background-image: linear-gradient(-260deg, #FFCD00 0%, #FFCD00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #333;
  font-family: Montserrat;
  font-size: 91px;
  line-height: 91px;
  font-weight: 700;
  z-index: 2;
}

.facts__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 40px;
  width: 90px;
  height: 8px;
  background-color: #cbd2d8;
  z-index: 1;
}

.lead {
  padding: 75px 0 100px;
  background-color: #f2f3f4;
}

.lead__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 40px;
}

.lead__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  margin-bottom: 38px;
}

.lead__table {
  width: 100%;
  border-collapse: collapse;
}

.lead__table thead tr {
  background-color: #333;
}

.lead__table tbody tr {
  border-bottom: 3px solid #c7cdd4;
}

.lead__table th,
.lead__table td {
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  padding: 27px 0;
  /* text-align-last: left; */
}

.lead__table th {
  color: #ffffff;
}

.lead__table td {
  color: #333;
}

.lead__table th:first-child,
.lead__table td:first-child {
  padding-left: 18px;
}

.lead__table th:last-child,
.lead__table td:last-child {
  padding-left: 85px;
}


.about-header__wrapper {
  padding: 62px 0 90px;
  background-image: url('../img/about-header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about-header__title {
  margin: 0;
  margin-bottom: 22px;
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 46px;
  font-weight: 900;
  text-shadow: 1px 1px 10px black;
}


.about-header__text {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 23px;
  font-weight: 500;
  text-shadow: 1px 1px 10px black;
}

.about__wrapper {
  display: flex;
}

.about__presentation {
  padding-top: 62px;
  padding-bottom: 77px;
  width: 714px;
  position: relative;
  background-color: #fff;
}

.about__presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.mission {
  margin-bottom: 98px;
}

.mission__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 55px;
}

.mission__title br {
  display: none;
}

.mission__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  margin-bottom: 35px;
}

.mission__img {
  max-width: 802px;
  margin-left: -88px;
  position: relative;
  z-index: 2;
}

.mission__wrapper {
  width: 470px;
  margin-top: -75px;
  position: relative;
  z-index: 3;
  padding: 40px 62px 3px 43px;
  background-color: #f2f3f4;
}

.mission__wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 84px;
  background-color: #FFCD00;
}

.mission__subtitle {
  margin: 0;
  margin-bottom: 38px;
  color: #FFCD00;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

.principles__title {
  color: #333;
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 40px;
}

.principles__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.principles__item {
  margin-right: 30px;
  margin-bottom: 30px;
  padding: 32px 45px 42px;
  width: 284px;
  min-height: 182px;
  background-color: #f2f3f4;
  position: relative;
}

.principles__item::after {
  content: attr(data-number);
  position: absolute;
  right: 0;
  top: 15px;
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 71px;
  font-weight: 900;
  z-index: 1;
}


.principles__item:nth-child(even) {
  margin-right: 0px;
}

.principles__subtitle {
  color: #333;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}

.principles__text {
  margin: 0;
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
}

.about__info {
  padding-top: 68px;
}

.legal {
  padding-left: 90px;
  margin-bottom: 65px;
  position: relative;
}

.legal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 826px;
  height: 71px;
  background-image: url('../img/legal-bg.png');
}


.legal__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 30px;
}

.legal__certificates {
  display: flex;
  position: relative;
  z-index: 1;
}

.legal__certificate {
  width: 175px;
  min-height: 216px;
  background-color: #ffffff;
  margin-right: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal__img {
  width: 147px;
}



.questions {
  padding: 80px 0 70px;
  background-color: #f2f3f4;
}

.questions__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 30px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 40px;
}

.questions__wrapper {
  display: flex;
  align-items: flex-start;
}

.questions__faq {
  width: 708px;
  margin-right: 90px;
}

.faq__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq__item {
  background-color: #ffffff;
  color: #333;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 10px;
  cursor: pointer;
}

.faq__title {
  display: block;
  color: #333;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  padding: 30px 45px;
  position: relative;
}

.faq__title::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-image: url('../img/faq-accordion-img1.png');
  background-size: contain;
}

.faq__title--active {
  color: #ffffff;
  background-color: #FFCD00;

}

.faq__title--active::after {
  background-image: url('../img/faq-accordion-img2.png');
}

.faq__sublist {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-bottom: 1px;

  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}



.faq__subitem {
  padding: 18px 0;
  color: #333;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding-left: 70px;
  transition: 0.3s;
}

.faq__subitem::before {
  content: "•";
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}

.faq__subitem--active {
  background-color: #e6eaed;
  font-family: "Montserrat";
  font-weight: 700;
}

.faq__answer {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  padding: 0px 82px 0px 68px;
  margin: 44px 0 50px;
  position: relative;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, 0.5s ease-out;
}

.faq__answer--active {
  margin: 44px 0 50px;
}

.faq__answer::before {
  content: "";
  position: absolute;
  left: 50px;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #f2f3f4;
}

.faq__answer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  height: 1px;
  width: 100%;
  background-color: #e6e9ed;
}

.faq__answer:last-child::after {
  content: none;
}

.questions__more {
  width: 371px;
  min-height: 580px;
  background-color: #ffffff;
  padding: 50px 150px 50px 50px;
  background-image: url('../img/questions__more-bg1.png'), url('../img/questions__more-bg2.png');
  background-repeat: no-repeat;
  background-position: 142% 100%, 50% 80%;
}

.questions__text {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
}

.rules {
  padding: 40px 0;
}

.rules__title {
  color: #333;
  font-family: Montserrat ;
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 20px;
}

.rules__list {
  list-style: none;
}

.rules__item {
  color: #333;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 10px;
}



.reviews-header__wrapper {
  padding: 62px 0 90px;
  background-image: url('../img/reviews-header-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.reviews-header__title {
  margin: 0;
  margin-bottom: 22px;
  color: #ffffff;
  font-family: Montserrat ;
  font-size: 46px;
  font-weight: 900;
  text-shadow: 1px 1px 10px black;
}

.reviews-header__text {
  margin: 0;
  color: #ffffff;
  font-family: Montserrat;
  font-size: 23px;
  font-weight: 500;
  text-shadow: 1px 1px 10px black;
}

.reviews #hypercomments_widget {
  padding: 40px 0;
}


@media (max-width: 1400px) {
  .lots {
    background-color: #f2f3f4;
    padding-top: 30px;
  }

  .lots__title {
    margin-top: 0;
  }

  .lots__title::before {
    content: none;
  }

  .lots-CTA::before {
    content: none;
  }

  .why-us {
    background-position: bottom left, 0 375px;
  }

  .why-us__presentation {
    margin-right: 0;
  }

  .footer-contacts {
    margin-right: 50px;
  }



}


@media (max-width: 1199px) {
  .lots-CTA {
    flex-wrap: wrap;
    align-items: flex-start;
  }


  .why-us__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 41px;
  }

  .why-us__list {
    padding-left: 10px;
    border-left: none;
  }

  .why-us__list::before,
  .why-us__info::before {
    content: none;
  }

  .why-us__item {
    margin-bottom: 30px;
  }

  .footer__wrapper {
    flex-wrap: wrap;
  }


  .footer-nav {
    margin-right: 0;
    margin-left: auto;
  }

  .about__presentation {
    min-width: 600px;
  }

  .mission__img {
    width: 100%;
    margin: 0;
  }

  .mission__wrapper {
    width: 95%;
  }

  .principles__item {
    margin-right: 10px;
  }

  .legal {
    padding-left: 40px;
  }

  .legal__certificates {
    justify-content: center;
  }

  .legal__certificate {
    width: 140px;
    min-height: 173px;
    margin-right: 15px;
  }

  .legal__certificate:last-child {
    margin-right: 0;
  }

  .legal__img {
    width: 117px;
  }

  .about__facts {
    padding-left: 40px;
  }

  .facts__item b {
    font-size: 72px;
  }

  .partner-presetnation__img {
    width: 100%;
    margin: 0;
  }

  .lead__table th,
  .lead__table td {
    font-size: 10px;
    padding: 13px 0;
  }

}

@media (max-width: 991px) {
  .page-header__logo {
    width: 160px;
    margin-right: auto;
  }

  .header-nav__item a {
    margin-right: 15px;
  }

  .index-header__btn-wrapper {
    flex-direction: column;
  }

  .index-header__btn {
    margin-right: 0;
    margin-bottom: 24px;
  }

  .index-header__text {
    padding: 20px 19px;
  }

  .index-header__text::before {
    top: -10px;
    left: 50%;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-bottom: 10px solid #fff;
  }

  .cost-difference {
    padding-top: 41px;
    padding-bottom: 240px;
  }

  .cost-difference__CTA-wrapper {
    flex-direction: column;
  }

  .cost-difference__CTA {
    margin-bottom: 22px;
  }

  .why-us {
    background-position: bottom left, 0 67%;
    padding-top: 37px;
    min-height: 1150px;
  }

  .why-us__wrapper {
    flex-direction: column;
  }

  .why-us__title {
    text-align: center;
  }

  .why-us__presentation {
    order: 2;
  }

  .about__wrapper {
    flex-direction: column;
  }

/*  .about__presentation::after {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
  }*/

  .principles__list {
    justify-content: space-between;
  }

  .about__info {
    padding-top: 25px;
  }

  .legal {
    padding: 0;
  }

  .legal__title {
    text-align: center;
  }

  .legal::after {
    left: 0;
    width: 100%;
  }

  .about__facts {
    padding-left: 0;
  }

  .facts__title {
    text-align: center;
  }

  .facts__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .facts__item {
    width: 45%;
  }

  .questions__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .questions__faq {
    margin-right: 0;
    margin-bottom: 35px;
  }

  .partner-reward {
    padding: 33px 0 31px;
  }

  .partner-reward__wrapper {
    flex-direction: column;
  }

  .partner-presetnation {
    width: 100%;
    padding: 0;
  }

  .partner-info {
    background-color: transparent;
  }

  .partner-info::after {
    content: none;
  }

  .partner-info__text::after {
    content: none;
  }

  .lead__table th:last-child,
  .lead__table td:last-child {
    padding-left: unset;
  }
}

@media (max-width: 767px) {
  .index-header {
    background-image: none;
    padding-bottom: 0;
  }

  .index-header__text {
    display: none;
  }

  .index-header__btn {
    width: 289px;
    height: auto;
    padding: 20px;
  }


  .index-header__btn.index-header__btn--buyout {
    display: flex;
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation-name: shakeMe;
    animation-name: shakeMe;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  .index-header__btn::before {
    display: none;
  }


  .side-menu__btn {
    width: 22px;
    height: 20px;
    position: relative;
    margin-right: auto;
    display: block;
  }

  .side-menu__btn span,
  .side-menu__btn span::before,
  .side-menu__btn span::after {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 4px;
    background-color: #3ab77b;
  }

  .side-menu__btn span::before,
  .side-menu__btn span::after {
    content: '';
    display: block;
    transition: 0.3s;
  }

  .side-menu__btn span::before {
    transform: translateY(-8px);
  }

  .side-menu__btn span::after {
    transform: translateY(6px);
  }


  .side-menu__btn--active span {
    height: 0
  }

  .side-menu__btn--active span::before {
    transform: rotate(-45deg);
    transform-origin: center
  }

  .side-menu__btn--active span::after {
    transform: rotate(45deg);
    transform-origin: center
  }

  .page-header__logo {
    width: 188px;
    height: 27px;
    background-image: url('../img/header-logo--mobile.png');
    background-size: cover;
  }



  .page-header__logo img,
  .header-nav,
  .user-nav__item a span {
    display: none;
  }


  .user-nav__item .user-nav__settings {
    color: #333;
  }

  .user-nav__login a {
    padding-left: 5px;
  }

  .user-nav__login a::before {
    width: 16px;
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  .user-nav__login a::after {
    content: none;
  }



  .side-menu {
    display: block;
    position: absolute;
    left: 0;
    top: 91px;
    z-index: 99;
    width: 100%;
    min-height: calc(100vh - 91px);
    background-color: #333;
    transition: 0.4s;
    transform: translateX(-100%);
  }

  .side-menu.side-menu--active {
    transform: translateX(0);
  }

  .side-menu__date {
    background-color: #384b61;
    padding: 23px 14px;
    color: #ffffff;
    font-family: Montserrat ;
    font-size: 18px;
    font-weight: 900;
    margin: 0;
  }

  .side-menu-nav {
    padding: 25px 40px;
    border-bottom: 2px solid #384b61;
  }




  .side-menu-nav__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
  }

  .side-menu-nav__item a {
    color: #ffffff;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    position: relative;
  }

  .side-menu-nav__home a::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background-image: url('../img/side-menu__nav-home-img.png');
    background-size: cover;
  }

  .side-menu-nav__login a::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 14px;
    height: 14px;
    background-image: url('../img/side-menu__nav-login-img.png');
    background-size: cover;
  }

  .side-menu-contacts {
    padding: 48px 14px;
    max-width: 320px;
  }

  .side-menu-contacts__title {
    margin: 0;
    color: #fefeff;
    font-family: Montserrat ;
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 20px;
  }

  .side-menu-contacts__text {
    margin: 0;
    color: #fefeff;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 69px;
  }

  .side-menu-contacts__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
  }

  .side-menu-contacts__item a {
    display: inline-block;
    color: #ffffff;
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 500;
    line-height: 30px;
    margin-right: 30px;
    margin-bottom: 22px;
  }

  .side-menu-contacts__icon {
    margin-right: 18px;
    fill: #FFCD00;
  }

  .side-menu-contacts__buttons {
    display: flex;
  }

  .side-menu-contacts__button {
    width: 133px;
    height: 47px;
    border-radius: 5px;
    background-color: #ffffff;
    margin-right: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 400;
    line-height: 60px;
    text-transform: uppercase;
  }

  .side-menu-contacts__button:last-child {
    margin-right: 0;
  }

  .side-menu-button__icon {
    fill: #51c75b;
    margin-right: 9px;
  }


  .index-header__wrapper {
    padding-top: 56px;
    padding-bottom: 27px;
    background-image: url('../img/header-bg.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .index-header__title {
    font-size: 22px;
    font-weight: 400;
    line-height: 29.11px;
    margin-bottom: 38px;
  }

  .index-header__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 28.95px;
    margin-bottom: 80px;
  }

  .index-header__text {
    font-size: 11px;
    line-height: 22px;
    text-align: center;
  }

  .lots {
    padding-bottom: 25px;
  }

  .lots__title {
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 25px;
  }

  .lots__slider-wrapper {
    padding: 0;
    margin-bottom: 40px;
  }


  .lost-item {
    width: 270px;
    margin: 0px auto 20px;
  }

  .lots-CTA__wrapper {
    padding: 0;
  }

  .lots-CTA {
    flex-direction: column;
    align-items: center;
  }

  .lotslots-CTA__text {
    font-size: 18px;
    margin-bottom: 22px;
  }

  .lots-CTA__btn {
    margin-bottom: 22px;
    width: 262px;
    height: 63px;
    font-size: 12px;
  }

  .lotslots-CTA__text:last-child {
    margin-bottom: 0;
    font-size: 15px;
  }

  .cost-difference {
    background-image: url('../img/cost-difference-bg--mobile.png'),
      url("../img/cost-difference-bg1.png");
    background-position: 45% 100%, 0% 0%;
  }


  .cost-difference__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .cost-difference__side {
    width: 100%;
  }

  .cost-difference__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 32px;
    text-align: center;
  }

  .cost-difference__subtitle {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
  }

  .cost-difference__list {
    padding: 0;
    margin-bottom: 50px;
  }

  .cost-difference__item {
    padding-top: 82px;
    margin-bottom: 27px;
    text-align: center;
  }

  .cost-difference__item::before,
  .cost-difference__item::after {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .cost-difference__item::after {
    top: 2px;
    background-color: #4a7079;
  }

  .cost-difference__item:nth-child(1)::after {
    background-color: #3f907b;
  }

  .cost-difference__item:nth-child(2)::after {
    background-color: #457e7a;
  }

  .cost-difference__text-wrapper {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
  }

  .cost-difference__text {
    margin-bottom: 28px;
    font-size: 15px;
    text-align: center;
  }


  .cost-difference__more {
    display: block;
    margin-bottom: 30px;
    transition: 0.3s;
  }

  .cost-difference__more--active {
    opacity: 0;
    visibility: hidden;
  }

  .cost-difference__CTA-wrapper {
    display: none;
    text-align: center;
  }

  .cost-difference__CTA-wrapper.cost-difference__CTA-wrapper--mobile {
    display: flex;
  }

  .why-us {
    min-height: unset;
  }

  .mobile-presentation {
    min-width: calc(100% + 30px);
    margin-left: -15px;
    min-height: 650px;
    padding-left: 153px;
    padding-top: 70px;
  }

  .footer {
    padding-top: 33px;
    padding-bottom: 30px;
  }

  .footer-nav {
    margin: 0;
    margin-bottom: 40px;
  }

  .footer-nav__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer-nav__item {
    width: 48%;
  }


  .footer-nav__item:nth-child(2) {
    order: 3;
  }

  .footer-nav__item:nth-child(3) {
    order: 4;
  }

  .footer-nav__item:nth-child(4) {
    order: 2;
  }

  .footer-nav__item:nth-child(5) {
    order: 3;
  }

  .footer-nav__item:nth-child(6) {
    order: 5;
  }

  .footer-nav__item a {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .footer-nav__item a::before {
    left: -15px;
  }

  .footer-contacts {
    order: 2;
    margin: 0;
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
  }

  .footer-contacts__title {
    margin-bottom: 20px;
  }

  .footer-contacts__list {
    flex-wrap: wrap;
  }

  .footer-contacts__item {
    width: 49%;
    line-height: 13px;
  }

  .footer-contacts__buttons {
    justify-content: center;
  }

  .footer-contacts__button {
    width: 133px;
  }


  .footer-info {
    order: 3;
    width: 100%;
  }


  .footer-info__text {
    display: none;
  }

  .footer-info__btn {
    max-width: 100%;
    margin: 0 auto 25px;
    font-size: 13px;
  }

  .footer-info__item {
    font-size: 9px;
    font-weight: 700;
  }

  .about-header__wrapper {
    padding: 44px 0 49px;
    text-align: center;
    background-image: url('../img/about-header-bg--mobile.jpg');
    background-size: cover;
  }

  .about-header__title {
    font-size: 30px;
    margin-bottom: 9px;
  }

  .about-header__text {
    font-size: 14px;
  }

  .about__presentation {
    min-width: 100%;
    width: 100%;
    padding-top: 33px;
    padding-bottom: 28px;
  }

  .mission {
    margin-bottom: 33px;
  }

  .mission__title {
    color: #333;
    font-family: Montserrat ;
    font-size: 20px;
    font-weight: 900;
    line-height: 24px;
    text-align: center;
    margin-bottom: 29px;
  }

  .mission__title br {
    display: block;
  }

  .mission__text {
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin-bottom: 30px;
  }

  .mission__img-wrapper {
    width: calc(100% + 28px);
    margin-left: -15px;
    height: 254px;
    background-image: url('../img/mission__img2_bl.png');
    background-size: cover;
    position: relative;
    z-index: 3;
  }

  .mission__img-wrapper img {
    display: none;
  }

  .mission__wrapper {
    width: 292px;
    margin: -10px auto 0;
    padding: 40px 30px 40px 44px;
  }

  .mission__subtitle {
    margin-bottom: 34px;
  }

  .mission__wrapper .mission__text {
    text-align: left;
  }

  .principles__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 25px;
  }

  .principles__item {
    max-width: 291px;
    width: 100%;
    margin: 0 auto 10px;
  }

  .principles__item:nth-child(even) {
    margin: 0 auto 10px;
  }

  .principles__item:last-child {
    margin-bottom: 0;
  }

  .legal {
    margin-bottom: 40px;
  }

  .legal::after {
    left: -100px;
    width: 200%;
  }

  .legal__title {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .facts__title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .facts__list {
    justify-content: center;
  }

  .facts__item {
    width: 100%;
    align-items: center;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
  }

  .facts__item:last-child {
    margin-bottom: 0;
  }

  .facts__item::before {
    content: none;
  }

  .questions {
    padding: 74px 0 20px;
  }

  .questions__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
  }

  .questions__faq {
    width: calc(100% + 28px);
  }

  .faq__item {
    margin-bottom: 7px;
  }

  .faq__title {
    padding: 22px 31px;
    font-size: 12px;
    font-weight: 700;
  }

  .faq__title::after {
    content: none;
  }

  .faq__subitem {
    font-size: 11px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .faq__answer--active {
    margin: 33px 0 45px;
    overflow: visible;
  }

  .faq__answer::after {
    bottom: -45px;
  }

  .questions__more {
    width: 100%;
    max-width: 293px;
    min-height: 457px;
    padding: 40px 123px 40px 40px;
    background-size: 213px 277px, 252px 79px;
  }

  .questions__more .questions__title {
    margin-bottom: 25px;
    text-align: left;
  }

  .questions__text {
    font-size: 10px;
    line-height: 18.91px;
  }

  .partner-header__wrapper {
    padding: 48px 0;
    background-image: url('../img/partner-header-bg--mobile.jpg');
    background-size: cover;
  }

  .partner-header__title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 9px;
    text-align: center;
  }

  .partner-header__text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
  }

  .partner-presetnation__title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    margin-bottom: 25px;
  }

  .partner-presetnation__text {
    padding: 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
  }

  .partner-presetnation__img {
    margin-bottom: 36px;
  }

  .partner-info {
    padding: 0;
  }

  .partner-info__list {
    padding: 0;
    padding-left: 25%;
  }

  .partner-info__item {
    font-size: 10px;
    font-weight: 500;
    margin-bottom: 30px;
    padding-left: 62px;
  }

  .partner-info__item::before {
    width: 35px;
    height: 35px;
    left: 0px;
  }

  .partner-bonus__list {
    padding: 0;
    margin-bottom: 55px;
  }

  .partner-bonus__item {
    font-size: 14px;
    font-weight: 400;
    width: 100%;
    margin-bottom: 10px;
  }

  .partner-bonus__item b {
    font-size: 64px;
  }

  .partner-bonus__text {
    display: block;
    padding: 0;
    text-align: center;
    font-size: 9px;
  }

  .lead {
    padding: 35px 0 65px;
  }

  .lead__title {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 25px;
  }

  .lead__text {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
  }

  .lead__table-wrapper {
    overflow-x: auto;
    padding-bottom: 26px;
  }

  .lead__table-wrapper::-webkit-scrollbar {
    height: 11px;
    border-radius: 6px;
    background-color: #c9cdd3;
  }


  .lead__table-wrapper::-webkit-scrollbar-track {
    width: 11px;
    border-radius: 6px;
    background-color: #c9cdd3;
  }


  .lead__table-wrapper::-webkit-scrollbar-thumb {
    background-color: #FFCD00;
    border-radius: 6px;
  }

  .lead__table {
    width: 677px;
  }

  .lead__table th:first-child,
  .lead__table td:first-child {
    padding-left: 13px;
  }

  .rules {
    padding: 20px 0;
  }

  .rules__title {
    font-size: 16px;
  }

  .rules__list {
    padding-left: 10px;
    margin: 0;
    margin-bottom: 30px;
  }

  .rules__item {
    color: #333;
    font-family: Montserrat;
    font-size: 11px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 6px;
  }

  .reviews-header__wrapper {
    padding: 44px 0 49px;
    text-align: center;
    background-size: cover;
  }

  .reviews-header__title {
    font-size: 30px;
    margin-bottom: 9px;
  }  

  .reviews-header__text {
        font-size: 14px;
  }

  

}

@media (max-width: 540px) {
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .index-header__wrapper {
    background-image: url('../img/header-bg2.jpg');
  }

  .why-us {
    overflow: hidden;
    background-image: url("../img/why-us-bg2--mobile.png");
    background-position: 100% 100%;
  }

  .why-us__list {
    padding-left: 45px;
  }

  .why-us__item {
    font-size: 13px;
  }

  .mobile-presentation {
    min-height: 685px;
    background-position: 20% 100%;
  }

  .login-popup {
    max-width: calc(100% - 18px);
    padding: 34px 40px 35px;
    max-height: 95vh;
    min-height: unset;
    overflow-y: auto;
  }

  .login-popup__nav {
    margin-bottom: 35px;
  }

  .login-popup__form-input {
    margin-bottom: 16px;
  }

  .login-popup__nav-item {
    font-size: 22px;
  }

  .login-popup__nav-link {
    font-size: 13px;
  }


  .registration-popup {
    max-width: calc(100% - 18px);
    padding: 34px 40px 35px;
  }

  .registration-popup__nav-item {
    font-size: 22px;
  }

  .registration-popup__nav-link {
    font-size: 13px;
  }

  .password-popup {
    max-width: calc(100% - 18px);
    padding: 34px 40px 35px;
  }

  .share-popup {
    max-width: calc(100% - 18px);
    padding: 34px 40px 35px;
  }

  .share-popup__nav-item {
    font-size: 22px;
  }

  .share-popup__count {
    font-size: 13px;
  }

  .notification-popup {
    max-width: calc(100% - 18px);
    padding: 31px 40px;
  }

  .notification-popup__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .notification-popup__img {
    margin-right: 0;
    margin-bottom: 22px;
  }

  .notification-popup__text {
    text-align: center;
  }


  .lot-popup {
    max-width: calc(100% - 18px);
    padding: 0;
    padding-top: 40px;
    background-color: transparent;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.001) 42px, #fff 40px);
    top: 55%;
  }

  .lot-popup .popup-close {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 45px;
    z-index: 3;
  }

  .lot-popup__tite {
    padding-left: 18px;
    font-size: 14px;
    margin-bottom: 35px;
  }

  .lot-popup__price {
    padding-left: 18px;
    font-size: 16px;
    margin-bottom: 28px;
  }

  .lot-popup__table {
    padding-left: 18px;
  }

  .lot-popup__table td,
  .lot-popup__table th {
    font-size: 13px;
  }

  .lot-popup__list {
    padding-left: 18px;
  }

  .lot-popup__item {
    font-size: 13px;
  }

  .lot-popup__wrapper {
    padding-left: 18px;
    padding-bottom: 20px;
  }

  .lot-popup__btn {
    width: 128px;
    margin-right: 15px;
  }

  .lot-popup__date:last-child {
    margin-left: 26px;
  }

  .partner-presetnation__img {
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .partner-info__list {
    padding-left: 10px;
  }

  .partner-info__text {
    width: calc(100% + 28px);
    margin-left: -14px;
    padding: 28px 20px 30px;
    font-size: 11px;
    font-weight: 700;
  }

}

@media (max-width: 470px) {
  .mobile-presentation {
    padding-left: 143px;
  }
}

@media (max-width: 370px) {

  .mobile-presentation {
    padding-left: 45px;
    background-position: 50% 100%;
  }
}
