@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Exo:200,300,regular,500,600,700,800&display=swap);

:root {
  --primary: #F5F5F5;
  --secondary: #7C00FE;
  --accent: #7C00FE;
  --inverse: #ffff3f;
  --bg-primary: #FDFDFDFF;
  --bg-accent: #F5F7F8;
  --text-primary: #0b0f19;
  --text-secondary: rgb(86, 89, 115);
  --text-accent: #7C00FE;
  --text-inverse: #F5F7F8
}

* {
  padding: 0;
  margin: 0;
  border: 0
}

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

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

body {
  color: var(--text-primary);
  line-height: 1;
  font-family: Exo;
  font-size: .875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

button,
input,
textarea {
  font-family: Exo;
  font-size: inherit;
  line-height: inherit
}

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

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

ul li {
  list-style: none
}

img {
  vertical-align: top
}

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

body {
  -webkit-transition: .6s all;
  transition: .6s all
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}

.loaded body {
  opacity: 1
}

.wrapper {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden
}

@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}

.wrapper>main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

.wrapper>* {
  min-width: 0
}

[class*=__container] {
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 .9375rem
}

.spollers {
  display: -ms-grid;
  display: grid;
  gap: 15px
}

.spollers__item {
  font-size: 1.25rem
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
  border-bottom: 3px dashed var(--text-accent);
  padding: .625rem .9375rem;
  border-radius: .3125rem;
  position: relative;
  list-style: none
}

._spoller-init .spollers__title {
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: left
}

._spoller-init .spollers__title::after,
._spoller-init .spollers__title::before {
  content: "";
  position: absolute;
  right: 0;
  top: .75rem;
  height: .0625rem;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  width: .625rem;
  background-color: #000
}

._spoller-init .spollers__title::before {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg);
  right: .4375rem
}

._spoller-init .spollers__title::after {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg)
}

.spollers__title._spoller-active::before {
  -webkit-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  transform: rotate(-40deg)
}

.spollers__title._spoller-active::after {
  -webkit-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  transform: rotate(40deg)
}

.spollers__body {
  padding: 1.25rem;
  border-radius: .3125rem;
  border-bottom: 3px dashed var(--text-accent)
}

[data-ripple] {
  position: relative;
  overflow: hidden
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .3);
  border: 1px solid rgba(255, 255, 255, .5);
  -webkit-animation: button-circle 1.5s ease forwards;
  animation: button-circle 1.5s ease forwards
}

@-webkit-keyframes button-circle {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  100% {
    -webkit-transform: scale(10);
    transform: scale(10);
    opacity: 0
  }
}

@keyframes button-circle {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0)
  }

  100% {
    -webkit-transform: scale(10);
    transform: scale(10);
    opacity: 0
  }
}

[class*=-ibg] {
  position: relative
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover
}

[class*=-ibg--contain] img {
  -o-object-fit: contain;
  object-fit: contain
}

/*!Ion.RangeSlider, 2.3.1, © Denis Ineshin, 2010 - 2019, IonDen.com, Build date: 2019-12-19 16:51:02*/
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif
}

.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: 0 !important
}

.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0
}

.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0
}

.irs-handle {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: default;
  z-index: 1
}

.irs-handle.type_last {
  z-index: 2
}

.irs-max,
.irs-min {
  position: absolute;
  display: block;
  cursor: default
}

.irs-min {
  left: 0
}

.irs-max {
  right: 0
}

.irs-from,
.irs-single,
.irs-to {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap
}

.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px
}

.irs-with-grid .irs-grid {
  display: block
}

.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000
}

.irs-grid-pol.small {
  height: 4px
}

.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000
}

.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2
}

.lt-ie9 .irs-disable-mask {
  background: #000;
  cursor: not-allowed
}

.irs-disabled {
  opacity: .4
}

.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: 0 !important;
  z-index: -9999 !important;
  background: 0 0 !important;
  border-style: solid !important;
  border-color: transparent !important
}

.irs--flat {
  height: 40px
}

.irs--flat.irs-with-grid {
  height: 60px
}

.irs--flat .irs-line {
  top: 25px;
  height: 12px;
  background-color: #e1e4e9;
  border-radius: 4px
}

.irs--flat .irs-bar {
  top: 25px;
  height: 12px;
  background-color: #ed5565
}

.irs--flat .irs-bar--single {
  border-radius: 4px 0 0 4px
}

.irs--flat .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: #e1e4e9
}

.irs--flat .irs-handle {
  top: 22px;
  width: 16px;
  height: 18px;
  background-color: transparent
}

.irs--flat .irs-handle>i:first-child {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin-left: -1px;
  background-color: #da4453
}

.irs--flat .irs-handle.state_hover>i:first-child,
.irs--flat .irs-handle:hover>i:first-child {
  background-color: #a43540
}

.irs--flat .irs-max,
.irs--flat .irs-min {
  top: 0;
  padding: 1px 3px;
  color: #999;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  background-color: #e1e4e9;
  border-radius: 4px
}

.irs--flat .irs-from,
.irs--flat .irs-single,
.irs--flat .irs-to {
  color: #fff;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #ed5565;
  border-radius: 4px
}

.irs--flat .irs-from:before,
.irs--flat .irs-single:before,
.irs--flat .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #ed5565
}

.irs--flat .irs-grid-pol {
  background-color: #e1e4e9
}

.irs--flat .irs-grid-text {
  color: #999
}

.irs--big {
  height: 55px
}

.irs--big.irs-with-grid {
  height: 70px
}

.irs--big .irs-line {
  top: 33px;
  height: 12px;
  background-color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-50%, #ddd), color-stop(150%, #fff));
  background: linear-gradient(to bottom, #ddd -50%, #fff 150%);
  border: 1px solid #ccc;
  border-radius: 12px
}

.irs--big .irs-bar {
  top: 33px;
  height: 12px;
  background-color: #92bce0;
  border: 1px solid #428bca;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #428bca), to(#b9d4ec));
  background: linear-gradient(to bottom, #fff 0, #428bca 30%, #b9d4ec 100%);
  -webkit-box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, .5);
  box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, .5)
}

