@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 300;
  src: local("Neue Machina"), url("../../fonts/PPNeueMachina-Light.otf");
  src: local("Neue Machina"), url("../../fonts/PPNeueMachina-Light.otf") format("opentype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 500;
  src: local("Neue Machina"), url("../../fonts/PPNeueMachina-Regular.otf");
  src: local("Neue Machina"), url("../../fonts/PPNeueMachina-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Neue Machina";
  font-style: normal;
  font-weight: 800;
  src: local("Neue Machina"), url("../../fonts/PPNeueMachina-Ultrabold.otf");
  src: local("Neue Machina"), url("../../fonts/PPNeueMachina-Ultrabold.otf") format("opentype");
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: none;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.space {
  margin: 0 5px;
}

.low-focus {
  color: #80aad3;
}

.highlight {
  color: #09e8f3;
}

.bg-active {
  background: #09e8f3;
  color: #ffffff;
  padding: 0 16px;
  border-radius: 4px;
}

.bg-second {
  background: white;
  padding: 15px;
  border-radius: 10px;
}

.color-main {
  color: #09e8f3;
}

.shadow {
  box-shadow: 0px 5px 10px rgba(108, 140, 199, 0.2);
}

.shadow-light {
  box-shadow: 0px 10px 30px rgba(108, 140, 199, 0.3);
}

.container {
  margin: auto;
}

.p-relative {
  position: relative;
}

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

.center-h {
  display: flex;
  justify-content: center;
}

.hidden-light {
  display: none;
}

.hidden {
  display: none !important;
}

.invisible {
  opacity: 0;
}

.flex {
  display: flex;
}

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

.grow-1 {
  flex-grow: 1;
}

.grid {
  display: grid;
}

.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-10 {
  gap: 10px;
}

.gap-30 {
  gap: 30px;
}

.row-3 {
  display: flex;
  flex-wrap: wrap;
}
.row-3 .col {
  width: calc(33.3333333333% - 20px);
}

.row-1-3 {
  display: flex;
}
.row-1-3 .col:first-child {
  width: 25%;
}
.row-1-3 .col:last-child {
  width: 75%;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.w-50 {
  width: 50% !important;
}

body {
  font-family: "Neue Machina", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #333333;
  font-size: 18px;
  background: gray;
}
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body.overflow {
  overflow: hidden;
}

a {
  font-size: 18px;
  text-decoration: none;
  font-weight: 300px;
}
a:hover {
  color: #09e8f3;
  text-decoration: underline;
}

b {
  font-weight: 700;
}

h1 {
  font-size: 80px;
  color: #ffffff;
  font-weight: 800;
  line-height: 92%;
  margin-bottom: 32px;
}

h2 {
  font-weight: 500;
  font-size: 80px;
}

.container {
  max-width: 1700px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.container_fluid {
  max-width: 1540px;
}

.form {
  position: relative;
  padding: 15px;
}

.form__corner {
  position: absolute;
  width: 16px;
  height: 16px;
  background: url("/images/svg/white-corner.svg") center center/contain no-repeat;
}
.form__corner_top_left {
  top: 0;
  left: 0;
}
.form__corner_top_right {
  top: 0;
  right: 0;
  transform: rotate(90deg);
}
.form__corner_bottom_right {
  bottom: 0;
  right: 0;
  transform: rotate(180deg);
}
.form__corner_bottom_left {
  bottom: 0;
  left: 0;
  transform: rotate(270deg);
}

.form__top {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 16px;
  background: url("/images/svg/Top.svg") center center/contain no-repeat;
}

.form__bottom {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  height: 16px;
  background: url("/images/svg/Bottom.svg") center center/contain no-repeat;
}

.form__left {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: calc(100% - 32px);
  width: 16px;
  background: url("/images/svg/Left.svg") center center/contain no-repeat;
}

.form__right {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: calc(100% - 32px);
  width: 16px;
  background: url("/images/svg/Right.svg") center center/contain no-repeat;
}

.form__container {
  padding: 44px 64px 64px;
  background: #fff;
  max-width: 818px;
  height: 657px;
}

.form__text {
  font-size: 18px;
  line-height: 160%;
  color: #35505b;
  margin-bottom: 30px;
}

.form__field {
  background: #ffffff;
  border: 1px solid #c7c7c7;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #2b2b2b;
  padding: 16px 30px 20px;
  margin-bottom: 20px;
  width: 100%;
}
.form__field::-moz-placeholder {
  color: #a6a6a6;
}
.form__field:-ms-input-placeholder {
  color: #a6a6a6;
}
.form__field::placeholder {
  color: #a6a6a6;
}
.form__field:focus {
  border-color: #50a5c7;
}

.form__textarea {
  height: 174px;
  resize: none;
}

.form__label {
  padding-left: 10px;
  margin-bottom: 30px;
}

.form__checkbox {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
  width: 18px;
  height: 18px;
}
.form__checkbox:after {
  content: "";
  background: url("/images/check.png") center center/contain no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.form__checkbox:checked:after {
  background: url("/images/check.png") center center/contain no-repeat;
}

.form__checkbox-text {
  font-size: 16px;
  line-height: 20px;
  color: #26495b;
}

.application-form {
  display: flex;
  flex-direction: column;
  padding: 35px 50px;
  box-shadow: 0px 4px 30px rgba(176, 222, 45, 0.1);
  border-radius: 25px 25px 25px 0px;
  background: #2e3130;
  color: #a6a6a6;
  min-width: 740px;
  font-size: 24px;
  position: relative;
}
.application-form > p {
  margin-bottom: 60px;
}
.application-form button {
  margin: 0 auto;
}
.application-form .politic {
  margin-bottom: 40px;
}
.application-form ._close {
  width: 42px;
  height: 42px;
  position: absolute;
  right: 26px;
  top: 20px;
  background: rgba(166, 166, 166, 0.15);
  border-radius: 50%;
  cursor: pointer;
}
.application-form ._close::before, .application-form ._close::after {
  content: "";
  width: 22px;
  height: 2px;
  position: absolute;
  left: calc(50% - 11px);
  top: calc(50% - 1px);
  background: #dbdbd7;
  transform: rotate(45deg);
}
.application-form ._close::after {
  transform: rotate(-45deg);
}

.form__title {
  display: block;
  font-size: 48px;
  line-height: 115%;
  color: #09e8f3;
  margin-bottom: 8px;
}

.form-input,
.form-text-area {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(166, 166, 166, 0.2);
  padding: 10px 0;
  color: #dbdbd7;
  font-size: 18px;
  font-family: "Gotham Pro", sans-serif;
  margin-bottom: 30px;
  resize: none;
}
.form-input::-moz-placeholder, .form-text-area::-moz-placeholder {
  color: #dbdbd7;
  font-family: "Gotham Pro", sans-serif;
}
.form-input:-ms-input-placeholder, .form-text-area:-ms-input-placeholder {
  color: #dbdbd7;
  font-family: "Gotham Pro", sans-serif;
}
.form-input::placeholder,
.form-text-area::placeholder {
  color: #dbdbd7;
  font-family: "Gotham Pro", sans-serif;
}

.form-text-area {
  border: 1px solid rgba(166, 166, 166, 0.2);
  padding: 12px 20px;
  margin-bottom: 14px;
}

.checkbox {
  display: none;
}

.checkbox + label {
  display: inline-flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 16px;
  align-items: center;
}

.checkbox + label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 13px;
  background: rgba(243, 243, 243, 0.3);
  border-radius: 3px;
  border: 1px solid #dbdbd7;
}

.checkbox:checked + label::before {
  background-image: url("/images/check.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.checkbox.dark:checked + label::before {
  background-color: #09e8f3;
  background-image: none;
  border: 4px rgba(243, 243, 243, 0.8) solid;
}

.checkbox:not(:disabled):not(:checked) + label:hover::before {
  border-color: #b3d7ff;
}

.checkbox:not(:disabled):active + label::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.checkbox:focus + label::before {
  box-shadow: 0 0 0 0.2rem rgb(0, 123, 255);
}

.checkbox:focus:not(:checked) + label::before {
  box-shadow: 0 0 5px 0.2rem rgb(255, 0, 0);
}

.btn-main,
.btn,
button {
  background: none;
  color: #09e8f3;
  font-size: 18px;
  border-radius: 42px;
  display: inline-flex;
  border: 1px solid #09e8f3;
  text-decoration: none;
  padding: 17px 44px;
  font-weight: 500;
  line-height: 105.5%;
  letter-spacing: 0.04em;
  box-sizing: border-box;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 13px;
}
.btn-main:hover,
.btn:hover,
button:hover {
  color: #1fedf7;
  background: rgba(9, 232, 243, 0.1);
  text-decoration: none;
  border: 1px solid #1fedf7;
}
.btn-main:active,
.btn:active,
button:active {
  color: #08d1da;
  background: rgba(9, 232, 243, 0.05);
  border: 1px solid #08d1da;
}

._popup {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 30;
  overflow-x: auto;
  padding: 50px 0 30px;
}

.header {
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.header__logo {
  flex-shrink: 0;
  margin-right: 120px;
}

.header__container,
.header__grid,
.header__nav ul,
.header__controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__container {
  display: flex;
  padding: 22px 55px;
  justify-content: space-between;
}

.header__grid {
  justify-content: space-between;
  width: 100%;
  padding-bottom: 15px;
}

.header__controls .control {
  margin-right: 30px;
}

.header__nav ul li {
  margin-right: 36px;
}
.header__nav ul li a {
  color: #ffffff;
}

.email {
  color: #09e8f3;
}

.phone {
  color: #ffffff;
  font-size: 20px;
}

.lang {
  cursor: pointer;
  position: relative;
}
.lang .lang__title {
  display: flex;
  align-items: center;
  padding: 0 1px;
}
.lang .lang__title img {
  margin-left: 6px;
}
.lang .lang__list {
  position: absolute;
  display: none;
  left: -5px;
}
.lang .lang__list li a {
  color: #fff;
  padding: 5px 5px;
  margin-bottom: 0;
}
.lang .lang__list li a:hover {
  color: #09e8f3;
  text-decoration: none;
}
.lang:hover .lang__title {
  padding: 0;
  color: #09e8f3;
  font-weight: 800;
}
.lang:hover .lang__list {
  display: block;
}

.burger-btn {
  width: 60px;
  height: 60px;
  position: relative;
  cursor: pointer;
  z-index: 5;
  display: none;
}
.burger-btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 20px;
  background: #09e8f3;
  border-radius: 2px;
  opacity: 1;
  left: calc(50% - 8.5px);
  transform: rotate(0deg);
  transition: 0.15s ease-in-out;
}
.burger-btn span:nth-child(1) {
  top: calc(50% - 6.5px);
}
.burger-btn span:nth-child(2), .burger-btn span:nth-child(3) {
  top: 50%;
}
.burger-btn span:nth-child(4) {
  top: calc(50% + 6.5px);
}
.burger-btn.active span:nth-child(1) {
  top: 50%;
  width: 0%;
  left: 50%;
}
.burger-btn.active span:nth-child(2) {
  transform: rotate(45deg);
}
.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
}
.burger-btn.active span:nth-child(4) {
  top: 50%;
  width: 0%;
  left: 50%;
}
.toup {
  position: fixed;
  width: 60px;
  height: 60px;
  background: url("/images/scroll-top.svg");
  background-position: center;
  background-repeat: no-repeat;
  right: 90px;
  bottom: 100px;
  cursor: pointer;
  opacity: 0;
  transition-duration: 1s;
  z-index: 4;
}
.toup.active {
  opacity: 1;
}

.footer {
  background: #19151e;
  padding: 15px 0 10px;
}

.footer {
  color: #ffffff;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.footer__logo {
  flex-shrink: 0;
  margin-right: 120px;
}

.footer__container,
.footer__grid,
.footer__nav ul,
.footer__controls {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__container {
  display: flex;
  padding: 22px 55px;
  justify-content: space-between;
}

.footer__grid {
  justify-content: space-between;
  width: 100%;
  padding-bottom: 15px;
}

.footer__controls .control {
  margin-right: 30px;
}

.footer__nav ul li {
  margin-right: 36px;
}
.footer__nav ul li a {
  color: #ffffff;
}

.email {
  color: #09e8f3;
}

.phone {
  color: #ffffff;
  font-size: 20px;
}
.headline-slider {
  margin-top: -140px;
  position: relative;
}
.headline-slider .splide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.headline-slider .headline {
  position: absolute;
  bottom: 200px;
  left: 135px;
}
.headline-slider .headline p {
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #ffffff;
  opacity: 0.8;
}

.colorful {
  font-weight: 800;
  font-size: 55px;
  line-height: 100%;
  text-align: center;
  background: linear-gradient(108.31deg, #ee85ff 22.73%, #47e6f0 46.01%, #ee85ff 71.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 30px;
}

.section1 {
  background: url("/images/bg/bg1.png");
  background-size: cover;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.04em;
  padding: 190px 0 160px;
  color: rgba(255, 255, 255, 0.8);
}
.section1 p {
  margin-bottom: 35px;
}

.section2 h2,
.section3 h2,
.section4 h2 {
  font-size: 70px;
  font-style: normal;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: -0.02em;
  margin-bottom: 33px;
  color: #ffffff;
}

.section2 {
  background: url("/images/bg/bg2.png");
  background-size: cover;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
  color: #ffffff;
  padding: 166px 0 180px;
  padding-left: 135px;
}
.section2 .section2__wraper {
  display: flex;
  flex-direction: column;
  width: 35%;
}
.section2 .section2__item {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(13.5px);
  backdrop-filter: blur(13.5px);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  margin-bottom: 20px;
}
.section2 .section2__item .item__main-amg {
  flex-shrink: 0;
}
.section2 .section2__item .item__content {
  width: 100%;
  padding: 20px;
}
.section2 .section2__item .item__imgs {
  margin-top: 16px;
  display: flex;
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.section3 {
  background: url("/images/bg/bg3.png");
  background-size: cover;
  color: rgba(255, 255, 255, 0.8);
  line-height: 140%;
  letter-spacing: 0.04em;
  padding: 180px 0 150px;
  overflow: hidden;
}
.section3 .container {
  max-width: 1850px;
}
.section3 .section3__ls {
  width: 40%;
  padding: 0 20px 0 60px;
}
.section3 .section3__rs {
  width: 60%;
}
.section3 .section3__rs .splide__arrows {
  display: none;
}
.section3 .section3__block1,
.section3 .section3__block2 {
  display: flex;
  margin-bottom: 150px;
}
.section3 .section3__cotrols {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-right: 70px;
}
.section3 .outsidearrows {
  position: relative;
  display: block;
  width: 100px;
}
.section3 .outsidearrows .splide__arrow--next {
  right: 0 !important;
  bottom: calc(50% - 42px) !important;
  top: auto !important;
}
.section3 .outsidearrows .splide__arrow--prev {
  top: auto;
  bottom: calc(50% - 19px) !important;
  top: auto !important;
  left: 0 !important;
}
.section3 .section3__item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(13.5px);
  backdrop-filter: blur(13.5px);
  border-radius: 20px;
  text-align: center;
  margin: 0 10px;
  height: 100%;
}
.section3 .section3__item img {
  width: 100%;
  margin-bottom: 30px;
}
.section3 .section3__item p {
  font-weight: 600;
  font-size: 22px;
  line-height: 125.5%;
  letter-spacing: 0.02em;
}
.section3 .section3__block2 .section3__ls {
  margin-left: -100px;
  padding: 0;
  flex-shrink: 0;
  width: auto;
}
.section3 .section3__block2 .section3__rs {
  width: auto;
  padding: 0 120px;
}
.section3 .section3__block2 .colorful {
  text-align: left;
}
.section3 .section3__block2 .block2__content {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  font-size: 20px;
  line-height: 140%;
  /* or 28px */
  letter-spacing: 0.04em;
}
.section3 .section3__block2 .block2__content img {
  flex-shrink: 0;
  margin-right: 50px;
}
.section3 .section3__block2 .block2__content .tags {
  margin-top: 80px;
  display: flex;
}
.section3 .section3__block2 .block2__content .tag {
  display: block;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(13.5px);
  backdrop-filter: blur(13.5px);
  border-radius: 20px;
  padding: 15px 20px 10px;
  color: #09e8f3;
  margin-right: 18px;
  transition-duration: 0.2s;
}
.section3 .section3__block2 .block2__content .tag:hover {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
.section3 .section3__block2 .block2__content .tag.phone {
  font-weight: 800;
  font-size: 30px;
  padding: 15px 20px;
}

.section4 {
  background: url("/images/bg/bg4.png");
  background-size: cover;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.section4 h2 {
  z-index: 1;
  position: relative;
}
.section4 .container {
  max-width: 1650px;
}
.section4 .section4__grid {
  display: flex;
}
.section4 .section4__wraper {
  z-index: 1;
  position: relative;
}
.section4 .section4__item {
  display: flex;
  background: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(13.5px);
  backdrop-filter: blur(13.5px);
  border-radius: 20px;
  padding: 42px 34px;
  margin-bottom: 20px;
}
.section4 .section4__item .itme__num {
  font-weight: 800;
  font-size: 60px;
  line-height: 58px;
  color: #09e8f3;
  position: relative;
  margin-right: 40px;
}
.section4 .section4__item .itme__num::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: url("/images/utility/fu.png");
  background-size: cover;
  left: calc(50% - 100px);
  top: -81px;
}
.section4 .section4__item .item__text {
  color: #ffffff;
  font-size: 26px;
}
.section4 .section4__item .item__text p {
  margin-bottom: 20px;
}
.section4 .section4__item .item__text ul li {
  font-size: 26px;
  font-weight: 300;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 25px;
}
.section4 .section4__item .item__text ul li::before {
  content: "";
  width: 20px;
  height: 1px;
  position: absolute;
  background: #09e8f3;
  top: 12px;
  left: 0px;
}
.section4 .section4__rs {
  position: absolute;
  right: 55px;
  bottom: 90px;
  height: 80%;
  width: calc(45% - 55px);
}
.section4 .section4__rs img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
}
.section4 .section4__ls {
  width: calc(50% - 55px);
}

.map {
  position: relative;
  min-height: 600px;
}
.map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
}
.map .map__data {
  position: absolute;
  left: 33.5%;
  top: 20%;
  width: 33%;
  background: linear-gradient(133.99deg, #433254 19.75%, #111b28 70.84%);
  border: 1px solid #50e1f1;
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  border-radius: 20px;
  padding: 72px 45px;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map .map__data p {
  margin-bottom: 40px;
  text-align: center;
  line-height: 150%;
  text-align: center;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
.map .map__data .map__phone,
.map .map__data .map__email {
  color: #09e8f3;
  font-size: 22px;
}
.map .map__data .map__phone {
  font-size: 30px;
  margin-bottom: 12px;
  font-weight: 800;
}

.splide__arrow--prev,
.splide__arrow--next {
  background: none !important;
  width: 48px !important;
  height: 48px !important;
}
.splide__arrow--prev:hover,
.splide__arrow--next:hover {
  border: none !important;
  background: none !important;
}

.splide__arrow--next {
  top: 50% !important;
  right: -20px !important;
}

.splide__arrow--prev {
  top: calc(50% - 19px) !important;
  transform: scale(-1, 1) !important;
  left: -20px !important;
}

@media (min-width: 395px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 769px) {
  .container {
    max-width: 700px;
  }
}

@media (min-width: 1160px) {
  .container {
    max-width: 968px;
  }
}

@media (min-width: 1450px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1700px) {
  .container {
    max-width: 1400px;
  }
}

@media (max-width: 1700px) {
  .email {
    display: none;
  }
  .email {
    display: none;
  }
  .section3 .section3__block2 {
    flex-direction: column;
    align-items: center;
  }
  .section3 .section3__block2 .section3__ls {
    display: none;
  }
  .section3 .section3__block2 .section3__rs {
    width: 100%;
    padding: 0 50px;
  }
}

@media (max-width: 1450px) {
  .row-3 {
    flex-direction: column;
  }
  .row-3 .col {
    width: 100%;
  }
  h1 {
    font-size: 70px;
  }
  .header__container {
    padding: 22px 15px;
  }
  .phone {
    display: none;
  }
  .footer__container {
    padding: 22px 15px;
  }
  .phone {
    display: none;
  }
  .headline-slider .headline {
    bottom: 100px;
    left: 50px;
  }
  .section2 .section2__wraper {
    width: 50%;
  }
  .section3 .section3__ls {
    padding: 0 50px 40px;
    width: 100%;
  }
  .section3 .section3__rs {
    padding: 0 50px 40px;
    width: 100%;
  }
  .section3 .section3__block1,
.section3 .section3__block2 {
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
  }
}

@media (max-width: 1366px) {
  .application-form {
    min-width: 340px;
  }
}

@media (max-width: 1200px) {
  .application-form > p {
    margin-bottom: 20px;
  }
  .toup {
    right: calc(50% - 30px);
    bottom: 50px;
  }
}

@media (max-width: 1160px) {
  .container {
    padding: 0 20px;
  }
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 55px;
  }
  .lang .lang__list li a {
    font-size: 18px;
  }
  .lang:hover .lang__title {
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 9.5px 10px;
    border: 1px white solid;
    border-bottom: none;
  }
  .lang:hover .lang__list {
    border: 1px white solid;
    border-top: none;
    left: 0;
    top: calc(100% - 5px);
    padding-top: 0;
    border-radius: 0 0 0.5rem 0.5rem;
  }
  .lang:hover .lang__list li {
    padding: 0px 9px 0px 0;
    margin-bottom: 0;
    margin-left: -5px;
    margin-top: 5px;
  }
  .lang .lang__title,
.lang .lang__list {
    background: black;
    padding: 10px;
  }
  .burger-btn {
    display: block;
  }
  .header__grid,
.header__controls,
.header__nav ul {
    flex-direction: column;
  }
  .header__grid li,
.header__controls li,
.header__nav ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .header__grid li a,
.header__controls li a,
.header__nav ul li a {
    font-size: 32px;
  }
  .header__grid {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: black;
    height: 100vh;
    transition-duration: 0.15s;
    transform: translateY(-100%);
    justify-content: center;
  }
  .header__controls .control {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .header.active .header__grid {
    transform: translateY(0);
  }
  .phone,
.email {
    display: block;
    font-size: 24px;
  }
  .footer .lang {
    display: none;
  }
  .footer .phone,
.footer .email {
    display: block;
  }
  .footer__logo,
.footer__nav ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .footer__container,
.footer__grid,
.footer__controls,
.footer__nav ul {
    flex-direction: column;
  }
  .footer__controls .control {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .headline-slider .splide__slide {
    min-height: 500px;
  }
  .headline-slider .headline {
    width: calc(100% - 40px);
    bottom: 20px;
    left: 20px;
  }
  .colorful {
    font-size: 55px;
  }
  .section2 h2,
.section3 h2,
.section4 h2 {
    font-size: 55px;
  }
  .section2 {
    text-align: center;
  }
  .section2 .section2__wraper {
    width: 100%;
  }
  .section2 .section2__item .item__imgs {
    justify-content: center;
    align-items: center;
  }
  .section3 .section3__ls {
    padding: 10px 10px;
  }
  .section3 .section3__rs {
    padding: 10px 0;
  }
  .section3 .section3__block2 .section3__rs {
    padding: 0 10px;
  }
  .section3 .section3__block2 .block2__content img {
    display: none;
  }
  .section3 .section3__block2 .block2__content .tags {
    flex-wrap: wrap;
    margin-top: 20px;
  }
  .section3 .section3__block2 .block2__content .tag {
    margin-bottom: 18px;
  }
  .section3 .section3__block2 .block2__content {
    margin-top: 20px;
  }
  .section3 .section3__block2 .block2__content div {
    width: 100%;
  }
  .section4 .container {
    padding: 0;
  }
  .section4 .section4__rs {
    display: none;
  }
  .section4 .section4__ls {
    width: 100%;
  }
  .section1,
.section2,
.section3,
.section4 {
    padding: 40px 20px;
  }
  .map {
    min-height: 300px;
  }
  .map .map__data p {
    margin-bottom: 10px;
  }
  .map .map__data .map__phone,
.map .map__data .map__email {
    font-size: 18px;
  }
  .map .map__data .map__phone {
    font-size: 18px;
  }
  .map .map__data {
    font-size: 18px;
    top: 10%;
    width: 90%;
    left: 5%;
    padding: 25px 15px;
  }
}

@media (max-width: 1024px) {
  .form__container {
    height: auto;
  }
}

@media (max-width: 769px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 32px;
  }
  ._popup {
    padding: 100px 0 50px;
  }
  .colorful {
    font-size: 32px;
  }
  .section2 h2,
.section3 h2,
.section4 h2 {
    font-size: 32px;
    line-height: 100%;
  }
  .section2 .section2__item .item__content {
    padding: 10px 0;
  }
  .section2 .section2__item .item__imgs {
    flex-direction: column;
    align-items: center;
  }
  .section2 .section2__item .item__imgs img {
    margin-right: 0;
  }
  .section2 .section2__item .item__imgs img:last-child {
    margin-bottom: 0;
  }
  .section2 .section2__item {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }
  .section3 .container {
    padding: 0;
  }
  .section3 .section3__rs .splide__arrows {
    display: block;
  }
  .section3 .section3__cotrols {
    flex-direction: column;
    padding-right: 0;
    margin-top: 20px;
  }
  .section3 .section3__cotrols .btn {
    width: 100%;
  }
  .section3 .outsidearrows {
    display: none;
  }
  .section3 .section3__block2 {
    margin-bottom: 0;
  }
  .section3 .section3__block2 .block2__content .tag.phone, .section3 .section3__block2 .block2__content .tag.email {
    font-size: 18px;
  }
}

@media (max-width: 766px) {
  .form__container {
    padding-right: 31px;
    padding-left: 31px;
  }
}

@media (max-height: 750px) {
  ._popup {
    align-items: flex-start;
  }
}

@media (max-width: 598px) {
  .form__title {
    font-size: 33px;
  }
}

@media (max-width: 495px) {
  .section4 .section4__item {
    flex-direction: column;
  }
  .section4 .section4__item .itme__num::after {
    left: calc(50% - 180px);
  }
}

@media (max-width: 395px) {
  .container {
    max-width: 100%;
  }
  ._popup ._popup__content {
    width: 100%;
    height: 100%;
  }
}
