@import url("./fonts.css");

:root {
  font-size: 16px;
  --color-main-black: #2c2c2c;
  --color-secondary-black: #494949;
  --color-main-white: #ffffff;
  --color-main-orange: #f26210;
  --color-secondary-orange: #ce4e06;
  --color-main-green: #10cb39;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Font";
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-main-white);
}

body.lock {
  overflow: hidden;
}

body.overflow-hidden {
  overflow-y: hidden;
}

a,
a:hover {
  text-decoration: none;
  color: var(--color-main-white);
}

p {
  margin: 0;
}

button,
input {
  border: none;
  outline: none;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
}

.button {
  background-color: var(--color-main-orange);
  color: var(--color-main-white);
  box-shadow: 0px 10px 40px 0px rgba(227, 93, 18, 0.2);

  transition: background-color 0.2s ease-in-out;
}

.button:hover {
  background-color: var(--color-secondary-orange);
}

.title {
  font-size: 3.25rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0;
  text-wrap: balance;
}

.subtitle {
  display: inline-block;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-main-white);

  background-color: var(--color-main-orange);

  border-radius: 25px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.15);

  transform: rotate(-1deg);
}

.main-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 915px;
  object-fit: cover;
  background-color: var(--color-main-black);
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}

.content {
  flex: 1 1 auto;
}

.header-menu {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;

  transition: background-color 0.2s linear;
}

.header-button {
  display: none;
}

.header-logo__link {
  margin-top: 22px;
  display: inline-block;
  width: 129px;
  height: 108px;

  transition: all 0.2s linear;
}

.header-logo__link .header-logo {
  width: 100%;
  height: 100%;
}

.header-logo__link--logo {
  width: 113px;
  height: 94px;
}

.header-logo__link--logo .header-logo {
  width: inherit;
  height: inherit;
}

.header-menu .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu .menu__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 45px;
  padding-left: 0;
  margin-bottom: 0;
}

.header.fit .header-menu,
.header.fit-no-transition .header-menu {
  background-color: var(--color-main-black);
  height: 76px;
  position: fixed;
}

.header.fit .header-logo__link,
.header.fit-no-transition .header-logo__link {
  margin-top: 0;
  width: 67px;
  height: 56px;
}

.header.fit-no-transition .header-logo__link,
.header.fit-no-transition .header-menu {
  transition: none;
}

.menu__list-item {
  font-size: 0.875rem;
}

.menu__list-link--phone {
  display: flex;
  align-items: center;
  gap: 7px;
}

.menu-phone {
  display: none;
}

.menu__list-number {
  white-space: nowrap;
  font-size: 1.125rem;
  font-weight: 700;
}

.menu__list-item--logo {
  display: none;
}

.menu__list-link {
  transition: color 0.2s ease-in-out;
}

.menu__list-link:not(.menu__list-link--choose):hover {
  color: var(--color-main-orange);
}

.menu__list-link--choose {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--color-main-orange);
  padding: 8px 28px 8px 14px;
  border-radius: 5px;

  transition: background-color 0.2s ease-in-out;
}

.menu__list-link--choose:hover {
  background-color: var(--color-secondary-orange);
}

.menu__list-link--choose::before {
  content: "";
  position: absolute;
  right: 14px;
  top: 16px;
  border: 3px solid transparent;
  border-top: 3px solid var(--color-main-white);
  transition: 0.2s ease-in-out;
}

.menu__list-link--academy {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 14px;
}

.menu__list-link--academy::before {
  content: "";
  position: absolute;
  right: 0;
  border: 3px solid transparent;
  border-top: 3px solid var(--color-main-white);
  transition: border-top-color 0.2s ease-in-out;
}

.menu__list-link--academy:hover::before {
  border-top-color: var(--color-main-orange);
}

.submenu {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.submenu:hover .submenu__list {
  visibility: visible;
  opacity: 1;
}

.submenu__list {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 25px;
  display: flex;
  flex-direction: column;
  padding: 23px 15px;
  gap: 10px;
  width: max-content;
  background: rgba(44, 44, 44, 0.9);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  transition: all 0.2s ease-in-out;
}

.submenu__list-link {
  transition: color 0.2s ease-in-out;
}

.submenu__list-link:hover {
  color: var(--color-main-orange);
}

.breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #aaaaaa;
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #aaaaaa;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  margin: 0 11px 0 17px;
  content: ">";
}

.breadcrumb li:last-child {
  font-weight: 700;
}

.page-article .breadcrumb {
  margin-bottom: 34px;
}

.main {
  position: relative;
  margin-top: 169px;
}

.main .container {
  position: relative;
}

.page-city .main .menu__list-link--phone {
  display: none;
}

.page-404 .main {
  margin-top: 357px;
  height: 350px;
}

.page-404 .main-container {
  top: -144px;
  position: relative;
  z-index: 1;
}

.page-text {
  margin-top: 10px;
  font-size: 1.25rem;
}

.page-button {
  margin-top: 33px;
  display: inline-block;
  padding: 34px 36px;
  border-radius: 15px;
  font-size: 1.25rem;
}

.page-image {
  position: absolute;
  top: -150px;
  right: -104px;
  width: 800px;
  object-fit: contain;
}

.page-article .main-bg,
.page-articles .main-bg,
.page-contacts .main-bg,
.page-privacy .main-bg,
.page-promotions-current .main-bg,
.page-promotions .main-bg {
  height: 696px;
}

.page-article .main-card {
  position: relative;
  height: 369px;
  width: 100%;

  padding: 0 50px;

  border-radius: 20px;

  overflow: hidden;
}

.page-article .main-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;

  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);

  width: 100%;
  height: 120px;
}

.page-article .main-card__image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  object-fit: cover;
  object-position: top;
  width: inherit;
  aspect-ratio: 5.4 / 3.3;
}

.page-article .main-card__date {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 13px 18px;
  border-radius: 25px;
  background: var(--color-main-orange);

  font-size: 0.875rem;
  font-weight: 700;
}

.page-article .main-card__title {
  position: absolute;
  bottom: 50px;
  max-width: 560px;

  font-size: 3.25rem;
  font-weight: 700;
}

.page-article .main {
  margin-top: 457px;
  border-radius: 100px 100px 0 0;
  background-color: var(--color-main-white);
}

.page-article .main-container {
  top: -244px;
  position: relative;
  z-index: 1;
}

.main-area {
  margin-top: 60px;
  color: var(--color-secondary-black);
}

.main-area p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.main-area h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.main-area img {
  border-radius: 40px;
}

.page-article .main-button {
  margin-top: 30px;
  display: inline-block;
  padding: 34px 36px;
  border-radius: 15px;
}

.more {
  margin-top: 100px;
}

.more-title {
  color: var(--color-secondary-black);
}

.more-articles {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

/* .page-article .articles-link {
  transition: transform 0.2s ease-in-out;
}

.page-article .articles-link:hover {
  transform: translate(0, -10px);
} */

.page-article .arcticles-card {
  position: relative;
  height: 330px;
  max-width: 361px;
  width: 100%;

  padding: 0 30px;

  border-radius: 20px;

  overflow: hidden;
}

.page-article .arcticles-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;

  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);

  width: 100%;
  height: 120px;
}

.page-article .arcticles-card.big-card {
  max-width: 526px;
}

.page-article .articles-card__image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
}

.page-article .articles-card__date {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 13px 18px;
  border-radius: 25px;
  background: var(--color-main-orange);

  font-size: 0.875rem;
  font-weight: 700;
}

.page-article .articles-card__title {
  margin-top: 165px;
  margin-bottom: 0;

  font-size: 1.3125rem;
  font-weight: 700;
}

.page-article .articles-card__text {
  margin-top: 10px;

  font-size: 1.0625rem;
}

.page-articles .main,
.page-promotions-current .main,
.page-promotions .main {
  margin-top: 213px;
}

.page-articles .main-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.page-articles .main-articles {
  position: relative;
  z-index: 1;
}

.page-articles .articles-link {
  visibility: hidden;
  opacity: 0;
  display: none;

  /* transition: all 0.2s ease-in-out; */
}

/* .page-articles .articles-link:hover {
  transform: translate(0, -10px);
} */

.page-articles .articles-link.visible {
  display: inline-block;
  visibility: hidden;
  opacity: 1;
}

.page-articles .tabs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 27px;
}

.page-articles .tabs__list-link {
  font-size: 0.875rem;
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.page-articles .tabs__list-link.active {
  color: var(--color-main-orange);
}

.page-articles .articles-container {
  position: relative;
  top: -165px;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.page-articles .articles-box-1 {
  margin-top: 199px;
  background-color: var(--color-main-white);
  border-radius: 100px 100px 0 0;
  min-height: 200px;
}

.page-articles .arcticles-card {
  position: relative;
  z-index: 10;
  height: 330px;
  width: 100%;
  max-width: 361px;

  padding: 0 30px;

  border-radius: 20px;

  overflow: hidden;
}

.page-articles .arcticles-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;

  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);

  width: 100%;
  height: 120px;
}