.irs--big .irs-bar--single {
  border-radius: 12px 0 0 12px
}

.irs--big .irs-shadow {
  height: 1px;
  bottom: 16px;
  background-color: rgba(66, 139, 202, .5)
}

.irs--big .irs-handle {
  top: 25px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, .3);
  background-color: #cbcfd5;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #b4b9be), to(white));
  background: linear-gradient(to bottom, #fff 0, #b4b9be 30%, #fff 100%);
  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, .2), inset 0 0 3px 1px #fff;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, .2), inset 0 0 3px 1px #fff;
  border-radius: 30px
}

.irs--big .irs-handle.state_hover,
.irs--big .irs-handle:hover {
  border-color: rgba(0, 0, 0, .45);
  background-color: #939ba7;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(30%, #919ba5), to(white));
  background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%)
}

.irs--big .irs-max,
.irs--big .irs-min {
  top: 0;
  padding: 1px 5px;
  color: #fff;
  text-shadow: none;
  background-color: #9f9f9f;
  border-radius: 3px
}

.irs--big .irs-from,
.irs--big .irs-single,
.irs--big .irs-to {
  color: #fff;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #428bca;
  background: -webkit-gradient(linear, left top, left bottom, from(#428bca), to(#3071a9));
  background: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
  border-radius: 3px
}

.irs--big .irs-grid-pol {
  background-color: #428bca
}

.irs--big .irs-grid-text {
  color: #428bca
}

.irs--modern {
  height: 55px
}

.irs--modern.irs-with-grid {
  height: 55px
}

.irs--modern .irs-line {
  top: 25px;
  height: 5px;
  background-color: #d1d6e0;
  background: -webkit-gradient(linear, left top, left bottom, from(#e0e4ea), to(#d1d6e0));
  background: linear-gradient(to bottom, #e0e4ea 0, #d1d6e0 100%);
  border: 1px solid #a3adc1;
  border-bottom-width: 0;
  border-radius: 5px
}

.irs--modern .irs-bar {
  top: 25px;
  height: 5px;
  background: #20b426;
  background: -webkit-gradient(linear, left top, left bottom, from(#20b426), to(#18891d));
  background: linear-gradient(to bottom, #20b426 0, #18891d 100%)
}

.irs--modern .irs-bar--single {
  border-radius: 5px 0 0 5px
}

.irs--modern .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(209, 214, 224, .5)
}

.irs--modern .irs-handle {
  top: 37px;
  width: 12px;
  height: 13px;
  border: 1px solid #a3adc1;
  border-top-width: 0;
  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
  border-radius: 0 0 3px 3px
}

.irs--modern .irs-handle>i:nth-child(1) {
  position: absolute;
  display: block;
  top: -4px;
  left: 1px;
  width: 6px;
  height: 6px;
  border: 1px solid #a3adc1;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.irs--modern .irs-handle>i:nth-child(2) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: 10px;
  height: 12px;
  background: #e9e6e6;
  background: -webkit-gradient(linear, left top, left bottom, from(white), to(#e9e6e6));
  background: linear-gradient(to bottom, #fff 0, #e9e6e6 100%);
  border-radius: 0 0 3px 3px
}

.irs--modern .irs-handle>i:nth-child(3) {
  position: absolute;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 5px;
  border-left: 1px solid #a3adc1;
  border-right: 1px solid #a3adc1
}

.irs--modern .irs-handle.state_hover,
.irs--modern .irs-handle:hover {
  border-color: #7685a2;
  background: #c3c7cd;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(30%, #919ba5), to(#fff));
  background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%)
}

.irs--modern .irs-handle.state_hover>i:nth-child(1),
.irs--modern .irs-handle:hover>i:nth-child(1) {
  border-color: #7685a2
}

.irs--modern .irs-handle.state_hover>i:nth-child(3),
.irs--modern .irs-handle:hover>i:nth-child(3) {
  border-color: #48536a
}

.irs--modern .irs-max,
.irs--modern .irs-min {
  top: 0;
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  color: #fff;
  background-color: #d1d6e0;
  border-radius: 5px
}

.irs--modern .irs-from,
.irs--modern .irs-single,
.irs--modern .irs-to {
  font-size: 10px;
  line-height: 1.333;
  text-shadow: none;
  padding: 1px 5px;
  background-color: #20b426;
  color: #fff;
  border-radius: 5px
}

.irs--modern .irs-from:before,
.irs--modern .irs-single:before,
.irs--modern .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #20b426
}

.irs--modern .irs-grid {
  height: 25px
}

.irs--modern .irs-grid-pol {
  background-color: #dedede
}

.irs--modern .irs-grid-text {
  color: silver;
  font-size: 13px
}

.irs--sharp {
  height: 50px;
  font-size: 12px;
  line-height: 1
}

.irs--sharp.irs-with-grid {
  height: 57px
}

.irs--sharp .irs-line {
  top: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 2px
}

.irs--sharp .irs-bar {
  top: 30px;
  height: 2px;
  background-color: #ee22fa
}

.irs--sharp .irs-bar--single {
  border-radius: 2px 0 0 2px
}

.irs--sharp .irs-shadow {
  height: 1px;
  bottom: 21px;
  background-color: rgba(0, 0, 0, .5)
}

.irs--sharp .irs-handle {
  top: 25px;
  width: 10px;
  height: 10px;
  background-color: #a804b2
}

.irs--sharp .irs-handle>i:first-child {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #a804b2
}

.irs--sharp .irs-handle.state_hover,
.irs--sharp .irs-handle:hover {
  background-color: #000
}

.irs--sharp .irs-handle.state_hover>i:first-child,
.irs--sharp .irs-handle:hover>i:first-child {
  border-top-color: #000
}

.irs--sharp .irs-max,
.irs--sharp .irs-min {
  color: #fff;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 4px;
  opacity: .4;
  background-color: #a804b2;
  border-radius: 2px
}

.irs--sharp .irs-from,
.irs--sharp .irs-single,
.irs--sharp .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 4px;
  background-color: #a804b2;
  color: #fff;
  border-radius: 2px
}

.irs--sharp .irs-from:before,
.irs--sharp .irs-single:before,
.irs--sharp .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #a804b2
}

.irs--sharp .irs-grid {
  height: 25px
}

.irs--sharp .irs-grid-pol {
  background-color: #dedede
}

.irs--sharp .irs-grid-text {
  color: silver;
  font-size: 13px
}

.irs--round {
  height: 50px
}

.irs--round.irs-with-grid {
  height: 65px
}

.irs--round .irs-line {
  top: 36px;
  height: 4px;
  background-color: #dee4ec;
  border-radius: 4px
}

.irs--round .irs-bar {
  top: 36px;
  height: 4px;
  background-color: #006cfa
}

.irs--round .irs-bar--single {
  border-radius: 4px 0 0 4px
}

.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: rgba(222, 228, 236, .5)
}

.irs--round .irs-handle {
  top: 26px;
  width: 24px;
  height: 24px;
  border: 4px solid #006cfa;
  background-color: #fff;
  border-radius: 24px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 255, .3);
  box-shadow: 0 1px 3px rgba(0, 0, 255, .3)
}

.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: #f0f6ff
}

.irs--round .irs-max,
.irs--round .irs-min {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, .1);
  border-radius: 4px
}

.irs--round .irs-from,
.irs--round .irs-single,
.irs--round .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #006cfa;
  color: #fff;
  border-radius: 4px
}

.irs--round .irs-from:before,
.irs--round .irs-single:before,
.irs--round .irs-to:before {
  position: absolute;
  display: block;
  content: "";
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -3px;
  overflow: hidden;
  border: 3px solid transparent;
  border-top-color: #006cfa
}

.irs--round .irs-grid {
  height: 25px
}

.irs--round .irs-grid-pol {
  background-color: #dedede
}

.irs--round .irs-grid-text {
  color: silver;
  font-size: 13px
}

.irs--square {
  height: 50px
}

.irs--square.irs-with-grid {
  height: 60px
}

.irs--square .irs-line {
  top: 31px;
  height: 4px;
  background-color: #dedede
}

.irs--square .irs-bar {
  top: 31px;
  height: 4px;
  background-color: #000
}

.irs--square .irs-shadow {
  height: 2px;
  bottom: 21px;
  background-color: #dedede
}

.irs--square .irs-handle {
  top: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid #000;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.irs--square .irs-handle.state_hover,
.irs--square .irs-handle:hover {
  background-color: #f0f6ff
}

.irs--square .irs-max,
.irs--square .irs-min {
  color: #333;
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: rgba(0, 0, 0, .1)
}

.irs--square .irs-from,
.irs--square .irs-single,
.irs--square .irs-to {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: #000;
  color: #fff
}

.irs--square .irs-grid {
  height: 25px
}

.irs--square .irs-grid-pol {
  background-color: #dedede
}

.irs--square .irs-grid-text {
  color: silver;
  font-size: 11px
}

html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.grid-bg {
  background-image: url(../img/grid.svg);
  --tw-bg-opacity: 1;
  z-index: -1
}

h1 {
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.25rem
}

h2 {
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
  line-height: 1.2
}

h3 {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.2
}

h5 {
  color: var(--text-primary);
  line-height: 1.2
}

p {
  line-height: 1.2;
  color: var(--text-secondary)
}

.dark-bg {
  background-color: #151822
}

.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5 {
  color: #fff
}

.dark-bg i,
.dark-bg p,
.dark-bg span {
  color: rgba(255, 255, 255, .7)
}

.btn {
  padding: 15px 40px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
  background-color: var(--text-accent);
  -webkit-box-shadow: rgba(0, 0, 0, .05) 0 0 8px;
  box-shadow: rgba(0, 0, 0, .05) 0 0 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 15px;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  color: var(--text-inverse)
}

.btn:hover {
  letter-spacing: 3px;
  background-color: #151822;
  -webkit-box-shadow: #151822 0 7px 29px 0;
  box-shadow: #151822 0 7px 29px 0
}

.btn:active {
  letter-spacing: 3px;
  color: #fff;
  -webkit-box-shadow: #151822 0 0 0 0;
  box-shadow: #151822 0 0 0 0;
  -webkit-transition: .3s all;
  transition: .3s all;
  -webkit-transform: scale(.9);
  -ms-transform: scale(.9);
  transform: scale(.9)
}

.border-btn {
  border: 1px solid transparent
}

.border-btn:hover {
  border: 1px solid #fff
}

.swiper-button-disabled {
  opacity: .5;
  pointer-events: none
}

.header {
  padding: 10px 0;
  position: absolute;
  width: 100%;
  z-index: 100;
}

.header._header-scroll {
  position: fixed;
  top: -100%
}

.header._header-show {
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  top: 0;
  visibility: visible !important;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: none;
  animation-name: none;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 4px 6px -1px, rgba(0, 0, 0, .06) 0 2px 4px -1px;
  box-shadow: rgba(0, 0, 0, .1) 0 4px 6px -1px, rgba(0, 0, 0, .06) 0 2px 4px -1px
}

.header__actions {
  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;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px
}

.header__container {
  margin: auto
}

.menu {
  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;
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px
}

.menu__logo {
  width: 150px;
  z-index: 10
}

.menu__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.menu__list {
  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;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem
}

.header__btn {
  z-index: 10;
  font-weight: 800
}

.header__btn:hover {
  letter-spacing: 1.5px
}

.header__btn i {
  font-size: 20px
}

.icon-menu {
  display: none
}

.footer {
  border-top: 1px solid #e2e5f1
}

.footer__wrapper {
  text-align: center;
  padding: 1.25rem 0;
  gap: 1.25rem;
  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
}

.footer__logo {
  width: 120px
}

.footer__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.hero {
  position: relative;
  z-index: 1
}

.hero__container {
  position: relative;
  height: 100%;
  width: 100%
}

.hero__bg {
  pointer-events: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1
}

.hero__bg img {
  width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover
}

.hero__content {
  gap: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 0 10px
}

.hero__label {
  text-align: center;
  margin: 0 auto;
  font-weight: 600
}

.hero__inner {
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  border-radius: 10px;
  padding: 1.25rem
}

.hero__img {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px
}

.hero__img h3 {
  font-weight: 600;
  text-align: center
}

.hero__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.hero__video {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px
}

.hero__video video {
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  border-radius: 10px;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.form {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  max-width: 500px;
  width: 100%
}

.form__body {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0
}

.form__title {
  text-align: center;
  margin-bottom: 2.75rem;
  font-weight: 600
}

.form__input {
  margin-bottom: .625rem
}

.form__input input {
  width: 100%;
  padding: .5rem;
  outline: 0;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  background: #f1f0fc;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border: 1px solid transparent;
  -webkit-transition: .3s all;
  transition: .3s all;
  -webkit-box-shadow: rgba(27, 31, 35, .04) 0 1px 0, rgba(255, 255, 255, .25) 0 1px 0 inset;
  box-shadow: rgba(27, 31, 35, .04) 0 1px 0, rgba(255, 255, 255, .25) 0 1px 0 inset
}

.form__input input:focus {
  border-color: var(--secondary)
}

.form__btn {
  width: 100%
}

.form__additionally {
  text-align: left
}

.form__additionally p {
  display: inline
}

.cards__label {
  text-align: center
}

.cards__wrapper {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem
}

.card {
  position: relative;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  width: 100%
}

.card__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .625rem;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0
}

.card__icon {
  width: 52px;
  height: 52px;
  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;
  background-color: var(--secondary);
  border-radius: 10px;
  -webkit-box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, .2) 0 8px 24px
}

.card__icon i {
  color: #fff
}

.card__title {
  font-weight: 600
}

.card__descr {
  margin: auto 0
}

.phone-slider {
  position: relative
}

.phone-slider__title {
  text-align: center;
  margin-bottom: 3.125rem
}

.phone-slider__container {
  position: relative
}

.phone-frame {
  position: absolute;
  width: 33.3%;
  height: 100%;
  top: 107px;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  margin-left: 5px
}

.phone-frame img {
  pointer-events: none;
  max-width: 328px;
  height: 100%
}

.no-webp .phone-img {
  background-image: url(../img/phone-slider/phone.png)
}

.phone-img {
  z-index: 5;
  max-width: 390px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat
}

.no-webp .phone-bg {
  background-image: url(../img/phone-slider/phone-bg.png)
}

.phone-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-51%);
  -ms-transform: translate(-51%);
  transform: translate(-51%);
  z-index: 5;
  max-width: 390px;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat
}

