@font-face { 
  font-family: "Rubik";
  src: url('../Rubik/Rubik-Light.ttf') format('truetype'); 
  font-weight:300; 
  font-style: normal; 
}
@font-face { 
  font-family: "Rubik";
  src: url('../Rubik/Rubik-Regular.ttf') format('truetype'); 
  font-weight:400; 
  font-style: normal; 
}

@font-face { 
  font-family: "Rubik";
  src: url('../Rubik/Rubik-Medium.ttf') format('truetype'); 
  font-weight:500; 
  font-style: normal; 
}
@font-face { 
  font-family: "Rubik";
  src: url('../Rubik/Rubik-SemiBold.ttf') format('truetype'); 
  font-weight:600; 
  font-style: normal; 
} 
@font-face { 
  font-family: "Rubik";
  src: url('../Rubik/Rubik-Bold.ttf') format('truetype'); 
  font-weight:700; 
  font-style: normal; 
} 
@font-face { 
  font-family: "Rubik";
  src: url('../Rubik/Rubik-ExtraBold.ttf') format('truetype'); 
  font-weight:800; 
  font-style: normal; 
} 

* {
  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;
  /* основной используемый шрифт на сайте по умолчанию */
  font-family: "Rubik";
  font-weight: 400;
  /* основной цвет шрифта на сайте */
  color: #000000;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
/* ---------------------------------------- */
body._lock {
  overflow: hidden;
}
.wrapper {
  /* overflow: clip; чтобы исключить горизонтальный скролл */
  overflow: clip;
  min-height: 100%;
  width: 100%;
  /* max-width: 1400px; */
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
}
/* ------------------------------------------- */

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

/* ----------------------------------------------- */
.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 {  
  color: #060606;
  font-size: 60px;
}
@media (max-width: 1535px) {
  .title {
    font-size: 40px;
  }
}
@media (max-width: 1279px) {
  .title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .title {
    font-size: 28px;
  }
}

/* блок с кнопкой для копирования кода */
.copu-button__block {
  max-width: 1440px;
  width: 100%;
  margin: 15px auto;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* разрешаем основному блоку page увеличиваться на всю высоту экрана, прижимая тем самым футер к низу */
.page {
  flex: 1 1 auto;
}

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

/* header */

.header {
  position: relative;
  padding-bottom: 46px;
}
.header__container {
  position:relative;
  z-index:1;
}
.header__top {
  /* min-height: 110px; */
  padding: 12px 0px 12px 0px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  text-align: center;
  position: relative;
  margin: 0 0 16px;
}
.header__logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 16px;
  background: #5d58583d;
  backdrop-filter: blur(25px);
  border-radius: 24px;
}

.header__city-logos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 8px 16px;
  background: #5d58583d;
  backdrop-filter: blur(25px);
  border-radius: 24px;
}

.header__logo {
  display: block;
  padding-top: 8px;
  margin-bottom: 8px;
  width: 180px;
}
@media (max-width: 992px) {
  .header__logo {
    width: 145px;
    padding-top: 7px;
    margin-bottom: 7px;
  }
  .header__logos,
  .header__city-logos {
    border-radius: 18px;
    padding: 7px 15px;
  }
}
@media (max-width: 480px) {
  .header__top {
    padding: 10px 15px 10px 0px;
  }
  .header__logo {
    width: 120px;
    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;
}
@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;
  }
}
.copy-btn {
  position: relative;
  top: 0;
  min-height: 42px;
  min-width: 200px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  font-size: 16px;
  border-radius: 12px;
  color: #060606;
  transition: all 0.2s ease 0s;
  box-shadow: 0 3px 0 2px #fa529e;
}
.header__button {
  position: relative;
  margin-bottom: 25px;
}
.copy-btn:active {
  background-color: #ededed;
  position: relative;
  top: 3px;
  box-shadow: 0 2px 0 0px #fa529e;
}
@media (any-hover: hover) {
  .copy-btn:hover {
    background-color: #f0f8ff;
  }
}
.copy-btn img {
  display: block;
  width: 15px;
  height: 15px;
  margin-left: 20px;
}
.tooltip {
  display: none;
  position: absolute;
  top: -24px;
  right: 0;
  background-color: #fff;
  line-height: 1.3;
  padding-bottom: 2px;
  border: 1px solid #111;
  border-radius: 8px;
  width: 120px;
  height: 20px;
  justify-content: center;
  align-items: center;
}

