* {
  padding: 0;
  margin: 0;
  border: 0
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

:active,
:focus {
  outline: 0
}

a:active,
a:focus {
  outline: 0
}

aside,
footer,
header,
nav {
  display: block
}

body,
html {
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable
}

button,
input,
textarea {
  font-family: inherit
}

input::-ms-clear {
  display: none
}

input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: inherit
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: inherit
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: inherit
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: inherit
}

input::placeholder,
textarea::placeholder {
  color: inherit
}

textarea {
  resize: none
}

button {
  cursor: pointer;
  background-color: transparent
}

button::-moz-focus-inner {
  padding: 0;
  border: 0
}

a {
  display: inline-block;
  color: inherit
}

a,
a:visited {
  text-decoration: none
}

a:hover {
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  vertical-align: top
}

svg {
  display: block;
  width: 100%;
  height: 100%
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit
}

picture {
  display: block;
  width: 100%;
  height: 100%
}

input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0
}

input[type=number] {
  -moz-appearance: textfield
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/Montserrat-Bold.woff2) format("woff2")
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/Montserrat-Regular.woff2) format("woff2")
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Montserrat-Medium.woff2) format("woff2")
}

@font-face {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(../fonts/Montserrat-Light.woff2) format("woff2")
}

:root {
  --font-main: "Montserrat", sans-serif;
  --container-width: 1380px;
  --container-step: 20px;
  --container-step-tablet: 15px;
  --container-step-mobile: 10px;
  --container: calc(var(--container-width) + (var(--container-step) * 2));
  --background-page: rgb(240, 242, 245);
  --main: #000000;
  --black: #000000;
  --white: #ffffff;
  --purple: #4f00e0;
  --gray: rgb(240, 242, 245);
  --blue: rgb(0, 60, 189);
  --hover: #5b03ff;
  --active: #5b03ff
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step)
}

@media (max-width:991px) {
  .container {
    padding: 0 var(--container-step-tablet)
  }
}

@media (max-width:600px) {
  .container {
    padding: 0 var(--container-step-mobile)
  }
}

.rd-transfer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: var(--font-main);
  min-height: 100vh;
  overflow: hidden;
  color: var(--main);
  background-color: var(--background-page)
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-top: 120px
}

.main:not(:last-child) {
  margin-bottom: 80px
}

@media (max-width:600px) {
  .main:not(:last-child) {
    margin-bottom: 60px
  }
}

.main_no-margin:not(:last-child) {
  margin-bottom: 0
}

a,
button {
  color: var(--main)
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0)
}

.tx-28-18 {
  font-size: 28px;
  line-height: 1.2;
  font-size: 400
}

@media (max-width:1220px) {
  .tx-28-18 {
    font-size: 26px
  }
}

@media (max-width:991px) {
  .tx-28-18 {
    font-size: 22px
  }
}

@media (max-width:600px) {
  .tx-28-18 {
    font-size: 18px
  }
}

.input {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  color: var(--black);
  border: 1px solid rgba(0, 0, 0, .3);
  border-radius: 10px;
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out
}

@media (any-hover:hover) {
  .input:hover {
    border-color: var(--hover)
  }
}

.input:focus-visible {
  border-color: var(--hover)
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
  position: static;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  padding: 5px 10px;
  border-radius: 10px;
  background-color: var(--blue)
}

.pagination .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  opacity: .3;
  border-radius: 10px;
  margin: 0 !important;
  background-color: var(--white)
}

.pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 4px;
  opacity: 1
}

.link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 77px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 36px;
  border-radius: 66px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 5px 16px;
  color: var(--white);
  background-color: var(--purple);
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

.link_light {
  color: var(--black);
  background-color: var(--gray)
}

@media (any-hover:hover) {
  .link:hover {
    background-color: var(--hover)
  }
}

.link:focus-visible {
  background-color: var(--hover)
}

.link:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.but {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  color: var(--white);
  background-color: var(--purple);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 52px;
  min-width: 160px;
  border-radius: 64px;
  -webkit-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out
}