.swiper-screens-image {
  width: 390px
}

.swiper-screens-image img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.swiper-steps {
  width: 100%;
  max-width: 400px
}

.step {
  text-align: center;
  width: 100%
}

.step h4 {
  margin-bottom: .625rem
}

.swiper-steps-wrapper {
  margin-top: 3.75rem
}

.swiper-steps {
  margin: 0 auto
}

.swiper-pagination {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0
}

.swiper-pagination-progressbar {
  background-color: #e2e5f1;
  height: 5px;
  width: 100%
}

.swiper-pagination-progressbar-fill {
  background-color: var(--text-accent);
  height: 5px;
  display: block
}

.swiper-buttons {
  width: 100%;
  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
}

.swiper-btn {
  position: relative;
  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;
  cursor: pointer;
  border-radius: 10px;
  -webkit-box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
  -webkit-transition: .3s all;
  transition: .3s all
}

.swiper-btn i {
  color: var(--text-accent)
}

.swiper-btn:hover {
  background-color: var(--text-accent)
}

.swiper-btn:hover i {
  color: #fff
}

.swiper-btn:active {
  -webkit-transform: scale(.9);
  -ms-transform: scale(.9);
  transform: scale(.9)
}

.swiper-button-prev.swiper-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50px
}

.swiper-button-next.swiper-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 50px
}

