@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap);
@keyframes text-rotate {
  100% {
    transform: rotate(-20deg);
  }
}
@keyframes text-ticker {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes move-from-top-to-bottom {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes increase {
  from {
    transform: scale(0.1);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
@keyframes move-light {
  from {
    transform: translateX(-4 em) skewX(-45 deg);
  }
  to {
    transform: translateX(10em) skewX(-45 deg);
  }
}
@keyframes move-from-left-to-right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes move-from-right-to-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes move-content {
  0% {
    transform: translateY(25px);
  }
  100% {
    transform: translatey(0);
  }
}
@keyframes wheel-infinite-animation-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wheel-infinite-animation-right {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes infinite-animation {
  0% {
    transform: rotate(1deg);
  }
  10% {
    transform: rotate(1.5deg);
  }
  20% {
    transform: rotate(2deg);
  }
  30% {
    transform: rotate(3deg);
  }
  35% {
    transform: rotate(3.5deg);
  }
  40% {
    transform: rotate(4deg);
  }
  45% {
    transform: rotate(4.5deg);
  }
  50% {
    transform: rotate(5deg);
  }
  55% {
    transform: rotate(4.5deg);
  }
  60% {
    transform: rotate(4deg);
  }
  65% {
    transform: rotate(3.5deg);
  }
  70% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(2.5deg);
  }
  80% {
    transform: rotate(2deg);
  }
  90% {
    transform: rotate(1.5deg);
  }
  100% {
    transform: rotate(1deg);
  }
}
@keyframes move-arrow {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
nav,
footer,
header,
aside {
  display: block;
}
.scroll-body {
  overflow: hidden;
  padding-right: 4px;
}
html,
body {
  overflow-x: hidden;
  position: relative;
  background: #301552;
  margin: 0;
  width: 100%;
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html {
  min-width: 320px;
  height: 100%;
  scroll-behavior: smooth;
}
a {
  cursor: pointer;
}
a,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
ul li {
  list-style: none;
  cursor: pointer;
}
img {
  max-width: 100%;
}
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus {
  outline: transparent none 0 !important;
}
.text-hover-animation {
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background: linear-gradient(to right, #54f1c8, #40a0e1 100%);
  transition: all 0.8s ease-in-out;
}
.text-hover-animation:hover {
  background-position: 410px;
}
.big-text, .about .about-row .about-item .about-text_secondary {
  position: absolute;
  text-transform: uppercase;
  left: 290px;
  top: -50px;
  z-index: -1;
  font-size: 288px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: rgba(78, 47, 117, 0.8);
  letter-spacing: 0.02em;
}
.button {
  width: 380px;
  height: 55px;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 600;
  font-style: normal;
  color: #301552;
  letter-spacing: 0.02em;
  background: #fad052;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  box-shadow: 0 10px 20px 0 rgba(16, 4, 31, 0.7);
  z-index: 10;
}
.button:hover {
  background: #05f7c6;
}
.button:active {
  background: #06c3f5;
  color: #ffffff;
}
.button_sm {
  width: 208px;
  height: 40px;
}
.section-title, .main-title, .main-title_secondary {
  font-size: 56px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.main-title, .main-title_secondary {
  position: relative;
  margin-bottom: 50px;
  line-height: 1.35;
  z-index: 1;
}
.main-title_secondary {
  color: #fad052;
}
::-webkit-scrollbar {
  width: 4px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #F1F1F1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #969696;
}
::-webkit-scrollbar-thumb:hover {
  background: #969696;
}
::-webkit-scrollbar-thumb:active {
  background: #969696;
}
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}
.wrapper-container {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 0 55px;
}
.scroll-to-top {
  cursor: pointer;
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 100;
}
.cloud-group {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.cloud-group_right {
  position: absolute;
  top: 0;
  right: -20%;
  width: 40%;
  z-index: 1;
}
.cloud_left {
  position: absolute;
  width: 40%;
  top: -4%;
  left: -30%;
  z-index: 2;
}
section {
  padding: 60px 0;
}
.navigation-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100px;
  background: #301552;
}
.navigation-body .open-menu {
  display: none;
}
.navigation-body .navigation-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation-body .navigation-row .logo {
  width: calc(83px + 123 * ((100vw - 320px) / 1300));
  max-width: 200px;
}
.navigation-body .navigation-row-mobile {
  margin-top: 20px;
  width: 100%;
}
.navigation-body .navigation {
  display: flex;
  justify-content: flex-end;
}
.navigation-body .navigation .navigation-container {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
}
.navigation-body .navigation .navigation-container .navigation-item-link,
.navigation-body .navigation .navigation-container .navigation-item {
  white-space: nowrap;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: 0.5s ease;
}
.navigation-body .navigation .navigation-container .navigation-item-link:hover,
.navigation-body .navigation .navigation-container .navigation-item:hover {
  color: #55f7c6;
  transform: rotate(-5deg) scale(1.1);
}
.navigation-body .navigation .navigation-container .navigation-item.active {
  color: #55f7c6;
}
.main {
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
}
.main .main-row {
  margin-right: 50px;
  width: 573px;
  padding-top: 100px;
}
.main .main-row .main-title, .main .main-row .main-title_secondary {
  margin-bottom: 70px;
}
.main .main-row .main-app-container {
  display: flex;
  margin-bottom: 50px;
}
.main .main-row .main-app-container .main-app-android,
.main .main-row .main-app-container .main-app-iphone {
  cursor: pointer;
}
.main .main-row .main-app-container .main-app-iphone {
  margin-left: 38px;
}
.main .main-row .main-social-networks {
  display: flex;
}
.main .main-row .main-social-networks .main-social-item {
  cursor: pointer;
  display: block;
  width: 34px;
  height: 34px;
  background-color: #fad052;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  transition: all 500ms ease;
}
.main .main-row .main-social-networks .main-social-item:hover {
  background: #05f7c6;
}
.main .main-row .main-social-networks .instagram-icon {
  -webkit-mask-image: url('instagram.svg');
}
.main .main-row .main-social-networks .facebook-icon {
  margin-left: 26px;
  -webkit-mask-image: url('faceboook.svg');
}
.main .main-row-images {
  position: relative;
  z-index: 1;
}
.main .main-row-images:before {
  position: absolute;
  top: 15%;
  left: 15%;
  content: "";
  z-index: -1;
  width: 90%;
  height: 90%;
  background: #05f7c6;
}
.main .main-row-images .img {
  width: calc(380px + 381 * ((100vw - 320px) / 1300));
  height: calc(376px + 376 * ((100vw - 320px) / 1300));
  max-height: 752px;
  max-width: 761px;
  background-image: url('main-city-bg.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}
.main .main-row-images .img-grass {
  position: absolute;
  background-image: url('main-grass.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(336px + 336 * ((100vw - 320px) / 1300));
  height: calc(80px + 80 * ((100vw - 320px) / 1300));
  max-width: 672px;
  max-height: 160px;
  bottom: 16%;
  right: 0;
}
.main .main-row-images .img-small-tree-stem {
  position: absolute;
  background-image: url('main-small-tree-stem.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(7px + 6 * ((100vw - 320px) / 1300));
  height: calc(29px + 28 * ((100vw - 320px) / 1300));
  max-width: 13px;
  max-height: 57px;
  bottom: 18%;
  left: 31%;
}
.main .main-row-images .img-small-tree {
  position: absolute;
  width: calc(39px + 39 * ((100vw - 320px) / 1300));
  height: calc(56px + 56 * ((100vw - 320px) / 1300));
  max-width: 78px;
  max-height: 112px;
  bottom: 22%;
  left: 26%;
  animation: infinite-animation 3s infinite linear;
}
.main .main-row-images .img-tree {
  position: absolute;
  width: calc(125px + 125 * ((100vw - 320px) / 1300));
  height: calc(162px + 162 * ((100vw - 320px) / 1300));
  max-width: 250px;
  max-height: 324px;
  bottom: 20%;
  left: -7%;
  animation: infinite-animation 6s infinite linear;
}
.main .main-row-images .img-tree-stem {
  position: absolute;
  background-image: url('main-tree-stem.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(77px + 77 * ((100vw - 320px) / 1300));
  height: calc(140px + 140 * ((100vw - 320px) / 1300));
  max-width: 154px;
  max-height: 280px;
  bottom: 16%;
  left: 4%;
}
.main .main-row-images .img-hair {
  position: absolute;
  width: calc(43px + 43 * ((100vw - 320px) / 1300));
  max-width: 86px;
  max-height: 90px;
  height: calc(45px + 45 * ((100vw - 320px) / 1300));
  top: 32%;
  left: 33%;
  animation: infinite-animation 3s infinite linear;
}
.main .main-row-images .img-girl-with-scooter {
  position: absolute;
  width: calc(181px + 181 * ((100vw - 320px) / 1300));
  max-width: 362px;
  max-height: 484px;
  height: calc(242px + 242 * ((100vw - 320px) / 1300));
  bottom: 3%;
  left: 18%;
}
.main .main-row-images .img-strand-of-hair {
  position: absolute;
  width: calc(17px + 17 * ((100vw - 320px) / 1300));
  height: calc(12px + 12 * ((100vw - 320px) / 1300));
  max-width: 24px;
  max-height: 24px;
  top: 35%;
  left: 35%;
  animation: infinite-animation 3s infinite linear;
}
.main .main-row-images .img-main-bag {
  position: absolute;
  width: calc(85px + 85 * ((100vw - 320px) / 1300));
  height: calc(80px + 80 * ((100vw - 320px) / 1300));
  max-width: 170px;
  max-height: 160px;
  top: 41%;
  left: 33%;
  animation: infinite-animation 3s infinite linear;
}
.main .main-row-images .img-hand {
  position: absolute;
  width: calc(50px + 50 * ((100vw - 320px) / 1300));
  height: calc(50px + 50 * ((100vw - 320px) / 1300));
  max-width: 100px;
  max-height: 100px;
  top: 41%;
  left: 31%;
  animation: infinite-animation 4s infinite linear;
}
.main .main-row-images .img-leg {
  position: absolute;
  width: calc(85px + 85 * ((100vw - 320px) / 1300));
  height: calc(85px + 85 * ((100vw - 320px) / 1300));
  max-width: 170px;
  max-height: 170px;
  bottom: 16%;
  left: 38%;
  animation: infinite-animation 3s infinite linear;
}
.main .main-row-images .img-wheel-left {
  position: absolute;
  width: calc(43px + 43 * ((100vw - 320px) / 1300));
  height: calc(43px + 43 * ((100vw - 320px) / 1300));
  max-width: 86px;
  max-height: 86px;
  bottom: 1%;
  left: 16%;
  animation: wheel-infinite-animation-left 5s infinite linear;
}
.main .main-row-images .img-wheel-right {
  position: absolute;
  width: calc(43px + 43 * ((100vw - 320px) / 1300));
  height: calc(43px + 43 * ((100vw - 320px) / 1300));
  max-width: 86px;
  max-height: 86px;
  bottom: 1%;
  right: 33%;
  animation: wheel-infinite-animation-right 5s infinite linear;
}
.ticker {
  z-index: 1;
  position: absolute;
  margin-top: 80px;
  background: rgba(78, 47, 117, 0.8);
  padding: 14px 0;
}
.ticker .ticker-container {
  display: flex;
  flex-direction: column;
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  opacity: 0.8;
}
.ticker .ticker-container .ticker-item-container {
  display: flex;
}
.ticker .ticker-container .ticker-item-container .ticker-item {
  animation: text-ticker 13s infinite linear;
  white-space: nowrap;
  display: flex;
  justify-content: center;
}
.ticker .ticker-container .ticker-item-container .ticker-item div {
  white-space: nowrap;
  margin: 0 10px;
}
.about {
  position: relative;
  margin-top: 200px;
}
.about .country {
  position: absolute;
  right: -197px;
  top: -200px;
  width: 404px;
  height: 308px;
}
.about .about-image {
  position: absolute;
  top: 90px;
  left: -72px;
  z-index: 2;
}
.about .about-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.about .about-row .about-item {
  border: 1px solid #05f7c6;
  z-index: 1;
  padding: 93px 0 93px 350px;
  position: relative;
}
.about .about-row .about-item .about-item-description {
  line-height: 29px;
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.about .about-row .about-item .about-item-description .about-item-description-title {
  position: inherit;
  text-transform: inherit;
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #fad052;
  letter-spacing: 0.02em;
}
.rules {
  position: relative;
  padding-bottom: 150px;
}
.rules .rules-img {
  position: absolute;
  right: -10%;
  bottom: 0;
  z-index: 0;
}
.rules .text-hover-animation:hover {
  background-position: 710px;
}
.rules .rules-item {
  position: relative;
  cursor: pointer;
  display: flex;
  margin-bottom: 20px;
  flex-direction: column;
}
.rules .rules-item .rules-item-container {
  display: flex;
}
.rules .rules-item .rules-item-container .rules-item-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  z-index: 1;
}
.rules .rules-item .rules-item-container .rules-item-icon-container {
  z-index: 1;
  margin-top: 6px;
  margin-left: 10px;
  position: relative;
}
.rules .rules-item .rules-item-container .rules-item-icon-container .rules-item-icon-cross {
  max-width: 26px;
  transform: rotate(0deg);
  transition: all 0.5s ease;
}
.rules .rules-item .rules-item-container .rules-item-icon-container .rules-item-icon-cross-click {
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.rules .rules-item .rules-item-description-container {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  overflow: hidden;
  transition: all 0.5s ease;
}
.rules .rules-item .rules-item-description-container a {
  border-bottom: 1px solid #ffffff;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.rules .rules-item .rules-item-description-hidden {
  max-height: 0;
}
.rules .rules-item .rules-item-description-visible {
  max-height: 500px;
}
.tariffs .tariffs-subtitle {
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.tariffs .tariffs-container {
  z-index: 11;
  padding: 50px 0 50px 10px;
  display: flex;
  justify-content: space-between;
  overflow-x: auto;
  -ms-overflow-style: none;
  cursor: grab;
}
.tariffs .tariffs-container .tariffs-item {
  margin-right: 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 202px;
  padding: 58px 23px;
  border-radius: 13px;
  transform: matrix(1, -0.13, 0, 0.99, 0, 0);
}
.tariffs .tariffs-container .tariffs-item:before {
  position: absolute;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  top: -6px;
  left: -6px;
  border-radius: 16px;
  border: 1px solid red;
  content: "";
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(1) {
  background: #FF8C02;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(1):before {
  border: 1px solid #FF8C02;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(2) {
  background: #FBD051;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(2):before {
  border: 1px solid #FBD051;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(2) .tariffs-item-title:before {
  background: #FEF5DA;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(2) .tariffs-item-title:after {
  background: #FEF5DA;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(2) .tariffs-item-price:after {
  background: #FEF5DA;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(3) {
  background: #8524FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(3):before {
  border: 1px solid #8524FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(3) .tariffs-item-title:before {
  background: #B274FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(3) .tariffs-item-title:after {
  background: #B274FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(3) .tariffs-item-price:after {
  background: #B274FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(4) {
  background: #00C69E;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(4):before {
  border: 1px solid #00C69E;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(4) .tariffs-item-title:before {
  background: #7DFFE5;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(4) .tariffs-item-title:after {
  background: #7DFFE5;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(4) .tariffs-item-price:after {
  background: #7DFFE5;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(5) {
  background: #22A6FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(5):before {
  border: 1px solid #22A6FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(5) .tariffs-item-title:before {
  background: #93D3FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(5) .tariffs-item-title:after {
  background: #93D3FF;
}
.tariffs .tariffs-container .tariffs-item:nth-of-type(5) .tariffs-item-price:after {
  background: #93D3FF;
}
.tariffs .tariffs-container .tariffs-item .tariffs-item-title {
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 10px;
}
.tariffs .tariffs-container .tariffs-item .tariffs-item-title:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFCB8C;
  filter: blur(3px);
}
.tariffs .tariffs-container .tariffs-item .tariffs-item-title:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFCB8C;
  filter: blur(3px);
}
.tariffs .tariffs-container .tariffs-item .tariffs-item-speed {
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.tariffs .tariffs-container .tariffs-item .tariffs-item-price {
  white-space: nowrap;
  position: relative;
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.tariffs .tariffs-container .tariffs-item .tariffs-item-price:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFCB8C;
  filter: blur(3px);
}
.tariffs .tariffs-container .tariffs-item-price-text {
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.tariffs .tariffs-container .tariffs-item-price-text_secondary {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 800;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.tariffs .tariffs-container::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.tariffs .tariffs-note {
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #CDB3F0;
  letter-spacing: 0.02em;
  text-align: center;
}
.instagram {
  padding-top: 200px;
  display: flex;
  justify-content: center;
  position: relative;
}
.instagram .instagram-container .instagram-header {
  background: rgba(78, 47, 117, 0.8);
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 14px 12px;
}
.instagram .instagram-container .instagram-header .instagram-title {
  font-size: 31px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.instagram .instagram-container .instagram-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 26px;
  grid-row-gap: 20px;
  position: relative;
  background: #ffffff;
  padding: 42px 28px;
  border-radius: 0 0 10px 10px;
  max-height: 800px;
  overflow: auto;
}
.instagram .instagram-container .instagram-body:before {
  position: absolute;
  height: 1px;
  background: rgba(78, 47, 117, 0.8);
  content: "";
  width: calc(100% - 56px);
  top: 24px;
  left: 28px;
}
.instagram .instagram-container .instagram-body .instagram-item .instagram-item-title {
  margin-bottom: 5px;
  font-size: 17px;
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  color: #000000;
  letter-spacing: 0.02em;
}
.instagram .instagram-container .instagram-body .instagram-image {
  width: 200px;
  height: 200px;
}
.contact-us .main-title .text-hover-animation:hover, .contact-us .main-title_secondary .text-hover-animation:hover {
  background-position: 550px;
}
.contact-us .contact-us-row {
  position: relative;
  padding: 80px 0;
}
.contact-us .contact-us-row .contact-us-img {
  position: absolute;
  left: -30px;
  top: calc(50% - 200px);
  max-width: 550px;
}
.contact-us .contact-us-row .contact-us-container {
  margin-left: 500px;
  width: calc(100% - 500px);
}
.contact-us .contact-us-row .contact-us-container .contact-us-item {
  border: 1px solid #05f7c6;
  margin-bottom: 28px;
  padding: 50px 50px;
}
.contact-us .contact-us-row .contact-us-container .contact-us-item:nth-of-type(2) {
  padding: 22px 50px;
  margin-bottom: 0;
}
.contact-us .contact-us-row .contact-us-container .contact-us-item .contact-us-item-container {
  display: flex;
  align-items: center;
}
.contact-us .contact-us-row .contact-us-container .contact-us-item .contact-us-item-container:last-child {
  margin-bottom: 0;
}
.contact-us .contact-us-row .contact-us-container .contact-us-item .contact-us-item-sub-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  gap: 6px;
}
.contact-us .contact-us-row .contact-us-container .contact-us-item .contact-us-item-sub-container:last-child {
  margin-bottom: 0;
}
.contact-us .contact-us-row .contact-us-container .contact-us-item .contact-us-item-sub-container .contact-us-item-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.contact-us .contact-us-link {
  line-height: 1;
  font-size: 16px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
  margin-left: 8px;
}
.contact-us-item-description {
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.info {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  background-image: url('info.png');
  background-size: cover;
  background-position: center;
}
.info .info-app-container {
  cursor: pointer;
  z-index: 1;
  margin-bottom: 40px;
  display: flex;
}
.info .info-app-container .main-app-iphone {
  margin-left: 40px;
}
.info-img {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.info-img .info-scooters-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  z-index: 4;
}
.info-img .info-scooters-container .info-scooter-right {
  width: calc(76px + 214 * ((100vw - 320px) / 1300));
  height: calc(102px + 303 * ((100vw - 320px) / 1300));
  max-width: 290px;
  max-height: 405px;
  z-index: 1;
}
.info-img .info-scooters-container .info-scooter-left {
  width: calc(76px + 214 * ((100vw - 320px) / 1300));
  height: calc(102px + 303 * ((100vw - 320px) / 1300));
  max-width: 290px;
  max-height: 405px;
  z-index: 4;
}
.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.requisites-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  width: 600px;
}
.requisites-item {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #301552;
  letter-spacing: 0.02em;
}
.requisites-item:first-child {
  padding-bottom: 25px;
  font-size: 32px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #301552;
  letter-spacing: 0.02em;
}
.requisites-item-link {
  border-bottom: 1px solid;
  width: -moz-fit-content;
  width: fit-content;
}
.requisites-item_alarm {
  color: #FF0000;
}
.requisites {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.requisites-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.country {
  display: flex;
  flex-direction: column;
  padding: 80px 0;
}
.country-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.country {
  display: flex;
  flex-direction: column;
}
.country-breadcrumb {
  font-size: 18px;
  font-family: "Montserrat";
  font-weight: 400;
  font-style: normal;
  color: #fad052;
  letter-spacing: 0.02em;
}
.country-body {
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 44px;
  padding-bottom: 90px;
}
.country-button-container {
  display: flex;
  justify-content: center;
}
.country-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.country-img-container {
  position: relative;
}
.country-img {
  object-fit: cover;
  max-width: 570px;
  max-height: 521px;
  width: calc(270px + 300 * ((100vw - 320px) / 1300));
  height: calc(200px + 321 * ((100vw - 320px) / 1300));
}
.country-text-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.country-description {
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.country-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 160px));
  gap: 30px;
}
.country-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 160px;
  border: 1px solid #D9D9D9;
  border-radius: 15px;
  padding: 25px 10px;
}
.country-item-title {
  font-size: 20px;
  font-family: "Montserrat";
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.country-item-img {
  max-width: 50px;
  max-height: 50px;
  width: calc(36px + 14 * ((100vw - 320px) / 1300));
  height: calc(36px + 14 * ((100vw - 320px) / 1300));
}
.how-to-ride__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer .footer-container .footer-info {
  display: flex;
}
.footer .footer-container .footer-info .footer-info-title {
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  color: #fad052;
  letter-spacing: 0.02em;
}
.footer .footer-container .footer-info .footer-social-networks {
  display: flex;
  margin-left: 26px;
}
.footer .footer-container .footer-info .footer-social-networks .footer-social-item {
  cursor: pointer;
  display: block;
  width: 34px;
  height: 34px;
  background-color: #fad052;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  transition: all 500ms ease;
}
.footer .footer-container .footer-info .footer-social-networks .footer-social-item:hover {
  background: #05f7c6;
}
.footer .footer-container .footer-info .footer-social-networks .instagram-icon {
  -webkit-mask-image: url('instagram.svg');
}
.footer .footer-container .footer-info .footer-social-networks .facebook-icon {
  margin-left: 26px;
  -webkit-mask-image: url('faceboook.svg');
}
.footer .footer-container .footer-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer .footer-container .footer-item .footer-link {
  cursor: pointer;
  font-size: 24px;
  font-family: "Montserrat";
  font-weight: 500;
  font-style: normal;
  color: #fad052;
  letter-spacing: 0.02em;
  transition: all 500ms ease;
}
.footer .footer-container .footer-item .footer-link:hover {
  color: #05f7c6;
}
@media (max-width: 992px) {
  .open-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.7);
    z-index: 101;
  }

  .button {
    max-width: 100%;
  }

  .section-title, .main-title, .main-title_secondary {
    font-size: 42px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .navigation-body {
    position: fixed;
    gap: 0;
    width: 100%;
    padding: 0 15px;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 60px;
  }
  .navigation-body .navigation-row-mobile {
    margin: 0;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: -100%;
    left: 0;
    background: #301552;
    content: "";
    z-index: 10;
    width: 100%;
    padding: 30px 0;
    display: none;
  }
  .navigation-body .navigation-row-mobile .navigation .navigation-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  .navigation-body .navigation-row-mobile .navigation .navigation-container .navigation-item {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 600;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
    padding: 10px 0;
  }
  .navigation-body .navigation-row-mobile .navigation .navigation-container .navigation-item:hover {
    color: #55f7c6;
    transform: none;
  }
  .navigation-body .navigation-row-mobile .navigation .navigation-container .navigation-item-btn {
    margin-top: 70px;
  }
  .navigation-body .navigation-row-mobile-open {
    display: block;
    opacity: 1;
    top: 60px;
    animation: move-from-left-to-right 1s;
  }
  .navigation-body .open-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 8px;
    min-width: 40px;
    z-index: 100;
  }
  .navigation-body .open-menu .menu-burger {
    transition: all 0.5s ease-in-out;
    position: relative;
    width: 20px;
    height: 100%;
    border-radius: 1px;
  }
  .navigation-body .open-menu .menu-burger:before {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    height: 2px;
    width: 20px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.5s ease;
  }
  .navigation-body .open-menu .menu-burger:after {
    content: "";
    bottom: 0;
    left: 0;
    position: absolute;
    height: 2px;
    width: 20px;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.5s ease;
  }
  .navigation-body .closeMenu .menu-burger {
    background: transparent;
  }
  .navigation-body .closeMenu .menu-burger:before {
    transform: rotate(45deg);
    top: 4px;
  }
  .navigation-body .closeMenu .menu-burger:after {
    transform: rotate(-45deg);
    bottom: 2px;
  }
  .navigation-body .navigation-row {
    max-width: 100%;
    align-items: center;
    margin: auto;
  }

  .main {
    padding-bottom: 100px;
    margin-top: 90px;
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
  .main .img-biggest-cloud {
    left: 60%;
    bottom: 2%;
  }
  .main .main-row {
    width: 100%;
    margin: 0 0 30px 0;
    padding-top: 0;
  }
  .main .main-row .main-app-container {
    justify-content: center;
  }
  .main .main-row .main-social-networks {
    justify-content: center;
    margin-bottom: 40px;
  }

  .about .about-image {
    display: none;
  }
  .about .about-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about .about-row .about-item {
    width: 100%;
    padding: 93px 0 93px 50px;
  }
  .about .about-row .about-item .about-text_secondary {
    left: 10px;
  }

  .contact-us .contact-us-row {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .contact-us .contact-us-row .contact-us-img {
    position: static;
    display: block;
    width: 100%;
    margin: auto auto 10px auto;
  }
  .contact-us .contact-us-row .contact-us-container {
    margin-left: 0;
    width: 100%;
  }
  .contact-us .contact-us-row .contact-us-container .contact-us-item {
    padding: 46px 28px;
  }
  .contact-us .contact-us-row .contact-us-container .contact-us-item:nth-of-type(2) {
    padding: 36px 28px;
  }
  .contact-us .contact-us-link {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .country-img-container {
    display: none;
  }

  .contact-us-item-description {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .footer .footer-container {
    flex-direction: column;
  }
  .footer .footer-container .footer-info {
    order: 2;
    flex-direction: column;
  }
  .footer .footer-container .footer-info .footer-info-title {
    order: 2;
    text-align: center;
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    color: #fad052;
    letter-spacing: 0.02em;
  }
  .footer .footer-container .footer-info .footer-social-networks {
    order: 1;
    margin-left: 0;
    margin-bottom: 36px;
    justify-content: center;
  }
  .footer .footer-container .footer-item {
    order: 1;
    text-align: center;
    margin-bottom: 30px;
  }
  .footer .footer-container .footer-item .footer-link {
    font-size: 17px;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    color: #fad052;
    letter-spacing: 0.02em;
  }

  .requisites-item {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #301552;
    letter-spacing: 0.02em;
  }
  .requisites-item:first-child {
    font-size: 28px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #301552;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .instagram .instagram-container .instagram-header img {
    width: 32px;
    height: 32px;
  }
  .instagram .instagram-container .instagram-header .instagram-title {
    font-size: 17px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .instagram .instagram-container .instagram-body {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 16px;
    max-height: 590px;
    padding: 26px 20px;
  }
  .instagram .instagram-container .instagram-body .instagram-item .instagram-item-title {
    font-size: 12px;
    font-family: "Montserrat";
    font-weight: 500;
    font-style: normal;
    color: #000000;
    letter-spacing: 0.02em;
  }
  .instagram .instagram-container .instagram-body .instagram-image {
    width: 120px;
    height: 120px;
  }

  .requisites-body {
    width: 100%;
  }

  .requisites-item {
    font-size: 16px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #301552;
    letter-spacing: 0.02em;
  }
  .requisites-item:first-child {
    font-size: 24px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #301552;
    letter-spacing: 0.02em;
  }

  .country-list {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
  }

  .country-item {
    height: 84px;
    padding: 10px;
  }

  .country-item-title {
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 576px) {
  .section-title, .main-title, .main-title_secondary {
    font-size: 30px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .main .main-row .main-app-container {
    display: flex;
    flex-direction: column;
  }
  .main .main-row .main-app-container .main-app-iphone {
    margin-left: 0;
  }

  .about .about-row .about-item {
    min-height: 244px;
    padding: 34px 0 34px 54px;
    align-items: center;
    display: flex;
  }
  .about .about-row .about-item .about-item-description {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .about .about-row .about-item .about-item-description .about-item-description-title {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #fad052;
    letter-spacing: 0.02em;
  }

  .rules {
    padding-bottom: 200px;
  }
  .rules .rules-item {
    margin-bottom: 10px;
  }
  .rules .rules-item .rules-item-container .rules-item-title {
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .rules .rules-item .rules-item-container .rules-item-icon-container {
    margin-top: 2px;
    height: 100%;
  }
  .rules .rules-item .rules-item-container .rules-item-icon-container .rules-item-icon-cross {
    width: 18px;
  }
  .rules .rules-item .rules-item-description-hidden {
    font-size: 13px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .rules .rules-item .rules-item-description-visible {
    margin-top: 6px;
    font-size: 13px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .rules .rules-item .rules-item-description-visible a {
    font-size: 13px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }

  .tariffs .tariffs-subtitle {
    font-size: 18px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .tariffs .tariffs-note {
    font-size: 14px;
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
    color: #CDB3F0;
    letter-spacing: 0.02em;
  }

  .info .main-title, .info .main-title_secondary {
    text-align: center;
  }
  .info .info-app-container {
    display: flex;
    flex-direction: column;
  }
  .info .info-app-container .main-app-iphone {
    margin-left: 0;
  }
}
.images-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 40px;
}

/*# sourceMappingURL=styles.css.map*/