.but_white {
  color: var(--black);
  background-color: var(--white)
}

@media (max-width:991px) {
  .but {
    font-size: 14px;
    min-height: 46px
  }
}

@media (max-width:600px) {
  .but {
    font-size: 12px;
    min-height: 40px;
    min-width: 80px
  }
}

@media (any-hover:hover) {
  .but:hover {
    background-color: var(--hover)
  }
}

.but:focus-visible {
  background-color: var(--hover)
}

.but:active {
  background-color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.tx-main {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:600px) {
  .tx-main {
    font-size: 14px
  }
}

.tx-20-16 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:991px) {
  .tx-20-16 {
    font-size: 18px
  }
}

@media (max-width:600px) {
  .tx-20-16 {
    font-size: 16px
  }
}

.tx-14-12 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:600px) {
  .tx-14-12 {
    font-size: 12px
  }
}

.tx-10 {
  font-size: 10px;
  font-weight: 400;
  line-height: 1.2
}

.logo {
  display: block;
  width: 88px;
  height: 36px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
  .logo:hover {
    opacity: .5
  }
}

.logo:focus-visible {
  opacity: .5
}

.logo:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.search {
  padding: 0 10px;
  display: block;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  background-color: var(--gray);
  border-radius: 66px;
  border: 1px solid rgba(20, 28, 41, .3);
  -webkit-transition: border-color .3s ease-in-out;
  transition: border-color .3s ease-in-out
}

@media (any-hover:hover) {
  .search:hover {
    border-color: var(--hover)
  }
}

.search:focus-visible {
  border-color: var(--hover)
}

.tx-9-6 {
  font-size: 9px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:1220px) {
  .tx-9-6 {
    font-size: 8px
  }
}

@media (max-width:991px) {
  .tx-9-6 {
    font-size: 7px
  }
}

@media (max-width:600px) {
  .tx-9-6 {
    font-size: 6px
  }
}

.mb-20:not(:last-child) {
  margin-bottom: 20px
}

.mb-40-30:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:600px) {
  .mb-40-30:not(:last-child) {
    margin-bottom: 30px
  }
}

.mb-10:not(:last-child) {
  margin-bottom: 10px
}

.mb-80-60:not(:last-child) {
  margin-bottom: 80px
}

@media (max-width:600px) {
  .mb-80-60:not(:last-child) {
    margin-bottom: 60px
  }
}

.word-break {
  word-break: break-all
}

.m-auto {
  margin-left: auto;
  margin-right: auto
}

.img-contain {
  -o-object-fit: contain;
  object-fit: contain
}

.img-cover {
  -o-object-fit: cover;
  object-fit: cover
}

.underline {
  text-decoration: underline
}

.text-center {
  text-align: center
}

.text-right {
  text-align: right
}

.uppercase {
  text-transform: uppercase
}

.lowercase {
  text-transform: lowercase
}

.fw-100 {
  font-weight: 100
}

.fw-200 {
  font-weight: 200
}

.fw-300 {
  font-weight: 300
}

.fw-400 {
  font-weight: 400
}

.fw-500 {
  font-weight: 500
}

.fw-600 {
  font-weight: 600
}

.fw-700 {
  font-weight: 700
}

.fw-800 {
  font-weight: 800
}

.fw-900 {
  font-weight: 900
}

.rd-upload img {
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.rd-load img {
  opacity: 1
}

.scroll {
  padding-bottom: 10px;
  overflow: auto
}

.scroll::-webkit-scrollbar {
  height: 4px;
  background-color: var(--white)
}

.scroll::-webkit-scrollbar-thumb {
  background-color: var(--purple)
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--white);
  padding: 20px 0
}

@media (max-width:600px) {
  .header {
    padding: 10px 0
  }
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px
}

@media (max-width:600px) {
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px 20px
}

