* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.1;
  background: url("../images/noise.png") #000;
}
body.b-hidden {
  overflow: hidden;
}

.app {
  flex: 1;
}

.container {
  max-width: 376px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}
@media (min-width: 768px) {
  .container {
    padding: 0;
    max-width: 100%;
    width: 91.6666666667vw;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
}

.btn {
  width: 100%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  background: linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 #960800;
}
@media (min-width: 767px) {
  .btn {
    height: 4.4444444444vw;
    font-size: 0.9722222222vw;
  }
}
.btn:hover {
  box-shadow: 0px 4px 4.4px 0px #960800;
}
.btn-small {
  width: 240px;
}
@media (min-width: 767px) {
  .btn-small {
    width: 16.6666666667vw;
  }
}
.btn-white {
  background: #fff;
  color: #000;
}

.through {
  text-decoration: line-through;
}

.color-orange {
  color: #FF5C00;
}

.title {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .title {
    margin-bottom: 0;
    font-size: 3.0555555556vw;
  }
}
.title span {
  background: linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.input,
.textarea {
  width: 100%;
  height: 54px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid #323232;
  margin-bottom: 15px;
  padding: 0 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: #fff;
  outline: none;
  font-size: 14px;
}
@media (min-width: 767px) {
  .input,
  .textarea {
    height: 3.75vw;
    margin-bottom: 1.0416666667vw;
    padding-left: 1.25vw;
    padding-right: 1.25vw;
    font-size: 0.9722222222vw;
  }
}
.input::placeholder,
.textarea::placeholder {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  color: #8E8E8E;
}

.textarea {
  height: 108px;
  margin-bottom: 24px;
  padding: 16px 18px;
  resize: none;
}
@media (min-width: 767px) {
  .textarea {
    margin-bottom: 1.6666666667vw;
    height: 7.5vw;
    padding-top: 1.1111111111vw;
    padding-bottom: 1.1111111111vw;
    padding-left: 1.25vw;
    padding-right: 1.25vw;
  }
}

.header {
  padding-top: 25px;
}
@media (min-width: 767px) {
  .header {
    padding-top: 3.0555555556vw;
  }
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
}
@media (min-width: 767px) {
  .header__logo {
    width: 7.2916666667vw;
  }
}
@media (max-width: 767px) {
  .header__logo {
    order: -2;
  }
}
.header__mobile-menu {
  display: flex;
  width: 32px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
@media (min-width: 767px) {
  .header__mobile-menu {
    display: none;
  }
}
.header__mobile-menu img {
  width: 100%;
  object-fit: contain;
}
.header__menu {
  display: none;
}
@media (min-width: 767px) {
  .header__menu {
    display: flex;
    align-content: center;
    list-style: none;
    gap: 4.1666666667vw;
  }
  .header__menu li a {
    text-decoration: none;
    font-weight: 400;
    font-size: 0.8333333333vw;
    color: #fff;
    transition: color 0.5s ease;
    cursor: pointer;
  }
  .header__menu li a:hover {
    color: #FF5C00;
  }
}
.header__btn {
  display: none;
}
@media (min-width: 767px) {
  .header__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    border: 0;
    cursor: pointer;
    background: linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
    font-family: "Montserrat", sans-serif;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 #960800;
    height: 3.3333333333vw;
    font-size: 0.8333333333vw;
    padding-left: 1.6666666667vw;
    padding-right: 1.6666666667vw;
  }
  .header__btn:hover {
    box-shadow: 0px 4px 4.4px 0px #960800;
  }
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.3888888889vw;
}
@media (max-width: 767px) {
  .header__right {
    order: -1;
    margin-left: auto;
    gap: 0;
    margin-right: 20px;
  }
}
.header__lang {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.8333333333vw;
}
@media (max-width: 767px) {
  .header__lang {
    gap: 6px;
  }
}
.header__lang li a {
  position: relative;
  font-size: 0.8333333333vw;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  text-transform: capitalize;
  text-decoration: none;
}
@media (max-width: 767px) {
  .header__lang li a {
    font-size: 12px;
  }
}
.header__lang li.current-lang a {
  font-weight: bold;
  color: #fff;
  padding-left: 0.4861111111vw;
}
@media (max-width: 767px) {
  .header__lang li.current-lang a {
    padding-left: 7px;
  }
}
.header__lang li.current-lang a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2777777778vw;
  height: 0.2777777778vw;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 767px) {
  .header__lang li.current-lang a:before {
    width: 4px;
    height: 4px;
  }
}

.hero {
  background: url("../images/hero-bg.png") center top/contain no-repeat;
  padding-bottom: 72px;
}
@media (min-width: 767px) {
  .hero {
    background: url("../images/hero-bg-desktop.png") center top/cover;
    padding-bottom: 3.4722222222vw;
  }
}
@media (min-width: 768px) {
  .hero__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 25.9027777778vw;
  }
  .hero__right {
    width: 30.5555555556vw;
  }
  .hero__left {
    padding-bottom: 3.4722222222vw;
  }
}
.hero__list {
  padding-top: 139px;
  margin-bottom: 24px;
  padding-left: 17px;
}
@media (min-width: 767px) {
  .hero__list {
    padding-top: 0;
    margin-bottom: 3.4722222222vw;
    padding-left: 1.1805555556vw;
  }
}
.hero__list li {
  font-weight: 300;
  font-size: 12px;
  color: #8E8E8E;
  line-height: 1.1;
}
@media (min-width: 767px) {
  .hero__list li {
    font-size: 1.1111111111vw;
  }
}
.hero__list li:not(:last-child) {
  margin-bottom: 15px;
}
@media (min-width: 767px) {
  .hero__list li:not(:last-child) {
    margin-bottom: 1.0416666667vw;
  }
}
.hero__list li strong {
  font-weight: 500;
  color: #fff;
}
.hero__list li:last-child {
  font-weight: 500;
  color: #fff;
}
.hero__title {
  line-height: 1;
  font-size: 44px;
}
@media (min-width: 767px) {
  .hero__title {
    font-size: 5vw;
  }
}
.hero__title span {
  display: block;
}
.hero__title span:nth-child(1) {
  text-transform: uppercase;
  font-weight: 500;
}
.hero__title span:nth-child(2) {
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
}
.hero__title span:nth-child(3) {
  font-weight: 100;
  font-size: 38px;
  line-height: 0.6;
  margin-bottom: 28px;
}
@media (min-width: 767px) {
  .hero__title span:nth-child(3) {
    font-size: 4.4444444444vw;
    margin-bottom: 0;
  }
}
.hero__subtitle {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 11px;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .hero__subtitle {
    font-size: 2.2222222222vw;
    margin-bottom: 0.7638888889vw;
  }
}
.hero__desc {
  font-size: 14px;
  font-weight: 300;
  color: #8E8E8E;
  margin-bottom: 64px;
}
@media (min-width: 767px) {
  .hero__desc {
    font-size: 1.25vw;
    margin-bottom: 8.3333333333vw;
  }
}
.hero__btn {
  margin-bottom: 12px;
}
@media (min-width: 767px) {
  .hero__btn {
    margin-bottom: 1.6666666667vw;
  }
}
.hero__messages {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__messages span {
  color: #8E8E8E;
  font-size: 12px;
  font-weight: 300;
}
@media (min-width: 767px) {
  .hero__messages span {
    font-size: 0.9722222222vw;
  }
}
.hero__messages-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 767px) {
  .hero__messages-list {
    gap: 0.6944444444vw;
  }
}
.hero__messages-list li a {
  display: flex;
  color: #fff;
  transition: color 0.5s ease;
}
.hero__messages-list li a:hover {
  color: #FF5C00;
}
.hero__messages-list li a svg {
  width: 24px;
  object-fit: contain;
}
@media (min-width: 767px) {
  .hero__messages-list li a svg {
    font-size: 1.6666666667vw;
  }
}

