@charset "UTF-8";
@import "blocks/style.css";
@import "blocks/responsive.css";
@media (max-width: 1024px) {
  .main__text-wrapper {
    display: none;
  }
}
.main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.main:before, .main:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
}
.main:before {
  right: 0;
  bottom: -19;
  height: 15em;
  width: 15em;
  border-radius: 30em;
  background: linear-gradient(#3800e7, #8a15ff);
  align-self: flex-end;
  animation: gradient-fade 8s ease-in-out 3s infinite alternate;
}
.main:after {
  top: 0;
  left: 30;
  height: 10em;
  width: 10em;
  border-radius: 10em;
  background: linear-gradient(#3800e7, #8a15ff);
  animation: gradient-fade-alt 6s ease-in-out 3s infinite alternate;
}
.main__text-wrapper {
  position: relative;
  padding: 2em;
}
.main__text-wrapper:before, .main__text-wrapper:after {
  content: "";
  display: block;
  position: absolute;
}
.main__text-wrapper:before {
  z-index: -1;
  top: -3em;
  right: -3em;
  width: 13em;
  height: 13em;
  opacity: 0.7;
  border-radius: 13em;
  background: linear-gradient(#15e0ff, #8a15ff);
  animation: rotation 7s linear infinite;
}
.main__text-wrapper:after {
  z-index: -1;
  bottom: -20em;
  width: 20em;
  height: 20em;
  border-radius: 20em;
  background: linear-gradient(#d000c5, #8a15ff);
  animation: rotation 7s linear infinite;
}

.arrow {
  z-index: 1000;
  opacity: 0.5;
  position: absolute;
}
.arrow--top {
  top: 0;
  left: 10em;
}
.arrow--bottom {
  bottom: 0;
  right: 20em;
}

.circle {
  transform: translate(50%, -50%) rotate(0deg);
  transform-origin: center;
}
.circle--ltblue {
  height: 20em;
  width: 20em;
  border-radius: 20em;
  background: linear-gradient(#15e0ff, #3800e7);
}

.backdrop {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: pink;
}

.dotted-circle {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.3;
  animation: rotation 38s linear infinite;
}

.draw-in {
  stroke-dasharray: 1000;
  stroke-dashoffset: 10;
  animation: draw 15s ease-in-out alternate infinite;
}

@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.item-to {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}

.bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: ease;
}

.bounce-2 {
  animation-name: bounce-2;
  animation-timing-function: ease;
}

.bounce-3 {
  animation-name: bounce-3;
  animation-timing-function: ease;
}

@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
  }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
  }
}
html {
  scroll-behavior: smooth;
}

.list-nav__item {
  position: relative;
}
.list-nav__block {
  padding: 5px;
}

.navbar__menu--reviews {
  justify-content: flex-end !important;
  margin-top: 10px;
}

.nav-block__content {
  display: flex;
  gap: 30px;
}
.nav-block__wrap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-block__section {
  min-width: 250px;
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
}
.nav-block__section--more {
  background: transparent;
  padding: 30px 0 10px;
}
.nav-block__section--more .nav-block__link {
  padding-bottom: 0 !important;
}
.nav-block__section--more .nav-block__description {
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
}
.nav-block__title {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 12px;
  text-transform: uppercase;
  margin-left: 10px;
}
.nav-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 280px 280px;
  gap: 20px 5px;
}
.nav-block__list--1 .nav-block__item:first-child {
  grid-row: 1/4;
}
.nav-block__list--more {
  grid-template-columns: 1fr;
  gap: 0;
}
.nav-block__item {
  position: relative;
}
.nav-block__item:hover .nav-block__description {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}
.nav-block__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px !important;
  text-decoration: none;
  color: #1f2937;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}