@media (max-width:600px) {
  .header__left {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

.header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media (max-width:600px) {
  .header__links {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

.wrapper-search {
  position: relative
}

.wrapper-search__button {
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .wrapper-search__button:hover {
    color: var(--hover)
  }
}

.wrapper-search__button:focus-visible {
  color: var(--hover)
}

.wrapper-search__button:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 40px
}

@media (max-width:900px) {
  .hero__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.hero__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  padding: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 100%;
  border-radius: 20px;
  background-color: var(--white)
}

@media (max-width:900px) {
  .hero__item {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.hero__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 20px
}

.hero__form-button {
  min-width: 0;
  width: 100%
}

.hero-slider {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  width: 100%
}

@media (max-width:900px) {
  .hero-slider {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none
  }
}

.hero-slider__slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 268px;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  background-color: var(--blue);
  overflow: hidden
}

@media (max-width:991px) {
  .hero-slider__slide {
    width: 400px
  }
}

@media (max-width:600px) {
  .hero-slider__slide {
    width: 100%;
    min-height: 200px
  }
}

.hero-slider__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  color: var(--white);
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 2
}

.hero-slider__image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  height: 300px;
  width: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none
}

@media (max-width:991px) {
  .hero-slider__image {
    width: 250px;
    height: 250px
  }
}

@media (max-width:600px) {
  .hero-slider__image {
    width: 200px;
    height: 200px
  }
}

@media (max-width:450px) {
  .hero-slider__image {
    right: -50px
  }
}

.hero-slider__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.hero-slider__pagination {
  position: absolute;
  bottom: 7px !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
  z-index: 3
}

.teter__content {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white)
}

.teter__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media (max-width:768px) {
  .teter__top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }
}

.teter__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media (max-width:991px) {
  .teter__left {
    gap: 15px
  }
}

@media (max-width:600px) {
  .teter__left {
    gap: 10px
  }
}

.teter__icon {
  width: 50px;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 10px
}

@media (max-width:991px) {
  .teter__icon {
    width: 40px;
    height: 40px
  }
}

.teter__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

@media (max-width:768px) {
  .teter__right {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

.teter__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px
}

.teter__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--gray);
  -webkit-transition: color .3s ease-in-out, opacity .3s ease-in-out;
  transition: color .3s ease-in-out, opacity .3s ease-in-out
}

.teter__button.swiper-button-disabled {
  opacity: .3;
  pointer-events: none
}

@media (any-hover:hover) {
  .teter__button:hover {
    color: var(--hover)
  }
}

.teter__button:focus-visible {
  color: var(--hover)
}

.teter__button:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.teter__button svg {
  display: block;
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
  object-fit: contain
}

.teter__all {
  min-width: 20px
}

.sliders-button-prev svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg)
}

.sliders__slide {
  width: 164px;
  height: 245px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px
}

.sliders__slide_action {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  width: 400px;
  min-height: 220px;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  background-color: var(--purple)
}

@media (max-width:450px) {
  .sliders__slide_action {
    width: 100%
  }
}

.sliders__descr {
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -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;
  gap: 20px;
  position: relative;
  z-index: 2
}

.sliders__descr-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px
}

.sliders__play {
  min-width: 0;
  min-height: 40px;
  padding: 4px 10px
}

.sliders__play::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.sliders__image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 170px;
  height: 170px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain
}

.sliders__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 10px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
  .sliders__link:hover {
    opacity: .5
  }
}

.sliders__link:focus-visible {
  opacity: .5
}

.sliders__link:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.sliders__text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 5px;
  border-radius: 20px;
  background-color: var(--gray)
}

.footer__content {
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white)
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.footer__gcb {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 150px;
  flex: 0 1 150px;
  height: 85px
}

.footer__gcb a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (any-hover:hover) {
  .footer__gcb a:hover {
    opacity: .5
  }
}

.footer__gcb a:focus-visible {
  opacity: .5
}

.footer__gcb a:active {
  opacity: .5;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.footer__links-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 62px;
  flex: 0 1 62px;
  height: 32px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover
}

