* {
  position: relative;
  box-sizing: border-box;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.animated {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

body {
  font-family: "Gotham Pro", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #6f7070;
}

img {
  max-width: 100%;
}

.color-red {
  color: #f8543e;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 174px;
  background-color: transparent;
  font-family: "Gotham Pro", Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid transparent;
  outline: none;
  border-radius: 31px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn-primary {
  background-color: #f14d42;
  border-color: #f14d42;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: transparent;
  color: #f14d42;
}

.btn-border {
  border-color: #6f7070;
  color: #6f7070;
}

.btn-border:hover,
.btn-border:active {
  background-color: #6f7070;
  color: #fff;
}

.btn-sm {
  height: 40px;
  width: auto;
  padding: 0 10px;
}

.btn-second {
  background-color: #6f7070;
  border-color: #6f7070;
  color: #fff;
}

.btn-second:hover,
.btn-second:active {
  background-color: transparent;
  color: #6f7070;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding-top: 146px;
  padding-bottom: 156px;
  background-color: #fff;
}

.bg-grey {
  background-color: #f5f5f5;
}

.section__title {
  margin-bottom: 45px;
  font-weight: bold;
  font-size: 46px;
  line-height: 1.13;
  text-transform: uppercase;
}

.section__text {
  margin-bottom: 45px;
}

.section__text p {
  margin-bottom: 25px;
}

.section__text p:last-child {
  margin-bottom: 0;
}

.header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  font-size: 14px;
  font-weight: 500;
  z-index: 1;
}

.header.is-open {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 30px;
  padding-bottom: 9vh;
  background-color: #fff;
}

.header.is-open .header__menu {
  display: flex;
}

.header.is-open .header__button-menu .icon-close {
  display: block;
}

.header.is-open .header__button-menu .icon-menu {
  display: none;
}

.header__content {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.header__button-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.header__button-menu .icon-close {
  display: none;
}

.header__nav {
  margin-right: 28px;
}

.header__lang {
  margin-right: 19px;
}

.first__profile,
.header__profile {
  display: flex;
}

.first__profile .btn,
.header__profile .btn {
  width: auto;
  height: 38px;
  margin-right: 19px;
  padding: 0 12px;
  font-weight: 500;
  border-radius: 20px;
}

.first__profile .btn:last-child,
.header__profile .btn:last-child {
  margin-right: 0;
}

.logo img {
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.menu__item {
  margin-right: 40px;
}

.menu__item:last-child {
  margin-right: 0;
}

.menu__link,
.link {
  transition: opacity 0.3s ease-in-out;
}

.menu__link:hover,
.link:hover {
  opacity: 0.8;
}

.lang.is-open .lang__list {
  display: block;
}

.lang__current,
.lang__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.lang__current {
  background-color: #6f7070;
  color: #fff;
}

.lang__list {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 10px;
}

.lang__item {
  margin-bottom: 10px;
}

.lang__item:last-child {
  margin-bottom: 0;
}

.lang__item:hover {
  background-color: #6f7070;
  color: #fff;
}

.first {
  padding-top: 263px;
  padding-bottom: 237px;
  background-image: linear-gradient(196deg, rgba(255, 255, 255, 0.79) 66%, rgba(255, 255, 255, 0.6) 46%, rgba(255, 255, 255, 0.77) 28%);
  overflow: hidden;
}

.first__bg {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.first__bg:after {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(196deg, rgba(255, 255, 255, 0.79) 66%, rgba(255, 255, 255, 0.6) 46%, rgba(255, 255, 255, 0.77) 28%);
  content: "";
}

.first__bg video {
  min-width: 100%;
  min-height: 100%;
}

.first__button .btn {
  margin-right: 20px;
}

.first__profile {
  display: none;
  margin-top: 87px;
  justify-content: center;
}

.about .text {
  margin-bottom: 57px;
  font-size: 21px;
  font-weight: 500;
}

.about .list {
  display: flex;
  justify-content: space-between;
}

.about .item {
  text-align: center;
}

.about .item .icon {
  height: 72px;
  margin-bottom: 27px;
}

.about .item .icon img {
  max-height: 100%;
}

.about .item .title {
  margin-bottom: 7px;
  font-size: 28px;
  font-weight: 500;
}

.principle {
  width: 210px;
  height: auto;
  padding: 29px;
  padding-right: 19px;
  background-color: #fff;
  border-radius: 32px;
}

.principle .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  width: 85px;
  margin: 0 auto 21px;
  background: url("../img/polygon.svg") no-repeat center;
  background-size: contain;
}

.principle .title {
  margin-bottom: 21px;
  font-weight: 500;
  font-size: 21px;
  text-align: center;
}

.principle p {
  font-size: 14px;
}

.verticals .section__text {
  max-width: 640px;
  margin-bottom: 70px;
}

.verticals__list {
  display: flex;
  flex-wrap: wrap;
  margin: -25px;
}

.verticals__item {
  padding: 25px;
}

.vertical {
  display: block;
  width: 252px;
  height: 252px;
  padding-top: 170px;
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  text-align: center;
}

.sources .section__title {
  margin-bottom: 50px;
}

.sources .chart-desktop {
  /* width: 500px; */
  height: 500px;
  margin: auto;
}

.sources .chart-mobile {
  display: none;
}

.source {
  margin-bottom: 24px;
}

.source:last-child {
  margin-bottom: 0;
}

.source__line {
  height: 37px;
  margin-bottom: 10px;
  background-color: #eaeaea;
}

.source__line .filled {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  background-color: #f44c3b;
}

.source__title {
  font-size: 16px;
}

.source__title .value {
  margin-right: 4px;
  font-weight: bold;
}

.brands .section__title {
  margin-bottom: 54px;
}

.brands .section__text {
  max-width: 800px;
  margin-bottom: 64px;
}

.brands__list {
  display: flex;
  flex-wrap: wrap;
  margin: -20px;
}

.brands__item {
  padding: 20px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 158px;
  height: 96px;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.12);
  border: solid 1px #f4f4f4;
}

.brand img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.swiper-brands {
  display: none;
  height: 360px;
  padding: 30px;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 10px;
}

.global {
  padding-bottom: 0;
  background-image: linear-gradient(to bottom, #fbfbfb, #f5f5f5);
  overflow: hidden;
}

.global__map {
  height: 750px;
}

.global .map {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1160px;
  height: 100%;
  background: url("../img/map.png") no-repeat center;
  background-size: contain;
  transform: translateX(-50%);
}

.global .countries {
  display: none;
}

.contact {
  padding-top: 85px;
  background-image: linear-gradient(to bottom, #f5f5f5, #fff);
}

.contact .section__title {
  margin-bottom: 72px;
}

.contact .list {
  display: flex;
  align-items: center;
  margin: -20px;
}

.contact .item {
  padding: 20px;
}

.contact .item img {
  display: block;
  max-width: 100%;
}

.footer {
  padding-bottom: 65px;
  background-color: #fff;
  color: #c4c4c4;
}

.footer .copyright {
  line-height: 1.3;
}

.footer .title {
  margin-bottom: 15px;
  font-size: 21px;
  font-weight: bold;
  text-transform: uppercase;
}

.footer__content {
  display: flex;
  border-top: solid 1px rgba(151, 151, 151, 0.28);
  padding-top: 68px;
  font-size: 14px;
}

.footer__block {
  width: 23%;
  padding-right: 44px;
}

.footer__block:last-child {
  width: auto;
  margin-left: auto;
  padding-right: 0;
}

.socials {
  display: flex;
  align-items: center;
  color: #f8543e;
  line-height: 1;
}

.social-fb {
  margin-right: 10px;
  font-size: 32px;
}

.social-linkedin {
  font-size: 34px;
}

.marker {
  position: absolute;
  display: flex;
  padding-left: 9px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  color: #707070;
  text-transform: uppercase;
}

.marker:after {
  position: absolute;
  left: -6px;
  bottom: -6px;
  width: 11px;
  height: 11px;
  background-color: #ff4237;
  border-radius: 50%;
  content: "";
}

.marker:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #ff4237;
  content: "";
}

.marker.is-down {
  align-items: flex-end;
}

.marker.is-down:after {
  top: -6px;
  bottom: auto;
}

#marker-1 {
  height: 120px;
  top: 41%;
  left: 19%;
}

#marker-2 {
  height: 167px;
  top: 64%;
  left: 32%;
}

#marker-3 {
  height: 140px;
  top: 15%;
  left: 51%;
}

#marker-4 {
  height: 188px;
  top: 9%;
  left: 48%;
}