.nav-block__link:hover {
  background-color: #f3f4f6;
}
.nav-block__link:hover .nav-block__svg path {
  fill: rgb(203, 117, 187);
  transition: 0.4s ease;
}
.nav-block__icon {
  width: 40px;
  height: 40px;
  padding: 2px;
  background-color: #f6f9fc;
  border-radius: 6px;
}
.nav-block__icon img {
  border-radius: 6px;
}
.nav-block__svg path {
  fill: #4D1894;
  transition: 0.4s ease;
}
.nav-block__info {
  display: flex;
  flex-direction: column;
}
.nav-block__label {
  font-weight: 500;
  font-size: 14px;
  color: #0b0b0b;
}
.nav-block__description {
  font-size: 12px;
  color: #6b7280;
}
.nav-block__submenu {
  padding: 8px;
  min-width: 200px;
  transition: all 0.3s ease;
  list-style: none;
  margin-left: 40px;
}
.nav-block__submenu li a {
  display: block;
  padding: 5px 12px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease;
  background-color: #f3f4f6;
  margin-bottom: 5px;
}
.nav-block__submenu li a:hover {
  background-color: #f3f4f6;
}

.dropdown-holder {
  position: absolute;
  width: 100%;
  left: 0;
  top: 85%;
}
.dropdown__bg, .dropdown__arrow {
  position: absolute;
}
.dropdown__arrow {
  width: 0;
  height: 0;
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent white;
  top: -20px;
  opacity: 0;
  transition: 0.2s ease;
  pointer-events: none;
}
.dropdown__bg {
  width: 450px;
  height: 400px;
  background: #f6f9fc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 0.25s ease;
  overflow: hidden;
  z-index: -1;
}
.dropdown__wrap {
  overflow: hidden;
  position: absolute;
  transition: 0.25s ease;
  z-index: 1;
}
.dropdown_menu__content {
  position: absolute;
  opacity: 0;
  transition: 0.25s ease;
  min-width: 200px;
}
.dropdown_menu.active .dropdown_menu__content {
  opacity: 1;
  z-index: 10;
}

/* Мобильное полноэкранное меню */
.mobile-menu-overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 60px;
  left: 0;
  background: linear-gradient(90deg, rgba(62, 124, 247, 0.6) 0%, rgba(87, 117, 199, 0.6) 31%, rgba(203, 117, 187, 0.6) 63%, rgba(237, 83, 145, 0.6) 100%);
  backdrop-filter: blur(10px);
  overflow-x: hidden;
  transition: 0.5s ease-in-out;
}

.mobile-menu-overlay.active {
  width: 100%;
}

.mobile-menu-content {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.mobile-menu-back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.mobile-menu-back-btn:hover {
  color: #8a15ff;
}

.mobile-menu-back-btn .back-arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid currentColor;
}

.mobile-menu-items {
  margin-top: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu-item {
  margin: 20px 0;
  text-align: center;
}

.mobile-menu-item a {
  color: white;
  text-decoration: none;
  font-size: 28px;
  font-weight: 300;
  transition: 0.3s;
  display: block;
  padding: 15px 0;
}

.mobile-menu-item a:hover {
  color: #8a15ff;
  transform: translateX(10px);
}

.mobile-dropdown-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

.mobile-dropdown-content.active {
  transform: translateX(0);
}

.mobile-dropdown-back-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.mobile-dropdown-back-btn:hover {
  color: #8a15ff;
}

.mobile-dropdown-back-btn .back-arrow {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 12px solid currentColor;
}

.mobile-dropdown-title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin: 80px 0 40px 0;
}

.mobile-nav-block {
  margin-bottom: 40px;
}

.mobile-nav-block__title {
  color: #8a15ff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.mobile-nav-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-block__item {
  margin-bottom: 15px;
}

.mobile-nav-block__link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: white;
  text-decoration: none;
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav-block__link:hover {
  background-color: rgba(138, 21, 255, 0.2);
  color: #8a15ff;
  transform: translateX(10px);
}

.mobile-nav-block__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  background-color: #f6f9fc;
  border-radius: 4px;
}

.mobile-nav-block__icon img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}

.mobile-nav-block__info {
  flex: 1;
}

.mobile-nav-block__label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}

.mobile-nav-block__description {
  display: block;
  font-size: 14px;
  color: #ccc;
  opacity: 0.8;
}