.page-articles .arcticles-card.big-card {
  max-width: 526px;
}

.page-articles .articles-card__image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
  background-color: #000;
  filter: grayscale(0.75);
}

.page-articles .articles-link:hover .articles-card__image {
  filter: grayscale(0);
}

.page-articles .articles-card__date {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 13px 18px;
  border-radius: 25px;
  background: var(--color-main-orange);

  font-size: 0.875rem;
  font-weight: 700;
}

.page-articles .articles-card__title {
  margin-top: 165px;
  margin-bottom: 0;

  font-size: 1.3125rem;
  font-weight: 700;
}

.page-articles .articles-card__text {
  margin-top: 10px;

  font-size: 1.0625rem;
}

.page-articles .articles-button {
  top: -100px;
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 224px;
  text-align: center;
  padding: 26px 92px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 15px;
}

.page-city-big .main-bg {
  height: 915px;
}

.page-contacts .main {
  margin-top: 507px;
  height: 468px;
  background-color: var(--color-main-white);
  border-radius: 100px 100px 0 0;
}

.page-contacts .main-container {
  top: -294px;
  position: relative;
  z-index: 1;
}

.page-contacts .contacts-top {
  display: flex;
  align-items: center;
}

.page-contacts .contacts-title {
  margin-right: 43px;
}

.page-contacts .contacts-top__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  width: 100%;
  margin-right: 35px;
}

.page-contacts .contacts-map {
  position: relative;
  margin-top: 34px;
  height: 533px;
  border-radius: 40px;
  background-color: var(--color-main-white);
  background-image: url("../images/map-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.page-contacts .contacts-box {
  position: absolute;
  top: -14px;
  right: 35px;

  max-width: 381px;
  height: 357px;
  padding: 45px 26px;

  color: var(--color-secondary-black);
  background-color: var(--color-main-white);
  border-radius: 20px;
  box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.12);
}

.page-contacts .contacts-box a {
  color: var(--color-secondary-black);
}

.page-contacts .contacts-box__title {
  font-size: 1.6875rem;
  font-weight: 700;
}

.page-contacts .contacts-box__phone {
  margin-top: 31px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: 56px;
}

.page-contacts .contacts-box__phone::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-phone-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.page-contacts .contacts-box__mail {
  margin-top: 47px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  padding-left: 56px;
}

.page-contacts .contacts-box__mail::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-mail-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.page-contacts .contacts-box__location {
  margin-top: 38px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.25rem;
  font-weight: 400;
  padding-left: 56px;
}

.page-contacts .contacts-box__location::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-location-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.page-privacy .main {
  margin-top: 357px;
  background-color: var(--color-main-white);
  border-radius: 100px 100px 0 0;
}

.page-privacy .main-container {
  top: -144px;
  position: relative;
  z-index: 1;
}

.page-privacy .textarea {
  background-color: var(--color-main-white);
  color: var(--color-secondary-black);
  padding-bottom: 100px;
}

.page-privacy .textarea h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.page-privacy .textarea h2:not(:first-of-type) {
  margin-top: 40px;
}

.page-privacy .textarea p {
  margin-bottom: 2rem;
}

.page-privacy .textarea li {
  margin-bottom: 1rem;
}

.page-privacy .textarea p,
.page-privacy .textarea li {
  font-size: 1.125rem;
}

.page-promotions-current .promotions {
  margin-top: 61px;
  padding-top: 55px;
  padding-bottom: 55px;
  background-color: var(--color-main-white);
  border-radius: 100px 100px 0 0;

  min-height: 400px;
}

.page-promotions-current .promotions-box {
  margin-bottom: 100px;
  color: var(--color-secondary-black);
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.page-promotions-current .promotion-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 100px;
}

.page-promotions-current .promotion-card:not(:last-of-type)::before {
  position: absolute;
  content: "";
  bottom: -50px;
  width: 100%;
  border-bottom: 2px dashed #d9d9d9;
}

.page-promotions-current .promotion-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions-current .promotion-title {
  font-size: 2rem;
  font-weight: 700;
  text-wrap: balance;
}

.page-promotions-current .promotion-text {
  font-size: 1.25rem;
  text-wrap: balance;
}

.page-promotions-current .promotion-image {
  border-radius: 30px;
  width: 450px;
  height: unset;
  aspect-ratio: 3 / 2;
}

.page-promotions .promotions {
  margin-top: 61px;
  padding-top: 55px;
  background-color: var(--color-main-white);
  border-radius: 100px 100px 0 0;

  min-height: 200px;
}