.calculator__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem
}

.calculator__counts {
  margin-top: 1.25rem
}

.calculator__count {
  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;
  border: 2px dashed rgba(227, 209, 209, .47);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.25rem
}

.calculator__invest {
  font-weight: 600;
  letter-spacing: 1px;
  background-color: #22c55e;
  color: #fff !important;
  padding: 0 10px;
  line-height: 1.4;
  border-radius: 10px
}

.slider-calculator {
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px
}

.slider-calculator__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0
}

.slider-calculator__gif {
  height: 150px;
  width: 150px;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain
}

.arrow-icon {
  margin: 0 auto
}

.table__label {
  margin-bottom: 2.5rem;
  text-align: center
}

.table__wrapper {
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  overflow: hidden;
  max-height: 287px
}

.table__inner {
  padding: .3125rem;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0
}

.table__inner th {
  background-color: var(--text-accent);
  text-align: left;
  color: #fff
}

.table__inner tr {
  background-color: #f5f7f8;
  -webkit-transition: .5s all ease-in-out;
  transition: .5s all ease-in-out
}

.table__inner td {
  margin: .3125rem
}

.table__inner td:last-child {
  background-color: #22c55e;
  color: #fff;
  font-weight: 800
}

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

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

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

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@-webkit-keyframes slideUp {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0
  }
}

@keyframes slideUp {
  from {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }

  to {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0
  }
}

.new-row {
  -webkit-animation: slideDown .5s forwards;
  animation: slideDown .5s forwards
}

.remove-row {
  -webkit-animation: slideUp .5s forwards;
  animation: slideUp .5s forwards
}

