@charset "UTF-8";
/* = Nulled 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%;
  line-height: 1;
  -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;
}

/* Пример вызова данного миксина:
@include adaptive-value("padding", 50, 20, 0);
где:
"padding" - это свойство, которое нужно задать
50 - это изначальное, макетное значение (будь то ширина, размер шрифта, отступ и т.д.)
20 - это минимально допустимое значение, которое данное свойство может принять
0 - это цифровое значение, которое укажет, как миксин должен работать (значение по умолчанию. Его можно и НЕ указывать!) */
.header {
  padding-top: calc(10px + 15 * ((100vw - 320px) / 1120));
  padding-bottom: 1.25rem;
  position: fixed;
  z-index: 50;
  width: 100%;
  background-color: #0c0c0c;
}

.header__elements {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
}

.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 10.625rem;
}
@media screen and (min-width: 86.375em) {
  .header__logo {
    flex-basis: calc(0px + 170 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .header__logo {
    justify-content: flex-start;
    flex: 1 1 auto;
    position: relative;
    z-index: 10;
  }
}

.header__logo-link {
  color: #f30000;
  position: relative;
}
.header__logo-link img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 86.375em) {
  .header__logo-link img {
    width: calc(120px + 68 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .header__logo-link img {
    width: calc(120px + 68 * ((100vw - 320px) / 1120));
  }
}

.menu {
  flex: 1 1 auto;
}

.menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

@media screen and (min-width: 47.99875em) {
  .menu__item:not(:last-child) {
    margin-right: calc(20px + 30 * ((100vw - 320px) / 1120));
  }
}

.menu__link {
  transition: all 0.3s ease;
  color: #cecece;
  font-size: calc(12px + 3 * ((100vw - 320px) / 1120));
}
.menu__link:hover {
  transition: all 0.3s ease;
  color: #f30000;
  text-shadow: 1px 1px 2px #f30000;
}
@media screen and (min-width: 86.375em) {
  .menu__link {
    font-size: calc(0px + 15 * ((100vw - 320px) / 1120));
  }
}
@media screen and (min-width: 47.99875em) {
  .menu__link {
    line-height: 25px;
  }
}

.tools__lang {
  display: inline-block;
}

.daynight {
  display: inline-block;
  border-bottom: 1px solid #f30000;
  width: 2.5rem;
  height: 1.625rem;
  position: relative;
  top: 0.4375rem;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
}
.daynight img {
  max-width: 50%;
  height: auto;
}
.daynight img:first-child {
  margin-bottom: 0.625rem;
}

.daynight__tumbler {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3.25rem;
  transform: rotate(180deg);
  transition: all 1s ease;
}
.daynight__tumbler._active {
  transition: all 1s ease;
  transform: rotate(0deg);
}

.footer {
  background: url(../img/footer/bg-footer.png) 0 0/cover no-repeat;
  padding-top: calc(25px + 85 * ((100vw - 320px) / 1120));
  padding-bottom: calc(25px + 55 * ((100vw - 320px) / 1120));
  padding-left: calc(10px + 35 * ((100vw - 320px) / 1120));
  padding-right: calc(10px + 50 * ((100vw - 320px) / 1120));
}

.footer__area {
  background: #232323;
  border-radius: 1.875rem;
  padding-top: calc(20px + 50 * ((100vw - 320px) / 1120));
  padding-bottom: calc(25px + 60 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 47.99875em) {
  .footer__area {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.footer__wrapper {
  display: flex;
  margin-left: calc(-15px + 100 * ((100vw - 320px) / 1120));
  margin-right: calc(-15px + 100 * ((100vw - 320px) / 1120));
  gap: 64px;
  border-bottom: 1px solid #4b4b4b;
}
@media (max-width: 1370px) {
  .footer__wrapper {
    gap: calc(-37px + 101 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) {
  .footer__wrapper {
    flex-direction: column;
    margin-left: calc(0px + 85 * ((100vw - 320px) / 1120));
    margin-right: calc(0px + 85 * ((100vw - 320px) / 1120));
  }
}
@media screen and (min-width: 86.375em) {
  .footer__wrapper {
    gap: calc(0px + 64 * ((100vw - 320px) / 1120));
    margin-left: calc(0px + 85 * ((100vw - 320px) / 1120));
    margin-right: calc(0px + 85 * ((100vw - 320px) / 1120));
  }
}

.footer__asanara {
  color: #c8c8c8;
  font-size: calc(11px + 3 * ((100vw - 320px) / 1120));
  font-weight: 300;
  flex: 1 1 auto;
}
@media screen and (max-width: 47.99875em) {
  .footer__asanara {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: repeat(2, 35px);
    margin-bottom: 0.625rem;
  }
}
@media screen and (min-width: 86.375em) {
  .footer__asanara {
    font-size: calc(6px + 8 * ((100vw - 320px) / 1120));
  }
}

.footer__logo {
  margin-bottom: calc(10px + 3 * ((100vw - 320px) / 1120));
  width: calc(75px + 75 * ((100vw - 320px) / 1120));
  height: calc(16px + 16 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .footer__logo {
    width: calc(37px + 113 * ((100vw - 320px) / 1120));
    height: calc(8px + 24 * ((100vw - 320px) / 1120));
  }
}

.footer__logo-link img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 86.375em) {
  .footer__logo-link img {
    width: 100%;
  }
}

.footer__text {
  margin-bottom: calc(30px + 42 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 47.99875em) {
  .footer__text {
    order: 3;
    margin-bottom: 0;
  }
}

.footer__social {
  margin-bottom: calc(20px + 38 * ((100vw - 320px) / 1120));
  margin-right: 0.625rem;
}
.footer__social .social__list {
  gap: calc(6px + 12 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 29.99875em) {
  .footer__social .social__list {
    flex-wrap: wrap;
    row-gap: 0.625rem;
    column-gap: 0;
  }
  .footer__social .social__list .social__item {
    flex: 0 1 50%;
    text-align: right;
  }
}
@media screen and (max-width: 47.99875em) {
  .footer__social {
    grid-row: 1/3;
    grid-column: 2;
    align-self: center;
  }
}

.footer__list .footer__item:not(:last-child) {
  margin-bottom: calc(14px + 5 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .footer__list .footer__item:not(:last-child) {
    margin-bottom: calc(10px + 9 * ((100vw - 320px) / 1120));
  }
}

.footer__item {
  color: #e9e9e9;
  font-size: calc(12px + 3 * ((100vw - 320px) / 1120));
  font-weight: 500;
}
@media screen and (min-width: 86.375em) {
  .footer__item {
    font-size: calc(5px + 10 * ((100vw - 320px) / 1120));
  }
}

.footer__link {
  color: #c8c8c8;
  font-size: calc(11px + 3 * ((100vw - 320px) / 1120));
  font-weight: 300;
  transition: all 0.3s ease;
}
.footer__link:hover {
  transition: all 0.3s ease;
  color: #fff;
  text-shadow: 0px 0px 10px #ff3232;
}
@media screen and (min-width: 86.375em) {
  .footer__link {
    font-size: calc(6px + 8 * ((100vw - 320px) / 1120));
  }
}

.social__link_footer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(24px + 10 * ((100vw - 320px) / 1120));
  height: calc(24px + 10 * ((100vw - 320px) / 1120));
  background: #3a3a3a;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social__link_footer:hover {
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 0 11px #f30000;
}
.social__link_footer img[alt*=Telegram] {
  width: calc(14px + 5 * ((100vw - 320px) / 1120));
  height: calc(14px + 5 * ((100vw - 320px) / 1120));
}
.social__link_footer img[alt*=Instagram] {
  width: calc(14px + 6 * ((100vw - 320px) / 1120));
  height: calc(14px + 6 * ((100vw - 320px) / 1120));
}
.social__link_footer img[alt*=Viber] {
  width: calc(16px + 6 * ((100vw - 320px) / 1120));
  height: calc(16px + 6 * ((100vw - 320px) / 1120));
}
.social__link_footer img[alt*=Facebook] {
  width: calc(20px + 6 * ((100vw - 320px) / 1120));
  height: calc(20px + 6 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .social__link_footer {
    width: calc(12px + 22 * ((100vw - 320px) / 1120));
    height: calc(12px + 22 * ((100vw - 320px) / 1120));
  }
  .social__link_footer img[alt*=Telegram] {
    width: calc(10px + 9 * ((100vw - 320px) / 1120));
    height: calc(10px + 9 * ((100vw - 320px) / 1120));
  }
  .social__link_footer img[alt*=Instagram] {
    width: calc(10px + 10 * ((100vw - 320px) / 1120));
    height: calc(10px + 10 * ((100vw - 320px) / 1120));
  }
  .social__link_footer img[alt*=Viber] {
    width: calc(11px + 11 * ((100vw - 320px) / 1120));
    height: calc(11px + 11 * ((100vw - 320px) / 1120));
  }
  .social__link_footer img[alt*=Facebook] {
    width: calc(13px + 13 * ((100vw - 320px) / 1120));
    height: calc(13px + 13 * ((100vw - 320px) / 1120));
  }
}

.footer__about {
  margin-right: 35px;
}
@media (max-width: 1370px) {
  .footer__about {
    margin-right: calc(0px + 35 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) {
  .footer__about {
    text-align: right;
    margin-bottom: 0.9375rem;
  }
}

@media screen and (max-width: 47.99875em) {
  .footer__projects {
    margin-bottom: 0.9375rem;
  }
}

@media screen and (max-width: 47.99875em) {
  .footer__investment {
    text-align: right;
    margin-bottom: 0.9375rem;
  }
}

@media screen and (max-width: 47.99875em) {
  .footer__vacancy {
    margin-bottom: 1.25rem;
  }
}

.vacancies {
  padding-top: calc(70px + 30 * ((100vw - 320px) / 1120));
}

.vacancies__backlink {
  display: inline-block;
  color: #c8c8c8;
  font-size: 13px;
  font-size: calc(11px + 2 * ((100vw - 320px) / 1120));
  padding-left: calc(12px + 8 * ((100vw - 320px) / 1120));
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: calc(15px + 15 * ((100vw - 320px) / 1120));
}
.vacancies__backlink::after {
  content: "";
  font-size: calc(11px + 3 * ((100vw - 320px) / 1120));
  position: absolute;
  top: 0;
  left: 0px;
  transform: rotate(90deg);
}
@media (max-width: 1370px) {
  .vacancies__backlink::after {
    left: calc(-5px + 5 * ((100vw - 320px) / 1050));
  }
}
.vacancies__backlink:hover {
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: underline;
  text-decoration-style: dashed;
}
@media screen and (min-width: 86.375em) {
  .vacancies__backlink {
    font-size: calc(4px + 9 * ((100vw - 320px) / 1120));
    padding-left: calc(7px + 13 * ((100vw - 320px) / 1120));
    margin-bottom: calc(7px + 23 * ((100vw - 320px) / 1120));
  }
  .vacancies__backlink::after {
    font-size: calc(6px + 8 * ((100vw - 320px) / 1120));
  }
}

.vacancies__title {
  text-align: left;
  font-family: Ethnocentric;
  font-size: calc(24px + 6 * ((100vw - 320px) / 1120));
  color: #fff;
  background: #0c0c0c;
  padding-top: 0.9375rem;
  position: relative;
  z-index: 2;
  margin-bottom: calc(22px + 32 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .vacancies__title {
    font-size: calc(14px + 16 * ((100vw - 320px) / 1120));
  }
}

.vacancies__wrapper {
  display: grid;
  grid-template: repeat(2, auto)/repeat(4, 1fr);
  gap: calc(10px + 20 * ((100vw - 320px) / 1120));
  margin-bottom: calc(30px + 50 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 61.99875em) {
  .vacancies__wrapper {
    grid-template: repeat(3, auto)/repeat(3, 1fr);
  }
}
@media screen and (max-width: 47.99875em) {
  .vacancies__wrapper {
    grid-template: repeat(4, auto)/repeat(2, 1fr);
    gap: calc(10px + 40 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .vacancies__wrapper {
    grid-template: repeat(8, auto)/1fr;
  }
}

.vacancies__card {
  background: #171717;
  width: 100%;
  height: 130px;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.625rem;
  margin-bottom: calc(15px + 27 * ((100vw - 320px) / 1120));
  transform-style: preserve-3d;
  overflow: auto;
}
@media (max-width: 1370px) {
  .vacancies__card {
    height: calc(50px + 80 * ((100vw - 320px) / 1050));
  }
}
.vacancies__card::before {
  content: "";
  position: absolute;
  background: #f30000;
  border-radius: 10px;
  box-shadow: 0 0 11px #f30000;
  transform: translateZ(-1px);
  width: 0.25rem;
  height: calc(35px + 50 * ((100vw - 320px) / 1120));
  left: -2px;
  top: 12px;
}
.vacancies__card:has(button[class*=_active]) + div[class*=describe] {
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  position: static;
  transform: translateY(0%);
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 61.99875em) {
  .vacancies__card:has(button[class*=_active]) + div[class*=describe] {
    width: calc(70px + 380 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .vacancies__card:has(button[class*=_active]) + div[class*=describe] {
    width: calc(110px + 560 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .vacancies__card:has(button[class*=_active]) + div[class*=describe] {
    width: 100%;
  }
}
@media screen and (min-width: 86.375em) {
  .vacancies__card {
    height: calc(110px + 40 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 61.99875em) {
  .vacancies__card {
    height: calc(50px + 100 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .vacancies__card {
    height: calc(50px + 150 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .vacancies__card {
    height: 5rem;
  }
}

.vacancies__name {
  color: #cecece;
  font-size: calc(16px + 8 * ((100vw - 320px) / 1120));
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.structure__name {
  color: #cecece;
  font-family: Ethnocentric;
  font-size: calc(16px + 8 * ((100vw - 320px) / 1120));
  line-height: 1.2;
  text-align: center;
}

.vacancies__more {
  position: absolute;
  right: 0.5625rem;
  bottom: 0.5625rem;
  background: #171717;
  color: #c8c8c8;
  font-size: calc(9px + 4 * ((100vw - 320px) / 1120));
  transition: all 0.3s ease;
}
.vacancies__more:hover {
  transition: all 0.3s ease;
  color: #fff;
}
.vacancies__more::after {
  display: inline-block;
  transition: all 0.3s ease;
  font-size: calc(8px + 4 * ((100vw - 320px) / 1120));
  margin-left: 0.4375rem;
}
.vacancies__more._active::after {
  transform: rotate(-180deg);
}
@media screen and (min-width: 86.375em) {
  .vacancies__more {
    font-size: calc(6px + 7 * ((100vw - 320px) / 1120));
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .vacancies__more::after {
    font-size: calc(5px + 7 * ((100vw - 320px) / 1120));
  }
}

.describe {
  margin-bottom: calc(15px + 35 * ((100vw - 320px) / 1120));
  color: #cecece;
  font-size: calc(12px + 4 * ((100vw - 320px) / 1120));
  line-height: 1.3;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transform: translateY(-30%);
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: calc(50px + 240 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 61.99875em) {
  .describe {
    width: calc(70px + 380 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .describe {
    width: calc(110px + 560 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .describe {
    width: calc(260px + 1040 * ((100vw - 320px) / 1120));
  }
}
@media screen and (min-width: 86.375em) {
  .describe {
    font-size: calc(8px + 8 * ((100vw - 320px) / 1120));
  }
}

.describe__title {
  font-weight: 500;
}

.describe__text {
  font-weight: 300;
}
.describe__text:not(:last-child) {
  margin-bottom: calc(10px + 15 * ((100vw - 320px) / 1120));
}

.describe__item {
  position: relative;
  padding-left: 1.5625rem;
}
.describe__item::before {
  content: "";
  display: inline-block;
  background: #cecece;
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  top: 0.75rem;
  left: 0.875rem;
}

.vacancies__link-btn {
  display: flex;
  justify-content: flex-end;
}

.vacancies__link {
  display: inline-block;
  color: #FFF;
  font-size: calc(14px + 2 * ((100vw - 320px) / 1120));
  font-weight: 500;
  background: #f30000;
  width: calc(100px + 120 * ((100vw - 320px) / 1120));
  border-radius: 10px;
  padding-top: calc(10px + 5 * ((100vw - 320px) / 1120));
  padding-bottom: calc(10px + 5 * ((100vw - 320px) / 1120));
  text-align: center;
  margin-bottom: calc(15px + 55 * ((100vw - 320px) / 1120));
  margin-right: calc(5px + 25 * ((100vw - 320px) / 1120));
  transition: all 0.3s ease;
}
.vacancies__link:hover {
  transition: all 0.3s ease;
  background: #520000;
}
@media screen and (min-width: 86.375em) {
  .vacancies__link {
    font-size: calc(8px + 8 * ((100vw - 320px) / 1120));
    padding-top: calc(7px + 8 * ((100vw - 320px) / 1120));
    padding-bottom: calc(7px + 8 * ((100vw - 320px) / 1120));
    border-radius: calc(2px + 8 * ((100vw - 320px) / 1120));
  }
}

body._lock {
  overflow: hidden;
}

.menu__icon {
  display: none;
}

@media (max-width: 47.99875em) {
  .menu__icon {
    position: relative;
    z-index: 15;
    display: block;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #cecece;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(1px, 50%);
  }
  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 0;
    height: 0;
    border-radius: 100%;
    background-color: rgba(18, 0, 0, 0.9);
    z-index: 5;
    padding: 6.25rem 1.875rem 1.875rem 1.875rem;
    transition: all 0.7s ease 0s;
    overflow: auto;
  }
  .menu__body .menu__list .menu__item .menu__link {
    position: relative;
    left: -200%;
    opacity: 0;
    visibility: hidden;
  }
  .menu__body._active {
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transition: all 0.7s ease 0s;
  }
  .menu__body._active .menu__list .menu__item .menu__link {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
  .menu__body._active .menu__list .menu__item:nth-child(1) .menu__link {
    transition: all 0.5s ease 0.2s;
  }
  .menu__body._active .menu__list .menu__item:nth-child(2) .menu__link {
    transition: all 0.5s ease 0.3s;
  }
  .menu__body._active .menu__list .menu__item:nth-child(3) .menu__link {
    transition: all 0.5s ease 0.4s;
  }
  .menu__body._active .menu__list .menu__item:nth-child(4) .menu__link {
    transition: all 0.5s ease 0.5s;
  }
  .menu__body._active .menu__list .menu__item:nth-child(5) .menu__link {
    transition: all 0.5s ease 0.6s;
  }
  .menu__list > li {
    flex-wrap: wrap;
    margin: 1.25rem 0rem;
  }
  .menu__link {
    font-size: 2.25rem;
    display: inline-block;
    text-align: center;
  }
}
.select {
  position: relative;
  font-size: 13px;
}
.select._active .select__title {
  border-radius: 15px 15px 0 0;
  transition: all 0.1s ease;
}
@media screen and (min-width: 86.375em) {
  .select._active .select__title {
    border-top-left-radius: calc(0px + 15 * ((100vw - 320px) / 1120));
    border-top-right-radius: calc(0px + 15 * ((100vw - 320px) / 1120));
  }
}

.select__item {
  position: relative;
}

.select__title {
  color: #fff;
  font-weight: 500;
  background: #f30000;
  cursor: pointer;
  border-radius: 15px;
  transition: all 0.1s ease 0.1s;
}
.select__title:hover {
  transition: all 0.2s ease;
  background: #520000;
}
@media screen and (min-width: 86.375em) {
  .select__title {
    border-radius: calc(0px + 15 * ((100vw - 320px) / 1120));
  }
}

.select__value {
  display: flex;
  font-size: 13px;
  padding: 8px 27px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (min-width: 86.375em) {
  .select__value {
    padding-top: calc(0px + 8 * ((100vw - 320px) / 1120));
    padding-bottom: calc(0px + 8 * ((100vw - 320px) / 1120));
    padding-left: calc(0px + 27 * ((100vw - 320px) / 1120));
    padding-right: calc(0px + 27 * ((100vw - 320px) / 1120));
    font-size: calc(5px + 8 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .select__value {
    padding: 8px 17px;
  }
}

.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value::before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 8px;
  height: 7px;
  margin-left: 5px;
  margin-top: 2px;
  background: url("../img/select.svg") center/100% no-repeat;
}
@media screen and (min-width: 86.375em) {
  .select__value::before {
    width: calc(0px + 8 * ((100vw - 320px) / 1120));
    height: calc(0px + 7 * ((100vw - 320px) / 1120));
    margin-left: 12px;
  }
}

.select__options {
  color: #fff;
  font-weight: 500;
  display: none;
  position: absolute;
  top: 29px;
  min-width: 100%;
  left: 0;
  background-color: #0c0c0c;
  border-top: 0;
  font-size: 13px;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}
@media screen and (min-width: 86.375em) {
  .select__options {
    font-size: calc(5px + 8 * ((100vw - 320px) / 1120));
    top: calc(5px + 24 * ((100vw - 320px) / 1120));
    border-bottom-left-radius: calc(0px + 15 * ((100vw - 320px) / 1120));
    border-bottom-right-radius: calc(0px + 15 * ((100vw - 320px) / 1120));
  }
}

.select__option {
  cursor: pointer;
  padding: 8px 5px;
  margin: 0px 0px 0px 0px;
  text-align: center;
  background-color: #ff3232;
}
.select__option:hover {
  background-color: #520000;
  color: #fff;
}
@media screen and (min-width: 86.375em) {
  .select__option {
    padding-top: calc(0px + 8 * ((100vw - 320px) / 1120));
    padding-bottom: calc(0px + 8 * ((100vw - 320px) / 1120));
  }
}

.select._active {
  z-index: 5;
}

.select._active .select__value::before {
  transform: rotate(-180deg);
}

.select._active.select__options {
  display: block;
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  align-items: center;
}

.swiper-initialized .swiper-slide {
  flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  transition: all 0.2s ease 0s;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0px 0px 5px #000;
  background-color: #f30000;
}
.swiper-button-prev:active,
.swiper-button-next:active {
  transform: translateY(-49%) scale(1);
  transition: all 0.2s ease 0s;
}
@media screen and (min-width: 86.375em) {
  .swiper-button-prev,
  .swiper-button-next {
    width: calc(15px + 25 * ((100vw - 320px) / 1120));
    height: calc(15px + 25 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .swiper-button-prev,
  .swiper-button-next {
    width: calc(25px + 15 * ((100vw - 320px) / 1120));
    height: calc(25px + 15 * ((100vw - 320px) / 1120));
  }
}

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #fff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0 0.625rem;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
  margin: 4.6875rem 0;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
  top: 50%;
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(10px + 16 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 47.99875em) {
  .swiper-slide:not(:last-child)::after {
    content: "";
    position: absolute;
    height: 2.1875rem;
    width: 0.125rem;
    background: #ccc;
    top: 50%;
    transform: translateY(-50%);
    right: -1.5625rem;
  }
}
@media screen and (min-width: 47.99875em) and (max-width: 61.99875em) {
  .swiper-slide:not(:last-child)::after {
    right: -25px;
  }
}
@media screen and (min-width: 47.99875em) and (max-width: 61.99875em) and (max-width: 1370px) {
  .swiper-slide:not(:last-child)::after {
    right: calc(-3px + -22 * ((100vw - 320px) / 1050));
  }
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: center;
  transition-property: transform, height;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
@media screen and (min-width: 86.375em) {
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: calc(8px + 7 * ((100vw - 320px) / 1120));
  }
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: calc(-75px + 150 * ((100vw - 320px) / 1120));
  right: auto;
}
@media screen and (min-width: 86.375em) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: calc(0px + 75 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: calc(-10px + 85 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: calc(0px + 75 * ((100vw - 320px) / 1120));
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: calc(-75px + 150 * ((100vw - 320px) / 1120));
  left: auto;
}
@media screen and (min-width: 86.375em) {
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: calc(0px + 75 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 47.99875em) {
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: calc(-10px + 85 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: calc(0px + 75 * ((100vw - 320px) / 1120));
  }
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 16px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
  display: inline-block;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background-color: #222;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

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

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@media screen and (max-width: 47.99875em) {
  .swiper-slide-active::after {
    content: "";
    position: absolute;
    height: 2.1875rem;
    width: 0.125rem;
    background: #ccc;
    top: 50%;
    transform: translateY(-50%);
    right: -1.5625rem;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 61.99875em) {
  .swiper-slide-active::after {
    right: -25px;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 61.99875em) and (max-width: 1370px) {
  .swiper-slide-active::after {
    right: calc(-3px + -22 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 29.99875em) {
  .swiper-slide-active::after {
    display: none;
  }
}

/*.swiper-slide {
	//&::before,
	&:not(:last-child) {
		&::after {
			content: "";
			position: absolute;
			height: rem(35);
			width: rem(2);
			background: #ccc;
			top: 50%;
			transform: translateY(-50%);
		}
		/*&::before {
			left: rem(-25);
		}*/
/*&::after {
			right: rem(-25);
		}
	}
}*/
@font-face {
  font-family: icons;
  font-display: swap;
  src: url("../fonts/icons.woff2") format("woff2"), url("../fonts/icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Ethnocentric;
  font-display: swap;
  src: url("../fonts/Ethnocentric-Regular.woff2") format("woff2"), url("../fonts/Ethnocentric-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "icons";
  src: url("../fonts/icons.eot?daoe0k");
  src: url("../fonts/icons.eot?daoe0k#iefix") format("embedded-opentype"), url("../fonts/icons.ttf?daoe0k") format("truetype"), url("../fonts/icons.woff?daoe0k") format("woff"), url("../fonts/icons.svg?daoe0k#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-]::before, [class*=" icon-"]::before,
[class^=icon-]::after, [class*=" icon-"]::after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-diag::after {
  content: "\e900";
}

.icon-arrow-side::before {
  content: "\e901";
}

.icon-arrow-down::after {
  content: "\ea3e";
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #0c0c0c;
  color: #f30000;
}

.wrapper {
  min-height: 100%;
  overflow: hidden;
  font-family: Montserrat, sans-serif;
}

[class*=__container] {
  max-width: calc(290px + 1080 * ((100vw - 320px) / 1120));
  padding: 0 0.9375rem;
  margin: 0 auto;
}

.headline {
  padding-top: calc(80px + 170 * ((100vw - 320px) / 1120));
  text-align: center;
  background: url(../img/01-headline/bg.png) center center/100% auto no-repeat;
}

.headline__title {
  font-family: Ethnocentric;
  color: #f30000;
  text-shadow: 0px 10px 93px rgba(255, 255, 255, 0.3);
  font-size: calc(36px + 60 * ((100vw - 320px) / 1120));
}

.headline__subtitle {
  font-family: Ethnocentric;
  color: #D9D9D9;
  font-size: calc(24px + 40 * ((100vw - 320px) / 1120));
  margin-bottom: 0.625rem;
}

.headline__text {
  color: #7a7a7a;
  font-size: calc(14px + 2 * ((100vw - 320px) / 1120));
  font-weight: 300;
  margin-bottom: calc(20px + 25 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .headline__text {
    font-size: calc(6px + 10 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .headline__text {
    color: #bebebe;
  }
}

.headline__btn {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background: #f30000;
  display: inline-block;
  padding: 0.9375rem 0;
  width: calc(140px + 80 * ((100vw - 320px) / 1120));
  border-radius: 0.625rem;
  margin-bottom: calc(30px + 45 * ((100vw - 320px) / 1120));
  transition: all 0.2s ease;
}
.headline__btn:hover {
  transition: all 0.2s ease;
  background: #520000;
}
@media screen and (min-width: 86.375em) {
  .headline__btn {
    font-size: calc(6px + 10 * ((100vw - 320px) / 1120));
    padding-top: calc(5px + 10 * ((100vw - 320px) / 1120));
    padding-bottom: calc(5px + 10 * ((100vw - 320px) / 1120));
    width: calc(80px + 140 * ((100vw - 320px) / 1120));
    border-radius: calc(3px + 7 * ((100vw - 320px) / 1120));
  }
}

.headline__social {
  text-align: right;
  margin-bottom: calc(20px + 25 * ((100vw - 320px) / 1120));
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.headline__social .headline__label {
  font-size: 12px;
  color: #858585;
  margin-right: 0.9375rem;
}
@media (max-width: 1370px) {
  .headline__social .headline__label {
    font-size: calc(10px + 2 * ((100vw - 320px) / 1050));
  }
}
@media screen and (min-width: 86.375em) {
  .headline__social .headline__label {
    font-size: calc(0px + 12 * ((100vw - 320px) / 1120));
    margin-right: calc(0px + 15 * ((100vw - 320px) / 1120));
    display: inline-block;
  }
}
.headline__social .headline__link {
  display: inline-block;
  transition: all 0.2s ease;
}
.headline__social .headline__link:not(:last-child) {
  margin-right: calc(20px + 6 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .headline__social .headline__link:not(:last-child) {
    margin-right: calc(0px + 26 * ((100vw - 320px) / 1120));
  }
}
.headline__social .headline__link:hover {
  transition: all 0.2s ease;
  transform: scale(1.1);
  box-shadow: 0 0 7px #f30000;
}
@media screen and (min-width: 86.375em) and (min-width: 86.375em) {
  .headline__social .headline__link img {
    width: calc(5px + 12 * ((100vw - 320px) / 1120));
    height: calc(5px + 12 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .headline__social span {
    display: none;
  }
}

.decor {
  display: inline-block;
  background: #f30000;
  width: calc(20px + 18 * ((100vw - 320px) / 1120));
  height: 2px;
  position: relative;
  margin-right: calc(24px + 8 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .decor {
    width: calc(10px + 28 * ((100vw - 320px) / 1120));
    margin-right: calc(0px + 32 * ((100vw - 320px) / 1120));
  }
}
.decor::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 2px;
  background: #858585;
  position: absolute;
  top: 0px;
  right: -15px;
}
@media screen and (min-width: 86.375em) {
  .decor::after {
    width: calc(0px + 7 * ((100vw - 320px) / 1120));
    right: calc(-5px + -10 * ((100vw - 320px) / 1120));
  }
}

.about {
  background: url(../img/02-about/bg.png) center center/100% auto no-repeat;
  padding-bottom: calc(15px + 45 * ((100vw - 320px) / 1120));
}

.about__number {
  margin-bottom: calc(-8px + -4 * ((100vw - 320px) / 1120));
}

.number {
  text-align: center;
  font-family: Ethnocentric;
  font-size: calc(36px + 12 * ((100vw - 320px) / 1120));
  color: #0c0c0c;
  -webkit-text-stroke: 2px #f30000;
}
@media screen and (min-width: 86.375em) {
  .number {
    font-size: calc(20px + 28 * ((100vw - 320px) / 1120));
  }
}

.about__title {
  margin-bottom: calc(20px + 20 * ((100vw - 320px) / 1120));
}

.title {
  text-align: center;
  font-family: Ethnocentric;
  font-size: calc(24px + 6 * ((100vw - 320px) / 1120));
  color: #fff;
  background: #0c0c0c;
  padding-top: 0.9375rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 86.375em) {
  .title {
    font-size: calc(14px + 16 * ((100vw - 320px) / 1120));
  }
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 47.99875em) {
  .about__wrapper {
    flex-direction: column;
  }
}

.about__text {
  display: inline-block;
  flex: 0 1 37.8472222222%;
  margin-left: 62px;
  padding: 0.3125rem 0.625rem;
}
@media (max-width: 1370px) {
  .about__text {
    margin-left: calc(30px + 32 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) {
  .about__text {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 86.375em) {
  .about__text {
    font-size: calc(5px + 12 * ((100vw - 320px) / 1120));
    width: 50%;
  }
}

.text {
  color: #cecece;
  font-size: calc(14px + 3 * ((100vw - 320px) / 1120));
  line-height: calc(18px + 2 * ((100vw - 320px) / 1120));
  font-weight: 300;
}
@media screen and (min-width: 86.375em) {
  .text {
    font-size: calc(5px + 12 * ((100vw - 320px) / 1120));
    line-height: calc(7px + 13 * ((100vw - 320px) / 1120));
  }
}

.about__paragraph:not(:last-child) {
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 47.99875em) {
  .about__card-wrapper {
    text-align: center;
  }
}

.about__card {
  background: #171717;
  margin-top: calc(150px + 90 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 61.99875em) {
  .about__card {
    position: relative;
    margin: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 47.99875em) {
  .about__card {
    transform: translateY(0%);
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .about__card {
    margin-top: calc(5px + 25 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .about__card {
    margin-bottom: calc(5px + 25 * ((100vw - 320px) / 1050));
  }
}

.card {
  display: inline-block;
  width: calc(200px + 400 * ((100vw - 320px) / 1120));
  padding-bottom: 0.3125rem;
  border-radius: 10px;
  transform-style: preserve-3d;
}
@media screen and (max-width: 61.99875em) {
  .card {
    padding-top: calc(10px + 5 * ((100vw - 320px) / 1120));
    padding-bottom: calc(10px + 5 * ((100vw - 320px) / 1120));
  }
}
.card::before, .card::after {
  content: "";
  position: absolute;
  background: #f30000;
  border-radius: 10px;
  box-shadow: 0 0 11px #f30000;
  transform: translateZ(-1px);
}
.card::before {
  width: 0.25rem;
  height: 5.3125rem;
  left: -3px;
  top: 12px;
}
.card::after {
  width: 7rem;
  height: 6.75rem;
  right: -4px;
  bottom: -4px;
}
@media screen and (max-width: 47.99875em) {
  .card {
    width: 550px;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .card {
    width: calc(280px + 270 * ((100vw - 320px) / 1050));
  }
}

.card__wrapper {
  display: inline-flex;
}

.card__image {
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: calc(100px + 120 * ((100vw - 320px) / 1120));
  align-self: center;
}
.card__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 86.375em) {
  .card__image {
    flex-basis: calc(0px + 220 * ((100vw - 320px) / 1120));
  }
  .card__image img {
    width: 100%;
    height: auto;
  }
}

.card__header {
  display: inline-block;
  background: #ff3232;
  border-radius: 43px;
  color: #fff;
  font-size: calc(12px + 4 * ((100vw - 320px) / 1120));
  font-weight: 600;
  padding: 0.3125rem 0.9375rem;
  margin-top: calc(5px + 35 * ((100vw - 320px) / 1120));
  margin-bottom: calc(5px + 15 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .card__header {
    font-size: calc(6px + 10 * ((100vw - 320px) / 1120));
    padding-top: calc(0px + 5 * ((100vw - 320px) / 1120));
    padding-bottom: calc(0px + 5 * ((100vw - 320px) / 1120));
    padding-left: calc(0px + 15 * ((100vw - 320px) / 1120));
    padding-right: calc(0px + 15 * ((100vw - 320px) / 1120));
  }
}

.card__text {
  color: #cecece;
  font-size: calc(14px + 2 * ((100vw - 320px) / 1120));
  font-weight: 300;
  max-width: calc(200px + 100 * ((100vw - 320px) / 1120));
  margin-bottom: calc(10px + 5 * ((100vw - 320px) / 1120));
  line-height: calc(18px + 2 * ((100vw - 320px) / 1120));
  text-align: left;
}
@media screen and (min-width: 86.375em) {
  .card__text {
    font-size: calc(6px + 10 * ((100vw - 320px) / 1120));
    max-width: calc(0px + 300 * ((100vw - 320px) / 1120));
    line-height: calc(10px + 10 * ((100vw - 320px) / 1120));
  }
}

.card__link {
  color: #cecece;
  font-size: calc(14px + 2 * ((100vw - 320px) / 1120));
  text-align: left;
  position: relative;
}
.card__link:hover {
  color: #fff;
  text-decoration: underline;
}
.card__link::after {
  font-size: calc(18px + 2 * ((100vw - 320px) / 1120));
  display: inline-block;
  position: absolute;
  top: 0.0625rem;
  right: -1.5625rem;
}
@media screen and (min-width: 86.375em) {
  .card__link {
    font-size: calc(6px + 10 * ((100vw - 320px) / 1120));
  }
  .card__link::after {
    font-size: calc(10px + 10 * ((100vw - 320px) / 1120));
    right: calc(-10px + -15 * ((100vw - 320px) / 1120));
    top: 0.1875rem;
  }
}

.projects {
  overflow: hidden;
  padding-top: calc(25px + 30 * ((100vw - 320px) / 1120));
  margin-bottom: calc(0px + 100 * ((100vw - 320px) / 1120));
  position: relative;
}
.projects::before {
  content: "";
  width: calc(100px + 195 * ((100vw - 320px) / 1120));
  height: calc(147px + 288 * ((100vw - 320px) / 1120));
  position: absolute;
  z-index: 5;
  top: calc(0px + -15 * ((100vw - 320px) / 1120));
  left: 0;
  background: url(../img/03-projects/pc.png) center center/cover no-repeat;
}
.projects::after {
  content: "";
  width: calc(133px + 259 * ((100vw - 320px) / 1120));
  height: calc(139px + 270 * ((100vw - 320px) / 1120));
  position: absolute;
  z-index: 5;
  top: calc(0px + -15 * ((100vw - 320px) / 1120));
  right: 0;
  background: url(../img/03-projects/drone.png) center center/cover no-repeat;
}

.projects__container {
  background: #161616;
  padding-top: calc(15px + 55 * ((100vw - 320px) / 1120));
  padding-bottom: calc(30px + 55 * ((100vw - 320px) / 1120));
  position: relative;
}
@media screen and (min-width: 86.375em) {
  .projects__container {
    padding-top: calc(15px + 55 * ((100vw - 320px) / 1120));
    padding-bottom: calc(30px + 55 * ((100vw - 320px) / 1120));
  }
}

.projects__number {
  color: #161616;
  margin-bottom: calc(-8px + -4 * ((100vw - 320px) / 1120));
}

.projects__title {
  background: #161616;
  margin-bottom: calc(8px + 4 * ((100vw - 320px) / 1120));
}

.projects__text {
  color: #fff;
  text-align: center;
  font-size: calc(14px + 3 * ((100vw - 320px) / 1120));
  line-height: calc(20px + 6 * ((100vw - 320px) / 1120));
  font-weight: 300;
  max-width: calc(300px + 130 * ((100vw - 320px) / 1120));
  margin: 0 auto;
}
@media screen and (max-width: 47.99875em) {
  .projects__text {
    position: relative;
    z-index: 10;
  }
}
@media screen and (min-width: 86.375em) {
  .projects__text {
    font-size: calc(6px + 11 * ((100vw - 320px) / 1120));
    line-height: calc(10px + 16 * ((100vw - 320px) / 1120));
    max-width: calc(200px + 230 * ((100vw - 320px) / 1120));
  }
}

.projects__swiper {
  margin-left: 190px;
  margin-right: 190px;
}
@media (max-width: 1370px) {
  .projects__swiper {
    margin-left: calc(-100px + 290 * ((100vw - 320px) / 1050));
  }
}
@media (max-width: 1370px) {
  .projects__swiper {
    margin-right: calc(-100px + 290 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) {
  .projects__swiper {
    margin-left: 190px;
    margin-right: 190px;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .projects__swiper {
    margin-left: calc(-50px + 240 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .projects__swiper {
    margin-right: calc(-50px + 240 * ((100vw - 320px) / 1050));
  }
}

.slide__number {
  color: #ccc;
  font-size: calc(20px + 16 * ((100vw - 320px) / 1120));
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(30px + 30 * ((100vw - 320px) / 1120));
  height: calc(30px + 32 * ((100vw - 320px) / 1120));
  background: #000;
  border-radius: 50%;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(30px + 30 * ((100vw - 320px) / 1120));
}

.slide__text {
  color: #9e9e9e;
  font-size: calc(12px + 3 * ((100vw - 320px) / 1120));
  line-height: calc(14px + 4 * ((100vw - 320px) / 1120));
  font-weight: 300;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: calc(100px + 96 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .slide__text {
    font-size: calc(7px + 8 * ((100vw - 320px) / 1120));
    line-height: calc(8px + 10 * ((100vw - 320px) / 1120));
    flex-basis: calc(0px + 196 * ((100vw - 320px) / 1120));
  }
}
@media screen and (max-width: 29.99875em) {
  .slide__text {
    flex-basis: calc(170px + 26 * ((100vw - 320px) / 1120));
  }
}

.swiper__container {
  position: relative;
  overflow: hidden;
}

.investment {
  margin-bottom: calc(40px + 110 * ((100vw - 320px) / 1120));
}

.investment__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 47.99875em) {
  .investment__wrapper {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.investment__info {
  flex: 0 1 43.2835820896%;
}

.investment__propose {
  flex: 0 1 42.5373134328%;
}

.investment__number {
  margin-bottom: calc(-8px + -4 * ((100vw - 320px) / 1120));
  text-align: left;
}

.investment__title {
  margin-bottom: calc(12px + 8 * ((100vw - 320px) / 1120));
  text-align: left;
}

.investment__paragraph:not(:last-child) {
  margin-bottom: 1.25rem;
}

.investment__propose-title {
  font-family: Ethnocentric;
  font-size: calc(14px + 6 * ((100vw - 320px) / 1120));
  line-height: calc(18px + 6 * ((100vw - 320px) / 1120));
  color: #cecece;
  margin-bottom: calc(30px + 30 * ((100vw - 320px) / 1120));
  margin-top: calc(12px + 8 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .investment__propose-title {
    font-size: calc(8px + 12 * ((100vw - 320px) / 1120));
    line-height: calc(8px + 16 * ((100vw - 320px) / 1120));
  }
}

.investment__propose-item {
  color: #cecece;
  font-size: calc(13px + 3 * ((100vw - 320px) / 1120));
  line-height: calc(14px + 4 * ((100vw - 320px) / 1120));
  font-weight: 300;
}
.investment__propose-item:not(:last-child) {
  margin-bottom: calc(20px + 30 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .investment__propose-item {
    font-size: calc(5px + 11 * ((100vw - 320px) / 1120));
    line-height: calc(7px + 13 * ((100vw - 320px) / 1120));
  }
}
.investment__propose-item span {
  display: inline-block;
  margin-right: 1.25rem;
  font-weight: 400;
  font-family: Ethnocentric;
  font-size: calc(13px + 3 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .investment__propose-item span {
    font-size: calc(6px + 10 * ((100vw - 320px) / 1120));
  }
}

.vacancy__number {
  margin-bottom: calc(-8px + -5 * ((100vw - 320px) / 1120));
}

.vacancy__title {
  margin-bottom: calc(20px + 40 * ((100vw - 320px) / 1120));
}

.vacancy__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 61.99875em) {
  .vacancy__wrapper {
    align-items: center;
  }
}
@media screen and (max-width: 47.99875em) {
  .vacancy__wrapper {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.vacancy__text {
  flex: 0 1 42.5373134328%;
}

.vacancy__paragraph:not(:last-child) {
  margin-bottom: 1.25rem;
}

@media screen and (min-width: 47.99875em) {
  .vacancy__card-wrapper {
    margin-top: 20px;
  }
}
@media screen and (min-width: 47.99875em) and (max-width: 1370px) {
  .vacancy__card-wrapper {
    margin-top: calc(5px + 15 * ((100vw - 320px) / 1050));
  }
}

.vacancy__card {
  background: #0c0c0c;
}

@media screen and (max-width: 47.99875em) {
  .contacts {
    background: url(../img/05-contacts/galo.png) center center/contain no-repeat;
  }
}

.contacts__wrapper {
  display: flex;
  justify-content: space-evenly;
  gap: 1.25rem;
}
@media screen and (max-width: 47.99875em) {
  .contacts__wrapper {
    flex-direction: column;
  }
}

.contacts__location {
  flex: 0 1 55%;
  background: url(../img/05-contacts/galo.png) 0 0/contain no-repeat;
  padding-top: 370px;
  padding-bottom: 370px;
}
@media (max-width: 1370px) {
  .contacts__location {
    padding-top: calc(0px + 370 * ((100vw - 320px) / 1050));
  }
}
@media (max-width: 1370px) {
  .contacts__location {
    padding-bottom: calc(0px + 370 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 61.99875em) {
  .contacts__location {
    background-position: center center;
  }
}
@media screen and (max-width: 47.99875em) {
  .contacts__location {
    flex: 0 1 40%;
    padding: 0;
    margin-top: 5rem;
    margin-bottom: 80px;
    background: none;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .contacts__location {
    margin-bottom: calc(25px + 55 * ((100vw - 320px) / 1050));
  }
}

.contacts__info {
  flex: 0 1 40%;
  padding-top: 370px;
  padding-bottom: 370px;
  background: transparent;
}
@media (max-width: 1370px) {
  .contacts__info {
    padding-top: calc(0px + 370 * ((100vw - 320px) / 1050));
  }
}
@media (max-width: 1370px) {
  .contacts__info {
    padding-bottom: calc(0px + 370 * ((100vw - 320px) / 1050));
  }
}
@media screen and (max-width: 47.99875em) {
  .contacts__info {
    flex: 0 1 50%;
    padding: 0;
    text-align: center;
  }
}

.contacts__asanara {
  margin-bottom: calc(100px + 70 * ((100vw - 320px) / 1120));
  width: calc(120px + 52 * ((100vw - 320px) / 1120));
}
.contacts__asanara img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 47.99875em) {
  .contacts__asanara {
    margin-bottom: calc(80px + 20 * ((100vw - 320px) / 1120));
  }
}
@media screen and (min-width: 86.375em) {
  .contacts__asanara {
    width: calc(100px + 72 * ((100vw - 320px) / 1120));
  }
  .contacts__asanara img {
    width: 100%;
  }
}

.contacts__map {
  background: url(../img/05-contacts/map.png) 0 0/contain no-repeat;
  padding-bottom: 2.5rem;
  margin-left: calc(0px + 50 * ((100vw - 320px) / 1120));
}
@media screen and (max-width: 47.99875em) {
  .contacts__map {
    background-position: center center;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 47.99875em) and (max-width: 1370px) {
  .contacts__map {
    padding-bottom: calc(0px + 40 * ((100vw - 320px) / 1050));
  }
}

.contacts__link {
  color: #FFF;
  font-family: Montserrat;
  font-size: calc(10px + 2 * ((100vw - 320px) / 1120));
  line-height: calc(14px + 2 * ((100vw - 320px) / 1120));
  font-weight: 300;
  display: inline-block;
  position: relative;
  width: 9.6875rem;
  padding-left: calc(30px + 14 * ((100vw - 320px) / 1120));
}
.contacts__link::before {
  content: "";
  width: calc(24px + 14 * ((100vw - 320px) / 1120));
  height: calc(24px + 14 * ((100vw - 320px) / 1120));
  position: absolute;
  left: 0;
  top: -0.1875rem;
  background: url(../img/05-contacts/location.png) 0 0/cover no-repeat;
}
.contacts__link:hover {
  text-decoration: underline;
}
@media screen and (min-width: 86.375em) {
  .contacts__link {
    font-size: calc(4px + 8 * ((100vw - 320px) / 1120));
    line-height: calc(6px + 10 * ((100vw - 320px) / 1120));
    width: 155px;
  }
}
@media screen and (min-width: 86.375em) and (min-width: 1440px) {
  .contacts__link {
    width: calc(80px + 75 * ((100vw - 320px) / 1120));
  }
}

.contacts__number {
  margin-bottom: calc(-8px + -4 * ((100vw - 320px) / 1120));
  text-align: left;
}
@media screen and (max-width: 47.99875em) {
  .contacts__number {
    text-align: center;
  }
}

.contacts__title {
  margin-bottom: calc(24px + 12 * ((100vw - 320px) / 1120));
  text-align: left;
}
@media screen and (max-width: 47.99875em) {
  .contacts__title {
    text-align: center;
    background: none;
  }
}

.contacts__address,
.contacts__phone,
.contacts__email {
  color: #cecece;
  font-size: calc(14px + 3 * ((100vw - 320px) / 1120));
  line-height: calc(18px + 4 * ((100vw - 320px) / 1120));
  font-weight: 300;
  font-style: normal;
}
.contacts__address span,
.contacts__phone span,
.contacts__email span {
  font-weight: 500;
  display: inline-block;
  margin-right: 0.75rem;
}
@media screen and (max-width: 47.99875em) {
  .contacts__address span,
  .contacts__phone span,
  .contacts__email span {
    display: block;
  }
}
.contacts__address a,
.contacts__phone a,
.contacts__email a {
  color: #cecece;
}
@media screen and (min-width: 86.375em) {
  .contacts__address,
  .contacts__phone,
  .contacts__email {
    font-size: calc(5px + 12 * ((100vw - 320px) / 1120));
    line-height: calc(5px + 17 * ((100vw - 320px) / 1120));
  }
}

.contacts__address {
  margin-bottom: 0.625rem;
}

.contacts__phone {
  margin-bottom: 0.625rem;
}

.contacts__email {
  margin-bottom: calc(25px + 20 * ((100vw - 320px) / 1120));
}

.contacts__social {
  margin-bottom: calc(15px + 10 * ((100vw - 320px) / 1120));
}

.social__list {
  display: flex;
  gap: 1.375rem;
}
@media screen and (max-width: 47.99875em) {
  .social__list {
    justify-content: center;
  }
}
@media screen and (min-width: 86.375em) {
  .social__list {
    gap: calc(8px + 14 * ((100vw - 320px) / 1120));
  }
}

.social__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(28px + 12 * ((100vw - 320px) / 1120));
  height: calc(28px + 12 * ((100vw - 320px) / 1120));
  background: #3a3a3a;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.social__link:hover {
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 0 11px #f30000;
}
.social__link img[alt*=Telegram] {
  width: calc(16px + 8 * ((100vw - 320px) / 1120));
  height: calc(16px + 8 * ((100vw - 320px) / 1120));
}
.social__link img[alt*=Instagram] {
  width: calc(16px + 9 * ((100vw - 320px) / 1120));
  height: calc(16px + 9 * ((100vw - 320px) / 1120));
}
.social__link img[alt*=Viber] {
  width: calc(19px + 9 * ((100vw - 320px) / 1120));
  height: calc(19px + 9 * ((100vw - 320px) / 1120));
}
.social__link img[alt*=Facebook] {
  width: calc(22px + 11 * ((100vw - 320px) / 1120));
  height: calc(22px + 11 * ((100vw - 320px) / 1120));
}
@media screen and (min-width: 86.375em) {
  .social__link {
    width: calc(14px + 26 * ((100vw - 320px) / 1120));
    height: calc(14px + 26 * ((100vw - 320px) / 1120));
  }
  .social__link img[alt*=Telegram] {
    width: calc(12px + 12 * ((100vw - 320px) / 1120));
    height: calc(12px + 12 * ((100vw - 320px) / 1120));
  }
  .social__link img[alt*=Instagram] {
    width: calc(12px + 13 * ((100vw - 320px) / 1120));
    height: calc(12px + 13 * ((100vw - 320px) / 1120));
  }
  .social__link img[alt*=Viber] {
    width: calc(14px + 14 * ((100vw - 320px) / 1120));
    height: calc(14px + 14 * ((100vw - 320px) / 1120));
  }
  .social__link img[alt*=Facebook] {
    width: calc(16px + 17 * ((100vw - 320px) / 1120));
    height: calc(16px + 17 * ((100vw - 320px) / 1120));
  }
}