.beyond-design {
  padding-top: 39px;
  padding-bottom: 56px;
  background: url("../images/bd-blur.png") center right/contain no-repeat;
}
@media (min-width: 767px) {
  .beyond-design {
    padding-top: 7.7083333333vw;
    padding-bottom: 16.3194444444vw;
    background: url("../images/bd-blur-desktop.png") center right/cover;
  }
  .beyond-design__wrap {
    width: 54.8611111111vw;
    margin: 0 auto;
  }
  .beyond-design .container {
    position: relative;
  }
}
.beyond-design__top-tags {
  margin-bottom: 25px;
  color: rgba(142, 142, 142, 0.5);
  font-weight: 300;
}
@media (min-width: 767px) {
  .beyond-design__top-tags {
    margin-bottom: 5.2083333333vw;
  }
}
.beyond-design__top-tags span {
  display: block;
}
.beyond-design__top-tags span:nth-child(1) {
  font-size: 12px;
  margin-bottom: 8px;
}
@media (min-width: 767px) {
  .beyond-design__top-tags span:nth-child(1) {
    font-size: 1.1111111111vw;
    margin-bottom: 1.1805555556vw;
    padding-left: 9.5138888889vw;
  }
}
.beyond-design__top-tags span:nth-child(2) {
  font-size: 12px;
  text-align: right;
  margin-bottom: 29px;
}
@media (min-width: 767px) {
  .beyond-design__top-tags span:nth-child(2) {
    text-align: center;
    font-size: 1.1111111111vw;
    margin-bottom: 0.9722222222vw;
  }
}
.beyond-design__top-tags span:nth-child(3) {
  padding-left: 62px;
  font-size: 16px;
}
@media (min-width: 767px) {
  .beyond-design__top-tags span:nth-child(3) {
    text-align: right;
    padding-left: 0;
    padding-right: 9.5138888889vw;
    font-size: 1.1111111111vw;
  }
}
.beyond-design__bottom-tags {
  color: rgba(142, 142, 142, 0.5);
  font-weight: 300;
}
.beyond-design__bottom-tags span {
  display: block;
}
@media (min-width: 767px) {
  .beyond-design__bottom-tags span {
    position: absolute;
  }
}
.beyond-design__bottom-tags span:nth-child(1) {
  font-size: 12px;
}
@media (min-width: 767px) {
  .beyond-design__bottom-tags span:nth-child(1) {
    bottom: 7.8472222222vw;
    left: 4.5138888889vw;
    font-size: 0.9722222222vw;
  }
}
.beyond-design__bottom-tags span:nth-child(2) {
  font-size: 16px;
  text-align: right;
}
@media (min-width: 767px) {
  .beyond-design__bottom-tags span:nth-child(2) {
    font-size: 1.1111111111vw;
    bottom: -1.1111111111vw;
    right: 4.1666666667vw;
  }
}
.beyond-design__txt {
  margin-bottom: 44px;
  text-align: center;
  font-size: 12px;
  padding: 0 20px;
}
@media (min-width: 767px) {
  .beyond-design__txt {
    font-size: 0.9722222222vw;
    padding: 0;
    margin-bottom: 3.0555555556vw;
  }
}
.beyond-design__btn {
  margin-bottom: 45px;
  display: flex;
  justify-content: center;
}
@media (min-width: 767px) {
  .beyond-design__btn {
    margin-bottom: 0;
  }
}
.beyond-design__top-text {
  color: #C8B8B2;
  font-weight: 400;
  line-height: 1.2;
  font-size: 28px;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .beyond-design__top-text {
    font-size: 3.0555555556vw;
  }
}
.beyond-design__gradient {
  color: #FF5C00;
  display: inline !important;
}
.beyond-design__bottom-text {
  text-transform: uppercase;
  line-height: 1.2;
  font-size: 28px;
  color: #fff;
  text-align: right;
  margin-bottom: 44px;
  font-weight: 500;
}
@media (min-width: 767px) {
  .beyond-design__bottom-text {
    font-size: 3.0555555556vw;
    margin-bottom: 3.0555555556vw;
  }
}