.testimonials {
  position: relative
}

.testimonials__bg {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0
}

.testimonials__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1
}

.testimonials__label {
  text-align: center;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  margin: 1.25rem;
  width: 100%
}

.testimonials__text {
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem;
  height: 100%
}

.testimonials__title {
  line-height: 1;
  margin: 0;
  text-align: center
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px;
  width: 100%
}

.testimonials__body {
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  background: #fff;
  border-radius: 10px;
  padding: 1.25rem
}

.testimonials__head {
  position: relative;
  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;
  padding-bottom: 1.25rem;
  border-bottom: 3px dashed rgba(227, 209, 209, .47)
}

.testimonials__icon {
  background-color: var(--secondary);
  -webkit-box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
  box-shadow: rgba(149, 157, 165, .2) 0 8px 24px;
  padding: 1.25rem;
  border-radius: 10px
}

.testimonials__icon i {
  color: #fff
}

.testimonials__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem
}

.testimonials__btn {
  width: 50px;
  height: 50px;
  -webkit-transition: .3s all;
  transition: .3s all
}

.testimonial {
  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-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%
}

.testimonial__review {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.testimonial__footer {
  padding-top: 1.25rem;
  border-top: 3px dashed rgba(227, 209, 209, .47);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-column-gap: .3125rem;
  -moz-column-gap: .3125rem;
  column-gap: .3125rem;
  margin-top: auto
}

.testimonial__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem
}

.testimonial__photo {
  width: 50px;
  height: auto
}

.testimonial__img {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.testimonial__bio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .5rem
}

.testimonial__name {
  font-size: 1.125rem
}

.testimonial__profit {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 800
}

.testimonial__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.testimonial__rate i {
  color: var(--text-accent)
}

.questions__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1.25rem
}

.questions__decor {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%
}

.questions__content {
  margin-top: 2.5rem;
  position: relative
}

.questions__img {
  width: 70%;
  height: 540px;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  border-radius: 10px
}

.questions__img img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center
}

.questions__spollers {
  margin-top: 6.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%
}

.block-questions {
  position: absolute;
  bottom: -80px;
  left: 20%;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(153.32deg, rgba(255, 255, 255, .3) -65.62%, rgba(255, 255, 255, .1) 83.28%);
  -webkit-box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  box-shadow: rgba(0, 0, 0, .2) 0 .25rem 1.5rem -.0625rem;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  border-radius: 10px
}

.block-questions__body {
  padding: 1.25rem;
  background-color: #151822;
  border-radius: 10px;
  -webkit-box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0;
  box-shadow: rgba(0, 0, 0, .1) 0 0 5px 0, rgba(0, 0, 0, .1) 0 0 1px 0
}

.block-questions__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: .625rem
}

.block-questions__icon img {
  width: 100%;
  height: auto
}

.block-questions__icon i {
  color: var(--text-accent);
  font-size: 42px
}

.block-questions__text {
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 300;
  color: #ddd
}

.spollers__title {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px
}

.spollers__item>summary {
  list-style: none
}

.spollers__item>summary::-webkit-details-marker {
  display: none
}

.steps__container {
  position: relative;
  z-index: 1
}

.steps__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 2.5rem
}

.step {
  position: relative;
  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;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem
}

.step::after {
  position: absolute;
  left: 60px;
  top: 70%;
  width: 1px;
  height: 70%;
  content: "";
  background-color: #e2e5f1
}

.step::before {
  position: absolute;
  left: 60px;
  top: 0;
  width: 1px;
  height: 70%;
  content: "";
  background-color: #e2e5f1
}

.step:first-child::before {
  display: none
}

.step:last-child::after {
  display: none
}

.step__number {
  position: relative;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  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;
  background-color: #f3f6ff;
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.step__number span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  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;
  background-color: #fff;
  font-size: 2rem;
  font-weight: 800;
  -webkit-box-shadow: 0 .275rem .75rem -.0625rem rgba(11, 15, 25, .06), 0 .125rem .4rem -.0625rem rgba(11, 15, 25, .03);
  box-shadow: 0 .275rem .75rem -.0625rem rgba(11, 15, 25, .06), 0 .125rem .4rem -.0625rem rgba(11, 15, 25, .03)
}

.step__body {
  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
}

.step__img {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.step__img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.step__text h5 {
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
  margin-bottom: .625rem
}

.step__text p {
  text-align: left;
  line-height: 1.4
}

.swiper {
  overflow: hidden
}

.swiper-initialized {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
  display: none !important
}

[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0
}

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

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

[data-simplebar].simplebar-dragging {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  -webkit-transition: opacity .2s .5s linear;
  transition: opacity .2s .5s linear
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: .5;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-duration: 0s;
  transition-duration: 0s
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px
}

.simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 0;
  bottom: 0;
  min-height: 0;
  min-width: 10px;
  width: auto
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0
}

.simplebar-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: scrollbar !important
}

.simplebar-dummy-scrollbar-size>div {
  width: 200%;
  height: 200%;
  margin: 10px 0
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none
}

@media (min-width:29.99875em) {
  .table__wrapper {
    max-height: 311px
  }
}

@media (min-width:47.99875em) {
  .calculator__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }

  .slider-calculator {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }

  .table__wrapper {
    max-height: 470px
  }

  .testimonials__label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%
  }

  .testimonial {
    border-right: 3px dashed rgba(227, 209, 209, .47);
    padding-right: 1.25rem
  }
}

@media (min-width:61.99875em) {
  .hero__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }

  .hero__video {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }

  .hero__action {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%
  }
}

