/*Null style*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-family: 'Metropolis';
  font-weight: 400;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
input,
button,
textarea {
  font-family: inherit;
}
input::-ms-clear {
  display: none;
}
button {
  cursor: pointer;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*--------------------*/
/*Fonts*/
@font-face {
  font-family: 'Metropolis';
  src: url('../metropolis-regular-webfont.html') format('woff2');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Metropolis';
  src: url('../metropolis-medium.html') format('woff2');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Metropolis';
  src: url('../metropolis-semibold.html') format('woff2');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'Metropolis';
  src: url('../metropolis-bold-webfont.html') format('woff2');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/*===================================================================================*/
/*Common Styles*/

/* .wrapper {
} */

/* .content{
} */

.container {
  max-width: 1370px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-1 {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-2 {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 15px;
}

.title__section {
  margin-bottom: 75px;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: #050e1a;
  text-align: center;
}

.clr-blue {
  color: #2f80ed;
}
.semi-bold {
  font-weight: 600;
}
.section__padding {
  padding: 120px 0;
}

body.lock {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 1023px) {
  .title__section {
    margin-bottom: 30px;
    font-size: 36px;
  }
  .section__padding {
    padding: 60px 0;
  }
}

/*HEADER*/
.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto !important;
  z-index: 3;
  box-shadow: 0px 1px 0px #f0f2f5;
  background: #ffffff;
}

.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 10px 15px;
}

.header__menu {
  display: flex;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  z-index: 3;
}

.menu__list {
  display: flex;
  flex-wrap: wrap;
}

.menu__item {
  margin-left: 30px;
}

.menu__item--submenu {
  position: relative;
  left: 0;
  top: 0;
}

.submenu__list {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-width: 220px;
  -webkit-box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0f2f4;
  background: #fff;
}

.submenu__item {
  transition: all 0.5s ease 0s;
}

.submenu__item:last-child {
  margin-bottom: 0;
}

.submenu__link {
  display: block;
  padding: 10px 10px;
  line-height: 20px;
  color: #415166;
  transition: all 0.5s ease 0s;
}

.submenu__link.active {
  color: #2f80ed;
}

.menu__item--submenu:hover .submenu__list {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 960px) {
  .submenu__item:hover {
    background-color: #2f80ed;
  }
  .submenu__item:hover .submenu__link {
    color: #fff;
  }
}

.menu__link {
  line-height: 20px;
  color: #415166;
  background: transparent;
  transition: all 0.4s ease 0s;
}

.menu__link.active {
  color: #050e1a;
  text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
}

.menu__call {
  margin-left: 30px;
  padding: 20px 30px;
  font-weight: 500;
  line-height: 14px;
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
  border-radius: 30px;
  transition: all 0.4s ease 0s;
}
.header__burger {
  display: none;
}
@media (any-hover: hover) {
  .menu__call:hover {
    background: rgba(47, 128, 237, 0.2);
  }
}
@media (min-width: 960px) {
  .menu__link:hover {
    color: #050e1a;
    text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
  }
}
@media (max-width: 1200px) {
  .menu__call {
    margin-left: 10px;
  }
}

@media (max-width: 1200px) {
  .menu__item {
    margin-left: 15px;
  }
}

@media (max-width: 1023px) {
  .header__burger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 3;
    margin-right: 10px;
    z-index: 10002;
  }
  .header__burger span {
    background-color: #000;
  }
  .header__burger.active span {
    background-color: #fff;
  }
  .header__burger span:nth-child(1),
  .header__burger span:nth-child(2),
  .header__burger span:nth-child(3),
  .header__burger span:nth-child(4),
  .header__burger span:nth-child(5) {
    position: absolute;
    height: 2px;
    transition: all 0.3s ease 0s;
  }
  .header__burger span:nth-child(1) {
    top: 0;
    left: 0;
    width: 50%;
  }
  .header__burger span:nth-child(2) {
    top: 0;
    right: 0;
    width: 50%;
  }
  .header__burger span:nth-child(3) {
    left: 0;
    top: 9px;
    width: 100%;
  }
  .header__burger span:nth-child(4) {
    left: 0;
    bottom: 0;
    width: 50%;
  }
  .header__burger span:nth-child(5) {
    right: 0;
    bottom: 0;
    width: 50%;
  }

  .header__burger.active span:nth-child(1) {
    top: 4px;
    left: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .header__burger.active span:nth-child(2) {
    top: 4px;
    right: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .header__burger.active span:nth-child(3) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  .header__burger.active span:nth-child(4) {
    bottom: 5px;
    left: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .header__burger.active span:nth-child(5) {
    bottom: 5px;
    right: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu__call {
    display: none;
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease;
    display: block;
    background-color: #121212;
    padding: 60px 10px 20px 40px;
    overflow: auto;
    z-index: 10002;
  }
  .header__menu.active {
    opacity: 1;
    left: 0;
  }
  .menu__list {
    position: relative;
    display: block;
  }
  .menu__list li {
    margin: 0px 0px 30px 0px;
    text-align: left;
  }
  .menu__list li:last-child {
    margin: 0;
  }
  .menu__link {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
  }

  .menu__link.active {
    color: #2f80ed;
  }
  .menu__link--button {
    display: inline-flex;
    gap: 20px;
    align-items: center;
  }
  .menu__link--button::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    color: red;
    transform: rotate(180deg);
    background: url(../svg/menu-arrow.svg) 0 0/ 24px 24px no-repeat;
  }
  .menu__link--button.active::after {
    background: url(../svg/menu-arrow-blue.svg) 0 0/ 24px 24px no-repeat;
  }
  .submenu__list-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
  }
  .submenu__list-overflow {
    overflow: hidden;
  }

  .submenu__list {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    border: none;
    background: transparent;
    margin-top: 30px;
  }
  .menu__item--submenu.is-open .submenu__list-wrapper {
    grid-template-rows: 1fr;
  }
  .menu__item--submenu.is-open .menu__link--button::after {
    transform: rotate(0);
  }

  .submenu__link {
    padding: 0;
    line-height: 100%;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
  }
}
/*=====================================================================================*/
/* SECTION HERO */
.hero {
  padding: 245px 0 138px;
}

.hero__title {
  font-weight: 700;
  font-size: 64px;
  line-height: 64px;
  text-align: center;
  letter-spacing: -3px;
  color: #050e1a;
}

.hero__subtitle {
  margin: 20px 0;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #415166;
}
.hero__descrp {
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #97a9be;
}
.hero__button {
  display: block;
  margin: 50px auto 0;
  padding: 30px 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  background: #2f80ed;
  border-radius: 50px;
  transition: all 0.4s ease 0s;
}
@media (any-hover: hover) {
  .hero__button:hover {
    background: #4091ff;
    box-shadow: 0 6px 24px -12px rgb(45 134 255 / 80%);
  }
}

@media (max-width: 1023px) {
  .hero {
    padding: 150px 0;
  }
  .hero__title {
    font-size: 41px;
    line-height: 50px;
  }
  .hero__subtitle {
    margin: 10px 0;
    font-size: 20px;
    line-height: 28px;
  }
  .hero__button {
    padding: 30px 40px;
    font-size: 16px;
    line-height: 20px;
  }
}
/*==========================================================================*/

/*SECTION PROBLEM*/

.problem {
  background: #f0f2f5;
}

.title {
  margin-bottom: 75px;
  font-weight: 600;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.04em;
  color: #050e1a;
  text-align: center;
}

.problem__subtitle {
  margin: 0 0 50px;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #415166;
}

.problem__chat {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.chat__message.hidden {
  opacity: 0;
  visibility: hidden;
}
.chat__message {
  margin-bottom: 20px;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease 0s;
}

.chat__message span {
  display: inline-block;
  width: auto;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  background: #2f80ed;
  box-shadow: 0px 4px 8px rgba(3, 57, 127, 0.09);
  border-radius: 24px 24px 24px 0px;
}

.chat__printing {
  width: 86px;
  display: flex;
  justify-content: space-around;
  background: #2f80ed;
  left: 0;
  top: 0;
  position: absolute;
  padding: 21px 20px;
  box-shadow: 0px 4px 8px rgba(3, 57, 127, 0.09);
  border-radius: 24px 24px 24px 0px;
  transition: opacity 0.6s ease, visibility 0.6s ease, top 1.5s ease;
}
.chat__printing.hidden {
  opacity: 0;
  visibility: hidden;
}
.chat__printing span {
  display: block;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}

.printing-animation span {
  animation: chat 1s linear infinite;
}

.printing-animation span:nth-child(2) {
  animation-delay: 0.2s;
}

.printing-animation span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes chat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1023px) {
  .problem__subtitle {
    margin: 0 0 25px;
    font-size: 20px;
    line-height: 28px;
  }
  .chat__message span {
    font-size: 16px;
    line-height: 24px;
  }
  .chat__printing span {
    width: 8px;
    height: 8px;
  }
  .problem {
    padding-bottom: 80px;
  }
}
/*=========================================================================================*/
/* SECTION CUSTOMERS */
.customers {
  background: #ffffff;
}

.customers__text {
  max-width: 630px;
  margin: 0 auto 50px;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #050e1a;
}

.customers__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
}
.customers__item {
  max-height: 72px;
}
.customers__item img {
  transition: all 0.4s ease 0s;
}

@media (any-hover: hover) {
  .customers__item img:hover {
    transform: scale(1.5);
  }
}

@media (max-width: 1023px) {
  .customers__text {
    font-size: 24px;
    line-height: 36px;
  }
}
/*====================================================================================*/
/* SECTION SOLUTION*/
.solution {
  background: #f0f2f5;
}

.solution__text--left {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
  max-width: 500px;
}

.solution__text--right {
  max-width: 500px;
  font-size: 24px;
  line-height: 32px;
  color: #415166;
  max-width: 500px;
  margin: 50px 0 0 auto;
}

.solution__list {
  margin-top: 96px;
}

.solution__item {
  display: flex;
  flex-direction: column;
  max-width: 518px;
  background: #fff;
  padding: 50px;
}

.solution__list > .swiper-wrapper {
  transition-timing-function: linear;
}

.solution__item.swiper-slide {
  height: auto;
}

.item-solution__text {
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 28px;
  color: #415166;
}

.item-solution__text--dark {
  color: #050e19;
  font-weight: 500;
}

.item-solution__author {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 50px;
}

.solution-author__photo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.solution-author__name {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  color: #415166;
}

.solution-author__position {
  font-size: 12px;
  line-height: 16px;
  color: #97a9be;
}

@media (max-width: 1023px) {
  .solution__text--left {
    font-size: 24px;
    line-height: 36px;
  }

  .solution__text--right {
    font-size: 20px;
    line-height: 28px;
    margin: 30px 0 0 auto;
  }

  .solution__list {
    margin-top: 40px;
  }

  .solution__item {
    padding: 15px;
  }

  .item-solution__author {
    margin-top: 30px;
  }
}
/*=================================================================================================*/
/* SECTION PROCESS */
.process__way {
  padding: 0 10px 0 60px;
  border-left: 2px dashed #2f80ed;
  left: 0;
  top: 0;
}

.process__dot {
  position: relative;
  top: 5px;
  transition: top 1.4s ease-out 0s;
}

.process__dot::before {
  content: '';
  position: absolute;
  left: -72px;
  display: block;
  top: 0px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  z-index: 2;
  border: 2px solid #2f80ed;
  background: #fff;
}
.process__dot::after {
  display: block;
  content: '';
  position: absolute;
  left: -68px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2f80ed;
  z-index: 2;
}

.process__step {
  margin-bottom: 75px;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.process__step.visible {
  opacity: 1;
}

.process__step:last-child {
  margin: 0;
}

.step-process__caption {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
  color: #050e1a;
}

.step-process__element {
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translate(0, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2f80ed;
  z-index: 1;
  transition: all 0.6s ease 0s;
}

.step-process__caption.active::after {
  opacity: 1;
}

.step-process__item {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 28px;
  color: #415166;
}

.step-process__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .step-process__caption {
    font-size: 22px;
    line-height: 30px;
  }

  .step-process__item {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
  }

  .process__step {
    margin-bottom: 45px;
  }
}
/*=========================================================================================*/
/* SECTION RESULT*/
.result__subtitle {
  font-size: 36px;
  line-height: 44px;
  text-align: center;
  letter-spacing: -0.01em;
  color: #415166;
  max-width: 800px;
  margin: 0 auto;
}

.result__statistic {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
  column-gap: 30px;
}

.statistic-result__item {
  background: #f0f2f5;
  width: 100%;
  padding: 50px;
}

.statistic-result__data {
  font-weight: 600;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.04em;
  color: #2f80ed;
}

.statistic-result__descr {
  margin-top: 20px;
  font-size: 18px;
  line-height: 28px;
  color: #050e1a;
}

@media (max-width: 1023px) {
  .result__subtitle {
    font-size: 24px;
    line-height: 36px;
  }

  .statistic-result__item {
    text-align: center;
  }

  .statistic-result__data {
    font-size: 41px;
    line-height: 50px;
  }

  .statistic-result__descr {
    font-size: 16px;
    line-height: 24px;
  }
}

@media (max-width: 768px) {
  .result__statistic {
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 30px;
  }

  .statistic-result__item {
    flex: 0 1 343px;
  }
}
/*================================================================================*/
/* SECTION CONSULTATION */
.consultation {
  background: #f0f2f5;
}

.consultation__body {
  display: flex;
  justify-content: space-between;
  column-gap: 90px;
}

.consultation__content {
  flex: 0 1 500px;
}

.consultation__title {
  max-width: 400px;
  font-weight: 600;
  font-size: 64px;
  letter-spacing: -0.04em;
  color: #050e1a;
}

.consultation__info {
  margin: 50px 0;
  font-size: 24px;
  line-height: 32px;
  color: #415166;
}
.consultation__info span {
  display: inline-flex;
}

.consultation__awards {
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
}

.consultation__forma {
  flex: 0 1 500px;
  padding: 50px;
  background: #ffffff;
  box-shadow: 0px 12px 24px -6px rgba(8, 35, 71, 0.12);
}

.forma-consultation__title {
  margin-bottom: 30px;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
  color: #050e1a;
}

.forma-consultation__input {
  position: relative;
  left: 0;
  top: 0;
  margin-bottom: 30px;
}

.forma-consultation__input span {
  display: none;
  margin-top: 5px;
  font-size: 12px;
  line-height: 16px;
  color: #fd6062;
}

.forma-consultation__input.error span.error {
  display: block;
}

.forma-consultation__input.error.empty span.empty {
  display: block;
}

.forma-consultation__input.error.empty span.error {
  display: none;
}

.forma-consultation__input input {
  display: block;
  width: 100%;
  padding: 16px;
  background: #f7f8fa;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 20px;
  color: #415166;
}

.forma-consultation__input input:focus {
  border: 1px solid #97a9be;
}
.forma-consultation__input input::placeholder {
  color: #97a9be;
}
.forma-consultation__input input.error {
  border: 1px solid #fd6062;
}

.forma-consultation__textarea {
  margin-bottom: 30px;
}

.forma-consultation__textarea textarea {
  padding: 16px;
  background: #f7f8fa;
  border: 1px solid transparent;
  resize: none;
  width: 100%;
  height: 152px;
  font-size: 16px;
  line-height: 20px;
  color: #415166;
}
.forma-consultation__textarea textarea:focus {
  border: 1px solid #97a9be;
}

.forma-consultation__textarea textarea::placeholder {
  color: #97a9be;
}

.forma-consultation__button {
  display: block;
  margin: 0 auto;
  padding: 30px 50px;
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #ffffff;
  background: #2f80ed;
  border-radius: 50px;
  transition: all 0.4s ease 0s;
}

@media (any-hover: hover) {
  .forma-consultation__button:hover {
    background: #4091ff;
    box-shadow: 0 6px 24px -12px rgb(45 134 255 / 80%);
  }
}

@media (max-width: 1023px) {
  .consultation__body {
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 50px;
    column-gap: 0;
  }

  .consultation__title {
    font-size: 36px;
    text-align: center;
    margin: 0 auto;
  }

  .consultation__info {
    margin: 30px 0;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
  }

  .consultation__awards {
    justify-content: space-around;
  }

  .consultation__forma {
    padding: 25px;
  }

  .forma-consultation__title {
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .forma-consultation__button {
    padding: 30px 40px;
    font-size: 16px;
    line-height: 20px;
  }
}
/* ====================================================================================== */
/* FOOTER*/
.footer__body {
  padding: 50px 0;
}

.footer__lists {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  row-gap: 20px;
}

.footer-lists__title {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #050e1a;
}

.footer__link {
  line-height: 20px;
  color: #050e1a;
  transition: all 0.4s ease 0s;
}

.footer__locations {
  flex: 0 1 420px;
}

.footer__item {
  margin-bottom: 20px;
  line-height: 20px;
  color: #050e1a;
}

.footer__item:last-child {
  margin: 0;
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid #f0f2f5;
}

.footer-bottom__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bottom-footer__left {
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  color: #050e1a;
}

.bottom-footer__left span {
  display: block;
}

.vertical-line {
  height: 10px;
  width: 1px;
  background: #000;
  margin: 0 15px;
}

.bottom-footer__right {
  display: flex;
  column-gap: 40px;
  line-height: 20px;
  color: #415166;
}

.bottom-footer__right span {
  display: block;
  line-height: 20px;
  color: #97a9be;
}

.bottom-footer__link {
  line-height: 20px;
  color: #415166;
}

@media (any-hover: hover) {
  .footer__link:hover {
    text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
  }
}

@media (max-width: 1023px) {
  .footer__lists {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

@media (max-width: 650px) {
  .footer-bottom__body {
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 20px;
  }
  .bottom-footer__left {
    justify-content: flex-end;
  }
}

@media (max-width: 371px) {
  .footer__lists {
    flex-direction: column;
    text-align: center;
  }
  .footer__lists {
    flex-direction: column;
    text-align: center;
  }
  .footer__locations {
    flex: 0 1 auto;
  }
}
/* ========================================================================= */
/* Modal window */
.modal__window {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  cursor: pointer;
  transition: all 0.8s ease 0s;
}
.modal__window::before {
  content: '';
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1e212c;
  opacity: 0.75;
}
.modal__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
}
.modal__content {
  flex: 0 1 968px;
  padding: 48px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, -100%);
  transition: all 0.8s ease 0s;
  cursor: auto;
}
.modal__exit {
  display: flex;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  background: transparent;
  z-index: 3;
}
.modal__exit::before,
.modal__exit::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  background: #fff;
}
.modal__exit::after {
  transform: rotate(-45deg);
}
.modal__exit::before {
  transform: rotate(45deg);
}
.modal__window.active {
  opacity: 1;
  visibility: visible;
}

.modal__window.active .modal__content {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
@media (max-width: 700px) {
  .modal__body {
    padding: 40px 20px;
  }
  .modal__content {
    padding: 0;
  }
  .modal__exit {
    top: -20px;
    right: 10px;
  }
}