.footer__texts a {
  color: var(--purple);
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .footer__texts a:hover {
    color: var(--hover)
  }
}

.footer__texts a:focus-visible {
  color: var(--hover)
}

.footer__texts a:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 15px 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.nav__link {
  -webkit-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

@media (any-hover:hover) {
  .nav__link:hover {
    color: var(--hover)
  }
}

.nav__link:focus-visible {
  color: var(--hover)
}

.nav__link:active {
  color: var(--active);
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.reviews__item {
  border: 2px solid var(--blue);
  border-radius: 8px;
  padding: 20px
}

@media (max-width:991px) {
  .reviews__item {
    padding: 16px
  }
}

@media (max-width:600px) {
  .reviews__item {
    padding: 10px
  }
}

.reviews__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.reviews__icon {
  width: 60px;
  height: 60px
}

.reviews__icon img {
  border-radius: 50%
}

.faq__item {
  padding: 10px;
  border-radius: 8px;
  border: 2px solid var(--blue)
}

.faq__item.active .faq__button svg {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg)
}

.faq__item.active .faq__item-bottom {
  display: block
}

.faq__item-top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  padding-bottom: 10px
}

.faq__button {
  width: 24px;
  height: 24px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

@media (max-width:991px) {
  .faq__button {
    width: 20px;
    height: 20px
  }
}

@media (max-width:600px) {
  .faq__button {
    width: 16px;
    height: 16px
  }
}

@media (any-hover:hover) {
  .faq__button:hover {
    opacity: .6
  }
}

.faq__button:focus-visible {
  opacity: .6
}

.faq__button:active {
  opacity: .6;
  -webkit-transition-duration: .1s;
  transition-duration: .1s
}

.faq__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1
}

.faq__item-bottom {
  display: none
}

.faq__texts {
  padding-bottom: 10px
}

.wrapper-table {
  padding-bottom: 10px
}

.wrapper-table__table {
  min-width: 900px
}

.wrapper-table__th {
  padding: 15px;
  text-align: left;
  border: 2px solid var(--blue)
}

.wrapper-table__td {
  padding: 15px;
  border: 2px solid var(--blue)
}

a {
  color: inherit
}

.content {
  border-radius: 20px;
  padding: 20px;
  background-color: var(--white)
}

.items__el {
  border-radius: 20px;
  padding: 20px;
  background-color: var(--white)
}

.items__el:not(:last-child) {
  margin-bottom: 40px
}

.items thead th {
  font-weight: 700
}

.items thead th:nth-child(1) {
  width: 100px
}

.items thead th:nth-child(2) {
  width: 300px
}

.items thead th:nth-child(3) {
  width: 300px
}

.items thead th:nth-child(4) {
  width: 300px
}

.items tbody td {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2
}

@media (max-width:600px) {
  .items tbody td {
    font-size: 14px
  }
}

.items li {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:600px) {
  .items li {
    font-size: 14px
  }
}

.items ul:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:600px) {
  .items ul:not(:last-child) {
    margin-bottom: 30px
  }
}

.items li:not(:last-child) {
  margin-bottom: 10px
}

.items h2 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700
}

@media (max-width:1220px) {
  .items h2 {
    font-size: 26px
  }
}

@media (max-width:991px) {
  .items h2 {
    font-size: 22px
  }
}

@media (max-width:600px) {
  .items h2 {
    font-size: 18px
  }
}

.items h2:not(:last-child) {
  margin-bottom: 20px
}

.items__texts:not(:last-child) {
  margin-bottom: 40px
}

@media (max-width:991px) {
  .items__texts:not(:last-child) {
    margin-bottom: 35px
  }
}

@media (max-width:600px) {
  .items__texts:not(:last-child) {
    margin-bottom: 30px
  }
}

.items p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2
}

@media (max-width:600px) {
  .items p {
    font-size: 14px
  }
}

.items p:not(:last-child) {
  margin-bottom: 20px
}

.dates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px
}

.dates__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}