.page-promotions .form {
  margin-top: 62px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.page-promotions .form-input {
  max-width: 424px;
  width: 100%;
  padding: 26px 30px;
  border-radius: 15px;
  font-size: 1.25rem;
}

.page-promotions .form-button {
  padding: 26px 83px;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 15px;
}

.page-promotions .promotions-box {
  margin-bottom: 100px;
  color: var(--color-secondary-black);
}

.page-promotions .promotions-city {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.page-promotions .promotions-title {
  font-size: 2rem;
  /* font-weight: 700; */
  text-wrap: balance;
}

.page-promotions .promotions-slider {
  margin-top: 30px;
  position: relative;
}

.page-promotions .promotions-title {
  padding-top: 0;
}

.page-promotions .promotions-card {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 260px;
  border-radius: 20px;
}

.main-subtitle {
  padding: 13.5px 30px;
}

.main-title {
  margin-top: 31px;

  max-width: 845px;
}

.main__button-box {
  margin-top: 38px;

  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.main-button {
  padding: 34px 36px;
  font-size: 1.25rem;
  border-radius: 15px;
}

.main__button-decription {
  font-size: 0.75rem;
  color: #9f9f9f;
}

.main-video {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 198px;
  left: 50%;
}

.video-link {
  position: absolute;
}

.video-cirlce {
  animation: rotation infinite 15s linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.video-button {
  transition: transform 0.2s ease-in-out;
}

.video-button:hover {
  transform: scale(1.15);
}

.info {
  z-index: 2;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 516px;
  height: 230px;
  width: 100%;
  max-width: 1296px;
  border-radius: 40px;
  border: 1px solid #777;
  color: var(--color-main-white);
  background: url("../images/statistics-bg.jpg") var(--color-main-black);
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;

  max-width: 427px;
  width: 100%;
  height: 230px;
}

.info-card::before {
  z-index: 2;
  position: absolute;
  content: "";

  right: -1px;

  width: 1px;
  height: 150px;
  background: #777;
}

.info-card:last-of-type::before {
  display: none;
}

.info-card__title {
  position: relative;
  z-index: 1;
  font-size: 2.5625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.info-card__text {
  margin-top: 10px;
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  max-width: 280px;
}

.info-card__image {
  position: absolute;
  z-index: 1;
  right: 0;
  top: 1px;
  width: 231px;
  height: 100%;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  filter: grayscale(0.9);
}

.info-card__image img {
  width: inherit;
  height: inherit;
  filter: grayscale(0.9);
}

.statistics {
  z-index: 2;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 516px;
  height: 230px;
  width: 100%;
  max-width: 1296px;
  border-radius: 40px;
  border: 1px solid #777;
  color: var(--color-main-white);
  background: url("../images/statistics-bg.jpg") var(--color-main-black);
}

.statistics::before {
  position: absolute;
  z-index: 1;
  content: "";
  top: 0;
  width: 100%;
  height: 229px;
  border-radius: 40px;
  background-image: url("../images/statistics-shadow.png");
}

.statistics-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;

  max-width: 427px;
  width: 100%;
  height: 230px;
}

.statistics-card::before {
  z-index: 2;
  position: absolute;
  content: "";

  right: -1px;

  width: 1px;
  height: 150px;
  background: #777;
}

.statistics-card:last-of-type::before {
  display: none;
}

.statistics-card__title {
  position: relative;
  z-index: 1;
  font-size: 2.5625rem;
  font-weight: 700;
}

.statistics-card__text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  max-width: 177px;
}

.statistics-card__image {
  position: absolute;
  right: 0;
  bottom: 1px;
}

.white-bg {
  margin-top: 272px;
  color: var(--color-secondary-black);
  background-color: var(--color-main-white);
  border-radius: 100px 100px 0 0;
  min-height: 648px;
  overflow: hidden;
}

.gallery {
  position: relative;
  padding-top: 100px;
  color: var(--color-secondary-black);
  background-color: var(--color-main-white);
  overflow: hidden;
  padding-bottom: 80px;
}

.gallery-title {
  /* margin-top: 239px; */
  max-width: 685px;
}

.gallery-subtitle {
  padding: 13px 18px;
}

.gallery-text {
  margin-top: 46px;
  max-width: 636px;

  font-size: 1.25rem;
  color: var(--color-secondary-black);
}

.gallery-arrows {
  margin-top: 57px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.arrow {
  width: 50px;
  height: 50px;
  cursor: pointer;

  transition: background-image 0.2s ease-in-out;
  background-repeat: no-repeat;
}

.arrow-left {
  background-image: url("../images/arrow-left-disabled.svg");
}

.arrow-left:hover {
  background-image: url("../images/arrow-left.svg");
}

.arrow-right {
  background-image: url("../images/arrow-right-disabled.svg");
}

.arrow-right:hover {
  background-image: url("../images/arrow-right.svg");
}

.progress-bar {
  position: relative;
  width: 294px;
  height: 2px;
  background-color: #e8e8e8;
}

.progress-bar--fill {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 2px;
  background-color: var(--color-main-orange);

  transition: width 0.3s ease-in-out;
}

.gallery-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.gallery-slider__container {
  position: relative;

  top: 100px;
  left: 56%;

  width: 100%;
}

.gallery-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 856px;
  height: 416px;

  overflow: hidden;
}

.gallery-link {
  transition: margin-left 0.3s ease-in-out;
  border-radius: 40px;
}

.gallery-link.no-transition {
  transition: none;
}

.gallery-slide {
  position: relative;

  left: 0;
  top: 0;

  border-radius: 40px;
  transition: left 0.35s ease-in-out;
  object-fit: cover;
}

.gallery-shadow {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 568px;
  width: 288px;
  height: 622px;

  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);

  user-select: none;
  pointer-events: none;
}

.cosmetics {
  margin-top: 200px;
  color: var(--color-secondary-black);
  overflow: hidden;
}

.page-city .cosmetics {
  margin-top: 100px;
}

.cosmetics__slider-container,
.news__slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.cosmetics__card {
  scroll-snap-align: start;
  border-radius: 10px;
  background: var(--color-main-white);
  height: 465px;

  padding: 25px;
}

.cosmetics__card-image {
  margin: 2px auto 0;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}

.cosmetics__card-title {
  margin-top: 41px;

  font-size: 1.25rem;
  font-weight: 700;
}

.cosmetics__card-desc {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  color: var(--color-main-green);
}

.cosmetics__card-desc::before {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;

  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--color-main-green);
}

.cosmetics__card-prices {
  margin-top: 3px;
  display: flex;
  align-items: center;
}

.cosmetics__card-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.cosmetics__card-oldprice {
  position: relative;
  bottom: 10px;

  font-size: 0.875rem;
  font-weight: 400;
  color: #e8e8e8;
  text-decoration: line-through;
}

.cosmetics__card-button {
  margin-left: auto;
  position: relative;
  border-radius: 10px;
  padding: 13px 40px 13px 15px;
}

.cosmetics__card-button::before {
  position: absolute;
  content: "";
  top: 16px;
  right: 15px;
  width: 14px;
  height: 14px;
  background-image: url("../images/cart.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.cosmetics__slider-arrow,
.news__slider-arrow {
  margin: 0 auto;
}

.barbershops {
  padding-top: 200px;
}

.barbershops a {
  color: var(--color-secondary-black);
}

.barbershops a:hover {
  color: var(--color-secondary-black);
}

.barbershops-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.barbershops-title {
  color: var(--color-secondary-black);
}

.city {
  display: flex;
  flex-direction: column;
}

.city-title {
  font-size: 1.625rem;
  font-weight: 700;
}

.city-box {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-left: 17px;
  font-size: 0.875rem;
}

.city-box::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main-orange);
}

.city-box__title {
  font-weight: 700;
}

.promotions {
  color: var(--color-secondary-black);
}

.promotions-title {
  padding-top: 150px;
}

.promotions-slider {
  margin-top: 30px;
  position: relative;
}

.promotions-card {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 260px;
  border-radius: 20px;
}

.page-city-big .black-bg,
.page-city .black-bg {
  margin-top: 142px;

  height: 3021px;
  background-image: url("../images/city/black-bg.jpg");
}

.black-bg {
  position: relative;
  z-index: 0;
  margin-top: 77px;

  /* width: 1842px; */
  height: 2506px;

  border-radius: 100px;
  background-image: url("../images/black-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.black-bg > .container {
  position: relative;
}

.arrow-box {
}

.arrow-hole {
  z-index: 0;
  position: absolute;
  content: "";
  top: -1px;
  right: 26px;

  width: 200px;
  height: 60px;
  background-image: url("../images/arrow-hole.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.arrow-down {
  z-index: 1;
  position: absolute;
  content: "";
  top: -42px;
  right: 85px;

  width: 84px;
  height: 84px;
  background-image: url("../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-size: cover;

  animation: jump 3s ease-in-out infinite;
}

@keyframes jump {
  0% {
    top: -42px;
  }

  50% {
    top: -62px;
  }

  100% {
    top: -42px;
  }
}

.vkontakte {
  padding-top: 148px;
}

.vkontakte-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vkontakte-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 27px 30px 27px 72px;
  font-size: 1.25rem;
  border-radius: 15px;
  background-color: #228bdc;
}

.vkontakte-button:hover {
  background-color: #1673c4;
}

.vkontakte-button::before {
  z-index: 1;
  position: absolute;
  content: "";
  left: 30px;

  width: 32px;
  height: 19px;

  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/vkontakte-icon.svg");
}

.vkontakte-posts {
  margin-top: 33px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vkontakte-post {
  position: relative;
  overflow: hidden;
  height: 307px;
  border-radius: 20px;
}

.vkontakte-post__tooltip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 18px;

  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;

  transition: opacity 0.25s ease-in-out;
}

.vkontakte-post:hover .vkontakte-post__tooltip {
  opacity: 1;
}

.vkontakte-post__title {
  max-width: 360px;
  font-size: 1.25rem;
  text-align: center;
}

.vkontakte-post__link {
  padding-right: 19px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-main-orange);
}

.vkontakte-post__link::before {
  position: absolute;
  content: "";

  width: 10px;
  height: 11px;
  right: 0;

  background-image: url("../images/triangle.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-city-big .youtube,
.page-city .youtube {
  margin-top: 105px;
  padding-top: 0;
  position: relative;
}

.youtube {
  padding-top: 152px;
  margin-top: 97px;
  position: relative;
}

.youtube-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.youtube-title {
  position: relative;
  display: inline-block;
}

.youtube-subtitle {
  position: absolute;
  top: 45px;
  right: -10px;
  padding: 13px 29px;
  text-transform: none;
}

.youtube-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 27px 40px 27px 80px;
  font-size: 1.25rem;
  border-radius: 15px;
  background-color: #eb3323;
}

.youtube-button:hover {
  background-color: #cf2f1d;
}

.youtube-button::before {
  z-index: 1;
  position: absolute;
  content: "";
  left: 41px;

  width: 32px;
  height: 19px;

  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../images/youtube-icon.png");
}

.youtube-videos {
  margin-top: 75px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
}

.youtube-video {
  position: relative;
  width: 100%;
  height: 234px;
  border-radius: 20px;
  background-color: #9f9f9f;
  overflow: hidden;
}

.youtube-video__tooltip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;

  border-radius: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  opacity: 0;

  transition: opacity 0.25s ease-in-out;
}

.youtube-video:hover .youtube-video__tooltip {
  opacity: 1;
}

.youtube-video__title {
  max-width: 360px;
  font-size: 1.25rem;
  text-align: center;
}

.youtube-video__link {
  padding-right: 19px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-main-orange);
}

.youtube-video__link::before {
  position: absolute;
  content: "";

  width: 10px;
  height: 11px;
  right: 0;

  background-image: url("../images/triangle.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.articles {
  margin-top: 100px;
}

.articles-box {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.articles-link {
  transition: transform 0.2s ease-in-out;
}

.articles-link:hover {
  transform: translate(0, -10px);
}

.arcticles-card {
  position: relative;
  z-index: 10;
  height: 330px;
  max-width: 361px;
  width: 100%;

  padding: 0 30px;

  border-radius: 20px;

  overflow: hidden;
}

.arcticles-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;

  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);

  width: 100%;
  height: 120px;
}

.arcticles-card.big-card {
  max-width: 526px;
}

.articles-link:hover .articles-card__image {
  transition: filter 0.2s ease-in-out;
  filter: grayscale(0);
}

.articles-card__image {
  filter: grayscale(0.75);
  transition: filter 0.2s ease-in-out;
}

.articles-card__image,
.news-card__image {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  object-fit: cover;
  width: inherit;
  height: inherit;
}

.articles-card__date,
.news-card__date {
  position: absolute;
  top: 25px;
  right: 25px;
  padding: 13px 18px;
  border-radius: 25px;
  background: var(--color-main-orange);

  font-size: 0.875rem;
  font-weight: 700;
}

.articles-card__title,
.news-card__title {
  margin-top: 165px;
  margin-bottom: 0;

  font-size: 1.3125rem;
  font-weight: 700;
}

.articles-card__text,
.news-card__text {
  margin-top: 10px;

  font-size: 1.0625rem;
}

.articles-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.articles-button {
  display: block;
  padding: 27px 50px;

  font-size: 1.25rem;
  border-radius: 15px;
  max-width: 300px;
  text-align: center;
}

.news {
  margin-top: 100px;
  overflow: hidden;
}

.news-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card {
  display: inline-block;
  position: relative;
  max-width: 416px;
  height: 330px;
  padding: 0 30px;
  border-radius: 20px;

  overflow: hidden;
  object-fit: cover;

  transition: transform 0.2s ease-in-out;
}

.news-card:hover {
  transform: scale(1.025);
}

.news-card::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;

  border-radius: 0px 0px 20px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);

  width: 100%;
  height: 120px;
}