#marker-5 {
  height: 240px;
  top: 3.5%;
  left: 46%;
}

#marker-6 {
  height: 270px;
  top: -2%;
  left: 45%;
}

#marker-7 {
  height: 285px;
  top: 41%;
  left: 44.5%;
}

#marker-8 {
  height: 260px;
  top: 38%;
  left: 46%;
}

#marker-9 {
  height: 213px;
  top: 39%;
  left: 48%;
}

#marker-10 {
  height: 88px;
  top: 50%;
  left: 51%;
}

#marker-11 {
  height: 66px;
  top: 22%;
  left: 65%;
}

#marker-12 {
  height: 100px;
  top: 33%;
  left: 72%;
}

#marker-13 {
  height: 130px;
  top: 66%;
  left: 80%;
}

.swiper-wrapper {
  margin-bottom: 50px;
}

@-webkit-keyframes swipe {
  0% {
    transform: scale(50%);
    opacity: 0;
  }
  50% {
    transform: scale(100%);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}

@keyframes swipe {
  0% {
    transform: scale(50%);
    opacity: 0;
  }
  50% {
    transform: scale(100%);
    opacity: 1;
  }
  100% {
    transform: translateX(50px);
    opacity: 0;
  }
}

.icon-swipe {
  display: none;
  width: 58px;
  height: 49px;
  margin: auto;
  background: url("../img/swipe.svg") no-repeat center;
  background-size: contain;
  animation: swipe 1.5s ease-in-out;
  animation-iteration-count: infinite;
}

.breadcrumb__list {
  display: flex;
  color: rgba(111, 112, 112, 0.7);
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__item:after {
  margin: 0 5px;
  content: "/";
}

.breadcrumb__item:last-child:after {
  display: none;
}

.faq {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.faq .btn {
  display: flex;
  width: 320px;
  height: 70px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: bold;
  border-radius: 35px;
}

.faq__list {
  margin-bottom: 79px;
}

.faq__item {
  padding: 24px 0;
  border-top: solid 1px #979797;
  transition: padding 0.3s ease-in-out;
}

.faq__item.is-open {
  padding: 40px 0;
}

.faq__item.is-open .question .icon {
  transform: rotate(45deg);
}

.faq__item:last-child {
  border-bottom: solid 1px #979797;
}

.faq__item .question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 23px;
  font-size: 21px;
  font-weight: bold;
  cursor: pointer;
}

.faq__item .question span {
  padding-right: 50px;
}

.faq__item .question .icon {
  font-size: 30px;
  line-height: 1;
  color: #f14e43;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.faq__item .answer {
  display: none;
  max-width: 1000px;
  padding-top: 35px;
}

.faq__item .answer a {
  color: #f14e43;
  font-weight: bold;
}

.alert {
  position: fixed;
  right: 140px;
  bottom: 40px;
  max-width: 388px;
  z-index: 10;
}

.alert__content {
  display: flex;
  padding: 29px 33px;
  background-color: #fff;
  font-size: 14px;
  border-radius: 30px;
}

.alert__text {
  padding-right: 10px;
}

.alert__button {
  flex-shrink: 0;
}

input {
  width: 100%;
  height: 45px;
  padding: 0 18px;
  background-color: transparent;
  font-family: "Gotham Pro", sans-serif;
  font-weight: normal;
  font-size: 14px;
  color: #6f7070;
  border: solid 1px #6f7070;
  border-radius: 23px;
}

[type="radio"],
[type="checkbox"] {
  display: none;
}

.form {
  font-size: 14px;
}

.form__fileds {
  margin-bottom: 17px;
}

.form__group {
  margin-bottom: 14px;
}

.form__group:last-child {
  margin-bottom: 0;
}

.form__group.has-error .error {
  display: block;
}

.form__group.has-error input {
  border-color: #f14d42;
}

.form__group.has-error input::placeholder {
  color: #f14d42;
}

.form .error {
  display: none;
  color: #f14d42;
  white-space: nowrap;
}

.form__note {
  padding: 29px;
  background-color: #f14d42;
  border-radius: 30px;
  text-align: center;
  line-height: 1.1;
  color: #fff;
}

.form__input .icon {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.form__input .icon-close {
  font-size: 9px;
}

.form__checkbox {
  line-height: 1.4;
}

.form__checkbox [type="checkbox"]:checked + label .circle:after {
  transform: scale(1);
}

.form__radio label,
.form__checkbox label {
  display: flex;
  cursor: pointer;
}

.form__checkbox .circle {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  border: solid 3px #979797;
  border-radius: 50%;
}

.form__checkbox .circle:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background-color: #979797;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
  content: "";
}

.form__checkbox label a {
  color: #f14d42;
}

.form__radio [type="radio"]:checked + label {
  color: #f14d42;
}

.form__select.is-open .form__input input {
  border-radius: 23px 23px 0 0;
  border-bottom: none;
}

.form__select.is-open .dropdown {
  display: block;
}

.form__select .dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  padding: 5px 0;
  background-color: #fff;
  border: solid 1px #6f7070;
  border-top: none;
  border-radius: 0 0 23px 23px;
  overflow: hidden;
  z-index: 1;
}

.form__select .dropdown__item {
  padding: 5px 21px;
  cursor: pointer;
}

.form__select .dropdown__item:hover {
  background-color: #f0f0f0;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.popup .close {
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0.7;
  line-height: 1;
  z-index: 1;
}

.popup-login .btn {
  width: 140px;
  height: 52px;
  margin: auto;
}

.popup-login .form__fileds {
  margin-bottom: 21px;
}

.popup-login .form__button {
  margin-bottom: 11px;
  text-align: center;
}

.popup-login .link-forgot {
  display: block;
  margin-bottom: 11px;
  text-align: center;
  font-size: 14px;
  opacity: 0.5;
}

.popup__content {
  width: 388px;
  padding: 39px;
  background-color: #fff;
  border-radius: 30px;
}

.popup__title {
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 46px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

.swiper-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-navigation .arrow {
  font-size: 33px;
}

.swiper-navigation .pagination {
  display: inline-flex;
  bottom: auto;
  width: auto;
  padding: 0 35px;
}

.swiper-navigation .pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  margin: 0 12px;
}

.swiper-navigation .pagination .swiper-pagination-bullet-active {
  background-color: #f44c3b;
}

.tabs-value {
  display: none;
}

.tabs-value.active {
  display: block;
}

@media (max-width: 1279px) {
  .section:not(.first) {
    padding-top: 90px;
    padding-bottom: 100px;
  }

  .brands__list,
  .verticals__list {
    margin: -15px;
  }

  .brands__item,
  .verticals__item {
    padding: 15px;
  }

  .alert {
    right: 40px;
  }
}

@media (max-width: 1023px) {
  .container {
    /* max-width: 768px; */
    padding-left: 37px;
    padding-right: 37px;
  }

  .section__title {
    margin-bottom: 20px;
  }

  .section__text {
    margin-bottom: 30px;
  }

  .header {
    top: 30px;
    z-index: 10;
  }

  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .header .logo {
    z-index: 1;
  }

  .header__content {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
  }

  .header__menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    margin-left: 0;
  }

  .header__button-menu {
    display: block;
  }

  .header__nav,
  .menu__item,
  .header__lang {
    margin-right: 0;
  }

  .header__lang {
    margin-bottom: 50px;
  }

  .header__nav {
    margin-bottom: 4.6vh;
  }

  .header__profile {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
  }

  .menu {
    display: block;
    font-size: 33px;
    font-weight: bold;
    line-height: 64px;
  }

  .lang,
  .lang__list {
    display: flex !important;
    align-items: center;
  }

  .lang__list {
    position: relative;
    padding-top: 0;
    padding-left: 10px;
  }

  .lang__item {
    margin-bottom: 0;
    margin-right: 10px;
    background-color: #f5f5f5;
  }

  .first {
    padding-top: 241px;
    padding-bottom: 82px;
  }

  .first .section__title {
    margin-bottom: 44px;
    font-size: 33px;
  }

  .first__profile {
    display: flex;
  }

  .verticals__list {
    margin: -10px -13px;
  }

  .verticals__item {
    padding: 10px 13px;
  }

  .about .list {
    flex-wrap: wrap;
  }

  .about .item {
    width: 50%;
  }

  .about .item:nth-child(n + 3) {
    margin-top: 50px;
  }

  .sources .section__title {
    margin-bottom: 40px;
  }

  .principles .section__title {
    margin-bottom: 100px;
  }

  .vertical {
    width: 157px;
    height: 157px;
    padding-top: 103px;
    font-size: 18px;
  }

  .brand {
    flex-shrink: 0;
    width: 118px;
    height: 72px;
  }

  .global {
    background: #fff url("../img/map.png") no-repeat center bottom;
    background-size: cover;
  }

  .global__map {
    height: auto;
  }

  .global .map {
    display: none;
  }

  .global .countries {
    display: block;
    font-size: 21px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .global .country {
    display: flex;
  }

  .global .country i {
    margin-right: 4px;
  }

  .contact {
    background: #fff;
  }

  .footer__content {
    flex-wrap: wrap;
  }

  .footer__block {
    width: 25%;
    margin-bottom: 25px;
    padding-right: 0;
  }

  .footer__block:first-child {
    width: 100%;
  }

  .footer__block:last-child {
    margin-bottom: 30px;
  }

  .icon-swipe {
    display: block;
  }

  .principles,
  .brands {
    padding-bottom: 50px !important;
  }

  .brands .section__text {
    margin-bottom: 34px;
  }

  .brands__list {
    display: none;
  }

  .swiper-brands {
    display: block;
  }

  .alert {
    right: 20px;
    bottom: 20px;
  }

  .faq__item .question {
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .first__button {
    display: flex;
    flex-direction: column;
  }

  .first__button .btn {
    max-width: 420px;
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .first__button .btn:last-child {
    margin-bottom: 0;
  }

  .sources .chart-desktop {
    display: none;
  }

  .sources .chart-mobile {
    display: block;
  }

  .contact .section__title {
    position: absolute;
    margin: 0;
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    animation: none;
  }

  .contact .list {
    display: block;
    padding-left: 100px;
    margin: 0;
  }

  .contact .item {
    padding: 0;
    margin-bottom: 40px;
  }

  .contact .item:last-child {
    margin-bottom: 0;
  }

  .footer__block {
    width: 100%;
  }

  .footer__block:last-child {
    margin-left: 0;
  }

  .faq__item .question {
    padding-right: 0;
  }

  .swiper-navigation {
    width: 200px;
    justify-content: space-between;
    margin: auto;
  }

  .swiper-navigation .pagination {
    display: none;
  }
}

@media (max-width: 413px) {
  .menu {
    font-size: 28px;
    line-height: 1.5;
  }

  .section__title {
    font-size: 36px;
  }

  .verticals__list {
    margin: 0;
  }

  .verticals__item {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .verticals__item:last-child {
    margin-bottom: 0;
  }

  .vertical {
    width: 100%;
  }
}