@media (min-width:75em) {
  section {
    padding-top: 6.25rem
  }

  section {
    padding-bottom: 6.25rem
  }

  h1 {
    font-size: 3.5rem
  }

  h2 {
    font-size: 2.625rem
  }

  h3 {
    font-size: 1.75rem
  }

  p {
    font-size: 1rem
  }

  .hero__content {
    margin-top: 3.125rem
  }

  .hero__label {
    margin-top: 3rem
  }

  .hero__label h1 {
    font-size: 4.375rem
  }

  .hero__label h3 {
    font-size: 2.625rem
  }

  .card__icon i {
    font-size: 1.5rem
  }

  .card__title {
    font-size: 1.25rem
  }

  .step h4 {
    font-size: 2.5rem
  }

  .step p {
    font-size: 1.25rem
  }

  .calculator__count span {
    font-size: 1.5rem
  }

  .calculator__count i {
    font-size: 1.5rem
  }

  .calculator__invest {
    font-size: 1.5rem
  }

  .slider-calculator__inner {
    padding: 1.875rem
  }

  .table__inner td,
  .table__inner th {
    padding: .5rem
  }

  .table__inner td,
  .table__inner th {
    font-size: 1.25rem
  }

  .testimonial__profit {
    font-size: 1rem
  }

  .steps__wrapper {
    row-gap: 3.75rem
  }

  .step {
    -webkit-column-gap: 3.125rem;
    -moz-column-gap: 3.125rem;
    column-gap: 3.125rem
  }

  .step__img {
    margin-left: 2.5rem
  }

  .step__img {
    margin-right: 2.5rem
  }

  .step__text h5 {
    font-size: 1.625rem
  }
}

@media (max-width:1200px) {
  .swiper-screens .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .phone-frame {
    width: 320px;
    margin-left: 1.9px;
    top: 105px
  }

  .phone-img {
    width: 320px;
    height: 640px
  }

  .phone-bg {
    width: 320px;
    height: 640px
  }

  .swiper-screens-image {
    width: 320px
  }
}

@media (max-width:20em) {
  section {
    padding-top: 2.5rem
  }

  section {
    padding-bottom: 2.5rem
  }

  h1 {
    font-size: 1.5rem
  }

  h2 {
    font-size: 1.375rem
  }

  h3 {
    font-size: 1.125rem
  }

  p {
    font-size: .875rem
  }

  .hero__content {
    margin-top: 1.25rem
  }

  .hero__label {
    margin-top: 3rem
  }

  .hero__label h1 {
    font-size: 2rem
  }

  .hero__label h3 {
    font-size: 2rem
  }

  .card__icon i {
    font-size: 1.25rem
  }

  .card__title {
    font-size: 1.125rem
  }

  .step h4 {
    font-size: 1.5rem
  }

  .step p {
    font-size: .875rem
  }

  .calculator__count span {
    font-size: 1rem
  }

  .calculator__count i {
    font-size: 1.125rem
  }

  .calculator__invest {
    font-size: 1.25rem
  }

  .slider-calculator__inner {
    padding: 1.375rem
  }

  .table__inner td,
  .table__inner th {
    padding: .25rem
  }

  .table__inner td,
  .table__inner th {
    font-size: .625rem
  }

  .testimonial__profit {
    font-size: .8125rem
  }

  .steps__wrapper {
    row-gap: 1.25rem
  }

  .step {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
  }

  .step__img {
    margin-left: 1.25rem
  }

  .step__img {
    margin-right: 1.25rem
  }

  .step__text h5 {
    font-size: 1.25rem
  }
}

@media (max-width:61.99875em) {
  .hero__content {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }

  .hero__action {
    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
  }

  .questions__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .questions__decor {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }

  .questions__img {
    width: 100%
  }

  .questions__spollers {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto
  }

  .step__img {
    display: none
  }
}

@media (max-width:47.99875em) {
  .header__btn {
    padding: 12px;
    border-radius: 8px
  }

  .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: start
  }

  .menu__item {
    width: 100%;
    font-size: 36px
  }

  .menu__item:not(:last-child) {
    margin-bottom: 10px
  }

  .menu__link {
    display: inline-block;
    width: 100%
  }

  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: auto;
    top: 0;
    left: -100%;
    background-color: #a59dab;
    -webkit-transition: left .3s ease 0s;
    transition: left .3s ease 0s;
    padding: 4.375rem .3125rem 1.875rem .3125rem;
    z-index: 1
  }

  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 56px;
    top: 0;
    left: -100%;
    background-color: #fdfdfd;
    -webkit-transition: left .3s ease 0s;
    transition: left .3s ease 0s;
    z-index: 1;
    -webkit-box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px;
    box-shadow: rgba(0, 0, 0, .1) 0 10px 15px -3px, rgba(0, 0, 0, .05) 0 4px 6px -2px
  }

  .menu-open .menu__body {
    left: 0
  }

  .menu-open .menu__body::before {
    left: 0
  }

  .icon-menu {
    display: block;
    position: relative;
    width: 2.1875rem;
    height: 1.5625rem;
    z-index: 5
  }

  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: "";
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    right: 0;
    position: absolute;
    width: 100%;
    height: .1875rem;
    background-color: #000
  }

  .icon-menu::before {
    top: 0
  }

  .icon-menu::after {
    bottom: 0
  }

  .icon-menu span {
    top: calc(50% - .0625rem)
  }

  .menu-open .icon-menu span {
    width: 0
  }

  .menu-open .icon-menu::before {
    top: calc(50% - .0625rem);
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - .0625rem);
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
  }

  .cards__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 2.5rem
  }

  .phone-frame {
    top: 86px
  }

  .swiper-button-prev.swiper-btn {
    left: 10px
  }

  .swiper-button-next.swiper-btn {
    right: 10px;
    width: 50px;
    height: 50px
  }

  .calculator__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .testimonial__photo {
    width: 70px
  }
}

@media (max-width:47.99875em) and (any-hover:none) {
  .icon-menu {
    cursor: default
  }
}

