@charset "UTF-8";
h1 {
  font-family: math, system-ui;
  font-size: 2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-family: math, system-ui;
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.5rem;
  }
}

ol,
ul {
  padding-left: 20px;
}

.bg-gray-1 {
  background: #efefef;
}

.bg-gray-2 {
  background: #979797;
}

.mw-960 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.color-gray {
  color: #777;
}

.color-green {
  color: #0cd4bf !important;
}

.color-red {
  color: rgb(214, 14, 57);
}

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

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

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

.fw-500 {
  font-weight: 500;
}

.text-gradient {
  font-size: 200px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: transparent;
  -webkit-text-stroke: 4px transparent;
  background: linear-gradient(to right, #8369bf, #0cd4bf);
  -webkit-background-clip: text;
}

.btn-gradient {
  text-transform: uppercase;
  background: linear-gradient(to right, #8369bf, #0cd4bf, #0cd4bf, #0cd4bf);
  background-size: 200% 100%;
  color: #fff;
  border: none !important;
  padding: 15px 30px;
  font-weight: 500;
  transition: background 0.3s ease-out;
  background-position-x: 0;
}
@media screen and (max-width: 576px) {
  .btn-gradient {
    width: 100%;
  }
}
.btn-gradient:hover {
  color: #fff !important;
  background-position-x: 100% !important;
}
.btn-gradient:focus {
  color: #fff !important;
  background-position-x: 100% !important;
  outline: 2px solid rgba(12, 212, 191, 0.2784313725);
}

.btn-green {
  text-transform: uppercase;
  background: #0cd4bf;
  color: #fff;
  border: none !important;
  padding: 10px 20px;
  font-weight: 500;
}
.btn-green:hover {
  background: #0cd4bf !important;
  color: #fff !important;
}
.btn-green:focus {
  background: #0cd4bf !important;
  color: #fff !important;
  outline: 2px solid rgba(12, 212, 191, 0.2784313725);
}

@media screen and (max-width: 991px) {
  .desktop-only {
    display: none;
  }
}

.violet-box {
  background: #eceaff;
  padding: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media screen and (min-width: 991px) {
  .violet-box {
    padding: 30px;
  }
}

.header {
  padding: 15px 0;
}
@media screen and (min-width: 992px) {
  .header {
    padding: 30px 0;
  }
}
.header .menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .links {
  gap: 10px;
  display: none;
}
@media screen and (min-width: 992px) {
  .header .links {
    display: flex;
  }
}
.header .nav-link {
  color: #fff;
  padding-left: 15px;
  padding-right: 15px;
}
.header .nav-link:hover {
  color: #0cd4bf;
}

.cookie {
  z-index: 100;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .cookie {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}

.sw-0 {
  background: url(../images/banner1_copy.png) no-repeat center;
  background-size: cover;
}

.sw-1 {
  background: url(../images/banner2.png) no-repeat center;
  background-size: cover;
}

.sw-2 {
  background: url(../images/banner3_copy.png) no-repeat center;
  background-size: cover;
}

section {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 992px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}

.section-intro * {
  color: #fff;
}
.section-intro .img-phone {
  max-width: 100%;
}
.section-intro .wrap {
  display: grid;
  grid-template-columns: 100%;
  gap: 15px;
}
@media screen and (min-width: 992px) {
  .section-intro .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.section-intro .wrap .why {
  border-radius: 10px;
  position: relative;
}
.section-intro .wrap .why::after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  z-index: 1;
  background: linear-gradient(to right, #8369bf, #0cd4bf);
  border-radius: 10px;
}
.section-intro .wrap .why .inner {
  border-radius: 10px;
  padding: 15px;
  width: 100%;
  height: 100%;
  background: #000;
  position: relative;
  z-index: 3;
}
.section-intro .wrap .why .inner h3 {
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .section-intro .wrap .why .inner {
    text-align: center;
  }
}

.section-about .wrap-about {
  display: grid;
  gap: 15px;
  grid-template-columns: 100%;
}
@media screen and (min-width: 992px) {
  .section-about .wrap-about {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .section-about .wrap-about {
    gap: 30px;
  }
}
.section-about .wrap-about * {
  color: #fff;
}
.section-about .wrap-about .about {
  background: #000;
  padding: 15px;
  border-radius: 10px;
}
@media screen and (min-width: 992px) {
  .section-about .wrap-about .about {
    padding: 30px;
  }
}
.section-about .wrap-about .about .description {
  margin-top: 30px;
  margin-bottom: 0;
}

.section-pluses .wrap-pluses {
  display: grid;
  gap: 15px;
  grid-template-columns: 100%;
}
@media screen and (min-width: 768px) {
  .section-pluses .wrap-pluses {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .section-pluses .wrap-pluses {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .section-pluses .wrap-pluses {
    gap: 30px;
  }
}
.section-pluses .wrap-pluses * {
  color: #fff;
}
.section-pluses .item {
  background: #000;
  padding: 15px;
  border-radius: 10px;
}
.section-pluses .item .description {
  margin-top: 30px;
  margin-bottom: 0;
}

.section-steps {
  position: relative;
}
.section-steps h2 {
  color: #fff;
}
.section-steps .gradient-line {
  position: absolute;
  display: none;
}
@media screen and (min-width: 992px) {
  .section-steps .gradient-line {
    display: block;
    top: 112px;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .section-steps .gradient-line {
    display: block;
    top: 232px;
  }
}
@media screen and (min-width: 1400px) {
  .section-steps .gradient-line {
    display: block;
    top: 232px;
  }
}
.section-steps .wrap-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .section-steps .wrap-steps {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: baseline;
  }
}
.section-steps .wrap-steps .step {
  height: 100%;
  position: relative;
  max-width: 290px;
}
.section-steps .wrap-steps .step .count {
  text-align: center;
  font-weight: 500;
  font-size: 100px;
  color: #000;
  position: relative;
  margin-bottom: 25px;
}
@media screen and (min-width: 1200px) {
  .section-steps .wrap-steps .step .count {
    font-size: 200px;
  }
}
.section-steps .wrap-steps .step .count:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -14px;
  left: calc(50% - 9px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 24px #0cd4bf, 0 0 16px #0cd4bf;
  z-index: 3;
}
@media screen and (min-width: 992px) {
  .section-steps .wrap-steps .step .count:after {
    position: absolute;
    bottom: -5px;
    left: calc(50% - 6px);
  }
}
.section-steps .wrap-steps .step .wrap-icon {
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2196078431);
  background: rgba(255, 255, 255, 0.0392156863);
  position: absolute;
  left: calc(50% - 20px);
  top: 42px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .section-steps .wrap-steps .step .wrap-icon {
    right: unset;
    left: calc(50% - 41px);
    top: 96px;
    width: 82px;
    height: 82px;
  }
}
.section-steps .wrap-steps .step .wrap-icon .icon {
  display: inline-block;
  max-width: 50%;
}
.section-steps .wrap-steps .step .description {
  color: #fff;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-steps .wrap-steps .step .sub {
  margin-bottom: 0;
  text-align: center;
  color: #D5D5D5;
}

.section-calc * {
  color: #fff;
}
.section-calc .wrap-calc {
  position: relative;
  box-shadow: 0 0 24px #0cd4bf;
  border-radius: 20px;
}
.section-calc .wrap-calc:after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: -2px;
  bottom: -2px;
  z-index: 1;
  background: linear-gradient(to right, #8369bf, #0cd4bf);
  border-radius: 20px;
}
.section-calc .wrap-calc .inner {
  background: #000;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .inner {
    padding: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .section-calc .wrap-calc .inner {
    padding: 45px;
  }
}
.section-calc .wrap-calc .calculator {
  border: 1px solid rgba(255, 246, 246, 0.4901960784);
  border-radius: 20px;
  padding: 25px;
  position: relative;
}
.section-calc .wrap-calc .calculator .range-wrapper,
.section-calc .wrap-calc .calculator .actions {
  position: relative;
  z-index: 1;
}
.section-calc .wrap-calc .calculator:before {
  content: "";
  border-radius: 20px;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4901960784);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media screen and (min-width: 1200px) {
  .section-calc .wrap-calc .calculator {
    padding: 50px;
  }
}
.section-calc .wrap-calc .calculator .wrap-badge {
  margin-bottom: 30px;
}
.section-calc .wrap-calc .calculator .actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}
@media screen and (min-width: 1200px) {
  .section-calc .wrap-calc .calculator .actions {
    align-items: stretch;
    margin-top: 50px;
    flex-direction: row;
    justify-content: space-between;
  }
}
.section-calc .wrap-calc .calculator .actions .wrap-income {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  padding: 5px 15px;
  border-radius: 10px;
}
.section-calc .wrap-calc .calculator .actions .wrap-income p {
  margin-bottom: 5px;
}
.section-calc .wrap-calc .calculator .actions .wrap-income h3 {
  margin-bottom: 0;
}
.section-calc .wrap-calc .calculator .actions .wrap-income * {
  color: #fff;
}
.section-calc .wrap-calc .range-group {
  display: flex;
  gap: 15px;
  align-items: center;
  display: grid;
  grid-template-columns: 100%;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .range-group {
    grid-template-columns: 175px 1fr;
  }
}
.section-calc .wrap-calc .range-group .ranges {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.section-calc .wrap-calc .range-group .ranges .value {
  display: inline-block;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
.section-calc .wrap-calc .range-group .badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 10px;
  gap: 15px;
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .range-group .badge {
    flex-direction: column;
    padding: 15px;
    gap: 0;
    width: 100%;
    border: 2px solid #8369bf;
    border-radius: 10px;
    background: rgba(131, 105, 191, 0.2509803922);
  }
}
.section-calc .wrap-calc .range-group .badge .arrow-down {
  position: absolute;
  left: calc(50% - 16px);
  bottom: -16px;
}
.section-calc .wrap-calc .range-group .badge p {
  margin-bottom: 0;
  font-weight: 400;
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .range-group .badge p {
    margin-bottom: 5px;
    font-size: 14px;
  }
}
.section-calc .wrap-calc .range-group .badge h3 {
  margin-bottom: 0;
  font-weight: 700;
}
.section-calc .wrap-calc .range-group .badge * {
  color: #fff;
}
.section-calc .wrap-calc .wrap-income {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
  border: 2px solid #0cd4bf;
  border-radius: 20px;
  background: rgba(12, 212, 191, 0.2509803922);
}
.section-calc .wrap-calc .wrap-income .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.section-calc .wrap-calc .wrap-income h3 {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .wrap-income h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .section-calc .wrap-calc .wrap-income h3 {
    font-size: 36px;
  }
}
.section-calc .wrap-calc .wrap-income p {
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .wrap-income p {
    font-size: 18px;
  }
}
@media screen and (min-width: 992px) {
  .section-calc .wrap-calc .wrap-income {
    text-align: left;
  }
}

.section-reviews {
  padding-left: 15px;
  padding-right: 15px;
}
.section-reviews h2 {
  color: #fff;
}
.section-reviews .review .text {
  font-size: 15px;
  position: relative;
}
.section-reviews .review .text:before {
  content: "";
  position: absolute;
  left: -8px;
  top: -24px;
  background: url(../images/q.png) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
}
@media screen and (min-width: 992px) {
  .section-reviews .review .text:before {
    left: -24px;
    top: -8px;
  }
}
.section-reviews .review .text::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -24px;
  background: url(../images/q.png) no-repeat center;
  background-size: contain;
  width: 16px;
  height: 16px;
  display: block;
}
@media screen and (min-width: 992px) {
  .section-reviews .review .text::after {
    right: -24px;
    bottom: 0;
  }
}
.section-reviews .review .profile .data {
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-reviews .review .profile .age {
  color: #777;
}

.section-faq h2 {
  color: #fff;
}

.footer {
  background: #000;
}
.footer * {
  color: #d5d5d5;
}
.footer .links {
  gap: 10px;
  display: none;
}
@media screen and (min-width: 992px) {
  .footer .links {
    display: flex;
  }
}
.footer .links .nav-link {
  padding-left: 15px;
  padding-right: 15px;
}
.footer .links .nav-link:hover {
  color: #0cd4bf;
}

form .form-control {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
form .form-check-label {
  color: #d5d5d5;
  font-size: 14px;
}
form .form-check-input:checked {
  background-color: #0cd4bf;
  border-color: #0cd4bf;
}
form .iti {
  width: 100%;
}
@media screen and (min-width: 992px) {
  form .iti__country-list {
    margin-top: 4px;
    border-radius: 6px;
  }
}

.dark-box {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}
.dark-box p,
.dark-box h2,
.dark-box h3,
.dark-box h4 {
  color: #fff;
}
.dark-box:after {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  bottom: -1px;
  z-index: 0;
  background: linear-gradient(to right, #8369bf, #0cd4bf);
  border-radius: 10px;
}
.dark-box .inner {
  border-radius: 10px;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #000;
  padding: 15px;
}
@media screen and (min-width: 992px) {
  .dark-box .inner {
    padding: 30px;
  }
}

.map {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.arrowLeft,
.arrowRight {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 10;
  font-size: 32px; /* Размер стрелок */
  opacity: 0.5;
}
.arrowLeft:hover,
.arrowRight:hover {
  cursor: pointer;
  opacity: 1;
}

.arrowLeft {
  left: 0;
}

.arrowRight {
  right: 0;
}

.swiper-container {
  position: relative;
  width: 90vw;
  height: 300px;
}

.swiper-container > .swiper-slide__content {
  position: absolute;
  top: 0;
}

.swiper-slide {
  height: 380px;
  display: flex;
  opacity: 0.5;
  align-items: center;
  justify-content: center;
  transition: all 200ms linear;
  transform: scale(0.85) !important;
  border: 1px solid rgb(93, 93, 93);
  border-radius: 10px;
  padding: 20px;
  background: #fff;
}
@media screen and (min-width: 992px) {
  .swiper-slide {
    height: 320px;
    padding: 40px;
  }
}
.swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1;
}

.swiper-slide__content {
  height: 300px;
}

.stars {
  display: inline-block;
  max-width: 120px;
}

.rangeslider__fill {
  background: linear-gradient(to right, #8369bf, #0cd4bf);
}

.accordion-button:not(.collapsed)::after {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("../images/arrow.png") no-repeat center;
  background-size: contain;
}

.accordion-button.collapsed::after {
  width: 24px;
  height: 24px;
  display: inline-block;
  background: url("../images/arrow.png") no-repeat center;
  background-size: cover;
}

.accordion .accordion-item {
  z-index: 1;
  position: relative;
  background: #000;
  margin-bottom: 15px;
  border-radius: 10px;
}
@media screen and (min-width: 1200px) {
  .accordion .accordion-item {
    margin-bottom: 30px;
  }
}
.accordion .accordion-item::before {
  content: "";
  background: linear-gradient(to right, #8369bf, #0cd4bf);
  display: block;
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 10px;
  z-index: 0;
}
.accordion .accordion-item .accordion-header {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.accordion .accordion-item .accordion-header .accordion-button {
  font-size: 22px;
  margin-bottom: 0;
  border-radius: 10px;
  background: #000;
  color: #fff;
  border: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 1200px) {
  .accordion .accordion-item .accordion-header .accordion-button {
    font-size: 26px;
  }
}
.accordion .accordion-item .accordion-body {
  border-radius: 10px;
  background: #000;
  position: relative;
  z-index: 1;
}
.accordion .accordion-item .accordion-body:not(.collapsed) {
  border-radius: 0 0 10px 10px;
}
.accordion .accordion-item .accordion-body p {
  color: #fff;
}

.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 10px;
}

.gradient-line {
  background: linear-gradient(to right, transparent, #0cd4bf, #195cda, #0cd4bf, transparent);
  width: 100%;
  height: 2px;
  position: relative;
}
.gradient-line:after {
  content: "";
  width: 100%;
  height: 0;
  top: -1px;
  position: absolute;
  z-index: 1;
  border: 2px dashed #000;
}/*# sourceMappingURL=app.css.map */