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

@media only screen and (max-width: 1599px) {
  .container {
    max-width: 1200px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media only screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media only screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Light.woff2") format("woff2"), url("./fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-LightItalic.woff2") format("woff2"), url("./fonts/Poppins-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Regular.woff2") format("woff2"), url("./fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Medium.woff2") format("woff2"), url("./fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-SemiBold.woff2") format("woff2"), url("./fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Bold.woff2") format("woff2"), url("./fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body {
  min-height: 100vh;
}

:root {
  --text-color: #fff;
  --body-bg: #1A1D25;
  --accent-color: #44EC8A;
  --black: #333;
  --accent-gradient: linear-gradient(180deg, #44EC87 0%, #31D7E1 100%);
}

body {
  font-family: "Poppins";
  font-size: 16px;
  min-width: 320px;
  line-height: normal;
  color: var(--text-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  background-color: var(--body-bg);
  margin: 0;
}

img {
  max-width: 100%;
}

input:required, textarea:required {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
input:invalid, textarea:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
input:focus, textarea:focus {
  outline: none;
}

*::-webkit-input-placeholder {
  color: var(--text-color);
  opacity: 0.75;
}

*:-moz-placeholder {
  color: var(--text-color);
  opacity: 0.75;
}

*::-moz-placeholder {
  color: var(--text-color);
  opacity: 0.75;
}

*:-ms-input-placeholder {
  color: var(--text-color);
  opacity: 0.75;
}

a {
  text-decoration: none;
  color: var(--text-color);
}
a:focus, a:hover {
  outline: none;
  text-decoration: none;
}

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

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

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

input, select, button {
  outline: none;
}

input,
textarea {
  -webkit-appearance: none;
}

input:disabled {
  opacity: 1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal,
input[type=tel]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

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

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.slick-slide {
  outline: none;
}

* {
  -webkit-tap-highlight-color: transparent;
}

.hidden {
  display: none;
}

svg {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.wrap {
  min-height: 100vh;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: url("./img/bg.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
}
.wrap.is-internal-page {
  background-position: top -230px center;
}

.section {
  margin: 130px 0;
  position: relative;
}
.section-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
}

.format-text-p p:nth-child(1) {
  margin-top: 0;
}
.format-text-p p:last-child {
  margin-bottom: 0;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: none;
  text-align: center;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10em;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 40px;
  color: #1A1D25;
  position: relative;
  -webkit-transition: -webkit-box-shadow 0.4s;
  transition: -webkit-box-shadow 0.4s;
  transition: box-shadow 0.4s;
  transition: box-shadow 0.4s, -webkit-box-shadow 0.4s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  content: "";
  background-image: var(--accent-gradient);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, transform 0.5s;
  transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
  border-radius: 10em;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn:hover {
  -webkit-box-shadow: 0px 3px 27px 0px rgba(68, 236, 137, 0.29);
          box-shadow: 0px 3px 27px 0px rgba(68, 236, 137, 0.29);
}
.btn:hover:after, .btn:hover:before {
  -webkit-transform: scale(1.05, 1.15);
          transform: scale(1.05, 1.15);
}
.btn--bdr {
  color: var(--accent-color);
  background-image: none;
  -webkit-transition: color 0.5s, -webkit-box-shadow 0.5s;
  transition: color 0.5s, -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s, color 0.5s;
  transition: box-shadow 0.5s, color 0.5s, -webkit-box-shadow 0.5s;
}
.btn--bdr:after {
  opacity: 0;
}
.btn--bdr::before {
  content: "";
  position: absolute;
  border-radius: 10em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, from(#31D7E1), to(#44EC87)) border-box;
  background: linear-gradient(0deg, #31D7E1, #44EC87) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.btn--bdr:hover {
  color: var(--black);
}
.btn--bdr:hover::after {
  opacity: 1;
}
.btn--white {
  color: var(--black);
}
.btn--white:after {
  background-image: none;
  background-color: #fff;
}
.btn--white:before {
  border-color: #fff;
  background-image: none;
}
.btn--white.btn--bdr {
  color: #fff;
}
.btn--white.btn--bdr::after {
  opacity: 0;
}
.btn--white.btn--bdr:hover {
  color: #1A1D25;
}
.btn--white.btn--bdr:hover:after {
  opacity: 1;
}

.back,
.next {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: #434857;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 2;
  background-image: url("./img/next.svg");
  background-size: 10px 16px;
  background-repeat: no-repeat;
  background-position: center;
}
.back:before,
.next:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  display: block;
  background-image: var(--accent-gradient);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  overflow: hidden;
  border-radius: 50%;
}
.back:after,
.next:after {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  display: block;
  background-image: url("./img/next-black.svg");
  background-size: 10px 16px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.back:hover:before, .back:hover:after,
.next:hover:before,
.next:hover:after {
  opacity: 1;
}
.back:hover:before,
.next:hover:before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.back.slick-disabled,
.next.slick-disabled {
  pointer-events: none;
  opacity: 0;
}

.back {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.wow {
  visibility: hidden;
}

.page-section {
  background-color: #fff;
  padding: 100px 0 130px;
  color: var(--black);
}
.page-hero {
  text-align: center;
  padding: 143px 0 96px;
}
.page-title {
  margin: 0;
  margin-top: 30px;
  font-weight: 500;
  line-height: 1.3;
  font-size: 55px;
}

.h3 {
  margin: 0;
  font-size: 40px;
  width: 600px;
  line-height: 1.3;
}

.breadcrumbs {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: -10px;
}
.breadcrumbs a {
  color: var(--accent-color);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
  margin-right: 45px;
  position: relative;
  display: inline-block;
  white-space: nowrap;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.breadcrumbs a::after {
  position: absolute;
  top: 8px;
  right: -30px;
  content: "";
  display: inline-block;
  width: 9px;
  height: 10px;
  background-image: url("./img/breadcrumb-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}

.breadcrumb_last {
  text-transform: capitalize;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
}

@media only screen and (max-width: 1999px) {
  .wrap.is-internal-page {
    background-position: top -145px center;
  }
}
@media only screen and (max-width: 1599px) {
  .wrap.is-internal-page {
    background-position: top -80px center;
  }
}
@media only screen and (max-width: 1199px) {
  body.noscroll {
    overflow: hidden;
  }
  .page-title {
    font-size: 46px;
  }
  .wrap {
    background-position: top 85px center;
  }
  .wrap.is-internal-page {
    background-position: top 85px center;
  }
}
@media only screen and (max-width: 575px) {
  body {
    font-size: 14px;
  }
  .section {
    margin: 100px 0;
  }
  .section-title {
    font-size: 27px;
  }
  .page-hero {
    padding-bottom: 70px;
  }
  .page-section {
    padding: 70px 0 100px;
  }
  .page-title {
    font-size: 36px;
  }
  .h3 {
    font-size: 32px;
  }
  .breadcrumbs {
    font-size: 14px;
  }
  .breadcrumbs a::after {
    top: 5px;
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
            transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes zoomImage {
  0% {
    -webkit-transform: scale(0.5) translateX(-50%);
            transform: scale(0.5) translateX(-50%);
  }
  100% {
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
}
@keyframes zoomImage {
  0% {
    -webkit-transform: scale(0.5) translateX(-50%);
            transform: scale(0.5) translateX(-50%);
  }
  100% {
    -webkit-transform: scale(1) translateX(-50%);
            transform: scale(1) translateX(-50%);
  }
}
@-webkit-keyframes slideInLeftCircle {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-50%);
            transform: translateX(-100px) translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
@keyframes slideInLeftCircle {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px) translateY(-50%);
            transform: translateX(-100px) translateY(-50%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
  }
}
@-webkit-keyframes slideInLeftCircles {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 0.7;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideInLeftCircles {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 0.7;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideInSmartphone {
  0% {
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
@keyframes slideInSmartphone {
  0% {
    -webkit-transform: translateX(-100px) translateY(-100px);
            transform: translateX(-100px) translateY(-100px);
  }
  100% {
    -webkit-transform: translateX(0) translateY(0);
            transform: translateX(0) translateY(0);
  }
}
.logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.logo__title {
  margin-left: 5px;
  font-size: 28px;
  font-weight: 600;
  position: relative;
  top: 3px;
}
.logo__title i {
  font-style: italic;
  font-weight: 300;
}

.header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 87px;
  background-color: #212831;
}
.header.is-transparent {
  top: 25px;
  position: absolute;
  background-color: transparent;
}
.header.is-transparent.is-fixed {
  background-color: #212831;
  top: 0;
  position: fixed;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.header-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 87px;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}
.header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: -5px;
}
.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
.header__languages {
  margin-right: 30px;
}
.header__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__btns .btn {
  font-size: 14px;
}
.header__btns .btn + .btn {
  margin-left: 15px;
}

.menu {
  margin-right: auto;
  margin-left: 55px;
}
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu__item {
  margin-right: 40px;
  position: relative;
}
.menu__item.active .menu__link {
  color: var(--accent-color);
}
.menu__item.active .menu__link > svg path {
  stroke: var(--accent-color);
}
.menu__item:last-child {
  margin-right: 0px;
}
.menu__link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 17px;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  white-space: nowrap;
}
.menu__link > svg {
  margin-left: 5px;
}
.menu__link > svg path {
  -webkit-transition: stroke 0.2s;
  transition: stroke 0.2s;
}

.submenu {
  position: absolute;
  z-index: 2;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  padding: 25px 20px 20px;
  width: 180px;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.submenu::before {
  position: absolute;
  content: "";
  display: block;
  top: 5px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #45505F;
  z-index: -1;
  border-radius: 10px;
}
.submenu__item.active .submenu__link {
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}
.submenu__item + .submenu__item {
  margin-top: 18px;
}
.submenu__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.submenu__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}

.hamburger {
  display: none;
}

.language {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-weight: 500;
  font-size: 17px;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.language__icon {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
  border: 1px solid #EAEAEA;
}
.language > svg {
  margin-left: 5px;
  position: relative;
  top: 1px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.language > svg path {
  -webkit-transition: stroke 0.2s;
  transition: stroke 0.2s;
}

.languages {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}
.languages:hover .language {
  color: var(--accent-color);
}
.languages:hover .language > svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.languages:hover .language > svg path {
  stroke: var(--accent-color);
}
.languages:hover .languages__list {
  opacity: 1;
  visibility: visible;
}
.languages__list {
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  padding: 20px;
  padding-top: 25px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.languages__list::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: calc(100% + 20px);
  bottom: 0;
  display: block;
  content: "";
  background-color: #45505F;
  border-radius: 10px;
}
.languages__item {
  display: block;
  position: relative;
}
.languages__item + .languages__item {
  margin-top: 18px;
}
.languages__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.languages__item a:hover {
  color: var(--accent-color);
}
.languages__item a img {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 5px;
  border: 1px solid #EAEAEA;
}
.languages__item.active {
  pointer-events: none;
}

@media only screen and (max-width: 1599px) {
  .header__languages {
    margin-right: 15px;
  }
  .menu {
    margin-left: 40px;
  }
  .menu__item {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .header.open-popup {
    right: 17px;
  }
  .menu__item:hover .menu__link {
    color: var(--accent-color);
  }
  .menu__item:hover .menu__link > svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .menu__item:hover .menu__link > svg path {
    stroke: var(--accent-color);
  }
  .menu__item:hover .submenu {
    opacity: 1;
    visibility: visible;
  }
}
@media only screen and (max-width: 1199px) {
  .header.is-transparent {
    top: 0;
    position: fixed;
    background-color: #212831;
  }
  .header-block {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header .container {
    max-width: 100%;
  }
  .header-nav {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 100px 30px 30px;
    display: inline-block;
    z-index: 12;
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: top;
        -ms-flex-pack: top;
            justify-content: top;
    background-color: #212831;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  .header-nav.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .header-nav.is-visible .menu {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header-nav.is-visible .header__btns {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  .header__languages {
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .header__btns {
    margin-top: 40px;
    margin-bottom: 100px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .header__btns .btn {
    width: 100%;
  }
  .header__btns .btn + .btn {
    margin-left: 0;
    margin-top: 10px;
  }
  .menu {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    width: 280px;
    margin: 0;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .menu__item {
    margin-right: 0;
    width: 100%;
  }
  .menu__link {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .menu__link.active {
    border-color: transparent;
  }
  .menu__link.active > svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
    display: none;
    width: 100%;
    padding-top: 20px;
    background-color: #434857;
  }
  .submenu::before {
    display: none;
  }
  .submenu.is-visible {
    display: block;
  }
  .hamburger {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
    padding: 0;
    height: 16px;
    background-color: transparent;
    z-index: 13;
  }
  .hamburger .hamburger-box {
    width: 25px;
    height: 16px;
  }
  .hamburger .hamburger-inner,
  .hamburger .hamburger-inner::after,
  .hamburger .hamburger-inner::before {
    background-color: #fff;
    height: 2px;
    width: 25px;
    border-radius: 0;
  }
  .hamburger:hover {
    opacity: 1;
  }
  .hamburger .hamburger-inner::before {
    top: 7px;
    left: auto;
    right: 0;
  }
  .hamburger .hamburger-inner::after {
    top: 14px;
    left: auto;
    right: 0;
  }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::after,
  .hamburger.is-active .hamburger-inner::before {
    background-color: #fff;
  }
  .hamburger.is-active .hamburger-inner {
    top: -1px;
  }
  .hamburger.is-active .hamburger-inner::after {
    top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .menu {
    width: 100%;
  }
}
.hero {
  padding-top: 200px;
  padding-bottom: 60px;
}
.hero-block {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.hero__title {
  margin: 0;
  font-weight: 300;
  font-size: 96px;
  line-height: 1.3;
}
.hero__title span {
  font-weight: 500;
  display: block;
}
.hero__text {
  font-size: 24px;
  font-weight: 300;
  margin-top: 40px;
}
.hero__text b, .hero__text strong {
  font-weight: 700;
}
.hero-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}
.hero-actions .btn {
  padding: 20px 50px;
}
.hero-actions .btn + .btn {
  margin-left: 15px;
}

@media only screen and (max-width: 1599px) {
  .hero__title {
    font-size: 80px;
  }
  .hero__text {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero__title {
    font-size: 70px;
  }
  .hero__text {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .hero {
    padding-top: 150px;
  }
  .hero__title {
    font-size: 40px;
  }
  .hero__text {
    font-size: 16px;
    margin-top: 30px;
  }
  .hero__text br {
    display: none;
  }
  .hero-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 40px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .hero-actions .btn + .btn {
    margin-left: 0;
    margin-top: 15px;
  }
}
.tarifs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1260px;
}
.tarifs .slick-list {
  width: 100%;
}
.tarifs-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.tarifs-info {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 60px;
  width: 630px;
}
.tarifs-info .section-title {
  max-width: 450px;
}
.tarifs__btns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.tarifs__btns .btn + .btn {
  margin-left: 30px;
}
.tarifs__text {
  margin-top: 20px;
  max-width: 470px;
}
.tarifs .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tarifs__back, .tarifs__next {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tarifs__back {
  left: 0px;
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
.tarifs__next {
  left: 830px;
}

.tarif {
  width: 400px;
  position: relative;
  padding: 55px 45px 60px;
  text-align: center;
  margin: 0 15px;
  height: auto;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  border-radius: 20px;
  color: var(--black);
  line-height: 1.4s;
}
.tarif:nth-child(2), .tarif:nth-child(5) {
  background-color: #ECFDF3;
}
.tarif:nth-child(3), .tarif:nth-child(6) {
  background-color: #ECFCFD;
}
.tarif__title {
  font-size: 32px;
  font-weight: 700;
}
.tarif__subtitle {
  font-size: 14px;
  margin-top: 10px;
}
.tarif__price {
  color: var(--accent-color);
  font-size: 36px;
  font-weight: 700;
  margin-top: 30px;
  white-space: nowrap;
}
.tarif__info {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tarif__info li {
  font-size: 16px;
  font-weight: 600;
}
.tarif__info li + li {
  margin-top: 20px;
}
.tarif__btn {
  padding: 30px 60px;
  margin-top: auto;
}
.tarif__btn.btn--bdr {
  font-size: 14px;
  padding: 15px 55px;
  margin-top: 20px;
}

@media only screen and (min-width: 1200px) {
  .tarifs {
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  .tarifs:hover {
    -webkit-transform: translateX(-15px);
            transform: translateX(-15px);
  }
  .tarifs:hover .tarifs__back:not(.slick-disabled), .tarifs:hover .tarifs__next:not(.slick-disabled) {
    opacity: 1;
  }
  .tarifs__back, .tarifs__next {
    opacity: 0;
  }
}
@media only screen and (max-width: 1599px) {
  .tarifs__next {
    left: 400px;
  }
}
@media only screen and (max-width: 1199px) {
  .tarifs-info {
    width: 450px;
  }
  .tarifs__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .tarifs__btns .btn + .btn {
    margin-left: 0;
    margin-top: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .tarifs {
    margin-top: 70px;
    width: 100%;
  }
  .tarifs .slick-list {
    overflow: visible;
  }
  .tarifs__back {
    left: calc(50% - 200px);
    right: auto;
  }
  .tarifs__next {
    left: auto;
    right: calc(50% - 200px);
    -webkit-transform: translate(50%, -50%);
            transform: translate(50%, -50%);
  }
  .tarifs-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tarifs-info {
    margin-right: 0;
    width: 100%;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tarifs-info .section-title {
    max-width: 100%;
  }
  .tarifs__text {
    max-width: 100%;
  }
  .tarifs__btns {
    margin-top: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 575px) {
  .tarifs {
    margin-top: 50px;
  }
  .tarifs__back {
    left: 35px;
  }
  .tarifs__next {
    right: 35px;
  }
  .tarif {
    width: 100%;
    padding: 40px 30px;
  }
  .tarif__title {
    font-size: 27px;
  }
  .tarif__subtitle {
    font-size: 12px;
    margin-top: 5px;
  }
  .tarif__price {
    font-size: 32px;
    margin-top: 20px;
  }
  .tarif__info {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .tarif__info li {
    font-size: 14px;
  }
  .tarif__info li + li {
    margin-top: 15px;
  }
  .tarif__btn {
    padding: 20px 30px;
    width: 100%;
  }
  .tarif__btn.btn--bdr {
    padding: 15px 30px;
    margin-top: 10px;
  }
}
.tizers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 150px;
}

.tizer {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 1.3;
}
.tizer + .tizer {
  margin-left: 60px;
}
.tizer__value {
  font-size: 32px;
  font-weight: 300;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#44EC87), to(#31D7E1));
  background-image: linear-gradient(180deg, #44EC87 0%, #31D7E1 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tizer__numb {
  font-size: 96px;
  font-weight: 600;
  margin-right: 3px;
}
.tizer__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}
.tizer__subtitle {
  font-size: 14px;
  margin-top: 10px;
}

@media only screen and (max-width: 1599px) {
  .tizers {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .tizers {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: -30px;
  }
  .tizer {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }
  .tizer + .tizer {
    margin-left: 0;
  }
  .tizer__value {
    font-size: 27px;
  }
  .tizer__numb {
    font-size: 80px;
  }
  .tizer__title {
    font-size: 18px;
  }
  .tizer__subtitle {
    font-size: 12px;
  }
}
@media only screen and (max-width: 575px) {
  .tizers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .tizer {
    width: 100%;
  }
  .tizer__value {
    font-size: 24px;
  }
  .tizer__numb {
    font-size: 70px;
  }
}
.circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 52px;
  right: calc(50% - 245px);
}

.circle {
  width: 506px;
  height: 506px;
  border-radius: 50%;
  background-image: var(--accent-gradient);
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  z-index: 3;
}
.circle:nth-child(2) {
  width: 464px;
  height: 464px;
  left: -145px;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  opacity: 0.7;
  z-index: 2;
}
.circle:nth-child(3) {
  width: 396px;
  height: 396px;
  left: -265px;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0.7;
  z-index: 1;
}

.about {
  width: 580px;
  margin-left: 60px;
}
.about-section {
  padding: 130px 0 0;
}
.about-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 4;
}
.about-info {
  margin-top: 40px;
  max-width: 470px;
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.about-info.is-visible {
  opacity: 1;
  visibility: visible;
}
.about-info.is-visible.wow {
  visibility: hidden;
}
.about-info.is-fade-in {
  display: block;
}
.about__text {
  margin-top: 20px;
}
.about__text strong, .about__text b {
  font-weight: 600;
}
.about__btn {
  margin-top: 40px;
  font-size: 14px;
}
.about-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.about-tab {
  background-color: #5B5F69;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px 40px;
  height: 50px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  z-index: 5;
}
.about-tab + .about-tab {
  padding-left: 70px;
  margin-left: -45px;
}
.about-tab span {
  position: relative;
  z-index: 2;
}
.about-tab::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  background-image: var(--accent-gradient);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.about-tab:nth-child(2) {
  background-color: #4D5260;
  z-index: 4;
}
.about-tab:nth-child(3) {
  background-color: #434856;
  z-index: 3;
}
.about-tab:nth-child(4) {
  background-color: #3B4150;
  z-index: 2;
}
.about-tab.is-current {
  pointer-events: none;
  color: #000;
}
.about-tab.is-current:after {
  opacity: 1;
}
.about-tab:hover {
  color: #000;
}
.about-tab:hover:after {
  opacity: 1;
}

.charts {
  height: 350px;
  width: 820px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-box-shadow: 0px 0px 56px 0px rgba(255, 255, 255, 0.12) inset;
          box-shadow: 0px 0px 56px 0px rgba(255, 255, 255, 0.12) inset;
  -webkit-backdrop-filter: blur(12.5px);
          backdrop-filter: blur(12.5px);
}
.charts-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 350px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0px;
}
.charts-slider.is-visible {
  opacity: 1;
  visibility: visible;
}
.charts__back {
  -webkit-transform: translate(-50%, 0%) scale(-1, 1);
          transform: translate(-50%, 0%) scale(-1, 1);
}
.charts__next {
  -webkit-transform: translate(50%, 0%);
          transform: translate(50%, 0%);
}

.chart {
  margin: 0 10px;
}
.chart .tradingview-widget-container {
  width: 100%;
}

@media only screen and (max-width: 1599px) {
  .circles {
    right: calc(50% - 200px);
  }
  .circle:nth-child(1) {
    display: none;
  }
}
@media only screen and (max-width: 1199px) {
  .about {
    margin-left: 0;
    width: 100%;
    margin-top: 50px;
  }
  .about-section {
    padding: 0;
  }
  .about-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .circles {
    display: none;
  }
  .charts {
    width: 100%;
    height: 250px;
  }
  .charts-slider {
    height: 250px;
  }
}
@media only screen and (max-width: 575px) {
  .about {
    margin-top: 40px;
  }
  .about-info {
    margin-top: 30px;
  }
  .about__btn {
    margin-top: 30px;
  }
  .about-tab {
    padding: 0px 20px;
    height: 40px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
  }
  .about-tab + .about-tab {
    padding-left: 60px;
  }
  .charts {
    width: calc(100% - 40px);
  }
}
.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: -225px;
  position: relative;
  z-index: 2;
}
.advantages-section {
  position: relative;
  padding: 80px 0;
}
.advantages-section::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  top: 215px;
  left: calc(50% - 560px);
  display: block;
  background-image: var(--accent-gradient);
  border-radius: 20px 0 0 20px;
}
.advantages-block {
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 135px 70px 140px 80px;
  position: relative;
  z-index: 2;
}
.advantages__image {
  position: absolute;
  top: -100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advantages__image:before, .advantages__image:after {
  position: absolute;
  content: "";
  display: inline-block;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#44EC87), to(#31D7E1));
  background-image: linear-gradient(180deg, #44EC87 0%, #31D7E1 100%);
  opacity: 0.49;
  -webkit-filter: blur(41px);
          filter: blur(41px);
  z-index: -1;
}
.advantages__image::before {
  width: 186px;
  height: 186px;
  left: 22px;
  bottom: 66px;
}
.advantages__image:after {
  width: 300px;
  height: 300px;
  top: 58px;
  right: 0;
}

.advantage {
  color: var(--black);
  position: relative;
  padding-left: 96px;
  margin-bottom: 225px;
}
.advantage:nth-child(1) {
  margin-left: 60px;
  margin-right: 525px;
}
.advantage:nth-child(3) {
  margin-right: 525px;
}
.advantage__icon {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.advantage__bg {
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 133px;
  height: 133px;
  border-radius: 66.5px;
  background-image: var(--accent-gradient);
}
.advantage-info {
  position: relative;
  z-index: 2;
  margin-left: 15px;
  width: 280px;
}
.advantage__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.advantage__text {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 20px;
}

@media only screen and (max-width: 1599px) {
  .advantages {
    margin-bottom: -150px;
  }
  .advantages-section::before {
    left: calc(50% - 400px);
  }
  .advantages-block {
    padding: 130px 40px;
  }
  .advantages__image {
    width: 450px;
  }
  .advantage {
    margin-bottom: 150px;
  }
  .advantage-info {
    width: 250px;
  }
  .advantage:nth-child(1) {
    margin-left: 40px;
    margin-right: 300px;
  }
  .advantage:nth-child(3) {
    margin-right: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .advantage__bg {
    -webkit-transition: width 0.3s;
    transition: width 0.3s;
  }
  .advantage__icon {
    -webkit-transition: left 0.3s;
    transition: left 0.3s;
  }
  .advantage:hover .advantage__bg {
    width: 370px;
  }
  .advantage:hover .advantage__icon {
    left: -15px;
  }
}
@media only screen and (max-width: 1199px) {
  .advantages {
    margin-bottom: -100px;
  }
  .advantages-section {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .advantages-section::before {
    top: 130px;
    left: calc(50% - 300px);
  }
  .advantages-block {
    padding: 130px 60px 30px;
  }
  .advantages__image {
    position: relative;
    top: auto;
    margin-top: 70px;
    width: auto;
  }
  .advantage {
    margin-bottom: 100px;
    width: 50%;
    padding-right: 30px;
  }
  .advantage:nth-child(1) {
    margin-left: 0px;
    margin-right: 0px;
  }
  .advantage:nth-child(3) {
    margin-right: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .advantages-section::before {
    left: calc(50% - 200px);
  }
  .advantage {
    width: auto;
    padding-right: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .advantages__image::before {
    width: 128px;
    height: 128px;
  }
  .advantages__image::after {
    width: 210px;
    height: 210px;
  }
}
@media only screen and (max-width: 575px) {
  .advantages-block {
    padding: 100px 30px 30px;
  }
  .advantages-section {
    padding-bottom: 20px;
  }
  .advantages-section::before {
    left: 70px;
    top: 50px;
    border-radius: 20px;
  }
  .advantages__image {
    min-width: 120%;
  }
  .advantage {
    width: 100%;
  }
  .advantage-info {
    width: auto;
  }
  .advantage__title {
    font-size: 18px;
  }
  .advantage__text {
    font-size: 12px;
    margin-top: 10px;
  }
  .advantage__text br {
    display: none;
  }
}
.support-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.support-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11px 30px;
  background-color: #363A46;
  border-radius: 10em;
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
}
.support-icon:after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  background-image: var(--accent-gradient);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.support-icon svg {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}
.support-icon svg path {
  -webkit-transition: fill 0.3s;
  transition: fill 0.3s;
}
.support-icon:hover {
  -webkit-box-shadow: 0px 3px 27px 0px rgba(68, 236, 137, 0.29);
          box-shadow: 0px 3px 27px 0px rgba(68, 236, 137, 0.29);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.support-icon:hover:after {
  opacity: 1;
}
.support-icon:hover svg path {
  fill: #000;
}
.support-icon + .support-icon {
  margin-left: 20px;
}

.platforms-block {
  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;
}
.platforms-info {
  width: 500px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.platforms__text {
  max-width: 430px;
  margin-top: 20px;
}
.platforms__support-icons {
  margin-top: 30px;
}
.platforms__btn {
  margin-top: 50px;
}
.platforms-mockups {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 950px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.platforms-mockups:before, .platforms-mockups:after {
  position: absolute;
  content: "";
  display: inline-block;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#44EC87), to(#31D7E1));
  background-image: linear-gradient(180deg, #44EC87 0%, #31D7E1 100%);
  opacity: 0.49;
  -webkit-filter: blur(41px);
          filter: blur(41px);
  z-index: -1;
}
.platforms-mockups::before {
  width: 199px;
  height: 199px;
  left: -17px;
  bottom: 53px;
}
.platforms-mockups:after {
  width: 403px;
  height: 403px;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 1599px) {
  .platforms-mockups {
    width: 600px;
  }
  .platforms-mockups::before {
    width: 125px;
    height: 125px;
    -webkit-filter: blur(24px);
            filter: blur(24px);
  }
  .platforms-mockups:after {
    width: 240px;
    height: 240px;
    -webkit-filter: blur(24px);
            filter: blur(24px);
  }
}
@media only screen and (max-width: 1199px) {
  .platforms-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .platforms-info {
    width: 100%;
    text-align: center;
  }
  .platforms__text {
    max-width: 100%;
  }
  .platforms-mockups {
    width: auto;
    margin-top: 70px;
  }
  .platforms-mockups::before {
    width: 199px;
    height: 199px;
    -webkit-filter: blur(41px);
            filter: blur(41px);
  }
  .platforms-mockups:after {
    width: 403px;
    height: 403px;
    -webkit-filter: blur(41px);
            filter: blur(41px);
  }
  .platforms__support-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .platforms__btn {
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .platforms-mockups::before {
    width: 140px;
    height: 140px;
  }
  .platforms-mockups:after {
    width: 280px;
    height: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .platforms-mockups {
    margin-top: 60px;
  }
  .platforms-mockups::before {
    width: 70px;
    height: 70px;
  }
  .platforms-mockups:after {
    width: 130px;
    height: 130px;
  }
}
@media only screen and (max-width: 575px) {
  .support-icon + .support-icon {
    margin-left: 15px;
  }
  .platforms-mockups::before, .platforms-mockups:after {
    -webkit-filter: blur(14px);
            filter: blur(14px);
  }
}
.get-started-block {
  border-radius: 22px;
  background-image: var(--accent-gradient);
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 27px 97px 27px 587px;
  position: relative;
}
.get-started__info {
  width: 480px;
}
.get-started__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}
.get-started__text {
  font-size: 14px;
  margin-top: 20px;
}
.get-started__btn {
  padding: 20px 50px;
  margin-left: 60px;
}
.get-started__image {
  position: absolute;
  left: 0;
  top: 0px;
  width: 579px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  overflow: hidden;
}

@media only screen and (max-width: 1599px) {
  .get-started-block {
    padding-left: 420px;
    padding-right: 50px;
  }
  .get-started__image {
    width: 400px;
  }
}
@media only screen and (max-width: 1199px) {
  .get-started-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 50px 50px 50px 450px;
    border-radius: 20px;
  }
  .get-started__info {
    width: 100%;
  }
  .get-started__btn {
    margin-left: 0;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .get-started-block {
    padding: 50px;
  }
  .get-started__image {
    display: none;
  }
}
@media only screen and (max-width: 575px) {
  .get-started-block {
    padding: 40px 30px;
    padding-top: 60%;
  }
  .get-started__image {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 100%;
  }
}
.consultants {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -25px;
  margin-top: 40px;
  margin-bottom: -40px;
}
.consultants-section {
  margin-top: 170px;
}
.consultants-block {
  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;
}
.consultants-info {
  width: 590px;
  margin-left: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.consultants__text {
  margin-top: 20px;
}
.consultants__btn {
  margin-top: 50px;
  font-size: 14px;
}
.consultants__image {
  width: 766px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.consultants__image:before, .consultants__image:after {
  position: absolute;
  content: "";
  display: inline-block;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#44EC87), to(#31D7E1));
  background-image: linear-gradient(180deg, #44EC87 0%, #31D7E1 100%);
  z-index: -1;
}
.consultants__image::before {
  width: 361px;
  height: 361px;
  left: 45px;
  bottom: 115px;
  opacity: 0.79;
  -webkit-filter: blur(31px);
          filter: blur(31px);
}
.consultants__image:after {
  width: 279px;
  height: 279px;
  top: 109px;
  right: 0;
  opacity: 0.49;
  -webkit-filter: blur(41px);
          filter: blur(41px);
}

.consultant {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(46% - 25px);
  margin-right: 25px;
  margin-bottom: 40px;
}
.consultant:nth-child(2n) {
  width: calc(54% - 25px);
}
.consultant__icon {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-image: var(--accent-gradient);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 8px;
}
.consultant__info {
  line-height: 1.6;
}
.consultant__title {
  font-size: 16px;
  font-weight: 600;
}
.consultant__text {
  font-size: 13px;
  font-weight: 300;
}

@media only screen and (max-width: 1599px) {
  .consultants-section {
    margin-top: 130px;
  }
  .consultants__image::before {
    width: 276px;
    height: 276px;
    left: 34px;
    bottom: 87px;
    -webkit-filter: blur(24px);
            filter: blur(24px);
  }
  .consultants__image:after {
    width: 212px;
    height: 212px;
    top: 83px;
    -webkit-filter: blur(31px);
            filter: blur(31px);
  }
}
@media only screen and (max-width: 1199px) {
  .consultants {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .consultants-info {
    width: 470px;
  }
  .consultants__image::before {
    width: 210px;
    height: 210px;
    left: 26px;
    bottom: 66px;
  }
  .consultants__image:after {
    width: 161px;
    height: 161px;
    top: 63px;
  }
  .consultant {
    width: 100%;
    margin-right: 0;
  }
  .consultant:nth-child(2n) {
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .consultants {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-right: -25px;
  }
  .consultants-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .consultants-info {
    width: 100%;
    margin-left: 0;
  }
  .consultants__image {
    margin-top: 30px;
    width: 100%;
    margin-bottom: -70px;
  }
  .consultants__image::before {
    width: 361px;
    height: 361px;
    left: 45px;
    bottom: 115px;
    -webkit-filter: blur(31px);
            filter: blur(31px);
  }
  .consultants__image:after {
    width: 279px;
    height: 279px;
    top: 109px;
    -webkit-filter: blur(41px);
            filter: blur(41px);
  }
  .consultant {
    width: calc(50% - 25px);
    margin-right: 25px;
  }
  .consultant:nth-child(2n) {
    width: calc(50% - 25px);
  }
}
@media only screen and (max-width: 767px) {
  .consultants__image::before {
    width: 276px;
    height: 276px;
    left: 34px;
    bottom: 87px;
    -webkit-filter: blur(24px);
            filter: blur(24px);
  }
  .consultants__image:after {
    width: 212px;
    height: 212px;
    top: 83px;
    -webkit-filter: blur(31px);
            filter: blur(31px);
  }
}
@media only screen and (max-width: 575px) {
  .consultants {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 0;
  }
  .consultants-section {
    margin-top: 100px;
  }
  .consultants__image {
    margin-bottom: -30px;
  }
  .consultants__image::before {
    width: 185px;
    height: 185px;
    left: 22px;
    bottom: 56px;
    -webkit-filter: blur(16px);
            filter: blur(16px);
  }
  .consultants__image:after {
    width: 140px;
    height: 140px;
    top: 54px;
    -webkit-filter: blur(20px);
            filter: blur(20px);
  }
  .consultant {
    width: 100%;
    margin-right: 0;
  }
  .consultant:nth-child(2n) {
    width: 100%;
  }
  .consultant__title {
    font-size: 14px;
  }
  .consultant__text {
    font-size: 12px;
  }
}
.block-links-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block-links-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(50% - 20px);
}
.block-links-col:nth-child(1) .block-link {
  height: 100%;
}
.block-links-col:nth-child(1) .block-link__title {
  font-size: 32px;
}

.block-link {
  width: 100%;
  aspect-ratio: 3.36;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  padding: 40px;
  position: relative;
}
.block-link + .block-link {
  margin-top: 40px;
}
.block-link:hover .block-link__btn, .block-link:hover .block-link__title, .block-link:hover .block-link__text {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.block-link__title, .block-link__text, .block-link__btn {
  position: relative;
  z-index: 2;
  max-width: 420px;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.block-link__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--accent-color);
}
.block-link__text {
  font-size: 16px;
  margin-top: 20px;
}
.block-link__btn {
  margin-top: 40px;
}

@media only screen and (max-width: 1599px) {
  .block-link {
    padding: 30px;
  }
  .block-link__btn {
    margin-top: 30px;
  }
  .block-link__title, .block-link__text, .block-link__btn {
    -webkit-transform: translateY(90px);
            transform: translateY(90px);
  }
}
@media only screen and (max-width: 1199px) {
  .block-links-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-links-col {
    width: 100%;
    margin: 0;
  }
  .block-links-col:nth-child(1) {
    margin-bottom: 40px;
  }
  .block-link {
    padding: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    aspect-ratio: 0;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
  }
  .block-link:after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
  }
  .block-link__btn {
    margin-top: 40px;
  }
  .block-link__title, .block-link__text, .block-link__btn {
    -webkit-transform: none;
            transform: none;
  }
}
@media only screen and (max-width: 575px) {
  .block-links-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .block-links-col:nth-child(1) {
    margin-bottom: 30px;
  }
  .block-links-col:nth-child(1) .block-link__title {
    font-size: 27px;
  }
  .block-link {
    padding: 30px;
  }
  .block-link + .block-link {
    margin-top: 30px;
  }
  .block-link__btn {
    margin-top: 30px;
  }
  .block-link__title {
    font-size: 20px;
  }
  .block-link__text {
    font-size: 14px;
  }
}
.payment {
  background-color: #2A2E38;
  padding: 60px 0;
}
.payment-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -45px;
  margin-right: -45px;
  margin-bottom: -45px;
}
.payment-item {
  margin: 0 45px 45px;
}
.payment-item:hover {
  -webkit-filter: brightness(0) saturate(100%) invert(82%) sepia(85%) saturate(444%) hue-rotate(67deg) brightness(97%) contrast(90%);
          filter: brightness(0) saturate(100%) invert(82%) sepia(85%) saturate(444%) hue-rotate(67deg) brightness(97%) contrast(90%);
}

@media only screen and (max-width: 1199px) {
  .payment-block {
    margin-left: -25px;
    margin-right: -25px;
    margin-bottom: -40px;
  }
  .payment-item {
    margin: 0 25px 40px;
    height: 40px;
    width: auto;
  }
}
@media only screen and (max-width: 575px) {
  .payment-item {
    height: 30px;
  }
}
.footer {
  margin-top: auto;
  background-color: #1A1D25;
  padding: 80px 0;
}
.footer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer-info {
  width: 400px;
  margin-right: 80px;
}
.footer__logo {
  font-size: 30px;
  font-weight: 700;
}
.footer-contacts {
  width: 100%;
  font-size: 14px;
  margin-top: 30px;
}
.footer-contacts strong, .footer-contacts b {
  font-weight: 600;
  text-transform: uppercase;
}
.footer-contacts a:hover {
  text-decoration: underline;
}
.footer-contacts [href^=mailto] {
  color: var(--accent-color);
  font-weight: 600;
}
.footer-text {
  font-size: 12px;
  margin-top: 35px;
}
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-menu__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-menu__item + .footer-menu__item {
  margin-left: 60px;
}
.footer-submenu {
  margin-top: 15px;
  line-height: 1.4;
}
.footer-submenu__item + .footer-submenu__item {
  margin-top: 10px;
}
.footer-submenu__item.active .footer-submenu__link {
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}
.footer-submenu__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-color);
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.footer-submenu__link:hover {
  text-decoration: underline;
  text-decoration-color: var(--accent-color);
}

.store {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 85px;
  margin-left: auto;
}
.store-link {
  border: 1px solid #7C878F;
  width: 150px;
  height: 42px;
  border-radius: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.store-link + .store-link {
  margin-top: 15px;
}

@media only screen and (max-width: 1599px) {
  .footer-info {
    margin-right: 60px;
  }
  .store {
    margin-right: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .footer-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .footer-info {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .footer-text {
    text-align: left;
  }
  .footer-menu {
    width: 100%;
  }
  .footer-menu__list {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .store {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 575px) {
  .footer__logo {
    font-size: 26px;
  }
  .footer-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-menu__item {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
  }
  .footer-menu__item + .footer-menu__item {
    margin-left: 0;
  }
  .footer-menu__title {
    position: relative;
    width: 100%;
    display: block;
  }
  .footer-menu__title::after {
    width: 8px;
    height: 8px;
    display: inline-block;
    content: "";
    border: 2px solid #fff;
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    border-top: none;
    border-left: none;
  }
  .footer-menu__title.active::after {
    -webkit-transform: translateY(-50%) rotate(-135deg);
            transform: translateY(-50%) rotate(-135deg);
  }
  .footer-submenu {
    display: none;
  }
  .footer-submenu.is-visible {
    display: block;
  }
}
.fancybox-is-open .fancybox-bg {
  background-color: #000;
  opacity: 0.75;
}

.fancybox-slide > * {
  margin: 20px 0;
  padding: 0;
}

.login-form {
  max-width: 530px;
}

.form {
  margin-top: 40px;
  text-align: center;
}
.form-section {
  padding: 143px 0 130px;
  text-align: center;
}
.form-block {
  display: inline-block;
  margin-top: 130px;
  position: relative;
  width: 100%;
}
.form-block::before {
  position: absolute;
  top: 35px;
  left: -35px;
  right: -35px;
  bottom: 35px;
  border-radius: 20px;
  display: block;
  content: "";
  background-image: var(--accent-gradient);
}
.form-inner {
  position: relative;
  z-index: 2;
  background-color: #fff;
  color: var(--black);
  border-radius: 20px;
  width: 100%;
  padding: 60px 80px;
  line-height: 1.4;
}
.form-title {
  font-size: 24px;
  font-weight: 700;
}
.form__btn {
  margin-top: 30px;
  padding: 20px 50px;
  margin-left: auto;
  margin-right: auto;
}
.form label {
  display: block;
  position: relative;
}
.form label + label {
  margin-top: 20px;
}
.form *::-webkit-input-placeholder {
  font-size: 16px;
  color: #B0B0B0;
  font-weight: 500;
  opacity: 1;
  -webkit-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
.form *:-moz-placeholder {
  font-size: 16px;
  color: #B0B0B0;
  font-weight: 500;
  opacity: 1;
  -moz-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
.form *::-moz-placeholder {
  font-size: 16px;
  color: #B0B0B0;
  font-weight: 500;
  opacity: 1;
  -moz-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
.form *:-ms-input-placeholder {
  font-size: 16px;
  color: #B0B0B0;
  font-weight: 500;
  opacity: 1;
  -ms-transition: opacity 0.3s, color 0.3s;
  transition: opacity 0.3s, color 0.3s;
}
.form input[type=text],
.form input[type=tel],
.form input[type=url],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form textarea {
  position: relative;
  font-size: 16px;
  height: 62px;
  font-weight: 500;
  text-align: left;
  background-color: transparent;
  padding: 0 20px;
  color: var(--black);
  border: 1px solid #B0B0B0;
  width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-align: center;
  /* cursor: pointer; */
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.form input[type=text]:hover,
.form input[type=tel]:hover,
.form input[type=url]:hover,
.form input[type=email]:hover,
.form input[type=password]:hover,
.form input[type=number]:hover,
.form textarea:hover {
  border-color: #3AE1B6;
}
.form input[type=text]:focus,
.form input[type=tel]:focus,
.form input[type=url]:focus,
.form input[type=email]:focus,
.form input[type=password]:focus,
.form input[type=number]:focus,
.form textarea:focus {
  border-color: #3AE1B6;
  border-width: 2px;
  padding-left: 19px;
  padding-right: 19px;
}
.form input[type=text]:focus::-webkit-input-placeholder,
.form input[type=tel]:focus::-webkit-input-placeholder,
.form input[type=url]:focus::-webkit-input-placeholder,
.form input[type=email]:focus::-webkit-input-placeholder,
.form input[type=password]:focus::-webkit-input-placeholder,
.form input[type=number]:focus::-webkit-input-placeholder,
.form textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.form input[type=text]:focus:-moz-placeholder,
.form input[type=tel]:focus:-moz-placeholder,
.form input[type=url]:focus:-moz-placeholder,
.form input[type=email]:focus:-moz-placeholder,
.form input[type=password]:focus:-moz-placeholder,
.form input[type=number]:focus:-moz-placeholder,
.form textarea:focus:-moz-placeholder {
  color: transparent;
}
.form input[type=text]:focus::-moz-placeholder,
.form input[type=tel]:focus::-moz-placeholder,
.form input[type=url]:focus::-moz-placeholder,
.form input[type=email]:focus::-moz-placeholder,
.form input[type=password]:focus::-moz-placeholder,
.form input[type=number]:focus::-moz-placeholder,
.form textarea:focus::-moz-placeholder {
  color: transparent;
}
.form input[type=text]:focus:-ms-input-placeholder,
.form input[type=tel]:focus:-ms-input-placeholder,
.form input[type=url]:focus:-ms-input-placeholder,
.form input[type=email]:focus:-ms-input-placeholder,
.form input[type=password]:focus:-ms-input-placeholder,
.form input[type=number]:focus:-ms-input-placeholder,
.form textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form input:-webkit-autofill:active {
  -webkit-box-shadow: inset 0 0 0 62px #fff;
  -webkit-text-fill-color: var(--black);
}
.form input:-webkit-autofill:focus {
  border-color: #3AE1B6;
}
.form textarea {
  resize: none;
  height: 135px;
  padding-top: 20px;
}

.wpcf7 .wpcf7-form-control-wrap {
  width: 100%;
  display: block;
}
.wpcf7 form .wpcf7-response-output {
  border: none;
  margin-top: 20px;
}
.wpcf7 form .wpcf7-spinner {
  display: none;
}
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 10px;
  display: block;
}
.wpcf7 .wpcf7-acceptance {
  display: block;
  margin-top: 15px;
}
.wpcf7 .wpcf7-acceptance label {
  width: 100% !important;
}
.wpcf7 .wpcf7-list-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.wpcf7 .wpcf7-list-item label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.wpcf7 .wpcf7-list-item-label {
  display: block;
  position: relative;
  cursor: pointer;
  padding-left: 31px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.wpcf7 .wpcf7-list-item-label:hover:before {
  background-image: var(--accent-gradient);
  border: none;
  -webkit-mask: none;
}
.wpcf7 .wpcf7-list-item-label:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 6px;
  height: 22px;
  width: 22px;
  top: -2px;
  left: 0px;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, from(#31D7E1), to(#44EC87)) border-box;
  background: linear-gradient(0deg, #31D7E1, #44EC87) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.wpcf7 .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 18px;
  height: 13px;
  top: 9px;
  left: 11px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("./img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wpcf7 .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-image: var(--accent-gradient);
  border: none;
  -webkit-mask: none;
}
.wpcf7 .wpcf7-list-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
  visibility: visible;
}

.reg-form {
  max-width: 934px;
}
.reg-form .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.reg-form .form label {
  width: calc(50% - 20px);
  margin: 0 10px 10px;
}

.forgot-password {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}
.forgot-password a {
  color: #0FE368;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.forgot-password a:hover {
  text-decoration: underline;
  text-decoration-color: #0FE368;
}

.to-reg,
.to-login {
  margin-top: 40px;
  font-size: 14px;
  font-weight: 500;
}
.to-reg a,
.to-login a {
  color: #0FE368;
  text-decoration: none;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.to-reg a:hover,
.to-login a:hover {
  text-decoration: underline;
  text-decoration-color: #0FE368;
}

.popup {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: transparent;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 50px;
  text-align: center;
}
.popup .form-block {
  margin: 0;
}
.popup .fancybox-close-small {
  display: none;
}
.popup__close {
  position: absolute;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  cursor: pointer;
  padding: 0;
  height: 23px;
  width: 23px;
  background-color: transparent;
  z-index: 3;
  top: -40px;
  right: 0;
  border-radius: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup__close svg {
  width: 23px;
  height: 23px;
}
.popup__close svg rect {
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}
.popup__close:hover svg rect {
  fill: var(--accent-color);
}

.checkbox,
.radio {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.checkbox input[type=checkbox],
.checkbox input[type=radio],
.radio input[type=checkbox],
.radio input[type=radio] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 22px;
  cursor: pointer;
  z-index: 2;
}
.checkbox input[type=checkbox]:hover + .custom-checkbox::before, .checkbox input[type=checkbox]:hover + .custom-radio::before,
.checkbox input[type=radio]:hover + .custom-checkbox::before,
.checkbox input[type=radio]:hover + .custom-radio::before,
.radio input[type=checkbox]:hover + .custom-checkbox::before,
.radio input[type=checkbox]:hover + .custom-radio::before,
.radio input[type=radio]:hover + .custom-checkbox::before,
.radio input[type=radio]:hover + .custom-radio::before {
  background-image: var(--accent-gradient);
  border: none;
  -webkit-mask: none;
}
.checkbox input[type=checkbox]:checked + .custom-checkbox::before, .checkbox input[type=checkbox]:checked + .custom-radio::before,
.checkbox input[type=radio]:checked + .custom-checkbox::before,
.checkbox input[type=radio]:checked + .custom-radio::before,
.radio input[type=checkbox]:checked + .custom-checkbox::before,
.radio input[type=checkbox]:checked + .custom-radio::before,
.radio input[type=radio]:checked + .custom-checkbox::before,
.radio input[type=radio]:checked + .custom-radio::before {
  background-image: var(--accent-gradient);
  border: none;
  -webkit-mask: none;
}
.checkbox input[type=checkbox]:checked + .custom-checkbox::after, .checkbox input[type=checkbox]:checked + .custom-radio::after,
.checkbox input[type=radio]:checked + .custom-checkbox::after,
.checkbox input[type=radio]:checked + .custom-radio::after,
.radio input[type=checkbox]:checked + .custom-checkbox::after,
.radio input[type=checkbox]:checked + .custom-radio::after,
.radio input[type=radio]:checked + .custom-checkbox::after,
.radio input[type=radio]:checked + .custom-radio::after {
  opacity: 1;
  visibility: visible;
}

.custom-checkbox, .custom-radio {
  width: 22px;
  height: 22px;
  background-color: transparent;
  border: none;
  margin-right: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.custom-checkbox:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 6px;
  height: 22px;
  width: 22px;
  top: 0;
  left: 0px;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, from(#31D7E1), to(#44EC87)) border-box;
  background: linear-gradient(0deg, #31D7E1, #44EC87) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.custom-checkbox:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 18px;
  height: 13px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("./img/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.custom-radio {
  border-radius: 50%;
}
.custom-radio:before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  height: 22px;
  width: 22px;
  top: 0px;
  left: 0px;
  border: 1px solid transparent;
  background: -webkit-gradient(linear, left bottom, left top, from(#31D7E1), to(#44EC87)) border-box;
  background: linear-gradient(0deg, #31D7E1, #44EC87) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
}
.custom-radio:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: #000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.jq-selectbox {
  width: 100%;
}
.jq-selectbox.opened .jq-selectbox__trigger {
  -webkit-transform: scale(1, -1) translateY(50%);
          transform: scale(1, -1) translateY(50%);
}
.jq-selectbox__select {
  position: relative;
  height: 62px;
  background-color: transparent;
  background-image: none;
  padding: 0px 20px;
  color: #fff;
  border: 1px solid #B0B0B0;
  width: 100%;
  border-radius: 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: center;
  cursor: pointer;
  text-shadow: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.jq-selectbox__select-text {
  font-weight: 500;
  font-size: 16px;
  height: 100%;
  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;
  color: #b0b0b0;
  font-family: "Poppins";
  white-space: normal;
  line-height: 1.2;
}
.jq-selectbox__select:hover {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #3AE1B6;
}
.jq-selectbox__select:active {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #3AE1B6;
}
.jq-selectbox.focused .jq-selectbox__select {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: #3AE1B6;
}
.jq-selectbox__trigger {
  border: none;
  position: absolute;
  right: 30px;
  width: 12px;
  height: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("./img/select-trigger.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.jq-selectbox__trigger-arrow {
  display: none;
}
.jq-selectbox__dropdown {
  background-color: #fff;
  border: 2px solid #3AE1B6;
  border-radius: 30px;
  padding: 20px 30px;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: left;
  margin: 10px 0;
  overflow: hidden;
  font-family: "Poppins";
}
.jq-selectbox__dropdown ul {
  height: 100%;
  overflow: visible;
}
.jq-selectbox__dropdown li {
  -webkit-transition: none;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  line-height: 1.2;
  white-space: normal;
  max-width: 100%;
}
.jq-selectbox__dropdown li + li {
  margin-top: 10px;
}
.jq-selectbox__dropdown li.selected {
  color: #3AE1B6;
  background-color: transparent;
}
.jq-selectbox__dropdown li:hover {
  color: #3AE1B6;
  background-color: transparent;
}

@media only screen and (max-width: 1599px) {
  .form-block {
    margin-top: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .popup {
    padding-left: 10px;
    padding-right: 10px;
  }
  .popup .form-block:before {
    left: -10px;
    right: -10px;
  }
}
@media only screen and (max-width: 991px) {
  .reg-form {
    max-width: 100%;
    width: 100%;
  }
  .popup {
    max-width: calc(100% - 20px);
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .login-form {
    max-width: 100%;
    width: 100%;
  }
  .reg-form .form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: -20px;
  }
  .reg-form .form label {
    width: calc(100% - 20px);
  }
}
@media only screen and (max-width: 575px) {
  .form-section {
    padding: 130px 0 100px;
  }
  .form-title {
    font-size: 20px;
  }
  .form-block {
    margin-top: 50px;
  }
  .form-block::before {
    top: 30px;
    left: -10px;
    right: -10px;
    bottom: 30px;
    border-radius: 10px;
  }
  .form-inner {
    padding: 50px 30px;
  }
  .form label + label {
    margin-top: 10px;
  }
  .reg-form .form label {
    margin: 0 10px;
  }
}
.wrap.is-dark .tarif {
  background-color: #434857;
  color: #fff;
}
.wrap.is-dark .tarif:nth-child(2) {
  background-color: #434857;
}
.wrap.is-dark .tarif:nth-child(3) {
  background-color: #434857;
}
.wrap.is-dark .charts {
  background-color: rgba(67, 72, 87, 0.9);
}
.wrap.is-dark .advantages-block {
  background-color: transparent;
  border-radius: 0;
}
.wrap.is-dark .advantages-section {
  background-color: #fff;
  padding: 0;
  margin-top: 210px;
  margin-bottom: 0;
}
.wrap.is-dark .advantages-section:before {
  display: none;
}
.wrap.is-dark .platforms-section {
  background-color: #fff;
  margin: 0;
  padding: 130px 0;
}
.wrap.is-dark .platforms-info {
  color: #000;
}
.wrap.is-dark .platforms__support-icons .support-icon {
  background-color: #E9ECF4;
}
.wrap.is-dark .platforms__support-icons .support-icon svg path {
  fill: #B3BACD;
}
.wrap.is-dark .platforms__support-icons .support-icon:hover svg path {
  fill: #000;
}
.wrap.is-dark .get-started-section {
  margin: 0;
}
.wrap.is-dark .get-started-section::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
}

@media only screen and (max-width: 1599px) {
  .wrap.is-dark .advantages {
    margin-bottom: -100px;
  }
  .wrap.is-dark .advantages-block {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1199px) {
  .wrap.is-dark .advantages-section {
    margin-top: 130px;
  }
}
@media only screen and (max-width: 575px) {
  .wrap.is-dark .advantages-section {
    margin-top: 100px;
  }
  .wrap.is-dark .platforms-section {
    padding: 100px 0;
  }
}
.accounts-tarifs {
  width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.accounts-tarifs .tarif {
  color: var(--black);
  background-color: #f9f9f9;
}
.accounts-tarifs .tarif:nth-child(2), .accounts-tarifs .tarif:nth-child(5) {
  background-color: #ECFDF3;
}
.accounts-tarifs .tarif:nth-child(3), .accounts-tarifs .tarif:nth-child(6) {
  background-color: #ECFCFD;
}
.accounts-tarifs .slick-list {
  width: 100%;
}
.accounts-tarifs .tarif:nth-child(1) {
  background-color: #f9f9f9;
}
.accounts-tarifs__back, .accounts-tarifs__next {
  position: absolute;
  top: 50%;
}
.accounts-tarifs__back {
  left: 0px;
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
          transform: translate(-50%, -50%) scale(-1, 1);
}
.accounts-tarifs__next {
  right: 0;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

@media only screen and (max-width: 1599px) {
  .accounts-tarifs {
    width: 830px;
  }
}
@media only screen and (max-width: 991px) {
  .accounts-tarifs {
    width: 100%;
  }
  .accounts-tarifs .slick-list {
    overflow: visible;
  }
  .accounts-tarifs__back {
    left: calc(50% - 200px);
    right: auto;
  }
  .accounts-tarifs__next {
    left: auto;
    right: calc(50% - 200px);
  }
}
@media only screen and (max-width: 575px) {
  .accounts-tarifs__back {
    left: 35px;
  }
  .accounts-tarifs__next {
    right: 35px;
  }
}
.faqs {
  width: 100%;
  margin-top: 40px;
  text-align: left;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.faqs-section {
  width: 830px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-top: 130px;
}
.faqs-section .h3 {
  display: block;
  width: 100%;
}

.faq {
  width: 100%;
}
.faq + .faq {
  margin-top: 30px;
}
.faq__header {
  padding: 10px 20px;
  background-color: #E6E8EF;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.faq__question {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-right: 50px;
}
.faq__answer {
  line-height: 1.2;
  padding: 25px 20px 0;
  color: #000;
}

.faq__toggle {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background-color: #434857;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 2;
  background-image: url("./img/down.svg");
  background-size: 16px 10px;
  background-repeat: no-repeat;
  background-position: center;
}
.faq__toggle:before {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  display: block;
  background-image: var(--accent-gradient);
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 50%;
  overflow: hidden;
}
.faq__toggle:after {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  content: "";
  display: block;
  background-image: url("./img/down-black.svg");
  background-size: 16px 10px;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.faq__toggle:hover:before, .faq__toggle:hover:after {
  opacity: 1;
}
.faq__toggle:hover:before {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.faq.open .faq__answer {
  display: block;
}
.faq.open .faq__toggle {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.faq__answer {
  display: none;
}

@media only screen and (max-width: 1199px) {
  .faqs-section {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .faqs-section {
    margin-top: 100px;
  }
  .faq__question {
    font-size: 20px;
  }
}
.documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px -30px;
}

.document {
  width: calc(33.33% - 30px);
  margin: 0 15px 30px;
  text-align: center;
  padding: 20px 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  background-color: #F6F8FC;
}
.document__icon {
  width: 64px;
  height: 64px;
}
.document__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 13px;
  line-height: 1.2;
}
.document__text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #000;
}
.document__btn {
  margin-top: auto;
  padding: 20px 50px;
}

@media only screen and (max-width: 1599px) {
  .document {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .document {
    width: calc(50% - 30px);
  }
}
@media only screen and (max-width: 767px) {
  .document {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 575px) {
  .document__title {
    font-size: 18px;
  }
}
.contacts {
  position: relative;
}
.contacts-info {
  max-width: 545px;
  padding: 124px 0 129px;
  color: #000;
}
.contacts-section {
  padding-top: 0;
}
.contacts__text {
  margin-top: 20px;
  max-width: 450px;
}
.contacts__btn {
  margin-top: 40px;
}

.map {
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: -200px;
  background-color: #191919;
}

@media only screen and (max-width: 1199px) {
  .contacts-section {
    padding-top: 100px;
  }
  .contacts-info {
    padding: 0;
  }
  .map {
    position: relative;
    height: 400px;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 70px;
  }
}
@media only screen and (max-width: 575px) {
  .contacts-section {
    padding-top: 70px;
  }
  .contacts__btn {
    margin-top: 30px;
  }
  .map {
    margin-top: 50px;
  }
}
.support-section {
  position: relative;
  z-index: 2;
}
.support-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #fff;
  margin: 35px 35px 0;
  padding: 66px 100px 46px;
  position: relative;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 250px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 250px 0px rgba(0, 0, 0, 0.1);
}
.support-block::before {
  position: absolute;
  top: -35px;
  left: -35px;
  right: -35px;
  bottom: 35px;
  content: "";
  display: block;
  background-image: var(--accent-gradient);
  z-index: -1;
  border-radius: 20px;
}
.support-info {
  width: 545px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #000;
}
.support__text {
  max-width: 450px;
  margin-top: 20px;
}
.support-form {
  margin-left: 85px;
  width: 100%;
}
.support-form .form {
  margin: 0;
}
.support-form .form__btn {
  margin-top: 13px;
  padding-top: 24px;
  padding-bottom: 24px;
}

@media only screen and (max-width: 1599px) {
  .support-info {
    max-width: 360px;
  }
}
@media only screen and (max-width: 1199px) {
  .support-section {
    margin-top: 130px;
  }
  .support-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .support-info {
    width: 100%;
    max-width: 545px;
  }
  .support-form {
    margin-left: 0;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .support-block {
    padding: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .support-section {
    margin-top: 100px;
  }
  .support-block {
    padding: 40px 30px 20px;
    margin: 0;
  }
  .support-block::before {
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .content-section:not(.content-section--v2) {
    padding: 0;
  }
  .content-section:not(.content-section--v2) .content__container {
    max-width: 100%;
    padding: 0;
  }
}
.content:nth-child(2n) .content-item {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.content:nth-child(2n) .content-info {
  padding-right: 0;
  padding-left: 110px;
  margin-right: auto;
  margin-left: 0;
}
.content-rich-text {
  color: #000;
}
.content-rich-text p {
  margin: 30px 0;
}
.content-rich-text strong, .content-rich-text b {
  font-weight: 600;
}
.content-rich-text i {
  font-style: italic;
}
.content-rich-text a:not(.btn) {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--black);
  -webkit-transition: text-decoration-color 0.3s;
  transition: text-decoration-color 0.3s;
}
.content-rich-text a:not(.btn):hover {
  text-decoration: none;
  text-decoration-color: transparent;
}
.content-rich-text h2 {
  margin: 0;
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 40px;
}
.content-rich-text h3 {
  font-size: 32px;
  margin: 0;
  margin-bottom: 30px;
  font-weight: 600;
}
.content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.content-info {
  padding: 100px 110px 100px 0;
  width: 760px;
  margin-left: auto;
  min-height: 720px;
}
.content-image {
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  position: relative;
  overflow: hidden;
}
.content-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.content-section--v2 .content {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.content-section--v2 .content + .content {
  margin-top: 80px;
}
.content-section--v2 .content-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-section--v2 .content-info {
  width: 100%;
  padding: 0;
  min-height: auto;
}
.content-section--v2 .content-image {
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}
.content-section--v2 .content-image img {
  position: relative;
  top: auto;
  left: auto;
}
.content-section--v2 .content:nth-child(2) .content-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.content-section--v2 .content:nth-child(2) .content-info {
  padding-left: 0;
}

@media only screen and (max-width: 1599px) {
  .content:nth-child(2n) .content-info {
    padding-left: 70px;
  }
  .content-info {
    padding: 70px 70px 70px 0;
    width: 580px;
    min-height: 600px;
  }
}
@media only screen and (max-width: 1199px) {
  .content + .content {
    margin-top: 80px;
  }
  .content:nth-child(2n) .content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .content:nth-child(2n) .content-info {
    padding-left: 0;
  }
  .content-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .content-info {
    width: 100%;
    padding: 0;
    min-height: auto;
  }
  .content-image {
    width: 100%;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 40px;
  }
  .content-image img {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media only screen and (max-width: 575px) {
  .content + .content {
    margin-top: 70px;
  }
  .content h2 {
    font-size: 32px;
  }
  .content h3 {
    font-size: 27px;
  }
}