/* Скрываем мобильное меню на десктопе */
@media (min-width: 768px) {
  .mobile-menu-overlay,
  .mobile-menu-back-btn {
    display: none;
  }
}
/* Скрываем стандартное мобильное меню на экранах меньше 768px */
@media (max-width: 767px) {
  .navbar-collapse {
    display: none !important;
  }
  .navbar-toggle {
    display: block !important;
  }
  /* Анимация бургера в крестик */
  .navbar-toggle.active .icon-bar:nth-child(1) {
    width: 25px;
    transform: rotate(225deg);
    transition: 0.4s ease-out;
    margin-top: 8px;
  }
  .navbar-toggle.active .icon-bar:nth-child(2) {
    opacity: 0;
  }
  .navbar-toggle.active .icon-bar:nth-child(3) {
    width: 25px;
    transform: rotate(-225deg);
    transition: 0.4s ease-out;
    margin-top: -12px;
  }
  .navbar-toggle .icon-bar {
    transition: all 0.3s ease-in-out;
  }
}
/* Адаптация для маленьких экранов */
@media (max-width: 480px) {
  .mobile-menu-item a {
    font-size: 24px;
  }
  .mobile-dropdown-title {
    font-size: 28px;
  }
  .mobile-nav-block__title {
    font-size: 20px;
  }
  .mobile-nav-block__label {
    font-size: 16px;
  }
  .mobile-nav-block__description {
    font-size: 12px;
  }
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--black);
  transition: all 0.3s ease;
}
.header__burger.active span:first-child {
  transform: translateY(9px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:last-child {
  transform: translateY(-9px) rotate(-45deg);
}
.header__menu {
  display: flex;
  align-items: center;
}
.header__logo {
  padding-top: 5px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__button {
  position: relative;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s ease-out;
  color: #ffffff;
  padding: 10px 15px !important;
  border-radius: 10px;
}
.header__button--color {
  background: #3e7cf7;
  background: linear-gradient(90deg, rgb(62, 124, 247) 0%, rgb(87, 117, 199) 31%, rgb(203, 117, 187) 63%, rgb(237, 83, 145) 100%);
}
.header__button:hover .header__arrow::after {
  transform: translateX(6px) rotate(45deg);
}
.header__button:hover .header__arrow::before {
  opacity: 1;
  -webkit-transition: 0.8s ease;
  transition: 0.8s ease;
}
.header__arrow {
  position: relative;
}
.header__arrow:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  top: -2px;
  margin-left: 10px;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.header__arrow:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 9px;
  right: 3px;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
  transform: translateX(8px);
}

.list-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.list-nav__text {
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
}
.list-nav__arrow {
  display: flex;
  position: relative;
}
.list-nav__arrow:after, .list-nav__arrow:before {
  content: "";
  position: absolute;
  top: 0;
  width: 7px;
  height: 2px;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.list-nav__arrow:after {
  transform: rotate(45deg);
}
.list-nav__arrow:before {
  left: 5px;
  transform: rotate(-45deg);
}
.list-nav__link {
  display: flex !important;
  align-items: center;
  gap: 4px;
}
.list-nav__link:hover .list-nav__arrow::after {
  transform: rotate(-45deg);
}
.list-nav__link:hover .list-nav__arrow::before {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .list-nav {
    flex-direction: column;
    gap: 0;
  }
  .header__button--color {
    position: absolute;
    right: 50px;
  }
}
@media (min-width: 768px) and (max-width: 950px) {
  .list-nav__text {
    font-size: 12px;
  }
}
@media (max-width: 950px) {
  .header__nav {
    gap: 20px;
  }
  .header__burger {
    display: flex;
  }
  .header__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 99;
    align-items: flex-start;
  }
  .header__menu.active {
    right: -40px;
    padding: 180px 20px 20px;
  }
  .list-nav__item {
    text-align: center;
  }
  .list-nav__link {
    width: 100%;
    padding: 10px 0;
    font-size: 18px;
  }
  .list-nav__block {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-top: 10px;
    display: none;
  }
  .list-nav__block.active {
    display: block;
  }
  .nav-block__content {
    flex-direction: column;
    gap: 20px;
  }
  .nav-block__section {
    min-width: 100%;
  }
  .nav-block__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    margin-left: 20px;
    display: none;
  }
  .nav-block__submenu.active {
    display: block;
  }
}
.navbar-block {
  display: flex;
  gap: 10px;
}
@media (max-width: 767px) {
  .navbar-block {
    display: none;
  }
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 320px) and (max-width: 767px) {
  .navbar__menu {
    flex-direction: column;
  }
}

.navbar-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (min-width: 768px) {
  .navbar-wrap .header__button--color {
    display: none;
  }
}

.form {
  -webkit-box-shadow: 3px 20px 42px -10px rgba(13, 14, 15, 0.35);
  -moz-box-shadow: 3px 20px 42px -10px rgba(13, 14, 15, 0.35);
  box-shadow: 3px 20px 42px -10px rgba(13, 14, 15, 0.35);
  width: 780px;
  padding: 40px;
  border-radius: 10px;
  background: rgba(50, 0, 135, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(183, 152, 237, 0.3);
  margin-top: -100px;
}
.form .get-in-touch {
  background-color: transparent;
}
.form .get-in-touch .form-control {
  color: #ffffff;
  font-size: 18px;
}
.form .get-in-touch .form-control::placeholder {
  color: #ffffff;
  opacity: 0.8;
  font-size: 18px;
}
.form input:-webkit-autofill,
.form input:-webkit-autofill:hover,
.form input:-webkit-autofill:focus,
.form textarea:-webkit-autofill,
.form textarea:-webkit-autofill:hover,
.form textarea:-webkit-autofill:focus,
.form select:-webkit-autofill,
.form select:-webkit-autofill:hover,
.form select:-webkit-autofill:focus {
  -webkit-text-fill-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
@media (max-width: 767px) {
  .form {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
}
.form__right {
  display: flex;
}
@media (max-width: 767px) {
  .form__right {
    flex-direction: column;
  }
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100px) translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0) translateX(0);
    opacity: 1;
  }
}
.hidden-block.show {
  animation: slideInFromBottom 0.5s ease-out forwards;
}

.canvas-form {
  height: 800px;
}
@media (max-width: 767px) {
  .canvas-form {
    height: 450px;
  }
}

.form-header {
  border-bottom: 2px dashed rgba(62, 124, 247, 0.2);
}

#slider-area.form-angle:before {
  background: #f6f9fc none repeat scroll 0 0;
  height: 70%;
  top: 75%;
}
@media (max-width: 767px) {
  #slider-area.form-angle:before {
    top: 90%;
  }
}

