@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Regular.woff") format("woff"), url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Medium.woff") format("woff"), url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-SemiBold.woff") format("woff"), url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Bold.woff") format("woff"), url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

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

/* width */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* Track */

::-webkit-scrollbar-track {
  border-radius: 42px;
  background: #0F112B;
  border: 1px solid #464B78;
  backdrop-filter: blur(15px);
}

/* Handle */

::-webkit-scrollbar-thumb {
  border-radius: 42px;
  background: #A41FD2;
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  border-radius: 42px;
  backdrop-filter: blur(15px);
  box-shadow: 0px 6px 20px rgba(164, 31, 210, 0.5);
}

html,
body {
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
  background: #04040B;
  color: #fff;
  overflow-x: hidden;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list {
  counter-increment: num-counter;
}

.list ul {
  color: #A3A4B1;
  font-size: 16px;
}

.list ul li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  padding-left: 40px;
  margin-bottom: 20px;
}

.list ul li:last-child {
  margin-bottom: 0;
}

.list ul li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../img/icons/check.svg) no-repeat left 0;
  font-size: 12px;
  font-weight: 600;
  color: #06F4F8;
}

.list ol {
  color: #A3A4B1;
  font-size: 16px;
}

.list ol li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  padding-left: 40px;
  margin-bottom: 20px;
}

.list ol li:last-child {
  margin-bottom: 0;
}

.list ol li::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  content: "";
  left: 0;
  width: 30px;
  height: 30px;
  background: url(../img/icons/check.svg) no-repeat left 0;
  font-size: 12px;
  font-weight: 600;
  color: #06F4F8;
}

.list ol li {
  counter-increment: num-counter;
}

.list ol li::before {
  content: counter(num-counter);
  background: url(../img/icons/uncheck.svg) no-repeat left 0;
}

.list h1,
.list h2,
.list h3,
.list h4,
.list h5,
.list h6,
.list .title,
.list p {
  margin: 0;
  padding: 0;
}

section,
.section {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}

.container {
  margin: 0 auto;
  width: 100%;
  padding: 0 7%;
  max-width: 1600px;
}

a {
  color: #06F4F8;
  text-decoration: none;
  transition: all ease 1s;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0;
  margin-bottom: 20px;
  padding: 0;
}

p:last-child {
  margin-bottom: 0;
}

.btn {
  position: relative;
  border: none;
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  outline: none;
  box-shadow: none;
  background: transparent;
  transition: all ease 1s;
  cursor: pointer;
}

.btn:hover,
.btn.active {
  text-decoration: none;
  background: #06F4F8;
  box-shadow: 0px 6px 20px rgba(6, 244, 248, 0.5);
}

.btn:hover {
  text-decoration: none;
}

.btn--primary {
  color: #fff;
  border-radius: 12px;
  padding: 10px 20px;
  min-width: 195px;
  min-height: 58px;
  height: fit-content;
  font-size: 20px;
}

.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  border-radius: 12px;
  background: linear-gradient(45.2deg, #07BADB 7.52%, #126994 25.69%, #212761 40.14%, #270E47 50.46%, #411256 62.43%, #6F1285 73.17%, #C21BDA 93.4%), #A41FD2;
}

.btn--primary::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  z-index: 0;
  border-radius: 12px;
  background: linear-gradient(224.1deg, #D353DE 7.81%, #491778 49.34%, #13EDF6 91.68%);
}

.btn--primary span {
  z-index: 2;
}

.btn--secondary {
  background-color: #A41FD2;
}

.btn--circle {
  border-radius: 100px;
}

.btn--md {
  min-width: 50px;
  min-height: 50px;
  height: fit-content;
}

.btn--sm {
  min-width: 40px;
  min-height: 40px;
  height: fit-content;
}

h1,
.h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: initial;
}

h2,
.h2 {
  font-size: 44px;
  font-weight: 500;
  line-height: initial;
}

h3,
.h3 {
  font-size: 38px;
  font-weight: 500;
  line-height: initial;
}

h4,
.h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: initial;
}

h5,
.h5 {
  font-size: 26px;
  font-weight: 500;
  line-height: initial;
}

h6,
.h6 {
  font-size: 20px;
  font-weight: 500;
  line-height: initial;
}

.title {
  margin: 0;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 44px;
  text-align: center;
}

.title--left {
  text-align: left;
}

