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

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,
sub,
sup,
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

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

a:hover {
  text-decoration: none;
}

body,
html {
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 10px;
}

body {
  font-family: "Roboto", sans-serif;
  background: url("../img/bg.jpg") center/cover no-repeat;
  color: #fff;
  line-height: 1;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-ExtraBold.woff2") format("woff2"), url("../fonts/Gilroy-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 750px;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
.logo {
  position: relative;
  z-index: 6;
  max-width: 19.8rem;
  width: 100%;
}

.title {
  font-family: "Gilroy";
  font-weight: 800;
  font-size: 3.2rem;
}

.btn {
  display: inline-block;
  background: rgba(175, 125, 255, 0.6);
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 1.9rem;
  color: #130336;
  padding: 1.8rem 3.2rem;
  transition: all 0.2s ease;
}
.btn:hover {
  background: #AF7DFF;
}

#copy-text {
  cursor: pointer;
}

.currencies {
  margin-bottom: 5.5rem;
}
.currencies__wrapper {
  display: flex;
  align-items: flex-start;
}
.currencies__title {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  margin-right: 12rem;
}
.currencies__value {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.08em;
}

.languages {
  margin-bottom: 5.4rem;
}
.languages__wrapper {
  display: flex;
  align-items: flex-start;
}
.languages__value {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1rem;
}
.languages__title {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  margin-right: 12rem;
}
.languages__item {
  display: flex;
  align-items: center;
  background: rgba(250, 248, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 1.1rem;
  max-width: 12rem;
  width: 100%;
}
.languages__item > span {
  display: inline-block;
  max-width: 5rem;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
.languages-btn {
  display: none;
}
.languages__img {
  width: 3.2rem;
  height: 2.4rem;
  margin-right: 1.5rem;
  border-radius: 2px;
}

.block .left {
  margin-bottom: 5px;
}
.block .left > span {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
}
.block .btn {
  width: 100%;
  text-align: center;
  color: #26195d;
}

.accordeon__item-top.active .accordeon__item-right img {
  transform: rotate(180deg);
}

.accordeon {
  display: flex;
  flex-direction: column;
  margin-bottom: 5.4rem;
}
.accordeon__loader {
  position: relative;
  margin: 10rem auto;
}
.accordeon__loader-block {
  height: 1.2rem;
  width: 25rem;
  margin: auto;
}
.accordeon__loader-block-dot {
  animation-name: loader-dot;
  animation-timing-function: ease-in-out;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 100%;
  background-color: white;
  position: absolute;
  border: 2px solid white;
}
.accordeon__loader-block-dot:first-child {
  animation-delay: 0.5s;
}
.accordeon__loader-block-dot:nth-child(2) {
  animation-delay: 0.4s;
}
.accordeon__loader-block-dot:nth-child(3) {
  animation-delay: 0.3s;
}
.accordeon__loader-block-dot:nth-child(4) {
  animation-delay: 0.2s;
}
.accordeon__loader-block-dot:nth-child(5) {
  animation-delay: 0.1s;
}
.accordeon__loader-block-dot:nth-child(6) {
  animation-delay: 0s;
}
@keyframes loader-dot {
  15% {
    transform: translateX(0);
  }
  45% {
    transform: translateX(23.8rem);
  }
  65% {
    transform: translateX(23.8rem);
  }
  95% {
    transform: translateX(0);
  }
}
.accordeon__hide {
  display: none;
}
.accordeon .btn {
  text-align: center;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #26195D;
  border-radius: 10px;
}
.accordeon__title {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.6rem;
}
.accordeon__item {
  background: rgba(48, 29, 118, 0.6);
  text-align: center;
  margin-bottom: 5px;
  border-radius: 5px;
}
.accordeon__item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 2rem;
  border-radius: 5px;
  cursor: pointer;
}
.accordeon__item-bottom {
  background: rgba(48, 29, 118, 0.6);
  padding: 0.9rem 5.3rem 3.2rem;
  display: none;
}
.accordeon__item-left {
  display: flex;
  align-items: center;
}
.accordeon__item-left > img {
  margin-right: 1.2rem;
}
.accordeon__item-left > span {
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
}
.accordeon__item-right > img {
  width: 3.2rem;
  height: 3.2rem;
  margin-left: 2.3rem;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.accordeon__item-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.accordeon__item-team {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(19, 3, 54, 0.4);
  border-radius: 5px;
  padding: 2.1rem 0.5rem 2.6rem;
  max-width: 25rem;
  min-height: 17.6rem;
  width: 100%;
}
.accordeon__item-title {
  position: relative;
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  text-align: center;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.accordeon__item-title::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  width: 105%;
  height: 1px;
  background-color: #fff;
  opacity: 0.1;
}
.accordeon__item-logo {
  width: 4.2rem;
  height: 4.2rem;
}
.accordeon__item-name {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  letter-spacing: 0.02em;
  margin-top: 2.1rem;
}
.accordeon__item-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 1.5rem;
  margin: 0 2rem;
}
.accordeon__item-time {
  opacity: 0.5;
  margin-left: 1rem;
}
.accordeon__item-block {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
}
.accordeon__item-coefficient {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  align-items: center;
  letter-spacing: 0.02em;
  padding: 2.1rem 3.2rem;
  background: rgba(19, 3, 54, 0.4);
  border-radius: 5px;
}
.accordeon__item-winner {
  display: flex;
  align-items: center;
}
.accordeon__item-winner-mob {
  display: none;
}
.accordeon__item-winner > span {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0 8.5rem;
}

.header {
  padding-top: 4rem;
}
.header__active {
  color: rgb(175, 125, 255);
}
.header__terms-mob {
  display: none;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.header__lists {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__register {
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 1rem 2.1rem;
  transition: all 0.2s ease;
}
.header__register:hover {
  background: #AF7DFF;
  border: 1px solid #AF7DFF;
  color: #FFFFFF;
}
.header__list {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  transition: all 0.2s ease;
  margin-left: 5rem;
}
.header__list:hover {
  color: #AF7DFF;
}
.header__list:first-child {
  margin-left: unset;
}
.header__list:last-child {
  margin-left: 1.5rem;
}
.header__list:nth-child(7), .header__list:nth-child(6) {
  margin-left: 3.5rem;
}

.main {
  width: 100%;
  margin-top: 15rem;
}
.main .container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.main__title {
  font-family: "Gilroy";
  font-weight: 800;
  font-size: 7.2rem;
}
.main__text {
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 160%;
  letter-spacing: 0.02em;
}
.main__text > span {
  font-weight: 700;
  text-transform: uppercase;
}
.main__content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.main__img {
  width: 60%;
}
.main__img-mob {
  display: none;
}

.offer {
  padding-top: 8rem;
  padding-bottom: 7rem;
}
.offer__license-img {
  width: 8.5rem;
  height: 8.5rem;
}
.offer__hide {
  display: none;
}
.offer .title {
  text-align: center;
  margin-bottom: 11rem;
}
.offer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.4rem;
}
.offer__show {
  display: flex;
  align-items: center;
  opacity: 0.5;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.offer__show > span {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.8rem;
  letter-spacing: 0.02em;
  margin-right: 1.5rem;
  transition: all 0.2s ease;
}
.offer__show:hover {
  opacity: 1;
}
.offer__hide .offer__show {
  opacity: 1;
}
.offer__item {
  display: block;
  position: relative;
  border-radius: 15px;
  transition: all 0.2s ease;
}
.offer__item:hover {
  box-shadow: 0px -3px 44px rgba(88, 56, 211, 0.5);
}
.offer__item:hover .offer__img-hover {
  opacity: 1;
}
.offer__item-link:active .offer__img-active {
  opacity: 1;
}
.offer__img-mob {
  display: none;
}
.offer__img-hover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.offer__img-active {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.offer__content {
  position: absolute;
  left: 3.2rem;
  bottom: 5.4rem;
  z-index: 3;
  cursor: pointer;
}
.offer__title {
  font-weight: 600;
  font-size: 3.2rem;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.offer__text {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 1.8rem 0 3.2rem;
}
.offer__container {
  padding-top: 10rem;
  margin-bottom: 5rem;
}
.offer__block {
  padding-top: 5rem;
}
.offer__cover {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}
.offer__cover-img {
  width: 50%;
}
.offer__cover-img-mob {
  display: none;
}
.offer__hide > p {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.8rem;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
}
.offer__hide > p:last-child {
  margin-bottom: 0;
}
.offer__hide > p > span {
  display: block;
  font-weight: 700;
}
.offer__block-title {
  font-weight: 600;
  font-size: 3.2rem;
}
.offer__block-text {
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.8rem;
  letter-spacing: 0.02em;
  margin: 1.8rem 0 3rem;
}
.offer__license {
  display: flex;
  align-items: center;
  transition: all 0.2s ease;
}
.offer__license-title {
  font-weight: 600;
  font-size: 2.1rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  margin-right: 2rem;
}

.provide {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background: linear-gradient(180deg, #2B1584 0%, #130336 100%);
}
.provide .container {
  position: relative;
}
.provide__img-top {
  position: absolute;
  left: -20rem;
  top: -22rem;
  opacity: 0.1;
}
.provide .title {
  text-align: center;
  margin-bottom: 6rem;
}
.provide__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.provide__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.provide__text {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 120%;
  text-align: center;
  letter-spacing: 0.01em;
  margin-top: 4.2rem;
  max-width: 28.2rem;
}

.super-knopka {
  position: absolute;
  left: 0;
  top: 25rem;
}

.form {
  position: relative;
  background: #130336;
  border-radius: 38px;
  margin-top: 15rem;
  padding: 10rem 0 10rem;
}
.form__group {
  display: flex;
}
.form__messenger {
  margin-left: 1rem;
  width: 72%;
}
.form__cover {
  width: 28%;
}
.form__img-top {
  position: absolute;
  right: 8.3rem;
  top: 0;
}
.form__img-bottom {
  position: absolute;
  left: 3.9rem;
  bottom: 0;
}
.form .title {
  max-width: 50.8rem;
  margin: auto;
  margin-bottom: 9.5rem;
}
.form__wrapper {
  max-width: 50.8rem;
  margin: auto;
}
.form__success {
  display: none;
  max-width: 52rem;
  margin: auto;
}
.form__success .btn {
  text-align: center;
  color: #FFFFFF;
}
.form__content {
  background: #20145B;
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 7rem 2rem 5.4rem;
}
.form__content > h2 {
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 800;
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 5.4rem;
}
.form__content > p {
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 2.8rem;
  text-align: center;
  letter-spacing: 0.02em;
}
.form__content > p > a {
  text-decoration: underline;
}
.form__content > p > span {
  color: #af7dff;
}
.form__log {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  text-align: center;
}
.form__log > a {
  color: #AF7DFF;
}
.form__img {
  position: absolute;
  top: 50%;
  right: 2.2rem;
  transform: translateY(-50%);
}
.form .form-field {
  position: relative;
  margin-bottom: 2rem;
}
.form__input {
  background: #20145B;
  border-radius: 10px;
  border: none;
  outline: none;
  width: 100%;
  height: 5.4rem;
  padding-left: 2.9rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
.form__input::placeholder {
  color: #FFFFFF;
}
.form .btn {
  width: 100%;
  border: none;
  outline: none;
  cursor: pointer;
  text-transform: uppercase;
  margin-bottom: 3.2rem;
}

.hide {
  visibility: hidden;
}

.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1111;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
}

.loader {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader div {
  position: absolute;
  border: 4px solid #af7dff;
  opacity: 1;
  border-radius: 50%;
  animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader div {
  position: absolute;
  border: 4px solid #af7dff;
  opacity: 1;
  border-radius: 50%;
  animation: loader 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

@keyframes loader {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
label.error {
  display: none;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #FB5D5D;
  position: absolute;
  width: 100%;
  bottom: 0.15rem;
  left: 2.9rem;
  transform: translateY(100%);
}

.form-field.chbx_outer.error {
  display: flex !important;
  transform: unset !important;
  font-weight: unset !important;
  font-size: unset !important;
  line-height: unset !important;
  letter-spacing: unset !important;
  color: unset !important;
  position: relative !important;
  width: unset !important;
  bottom: unset !important;
  left: unset !important;
}

.password-control {
  top: 50%;
  right: 2.6rem;
  transform: translateY(-50%);
  cursor: pointer;
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.2s ease-in-out;
}

.password-control.view::after {
  content: "";
  width: 2.2em;
  height: 0.1em;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.chbx_outer {
  cursor: pointer;
  position: relative;
  user-select: none;
  background: #20145b;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5px;
  height: auto;
}

/* Hide the browser's default checkbox */
.chbx_outer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  z-index: -1;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 50%;
  left: 2.9rem;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.chbx_txt {
  position: absolute;
  top: 50%;
  left: 7rem;
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
}

/* On mouse-over, add a grey background color */
/* When the checkbox is checked, add a blue background */
/* Create the checkmark/indicator (hidden when not checked) */
.chbx_outer .checkmark:after {
  content: "";
  position: absolute;
  left: 0.82rem;
  top: 0.2rem;
  width: 0.5rem;
  height: 1.4rem;
  border: solid transparent;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Show the checkmark when checked */
.chbx_outer input:checked ~ .checkmark:after {
  display: block;
  border: solid #fff;
  border-width: 0 1px 1px 0;
}

.select__placeholder {
  position: absolute;
  top: 0.8em;
  left: 4em;
  z-index: 2;
  font-size: 1.1em;
  line-height: 1.6;
  color: #888D96;
  font-weight: 400;
}

.select2-container--default .select2-results > .select2-results__options,
.select2-results {
  background: #20145B;
  box-shadow: inset 0px 0px 0.5px rgba(13, 15, 17, 0.1);
  filter: drop-shadow(6px 17px 16px rgba(102, 146, 204, 0.04));
}

.select2-results__options {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.select2-results__option--selected {
  display: none;
}

.select2-container,
.selection {
  width: 100% !important;
  max-width: 45em !important;
}

.select2-container--default .select2-results__option--selected {
  background: rgba(0, 0, 0, 0.15);
}

.select2-container .select2-selection--single {
  height: 5.4rem;
  background: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #fff;
  height: 4.9em !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 2.9rem;
  padding-top: 1.7rem;
}

.select2-results__option {
  padding: 0.7rem 0 1.8rem 2.9rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
}

.select2-container--open .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg) !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 3.5rem;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
  width: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease-in-out;
}

/*the arrow itself */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background-image: url("../img/arrow.png");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  border: none !important;
  height: 0.9rem !important;
  width: 1.5rem !important;
  margin: auto !important;
  top: auto !important;
  left: auto !important;
  left: unset !important;
  margin: unset !important;
  top: unset !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #20145B;
  color: #AF7DFF;
}

.select2-dropdown {
  border-radius: 6px;
  padding: 0 !important;
  border: unset;
}

.select2-container--default .select2-selection--single {
  background: #20145B;
  border-radius: 10px;
  border: unset;
  transition: all 0.2s ease-in-out;
}

.select2-container--open .select2-dropdown {
  top: 0;
}

.contacts .title {
  margin-top: 12rem;
  margin-bottom: 8rem;
}
.contacts__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.1rem;
}
.contacts__item {
  background: #20145B;
  border-radius: 10px;
  padding: 4.2rem 0 4.2rem 3.2rem;
  width: 33.3333333333%;
  min-height: 29.4rem;
}
.contacts__title {
  font-family: "Gilroy";
  font-weight: 800;
  font-size: 2.4rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 3.2rem;
}
.contacts__social {
  display: flex;
  align-items: center;
  margin-bottom: 2.2rem;
}
.contacts__social:last-child {
  margin-bottom: 0;
}
.contacts__social svg path {
  transition: all 0.2s ease;
}
.contacts__social:hover svg path {
  fill: #AF7DFF;
}
.contacts__social:hover span {
  color: #AF7DFF;
}
.contacts__social > span {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}
.contacts__img {
  margin-right: 1.2rem;
}

.social {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.social .container {
  position: relative;
}
.social__top {
  height: 6.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.social__img-top {
  position: absolute;
  top: -10rem;
  right: 12rem;
  z-index: -1;
}
.social__img-left {
  position: absolute;
  left: 5rem;
  bottom: -13rem;
  z-index: -1;
}
.social__img-right {
  position: absolute;
  right: -30rem;
  bottom: -27rem;
  z-index: -1;
}
.social .title {
  text-align: center;
  margin-bottom: 2.1rem;
}
.social__subtitle {
  text-align: center;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 2.8rem;
  letter-spacing: 0.02em;
  max-width: 80%;
  margin: auto;
}
.social__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  margin-top: 8rem;
}
.social__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #20145B;
  box-shadow: 6px 12px 24px rgba(102, 146, 204, 0.08), inset 0px 0px 0.5px rgba(13, 15, 17, 0.1);
  border-radius: 10px;
  padding: 2.8rem 4.4rem;
  cursor: pointer;
  width: calc(14.2857142857% - 1.2rem);
  transition: all 0.2s ease;
}
.social__item:hover {
  background: #AF7DFF;
}
.social__item:hover .social__text {
  color: #fff;
}
.social__item:hover svg path {
  fill: #fff;
}
.social svg path {
  transition: all 0.2s ease;
}
.social__text {
  font-weight: 600;
  font-size: 2.1rem;
  color: #AF7DFF;
  margin-top: 2.6rem;
  transition: all 0.2s ease;
}

.footer {
  background: #381A8C;
  padding: 5.3rem 0 4.2rem;
}
.footer .logo > img {
  margin: auto;
}
.footer__terms {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  margin: auto;
  letter-spacing: 0.02em;
  text-decoration-line: underline;
}
.footer__lists {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.4rem;
  margin: 6.1rem 0 6.9rem;
}
.footer__list {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  transition: all 0.2s ease;
}
.footer__list:hover {
  color: #AF7DFF;
}
.footer__list:last-child > a {
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  padding: 1rem 2.1rem;
  transition: all 0.2s ease;
}
.footer__list:last-child > a:hover {
  background: #AF7DFF;
  border: 1px solid #AF7DFF;
  color: #FFFFFF;
}

.copyright {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  text-align: center;
  letter-spacing: 0.02em;
  padding: 2.6rem 0;
}

.hamburger {
  display: none;
  width: 25px;
  height: 22px;
  cursor: pointer;
  right: 29px;
  top: 29px;
  z-index: 31;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first,
.second,
.third {
  background-color: #fff;
  height: 1px;
  width: 100%;
  border-radius: 2px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.is-active .first {
  transform: translateY(13px) rotate(45deg);
}

.is-active .second {
  opacity: 0;
  transform: translateX(8em);
}

.is-active .third {
  transform: translateY(-8.5px) rotate(-45deg);
}

@media screen and (min-height: 550px) and (max-height: 700px) {
  .main__img {
    width: 61%;
    right: -5rem;
  }
}
@media screen and (max-width: 1199px) {
  .social__wrapper {
    flex-wrap: wrap;
  }
  .social__item {
    width: calc(33.3333333333% - 1rem);
  }
  .header__list {
    margin-left: 1.5rem;
  }
  .header__list:nth-child(7),
.header__list:nth-child(6) {
    margin-left: 1rem;
  }
  .header__list:last-child {
    margin-left: 1rem;
  }
  .header__register {
    padding: 0.7rem 1.1rem;
  }
  .main__text {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 9px;
  }
  .logo {
    max-width: 15rem;
  }
  .accordeon__item-bottom {
    padding: 0.9rem 1rem 3.2rem;
  }
  .accordeon__item-winner > span {
    margin: 0 3rem;
  }
  .main__title {
    font-size: 6rem;
  }
  .main__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 8px;
  }
  .accordeon__item-winner > span {
    margin: 0 1.5rem;
  }
  .header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 4;
    width: 100%;
    background: #130336;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    z-index: 5;
    top: 0;
    background: #381A8C;
    padding: 10rem 0 6rem 0;
    transform: translateX(0);
    transform: translateX(100vw);
    transition: all 0.2s linear;
  }
  nav .header__lists {
    width: 100vw;
  }
  .header__list {
    font-weight: 300;
    font-size: 1.8rem;
    margin-left: 0;
    margin-bottom: 5rem;
  }
  .header__list:nth-child(7),
.header__list:nth-child(6),
.header__list:last-child {
    margin-left: 0;
  }
  .header__list:nth-child(7),
.header__list:last-child {
    margin-bottom: 2.5rem;
  }
  .header__terms-mob {
    display: block;
    font-weight: 400;
    font-size: 1.6rem;
    text-decoration: underline;
    margin-top: 5rem;
  }
  .header__lists {
    flex-direction: column;
  }
  .offer__content {
    bottom: 2rem;
    width: 80%;
  }
  .hamburger {
    display: flex;
  }
  .contacts__wrapper {
    flex-direction: column;
  }
  .contacts__item {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  body {
    background: url("../img/bg_mob.jpg") center/cover no-repeat;
  }
  .languages__value {
    gap: 2rem;
  }
  .languages-btn {
    display: flex;
  }
  .languages-btn > span {
    text-transform: capitalize;
  }
  .languages__value-additional {
    display: none;
  }
  .languages__item {
    width: calc(33.3333333333% - 1.4rem);
    justify-content: center;
  }
  .languages__item > span {
    font-size: 1.5rem;
  }
  .languages {
    margin-bottom: 3.4rem;
  }
  .languages__item {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .languages__img {
    width: 3.3rem;
    height: 2.2rem;
    margin-right: 0.5rem;
  }
  .main .container {
    flex-direction: column;
  }
  .main__content {
    text-align: center;
    margin-bottom: 5rem;
  }
  .main__title {
    font-size: 6rem;
    margin-bottom: 1.8rem;
  }
  .main__text {
    font-size: 2.6rem;
  }
  .main__img {
    width: 100%;
  }
  .offer {
    padding-bottom: 11rem;
    padding-top: 5rem;
  }
  .offer__block {
    padding-top: 0;
  }
  .offer__wrapper,
.currencies__wrapper,
.languages__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .offer__wrapper {
    align-items: center;
  }
  .offer__img,
.offer__img-hover,
.offer__img-active {
    display: none;
  }
  .offer__img-mob {
    display: block;
  }
  .offer__cover {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .offer__cover-img {
    width: 100%;
  }
  .offer__cover-img {
    display: none;
  }
  .offer__cover-img-mob {
    display: block;
  }
  .currencies__title,
.languages__title {
    margin-bottom: 2.1rem;
  }
  .currencies {
    margin-bottom: 3.5rem;
  }
  .block .left {
    margin-right: unset;
  }
  .provide {
    padding-bottom: 0;
  }
  .provide__img-top {
    display: none;
  }
  .provide .title {
    margin-bottom: 6rem;
  }
  .form .title {
    max-width: 80%;
  }
  .provide__wrapper {
    flex-direction: column;
    gap: 8rem;
  }
  .provide__text {
    max-width: 100%;
    margin-top: 2.2rem;
  }
  .form {
    width: calc(100% + 32px);
    margin-left: -16px;
    border-radius: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 13rem;
    margin-top: 10rem;
  }
  .form__cover {
    width: 35%;
  }
  .form__messenger {
    width: 65%;
  }
  .form__img-top {
    right: 6.7rem;
    width: 25rem;
  }
  .form__img-bottom {
    left: -3.1rem;
    width: 60%;
  }
  .title {
    font-size: 2.8rem;
  }
  .contacts__item {
    min-height: auto;
  }
  .chbx_outer .checkmark:after {
    width: 0.5rem;
  }
  .contacts__social {
    width: 17rem;
    margin: 0 auto 2.2rem;
  }
  .contacts__title {
    text-align: center;
  }
  .contacts__item {
    padding-left: 0;
  }
  .contacts__item:first-child .contacts__social {
    width: 11rem;
  }
  .contacts__item:last-child .contacts__social {
    width: 13rem;
  }
  .social {
    background: linear-gradient(180deg, #130336 0%, #130336 100%);
  }
  .social__wrapper {
    margin-top: 8rem;
    justify-content: center;
  }
  .social__item {
    width: calc(50% - 1rem);
  }
  .social__img-top,
.social__img-left,
.social__img-right {
    display: none;
  }
  .footer__lists {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
  }
  .accordeon__item-left > span,
.accordeon__item-right > span {
    font-size: 1.9rem;
  }
  .accordeon__item-winner {
    display: none;
  }
  .accordeon__item-winner-mob {
    display: flex;
    justify-content: center;
    margin-top: 1.1rem;
  }
  .accordeon__item-coefficient {
    padding: 2.8rem 3rem;
  }
  .accordeon__item-top {
    padding: 1.526rem 2rem;
  }
  .accordeon__item-title {
    margin-bottom: 4.5rem;
    font-size: 2.5rem;
    line-height: 2.7rem;
  }
  .accordeon__item-title::after {
    width: 100%;
  }
  .accordeon__item-left > img {
    margin-right: 2.2rem;
  }
  .accordeon__item-wrapper {
    align-items: center;
  }
  .accordeon__item-center {
    display: unset;
    flex-direction: unset;
    align-items: unset;
    padding-bottom: unset;
    width: 21rem;
    margin: 0 2rem;
  }
  .accordeon__item-winner > span {
    margin: 0 2rem;
    font-size: 2rem;
  }
  .accordeon__item-block,
.accordeon__item-time {
    margin-left: unset;
    margin-bottom: unset;
  }
  .accordeon__item-block {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .accordeon__item-team {
    justify-content: center;
    min-height: 16rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .accordeon__item-name {
    font-size: 1.9rem;
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .accordeon__item-logo {
    width: 5.2rem;
    height: 5.2rem;
  }
}
nav.active-menu {
  transform: translateX(0);
}

@media screen and (max-width: 450px) {
  .main__img-mob {
    bottom: -12rem;
  }
}

textarea {
  font-family: 'Roboto', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #20145B;
  border-radius: 10px;
  height: 10rem;
  width: 100%;
  border: 0;
  outline: none;
  padding-left: 2.9rem;
  padding-top: 1.6rem;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.2rem;
  letter-spacing: .02em;
  color: #fff;
  resize: none;
  transition: 0.3s ease-out;
}

textarea::placeholder {
  color: #fff;
}

.form__input {
  padding: 0 5.9rem 0 2.9rem !important;
}

.js-select2 .select2-results__option {
  position: relative;
  padding-right: 2rem;
  vertical-align: middle;
}

.js-select2 .select2-results__option:before {
  content: "";
  display: inline-block;
  position: relative;
  height: 2.1rem;
  width: 2.1rem;
  border: 2px solid #e9e9e9;
  border-radius: 5px;
  background-color: #fff;
  margin-right: 2rem;
  vertical-align: middle;
}

.js-select2 .select2-results__option[aria-selected=true]:before {
  font-family: fontAwesome;
  content: "\f00c";
  color: #fff;
  background-color: #fff;
  border: 0;
  display: inline-block;
  padding-left: .3rem;
}

.js-select2 .select2-results__option[aria-selected=true] {
  background-color: #fff;
}

.js-select2 .select2-results__option--highlighted[aria-selected] {
  background-color: #eaeaeb;
  color: #272727;
}

.js-select2 .select2-selection--multiple {
  /* margin-bottom: .7rem; */
  cursor: pointer !important;
  background: #20145B !important;
  border-radius: 10px !important;
}

.js-select2.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 4px;
}

.js-select2.select2-container--focus .select2-selection--multiple {
  border-color: #fff;
  border-width: .2rem;
}

.js-select2 .select2-selection--multiple {
  border-width: .2rem;
}

.js-select2 .select2-container--open .select2-dropdown--below {

  border-radius: 6px;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);

}

.js-select2 .select2-selection .select2-selection--multiple:after {
  content: 'hhghgh';
}

/* select with icons badges single*/
.js-select2 .select-icon .select2-selection__placeholder .badge {
  display: none;
}

.js-select2 .select-icon .placeholder {
  display: none;
}

.js-select2 .select-icon .select2-results__option:before,
.js-select2 .select-icon .select2-results__option[aria-selected=true]:before {
  display: none !important;
}

.js-select2 .select-icon .select2-search--dropdown {
  display: none;
}

.js-select2 .select2-container {
  width: 100% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #20145b;
  border-radius: 10px;
  height: 5.4rem;
  font-size: 1.6rem;
  border: 0;
  outline: none;
  color: #fff;
}

.select2-container,
.selection {
  display: block;
}

.js-select2.select2-container--focus .select2-selection--multiple {
  border: none !important;
}

.js-select2 .select2-selection--multiple {
  height: 100% !important;
  border: none;
  background-color: transparent;
  padding-top: .1rem !important;
  padding-bottom: .1rem !important;
}

.js-select2 .select2-selection--multiple {
  border: none !important;
  background-color: transparent !important;
}

.js-select2 .select2-container .select2-search--inline .select2-search__field {
  font-size: 1.6rem !important;
  font-family: inherit !important;
}

.js-select2 .select2-results__option:before {
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  background: transparent;
  color: transparent !important;
}

.js-select2 .select2-results__option:before {
  margin-right: 1rem !important;
}

.js-select2 .select2-results__option--selected::before {
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  background: #fff url("../select-img/line.svg") 54% 44% !important;
  background-size: 1.6rem 1.4rem !important;
  background-repeat: no-repeat !important;
  padding-left: 0px !important;
  margin-right: 1rem !important;
}

.js-select2 .select2-results__option[aria-selected=true]:before {
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  background: transparent;
  background-size: 1.6rem 1.4rem !important;
  background-repeat: no-repeat !important;
  padding-left: 0px !important;
  margin-right: 1rem !important;
}

.js-select2 .select2-results__option {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 1.5rem 0 1.5rem 2.9rem !important;
}

.js-select2 .select2-results__option--highlighted.select2-results__option--selectable {
  color: #fff !important;
  background-color: transparent !important;
}

.js-select2 .select2-results__option--highlighted.select2-results__option--selectable:hover.select2-results__option[aria-selected=true]:before {
  border: 1px solid #fff !important;
  border-radius: 5px !important;
  background: #fff url("../select-img/line.svg") 54% 44% !important;
  background-size: 1.6rem 1.4rem !important;
  background-repeat: no-repeat !important;
}

.js-select2 .select2-selection--multiple .select2-selection__choice__display {
  color: #20145B;
}

.js-select2 .select2-results__option--selected {
  background-color: transparent !important;
  display: block !important;
}

.js-select2 .select2-container--open .select2-dropdown--below {
  box-shadow: unset;
  border-radius: 0 !important;
}

.js-select2 .select2-container--open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.select2-dropdown--below .select2-results__options {
  background: #20145b !important;
  box-shadow: inset 0px 0px 0.5px rgba(13, 15, 17, 0.1) !important;
  filter: drop-shadow(6px 12px 24px rgba(102, 146, 204, 0.08)) !important;
}

.select2-dropdown--above .select2-results__options {
  background: #20145b !important;
  box-shadow: inset 0px 0px 0.5px rgba(13, 15, 17, 0.1) !important;
  filter: drop-shadow(6px -30px 24px rgba(102, 146, 204, 0.08)) !important;
}

.js-select2 .select2-selection--multiple.select2-selection--clearable {
  padding-right: 5rem !important;
  padding-left: 2.1rem !important;
}

.js-select2 .select2-container--open .select2-dropdown--below {
  box-shadow: unset !important;
  border: 1px solid transparent;
  border-bottom-left-radius: 2rem !important;
  border-bottom-right-radius: 2rem !important;
}

.js-select2 .form-field .select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  padding-left: 0 !important;
  flex-wrap: wrap !important;
}

.js-select2 .select2-container .select2-search--inline .select2-search__field {
  padding: 0 0 0 0.2rem !important;
  margin: 1rem 0 0 2.9rem !important;
  height: 2.1rem !important;
  line-height: 2.1rem !important;
  max-width: 80% !important;
  transform: translateY(-0.4rem);
}

.js-select2 .select2-container--open .select2-search--inline .select2-search__field {
  max-width: 100% !important;
}

.js-select2 .select2-selection--multiple {
  padding-top: 1rem !important;
  padding-bottom: 1.3rem !important;
}

.js-select2 .select2-container--below.select2-container--open {
  border-bottom: 1px solid rgba(254, 255, 255, .1);
}

.js-select2 .select2-container--above.select2-container--open {
  border-top: 1px solid rgba(254, 255, 255, .1);
}

.js-select2 .select2-selection--multiple .select2-selection__choice {
  background: #FFFFFF !important;
  box-shadow: 0px 0px 1.3rem rgba(6, 42, 67, 0.08) !important;
  border-radius: 5px !important;
  border: none !important;
  font-weight: 400 !important;
  font-size: 1.6rem !important;
  letter-spacing: 0.02em !important;
  color: #20145B !important;
  padding: .4rem 1.8rem .6rem .8rem;
}

.js-select2 .select2-selection--multiple .select2-selection__choice__remove {
  border-right: none !important;
  left: unset !important;
  right: .3rem !important;
  top: .4rem !important;
  color: #20145B !important;
}

.js-select2 .select2-container--open .select2-dropdown--above {
  border-top-left-radius: 2rem !important;
  border-top-right-radius: 2rem !important;
}

.js-select2 .select2-container--above {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
}

.js-select2 .select2-container--above.select2-container--open {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.js-select2 .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.js-select2 .select2-results__message {}

.js-select2 .select-arrow {
  position: absolute;
  right: 2.3rem;
  top: 1.2rem;
  width: 3rem;
  height: 3rem;
  z-index: 3;
  pointer-events: none;
  transform: rotate(180deg);
  transition: all .2s ease;
}

.js-select2 .select2-results>.select2-results__options {
  max-height: 27rem !important;
}

.js-select2 .select2-container--open+.select-arrow {
  transform: rotate(0);
}

.js-select2 .form-field.error label {
  display: block !important;
}


.js-select2 .form-field.valid label {
  display: none !important;
}


.js-select2 .select2-container--open .select2-dropdown--below {
  box-shadow: 0 10px 11px -4px rgba(0, 0, 0, 0.4) !important;
  -webkit-box-shadow: 0 10px 11px -4px rgba(0, 0, 0, 0.4) !important;
  -moz-box-shadow: 0 10px 11px -4px rgba(0, 0, 0, 0.4) !important;
}

.js-select2 .select2-container--open .select2-dropdown--above {
  box-shadow: 0 -10px 11px -4px rgba(0, 0, 0, 0.4) !important;
  -webkit-box-shadow: 0 -10px 11px -4px rgba(0, 0, 0, 0.4) !important;
  -moz-box-shadow: 0 -10px 11px -4px rgba(0, 0, 0, 0.4) !important;
}

.js-select2 .select2-results__message::before {
  display: none !important;
}

.select2-dropdown {
  background: none !important;
}

@media screen and (max-width:576px) {
  .js-select2 .select2-selection--multiple {
      margin-bottom: .6rem;
  }
}




/*# sourceMappingURL=main.css.map */