#slider-area.form-angle:after {
  content: "";
  left: 0;
  position: absolute;
  -webkit-transform: skewY(170deg);
  transform: skewY(170deg);
  width: 100%;
  z-index: 0;
  background: #f6f9fc none repeat scroll 0 0;
  height: 70%;
  top: -44%;
}
@media (max-width: 767px) {
  #slider-area.form-angle:after {
    top: -40%;
  }
}

.form-angle {
  margin-top: -250px;
  z-index: -1 !important;
}

.wrapper-form {
  background: #f6f9fc;
}

/* Form Messages Styles */
.appai-form-message-wrapper {
  position: absolute;
  right: 67%;
  bottom: 8%;
}

.appai-form-send-message {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center;
  display: none;
  width: 350px;
}

.appai-form-send-message.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.appai-form-send-message.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.appai-form-send-message.loading {
  display: block;
  background-color: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

.reviews {
  height: 800px;
  margin-top: 120px;
}
.reviews__container {
  padding: 0 20px;
}
@media (max-width: 950px) {
  .reviews__container {
    padding: 0;
  }
}
.reviews__name {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reviews__title {
  color: #4D1894;
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}
.reviews__icon {
  width: 45px;
  height: 45px;
  padding: 5px;
  background-color: #4D1894;
  border-radius: 4px;
}
.reviews__svg path {
  fill: #ffffff;
}
.reviews__block h1, .reviews__block p {
  color: #4D1894;
  width: 65%;
}
.reviews__block h1 {
  font-size: 60px;
}
.reviews__block p {
  font-size: 20px;
}
.reviews__block .slider-text {
  padding-bottom: 10em;
  padding-top: 8em;
}
.reviews__wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.reviews__video {
  position: absolute;
  right: 0;
}
.reviews__video video {
  border-radius: 10px;
  width: 100%;
}
.reviews__wrapper {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.reviews__wrapper--2 {
  gap: 0;
}
.reviews__wrapper h5, .reviews__wrapper p {
  opacity: 0.8;
}
.reviews__wrapper .single-feature {
  border-radius: 10px;
  height: 100%;
  position: relative;
  padding: 30px 20px;
}
.reviews__wrapper .single-feature:hover {
  transform: translateY(-20px);
}
.reviews__wrapper .single-feature h5,
.reviews__wrapper .single-feature p {
  color: #ffffff !important;
}
.reviews__serves {
  margin-left: 30px;
  width: 47%;
}
.reviews__blockCare {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  text-align: right;
}
@media (max-width: 980px) {
  .reviews__blockCare {
    flex-direction: column;
  }
}
.reviews__blockCare video {
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .reviews__blockCare video {
    width: 500px;
    height: 300px;
  }
}
@media (max-width: 980px) {
  .reviews__blockCare video {
    width: 100%;
  }
}
.reviews__description h2, .reviews__description h5, .reviews__description p {
  opacity: 0.8;
}
.reviews__description i div {
  transform: skewX(15deg);
  margin-left: -5px;
}

.reviews-care .section-heading {
  width: 100%;
  margin: 0 auto;
}
.reviews-care .line {
  height: 54vh;
  top: -53px;
}
.reviews-care .line--2 {
  height: 60vh;
  top: -135px;
}
.reviews-care .line--3 {
  height: 64vh;
  top: -190px;
}
.reviews-care .line--4 {
  height: 70vh;
  top: -260px;
}

@media (max-width: 1200px) {
  .reviews__serves {
    margin-left: 0;
    width: 47%;
  }
}
@media (max-width: 980px) {
  .reviews__block h1, .reviews__block p {
    width: 100%;
  }
  .reviews__block h1 {
    font-size: 40px;
  }
  .reviews__block .slider-text {
    width: 100%;
  }
  .reviews__wrapper--2 {
    flex-wrap: wrap;
  }
  .reviews__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .reviews__wrap {
    flex-direction: column;
  }
  .reviews__video {
    position: relative;
    right: 0;
  }
  .reviews__video video {
    height: 350px;
  }
  .reviews__block h1 {
    font-size: 36px;
  }
  .reviews__block .slider-text {
    padding-bottom: 2em;
    padding-top: 4em;
  }
  .reviews__wrapper {
    flex-direction: column;
    align-items: center;
  }
  .reviews__wrapper .hidden-xs {
    display: block !important;
  }
  .reviews__wrapper .about-app-mockup img {
    margin-left: auto;
  }
  .reviews__serves {
    width: 100%;
    margin-left: 0;
  }
}
.reviews-container {
  background: #f6f9fc;
}
.reviews-container .navbar-nav li a {
  color: #000000;
}
.reviews-container .navbar.affix .navbar-nav li a {
  color: #ffffff;
}
.reviews-container .list-nav__arrow:after,
.reviews-container .list-nav__arrow:before,
.reviews-container .header__arrow:before,
.reviews-container .navbar-toggle .icon-bar {
  background-color: #000000;
}
.reviews-container .navbar.affix .list-nav__arrow:after,
.reviews-container .navbar.affix .list-nav__arrow:before,
.reviews-container .navbar.affix .header__arrow:before,
.reviews-container .navbar.affix .navbar-toggle .icon-bar {
  background-color: #ffffff;
}
.reviews-container .header__arrow:after {
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
}
.reviews-container .navbar.affix .header__arrow:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.reviews-container .header__button--color {
  color: #ffffff !important;
}
.reviews-container .header__button--color .header__arrow:after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.reviews-container .header__button--color .header__arrow:before {
  background-color: #ffffff;
}

.wrapper__line {
  position: relative;
}

.line {
  width: 2px;
  height: 100vh;
  background-color: rgba(62, 124, 247, 0.1);
  position: absolute;
  top: 0;
  left: 15px;
  z-index: -1;
}
.line--2 {
  left: 480px;
}
.line--3 {
  left: 750px;
}
.line--4 {
  right: 0;
  left: auto;
}
@media (max-width: 1200px) {
  .line {
    display: none;
  }
}

.reviews-demonstration {
  background: #0c2e4e;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
}
.reviews-demonstration__wrapper {
  position: relative;
}
.reviews-demonstration__title {
  position: absolute;
  font-size: 30px;
  font-weight: 500;
  top: -100px;
  left: -60px;
  opacity: 0.8;
}
.reviews-demonstration__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.reviews-demonstration__input {
  padding: 15px;
  border: 2px solid #4D1894;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: #0c2e4e;
  height: 150px;
  color: #ffffff;
}
.reviews-demonstration__input:focus {
  outline: none;
  border-color: #4D1894;
}
.reviews-demonstration__input::placeholder {
  color: #999;
}
.reviews-demonstration__button {
  padding: 12px 24px;
  background: #4D1894;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.reviews-demonstration__button:hover {
  background: #3a1270;
}
.reviews-demonstration__button:active {
  transform: translateY(1px);
}
.reviews-demonstration__block {
  margin-top: 20px;
  padding: 20px;
  border-radius: 8px;
  background: #06182c;
  min-height: 330px;
}
.reviews-demonstration__block h4 {
  color: #07B064;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 600;
}
.reviews-demonstration__block pre {
  font-family: "Courier New", monospace;
  font-size: 14px;
  line-height: 1.5;
  margin: 5px 0 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  padding: 0;
  border: 0;
  color: #f5f5f5;
}
.reviews-demonstration__block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .reviews-demonstration__wrapper {
    width: 100%;
  }
  .reviews-demonstration__title {
    font-size: 20px;
    top: -30px;
    left: 50px;
  }
  .reviews-demonstration__input {
    padding: 12px;
    font-size: 14px;
  }
  .reviews-demonstration__button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .reviews-demonstration__block {
    padding: 15px;
  }
  .reviews-demonstration__block h4 {
    font-size: 16px;
  }
  .reviews-demonstration__block pre {
    font-size: 12px;
  }
}
.footer {
  position: relative;
}
.footer__container {
  display: flex;
  gap: 100px;
  justify-content: end;
}
@media (max-width: 767px) {
  .footer__container {
    gap: 50px;
  }
}
@media (max-width: 675px) {
  .footer__container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 375px) {
  .footer__container {
    margin-top: 50px;
  }
}
.footer__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer__item {
  margin-bottom: 10px;
}
.footer__item a {
  font-size: 16px;
  color: rgba(244, 237, 245, 0.6);
}
.footer__item a:hover {
  color: rgb(200, 93, 232);
}
.footer__logo {
  position: absolute;
  top: -10px;
}
@media (max-width: 675px) {
  .footer__logo {
    display: none;
  }
}
.footer__subtext {
  margin-top: 20px;
  margin-bottom: 0;
}

.container-footer {
  position: relative;
}

.how-it-works-block {
  position: relative;
  z-index: 1000;
  max-width: 900px;
  margin: 0 auto;
}
.how-it-works-block__block {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 700px) {
  .how-it-works-block__block {
    grid-template-columns: 1fr;
  }
}
.how-it-works-block__list {
  display: grid;
  gap: 10px;
}
.how-it-works-block__list--first {
  margin-bottom: 10px;
  grid-template-columns: 1.8fr 1fr;
}
@media (max-width: 700px) {
  .how-it-works-block__list--first {
    grid-template-columns: 1fr;
  }
}
.how-it-works-block__list--first .how-it-works-block__item {
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.how-it-works-block__list--second .how-it-works-block__item {
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.how-it-works-block__list--3 .how-it-works-block__item {
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.how-it-works-block__item {
  color: #ffffff;
  height: 100px;
  background: rgba(50, 0, 135, 0.3);
  border-radius: 20px;
  box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(183, 152, 237, 0.3);
  padding: 40px;
}
.how-it-works-block__item h3 {
  font-weight: 500;
  font-size: 20px;
}
.how-it-works-block__item p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 14px;
}
.how-it-works-block__img {
  width: 350px;
}

/*# sourceMappingURL=style.css.map */
