@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320;
}

body {
  line-height: 1;
  font-family: "Lato", sans-serif;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Lato", sans-serif;
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background-color: inherit;
}

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

a {
  text-decoration: none;
  color: inherit;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/*
&::-webkit-scrollbar {
	display: none;
}
*/
html {
  scroll-behavior: smooth;
}

body {
  color: rgb(255, 255, 255);
  background-color: #272733;
  font-weight: 400;
  font-size: 16px;
}
body._lock {
  overflow: hidden;
}

.wrapper {
  max-width: 1920px;
  min-width: 320px;
  min-height: 100%;
  overflow: clip;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

[class*=__container] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(16, 16, 29, 0.9);
}
.header__container {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 10px;
  min-height: 100px;
}
@media (max-width: 420px) {
  .header__container {
    gap: 15px;
  }
}
@media (max-width: 767.98px) {
  .header__container {
    min-height: 70px;
  }
}
.header__logo {
  position: relative;
  z-index: 10;
}
.header__logo span {
  color: #42a9ed;
}
.header__logo a {
  font-family: "Raleway";
  font-size: 28px;
  font-weight: 800;
  line-height: 100%;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .header__logo a {
    font-size: 24px;
  }
}
@media (max-width: 767.98px) {
  .header__logo a {
    font-size: 20px;
  }
}
.header__menu {
  position: relative;
  z-index: 10;
}
@media (max-width: 991.98px) {
  .header__menu {
    z-index: 0;
    position: fixed;
    top: 0px;
    left: -100%;
    width: 100%;
    height: 100%;
    padding-top: 64px;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #000;
    transition: all 0.3s ease 0s;
    overflow: auto;
    padding-bottom: 15px;
  }
  .header__menu._open {
    left: 0;
  }
  .header__menu._open .menu__list {
    flex-direction: column;
    align-items: center;
    row-gap: 15px;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 10px 0px 10px;
    margin: 0px auto 80px;
  }
  .header__menu._open .menu__item {
    padding: 5px 10px;
  }
}

.menu__list {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.menu__link {
  color: rgb(255, 255, 255);
  font-size: 13px;
  font-weight: 250;
  line-height: 100%;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
  position: relative;
}
.menu__link.active {
  color: rgb(67, 171, 240);
}
.menu__link.active::before {
  display: none;
}
.menu__link::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  transform: scale(0);
  height: 2px;
  background-color: rgb(67, 171, 240);
  transition: transform 0.3s ease 0s;
}
@media (any-hover: hover) {
  .menu__link:hover {
    color: rgb(67, 171, 240);
  }
  .menu__link:hover::before {
    width: 100%;
    transform: scale(1);
  }
}
@media (min-width: 991.98px) {
  .menu__icon {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .menu__icon {
    display: block;
    flex: 0 0 28px;
    text-align: right;
    position: relative;
    z-index: 51;
    width: 28px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    z-index: 20;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    content: "";
    transition: all 0.3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #fff;
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: calc(50% - 1px);
  }
  .menu__icon.menu-open span {
    width: 0;
  }
  .menu__icon.menu-open::before {
    top: calc(50% - 1.5px);
    transform: rotate(-45deg);
  }
  .menu__icon.menu-open::after {
    bottom: calc(50% - 1.5px);
    transform: rotate(45deg);
  }
}

.page {
  flex: 1 1 auto;
}
.main {
  display: flex;
  flex-direction: column;
}

.main-body {
  flex: 1 1 auto;
  min-height: 100%;
  background: url("../img/main_bg.png") top center/cover no-repeat;
}
@media (min-width: 75em) {
  .main-body {
    padding-top: 6.4375rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-top: clamp( 1.5625rem , -0.2102272727rem  +  8.8636363636vw , 6.4375rem )) {
    .main-body {
      padding-top: clamp( 1.5625rem , -0.2102272727rem  +  8.8636363636vw , 6.4375rem );
    }
  }
  @supports not (padding-top: clamp( 1.5625rem , -0.2102272727rem  +  8.8636363636vw , 6.4375rem )) {
    .main-body {
      padding-top: calc(1.5625rem + 4.875 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .main-body {
    padding-top: 1.5625rem;
  }
}
@media (min-width: 75em) {
  .main-body {
    padding-bottom: 12.6875rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-bottom: clamp( 1.5625rem , -2.4829545455rem  +  20.2272727273vw , 12.6875rem )) {
    .main-body {
      padding-bottom: clamp( 1.5625rem , -2.4829545455rem  +  20.2272727273vw , 12.6875rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.5625rem , -2.4829545455rem  +  20.2272727273vw , 12.6875rem )) {
    .main-body {
      padding-bottom: calc(1.5625rem + 11.125 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .main-body {
    padding-bottom: 1.5625rem;
  }
}
@media (max-width: 767.98px) {
  .main-body {
    flex: 0 1 auto;
  }
}
.main-body__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  max-width: 780px;
  color: #000000;
  /* text-stroke устанавливает обводку вокруг букв текста работает с вендорным префиксом -webkit- */
}
@media (min-width: 75em) {
  .main-body__title {
    font-size: 3rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (font-size: clamp( 1.375rem , 0.7840909091rem  +  2.9545454545vw , 3rem )) {
    .main-body__title {
      font-size: clamp( 1.375rem , 0.7840909091rem  +  2.9545454545vw , 3rem );
    }
  }
  @supports not (font-size: clamp( 1.375rem , 0.7840909091rem  +  2.9545454545vw , 3rem )) {
    .main-body__title {
      font-size: calc(1.375rem + 1.625 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .main-body__title {
    font-size: 1.375rem;
  }
}
@media (min-width: 75em) {
  .main-body__title {
    margin-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (margin-bottom: clamp( 1.625rem , 0.3977272727rem  +  6.1363636364vw , 5rem )) {
    .main-body__title {
      margin-bottom: clamp( 1.625rem , 0.3977272727rem  +  6.1363636364vw , 5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.625rem , 0.3977272727rem  +  6.1363636364vw , 5rem )) {
    .main-body__title {
      margin-bottom: calc(1.625rem + 3.375 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .main-body__title {
    margin-bottom: 1.625rem;
  }
}
.main-body__title span {
  color: #3e9cdc;
}
@media (min-width: 75em) {
  .main-body__text {
    font-size: 1.25rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (font-size: clamp( 0.875rem , 0.7386363636rem  +  0.6818181818vw , 1.25rem )) {
    .main-body__text {
      font-size: clamp( 0.875rem , 0.7386363636rem  +  0.6818181818vw , 1.25rem );
    }
  }
  @supports not (font-size: clamp( 0.875rem , 0.7386363636rem  +  0.6818181818vw , 1.25rem )) {
    .main-body__text {
      font-size: calc(0.875rem + 0.375 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .main-body__text {
    font-size: 0.875rem;
  }
}
.main-body__buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.main-body__button {
  min-width: 183px;
  min-height: 43px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px 15px 10px;
  border: 1px solid rgb(111, 109, 123);
  background: rgb(255, 255, 255);
  color: rgb(42, 43, 48);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767.98px) {
  .main-body__button {
    min-width: 150px;
    min-height: 30px;
    padding: 13px 10px 13px 10px;
  }
}
@media (max-width: 479.98px) {
  .main-body__button {
    min-width: 130px;
    min-height: 30px;
    padding: 12px 10px 12px 10px;
  }
}
@media (any-hover: hover) {
  .main-body__button:hover {
    background: rgb(62, 156, 220);
    color: rgb(255, 255, 255);
    border: 1px solid rgb(255, 255, 255);
  }
}
.main-body__button--blue {
  border: 1px solid rgb(255, 255, 255);
  background: rgb(62, 156, 220);
  color: rgb(255, 255, 255);
}
@media (any-hover: hover) {
  .main-body__button--blue:hover {
    box-shadow: 0px 3px 5px 3px rgba(127, 193, 236, 0.781);
  }
}

.main-text {
  color: rgb(0, 0, 0);
}
@media (min-width: 75em) {
  .main-text {
    margin-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (margin-bottom: clamp( 1.875rem , 0.7386363636rem  +  5.6818181818vw , 5rem )) {
    .main-text {
      margin-bottom: clamp( 1.875rem , 0.7386363636rem  +  5.6818181818vw , 5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.875rem , 0.7386363636rem  +  5.6818181818vw , 5rem )) {
    .main-text {
      margin-bottom: calc(1.875rem + 3.125 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .main-text {
    margin-bottom: 1.875rem;
  }
}
.main-text__label {
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 10px;
}
.main-text__list {
  font-weight: 400;
}
.main-text__list li {
  margin-left: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.main-text__list li::before {
  content: "";
  display: block;
  width: 4.94px;
  height: 1.51px;
  background: rgb(0, 0, 0);
}
.main-text__list li:not(:last-child) {
  margin-bottom: 5px;
}

.form {
  background: url("../img/form-bg.png") 100% 100%/contain no-repeat;
}
@media (min-width: 75em) {
  .form {
    padding-top: 7.5625rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-top: clamp( 1.875rem , -0.1931818182rem  +  10.3409090909vw , 7.5625rem )) {
    .form {
      padding-top: clamp( 1.875rem , -0.1931818182rem  +  10.3409090909vw , 7.5625rem );
    }
  }
  @supports not (padding-top: clamp( 1.875rem , -0.1931818182rem  +  10.3409090909vw , 7.5625rem )) {
    .form {
      padding-top: calc(1.875rem + 5.6875 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .form {
    padding-top: 1.875rem;
  }
}
@media (min-width: 75em) {
  .form {
    padding-bottom: 9.4375rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-bottom: clamp( 1.875rem , -0.875rem  +  13.75vw , 9.4375rem )) {
    .form {
      padding-bottom: clamp( 1.875rem , -0.875rem  +  13.75vw , 9.4375rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.875rem , -0.875rem  +  13.75vw , 9.4375rem )) {
    .form {
      padding-bottom: calc(1.875rem + 7.5625 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .form {
    padding-bottom: 1.875rem;
  }
}
.form__title {
  font-size: 36px;
  font-weight: 250;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 75em) {
  .form__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (font-size: clamp( 1.5rem , 1.2272727273rem  +  1.3636363636vw , 2.25rem )) {
    .form__title {
      font-size: clamp( 1.5rem , 1.2272727273rem  +  1.3636363636vw , 2.25rem );
    }
  }
  @supports not (font-size: clamp( 1.5rem , 1.2272727273rem  +  1.3636363636vw , 2.25rem )) {
    .form__title {
      font-size: calc(1.5rem + 0.75 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .form__title {
    font-size: 1.5rem;
  }
}
.form__title span {
  color: #3e9cdc;
}
.form__label {
  color: rgb(187, 187, 187);
  text-align: center;
  font-size: 18px;
}
@media (min-width: 75em) {
  .form__label {
    margin-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (margin-bottom: clamp( 1.5rem , 0.2272727273rem  +  6.3636363636vw , 5rem )) {
    .form__label {
      margin-bottom: clamp( 1.5rem , 0.2272727273rem  +  6.3636363636vw , 5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.5rem , 0.2272727273rem  +  6.3636363636vw , 5rem )) {
    .form__label {
      margin-bottom: calc(1.5rem + 3.5 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .form__label {
    margin-bottom: 1.5rem;
  }
}
.form__steps {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 75em) {
  .form__steps {
    margin-bottom: 5rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (margin-bottom: clamp( 1.5rem , 0.2272727273rem  +  6.3636363636vw , 5rem )) {
    .form__steps {
      margin-bottom: clamp( 1.5rem , 0.2272727273rem  +  6.3636363636vw , 5rem );
    }
  }
  @supports not (margin-bottom: clamp( 1.5rem , 0.2272727273rem  +  6.3636363636vw , 5rem )) {
    .form__steps {
      margin-bottom: calc(1.5rem + 3.5 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .form__steps {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .form__steps {
    flex-direction: column;
    align-items: center;
    gap: 20px 15px;
  }
}
.form__step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 209px;
  min-width: 180px;
  position: relative;
}
@media (max-width: 991.98px) {
  .form__step {
    min-width: 100px;
    max-width: 145px;
    flex: 0 0 20%;
  }
}
@media (max-width: 991.98px) {
  .form__step {
    min-width: 100px;
    flex: 0 0 auto;
  }
}
.form__step-decor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  width: 100%;
  align-self: flex-start;
  margin: 0 -22px;
}
.form__step-decor span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: url("../img/dott.svg") center/cover no-repeat;
}
@media (max-width: 991.98px) {
  .form__step-decor {
    height: 60px;
    width: 100%;
    margin: 0 -32px;
  }
}
@media (max-width: 767.98px) {
  .form__step-decor {
    display: none;
  }
}
.step-form__icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("../img/icons/circle.png") center/contain no-repeat;
}
@media (max-width: 991.98px) {
  .step-form__icon {
    width: 60px;
    height: 60px;
  }
}
.step-form__icon img {
  width: 55%;
  height: 55%;
}
.step-form__text {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 16px;
  flex: 1 1 auto;
  height: 100%;
  width: 100%;
}
@media (max-width: 991.98px) {
  .step-form__text {
    font-size: 14px;
  }
}

.body-form__row {
  display: grid;
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 25px;
}
.body-form__row:not(:last-child) {
  margin-bottom: 30px;
}
.body-form__row--three {
  grid-template-columns: 1fr 1fr 1fr;
}
.body-form__row--two {
  grid-template-columns: 1fr calc(33% - 15px);
}
@media (max-width: 991.98px) {
  .body-form__row {
    grid-template-columns: 100%;
  }
}
.body-form__item {
  width: 100%;
  color: rgb(39, 39, 51);
}
.body-form__item .input {
  height: 48px;
  width: 100%;
  padding: 15px 10px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
}
.body-form__item .input::-moz-placeholder {
  color: rgb(39, 39, 51);
  font-size: 18px;
}
.body-form__item .input::placeholder {
  color: rgb(39, 39, 51);
  font-size: 18px;
}
.body-form__item .label-file {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 15px 12px;
  border: 2px solid rgb(62, 156, 220);
  border-radius: 3px;
  background: rgb(255, 255, 255);
  max-width: 370px;
  height: 48px;
  cursor: pointer;
  color: rgb(39, 39, 51);
  font-size: 15px;
  font-weight: 250;
  text-transform: uppercase;
}
.body-form__item .label-file::-moz-placeholder {
  color: rgb(39, 39, 51);
}
.body-form__item .label-file::placeholder {
  color: rgb(39, 39, 51);
}
.body-form__item .label-file img {
  width: 17px;
  height: 20px;
}
.body-form__item .input-file {
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}
.body-form__item--range {
  flex: 1 1 100%;
}
.body-form__item--file {
  width: auto;
}
.body-form__range {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 250;
}

.range-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  -moz-column-gap: 15px;
       column-gap: 15px;
  row-gap: 8px;
  flex-wrap: wrap;
}

.range-label {
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: 400;
}

.output {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  font-weight: 250;
}

.range {
  width: 100%;
  height: 6px;
  margin: 0;
  border: 1px solid rgb(255, 255, 255);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.range::-webkit-slider-thumb {
  width: 27px;
  height: 27px;
  background-color: #42a9ed;
  border: 3px solid #286690;
  -webkit-appearance: none;
          appearance: none;
  border-radius: 50%;
  cursor: pointer;
}

.range::-moz-range-thumb {
  width: 27px;
  height: 27px;
  background-color: #42a9ed;
  -moz-appearance: none;
       appearance: none;
  border: 3px solid #286690;
  border-radius: 50%;
  cursor: pointer;
}

.form__btn {
  box-sizing: border-box;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 4px;
  background: rgb(62, 156, 220);
  width: 370px;
  height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px 15px 10px;
  margin-left: auto;
  margin-right: auto;
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 250;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
@media (any-hover: hover) {
  .form__btn:hover {
    box-shadow: 0px 3px 5px 3px rgba(127, 193, 236, 0.781);
  }
}
@media (max-width: 767px) {
  .form__btn {
    width: 90%;
  }
}

.choices__inner {
  height: 48px;
  width: 100%;
  padding: 15px 10px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.85);
  color: rgb(39, 39, 51);
  font-size: 18px;
}

.choices__placeholder {
  opacity: 1;
}

.choices__list--single {
  padding: 0px 16px 4px 4px;
}

.choices[data-type*=select-one]::after {
  content: "";
  height: 7px;
  width: 7px;
  border-style: solid;
  border-color: transparent transparent #000 #000;
  border-width: 1px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -5.5px;
  pointer-events: none;
  transform: rotate(-45deg);
}

.choices[data-type*=select-one].is-open::after {
  content: "";
  height: 7px;
  width: 7px;
  border-style: solid;
  border-color: transparent transparent #000 #000;
  border-width: 1px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
  transform: rotate(-225deg);
}

.is-open .choices__list--dropdown,
.is-open .choices__list[aria-expanded] {
  z-index: 1;
  position: absolute;
  width: 100%;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
  color: #fff;
  border: 1px solid rgb(61, 64, 80);
  border-radius: 3px;
  background-color: rgba(39, 39, 51, 0.9);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted:hover {
  background-color: transparent;
  color: #3e9cdc;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list[aria-expanded] .choices__item--selectable.is-highlighted {
  background-color: transparent;
}

.footer {
  background-color: rgb(61, 64, 80);
  color: rgb(195, 195, 195);
  font-size: 13px;
}
@media (min-width: 75em) {
  .footer {
    padding-top: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-top: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem )) {
    .footer {
      padding-top: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem );
    }
  }
  @supports not (padding-top: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem )) {
    .footer {
      padding-top: calc(1.25rem + 0.625 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .footer {
    padding-top: 1.25rem;
  }
}
@media (min-width: 75em) {
  .footer {
    padding-bottom: 1.875rem;
  }
}
@media (min-width: 20em) and (max-width: 75em) {
  @supports (padding-bottom: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem )) {
    .footer {
      padding-bottom: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem );
    }
  }
  @supports not (padding-bottom: clamp( 1.25rem , 1.0227272727rem  +  1.1363636364vw , 1.875rem )) {
    .footer {
      padding-bottom: calc(1.25rem + 0.625 * (100vw - 20rem) / 55);
    }
  }
}
@media (max-width: 20em) {
  .footer {
    padding-bottom: 1.25rem;
  }
}
.footer__body {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 16px;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer__body {
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
}
@media (max-width: 767.98px) {
  .footer__body {
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
@media (max-width: 479.98px) {
  .footer__body {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    row-gap: 6px;
  }
}
.footer__column {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 38px;
       column-gap: 38px;
  row-gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .footer__column {
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
}
@media (max-width: 479.98px) {
  .footer__column {
    justify-content: center;
  }
}
.footer__separator {
  width: 1px;
  height: 18px;
  background: rgb(195, 195, 195);
}
@media (max-width: 479.98px) {
  .footer__separator {
    transform: rotate(90deg);
  }
}
.footer__item {
  display: flex;
  gap: 10px;
  align-items: center;
  line-height: 1.2;
  transition: color 0.3s ease 0s;
}
@media (any-hover: hover) {
  .footer__item:hover {
    color: #fff;
  }
  .footer__item:hover img {
    transform: scale(1.1);
  }
}
.footer__item img {
  transition: all 0.3s ease 0s;
  width: 20px;
  height: 20px;
}
.footer__pays {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}