.word {
  white-space: nowrap;
}

.portfolio {
  padding-top: 72px;
  padding-bottom: 72px;
}
@media (min-width: 767px) {
  .portfolio {
    padding-top: 5.5555555556vw;
    padding-bottom: 3.0555555556vw;
  }
}
@media (min-width: 767px) {
  .portfolio .title {
    margin-bottom: 4.375vw;
  }
}
.portfolio__btn {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
@media (min-width: 767px) {
  .portfolio__btn {
    margin-top: 3.0555555556vw;
  }
}
@media (min-width: 767px) {
  .portfolio__wrap {
    display: flex;
    gap: 0.6944444444vw;
  }
}
.portfolio__slider {
  margin-bottom: 24px;
}
@media (min-width: 767px) {
  .portfolio__slider {
    margin-bottom: 0;
    width: 59.4444444444vw;
  }
}
.portfolio__image {
  height: 227px;
  width: 100%;
  display: flex;
  border-radius: 5px;
  margin-bottom: 12px;
  object-fit: cover;
}
@media (min-width: 767px) {
  .portfolio__image {
    height: 39.9305555556vw;
    margin-bottom: 1.0416666667vw;
  }
}
@media (min-width: 767px) {
  .portfolio__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.0416666667vw;
    padding-bottom: 0.8333333333vw;
  }
}
.portfolio__heading {
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .portfolio__heading {
    margin: 0;
    font-size: 1.25vw;
  }
}
.portfolio__desc {
  font-weight: 300;
  font-size: 12px;
  line-height: 1.2;
}
@media (min-width: 767px) {
  .portfolio__desc {
    font-size: 0.8333333333vw;
  }
}
.portfolio__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 24px;
}
.portfolio__pagination {
  width: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portfolio__pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 4px;
  height: 4px;
  background: rgba(100, 100, 100, 0.5);
  opacity: 1;
  border-radius: 100px;
}
.portfolio__pagination .swiper-pagination-bullet-active {
  width: 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
}
.portfolio__next, .portfolio__prev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  transition: all 0.5s ease;
  color: #FF0000 !important;
  cursor: pointer;
}
.portfolio__next svg, .portfolio__prev svg {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
.portfolio__next.swiper-button-disabled, .portfolio__prev.swiper-button-disabled {
  background: rgba(39, 39, 39, 0.5);
  color: #fff !important;
}
.portfolio__next svg {
  transform: rotate(180deg);
}
.portfolio__thumbs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 767px) {
  .portfolio__thumbs {
    flex: 1;
    gap: 0.6944444444vw;
  }
}
.portfolio__thumbs a {
  display: flex;
  height: 120px;
}
@media (min-width: 767px) {
  .portfolio__thumbs a {
    height: 10.3472222222vw;
  }
}
.portfolio__thumbs a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

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