.questions {
  padding-top: 100px;
  color: var(--color-secondary-black);
}

.questions-text {
  font-size: 1.25rem;
  margin-top: 20px;
  margin-bottom: 70px;
}

.questions-box {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.questions-card {
  padding: 50px 60px 40px 40px;
  box-shadow: 0px 10px 25px 0px rgba(85, 85, 85, 0.1);
  border-radius: 15px;
  height: min-content;
}

.questions-card__title {
  font-weight: 700;
}

.questions-card__text {
  position: relative;
  margin-top: 10px;
  font-size: 1.25rem;
  max-height: 50px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.questions-card__text.opened {
  max-height: unset;
  overflow: visible;
}

.questions-card__text:not(.opened):after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: linear-gradient(hsla(0, 0%, 100%, 0), #fff);
}

.questions-card__button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 25px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
}

.map-title {
  margin-top: 100px;
  color: var(--color-secondary-black);
}

.map-container {
  position: relative;
  margin-top: 35px;
  margin-bottom: 116px;

  height: 617px;
  background-image: url("../images/map.jpg");
  background-repeat: no-repeat;
  border-radius: 40px;
}

.map-subtitle {
  position: absolute;
  padding: 13px 29px;

  top: -28px;
  right: 42px;

  user-select: none;
  pointer-events: none;
  transform: rotate(1deg);
}

.page-city-big .map-subtitle,
.page-city .map-subtitle {
  right: unset;
  left: 0;
}

.contacts-box {
  position: absolute;
  top: -14px;
  right: 35px;

  max-width: 381px;
  padding: 45px 26px;

  color: var(--color-secondary-black);
  background-color: var(--color-main-white);
  border-radius: 20px;
  box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.12);
}

.contacts-box a:not(.contacts-box__button) {
  color: var(--color-secondary-black);
}

.contacts-box__title {
  font-size: 1.6875rem;
  font-weight: 700;
}

.contacts-box__phone {
  margin-top: 31px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  padding-left: 56px;
}

.contacts-box__phone::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-phone-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.contacts-box__mail {
  margin-top: 47px;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 400;
  padding-left: 56px;
}

.contacts-box__mail::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-mail-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.contacts-box__location {
  margin-top: 38px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.25rem;
  font-weight: 400;
  padding-left: 56px;
}

.contacts-box__location::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-location-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.contacts-box__time {
  margin-top: 38px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.25rem;
  font-weight: 400;
  padding-left: 56px;
}