@media (max-width:29.99875em) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .card__icon {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -45px;
    left: 10px
  }

  .phone-frame {
    width: 280px;
    top: 80px;
    margin-left: 0
  }

  .phone-img {
    width: 280px
  }

  .phone-bg {
    width: 280px
  }

  .swiper-screens-image {
    width: 280px
  }

  .swiper-button-prev.swiper-btn {
    left: 5px;
    width: 40px;
    height: 40px
  }

  .swiper-button-next.swiper-btn {
    right: 5px;
    width: 40px;
    height: 40px
  }

  .testimonials__title {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
  }

  .testimonials__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1.25rem
  }

  .testimonials__icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: -60px;
    left: -10px
  }

  .testimonials__btn {
    background-color: var(--text-accent)
  }

  .testimonials__btn i {
    color: #fff
  }

  .step::after {
    left: 30px
  }

  .step::before {
    left: 30px
  }

  .step__number {
    width: 60px;
    height: 60px
  }

  .step__number span {
    width: 40px;
    height: 40px;
    font-size: 1.625rem
  }
}

@media (min-width:20em) and (max-width:75em) {
  @supports (padding-top:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    section {
      padding-top: clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)
    }
  }

  @supports not (padding-top:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    section {
      padding-top: calc(2.5rem + 3.75 * (100vw - 20rem)/ 55)
    }
  }

  @supports (padding-bottom:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    section {
      padding-bottom: clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)
    }
  }

  @supports not (padding-bottom:clamp(2.5rem, 1.1363636364rem + 6.8181818182vw, 6.25rem)) {
    section {
      padding-bottom: calc(2.5rem + 3.75 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.5rem, 0.7727272727rem + 3.6363636364vw, 3.5rem)) {
    h1 {
      font-size: clamp(1.5rem, .7727272727rem + 3.6363636364vw, 3.5rem)
    }
  }

  @supports not (font-size:clamp(1.5rem, 0.7727272727rem + 3.6363636364vw, 3.5rem)) {
    h1 {
      font-size: calc(1.5rem + 2 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.375rem, 0.9204545455rem + 2.2727272727vw, 2.625rem)) {
    h2 {
      font-size: clamp(1.375rem, .9204545455rem + 2.2727272727vw, 2.625rem)
    }
  }

  @supports not (font-size:clamp(1.375rem, 0.9204545455rem + 2.2727272727vw, 2.625rem)) {
    h2 {
      font-size: calc(1.375rem + 1.25 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.125rem, 0.8977272727rem + 1.1363636364vw, 1.75rem)) {
    h3 {
      font-size: clamp(1.125rem, .8977272727rem + 1.1363636364vw, 1.75rem)
    }
  }

  @supports not (font-size:clamp(1.125rem, 0.8977272727rem + 1.1363636364vw, 1.75rem)) {
    h3 {
      font-size: calc(1.125rem + .625 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(0.875rem, 0.8295454545rem + 0.2272727273vw, 1rem)) {
    p {
      font-size: clamp(.875rem, .8295454545rem + .2272727273vw, 1rem)
    }
  }

  @supports not (font-size:clamp(0.875rem, 0.8295454545rem + 0.2272727273vw, 1rem)) {
    p {
      font-size: calc(.875rem + .125 * (100vw - 20rem)/ 55)
    }
  }

  @supports (margin-top:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) {
    .hero__content {
      margin-top: clamp(1.25rem, .5681818182rem + 3.4090909091vw, 3.125rem)
    }
  }

  @supports not (margin-top:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) {
    .hero__content {
      margin-top: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55)
    }
  }

  @supports (margin-top:clamp(1.25rem, 2.1022727273rem + -1.1363636364vw, 1.875rem)) {
    .hero__label {
      margin-top: clamp(3rem, 2.1022727273rem + -1.1363636364vw, 1.875rem)
    }
  }

  @supports not (margin-top:clamp(1.25rem, 2.1022727273rem + -1.1363636364vw, 1.875rem)) {
    .hero__label {
      margin-top: calc(3rem + -.625 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(2rem, 1.1363636364rem + 4.3181818182vw, 4.375rem)) {
    .hero__label h1 {
      font-size: clamp(2rem, 1.1363636364rem + 4.3181818182vw, 4.375rem)
    }
  }

  @supports not (font-size:clamp(2rem, 1.1363636364rem + 4.3181818182vw, 4.375rem)) {
    .hero__label h1 {
      font-size: calc(2rem + 2.375 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(2rem, 1.7727272727rem + 1.1363636364vw, 2.625rem)) {
    .hero__label h3 {
      font-size: clamp(2rem, 1.7727272727rem + 1.1363636364vw, 2.625rem)
    }
  }

  @supports not (font-size:clamp(2rem, 1.7727272727rem + 1.1363636364vw, 2.625rem)) {
    .hero__label h3 {
      font-size: calc(2rem + .625 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .card__icon i {
      font-size: clamp(1.25rem, 1.1590909091rem + .4545454545vw, 1.5rem)
    }
  }

  @supports not (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .card__icon i {
      font-size: calc(1.25rem + .25 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.125rem, 1.0795454545rem + 0.2272727273vw, 1.25rem)) {
    .card__title {
      font-size: clamp(1.125rem, 1.0795454545rem + .2272727273vw, 1.25rem)
    }
  }

  @supports not (font-size:clamp(1.125rem, 1.0795454545rem + 0.2272727273vw, 1.25rem)) {
    .card__title {
      font-size: calc(1.125rem + .125 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.5rem, 1.1363636364rem + 1.8181818182vw, 2.5rem)) {
    .step h4 {
      font-size: clamp(1.5rem, 1.1363636364rem + 1.8181818182vw, 2.5rem)
    }
  }

  @supports not (font-size:clamp(1.5rem, 1.1363636364rem + 1.8181818182vw, 2.5rem)) {
    .step h4 {
      font-size: calc(1.5rem + 1 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(0.875rem, 0.7386363636rem + 0.6818181818vw, 1.25rem)) {
    .step p {
      font-size: clamp(.875rem, .7386363636rem + .6818181818vw, 1.25rem)
    }
  }

  @supports not (font-size:clamp(0.875rem, 0.7386363636rem + 0.6818181818vw, 1.25rem)) {
    .step p {
      font-size: calc(.875rem + .375 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem)) {
    .calculator__count span {
      font-size: clamp(1rem, .8181818182rem + .9090909091vw, 1.5rem)
    }
  }

  @supports not (font-size:clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem)) {
    .calculator__count span {
      font-size: calc(1rem + .5 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.125rem, 0.9886363636rem + 0.6818181818vw, 1.5rem)) {
    .calculator__count i {
      font-size: clamp(1.125rem, .9886363636rem + .6818181818vw, 1.5rem)
    }
  }

  @supports not (font-size:clamp(1.125rem, 0.9886363636rem + 0.6818181818vw, 1.5rem)) {
    .calculator__count i {
      font-size: calc(1.125rem + .375 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .calculator__invest {
      font-size: clamp(1.25rem, 1.1590909091rem + .4545454545vw, 1.5rem)
    }
  }

  @supports not (font-size:clamp(1.25rem, 1.1590909091rem + 0.4545454545vw, 1.5rem)) {
    .calculator__invest {
      font-size: calc(1.25rem + .25 * (100vw - 20rem)/ 55)
    }
  }

  @supports (padding:clamp(1.375rem, 1.1931818182rem + 0.9090909091vw, 1.875rem)) {
    .slider-calculator__inner {
      padding: clamp(1.375rem, 1.1931818182rem + .9090909091vw, 1.875rem)
    }
  }

  @supports not (padding:clamp(1.375rem, 1.1931818182rem + 0.9090909091vw, 1.875rem)) {
    .slider-calculator__inner {
      padding: calc(1.375rem + .5 * (100vw - 20rem)/ 55)
    }
  }

  @supports (padding:clamp(0.25rem, 0.1590909091rem + 0.4545454545vw, 0.5rem)) {

    .table__inner td,
    .table__inner th {
      padding: clamp(.25rem, .1590909091rem + .4545454545vw, .5rem)
    }
  }

  @supports not (padding:clamp(0.25rem, 0.1590909091rem + 0.4545454545vw, 0.5rem)) {

    .table__inner td,
    .table__inner th {
      padding: calc(.25rem + .25 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(0.625rem, 0.3977272727rem + 1.1363636364vw, 1.25rem)) {

    .table__inner td,
    .table__inner th {
      font-size: clamp(.625rem, .3977272727rem + 1.1363636364vw, 1.25rem)
    }
  }

  @supports not (font-size:clamp(0.625rem, 0.3977272727rem + 1.1363636364vw, 1.25rem)) {

    .table__inner td,
    .table__inner th {
      font-size: calc(.625rem + .625 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(0.8125rem, 0.7443181818rem + 0.3409090909vw, 1rem)) {
    .testimonial__profit {
      font-size: clamp(.8125rem, .7443181818rem + .3409090909vw, 1rem)
    }
  }

  @supports not (font-size:clamp(0.8125rem, 0.7443181818rem + 0.3409090909vw, 1rem)) {
    .testimonial__profit {
      font-size: calc(.8125rem + .1875 * (100vw - 20rem)/ 55)
    }
  }

  @supports (row-gap:clamp(1.25rem, 0.3409090909rem + 4.5454545455vw, 3.75rem)) {
    .steps__wrapper {
      row-gap: clamp(1.25rem, .3409090909rem + 4.5454545455vw, 3.75rem)
    }
  }

  @supports not (row-gap:clamp(1.25rem, 0.3409090909rem + 4.5454545455vw, 3.75rem)) {
    .steps__wrapper {
      row-gap: calc(1.25rem + 2.5 * (100vw - 20rem)/ 55)
    }
  }

  @supports ((-moz-column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) or (column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem))) {
    .step {
      -webkit-column-gap: clamp(1.25rem, .5681818182rem + 3.4090909091vw, 3.125rem);
      -moz-column-gap: clamp(1.25rem, .5681818182rem + 3.4090909091vw, 3.125rem);
      column-gap: clamp(1.25rem, .5681818182rem + 3.4090909091vw, 3.125rem)
    }
  }

  @supports not ((-moz-column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem)) or (column-gap:clamp(1.25rem, 0.5681818182rem + 3.4090909091vw, 3.125rem))) {
    .step {
      -webkit-column-gap: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55);
      -moz-column-gap: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55);
      column-gap: calc(1.25rem + 1.875 * (100vw - 20rem)/ 55)
    }
  }

  @supports (margin-left:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .step__img {
      margin-left: clamp(1.25rem, .7954545455rem + 2.2727272727vw, 2.5rem)
    }
  }

  @supports not (margin-left:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .step__img {
      margin-left: calc(1.25rem + 1.25 * (100vw - 20rem)/ 55)
    }
  }

  @supports (margin-right:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .step__img {
      margin-right: clamp(1.25rem, .7954545455rem + 2.2727272727vw, 2.5rem)
    }
  }

  @supports not (margin-right:clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem)) {
    .step__img {
      margin-right: calc(1.25rem + 1.25 * (100vw - 20rem)/ 55)
    }
  }

  @supports (font-size:clamp(1.25rem, 1.1136363636rem + 0.6818181818vw, 1.625rem)) {
    .step__text h5 {
      font-size: clamp(1.25rem, 1.1136363636rem + .6818181818vw, 1.625rem)
    }
  }

  @supports not (font-size:clamp(1.25rem, 1.1136363636rem + 0.6818181818vw, 1.625rem)) {
    .step__text h5 {
      font-size: calc(1.25rem + .375 * (100vw - 20rem)/ 55)
    }
  }
}

.webp .phone-img {
  background-image: url(../img/phone-slider/phone.webp)
}

.webp .phone-bg {
  background-image: url(../img/phone-slider/phone-bg.webp)
}

@media(max-width:767.98px) {
  .menu__logo {
    width: 130px;
  }
}