.services {
  padding: 72px 0;
}
.services__description {
  display: none;
}
@media (min-width: 767px) {
  .services__description {
    font-weight: 300;
    font-size: 1.25vw;
    color: #8E8E8E;
    width: 30vw;
    display: block;
  }
}
@media (min-width: 767px) {
  .services {
    padding-top: 5.5555555556vw;
    padding-bottom: 5.5555555556vw;
  }
  .services__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4.4444444444vw;
  }
}
.services__list {
  display: grid;
  gap: 10px;
}
@media (min-width: 767px) {
  .services__list {
    gap: 0.6944444444vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.services__item {
  padding: 24px 18px;
  background: linear-gradient(180deg, rgba(255, 92, 0, 0.5) 0%, rgba(143, 0, 0, 0.5) 100%);
}
@media (min-width: 767px) {
  .services__item {
    padding: 2.0833333333vw;
    display: flex;
    flex-direction: column;
    min-height: 25.3472222222vw;
  }
  .services__item:nth-child(3) {
    border-radius: 0 18px 0 0;
  }
}
.services__item--first {
  background: linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
  border-radius: 14px 14px 0 0;
}
@media (min-width: 767px) {
  .services__item--first {
    grid-row: 1/span 2;
    border-radius: 18px 0 0 18px;
  }
}
.services__item--first .services__price {
  font-size: 24px;
  margin-bottom: 64px;
}
@media (min-width: 767px) {
  .services__item--first .services__price {
    font-size: 1.6666666667vw;
    margin-bottom: 0;
  }
}
.services__item--first .services__heading {
  font-size: 24px;
  max-width: 100%;
}
@media (min-width: 767px) {
  .services__item--first .services__heading {
    font-size: 2.2222222222vw;
  }
}
.services__item--first .services__desc {
  margin-bottom: 24px;
  margin-bottom: 2.9166666667vw;
}
.services__item--last {
  background: #0E0E0E;
  border-radius: 0 0 14px 14px;
}
@media (min-width: 767px) {
  .services__item--last {
    border-radius: 0 0 18px 0;
  }
}
.services__item--last .services__price {
  margin-bottom: 64px;
}
@media (min-width: 767px) {
  .services__item--last .services__price {
    margin-bottom: 0;
  }
}
.services__item--last .services__heading {
  font-weight: bold;
  max-width: 100%;
}
@media (min-width: 767px) {
  .services__item--last .services__heading {
    font-weight: 600;
  }
}
.services__price {
  text-align: right;
  margin-bottom: 32px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 767px) {
  .services__price {
    flex: 1;
    font-size: 1.25vw;
    margin-bottom: 0;
  }
}
.services__heading {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  max-width: 60%;
  line-height: 1.2;
}
@media (min-width: 767px) {
  .services__heading {
    font-size: 1.6666666667vw;
    margin-bottom: 0.8333333333vw;
  }
}
.services__desc {
  font-sizE: 14px;
  font-weight: 300;
  margin-bottom: 32px;
}
@media (min-width: 767px) {
  .services__desc {
    font-size: 1.1111111111vw;
    margin-bottom: 2.2222222222vw;
  }
}

.about {
  padding-top: 72px;
  padding-bottom: 64px;
}
@media (min-width: 767px) {
  .about {
    padding-top: 10.4166666667vw;
    padding-bottom: 10.4166666667vw;
  }
}
.about__title {
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}
@media (min-width: 767px) {
  .about__title {
    margin-bottom: 0;
    font-size: 3.0555555556vw;
  }
}
@media (min-width: 767px) {
  .about__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4.7222222222vw;
  }
}
.about__desc {
  color: #8E8E8E;
  margin-bottom: 54px;
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 767px) {
  .about__desc {
    margin-bottom: 0;
    width: 30vw;
    font-size: 1.25vw;
  }
}
.about__list {
  display: grid;
  gap: 64px;
}
@media (min-width: 767px) {
  .about__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.about__item {
  position: relative;
  padding-left: 37px;
}
@media (min-width: 767px) {
  .about__item {
    padding-left: 2.5694444444vw;
  }
}
.about__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #FF5C00;
}
@media (min-width: 767px) {
  .about__item:before {
    width: 0.8333333333vw;
    height: 0.8333333333vw;
    top: 0.5555555556vw;
  }
}
.about__value {
  margin-bottom: 4px;
  font-weight: 500;
  font-size: 44px;
  line-height: 1.2;
}
@media (min-width: 767px) {
  .about__value {
    font-size: 3.75vw;
    margin-bottom: 0.2777777778vw;
  }
}
.about__text {
  color: #8E8E8E;
  font-size: 14px;
  font-weight: 300;
}
@media (min-width: 767px) {
  .about__text {
    font-size: 1.1111111111vw;
  }
}

.partners {
  padding-bottom: 72px;
}
@media (min-width: 767px) {
  .partners {
    padding-bottom: 10.4166666667vw;
  }
  .partners .title {
    text-align: center;
    margin-bottom: 3.0555555556vw;
  }
}
.partners__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 767px) {
  .partners__wrap {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.389vw 11.806vw;
  }
}
.partners__item {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner {
  background: url("../images/banner.png") center center/cover;
  height: 200px;
}
@media (min-width: 767px) {
  .banner {
    height: 20.8333333333vw;
  }
}

.form {
  padding-top: 56px;
  padding-bottom: 64px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .form {
    padding-top: 10.4166666667vw;
    padding-bottom: 10.4166666667vw;
    background: url("../images/form-bg.png") right 0 top -18vw/56vw no-repeat;
  }
}
.form .title {
  margin-bottom: 12px;
}
@media (min-width: 767px) {
  .form .title {
    margin-bottom: 0.5555555556vw;
  }
}
.form__col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3888888889vw;
}
@media (max-width: 767px) {
  .form__col {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.form__desc {
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 300;
  color: #8E8E8E;
}
@media (min-width: 767px) {
  .form__desc {
    margin-bottom: 2.7777777778vw;
    font-size: 1.25vw;
  }
}
@media (min-width: 767px) {
  .form__form {
    width: 45.1388888889vw;
  }
}
.form__checkbox {
  margin-bottom: 24px;
}
@media (min-width: 767px) {
  .form__checkbox {
    margin-bottom: 24px;
  }
}
.form__checkbox input[type=checkbox] {
  display: none;
}
.form__checkbox input[type=checkbox] + label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
@media (min-width: 767px) {
  .form__checkbox input[type=checkbox] + label {
    gap: 0.6944444444vw;
  }
}
.form__checkbox input[type=checkbox] + label span {
  color: #8E8E8E;
  font-weight: 200;
  font-size: 12px;
}
@media (min-width: 767px) {
  .form__checkbox input[type=checkbox] + label span {
    font-size: 0.9722222222vw;
  }
}
.form__checkbox input[type=checkbox] + label:before {
  content: "";
  display: flex;
  width: 24px;
  min-width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 2px;
}
@media (min-width: 767px) {
  .form__checkbox input[type=checkbox] + label:before {
    width: 1.6666666667vw;
    min-width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
}
.form__checkbox input[type=checkbox]:checked + label span {
  color: #fff;
}
.form__checkbox input[type=checkbox]:checked + label:before {
  background: url("../images/check.svg") center center/12px no-repeat, linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
  border-color: transparent;
}
@media (min-width: 767px) {
  .form__checkbox input[type=checkbox]:checked + label:before {
    background: url("../images/check.svg") center center/0.833vw no-repeat, linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
  }
}
.form__btn {
  margin-bottom: 10px;
}
@media (min-width: 767px) {
  .form__btn {
    margin-bottom: 0;
  }
}
@media (min-width: 767px) {
  .form__socials {
    display: flex;
    align-items: center;
    gap: 0.6944444444vw;
  }
}
.form__socials span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 200;
}
@media (min-width: 767px) {
  .form__socials span {
    margin-bottom: 0;
    font-size: 0.9722222222vw;
  }
}
.form__socials-list {
  display: grid;
  gap: 10px;
}
@media (min-width: 767px) {
  .form__socials-list {
    display: flex;
    align-items: center;
    gap: 0.6944444444vw;
  }
}
.form__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  height: 54px;
  text-decoration: none;
  border: 1px solid #323232;
  border-radius: 8px;
  transition: background 0.5s ease;
}
@media (min-width: 767px) {
  .form__social {
    width: 12.5vw;
    gap: 0.6944444444vw;
    font-size: 0.9722222222vw;
    height: 3.75vw;
  }
}
.form__social:hover {
  background: rgba(61, 61, 61, 0.2509803922);
}
.form__social img {
  width: 24px;
  min-width: 24px;
  object-fit: contain;
}
@media (min-width: 767px) {
  .form__social img {
    width: 1.6666666667vw;
    min-width: 1.6666666667vw;
  }
}
@media (min-width: 767px) {
  .form__bottom {
    display: flex;
    align-items: center;
    gap: 0.6944444444vw;
  }
  .form__bottom .btn {
    width: 16.6666666667vw;
    height: 3.75vw;
  }
}

.iti {
  width: 100%;
  display: block;
  margin-bottom: 1.0416666667vw;
}
@media (max-width: 767px) {
  .iti {
    margin-bottom: 15px;
  }
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 0.6944444444vw;
  font-weight: 500;
  font-size: 0.9722222222vw;
}
@media (max-width: 767px) {
  .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 10px;
    font-size: 14px;
  }
}