.card {
  background: #0F112B;
  padding: 40px;
  border-radius: 12px;
}

.text-secondary {
  color: #A3A4B1;
  font-size: 16px;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Regular.woff") format("woff"), url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Medium.woff") format("woff"), url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-SemiBold.woff") format("woff"), url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Bold.woff") format("woff"), url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

.header {
  top: 0;
  right: 0;
  left: 0;
  position: relative;
  z-index: 100;
  left: 0;
  right: 0;
}

.header.stickynav {
  position: fixed;
  background: #0F112B;
  border-bottom: 1px solid #464B78;
  padding-top: 5px;
  animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header__content {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
  gap: 20px 40px;
}

.header__brand {
  max-height: 60px;
  display: flex;
  align-items: center;
}

.header__brand picture,
.header__brand img,
.header__brand source {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__support-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.header__support-btn:hover {
  text-decoration: none;
  color: #06F4F8;
}

.header__support-btn:hover .btn {
  background-color: #06F4F8;
  box-shadow: 0px 6px 20px rgba(6, 244, 248, 0.5);
}

.header__contacts {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 50px;
}

.header__toggle-btn {
  display: none;
}

.nav__list {
  padding: 0;
  gap: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__item {
  margin: 0;
}

.nav__item-link {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  transition: all ease 1s;
}

.nav__item-link:hover,
.nav__item-link.active {
  color: #06F4F8;
  text-decoration: none;
}

.nav__contacts {
  display: none;
}

/* Add Animation */

@keyframes animaOpacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Regular.woff") format("woff"), url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Medium.woff") format("woff"), url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-SemiBold.woff") format("woff"), url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Bold.woff") format("woff"), url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

.hero {
  padding: 0;
}

.hero__content {
  background: #0F112B;
  display: flex;
  position: relative;
  border-radius: 12px;
}

.hero__content::before {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  filter: blur(75px);
  border-radius: 200px;
  right: 310px;
  top: -109.5px;
  background: rgba(58, 248, 248, 0.3);
}

.hero__content::after {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  filter: blur(75px);
  border-radius: 200px;
  right: -20px;
  top: 84.5px;
  background: rgba(177, 37, 210, 0.3);
}

.hero__inner {
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
  z-index: 1;
}

.hero__title {
  font-weight: 700;
  margin: 0;
}

.hero__subtitle {
  margin: 0;
}

.hero__img {
  display: flex;
  align-items: flex-end;
  align-self: flex-end;
  justify-content: flex-end;
  max-width: 500px;
  height: 100%;
  margin-top: auto;
}

.hero__img picture,
.hero__img img,
.hero__img source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.exchange-calculator__content {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.exchange-calculator__content::before {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  left: -50px;
  top: 0;
  background: rgba(58, 248, 248, 0.3);
  filter: blur(75px);
  border-radius: 200px;
  z-index: -1;
}

.exchange-calculator__form {
  grid-column: span 3;
}

.exchange-calculator__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}

.exchange-calculator__row:first-child {
  border-bottom: 1px solid #464B78;
}

.exchange-calculator__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.exchange-calculator__rate {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.exchange-calculator__rate-text {
  color: #A3A4B1;
  font-size: 16px;
}

.exchange-calculator__rate-text span {
  color: #FFFFFF;
  display: block;
  font-weight: 500;
}

.exchange-calculator__rate-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 60px;
  background: #070916;
  border-radius: 12px;
  color: #A3A4B1;
}

.exchange-calculator__rate-course {
  font-weight: 500;
}

.form__group {
  position: relative;
  display: flex;
  align-items: center;
  position: relative;
}

.form__addon {
  position: absolute;
  color: #A3A4B1;
  right: 15px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  display: none;
}

select,
::picker(select) {
  appearance: base-select;
}

label,
.form__label {
  width: 100%;
  align-self: center;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

select,
.form__input {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #464B78;
  background: transparent;
  height: 60px;
  padding: 10px 15px;
  transition: 0.4s;
  cursor: pointer;
  color: #fff;
  font-weight: 400;
  border-radius: 12px;
}

select:hover,
select:focus,
.form__input:hover,
.form__input:focus {
  border-color: #A41FD2;
}

select selectedcontent,
.form__input selectedcontent {
  display: flex;
  align-items: center;
  gap: 10px;
}

select::picker-icon,
.form__input::picker-icon {
  color: #fff;
  transition: 0.4s rotate;
  align-self: center;
}

select:open::picker-icon,
.form__input:open::picker-icon {
  rotate: 180deg;
}

select::placeholder,
.form__input::placeholder {
  color: #A3A4B1;
  font-size: 20px;
}

option {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  background: #0F112B;
  border: 1px solid #464B78;
  padding: 10px 15px;
  transition: 0.4s;
  color: #fff;
}

option:not(option:first-of-type) {
  border-top: none;
}

option:not(option:last-of-type) {
  border-bottom: none;
}

option:hover,
option:focus {
  background: #15173D;
}

option .icon {
  font-size: 1.6rem;
  text-box: trim-both cap alphabetic;
}

::picker(select) {
  border-radius: 8px;
  border: none;
}

.advantages picture,
.advantages img,
.advantages source {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.advantages__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantages__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
  padding: 40px 0;
}

.advantages__item:nth-child(1)::before,
.advantages__item:nth-child(2)::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: linear-gradient(267.9deg, #491778 3.26%, #D353DE 34.33%, #13EDF6 66.33%, #013335 99.73%);
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.advantages__item-icon {
  width: 100px;
  height: 100px;
}

.advantages__item-text {
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.advantages__item-text span {
  display: block;
  margin-top: 20px;
}

.advantages__img {
  grid-row: 1/3;
  grid-column: 2/4;
  position: relative;
  align-self: center;
}

.advantages__img::before {
  position: absolute;
  content: "";
  background: url("../img/advantages.png") no-repeat center/contain;
  width: 100%;
  height: 100%;
  filter: blur(50px);
  z-index: -1;
  bottom: 30px;
}

.how-it-works__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: num-counter;
}

.how-it-works__item {
  position: relative;
  counter-increment: num-counter;
}

.how-it-works__item::before {
  content: counter(num-counter);
  font-size: 24px;
  position: absolute;
  left: -10px;
  top: -10px;
  z-index: 1;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A41FD2;
  border-radius: 100px;
}

.how-it-works__title {
  margin: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

.rules__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.rules__item {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
}

.rules__item:nth-child(2) {
  grid-row: 2;
}

.rules__item:nth-child(3) {
  grid-row: span 2;
  grid-column: 3;
}

.rules__item:nth-child(3) .rules__list {
  width: 100%;
  margin-bottom: 200px;
}

.rules__list {
  width: calc(100% - 150px);
}

.rules__img {
  position: absolute;
  right: -70px;
  bottom: 0;
  transform: rotate(15deg);
  width: 254px;
  height: 254px;
}

.rules__img picture,
.rules__img img,
.rules__img source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__adress {
  color: #A3A4B1;
  font-size: 16px;
  margin: 0;
}

.contact__adress span {
  color: #FFFFFF;
  display: block;
  font-weight: 500;
}

.contact__tel,
.contact__email {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: none;
}

.contact__tel:hover,
.contact__email:hover {
  text-decoration: none;
  color: #06F4F8;
}

.contact__tel:hover .btn,
.contact__email:hover .btn {
  background-color: #06F4F8;
  box-shadow: 0px 6px 20px rgba(6, 244, 248, 0.5);
}

.contact__map {
  grid-column: span 2;
}

.contact__map iframe {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 12px;
}

.seo__content {
  background: #0F112B;
  display: flex;
  position: relative;
  border-radius: 12px;
}

.seo__content::before {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  filter: blur(75px);
  border-radius: 200px;
  right: 0px;
  bottom: -0.5px;
  background: rgba(58, 248, 248, 0.3);
}

.seo__content::after {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  filter: blur(75px);
  border-radius: 200px;
  right: 300px;
  top: 44.5px;
  background: rgba(177, 37, 210, 0.3);
}

.seo__inner {
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
  width: calc(100% - 500px);
  max-height: 450px;
  overflow-y: auto;
  z-index: 1;
}

.seo__img {
  display: flex;
  align-self: flex-end;
  justify-content: flex-end;
  max-width: 500px;
  height: 100%;
  margin-top: auto;
}

.seo__img picture,
.seo__img img,
.seo__img source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider {
  position: relative;
}

.slider__wrap {
  overflow: hidden;
  height: 100%;
  display: flex;
}

.slider__slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider__slide {
  width: 100%;
  flex-shrink: 0;
}

.slider__img {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.slider__img picture,
.slider__img img,
.slider__img source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__prev,
.slider__next {
  position: absolute;
  top: -10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #A41FD2;
  border-radius: 0 100px 100px 0;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  z-index: 2;
  transition: all ease 1s;
}

.slider__prev:hover,
.slider__next:hover {
  background: #06F4F8;
  box-shadow: 0px 6px 20px rgba(6, 244, 248, 0.5);
}

.slider__prev {
  left: -10px;
  border-radius: 100px 0 0 100px;
}

.slider__next {
  left: 41px;
}

.lightboxT {
  transition: opacity 0.5s linear;
}

.lightboxT__inside {
  position: fixed;
  z-index: 99999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(10px);
}

.lightboxT__inside__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  max-width: 90%;
  max-height: 90%;
  transition: 0.3s opacity linear;
  background: #0F112B;
  border: 1px solid #464B78;
  padding: 40px;
  border-radius: 12px;
  animation-name: animaOpacity;
  animation-duration: 0.5s;
}

.lightboxT__inside__img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  height: auto;
  display: block;
  transition: 1s all;
  max-width: 100%;
  max-height: calc(90vh - 40px);
}

.lightboxT__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a1abb9;
  font-weight: 700;
  font-size: 20px;
  transition: all ease 1s;
  cursor: pointer;
}

.lightboxT__close:hover {
  color: #fff;
}

.lightboxT__title {
  display: inline-block;
  color: #fff;
  font-size: 20px;
}

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

.lightboxT__count {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 15px;
  margin-bottom: 0;
  padding: 20px;
  background: #0F112B;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 12px 12px;
}

.lightboxT__count span {
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

.lightboxT__arrows {
  position: absolute;
  z-index: 1;
  bottom: 0;
  color: transparent;
  cursor: pointer;
}

.lightboxT__arrows__inside {
  transition: all ease 1s;
}

.lightboxT__arrows__inside--next {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.lightboxT__arrows__inside--prev {
  display: flex;
  justify-content: center;
}

.lightboxT__prev,
.lightboxT__next {
  position: absolute;
  top: -10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #A41FD2;
  border-radius: 0 100px 100px 0;
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
  transition: all ease 1s;
}

.lightboxT__prev:hover,
.lightboxT__next:hover {
  background: #06F4F8;
  box-shadow: 0px 6px 20px rgba(6, 244, 248, 0.5);
}

.lightboxT__prev img,
.lightboxT__next img {
  width: 20px;
  height: 20px;
}

.lightboxT__prev {
  left: -10px;
  border-radius: 100px 0 0 100px;
}

.lightboxT__next {
  left: 41px;
}

.about__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about__inner {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
  max-height: 450px;
  overflow-y: auto;
  grid-column: span 2;
}

.faq__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.faq__links {
  display: grid;
  gap: 20px;
}

.faq__link {
  position: relative;
  overflow: hidden;
  color: #fff;
  margin: 0;
  font-weight: 500;
}

.faq__link:hover,
.faq__link.active {
  color: #06F4F8;
  text-decoration: none;
}

.faq__link.active {
  position: relative;
}

.faq__link.active::before {
  position: absolute;
  content: "";
  left: 100%;
  top: 0;
  bottom: 0;
  width: 20px;
  background: #0F112B;
}

.faq__link.active .faq__img {
  background: url("../img/icons/plus.svg") no-repeat center/cover;
}

.faq__link .h6 {
  width: calc(100% - 80px);
  display: block;
}

.faq__img {
  background: url("../img/icons/minus.svg") no-repeat center/cover;
  width: 150px;
  height: 150px;
  right: -40px;
  bottom: 0;
  position: absolute;
  transform: rotate(15deg);
}

.faq__item {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  display: none;
}

.faq__item.active {
  display: block;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq__item-title {
  font-weight: 500;
}

.faq__item-img {
  position: absolute;
  right: -70px;
  bottom: 0;
  transform: rotate(15deg);
  width: 254px;
  height: 254px;
}

.faq__item-img picture,
.faq__item-img img,
.faq__item-img source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Regular.woff") format("woff"), url("../fonts/Inter_18pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Medium.woff") format("woff"), url("../fonts/Inter_18pt-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-SemiBold.woff") format("woff"), url("../fonts/Inter_18pt-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter_18pt-Bold.woff") format("woff"), url("../fonts/Inter_18pt-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

.banner__content {
  background: #0F112B;
  display: flex;
  position: relative;
  border-radius: 12px;
}

.banner__content::before {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  filter: blur(75px);
  border-radius: 200px;
  right: 0px;
  bottom: -0.5px;
  background: rgba(58, 248, 248, 0.3);
}

.banner__content::after {
  content: "";
  position: absolute;
  width: 288px;
  height: 285px;
  filter: blur(75px);
  border-radius: 200px;
  right: 300px;
  top: 44.5px;
  background: rgba(177, 37, 210, 0.3);
}

.banner__inner {
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
  z-index: 1;
}

.banner__title {
  margin: 0;
}

.banner__subtitle {
  margin: 0;
}

.banner__img {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  min-height: 100%;
}

.banner__img picture,
.banner__img img,
.banner__img source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: none;
  padding: 0 24px;
}

.footer {
  color: #A3A4B1;
  font-size: 16px;
  padding: 40px 0;
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.footer__item {
  flex-grow: 1;
}

.footer__item-title {
  font-weight: 500;
  color: #fff;
  margin: 0;
  margin-bottom: 20px;
}

.footer__list-item {
  margin-bottom: 10px;
}

.footer__list-link {
  color: #A3A4B1;
}

.footer__list-link:hover {
  color: #06F4F8;
  text-decoration: none;
}

.footer__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  border-top: 1px solid #464B78;
  border-bottom: 1px solid #464B78;
}

.footer__social-btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__phone {
  color: #fff;
}

.footer__phone:hover {
  text-decoration: none;
  color: #06F4F8;
}

.footer__email {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.footer__email:hover {
  text-decoration: none;
  color: #06F4F8;
}

.footer__email:hover .btn {
  background-color: #06F4F8;
  box-shadow: 0px 6px 20px rgba(6, 244, 248, 0.5);
}

@media (max-width: 1399px) {
  .header__contacts {
    column-gap: 30px;
  }
}

@media (max-width: 1299px) {
  .header__brand {
    max-height: 40px;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }

  ul,
  ol {
    margin-bottom: 15px;
  }

  .list ul {
    font-size: 14px;
  }

  .list ol {
    font-size: 14px;
  }

  section,
  .section {
    padding: 20px 0;
  }

  .container {
    padding: 0 20px;
  }

  p {
    margin-bottom: 15px;
  }

  .btn--primary {
    min-width: fit-content;
    min-height: 38px;
    padding: 2px 15px;
    font-size: 16px;
  }

  .btn--md {
    min-width: 40px;
    min-height: 40px;
  }

  h1,
  .h1 {
    font-size: 24px;
  }

  h2,
  .h2 {
    font-size: 22px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  h5,
  .h5 {
    font-size: 16px;
  }

  h6,
  .h6 {
    font-size: 14px;
  }

  .title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .card {
    padding: 20px;
  }

  .text-secondary {
    font-size: 14px;
  }

  .header__support-btn .text {
    display: none;
  }

  .nav__item-link {
    font-size: 14px;
  }

  .hero {
    padding: 0;
  }

  .hero__inner {
    padding: 20px;
  }

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

  .exchange-calculator__form {
    grid-column: 1;
  }

  .exchange-calculator__row {
    flex-direction: column;
  }

  .exchange-calculator__rate-text span {
    font-size: 14px;
  }

  .exchange-calculator__rate-timer {
    height: 40px;
  }

  select,
  .form__input {
    height: 40px;
    padding: 2px 10px;
  }

  select::placeholder,
  .form__input::placeholder {
    font-size: 16px;
  }

  option {
    padding: 5px 10px;
  }

  .advantages__content {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages__item {
    padding: 20px 0;
    gap: 10px;
  }

  .advantages__item-icon {
    width: 50px;
    height: 50px;
  }

  .advantages__item-text span {
    margin-top: 10px;
  }

  .advantages__img {
    grid-row: 1/4;
    grid-column: 2;
  }

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

  .how-it-works__item::before {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .how-it-works__title {
    margin-bottom: 10px;
  }

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

  .rules__item {
    grid-column: 1;
  }

  .rules__item:nth-child(3) {
    grid-column: 2;
  }

  .rules__list {
    margin-bottom: 170px;
  }

  .rules__img {
    width: 200px;
    height: 200px;
    right: -50px;
  }

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

  .contact__adress {
    font-size: 14px;
  }

  .contact__tel,
  .contact__email {
    font-size: 14px;
  }

  .contact__map {
    grid-column: 2;
  }

  .seo__inner {
    padding: 20px;
    width: 100%;
    max-height: fit-content;
  }

  .slider__prev,
  .slider__next {
    width: 40px;
    height: 40px;
  }

  .slider__next {
    left: 31px;
  }

  .lightboxT__inside__container {
    padding: 20px;
  }

  .lightboxT__count {
    height: 40px;
  }

  .lightboxT__prev,
  .lightboxT__next {
    width: 40px;
    height: 40px;
  }

  .lightboxT__next {
    left: 31px;
  }

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

  .about__inner {
    grid-column: 2;
  }

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

  .faq__link .h6 {
    width: calc(100% - 40px);
  }

  .faq__img {
    width: 80px;
    height: 80px;
    right: -20px;
  }

  .faq__item {
    grid-column: 2;
  }

  .faq__inner {
    margin-bottom: 170px;
  }

  .faq__item-img {
    width: 200px;
    height: 200px;
    right: -50px;
  }

  .banner__inner {
    padding: 20px;
  }

  .banner__title {
    margin: 0;
  }

  .banner__btn {
    font-size: 14px;
    padding: 0 15px;
  }

  .footer {
    font-size: 14px;
    padding: 20px 0;
  }
}

@media (max-width: 991px) {
  .header__content {
    flex-wrap: nowrap;
    padding: 15px 0;
    display: flex;
    gap: 20px;
  }

  .header__contacts {
    display: none;
  }

  .header__toggle-btn {
    margin: 0;
    display: flex;
  }

  .nav__item-link {
    padding: 0;
  }

  .nav__item-link.nav__btn {
    padding: 11px 20px;
  }

  .nav__item-link:hover,
  .nav__item-link.active {
    border: none;
  }

  .nav {
    display: none;
  }

  .nav__btn {
    display: none;
  }

  .nav.show {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
    animation-name: animaOpacity;
    animation-duration: 0.5s;
    z-index: 10;
    background: #0F112B;
    border: 1px solid #464B78;
    border-radius: 12px;
  }

  .nav.show .nav__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .nav.show .nav__item {
    width: 100%;
  }

  .nav.show .nav__item-link {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    transition: 0.4s;
  }

  .nav.show .nav__item-link:hover {
    background: #15173D;
  }

  .exchange-calculator__swap img {
    transform: rotate(90deg);
  }

  .slider__wrap {
    max-height: 250px;
  }

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

  .about__inner {
    width: 100%;
    max-height: fit-content;
  }

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

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

@media (max-width: 991px) and (max-width: 767px) {
  .nav {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .hero__content {
    flex-direction: column;
  }

  .hero__img {
    align-self: center;
  }

  .exchange-calculator__content {
    grid-template-columns: 1fr;
  }

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

  .rules__item:nth-child(3) .rules__list {
    width: calc(100% - 80px);
    margin: 0;
  }

  .rules__list {
    width: calc(100% - 80px);
    margin: 0;
  }

  .rules__img {
    width: 150px;
    height: 150px;
    right: -40px;
  }

  .contact__content {
    display: flex;
    flex-direction: column-reverse;
  }

  .seo__content {
    flex-direction: column;
  }

  .faq__inner {
    width: calc(100% - 80px);
    margin: 0;
  }

  .faq__item-img {
    width: 150px;
    height: 150px;
    right: -40px;
  }

  .banner__content {
    flex-direction: column-reverse;
  }

  .banner__img {
    align-self: center;
  }

  .footer__contact {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .header__support-btn {
    display: none;
  }

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

  .advantages__img {
    display: none;
  }

  .how-it-works__content {
    grid-template-columns: 1fr;
  }

  .rules__item:nth-child(3) .rules__list {
    width: 100%;
  }

  .rules__list {
    width: 100%;
  }

  .rules__img {
    display: none;
  }

  .faq__links {
    grid-template-columns: 1fr;
  }

  .faq__link .h6 {
    width: 100%;
  }

  .faq__img {
    display: none;
  }

  .faq__inner {
    width: 100%;
  }

  .faq__item-img {
    display: none;
  }
}

.webp .advantages__img::before { background: url(../img/advantages.webp) no-repeat center/contain; }