.header__info {
  color: #000000;
}
.header__image {
  overflow: hidden;
}
.header__image img {
  width: 52%;
}
@media (max-width: 767px) {
  .header__image img {
    width: 27%;
    display: block;
    margin: 0 auto;
  }
}
.header__title { 
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media (max-width: 1535px) {
  .header__title {
    font-size: 58px;
  }
}
@media (max-width: 1279px) {
  .header__title {
    font-size: 50px;
  }
}
@media (max-width: 992px) {
  .header__title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .header__title {
    font-size: 32px;
  }
}
.header__text {
  font-size: 28px;
  font-weight: 500;
}
/* --------------------------main----------------------- */
.page {
}

.main__body {
}

.header__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.header__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.body-main {
}
.body-main__container {
}

/* секция с предложением */

.order {
  margin-bottom: 100px;
}
@media (max-width: 1535px) {
  .order {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .order {
    margin-bottom: 40px;
  }
}
.order__container {
}
.order__body {
  position: relative;
  margin-top: -30px;
  overflow: hidden;
  padding: 0px 20px 30px;
  border-radius: 30px;
}
.order__title {
  display: block;
  font-size: 18px;
  font-weight: 500;
  border-bottom: solid 1px #e3e3e3;
  padding: 0 24px 20px;
  margin-bottom: 19px;
}
.order__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.order__content-item {
  background-color: #efefee;
  padding: 10px 15px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1535px) {
  .order__content {
    gap: 14px;
  }
}
@media (max-width: 1279px) {
  .order__content {
    gap: 12px;
  }
}

.order__content-left {
}
.left-order {
  position: relative;
}

.order__content-right {
}
.right-order {
  position: relative;
}
@media (max-width: 767px) {
  .order__content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .order__body {
    padding-left: 0px;
    padding: 15px 15px 15px;
    margin: -30px -15px 0px;
  }
}
.left-order__title,
.right-order__title {
  color: #060606;
  font-size: 50px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 16px;
}

.order-text {
  line-height: 1.3;
  margin-bottom: 12px;
}
.order-text p {
  line-height: 1.3;
}
.order-text ul li {
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.order-text ul li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #000;
}
@media (max-width: 1535px) {
  .left-order__title,
  .right-order__title {
    font-size: 40px;
  }
}
@media (max-width: 1279px) {
  .left-order__title,
  .right-order__title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .left-order__title,
  .right-order__title {
    font-size: 28px;
  }
  .order-text {
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  .left-order__title,
  .right-order__title {
    font-size: 26px;
  }
}

.left-order__image {
  margin-bottom: 24px;
}
.left-order__image img {
  display: block;
  margin: 14px auto 0px;
  max-width: 50%;
  aspect-ratio: 4/1;
}

.right-order__price {
  padding-top: 20px;
  text-align: center;
  color: rgba(33, 32, 31, 0.3);
  font-size: 15px;
  font-weight: 500;
}
.right-order__price p span {
  color: #060606;
  font-size: 27px;
}
.right-order__image {
  margin-bottom: 24px;
}
.right-order__image img {
  display: block;
  margin: 14px auto 0px;
  max-width: 50%;
  aspect-ratio: 4/1;
}
@media (max-width: 767px) {
  .left-order__image img {
    max-width: 40%;
  }
  .right-order__image img {
    max-width: 40%;
  }
}

.order__button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  min-height: 52px;
  border-radius: 14px;
  padding: 5px 25px;
  background-color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 34px;
  transition: all 0.25s ease 0s;  
}
.order__button-how {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  min-height: 52px;
  border-radius: 14px;
  padding: 5px 25px;
  background-color: #000000;
  font-size: 20px;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 34px;
  transition: all 0.25s ease 0s;
  column-gap: 10px;
}
.order__button-how img{
  display: block;
  width: 42px;
  flex:0 0 45px;
  height: 42px;
}
@media (any-hover: hover) {
  .order__button:hover {
    background-color: #7a7a7a;
  }
}
@media (max-width: 767px) {
  .order__button {
    min-height: 46px;
    padding: 5px 16px;
    font-size: 20px;
    margin-bottom: 26px;
  }
}

/* вопрос-ответ */
.faq {
  margin-bottom: 100px;
}

@media (max-width: 1535px) {
  .faq {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .faq {
    margin-bottom: 40px;
  }
}
.faq__container {
  padding: 0 56px;
}
.faq__item {
  font-weight: 500;
}
.faq__label {
  font-size: 24px;
  margin-bottom: 10px;
}
.faq__text {
  font-size: 40px;
  line-height: 1.3;
  max-width: 90%;
}
.faq__text span {
  background: url("../img/marker-blue.svg") 0 0 / 100% 100% no-repeat;
  padding: 0px 10px;
}
.faq__item:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 1535px) {
  .faq__container {
    padding: 0 40px;
  }
  .faq__item:not(:last-child) {
    margin-bottom: 60px;
  }
  .faq__label {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .faq__text {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .faq__container {
    padding: 0 16px;
  }
  .faq__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .faq__label {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .faq__text {
    font-size: 22px;
    max-width: none;
  }
}

/* адрес */

.adres {
  margin-bottom: 100px;
}

@media (max-width: 1535px) {
  .adres {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .adres {
    margin-bottom: 40px;
  }
}
.adres__container {
  padding: 0 56px;
}
.adres__title {
  margin-bottom: 24px;
  font-weight: 500;
}
.adres__item {
  font-weight: 500;
}
.adres__label {
  font-size: 24px;
  margin-bottom: 10px;
}
.adres__text {
  font-size: 40px;
  line-height: 1.3;
  max-width: 90%;
}
.adres__text span {
  background: url("//s2.svgbox.net/pen-brushes.svg?ic=brush-1&color=cbfa92") 0 0 / 100% 100% no-repeat;
  padding: 0px 10px;
}
.adres__item:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 1535px) {
  .adres__container {
    padding: 0 40px;
  }
  .adres__item:not(:last-child) {
    margin-bottom: 60px;
  }
  .adres__label {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .adres__text {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .adres__container {
    padding: 0 16px;
  }
  .adres__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .adres__label {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .adres__text {
    font-size: 24px;
    max-width: none;
  }
}

/* секция с раскрывающимися ответами на вопросы */
.faq2 {
  margin-bottom: 100px;
}

@media (max-width: 1535px) {
  .faq2 {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .faq2 {
    margin-bottom: 40px;
  }
}
@media (max-width: 992px) {
  .faq2 {
    margin-bottom: 30px;
  }
}
.faq2__container {
}
.faq2__title {
  margin-bottom: 24px;
  font-weight: 500;
}
.faq2__list {
}
.faq2__item:not(:last-child) {
  margin-bottom: 8px;
}
.faq2__item-button {  
  text-align: left;
  display: flex;  
  width: 100%;
  font-size: 26px;
  margin-bottom: 10px;
}
.faq2__item-button::after {
  content: "";
  display: block;
  margin-left: auto;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  background: url("../img/faq_arrow.svg") center / cover no-repeat;
  transition: all 0.3s ease 0s;
}
.faq2__item-button span {
  background: url("../img/marker-blue.svg") 0 0 / 100% 100% no-repeat;
  padding: 0px 10px;
}
@media (max-width: 767px) {
  .faq2__item-button {
    font-size: 20px;
  }
  .faq2__item-button::after {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
  }
}
.faq2__item-button.active::after {
  transform: rotate(180deg);
}
.faq2__item-desc {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0px 0px;
  font-size: 18px;
  transition: all 0.3s ease 0s;
  border-radius: 12px;
  background-color: #efefee;
}
.faq2__item-desc > p {
  overflow: hidden;
}
.faq2__item-desc.open {
  grid-template-rows: 1fr;
  padding: 10px 6px 10px 6px;
}

/* секция со ссылкой на приложение */

.app {
  margin-bottom: 100px;
}
@media (max-width: 1535px) {
  .app {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .app {
    margin-bottom: 40px;
  }
}
.app__container {
}
.app__body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .app__body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.app__video {
  padding: 60px;
  position: relative;
  border-radius: 60px;
  overflow: hidden;
  aspect-ratio: 695 / 946;
  background-color: #efefee;
}

.app__video-label {
  font-size: 24px;
  position: relative;
  color: #060606;
  margin-bottom: 30px;
}
.app__video-title {
  position: relative;
  color: #060606;
  font-size: 60px;
}
@media (max-width: 1535px) {
  .app__video-title {
    font-size: 40px;
  }
}
@media (max-width: 1279px) {
  .app__video-title {
    font-size: 32px;
  }
}
.app__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
  object-position: top;
}
.video-app {
}

.app__link-block {
  padding: 60px;
  border-radius: 60px;
  overflow: hidden;
  background-color: #efefee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.app__qr {
  max-width: 60%;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .app__qr {
    margin-top: 30px;
  }
}
.app__qr img {
  max-width: 100%;
}

@media (max-width: 1535px) {
  .app__video {
    padding: 32px;
    border-radius: 32px;
  }
  .app__link-block {
    padding: 32px;
    border-radius: 32px;
  }
}
.app__title {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
}
.app__button {
  min-height: 48px;
  min-width: 290px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #a5f0ff;
  font-size: 16px;
  border-radius: 12px;
  color: #060606;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .app__button {
    min-width: 100%;
    padding: 8px 15px;
  }
}
@media (any-hover: hover) {
  .app__button:hover {
    background-color: #42e0ff;
  }
}

/* ссылка на все города */

.all-town {
  margin-bottom: 100px;
}
@media (max-width: 1535px) {
  .all-town {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .all-town {
    margin-bottom: 30px;
  }
}
.all-town__container {
}
.all-town__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: solid 1px #e3e3e3;
  font-size: 46px;
  line-height: 1.2;
  font-weight: 600;
  color: #060606;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.25s ease-in-out;
  max-width: 100%;
  padding-right: 20px;
}

.town.color {
  background: url("../img/marker-yellow.svg") 0 0 / 100% 100% no-repeat;
}
.color {
  background: url("../img/marker-yellow.svg") 0 0 / 100% 100% no-repeat;
  margin: -2px -6px;
  padding: 2px 6px;
}
.arrow {
  transition: all 0.25s ease-in-out;
  display: block;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: url("../img/arrow_black.svg") center / contain no-repeat;
}
@media (max-width: 1279px) {
  .all-town__link {
    font-size: 42px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .arrow {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 992px) {
  .all-town__link {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .all-town__link {
    font-size: 30px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .arrow {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    background: url("../img/arrow_black.svg") center / contain no-repeat;
  }
  .color {
    background: url("../img/marker-yellow.svg") 0 0 / 100% 100% no-repeat;
    margin: -5px -6px;
    padding: 5px 6px;
  }
}
@media (max-width: 420px) {
  .all-town__link {
    font-size: 26px;
  }
}
@media (any-hover: hover) {
  /* .all-town__link:hover .arrow {
    background: url("../img/arrow_black.svg") center / contain no-repeat;
  } */
  .all-town__link:hover {
    padding-right: 8px;
  }
}

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

.courier {
  margin-bottom: 100px;
}
@media (max-width: 1535px) {
  .courier {
    margin-bottom: 60px;
  }
}
@media (max-width: 1279px) {
  .courier {
    margin-bottom: 40px;
  }
}
.courier__container {
}
.courier__title {
  text-align: center;
  margin-bottom: 32px;
}
.courier__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.courier__items--black {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
  justify-items: center;
}
@media (max-width: 992px) {
  .courier__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .courier__items {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }
}
.courier__item {
  padding: 34px 16px 26px;
  background: #efefee;
  border-radius: 20px;
}
.courier__item--black {
  padding: 34px 16px 26px;
  background: #111;
  color:#fff;
  border-radius: 20px;  
  min-width: calc(100% - 40px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 992px) {
  .courier__item {
    padding: 26px 16px 26px;
  }
 
}
@media(max-width:767px){
  .courier__item--black {
    padding: 34px 16px 26px;    
  min-width: 100%;  
  }
}
.courier__item-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 15px 5px 15px;
  color: #2c2c2c;
  margin-left: 15px;
  min-height: 32px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 12px;
  border: 1px solid #111;
}
.courier__item-btn--black {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2px 15px 5px 15px;
  color: #fff;
  margin-left: 15px;
  min-height: 32px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  border-radius: 12px;
  border: 1px solid #fff;
}

.item-courier {
}
.item-courier__label {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  color: #2c2c2c;
  margin-left: 15px;
}
.item-courier__label--black {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  display: flex;
  color: #fff;
  margin-left: 15px;
}
.item-courier__number {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}
.courier__item--black .item-courier__number {
  width: 120px;
  height: 80px;
  margin: 0 auto 15px;
}
.item-courier__number img {
  width: 100%;
  height: 100%;
  max-width: 100%;
}
.item-courier__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #2f2f2f;
  padding: 0 7px;
}
.courier__button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.courier__button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 15px 21px;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  background-color: #d9d9d9;
  color: #060606;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .courier__button:hover {
    background-color: #efefee;
    outline: 1px solid #999;
  }
}

/* подвал */
main.page__cities + .footer {
  margin-top: -32px;
}
.footer.page__cities {
  margin-top: -32px;
}
.footer {
  background-color: #000000;
  color: #999;
  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: 120px;
  margin-bottom: 10px;
}
.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 0px;
  background-color: #f6f5f3;
}
/* компенсируем псевдоэлементом подъем подвала вверх отрицательным маржином */
.cities::after {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-color: #f6f5f3;
}
.cities__container {
}
.cities__title {
  color: #21201f;
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 32px;
}
.cities__title--big {
  font-size: 52px;
  display: flex; 
  column-gap: 15px;
}
.cities__title--big span.icon {
  display: block; 
  margin-right: auto;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: url("../img/local.svg") center / contain no-repeat;
}

@media (max-width: 992px) {
  .cities {
    padding: 30px 0px;
  }
  .cities__title {
    font-size: 40px;
  }
  .cities__title--big {
    font-size: 44px;
  }
  /* .cities__title--big span.icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  } */
}
.cities__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.cities__item {
  display: block;
  margin-right: 16px;
  margin-bottom: 12px;
  padding: 10px 16px;
  background-color: #ffffff;
  color: #21201f;
  border-radius: 16px;
  border: 1px solid #000;
  width: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 24px;
  line-height: 1.2;
  /* font-family: YS Text, Helvetica, Arial, sans-serif; */
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
.cities__item-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding-left: 70px;
  flex: 1 1 100%;
}
.cities__item-letter {
  transform: translateX(-70px);
  color: #000000;
  padding: 7px 0;
  width: 50px;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #cfd1cd;
  font-size: 30px;
  margin: 0 -51px 10px 0;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .cities__item-container {
    padding-left: 65px;
  }
  .cities__item-letter {
    transform: translateX(-65px);
  }
  .cities {
    padding: 20px 0px;
  }
  .cities__item {
    margin-right: 10px;
    margin-bottom: 16px;
    padding: 8px 12px;
    background-color: #ffffff;
    color: #21201f;
    border-radius: 16px;
    font-size: 20px;
  }
  .cities__title {
    font-size: 34px;
  }
  .cities__title--big {
    font-size: 38px;
  }
}
@media (max-width: 489px) {
  .cities {
    padding: 8px 0px;
  }
  .cities__item {
    margin-right: 8px;
    margin-bottom: 16px;
    padding: 8px 10px;
    background-color: #ffffff;
    color: #21201f;
    border-radius: 16px;
    font-size: 18px;
  }
  .cities__title {
    font-size: 32px;
  }
  .cities__title--big {
    font-size: 36px;
  }
}
.cities__item:hover {
  background-color: #21201f;
  color: #ffffff;
}

/* form */

.form {
  margin-bottom: 40px;
}
.form__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 24px;
  border-radius: 32px;
  background: #000;
}
@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;
  color: #fff; 
  border-radius: 32px;
  background-color: #000; 
  overflow: hidden;
  line-height: 1.2;
}
.form__popup.visible {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  /* 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 #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  right: 20px;
  color: #fff;
  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: #fff;
  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 {
  max-width: 606px;
  color:#fff;
  font-size: 20px;
  font-weight: 200;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1200px) {
  .form__content {
    max-width: 50%;
  }
}
@media (max-width: 767px) {
  .form__content {
    max-width: 100%;
    padding:0 20px;
  }
}
.form__title {
  font-family: "Rubik";
  font-size: 40px;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.1;
  font-weight: 500;
}
@media (max-width: 1200px) {
  .form__title {
    font-size: 36px;
  }
}
@media (max-width: 992px) {
  .form__title {
    font-size: 30px;
  }
}
.form__description {
  font-size: 20px;
  color: #fff;
  line-height: 1.3;
}
.form__description:not(:last-child) {
margin-bottom: 16px;
}
.form__social{
  display: flex;
  justify-content: center;
   gap:40px;
   margin-top: auto;
   margin-bottom: auto;
}
@media(max-width:767px){
  .form__social{
    display: flex;
    justify-content: center;
     gap:40px;
     margin-top:24px ;
     margin-bottom: auto;
  }
  .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:#fff;
  font-size: 20px;
}
.form__telegram-img{
  flex:0 0 37px;
  width: 37px;
}
.form__telegram-img img{
  max-width:100%;
}
.form__form {
}
.form__wrapper {
  background-color: #000;
  border-radius: 32px;
  padding: 20px;
}
@media(max-width:767px){
  .form__wrapper {    
    padding:24px 20px 10px;
  }
}
.form__body {
}
.form__item {
  margin-bottom: 24px;
  height: 48px;
  background-color: #000;
  /* overflow: hidden; */
}
.form__item input {
  border-radius: 16px;
  border: 1px solid hsla(230, 5%, 76%, 0.4);
  color: #000;
  height: 100%;
  width: 100%;
  font-size: 20px;
  padding: 3px 15px;
}
.form__item select {
  color: #000;
  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;
}
.just-validate-error-label{
  color:rgb(255, 65, 65)!important;
  margin-top: 4px;
  margin-bottom: 4px;
}
.form__angrement a {
  color: #24aadb;
}
.form__angrement span {  
  line-height: 1.3;  
  margin-left: 6px;
  color:#fff;
}

.form__checkbox {
}
.form__link {
}
.form__button {
  border-radius: 48px;
  background-color: #ffff99;
  color: #000;
  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 {
   color: #111111;
}