.iti__selected-flag {
  padding-left: 1.25vw;
  padding-right: 0.8333333333vw;
}
@media (max-width: 767px) {
  .iti__selected-flag {
    padding-left: 18px;
    padding-right: 12px;
  }
}

.iti__arrow {
  border-top: 4px solid #fff;
  margin-left: 0.6944444444vw;
}
@media (max-width: 767px) {
  .iti__arrow {
    margin-left: 10px;
  }
}

.iti__country-list {
  background: #000;
}

.iti__country.iti__highlight {
  background-color: rgba(255, 255, 255, 0.05);
}

.footer {
  padding-top: 26px;
  padding-bottom: 40px;
  background: url("../images/noise.png") #0A0A0A;
}
@media (min-width: 767px) {
  .footer {
    padding-top: 3.0555555556vw;
    padding-bottom: 1.25vw;
  }
  .footer__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 11.1111111111vw;
  }
}
.footer__top-text {
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 767px) {
  .footer__top-text {
    font-size: 1.1111111111vw;
    margin-bottom: 0;
  }
}
.footer__top-text span {
  text-decoration: underline;
  color: transparent;
  background: linear-gradient(180deg, #FF6F00 0%, #FF0000 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
.footer__logo {
  width: 272px;
  display: flex;
  margin: 0 auto 24px;
}
@media (min-width: 767px) {
  .footer__logo {
    display: none;
  }
}
.footer__menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 24px 64px;
  margin-bottom: 44px;
}
@media (min-width: 767px) {
  .footer__menu {
    gap: 4.1666666667vw;
    margin-bottom: 0;
  }
}
.footer__menu li {
  line-height: 1;
}
.footer__menu li a {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.5s ease;
}
@media (min-width: 767px) {
  .footer__menu li a {
    font-size: 0.8333333333vw;
  }
}
.footer__menu li a:hover {
  color: #FF5C00;
}
.footer__socials {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-bottom: 44px;
}
@media (min-width: 767px) {
  .footer__socials {
    margin-bottom: 0;
    gap: 2.2222222222vw;
  }
}
.footer__socials li a {
  display: flex;
}
.footer__socials li a img {
  width: 32px;
  object-fit: contain;
  transition: transform 0.5s ease;
}
@media (min-width: 767px) {
  .footer__socials li a img {
    width: 3.0555555556vw;
  }
}
.footer__socials li a:hover img {
  transform: scale(1.1);
}
@media (min-width: 767px) {
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9027777778vw;
  }
}
.footer__logo-mobile {
  display: none;
}
@media (min-width: 767px) {
  .footer__logo-mobile {
    display: flex;
    width: 21.875vw;
  }
}
.footer__copyright {
  font-weight: 300;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 767px) {
  .footer__copyright {
    font-size: 0.8333333333vw;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__btn {
  margin-bottom: 16px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 87px 0 60px;
  gap: 70px;
  list-style: none;
}
.mobile-menu__nav a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}

.thx {
  width: 53.5416666667vw;
  background: #000;
  padding-top: 5.2777777778vw;
  padding-left: 4.4444444444vw;
  padding-right: 4.4444444444vw;
  padding-bottom: 3.0555555556vw;
}
@media (max-width: 767px) {
  .thx {
    width: calc(100% - 36px);
    max-width: 340px;
    padding: 76px 18px 44px;
  }
}
.thx__close {
  position: absolute;
  right: 0;
  top: 0;
  width: 2.2222222222vw;
  height: 2.2222222222vw;
  display: flex;
  cursor: pointer;
  background: transparent;
  border: 0;
}
@media (max-width: 767px) {
  .thx__close {
    width: 32px;
    height: 32px;
  }
}
.thx__close img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thx__img {
  margin: 0 auto;
  display: flex;
  width: 37.7083333333vw;
  margin-bottom: 1.6666666667vw;
}
@media (max-width: 767px) {
  .thx__img {
    width: 282px;
    margin-bottom: 24px;
  }
}
.thx__text {
  margin-bottom: 3.0555555556vw;
  font-weight: 300;
  font-size: 1.1111111111vw;
  line-height: 1.1;
  color: #8E8E8E;
}
@media (max-width: 767px) {
  .thx__text {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
/*# sourceMappingURL=style.css.map */
