/* YS Display Cond */
@font-face {
  font-display: swap;
  font-family: "YS Display Cond";
  src:
    local("YS Display Cond"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Light.woff2") format("woff2"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-display: swap;
  font-family: "YS Display Cond";
  font-weight: normal;
  font-style: normal;
  src:
    local("YS Display Cond"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Regular.woff2") format("woff2"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Regular.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "YS Display Cond";
  font-weight: 500;
  font-style: normal;
  src:
    local("YS Display Cond"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Medium.woff2") format("woff2"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Medium.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "YS Display Cond";
  font-weight: bold;
  font-style: normal;
  src:
    local("YS Display Cond"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Bold.woff2") format("woff2"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Bold.woff") format("woff");
}

@font-face {
  font-display: swap;
  font-family: "YS Display Cond";
  font-weight: 900;
  font-style: normal;
  src:
    local("YS Display Cond"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Black.woff2") format("woff2"),
    url("..//YSDisplayCond/YS\ Display\ Cond-Black.woff") format("woff");
}

/* обнуление стандартных стилей браузеров */
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
  border: none;
}
aside,
nav,
footer,
header,
section {
  display: block;
}
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

html,
body {
  height: 100%;
  min-width: 330px;
}

body {
  line-height: 1.2;
  /* основной используемый шрифт на сайте по умолчанию */
  font-family: "YS Display Cond", Verdana, Geneva, Tahoma, sans-serif;

  font-optical-sizing: auto;
  font-style: normal;
  /* основной цвет шрифта на сайте */
  color: #000000;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
/* ---------------------------------------- */
body._lock {
  overflow: hidden;
  padding-right: 16px;
}
.wrapper {
  /* overflow: clip; чтобы исключить горизонтальный скролл */
  overflow: clip;
  min-height: 100%;
  width: 100%;
  /* max-width: 1400px; */
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: default;
}
.fancybox-content {
  border-radius: 30px;
  padding: 0;
}
/* ------------------------------------------- */

/* стили применятся ко всем объектам, содержащим строку "__container" в своем названии */
[class*="__container"] {
  /* ограничиваем максимальную ширину контейнера в пределах 1200px + добавляем по 15px для паддинга */
  max-width: 1920px;
  /* центрируем контейнер */
  margin: 0 auto;
  padding: 0px 30px;
}
@media (max-width: 767px) {
  [class*="__container"] {
    padding: 0px 20px;
  }
}

/* ----------------------------------------------- */
.text {
  font-size: 24px;
}
@media (max-width: 1535px) {
  .text {
    font-size: 22px;
  }
}
@media (max-width: 992px) {
  .text {
    font-size: 20px;
  }
}
@media (max-width: 420px) {
  .text {
    font-size: 19px;
  }
}

.title {
  font-size: 60px;
  font-weight: 900;
}
@media (max-width: 1535px) {
  .title {
    font-size: 62px;
  }
}
@media (max-width: 1279px) {
  .title {
    font-size: 52px;
  }
}
@media (max-width: 992px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .title {
    font-size: 30px;
  }
}

/* разрешаем основному блоку page увеличиваться на всю высоту экрана, прижимая тем самым футер к низу */
.page {
  flex: 1 1 auto;
}

/* ---------------------------------------- */

/* header */

.header {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 30px;
  right: 0;
  padding: 0 15px 45px;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 0 auto;
}

.header__container {
  background-color: #fff;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  padding: 10px 24px 10px 24px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  width: 100%;
}
@media (max-width: 992px) {
  .header {
    top: 20px;
    padding: 0 15px 35px;
  }
}
@media (max-width: 767px) {
  .header {
    top: 15px;
    padding: 0 15px 30px;
  }
}
.header__menu {
  padding: 14px 14px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .header__menu {
    z-index: 1;
    position: fixed;
    top: 0px;
    right: -120%;
    width: 320px;
    height: 100%;
    padding-top: 15px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    transition: all 0.3s ease 0s;
    overflow: auto;
    padding-bottom: 15px;
    background-color: #fff;
  }
  .header__menu._open {
    right: 0;
  }
  .header__menu._open .menu__list {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 15px;
    font-size: 18px;
    font-weight: 600;
    padding: 60px 20px 0px 20px;
    margin: 0px auto;
  }
  .header__menu._open .menu__item {
    padding: 5px 10px;
  }
}

.menu li {
  position: relative;
}
.menu__list {
  display: flex;
  -moz-column-gap: 50px;
  column-gap: 50px;
  row-gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 1550px) {
  .menu__list {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
.menu__link {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease 0s;
}

.menu__icon {
  display: none;
}
@media (max-width: 991.98px) {
  .menu__icon {
    display: block;
    flex: 0 0 28px;
    text-align: right;
    position: relative;
    z-index: 51;
    width: 28px;
    height: 18px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 20;
  }
  .menu__icon span,
  .menu__icon::before,
  .menu__icon::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000000;
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: calc(50% - 1px);
  }
  .menu__icon.menu-open span {
    width: 0;
  }
  .menu__icon.menu-open::before {
    top: calc(50% - 1px);
    transform: rotate(-45deg);
  }
  .menu__icon.menu-open::after {
    bottom: calc(50% - 1px);
    transform: rotate(45deg);
  }
}

.header__logo {
  display: block;
  padding-top: 8px;
  margin-bottom: 8px;
  width: 220px;
}
@media (max-width: 992px) {
  .header__logo {
    width: 185px;
    padding-top: 7px;
    margin-bottom: 7px;
  }
}
@media (max-width: 480px) {
  .header__logo {
    width: 140px;
    padding-top: 5px;
    margin-bottom: 5px;
  }
}
.header__logo img {
  object-fit: contain;
  max-width: 100%;
}

.header__content {
  border-radius: 32px;
  padding: 35px 32px 42px;
  backdrop-filter: blur(25px);
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: 70% 1fr;
  gap: 30px;
  position: relative;
  z-index: -1;
}
@media (max-width: 1535px) {
  .header__content {
    grid-template-columns: 66% 1fr;
    padding: 30px 30px 30px;
  }
}
@media (max-width: 992px) {
  .header__content {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .header__content {
    grid-template-columns: 1fr;
    padding: 25px 20px 25px;
    margin-bottom: 15px;
  }
}

.header__button {
  position: relative;
  color: #000000;
  font-size: 30px;
  white-space: nowrap;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 70px;
  min-height: 70px;
  background: #ffea00;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .header__button:hover {
    background: #fffc47c7;
  }
}
@media (max-width: 992px) {
  .header__button {
    padding: 12px 25px;
  }
}
@media (max-width: 767px) {
  .header__button {
    padding: 8px 20px;
    font-size: 22px;
    min-height: 50px;
  }
}
@media (max-width: 400px) {
  .header__top > .header__button {
    display: none;
  }
}
.header__menu .header__button {
  margin: 25px 0 0 60px;
}
@media (min-width: 992px) {
  .header__menu .header__button {
    display: none;
  }
}

/* --------------------------main----------------------- */

/* hero-section======================================== */

.hero {
  min-height: 110vh;
  border-radius: 30px 30px 30px 30px;
  overflow: hidden;
  background: url("../img/hero-bg.png") center / cover no-repeat;
}
.hero__container {
  padding: 0 0px;
}
.hero__body {
  padding-top: 135px;
  display: grid;
  gap: 5px;
}
.hero__content {
  color: #fff;
  padding: 30px;
  max-width: 70%;
  display: grid;
  gap: 45px;
}
.hero__content .header__button {
  min-height: 70px;
  font-size: 24px;
  border-radius: 32px;
  justify-self: start;
}
.hero__title {
  font-size: 84px;
  font-weight: 600;
}
.hero__text {
  font-size: 35px;
}
@media (max-width: 1300px) {
  .hero__title {
    font-size: 70px;
  }
}

@media (max-width: 1100px) {
  .hero__title {
    font-size: 50px;
  }

  .hero__text {
    font-size: 30px;
  }
}

.hero__btn {
  margin-top: 40px;
  font-size: 30px;
}
@media (max-width: 992px) {
  .hero {
    min-height: 105vh;
    background: url("../img/hero-bg-992.png") center / cover no-repeat;
  }
  .hero__content {
    max-width: 80%;
  }

  .hero__body {
  }
  .hero__text {
    font-size: 28px;
  }
  .hero__btn {
    margin-top: 30px;
    font-size: 26px;
  }
}

.hero__image {
  aspect-ratio: 16/9;
  border-radius: 50px 0 0 50px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .hero {
    border-radius: 0 0 30px 30px;
  }
  .hero__body {
  }
  .hero__image {
    aspect-ratio: 16/9;
    grid-row-start: 1;
    border-radius: 0px 0 30px 30px;
  }
  .header__container {
    top: 15px;
    padding: 10px 20px 10px 20px;
    width: 100%;
    left: 0;
    right: 0;
  }
}

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

/* prefer в лавке==================================================================  */

.prefer {
  padding: 35px 0 35px;
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .prefer {
    padding: 25px 0 25px;
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .prefer {
    padding: 20px 0 20px;
    margin-bottom: 30px;
  }
}
.prefer__container {
  background: #fff;
}
.prefer__title {
  color: #000000;
  margin-bottom: 35px;
  text-align: center;
}
@media (max-width: 767px) {
  .prefer {
    padding: 20px 0 20px;
    margin-bottom: 40px;
  }
  .prefer__title {
    margin-bottom: 20px;
  }
}

.prefer__items {
  padding: 18px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 992px) {
  .prefer__items {
    display: block;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .prefer__items {
    padding: 12px 0px;
  }
}

.item-prefer__text {
  color: #000000;
  font-size: 21px;
  letter-spacing: 1.5px;
  display: grid;
  gap: 16px;
  padding: 0 3px;
  margin-bottom: 5px;
  margin-left: -5px;
  margin-right: -5px;
}
@media (max-width: 767px) {
  .item-prefer__text {
    font-size: 16px;
  }
}
.item-prefer,
.prefer__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background-color: #f5f4f2;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 30px;
  min-height: 220px;
}
.prefer__item:first-child {
  grid-row-start: 1;
  grid-row-end: 3;
  background: url("../img/dohod.webp") bottom right / 45% 45% no-repeat;
}
@media (max-width: 992px) {
  .prefer__item:first-child {
    background: url("../img/dohod.webp") bottom right / 45% 90% no-repeat;
  }
}
@media (max-width: 550px) {
  .prefer__item:first-child {
    background: url("../img/dohod.webp") bottom right / 50% 65% no-repeat;
  }
}
.prefer__item:nth-child(2) {
  grid-column-start: 2;
  grid-column-end: 4;
}
.prefer__item:nth-child(5) {
  grid-column-start: 1;
  grid-column-end: 3;
  min-height: 50px;
  background: #f5f4f2 url("../img/kolobike.webp") 93% 95% / 30% 100% no-repeat;
}
.prefer__item:nth-child(5) .item-prefer__title,
.prefer__item:nth-child(5) .item-prefer__text {
  max-width: 65%;
}
.prefer__item:nth-child(8) {
  grid-column-start: 2;
  grid-column-end: 4;
  background: #f5f4f2 url("../img/shield1.webp") 93% 95% / 30% 100% no-repeat;
}
.prefer__item:nth-child(8) .item-prefer__title,
.prefer__item:nth-child(8) .item-prefer__text {
  max-width: 65%;
}
@media (max-width: 767px) {
  .prefer__item:nth-child(8) {
    grid-column-start: 2;
    grid-column-end: 4;
    background: #f5f4f2;
  }
  .prefer__item:nth-child(8) .item-prefer__title,
  .prefer__item:nth-child(8) .item-prefer__text {
    max-width: 100%;
  }
}
.prefer__item:nth-child(12) {
  grid-row: span 2;
  background: #f5f4f2 url("../img/support.webp") 93% 95% / 36% 60% no-repeat;
}
.prefer__item:nth-child(13) {
  grid-column: span 2;
  background: #f5f4f2 url("../img/shield1.webp") 93% 95% / 30% 100% no-repeat;
}
.prefer__item:nth-child(13) .item-prefer__title,
.prefer__item:nth-child(13) .item-prefer__text {
  max-width: 65%;
}
.item-prefer.yellow {
  background-color: #ffea00;
}
.item-prefer__title {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.8px;
}
@media (max-width: 992px) {
  .item-prefer {
    margin-bottom: 8px;
    min-height: auto;
  }
}

.prefer__items-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f4f2;
  border-radius: 38px;
  padding: 0 32px;
  height: 82px;
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 4;
  font-size: 32px;
}
.prefer__items-button svg {
  max-width: 22px;
  transition: all 0.3s ease 0s;
}
.prefer__items-button.active svg {
  transform: rotate(180deg);
}
.prefer__items-button ~ .prefer__item {
  display: none;
}
.prefer__items-button.active ~ .prefer__item {
  display: block;
}

/* /factors */
.factors {
  margin-bottom: 100px;
}
.factors__container {
}
.factors__title {
  margin-bottom: 64px;
}
.title {
}
.factors__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 1180px) {
  .factors {
    margin-bottom: 60px;
  }
  .factors__title {
    margin-bottom: 34px;
  }
  .factors__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .factors {
    margin-bottom: 40px;
  }
  .factors__body {
    grid-template-columns: 1fr;
  }
}
.factors__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background-color: #f5f4f2;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 32px;
  min-height: 165px;
}
.factors__item-title {
  font-size: 26px;
  font-weight: 600;
}
@media (max-width: 992px) {
  .factors__item-title {
    font-size: 24px;
  }
}
.factors__item-text {
  font-size: 18px;
}
.factors__item-image {
  grid-column: 3/4;
  grid-row: 1/3;
  padding: 0;
}
@media (max-width: 1180px) {
  .factors__item-image {
    grid-column: 2/3;
    grid-row: 1/3;
  }
}
@media (max-width: 767px) {
  .factors__item-image {
    grid-column: 1/2;
    grid-row: 5/6;
    max-height: 220px;
  }
  .factors__item {
    min-height: auto;
  }
}
.factors__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*transport ====================*/

.transport {
  background-color: #f1f0ed;
  padding: 96px 0 96px;
  border-radius: 56px;
}
.transport__container {
}
.transport__title {
  font-size: 68px;
  margin-bottom: 70px;
}
@media (max-width: 1100px) {
  .transport {
    background-color: #f1f0ed;
    padding: 46px 0 46px;
    border-radius: 38px;
  }
  .transport__title {
    font-size: 60px;
    margin-bottom: 50px;
  }
}
.transport__body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 30px;
}
.transport__button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .transport {
    padding: 56px 0 56px;
    border-radius: 38px;
  }
  .transport__body {
    grid-template-columns: repeat(2, 1fr);
  }
  .transport__title {
    font-size: 50px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .transport__body {
    grid-template-columns: 1fr;
  }
  .transport__title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.transport__item {
  background-color: #fff;
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.item-transport {
}
.item-transport__label {
  position: relative;
  z-index: 20;
  margin: 0 0 16px 0;
  color: #000;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -0.64px;
}
@media (max-width: 767px) {
  .item-transport__label {
    font-size: 38px;
  }
}
.item-transport__text {
  font-size: 20px;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 28px 80px;
  background: #ffea00;
  opacity: 0;
  transition: opacity 250ms ease;
}
.item-transport__text p {
  margin-bottom: 16px;
  line-height: 105%;
}
.item-transport__text.visible {
  opacity: 1;
}
.item-transport__btn {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  background-size: contain;
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  background-color: #000;
  border-radius: 50%;
}
.item-transport__btn::before {
  content: "";
  display: block;
  width: 33%;
  height: 33%;
  margin-left: 11px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
.item-transport__btn.active {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.item-transport__btn.active::after {
  content: "+";
  display: block;
  font-size: 50px;
  color: #000;
  margin-right: 13px;
  border-top: 0px solid transparent;
  border-right: 0px solid transparent;
  transform: rotate(45deg);
}

.item-transport__image {
  max-width: 80%;
  padding-bottom: 50px;
}

/*===============caring======================*/
.caring {
  margin: 50px 0 50px;
}
.caring__container {
}
.caring__title {
  font-size: 68px;
  font-weight: 900;
  margin-bottom: 50px;
  text-align: center;
}
.caring__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 992px) {
  .caring__body {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 550px) {
  .caring__body {
    grid-template-columns: 1fr;
  }
}
.caring__item {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  background-color: #f5f4f2;
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  padding: 30px;
  min-height: 220px;
}
@media (max-width: 767px) {
  .caring__item {
    min-height: auto;
  }
}
.caring__item-title {
  font-size: 24px;
  font-weight: 600;
}
.caring__item-text {
  font-size: 20px;
}
.caring__item-image {
  grid-column: 1/2;
  grid-row: 1/3;
  padding: 30px 30px 0;
  justify-content: flex-end;
  height: 100%;
}
@media (max-width: 992px) {
  .caring__item-image {
    display: none;
  }
}
.caring__item-image img {
  max-width: 100%;
  vertical-align: bottom;
}

/*==================reviews===============*/

.reviews {
  background-color: #f1f0ed;
  padding: 96px 0 96px;
  border-radius: 56px;
}
@media (max-width: 1500px) {
  .reviews {
    background-color: #f1f0ed;
    padding: 46px 0 46px;
    border-radius: 38px;
  }
}
.reviews__container {
}
.reviews__title {
  font-size: 68px;
  margin-bottom: 64px;
  font-weight: 900;
  text-align: center;
}
.title {
}
.reviews__slider {
  margin-bottom: 28px;
}
.reviews__wrapper {
}
.swiper-wrapper {
}
.reviews__slide {
  padding: 32px;
  border-radius: 32px;
  background-color: #fff;
  display: flex;
  gap: 16px;
  min-width: 0;
}
@media (max-width: 767px) {
  .reviews__slide {
    padding: 16px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
  }
}
.swiper-slide {
}
.reviews__slide-image {
  border-radius: 10px;
  overflow: hidden;
  width: 220px;
  height: 220px;
  flex: 0 0 220px;
}
@media (max-width: 767px) {
  .reviews__slide-image {
    margin: 0 auto;
  }
}
.reviews__slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reviews__slide-info {
  display: flex;
  flex-direction: column;
}
.reviews__slide-city {
  display: inline-flex;
  margin: 0px 0 24px;
  padding: 6px 15px;
  color: #000000;
  border-radius: 9px;
  background: #f5f4f2;
  margin-right: auto;
}
.reviews__slide-name {
  display: block;
  padding-bottom: 16px;
  font-size: 28px;
  font-weight: 500;
}
.reviews__slide-text {
  font-size: 18px;
}
.reviews__slide-navigations {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
.reviews__slide-prevbtn,
.reviews__slide-nextbtn {
  width: 64px;
  height: 64px;
  background-color: #fff;
  border-radius: 16px 0px 0px 16px;
  cursor: pointer;
}
.reviews__slide-nextbtn {
  border-radius: 0px 16px 16px 0px;
}
.reviews__slide-prevbtn img,
.reviews__slide-nextbtn img {
  width: 100%;
  height: 100%;
}
.reviews__slide-nextbtn img {
  transform: rotate(180deg);
}

/* features======================= */

.features {
  padding: 65px 0 65px;
  border-radius: 58px;
  background-color: #21201f;
  margin-bottom: 50px;
}
@media (max-width: 1100px) {
  .features {
    padding: 40px 0 40px;
    margin-bottom: 30px;
  }
}
.features__container {
}
.features__title {
  font-size: 68px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
}
.title {
}
.features__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}
.features__item {
  min-height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px;
  border-radius: 38px;
  position: relative;
}

.item-features__number {
  width: 34px;
  height: 34px;
  background-color: #000;
  border-radius: 50%;
  font-size: 22px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item-features__label {
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 1.5px;
}
.item-features__image {
  margin-top: auto;
}
.item-features__image img {
  max-width: 100%;
}

/* секция с раскрывающимися ответами на вопросы */
.faq {
  margin-bottom: 100px;
  padding: 60px 0 60px;
}
.faq__body {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 16px;
}
@media (max-width: 1535px) {
  .faq {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .faq {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .faq {
    margin-bottom: 30px;
  }
}
.faq__container {
}
.faq__title {
  margin-bottom: 40px;
  font-size: 68px;
}
.faq__list {
}
.faq__tabs {
  position: relative;
  margin-top: 34px;
  margin-bottom: 40px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 500px;
  width: 100%;
}
.faq__tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 100px;
  color: #000;
  background: #f1f0ed;
  transition: background 250ms ease;
  cursor: pointer;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.02em;
}
.faq__tab.active{
  background: #ffd900;
}
.faq__item:not(:last-child) {
  margin-bottom: 8px;
}
.faq__item-button {
  background: #f1f0ed;
  color: #000;
  padding: 20px;
  border-radius: 30px;
  text-align: left;
  display: flex;
  width: 100%;
  font-size: 26px;
  margin-bottom: 10px;
}
.faq__item-button::after {
  content: "";
  display: block;
  margin-left: auto;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  background: url("../img/faq_arrov-lavka.svg") center / contain no-repeat;
  transition: all 0.3s ease 0s;
}
.faq__item-button span {
  background: url("../img/marker-blue.svg") 0 0 / 100% 100% no-repeat;
  padding: 0px 10px;
}
@media (max-width: 767px) {
  .faq__item-button {
    font-size: 20px;
  }
  .faq__item-button::after {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }
}
.faq__item-button.active::after {
  transform: rotate(180deg);
}
.faq__item-desc {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0px 0px;
  font-size: 18px;
  transition: all 0.3s ease 0s;
  border-radius: 30px;
  color: #000;
  background: #f1f0ed;
}
.faq__item-desc > p {
  overflow: hidden;
}
.faq__item-desc.open {
  grid-template-rows: 1fr;
  padding: 20px 20px 20px 20px;
}

/* как стать курьером */

/* подвал */
.footer {
  background-color: #21201f;
  color: #ffffff99;
  padding: 48px 0 40px;
  border-radius: 32px 32px 0 0;
  line-height: 1.3;
}
.footer__container {
  padding: 0 32px;
}
@media (max-width: 1535px) {
  .footer {
    padding: 40px 30px;
  }
}
@media (max-width: 992px) {
  .footer {
    padding: 30px 20px;
  }
  .footer__container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 26px 10px;
  }
  .footer__container {
    padding: 0 15px;
  }
}

.footer__logo {
  width: 190px;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .footer__logo {
    width: 150px;
  }
}
.footer__logo img {
  max-width: 100%;
}
.footer__text {
  margin-bottom: 18px;
}
.footer__text a {
  color: #d9d9d9;
}
.footer__link {
  margin-bottom: 24px;
}
.footer__link a {
  color: #d9d9d9;
}
.footer__copy {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media (any-hover: hover) {
  .footer__link a:hover {
    text-decoration: underline;
  }
  .footer__text a:hover {
    text-decoration: underline;
  }
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
}
.footer__social-item {
  display: block;
  width: 25px;
  height: 25px;
}
.footer__social-item img {
  width: 100%;
  height: 100%;
}

/* список городов */

.cities {
  padding: 40px 0 40px;
}
.cities__container {
}
.cities__title {
  margin-bottom: 30px;
}
.cities__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.cities__item {
  padding: 12px;
  font-weight: 700;
  font-size: 24px;
  color: #1b3a6a;
}
@media (max-width: 767px) {
  .cities {
    padding: 25px 0 25px;
  }
  .cities__item {
    font-size: 20px;
    padding: 8px;
  }
  .cities__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* form__modal */

.form__modal {
  display: none;
}
.form__modal.active {
  display: block;
  position: fixed;
  z-index: 50;
  top: 5%;
  left: 15%;
  width: 70%;
  overflow: auto;
  min-height: 90%;
}
@media (max-width: 767px) {
  .form__modal.active {
    left: 10%;
    width: 80%;
    overflow: auto;
    min-height: 90%;
  }
}
/* form */

.form {
  margin-bottom: 40px;
}
.form__container {
  z-index: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 30px 30px;
  border-radius: 16px;
  background: #fff;
}
.form__container::-webkit-scrollbar {
  width: 7px;
  background-color: #f9f9fd;
}
.form__container::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #18aaaa;
}
@media (max-width: 767px) {
  .form__container {
    flex-direction: column;
    padding: 20px 10px;
    gap: 5px;
  }
}
.form__popup {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-radius: 32px;
  background-color: #ebf6ff;
  overflow: hidden;
  line-height: 1.2;
}
.form__popup.visible {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  /* border-radius: 33px; */
  overflow: hidden;
}
.form-popup {
}
.form-popup__body {
  position: relative;
  height: 100%;
  min-height: 100%;
}
.form-popup__close {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 20px;
  color: #000;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}
.form-popup__close::after,
.form-popup__close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: #000;
  transform-origin: center;
}
.form-popup__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.form-popup__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.form-popup__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  gap: 15px;
  padding: 40px;
  font-size: 28px;
  height: 100%;
}
.form-popup__text p a {
  color: #111;
  text-decoration: underline;
}
.form-popup__text p a img {
  display: inline-block;
  width: 35px;
  margin-left: 7px;
}
.form-popup__text p {
  text-align: center;
}
.form-popup__title {
  font-size: 48px;
  font-weight: 300;
}
@media (max-width: 992px) {
  .form-popup__text {
    padding: 65px 30px 30px;
    font-size: 24px;
  }
  .form-popup__title {
    font-size: 32px;
  }
}
.form__content {
  font-size: 20px;
  font-weight: 200;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .form__content {
    max-width: 100%;
    padding: 0 6px;
  }
}
.form__title {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form__title {
    font-size: 30px;
  }
}
@media (max-width: 992px) {
  .form__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .form__title {
    font-size: 26px;
  }
}
@media (max-width: 535px) {
  .form__title {
    font-size: 22px;
  }
}
.form__description {
  font-size: 20px;
  line-height: 1.3;
}
.form__description:not(:last-child) {
  margin-bottom: 16px;
}
.form__social {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .form-popup__text .form__social {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 24px;
    margin-bottom: 20px;
  }
}
.form__telegram {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #000;
  font-size: 20px;
}
.form__telegram-img {
  flex: 0 0 37px;
  width: 37px;
}
.form__telegram-img img {
  max-width: 100%;
}
.form__form {
}
.form__wrapper {
  border-radius: 32px;
  padding: 5px 20px;
}
@media (max-width: 767px) {
  .form__wrapper {
    padding: 20px 20px 10px;
  }
}
.form__body {
}
.form__item {
  margin-bottom: 21px;
  height: 42px;
  /* overflow: hidden; */
}
.form__item input,
.form__item select {
  border-radius: 16px;
  border: 1px solid hsla(230, 5%, 76%, 0.4);
  color: #000;
  height: 100%;
  width: 100%;
  font-size: 20px;
  padding: 3px 15px;
  background-color: #f0f2f5;
}
.form__item select {
  color: #8c959c;
  height: 100%;
  width: 100%;
  font-size: 20px;
  padding: 3px 15px;
}

.form__item select option {
  color: #000;
  height: 100%;
  width: 100%;
  font-size: 20px;
}

.form__item input::placeholder {
  color: #8c959c;
}

/* стили инпута type file */

.form__input-file {
  position: relative;
  display: inline-block;
}
.form__input-file-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  text-decoration: none;
  font-size: 20px;
  vertical-align: middle;
  color: rgb(255 255 255);
  text-align: center;
  border-radius: 4px;
  background-color: #419152;
  line-height: 22px;
  height: 40px;
  padding: 10px 20px;
  box-sizing: border-box;
  border: none;
  margin: 5px 0 0 0;
  transition: background-color 0.2s;
}
.form__input-file-text {
  color: #7a7a7a;
  padding: 0 10px;
  line-height: 40px;
  display: inline-block;
}
.form__input-file input[type="file"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}

/* Focus */
.form__input-file input[type="file"]:focus + .form__input-file-btn {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Hover/active */
.form__input-file:hover .form__input-file-btn {
  background-color: #59be6e;
}
.form__input-file:active .form__input-file-btn {
  background-color: #2e703a;
}

/* Disabled */
.form__input-file input[type="file"]:disabled + .form__input-file-btn {
  background-color: #eee;
}

/* ошибки валидации полей */
.just-validate-error-label {
  color: rgb(255, 65, 65) !important;
  padding-left: 15px;
  margin-bottom: 4px;
}
.form__angrement a {
  color: #00adff;
}
.form__angrement span {
  line-height: 1.3;
  margin-left: 6px;
  color: #000;
}

.form__checkbox {
}
.form__link {
}
.form__button {
  border-radius: 48px;
  background-color: #ffea00;
  color: #000000;
  font-weight: 700;
  padding: 5px 15px;
  width: 100%;
  min-height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  transition: all 0.25s ease 0s;
}
.form__button:hover {
  background-color: #ffd900;
  color: #111111;
}