.contacts-box__time::before {
  position: absolute;
  content: "";
  left: 0;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  box-shadow: 0px 8px 20px 0px rgba(133, 133, 133, 0.12);

  background-image: url("../images/contacts-clock-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.contacts-box__button {
  position: relative;

  display: flex;
  align-items: center;
  margin-top: 38px;
  color: var(--color-main-white);
  padding: 28px 36px;
  width: max-content;

  font-size: 1.25rem;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
}

.contacts-box__button:hover .routes {
  visibility: visible;
  opacity: 1;
}

.routes {
  position: absolute;
  right: 105%;
  padding: 25px;
  visibility: hidden;
  width: max-content;
  opacity: 0;
  text-align: left;
  background-color: var(--color-main-white);
  box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  cursor: auto;
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.routes-list__item {
  width: 100%;
}

.routes-list__link {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f1f1f1;
  padding: 10px 15px;
  width: inherit;
  border-radius: 7px;
  transition: all 0.1s ease-in-out;
}

.routes-list__link:hover {
  background-color: #e0e0e0;
}

.footer {
  padding-top: 69px;
  padding-bottom: 75px;

  background: url("../images/footer-bg.jpg") var(--color-main-black);
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-menu {
  max-width: 373px;
  width: 100%;
  margin-right: auto;
  margin-left: 135px;
}

.footer-menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
}

.footer-menu__link {
  transition: color 0.2s ease-in-out;
}

.footer-menu__link:hover {
  color: var(--color-main-orange);
}

.footer-links {
  max-width: 410px;
  width: 100%;
}

.page-city .footer-links {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.footer-links__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  gap: 20px;
}

.footer-links__phone {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 24px;
  font-weight: 700;
}

.footer-links__phone::before {
  position: absolute;
  content: "";
  left: 0;

  width: 17px;
  height: 17px;
  background-image: url("../images/phone-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.footer-links__phone--subtitle {
  position: absolute;
  left: 0;
  top: 27px;
  font-size: 0.75rem;
  text-decoration: underline;
  color: #b3b3b3;
}

.footer-links__mail {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-links__mail::before {
  position: absolute;
  content: "";
  left: -28px;

  width: 20px;
  height: 16px;
  background-image: url("../images/mail-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

/* .footer-links__box--socials {
  margin-top: 45px;
} */

.links-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px;

  font-size: 0.875rem;
  border-radius: 10px;
  box-shadow: none;

  transition: background-color 0.2s ease-in-out;
}

.links-button::before {
  z-index: 1;
  position: absolute;
  content: "";

  background-repeat: no-repeat;
  background-size: contain;
}

.links-button--whatsapp {
  background-color: #62c96e;
  padding-left: 37px;
  padding-right: 17px;
}

.links-button--whatsapp::before {
  left: 12px;

  width: 19px;
  height: 19px;
  background-image: url("../images/whatsapp-icon.svg");
}

.links-button--youtube {
  background-color: #eb3323;
  padding-left: 45px;
  padding-right: 23px;
}

.links-button--youtube::before {
  left: 20px;

  width: 20px;
  height: 14px;
  background-image: url("../images/youtube-icon.png");
}

.links-button--vkontakte {
  background-color: #228bdc;
  padding-left: 39px;
  padding-right: 16px;
}

.links-button--vkontakte::before {
  left: 12px;

  width: 22px;
  height: 13px;
  background-image: url("../images/vkontakte-icon.svg");
}

.links-button--whatsapp:hover {
  background-color: #3cb04d;
}

.links-button--youtube:hover {
  background-color: #cf2f1d;
}

.links-button--vkontakte:hover {
  background-color: #1673c4;
}

.footer-privacy {
  margin-top: 50px;

  display: flex;
  align-items: center;
  gap: 58px;
}

.footer-privacy__link {
  color: #9f9f9f;

  transition: color 0.2s ease-in-out;
}

.footer-copyright {
  margin-top: 49px;

  display: flex;
  align-items: center;
  gap: 58px;

  color: #9f9f9f;
}

.popup {
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(44, 44, 44, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: auto;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;

  transition: all 0.3s ease-in-out;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup a {
  color: var(--color-secondary-black);
}

.popup__content {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.popup__barbershop-left {
  width: 100%;
}

.popup__barbershop-tabs {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.tabs-russia,
.tabs-kazakhstan {
  font-size: 1.0625rem;
}

a.tabs-button {
  color: var(--color-main-white);
  padding: 17px 20px;
  border-radius: 10px;
  font-size: 1.0625rem;
  box-shadow: 0px 10px 40px 0px rgba(227, 93, 18, 0.2);
}

a.popup__barbershop-button {
  display: none;
  color: var(--color-main-white);
  padding: 17px 20px;
  border-radius: 10px;
  font-size: 1.0625rem;
  box-shadow: 0px 10px 40px 0px rgba(227, 93, 18, 0.2);
}

.popup__barbershop-form {
  margin-top: 15px;
  position: relative;
  max-width: 511px;
  display: flex;
  align-items: center;
}

.form-input {
  width: 100%;
  height: 64px;
  background-color: #fbfbfb;
  border-radius: 15px;
  padding: 20px;
  color: var(--color-secondary-black);
}

.form-close__button {
  position: absolute;
  right: 12px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;

  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2f2f2;
  background-size: 10px;
  transition: all 0.2s ease-in-out;
}

.popup__barbershop-cities {
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 17px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow-y: scroll;
  max-height: 400px;
  max-width: 511px;
}

.popup__barbershop-cities::-webkit-scrollbar {
  width: 2px;
}

.popup__barbershop-cities::-webkit-scrollbar-track {
  background-color: #e8e8e8;
}

.popup__barbershop-cities::-webkit-scrollbar-thumb {
  background-color: var(--color-main-orange);
}

.city {
  display: flex;
  flex-direction: column;
}

.city-title {
  font-size: 1.625rem;
  font-weight: 700;
}

.city-box {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-left: 17px;
  font-size: 0.875rem;
}

.city-box::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-main-orange);
}

.city-box__title {
  font-weight: 700;
}

.popup__barbershop-map {
  background-color: #fff;
  background-image: url("../images/map-bg.jpg");
  width: 100%;
  max-height: 625px;
  border-radius: 40px;
}

.popup__close {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: unset;
}

.popup__close-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-block;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #f2f2f2;
  background-size: 10px;
  transition: all 0.2s ease-in-out;
}

.popup__close-icon:hover,
.form-close__button:hover {
  transform: scale(1.2);
}

.popup__barbershop {
  position: relative;
  padding: 70px 50px;

  height: min-content;
  background-color: var(--color-main-white);
  color: var(--color-secondary-black);
  border-radius: 40px;
  transform: translate(0px, 100%);

  transition: all 0.3s ease-in-out;
}

.popup.open .popup__barbershop,
.popup.open .popup__gallery {
  transform: translate(0px, 0px);
}

.popup__gallery {
  padding: 0;
  height: 765px;
  border-radius: 40px;
  border-radius: 40px;

  overflow: hidden;
  display: flex;
  align-items: center;

  transform: translate(100%, 0px);

  transition: transform 0.3s ease-in-out;
}

.popup-arrow {
  position: absolute;
  height: 100%;
  background-position: center;
  width: 100px;
}

.popup-arrow__left {
  left: 0;
  background-image: url("../images/arrow-left-white.svg");
}

.popup-arrow__right {
  right: 0;
  background-image: url("../images/arrow-right-white.svg");
}

.services {
  background-image: url("../images/city/services-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 103px;

  color: var(--color-secondary-black);
  height: 958px;
}

.page-city .services {
  margin-top: 150px;
}

.services-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.services-line,
.row-line {
  height: 1px;
  flex-grow: 1;
  border-bottom: 1px dashed #b3b3b3;
}

.services-bottom {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

.services__table {
  max-width: 700px;
}

.services__table-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 20px;
  border-radius: 5px;
}

.services__table-row:nth-last-of-type(2n) {
  background-color: #f4f4f4;
}

.row-title {
  font-size: 1.25rem;
}

.row-time {
  position: relative;
  top: -7px;
  left: 4px;
  font-size: 1.25rem;
  color: #d9d9d9;
}

.row-line {
  margin-left: 29px;
  margin-right: 19px;
  border-bottom-color: #e8e8e8;
}

.row-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.table-button {
  display: inline-block;
  margin-top: 20px;
  border-radius: 15px;
  padding: 34px 44px;
  font-size: 1.25rem;
}

.services-box {
  position: relative;
  height: 703px;
  border-radius: 40px;
  background-color: var(--color-main-black);
  background-repeat: no-repeat;
  background-size: cover;
}

.services-box__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 590px;
  height: 770px;
  background-repeat: no-repeat;
  background-size: contain;
}

.booking-icon {
  z-index: 50;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 40px;
  bottom: 40px;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0px 10px 40px 0px rgba(227, 93, 18, 0.2);
  animation: pulse 3s ease-in-out infinite;
}

.booking-icon__circle {
  width: 172px;
  height: 172px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  animation: rotate 2s linear infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.075);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.autoflash {
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.flash {
  content: "";
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.5) 100%);
  height: 100%;
  width: 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -4.5em;
  -webkit-transform: skewX(-45deg) translateX(0);
  transform: skewX(-45deg) translateX(0);
  -webkit-transition: none;
  transition: none;
}

.lighting {
  webkit-animation: moving 4s ease-in-out infinite;
  -moz-animation: moving 4s ease-in-out infinite;
  -ms-animation: moving 4s ease-in-out infinite;
  -o-animation: moving 4s ease-in-out infinite;
  animation: moving 4s ease-in-out infinite;
}

@keyframes moving {
  30% {
    webkit-transform: skewX(-45deg) translateX(40em);
    transform: skewX(-45deg) translateX(40em);
  }

  100% {
    webkit-transform: skewX(-45deg) translateX(40em);
    transform: skewX(-45deg) translateX(40em);
  }
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.show-map-icon:hover {
  transform: scale(1.05);
}

.show-map-icon {
  z-index: 50;
  position: fixed;
  left: 40px;
  bottom: 40px;
  width: 93px;
  height: 93px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.2s ease-in-out;
}

/* Ограничивающая оболочка */
.slick-list {
  overflow: hidden;
}

.cosmetics-slider .slick-list {
  margin-left: -24px;
  margin-right: -24px;
  padding-top: 45px;
  padding-bottom: 45px;
  padding-left: 24px;
  padding-right: 24px;
}

.news-slider .slick-list {
  padding-top: 45px;
  padding-bottom: 45px;
  margin-left: -12px;
  margin-right: -12px;
}

/* Лента слайдов */
.slick-track {
  display: flex;
  align-items: flex-start;
}

.news-slider .slick-slide,
.youtube-slider .slick-slide {
  margin: 0 12px;
}

/* Слайд */
.cosmetics-slider .slick-slide {
  margin: 0 12px;
  transition: box-shadow 0.2s ease-in-out;
}

.articles-slider .slick-slide {
  margin: 0 12px;
}

.articles-slider .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.youtube-slider .slick-list {
  margin-left: -24px;
  margin-right: -24px;
}

/* Слайд активный (показывается) */
.cosmetics-slider .slick-active {
  box-shadow: 0px 10px 25px 0px rgba(85, 85, 85, 0.1);
}

.cosmetics-slider,
.news-slider {
  position: relative;
  max-width: 1320px;
}

/* Стрелка */
.cosmetics-slider .slick-arrow,
.news-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  z-index: 10;
  font-size: 0;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;

  transition: background-image 0.2s ease-in-out;
}
/* Стрелка влево */
.cosmetics-slider .slick-arrow.slick-prev,
.news-slider .slick-arrow.slick-prev {
  left: -45px;
  background-image: url("../images/arrow-left-disabled.svg");
}
/* Стрелка вправо */
.cosmetics-slider .slick-arrow.slick-next,
.news-slider .slick-arrow.slick-next {
  right: -45px;
  background-image: url("../images/arrow-right-disabled.svg");
}

.news-slider .slick-arrow.slick-prev {
  left: -55px;
}

.news-slider .slick-arrow.slick-next {
  right: -55px;
}

.cosmetics-slider .slick-arrow.slick-prev:hover,
.news-slider .slick-arrow.slick-prev:hover {
  background-image: url("../images/arrow-left.svg");
}

.cosmetics-slider .slick-arrow.slick-next:hover,
.news-slider .slick-arrow.slick-next:hover {
  background-image: url("../images/arrow-right.svg");
}

/* Слайд */
.promotions-slider .slick-slide,
.vkontakte-slider .slick-slide {
  margin: 0 12px;
}

.promotions-slider .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}

.vkontakte-slider .slick-list {
  margin-left: -24px;
  margin-right: -24px;
}

/* Стрелка */
.promotions-slider .slick-arrow,
.vkontakte-slider .slick-arrow {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  z-index: 10;
  font-size: 0;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;

  transition: background-image 0.2s ease-in-out;
}
/* Стрелка влево */
.promotions-slider .slick-arrow.slick-prev,
.vkontakte-slider .slick-arrow.slick-prev {
  left: -55px;
  background-image: url("../images/arrow-left-disabled.svg");
}
/* Стрелка вправо */
.promotions-slider .slick-arrow.slick-next,
.vkontakte-slider .slick-arrow.slick-next {
  right: -55px;
  background-image: url("../images/arrow-right-disabled.svg");
}

.promotions-slider .slick-arrow.slick-prev:hover,
.vkontakte-slider .slick-arrow.slick-prev:hover {
  background-image: url("../images/arrow-left.svg");
}

.promotions-slider .slick-arrow.slick-next:hover,
.vkontakte-slider .slick-arrow.slick-next:hover {
  background-image: url("../images/arrow-right.svg");
}

.ymaps-2-1-79-balloon__layout {
  border-radius: 10px;
}

.ymaps-2-1-79-balloon__layout .ballon-custem {
  background-color: var(--color-main-orange);
  color: var(--color-main-white);
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 18px;
  box-shadow: 0px 10px 20px 0px rgba(227, 93, 18, 0.15);
}

@media screen and (min-width: 2280px) {
  .gallery-slider__container {
    left: 880px;
  }
  .gallery-slider {
    max-width: 416px;
  }
  .gallery-shadow {
    display: none;
  }
  .services {
    background-image: none;
  }
}

@media screen and (max-width: 1400px) {
  .cosmetics-slider {
    max-width: 1140px;
  }
  .cosmetics__card-image {
    width: 180px;
    height: 150px;
  }
  .cosmetics__card {
    height: unset;
  }
  .info-card__image {
    width: 180px;
    height: 180px;
  }
  .gallery-text {
    max-width: 600px;
  }
  .gallery-slider__container {
    left: 62%;
  }
  .arcticles-card,
  .arcticles-card.big-card {
    max-width: 350px;
  }
  .popup__barbershop-map {
    margin-left: 20px;
  }
  .services-box__image {
    width: 100%;
    background-position: right bottom;
  }
}

@media screen and (max-width: 1200px) {
  :root {
    font-size: 14px;
  }
  .header-button {
    z-index: 1;
    display: inline-block;
    width: 56px;
    height: 56px;
    background-color: var(--color-secondary-black);
    border-radius: 9px;
    background-image: url("../images/menu-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
  }

  .header-button.active {
    background-image: url("../images/close-icon.svg");
    background-size: 25%;
  }
  .menu__list .menu__list-item {
    display: none;
  }

  .menu__list.active .menu__list-item {
    display: flex;
    font-size: 1.5rem;
  }
  .menu__list-item--logo {
    display: inline-block;
    margin-bottom: 15px;
  }
  .menu__list.active {
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    background-color: var(--color-main-black);
    flex-direction: column;
    gap: 25px;
    padding: 20px;
    padding-bottom: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: auto;
    animation: slideDown 0.4s ease-in-out normal;
  }

  .menu__list.animation {
    top: -1000%;
    animation: slideTop 0.4s ease-in-out normal;
  }
  @keyframes slideDown {
    from {
      top: -1000%;
    }
    to {
      top: 0;
    }
  }
  @keyframes slideTop {
    from {
      top: 0;
    }
    to {
      top: -1000%;
    }
  }
  .submenu__list {
    padding: unset;
    top: 35px;
    left: 0;
    align-items: flex-start;
    gap: 15px;
  }
  .submenu__list-item {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 15px;
  }
  .submenu__list-item::before {
    position: absolute;
    content: "";
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background-color: var(--color-main-orange);
    left: 0;
  }
  .statistics {
    height: 170px;
  }
  .statistics::before {
    height: inherit;
  }
  .statistics-card {
    height: inherit;
  }
  .statistics-card__image {
    width: 155px;
    height: 153px;
  }
  .statistics-card__title {
    font-size: 2rem;
  }
  .statistics-card__text {
    font-size: 1rem;
    max-width: 130px;
  }
  .info {
    height: 170px;
  }
  .info::before {
    height: inherit;
  }
  .info-card {
    height: inherit;
  }

  .info-card__title {
    font-size: 2rem;
  }
  .info-card__text {
    font-size: 1rem;
    max-width: 130px;
  }
  .gallery-slider__container {
    left: 65%;
  }
  .cosmetics {
    margin-top: 150px;
  }
  .cosmetics-slider,
  .news-slider {
    max-width: 860px;
  }
  .services-box {
    display: none;
  }

  .arrow-down,
  .arrow-hole {
    display: none;
  }
  .black-bg {
    background-image: none;
    background-color: var(--color-main-black);
    border-radius: 100px;
    height: unset;
  }
  .page-city-big .black-bg,
  .page-city .black-bg {
    background-image: none;
    height: unset;
  }
  .vkontakte-posts {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .youtube {
    margin-top: 50px;
    padding-top: 100px;
  }
  .cosmetics-slider,
  .news-slider {
    max-width: 960px;
  }
  .news-card {
    max-width: none;
    height: unset;
  }
  .footer-menu {
    display: none;
  }
  .popup__content {
    align-items: flex-start;
    height: 90vh;
  }
  .barbershops {
    padding-top: 150px;
  }

  .page-city-big .white-bg {
    height: unset;
    min-height: unset;
  }
  .questions-card {
    padding: 40px 30px;
  }
  .questions-card__button {
    margin-top: 20px;
  }
  .submenu__list {
    visibility: visible;
    opacity: 1;
    position: initial;
    margin-top: 10px;
  }
  .submenu {
    align-items: flex-start;
  }
  .page-404 .main {
    height: 278px;
  }
  .page-image {
    width: 600px;
  }
  .main-area img {
    object-fit: contain;
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  :root {
    font-size: 12px;
  }
  .statistics {
    height: 120px;
    border-radius: 25px;
  }
  .statistics-card {
    padding-left: 25px;
  }
  .statistics-card::before {
    height: inherit;
  }
  .statistics-card__image {
    width: 100px;
    height: 99px;
  }
  .statistics-card__text {
    max-width: 120px;
  }
  .booking-icon {
    width: 125px;
    height: 125px;
  }
  .booking-icon__circle {
    width: 120px;
  }
  .show-map-icon {
    width: 70px;
    height: 70px;
  }
  .info {
    height: 120px;
    border-radius: 25px;
  }
  .info-card {
    padding-left: 25px;
  }
  .info-card::before {
    height: inherit;
  }
  .info-card__image {
    width: 92px;
    height: unset;
    aspect-ratio: 1;
    top: 20px;
  }
  .info-card__text {
    max-width: 120px;
  }
  .gallery {
    padding-top: 0;
  }
  .gallery-container {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
  }
  .gallery-slider__container {
    position: relative;
    margin-top: 20px;
    top: 0;
    left: 0;
    height: 300px;
  }
  .gallery-shadow {
    display: none;
  }
  .gallery-title {
    margin-top: 0;
  }
  .gallery-slider {
    height: inherit;
  }
  .gallery-link {
    height: inherit;
  }
  .gallery-slide {
    width: 300px;
    height: 300px;
  }
  .cosmetics {
    margin-top: 100px;
  }
  .youtube-videos {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .arcticles-card.big-card {
    max-width: 361px;
  }
  .page-articles .arcticles-card,
  .page-articles .arcticles-card.big-card {
    max-width: 335px;
  }
  .page-article .arcticles-card,
  .page-article .arcticles-card.big-card {
    max-width: 335px;
  }
  .news-slider .slick-arrow {
    display: none !important;
  }
  .news-card:hover,
  .arcticles-card:hover {
    transform: none;
  }
  .cosmetics-slider {
    max-width: 720px;
  }
  .cosmetics__card-prices {
    flex-wrap: wrap;
    margin-top: 10px;
  }
  .popup__barbershop-map {
    display: none;
  }
  .popup__barbershop {
    height: 90dvh;
  }
  .page-404 .main {
    height: unset;
  }
  .page-image {
    display: none;
  }
  .services {
    padding-top: 20px;
    height: unset;
    padding-bottom: 40px;
    margin-top: 100px;
  }
  .services-top {
    margin-top: 40px;
  }
  .page-city-big .map-container,
  .page-city .map-container {
    margin-top: 560px;
  }
  .page-city-big .contacts-box,
  .page-city .contacts-box {
    top: -540px;
    right: unset;
    left: 0;
  }
  .contacts-box__button {
    flex-direction: column;
  }
  .routes {
    top: 110%;
    right: unset;
  }
}

@media screen and (max-width: 768px) {
  .wrapper {
    overflow-x: hidden;
  }
  .header-logo__link,
  .footer-logo {
    width: 113px;
    height: 94px;
  }
  .header-logo__link {
    margin-top: 16px;
  }
  .main-bg {
    height: 625px;
  }
  .breadcrumb * {
    font-size: 1.2rem;
  }
  .breadcrumb li {
    margin-bottom: 5px;
  }

  .page-article .main-card {
    padding: 0 30px;
  }
  .page-article .main-card__title {
    text-wrap: balance;
  }

  .page-promotions-current .main,
  .page-promotions .main {
    margin-top: 180px;
  }
  .page-promotions-current .promotion-card {
    gap: 20px;
  }
  .page-promotions-current .promotion-image {
    width: 250px;
    aspect-ratio: 1;
  }
  .main {
    margin-top: 150px;
  }
  .page-contacts .main {
    margin-top: 431px;
  }
  .main-subtitle {
    padding: 10.5px 20px;
  }
  .main-title {
    margin-top: 20px;
  }
  .main-video {
    width: 150px;
    height: 150px;
  }
  .video-link {
    width: 70px;
  }
  .video-cirlce {
    width: inherit;
    height: inherit;
  }

  .video-button {
    width: inherit;
    height: inherit;
  }
  .info {
    top: 380px;
  }
  .info-card {
    padding-left: 20px;
  }
  .info-card__title {
    font-size: 1.5rem;
    max-width: 120px;
  }
  .info-card__text {
    font-size: 0.875rem;
    max-width: 100px;
  }
  .info-card__image {
    width: 85px;
    right: 0;
    border-radius: 5px;
  }
  .statistics {
    top: 380px;
  }
  .statistics-card {
    padding-left: 20px;
  }
  .statistics-card__title {
    font-size: 1.875rem;
  }
  .statistics-card__text {
    font-size: 0.875rem;
    max-width: 100px;
  }
  .statistics-card__image {
    width: 80px;
    height: 78px;
  }
  .white-bg {
    margin-top: 25px;
    padding-top: 100px;
  }
  .page-privacy .main {
    margin-top: 301px;
  }
  .page-city .white-bg {
    padding-top: 0;
  }
  .barbershops-box {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-city-big .white-bg {
    padding-top: 0;
  }
  .gallery {
    margin-top: 50px;
    border-radius: 60px 60px 0 0;
  }
  .page-articles .articles-box-1 {
    border-radius: 60px 60px 0 0;
  }
  .gallery-title {
    margin-top: 0;
  }
  .gallery-text {
    margin-top: 20px;
  }
  .services {
    margin-top: 70px;
  }
  .services-bottom {
    display: flex;
    justify-content: space-between;
  }
  .services__table {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .services__table-row {
    width: 100%;
  }

  .services-bottom {
    flex-direction: column;
  }
  .services-box {
    display: none;
    width: 100%;
    margin-top: 50px;
  }
  .questions-box {
    grid-template-columns: 1fr;
  }
  .youtube {
    padding-top: 50px;
  }
  .news-slider .slick-list {
    padding-top: 33px;
  }
  .news-slider {
    margin-bottom: 70px;
  }
  .cosmetics-slider {
    max-width: 540px;
  }
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer-links__phone--subtitle {
    display: none;
  }
  .footer-links {
    max-width: 340px;
  }
}

@media screen and (max-width: 576px) {
  .header .header-button {
    order: -1;
  }
  .header .header-logo__link {
    transition-property: width, height;
  }

  .header .menu__list:not(.active) {
    width: 56px;
  }
  .page-city .menu__list:not(.active) {
    width: 0;
  }
  .header .header-button {
    transition: none;
  }
  .header .menu__list-item--logo {
    align-self: center;
  }
  .header-logo__link.active {
    visibility: hidden;
  }

  .page-privacy .title {
    font-size: 2.5rem;
  }
  .page-contacts .main {
    border-radius: 60px 60px 0 0;
    margin-bottom: 320px;
  }
  .page-contacts .contacts-box {
    bottom: -350px;
    top: unset;
    right: unset;
    box-shadow: none;
    padding-left: 0;
    background-color: transparent;
  }
  .page-contacts .main-container {
    top: -249px;
  }
  .page-contacts .contacts-top {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
  }
  .page-contacts .contacts-top__links {
    width: unset;
  }
  .page-city.header:not(.fit) .header-menu .header-logo__link {
    width: 80px;
    height: unset;
    margin-top: 0;
  }
  .page-city .header-menu .header-logo__link {
    margin-right: auto;
    margin-left: 20px;
  }
  .page-city.header:not(.fit) .header-menu {
    padding-top: 14px;
  }
  .page-city .menu-phone {
    display: block;
  }
  .page-city .menu-phone img {
    display: none;
  }
  .page-city.fit .menu__list:not(.active) {
    width: 0;
  }
  .page-city .menu-phone .menu__list-number {
    display: block;
    font-size: 1.5rem;
    text-decoration: underline;
    text-decoration-style: dashed;
  }
  .page-city .header .menu__list:not(.active) {
    width: 56px;
    position: absolute;
  }
  .main-bg {
    height: 750px;
    object-position: -300px;
    object-fit: none;
  }
  .page-article .main {
    border-radius: 60px 60px 0 0;
    z-index: 0;
    margin-top: 398px;
  }
  .page-article .main-container {
    top: -185px;
  }

  .page-article .main-card {
    aspect-ratio: 5.4 / 3.3;
    height: unset;
  }
  .page-article .main-card__title {
    font-size: 2.5rem;
    bottom: 30px;
  }
  .page-articles .articles-box-1 {
    margin-top: 134px;
  }

  .page-articles .articles-container {
    top: -100px;
  }

  .page-article .main-area {
    margin-top: 40px;
    font-size: 1.5rem;
  }

  .page-article .arcticles-card,
  .page-article .arcticles-card.big-card {
    max-width: 526px;
    padding: 0 20px;
    aspect-ratio: 5.4 / 3.3;
    height: unset;
  }

  .page-article .articles-card__title {
    margin-top: 140px;
  }
  .page-article .articles-card__date {
    top: 15px;
    right: 15px;
  }

  .page-article .more {
    margin-bottom: -100px;
  }

  .page-article .more-articles {
    margin-top: 35px;
  }

  .page-articles .articles-card__title {
    margin-top: 40%;
  }
  .page-articles .articles-card__date {
    top: 15px;
    right: 15px;
  }

  .page-promotions-current .promotions {
    border-radius: 60px 60px 0 0;
    margin-top: 50px;
  }
  .page-promotions-current .promotions-box {
    margin-bottom: 80px;
  }
  .page-promotions-current .promotion-card {
    flex-wrap: wrap;
  }
  .page-promotions-current .promotion-image {
    width: 100%;
    aspect-ratio: 3 / 2;
  }

  .page-promotions .form {
    margin-top: 37px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions .form-input {
    max-width: none;
    height: 60px;
    border-radius: 10px;
  }
  .page-promotions .form-button {
    width: 100%;
  }
  .page-promotions .promotions {
    border-radius: 60px 60px 0 0;
  }
  .page-promotions .promotions-box {
    margin-bottom: 80px;
  }
  .page-promotions .promotions-card {
    height: unset;
    aspect-ratio: 1 / 1;
  }
  .page-promotions .promotions-city {
    text-align: center;
  }
  .page-promotions .promotions-title {
    text-align: center;
  }

  .main__button-box {
    margin-top: 38px;
  }
  .main {
    margin-top: 150px;
  }
  .main-video {
    width: 150px;
    height: 150px;
    right: -5px;
    left: unset;
  }
  .page-city-big .main-video,
  .page-city .main-video {
    top: 220px;
  }
  .white-bg {
    margin-top: -300px;
    padding-top: 325px;
  }
  .page-city .white-bg {
    padding-top: 0;
    margin-top: 40px;
  }
  .page-city-big .white-bg {
    padding-top: 0;
  }
  .barbershops {
    padding-top: 425px;
  }
  .barbershops-box {
    grid-template-columns: repeat(1, 1fr);
  }
  .barbershops .city-box {
    font-size: 1.25rem;
  }
  .info {
    position: relative;
    top: 50px;
    flex-wrap: wrap;
    height: 400px;
    border-radius: 40px;
  }
  .info::before {
    display: none;
  }
  .info-card {
    padding-left: 28px;
    height: 100px;
    max-width: none;
  }
  .info-card::before {
    width: auto;
    height: 1px;
    bottom: 0;
    left: 28px;
    right: 28px;
  }
  .info-card__title {
    font-size: 2rem;
    max-width: unset;
    max-width: 225px;
  }

  .info-card__text {
    margin-top: 10px;
    font-size: 1.25rem;
    max-width: 220px;
  }
  .info-card:nth-of-type(1) .info-card__image {
    right: 20px;
  }
  .info-card:nth-of-type(3) .info-card__image {
    right: 0;
  }
  .info-card__image {
    width: 100px;
    height: unset;
    aspect-ratio: 1;
    top: 0px;
    right: 10px;
    border-radius: 20px;
  }
  .info-card:nth-of-type(3) .info-card__image {
    bottom: -16px;
  }
  .statistics {
    position: relative;
    top: 50px;
    flex-wrap: wrap;
    height: 400px;
    border-radius: 40px;
  }
  .statistics::before {
    display: none;
  }
  .statistics-card {
    padding-left: 28px;
    height: 100px;
    max-width: none;
  }
  .statistics-card::before {
    width: auto;
    height: 1px;
    bottom: 0;
    left: 28px;
    right: 28px;
  }
  .statistics-card__title {
    font-size: 2.5rem;
  }
  .statistics-card__text {
    margin-top: 10px;
    font-size: 1.25rem;
    max-width: 220px;
  }
  .statistics-card__image {
    width: 117px;
    height: 115px;
  }
  .statistics-card:nth-of-type(3) .statistics-card__image {
    bottom: -16px;
  }
  .booking-icon {
    right: 20px;
    bottom: 20px;
  }
  .show-map-icon {
    left: 20px;
    bottom: 20px;
  }

  .gallery {
    margin-top: 0;
    padding-bottom: 25px;
  }
  .gallery-title {
    margin-top: 100px;
  }
  .gallery-subtitle {
    margin-top: 10px;
    padding: 10px;
    font-size: 1rem;
  }
  .gallery-arrows {
    margin-top: 30px;
  }

  .progress-bar {
    width: 200px;
  }
  .cosmetics__slider-container {
    margin-top: 10px;
  }
  .cosmetics__card {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cosmetics__card-title {
    margin-top: 20px;
    text-align: center;
    font-size: 2.25rem;
  }
  .cosmetics__card-desc {
    margin-top: 5px;
    font-size: 1.5rem;
  }
  .cosmetics__card-image {
    width: max-content;
    height: 230px;
  }
  .cosmetics__card-price {
    font-size: 2rem;
  }
  .cosmetics__card-prices {
    flex-direction: column;
  }

  .cosmetics__card-button {
    margin-left: 0;
    margin-top: 10px;
    font-size: 1.5rem;
  }
  .cosmetics__card-button::before {
    top: 20px;
    right: 15px;
  }
  .promotions-title {
    padding-top: 100px;
  }
  .services {
    margin-top: 100px;
  }
  .services__table {
    width: 100%;
  }
  .row-time {
    white-space: nowrap;
  }
  .row-line {
    display: none;
  }
  .row-price {
    flex-grow: 1;
    text-align: end;
    white-space: nowrap;
    margin-left: 20px;
  }
  .services-box {
    height: unset;
    aspect-ratio: 4.4 / 5.4;
  }
  .services-box__image {
    height: unset;
    aspect-ratio: 5.2 / 6.2;
  }

  .black-bg {
    margin-top: 80px;
    border-radius: 40px;
  }
  .vkontakte {
    padding-top: 70px;
  }
  .vkontakte-posts {
    display: block;
  }
  .vkontakte-button {
    padding: unset;
    font-size: 0;
    min-width: 46px;
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
  .vkontakte-button::before {
    width: 22px;
    height: 13px;
    left: 12px;
    top: 17px;
  }
  .vkontakte-post {
    width: 100%;
    aspect-ratio: 1;
    height: unset;
  }
  .vkontakte-image {
    width: inherit;
    height: inherit;
    object-fit: cover;
  }
  .youtube {
    margin-top: 0;
    padding-top: 70px;
  }

  .youtube-button {
    font-size: 0;
    padding: unset;
    width: 46px;
    height: 46px;
    border-radius: 10px;
  }
  .youtube-button::before {
    left: 13px;
    top: 16px;
    width: 20px;
    height: 14px;
  }
  .youtube-videos {
    margin-top: 72px;
    display: block;
  }

  .youtube-image {
    width: inherit;
    height: inherit;
  }
  .youtube-subtitle {
    top: 35px;
  }
  .youtube-video {
    height: unset;
  }
  .articles-button {
    padding: 20px 40px;
  }
  .articles-box {
    margin-top: 25px;
  }
  .page-articles .arcticles-card,
  .page-articles .arcticles-card.big-card {
    max-width: 526px;
    padding: 0 20px;
    aspect-ratio: 5.4 / 3.3;
    height: unset;
  }
  .cosmetics__card-oldprice {
    right: 7px;
    bottom: 15px;
    display: none;
  }
  .news-slider,
  .cosmetics-slider,
  .articles-slider {
    max-width: 100%;
  }
  .cosmetics-slider .slick-list {
    margin-left: -48px;
  }
  .news-slider .slick-list {
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 33px;
  }
  .news-card,
  .arcticles-card {
    height: 220px;
    padding: 0 20px;
  }
  .articles-card__title,
  .news-card__title {
    margin-top: 110px;
  }
  .articles-card__date,
  .news-card__date {
    top: 15px;
    right: 15px;
    padding: 10px 14px;
  }
  .map-container {
    margin-bottom: 80px;
  }
  .map-subtitle {
    right: unset;
  }
  .page-privacy .main {
    border-radius: 60px 60px 0 0;
    height: 60px;
  }
  .page-privacy .textarea {
    padding-bottom: 60px;
  }
  .questions-card {
    padding: 35px 30px;
  }
  .questions-card__title {
    font-size: 2rem;
  }
  .questions-card__text {
    font-size: 1.375rem;
    max-height: 40px;
  }
  .footer {
    background: var(--color-main-black);
  }
  .footer-privacy {
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-copyright {
    margin-top: 30px;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .links-button {
    font-size: 0;
    padding: 20px;
  }
  .links-button::before {
    left: 10px;
  }
  .links-button--whatsapp::before {
    left: 11px;
  }
  .links-button--vkontakte::before {
    left: 9px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .footer-links__box--socials {
    justify-content: flex-start;
  }
  .popup {
    justify-content: flex-start;
  }
  #popup__gallery.popup {
    justify-content: center;
  }
  .popup__barbershop {
    padding: 70px 30px;
    overflow-y: scroll;
  }
  .popup__close-icon {
    right: 20px;
    top: 20px;
  }
  .popup__barbershop-tabs {
    margin-top: 15px;
    gap: 30px;
  }
  .popup__barbershop-tabs a {
    font-size: 1.25rem;
  }
  a.tabs-button {
    padding: 12px 14px;
    display: none;
  }
  a.popup__barbershop-button {
    display: inline-block;
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
  .popup__barbershop-cities {
    padding-bottom: 20px;
    padding-top: 20px;
    overflow-y: auto;
    max-height: unset;
  }
  .popup__gallery {
    height: 50dvh;
  }
  .container {
    padding-right: var(--bs-gutter-x, 1.75rem);
    padding-left: var(--bs-gutter-x, 1.75rem);
  }
  .news-slider .slick-list,
  .cosmetics-slider .slick-list,
  .articles-slider .slick-list,
  .promotions-slider .slick-list {
    margin-left: -24px;
    margin-right: -24px;
  }
  .cosmetics-slider .slick-arrow.slick-prev {
    left: 10px;
  }
  .cosmetics-slider .slick-arrow.slick-next {
    right: 10px;
  }
  .cosmetics-slider .slick-slide {
    box-shadow: none;
  }
  .form-input {
    height: 50px;
    border-radius: 10px;
  }
  .popup__barbershop {
    top: 20px;
  }
  .page-articles .main-title {
    margin-top: 0;
  }
  .page-city .services {
    margin-top: 30px;
  }
  .page-city .cosmetics {
    margin-top: 100px;
  }
}

@media screen and (max-width: 390px) {
  .title {
    font-size: 2.5rem;
  }
  .page-privacy .title {
    font-size: 2rem;
  }
  .main-title {
    font-size: 2.8rem;
  }
  .statistics-card__text {
    max-width: 180px;
  }
  .info-card__title {
    font-size: 1.75rem;
  }
  .info-card__text {
    max-width: 180px;
  }
  .page-articles .main-title {
    font-size: 3.25rem;
  }
  .youtube-title {
    max-width: 250px;
  }
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .popup__barbershop-tabs {
    gap: 20px;
  }
  .gallery-subtitle {
    font-size: 0.875rem;
  }
  .cosmetics__card {
    padding: 30px 15px;
  }
  .cosmetics__card-title {
    font-size: 1.5rem;
  }
  .cosmetics__card-desc {
    font-size: 1.1rem;
  }
  .cosmetics__card-price {
    font-size: 1.5rem;
  }
  .cosmetics__card-button {
    font-size: 1rem;
    margin-top: 10px;
  }
  .cosmetics__card-image {
    height: 200px;
  }
  .cosmetics__card-button::before {
    top: 13px;
  }
  .popup__barbershop {
    padding: 50px 30px;
  }
  .form-input {
    height: 45px;
  }
  .form-close__button {
    right: 5px;
  }
  .page-article .main-card__title {
    font-size: 2rem;
  }

  .page-article .articles-card__title {
    margin-top: 110px;
  }
  .page-promotions .form-input {
    height: 45px;
  }
}
