* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "RoobertPRO", Verdana, Geneva, Tahoma, sans-serif;
  color: #000;
}

a {
  text-decoration: none;
}

h2 {
  color: #fff;
  font-size: 100px;
  font-weight: 500;
  line-height: 105%;
  text-align: center;
}
@media screen and (max-width: 1252px) {
  h2 {
    font-size: 72px;
  }
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 56px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 40px;
  }
}

body {
  background: #1E1E1E;
}

.wrapper {
  max-width: 1495px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 560px) {
  .nav {
    transition: all 0.3s ease;
  }
}
.nav .wrapper {
  padding-top: 32px;
  padding-left: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .nav .wrapper {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .nav .wrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.nav__burger {
  display: none;
  cursor: pointer;
  width: 31px;
}
@media screen and (max-width: 1024px) {
  .nav__burger {
    display: flex;
    z-index: 31;
  }
}
.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .nav__menu {
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    z-index: 30;
    background: #1E1E1E;
    flex-direction: column;
    transition: all 0.3s ease;
  }
}
.nav__menu_item {
  list-style-type: none;
}
.nav__menu_item a {
  text-decoration: none;
  font-size: 19px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .nav__menu_item a {
    text-align: center;
    font-size: 40px;
    font-weight: 400;
  }
}
.nav__menu_item a span {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.nav__menu_item a:hover {
  color: #30F;
}
.nav__menu_item a:hover span {
  color: #30F;
}
.nav__menu_item + * {
  margin-left: 18px;
}
@media screen and (max-width: 1024px) {
  .nav__menu_item + * {
    margin-left: 0;
    margin-top: 10px;
  }
}
.nav__button {
  background: #EBFF00;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  position: absolute;
  top: 50%;
  right: 20px;
  overflow: hidden;
  padding: 0 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav__button {
    border-radius: 12px;
    position: relative;
    top: unset;
    right: unset;
    margin-left: 20px;
  }
}
@media screen and (max-width: 560px) {
  .nav__button {
    margin-left: auto;
    z-index: 31;
  }
}
.nav__button_title {
  transition: all 0.3s ease;
}
.nav__button_video {
  margin-left: -20px;
  margin-right: -20px;
  width: 75px;
  transform: translateY(10px) rotate(-15deg);
  pointer-events: none;
}
.nav__button:hover {
  background: #30F;
}
.nav__button:hover * {
  color: #fff;
}
@media screen and (max-width: 560px) {
  .nav.openned .nav__menu {
    opacity: 1;
    pointer-events: auto;
  }
}

.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75vh;
}
@media screen and (max-width: 560px) {
  .header .wrapper {
    height: unset;
    padding: 100px 0;
  }
}
.header__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 55%;
}
@media screen and (max-width: 560px) {
  .header__block {
    width: 70%;
  }
}
.header__block_logo {
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (max-width: 560px) {
  .header__block_logo {
    margin-bottom: 4px;
  }
}
.header__block_ttl {
  color: #fff;
  font-size: 86px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 1252px) {
  .header__block_ttl {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .header__block_ttl {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .header__block_ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 560px) {
  .header__block_ttl {
    font-size: 35px;
  }
}
.header__block_text {
  color: #fff;
  font-size: 56px;
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}
@media screen and (max-width: 1252px) {
  .header__block_text {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .header__block_text {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .header__block_text {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .header__block_text {
    font-size: 18px;
  }
}

.about .wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 560px) {
  .about .wrapper {
    flex-direction: column;
    justify-content: unset;
  }
}
.about__card {
  border-radius: 54px;
  background: #fff;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1252px) {
  .about__card {
    padding: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .about__card {
    padding: 24px;
  }
}
@media screen and (max-width: 768px) {
  .about__card {
    padding: 20px;
    border-radius: 28px;
  }
}
@media screen and (max-width: 560px) {
  .about__card {
    padding: 24px 12px;
    border-radius: 24px;
  }
}
.about__card_title {
  width: 90%;
  font-size: 54px;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 1252px) {
  .about__card_title {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .about__card_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .about__card_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .about__card_title {
    font-size: 25px;
    width: 100%;
    margin-bottom: 10px;
  }
}
.about__card_desc {
  font-size: 32px;
  line-height: 140%;
  width: 80%;
  margin-bottom: 20px;
}
@media screen and (max-width: 1252px) {
  .about__card_desc {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .about__card_desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .about__card_desc {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .about__card_desc {
    margin-bottom: 48px;
    line-height: 110%;
    opacity: 0.8;
  }
}
.about__card_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}
.about__card_buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
}
.about__card_buttons .about__button {
  border-radius: 28px;
  background: #000;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 166%;
  height: 78px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1252px) {
  .about__card_buttons .about__button {
    font-size: 24px;
    height: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .about__card_buttons .about__button {
    font-size: 18px;
    height: 48px;
  }
}
@media screen and (max-width: 768px) {
  .about__card_buttons .about__button {
    border-radius: 20px;
    font-size: 16px;
    height: 32px;
    margin-right: 4px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 560px) {
  .about__card_buttons .about__button {
    font-size: 19px;
    height: 20px;
    border-radius: 16px;
    padding: 20px;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.about__card_buttons .about__button--yellow {
  background: #EBFF00;
  color: #000;
}
.about__card_buttons .about__button:hover {
  background: #30F;
  color: #fff;
}
.about__card--big {
  flex: 1;
  margin-right: 16px;
}
@media screen and (max-width: 560px) {
  .about__card--big {
    margin-right: 0;
  }
}
.about__card--small {
  width: 25%;
  aspect-ratio: 0.4675159236;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 20px;
}
@media screen and (max-width: 1024px) {
  .about__card--small {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about__card--small {
    padding: 12px;
  }
}
@media screen and (max-width: 560px) {
  .about__card--small {
    padding: 4px;
    width: 100%;
    justify-content: center;
    align-items: center;
    display: none !important;
  }
}
.about__card--small .about__button {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 166%;
  text-align: center;
  padding: 12px 40px;
  padding-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  margin-top: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1252px) {
  .about__card--small .about__button {
    font-size: 24px;
    padding: 8px 24px;
    border-radius: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .about__card--small .about__button {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .about__card--small .about__button {
    font-size: 14px;
    padding: 6px 4px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 560px) {
  .about__card--small .about__button {
    font-size: 30px;
    padding: 20px;
    border-radius: 24px;
    width: -moz-fit-content;
    width: fit-content;
    border-width: 2px;
    margin-top: 0;
  }
}
.about__card--small .about__button:hover {
  background: #30F;
}

.advantages {
  padding-top: 320px;
}
@media screen and (max-width: 1252px) {
  .advantages {
    padding-top: 220px;
  }
}
@media screen and (max-width: 1024px) {
  .advantages {
    padding-top: 130px;
  }
}
@media screen and (max-width: 560px) {
  .advantages {
    padding-top: 80px;
  }
}
.advantages .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.advantages__title {
  width: 75%;
  margin: 0 auto;
  padding-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .advantages__title {
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 560px) {
  .advantages__title {
    padding-bottom: 44px;
    width: 100%;
  }
}
.advantages__item {
  display: flex;
  flex-direction: column;
  width: calc(50% - 9px);
  padding: 32px;
  border-radius: 54px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 1252px) {
  .advantages__item {
    padding: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .advantages__item {
    padding: 18px;
    border-radius: 28px;
    width: calc(50% - 5px);
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 560px) {
  .advantages__item {
    padding: 18px;
    border-radius: 24px;
    width: 100%;
    margin-bottom: 16px;
  }
}
.advantages__item_title {
  color: #000;
  font-size: 80px;
  margin-bottom: 4px;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (max-width: 1252px) {
  .advantages__item_title {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .advantages__item_title {
    font-size: 28px;
  }
}
@media screen and (max-width: 560px) {
  .advantages__item_title {
    font-size: 40px;
  }
}
.advantages__item_desc {
  color: #000;
  font-size: 32px;
  line-height: 120%;
}
@media screen and (max-width: 1024px) {
  .advantages__item_desc {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .advantages__item_desc {
    font-size: 18px;
  }
}
@media screen and (max-width: 560px) {
  .advantages__item_desc {
    font-size: 16px;
  }
}
.advantages__item--white {
  background: #fff;
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1.82;
}
.advantages__item--white .advantages__item_title {
  font-size: 180px;
  letter-spacing: -8.4px;
  margin-top: -16px;
}
@media screen and (max-width: 1252px) {
  .advantages__item--white .advantages__item_title {
    font-size: 132px;
  }
}
@media screen and (max-width: 1024px) {
  .advantages__item--white .advantages__item_title {
    font-size: 56px;
    margin-top: -12px;
    letter-spacing: -3px;
  }
}
@media screen and (max-width: 560px) {
  .advantages__item--white .advantages__item_title {
    font-size: 48px;
    margin-top: 0;
    letter-spacing: -2.6px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.advantages__item--white .advantages__item_desc {
  font-size: 80px;
  line-height: 86%;
}
@media screen and (max-width: 1252px) {
  .advantages__item--white .advantages__item_desc {
    font-size: 56px;
  }
}
@media screen and (max-width: 1024px) {
  .advantages__item--white .advantages__item_desc {
    font-size: 36px;
  }
}
@media screen and (max-width: 560px) {
  .advantages__item--white .advantages__item_desc {
    font-size: 26px;
  }
}
.advantages__item--whiteMin {
  background: #fff;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(25% - 8px);
}
@media screen and (max-width: 560px) {
  .advantages__item--whiteMin {
    width: calc(50% - 4px);
    aspect-ratio: 0.8817204301;
  }
}
.advantages__item--whiteMin .advantages__item_title {
  margin-bottom: auto;
}
@media screen and (max-width: 560px) {
  .advantages__item--whiteMin .advantages__item_title {
    margin-bottom: 0;
  }
}
.advantages__item--blue {
  background: #30F;
  width: calc(50% - 8px);
}
@media screen and (max-width: 560px) {
  .advantages__item--blue {
    width: calc(100% - 4px);
    aspect-ratio: 0.8817204301;
  }
}
.advantages__item--blue .advantages__item_title {
  color: #fff;
  margin-bottom: auto;
}
@media screen and (max-width: 560px) {
  .advantages__item--blue .advantages__item_title {
    margin-bottom: 0;
  }
}
.advantages__item--blue .advantages__item_desc {
  color: #fff;
}
.advantages__item--yellow {
  background: #EBFF00;
}
@media screen and (max-width: 560px) {
  .advantages__item--yellow {
    aspect-ratio: 1.82;
  }
}
.advantages__item--yellow .advantages__item_title {
  width: 70%;
  margin-bottom: auto;
}
@media screen and (max-width: 560px) {
  .advantages__item--yellow .advantages__item_title {
    width: 60%;
  }
}
.advantages__item--yellow .advantages__item_video {
  position: absolute;
  width: 50%;
  bottom: -15%;
  right: -10%;
}
.advantages__item--grey {
  background: #393939;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1.82;
}
.advantages__item--grey .advantages__item_title {
  color: #fff;
  line-height: 87.5%;
}

.services {
  padding-top: 400px;
}
@media screen and (max-width: 1252px) {
  .services {
    padding-top: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .services {
    padding-top: 140px;
  }
}
@media screen and (max-width: 560px) {
  .services {
    padding-top: 60px;
  }
}
.services .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services .wrapper > * {
  width: 100%;
}
.services .wrapper > .services__list_item--grey {
  display: none !important;
}
@media screen and (max-width: 560px) {
  .services .wrapper > .services__list_item--grey {
    display: flex !important;
  }
}
.services__title {
  margin-bottom: 36px;
}
@media screen and (max-width: 1024px) {
  .services__title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 560px) {
  .services__title {
    margin-bottom: 10px;
  }
}
.services__desc {
  color: #fff;
  font-size: 56px;
  line-height: 110%;
  text-align: center;
  width: 80%;
}
@media screen and (max-width: 1252px) {
  .services__desc {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .services__desc {
    font-size: 28px;
  }
}
@media screen and (max-width: 560px) {
  .services__desc {
    font-size: 16px;
    width: 100%;
  }
}
.services .swiper {
  width: 100%;
}
.services__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 104px;
}
@media screen and (max-width: 1252px) {
  .services__list {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .services__list {
    margin-top: 48px;
  }
}
@media screen and (max-width: 560px) {
  .services__list {
    margin-top: 16px;
  }
}
.services__list_item {
  width: calc(33.333% - 16px);
  border-radius: 35.2px;
  padding: 24px 32px;
  position: relative;
  aspect-ratio: 2.1333333333;
  margin-bottom: 18px;
  overflow: hidden;
}
@media screen and (max-width: 1252px) {
  .services__list_item {
    width: calc(33.333% - 8px);
    margin-bottom: 12px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .services__list_item {
    padding: 12px 16px;
  }
}
@media screen and (max-width: 768px) {
  .services__list_item {
    padding: 8px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 560px) {
  .services__list_item {
    width: 100%;
    aspect-ratio: 1.8988764045;
    margin-bottom: 16px;
    padding: 22px;
    border-radius: 24px;
  }
}
.services__list_item p {
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
}
@media screen and (max-width: 1252px) {
  .services__list_item p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .services__list_item p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .services__list_item p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .services__list_item p {
    font-size: 28px;
  }
}
.services__list_item video {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 80%;
  z-index: 2;
}
.services__list_item--white {
  background: #fff;
}
.services__list_item--white img {
  position: absolute;
  top: -10%;
  right: 0;
  width: 60%;
}
.services__list_item--blue, .services__list_item--blue2 {
  background: #30F;
}
.services__list_item--blue p, .services__list_item--blue2 p {
  color: #fff;
}
.services__list_item--blue video, .services__list_item--blue2 video {
  transform: rotate(15deg);
  width: 60%;
  top: 10%;
}
.services__list_item--blue2 video {
  transform: rotate(0deg);
}
.services__list_item--yellow video {
  right: -14%;
}
.services__list_item--yellow, .services__list_item--yellow2 {
  background: #EBFF00;
}
.services__list_item--yellow video, .services__list_item--yellow2 video {
  top: 0;
}
.services__list_item--pink, .services__list_item--pink2 {
  background: #F468D5;
}
.services__list_item--pink p, .services__list_item--pink2 p {
  color: #fff;
}
.services__list_item--pink video, .services__list_item--pink2 video {
  width: 60%;
  transform: scaleX(-1);
  top: 10%;
}
.services__list_item--pink2 video, .services__list_item--yellow2 video {
  width: 40%;
  transform: scaleX(-1);
  right: 5%;
  top: 10%;
}
.services__list_item--hidden {
  display: none;
}
@media screen and (max-width: 560px) {
  .services__list_item--hidden {
    display: flex;
  }
}
.services__list_item--grey {
  background-color: #1E1E1E;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 560px) {
  .services__list_item--grey {
    aspect-ratio: unset;
  }
}
.services__list_item--grey p {
  color: #fff;
  margin-bottom: auto;
  width: 80%;
  font-size: 24px;
}
@media screen and (max-width: 1352px) {
  .services__list_item--grey p {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .services__list_item--grey p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .services__list_item--grey p {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .services__list_item--grey p {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.services__list_item--grey img {
  position: absolute;
  top: 0;
  right: -10%;
  width: 50%;
}
.services__list_item--grey a {
  color: #1E1E1E;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 24px;
  transition: all 0.3s ease;
  margin-top: auto;
  font-size: 19px;
}
@media screen and (max-width: 1252px) {
  .services__list_item--grey a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .services__list_item--grey a {
    font-size: 20px;
    padding: 4px 16px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 560px) {
  .services__list_item--grey a {
    border-radius: 16px;
    color: #fff;
    background: #30F;
    padding: 12px 32px;
  }
}
.services__list_item--grey a:hover {
  background: #30F;
  color: #fff;
}

.choose__title {
  margin-bottom: 76px;
}
@media screen and (max-width: 1024px) {
  .choose__title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .choose__title {
    margin-bottom: 28px;
  }
}

.customersText {
  padding-top: 336px;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 1252px) {
  .customersText {
    padding-top: 240px;
  }
}
@media screen and (max-width: 1024px) {
  .customersText {
    padding-top: 140px;
  }
}
@media screen and (max-width: 768px) {
  .customersText {
    padding-top: 60px;
  }
}
.customersText__title {
  margin-bottom: 76px;
}
@media screen and (max-width: 1252px) {
  .customersText__title {
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 1024px) {
  .customersText__title {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .customersText__title {
    margin-bottom: 24px;
  }
}
.customersText .wrapper {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
  max-width: 1380px;
}
.customersText .wrapper > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 100% !important;
}
.customersText .wrapper > div > div {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.customersText .wrapper > div > div > video {
  position: absolute;
}
.customersText__paragraph, .customersText > p {
  color: #fff;
  font-size: 90px;
  line-height: 180%;
  text-align: center;
}
@media screen and (max-width: 1252px) {
  .customersText__paragraph, .customersText > p {
    font-size: 64px;
  }
}
@media screen and (max-width: 1024px) {
  .customersText__paragraph, .customersText > p {
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  .customersText__paragraph, .customersText > p {
    font-size: 36px;
  }
}
@media screen and (max-width: 560px) {
  .customersText__paragraph, .customersText > p {
    font-size: 24px;
    line-height: 180%;
  }
}
.customersText__paragraph span, .customersText__paragraph > div, .customersText > p span, .customersText > p > div {
  color: #1E1E1E;
  background: #fff;
  border-radius: 28px;
  padding: 16px 28px;
  white-space: nowrap;
  margin-left: 0px;
  margin-right: 0px;
}
@media screen and (max-width: 1024px) {
  .customersText__paragraph span, .customersText__paragraph > div, .customersText > p span, .customersText > p > div {
    padding: 8px 20px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .customersText__paragraph span, .customersText__paragraph > div, .customersText > p span, .customersText > p > div {
    padding: 4px 16px;
    border-radius: 12px;
  }
}
@media screen and (max-width: 560px) {
  .customersText__paragraph span, .customersText__paragraph > div, .customersText > p span, .customersText > p > div {
    padding: 4px 10px;
    border-radius: 6px;
    margin-right: 0px;
    margin-left: 0px;
  }
}
.customersText__img {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.customersText__img--topLeft {
  width: 39.64%;
  right: 14.1%;
  top: -12.1%;
}
@media screen and (max-width: 1752px) {
  .customersText__img--topLeft {
    right: 0%;
  }
}
@media screen and (max-width: 1024px) {
  .customersText__img--topLeft {
    top: -32.1%;
  }
}
@media screen and (max-width: 560px) {
  .customersText__img--topLeft {
    top: -10.1%;
  }
}
.customersText__img--topRight {
  width: 30.58%;
  right: -16.13%;
  bottom: 11.84%;
  z-index: 2;
}
@media screen and (max-width: 1752px) {
  .customersText__img--topRight {
    right: -10.13%;
  }
}
@media screen and (max-width: 1372px) {
  .customersText__img--topRight {
    right: -2.13%;
  }
}
@media screen and (max-width: 1024px) {
  .customersText__img--topRight {
    bottom: 34.84%;
  }
}
@media screen and (max-width: 560px) {
  .customersText__img--topRight {
    bottom: -47.16%;
  }
}
.customersText__img--bottomLeft {
  width: 19.13%;
  left: -10%;
  bottom: 10%;
  transform: matrix(-0.93, 0.37, 0.37, 0.93, 0, 0);
}
@media screen and (max-width: 1752px) {
  .customersText__img--bottomLeft {
    left: -10%;
  }
}
@media screen and (max-width: 1024px) {
  .customersText__img--bottomLeft {
    left: 0%;
  }
}
@media screen and (max-width: 560px) {
  .customersText__img--bottomLeft {
    bottom: 77%;
    left: 8%;
  }
}

.form {
  padding-top: 330px;
}
@media screen and (max-width: 1252px) {
  .form {
    padding-top: 200px;
  }
}
@media screen and (max-width: 768px) {
  .form {
    padding-top: 60px;
  }
}
.form__title {
  margin-bottom: 80px;
}
@media screen and (max-width: 1252px) {
  .form__title {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .form__title {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .form__title {
    margin-bottom: 28px;
  }
}
.form .formBlock {
  padding: 70px 20px;
  padding-bottom: 48px;
  background: #EBFF00;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 52px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .form .formBlock {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 768px) {
  .form .formBlock {
    padding: 32px 20px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 560px) {
  .form .formBlock {
    border-radius: 16px;
  }
}
.form .formBlock__desc {
  margin-bottom: 100px;
  text-align: center;
  color: #1E1E1E;
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  width: 50%;
}
@media screen and (max-width: 1252px) {
  .form .formBlock__desc {
    font-size: 24px;
    margin-bottom: 52px;
  }
}
@media screen and (max-width: 768px) {
  .form .formBlock__desc {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 560px) {
  .form .formBlock__desc {
    width: 90%;
  }
}
.form .formBlock__wrapper {
  max-width: 480px;
}
.form .formBlock__wrapper button {
  height: 72px;
  background: #30F;
  color: #fff;
  border-radius: 16px;
  font-size: 32px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 560px) {
  .form .formBlock__wrapper button {
    font-size: 24px;
    border-radius: 8px;
    height: 40px;
  }
}
.form .formBlock__wrapper button:hover {
  background: #1E1E1E;
}
.form .formBlock__wrapper_checkbox {
  display: flex;
}
.form .formBlock__wrapper_checkbox input {
  display: none;
}
.form .formBlock__wrapper_checkbox input + div {
  cursor: pointer;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: 5px solid #EBFF00;
  outline: 1px solid rgba(30, 30, 30, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
}
.form .formBlock__wrapper_checkbox input:checked + div {
  background: #1E1E1E;
}
.form .formBlock__wrapper_checkbox p {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 125%;
}
@media screen and (max-width: 560px) {
  .form .formBlock__wrapper_checkbox p {
    font-size: 14px;
  }
}
.form .formBlock__wrapper_checkbox p a {
  font-weight: 500;
  color: #30F;
  transition: all 0.3s ease;
}
.form .formBlock__wrapper_checkbox p a:hover {
  color: #1E1E1E;
  text-decoration: underline;
}
.form .formBlock__wrapper > * {
  width: 100%;
}
.form .formBlock__wrapper > * + * {
  margin-top: 10px;
}
.form .formBlock__wrapper input,
.form .formBlock__wrapper textarea {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 78px;
  padding: 8px 30px;
  font-size: 32px;
  letter-spacing: -0.64px;
}
@media screen and (max-width: 1252px) {
  .form .formBlock__wrapper input,
  .form .formBlock__wrapper textarea {
    height: 60px;
    font-size: 24px;
  }
}
@media screen and (max-width: 560px) {
  .form .formBlock__wrapper input,
  .form .formBlock__wrapper textarea {
    height: 36px;
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 6px;
  }
}
.form .formBlock__wrapper textarea {
  min-height: 156px;
}
.form .formBlock__wrapper input::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper textarea::-webkit-input-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper input::-moz-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper textarea::-moz-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper input:-moz-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper textarea:-moz-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper input:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.3);
}
.form .formBlock__wrapper textarea:-ms-input-placeholder {
  color: rgba(30, 30, 30, 0.3);
}

.tender {
  margin-top: 20px;
}
@media screen and (max-width: 560px) {
  .tender {
    margin-top: 14px;
  }
}
.tender .wrapper {
  padding: 0;
}
.tender__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 52px;
  padding: 96px 20px;
}
@media screen and (max-width: 1024px) {
  .tender__block {
    border-radius: 28px;
    padding: 76px 16px;
  }
}
@media screen and (max-width: 768px) {
  .tender__block {
    border-radius: 20px;
    padding: 52px 12px;
  }
}
@media screen and (max-width: 560px) {
  .tender__block {
    border-radius: 14px;
    padding: 32px 8px;
  }
}
.tender__block > * {
  text-align: center;
  color: #fff;
  font-size: 64px;
  font-weight: 500;
  line-height: 137%;
}
@media screen and (max-width: 1152px) {
  .tender__block > * {
    font-size: 48px;
  }
}
@media screen and (max-width: 1024px) {
  .tender__block > * {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .tender__block > * {
    font-size: 28px;
  }
}
@media screen and (max-width: 560px) {
  .tender__block > * {
    font-size: 18px;
  }
}
.tender__title {
  margin-bottom: 4px;
}
@media screen and (max-width: 560px) {
  .tender__title {
    margin-bottom: 0;
  }
}
.tender__desc {
  font-size: 32px;
  line-height: 120%;
  margin-bottom: 20px;
  font-weight: 400;
}
@media screen and (max-width: 1152px) {
  .tender__desc {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .tender__desc {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .tender__desc {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 560px) {
  .tender__desc {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.tender__mail {
  color: #EBFF00;
  transition: all 0.3s ease;
}
.tender__mail:hover {
  color: #30F;
}

.footer {
  overflow: hidden;
}
.footer .wrapper {
  display: flex;
  align-items: stretch;
  justify-content: start;
  padding: 0;
  gap: 20px;
}
.footer__miniTitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 165%;
  color: #1E1E1E;
  margin-bottom: 17px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .footer__miniTitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 560px) {
  .footer__miniTitle {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.footer__moreLink {
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
  color: #fff;
  transition: all 0.3s ease;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .footer__moreLink {
    font-size: 44px;
  }
}
@media screen and (max-width: 560px) {
  .footer__moreLink {
    font-size: 40px;
    line-height: 120%;
  }
}
.footer__moreLink:hover {
  color: #30F;
}
.footer__moreLink + .footer__moreLink {
  margin-top: 17px;
}
@media screen and (max-width: 560px) {
  .footer__moreLink + .footer__moreLink {
    margin-top: 10px;
  }
}
.footer__card {
  width: calc(33.3333333333% - 13px);
  aspect-ratio: 1/1;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .footer__card {
    width: calc(33.3333333333% - 7px);
  }
}
@media screen and (max-width: 560px) {
  .footer__card {
    width: calc(50% - 7px);
    order: 1;
    border-radius: 20px;
  }
}
.footer__card--mail, .footer__card--linked {
  background: #fff;
  color: #1E1E1E;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  overflow: hidden;
  order: 2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
@media screen and (max-width: 768px) {
  .footer__card--mail, .footer__card--linked {
    font-size: 20px;
  }
}
@media screen and (max-width: 560px) {
  .footer__card--mail, .footer__card--linked {
    height: 49%;
    flex: unset;
    font-size: 20px;
  }
}
.footer__card--linked {
  background: #30F;
  color: #fff;
}
@media screen and (max-width: 560px) {
  .footer__card--linked {
    margin-left: 7px;
  }
}
.footer__video {
  position: relative;
  order: 2;
}
@media screen and (max-width: 560px) {
  .footer__video {
    display: none;
  }
}
.footer__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.footer__video_title {
  font-size: 14px;
  color: #000;
  padding: 6.5px 9px;
  border-radius: 6px;
  background: #fff;
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  max-width: 95%;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width: 560px) {
  .footer__video_title {
    font-size: 12px;
    padding: 6px 7px;
    bottom: 12px;
    display: none;
  }
}

.footerBottom {
  padding-top: 264px;
  padding-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .footerBottom {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
.footerBottom .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerBottom .wrapper > a {
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 133%;
  text-align: center;
}
.footerBottom__info {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.38);
  line-height: 133%;
  text-align: center;
}
.footerBottom__menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footerBottom__menu_item {
  list-style-type: none;
}
.footerBottom__menu_item a {
  text-decoration: none;
  font-size: 19px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
@media screen and (max-width: 560px) {
  .footerBottom__menu_item a {
    font-size: 14px;
  }
}
.footerBottom__menu_item a span {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}
.footerBottom__menu_item a:hover {
  color: #30F;
}
.footerBottom__menu_item a:hover span {
  color: #30F;
}
.footerBottom__menu_item + * {
  margin-left: 18px;
}
@media screen and (max-width: 560px) {
  .footerBottom__menu_item + * {
    margin-left: 8px;
  }
}/*# sourceMappingURL=newLand.css.map */