@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url("../fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.header-view {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 1s ease, transform 1s ease;
}

.header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.header-text {
  position: relative;
  top: 18%;
  left: 100px;
  max-width: 600px;
  order: 1;
}

.action-btn {
  background-color: #83c4ae;
  height: 50px;
  color: #000;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
  min-width: 182px;
  border: none;
  border-radius: 24px;
  padding: 10px 20px;
}

.action-btn:hover {
  color: #fff;
  box-shadow: 0 2px 4px rgb(187 223 211 / 30%);
  transform: scale(1.02);
}

.header-text h1 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 64px;
  margin: 0 0 20px;
  line-height: 1.2;
  color: #fff;
}

.header-text p {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
  color: #fff;
}

.header-text .action-btn {
  margin-top: 36px;
}

.header-view.visible {
  opacity: 1;
  transform: translateY(0);
}

.header-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../svg/header_bg.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
  transform: scaleY(-1);
}

.header-left-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  object-fit: contain;
  height: auto;
}

.header-right-lines {
  position: absolute;
  width: auto;
  height: auto;
  right: 0;
  bottom: 0;
  object-fit: contain;
}

.header-light-bg-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  order: 2;
}

.header-light-bg {
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
  animation: fade-in-blink 1.8s forwards;
}

.header-light-bottom {
  position: relative;
  z-index: 1;
  margin-bottom: 95px;
  margin-right: 30px;
}

.header-light-center {
  position: absolute;
  bottom: 20%;
  left: 38%;
  z-index: 3;
}

@keyframes fade-in-blink {
  0% {
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid rgb(17 21 46 / 10%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  box-sizing: border-box;
}

.header-text h1,
.header-text p,
.header-text .action-btn {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.header-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.header-right,
.header-menu li,
.header .logo {
  height: auto;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.phone-icon {
  display: none;
}

.mobile-menu li a,
.header-menu li a {
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #9c99b0;
  text-decoration: none;
}

.mobile-menu li a {
  color: #000;
}

.header-menu li a:hover {
  color: #e4e4e4;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-right .phone {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

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

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

.header-view.visible .logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.header-view.visible .header-menu li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.header-view.visible .header-menu li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.header-view.visible .header-menu li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.header-view.visible .header-menu li:nth-child(4) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.header-view.visible .header-right {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s;
}

.header-view.visible .header-text h1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.1s;
}

.header-view.visible .header-text p {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s;
}

.header-view.visible .header-text .action-btn {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.main-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  width: 95%;
  margin: 60px auto;
}

.benefit-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  background-color: rgb(131 196 174 / 20%);
  border-radius: 25px;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card img {
  width: auto;
  height: 95px;
  margin-top: 42px;
}

.benefit-card h2 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 21px;
  color: #000;
  margin-top: 36px;
}

.benefit-card span {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 60px;
  margin-left: 24px;
  margin-right: 24px;
}

.lines-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}

.container-1-lines {
  height: auto;
  max-width: 100%;
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.container {
  position: relative;
  background: rgb(255 255 255 / 15%);
  overflow: hidden;
  display: flex;
  align-items: self-start;
  padding: 60px 48px;
  flex-direction: column;
}

.container .blur-text {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: clamp(100px, 148px, 200px);
  color: rgb(17 21 46 / 15%);
  filter: blur(8px);
  white-space: nowrap;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.container .main-text {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 64px;
  color: #83c4ae;
  white-space: nowrap;
  margin-top: -140px;
  margin-left: 80px;
  z-index: 1;
}

.service-container {
  margin-top: 40px;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #e6f3ef3a;
  border-radius: 25px;
  border: 1px solid #eaedf6;
  margin-left: 48px;
  margin-right: 48px;
  margin-top: 12px;
  padding: 0 24px;
  height: 88px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  box-sizing: border-box;
}

.service-card img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 16px;
  flex: 1;
}

.service-text h3 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 23px;
  color: #000;
  margin: 0;
}

.service-text p {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 19px;
  color: #999;
  margin: 0;
  margin-top: 4px;
}

.service-card .action-btn {
  min-width: 182px;
  height: 50px;
  border-radius: 22px;
  font-size: 16px;
  color: #fff;
}

.service-card .action-btn:hover {
  min-width: 182px;
  height: 50px;
  border-radius: 22px;
  font-size: 16px;
  color: #000;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.container .blur-text,
.container .main-text {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 1s ease, transform 1s ease;
}

.container.visible .blur-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.container.visible .main-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.25s;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 40px 48px 40px 88px;
  background: radial-gradient(circle at right center,
      #96a5d415 0%,
      transparent 20%),
    linear-gradient(to top, #96a5d432 0%, #ffffff 50%);
  background-size: 150% 150%;
  transform: translateY(40px);
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease, background-size 1.5s ease;
}

.about-container.visible {
  opacity: 1;
  transform: translateY(0);
  background-size: 100% 100%;
}

.about-content {
  flex: 1;
  max-width: 60%;
}

.about-text {
  max-width: 60%;
  opacity: 0;
  transform: translateX(-120px);
  transition: opacity 1s ease, transform 1s ease;
}

.about-container img {
  margin-left: 48px;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease, transform 1s ease;
}

.about-container.visible .about-text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.about-container.visible img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s;
}

.about-text .action-btn {
  color: #fff;
  background-color: #83c4ae;
  transition: background-color 0.3s ease;
  cursor: pointer;
  margin-top: 6px;
}

.about-text .action-btn:hover {
  color: #000;
}

.about-text p {
  font-family: Inter;
  font-weight: 500;
  line-height: 1.5;
  font-size: clamp(16px, 19px, 24px);
}

.how-we-work-wrapper {
  position: relative;
  overflow: hidden;
}

.how-we-work-lines {
  position: absolute;
  right: 0;
  top: 18%;
  height: 75%;
  width: auto;
  z-index: 0;
  pointer-events: none;
  object-fit: cover;
}

.how-we-work-container {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 24px;
  padding: 100px 84px 200px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.how-we-work-card {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  height: 304px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 0 40px 20px #52597014;
  background: #fff;
  padding: 40px 30px;
  box-sizing: border-box;
  scroll-snap-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-work-card-icon {
  height: 70px;
  flex-shrink: 0;
}

.how-we-work-card-arrow {
  width: 90%;
  height: 30px;
  flex-shrink: 0;
  margin-top: auto;
}

.how-we-work-card span {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000000;
  line-height: 1.2;
  margin-top: auto;
}

.how-we-work-container {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}

.how-we-work-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.how-we-work-card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.how-we-work-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.reviews-container {
  position: relative;
  padding: 48px 128px;
  z-index: 0;
}

.reviews-container::before,
.reviews-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}

.reviews-container::before {
  top: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(150, 165, 212, 0.25), #ffffff);
}

.reviews-container::after {
  bottom: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(150, 165, 212, 0.25), #ffffff);
}

.reviews-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s ease-out;
}

.reviews-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.reviews-container p {
  font-family: "Inter";
  font-weight: 500;
  font-size: 19px;
}

.comments-swiper {
  width: 100%;
  margin: 0 auto;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.comments-swiper .swiper-slide {
  width: 357px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.comment-container {
  height: 413px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  padding: 16px 40px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comment-container .title {
  font-family: Roobert, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
}

.comment-container .subtitle {
  font-family: Roobert, sans-serif;
  font-weight: 300;
  font-size: 21px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #8f8f8f;
  margin-top: 8px;
}

.comment-container .purchase {
  font-family: Roobert, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #2aa955;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

input::placeholder {
  font-weight: 500;
  color: #9C99B0;
}

textarea::placeholder {
  font-weight: 500;
  color: #9C99B0;
}

.comment-container .star-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.comment-container .star-container img {
  width: 24px;
}

.comment-container .comment {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  min-height: 82px;
  margin-top: 18px;
  overflow-y: auto;
  max-height: 45%;
  padding-right: 6px;
}

.swiper {
  margin-left: 128px;
  margin-right: 128px;
}

.swiper-wrapper {
  padding-bottom: 20px;
}

.swiper-pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 25px;
  width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  transform: none !important;
}

.swiper-pagination {
  position: static !important;
}

.swiper-pagination-container .swiper-pagination {
  position: unset;
  width: fit-content;
}

.swiper-pagination-container .swiper-pagination .swiper-pagination-bullet {
  background: #96a5d426;
  transition: 0.15s ease-in-out;
  width: 8px;
  height: 8px;
  opacity: 1;
}

.swiper-pagination-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
  border-radius: 8px;
  background: #96a5d4;
}

.swiper-pagination-container .swiper-button-prev,
.swiper-pagination-container .swiper-button-next {
  position: unset;
  width: 36px;
  height: 50px;
  margin: 0;
  padding: 13px 6px;
  border-radius: 12px;
  background: #96a5d41e;
}

.swiper-pagination-container .swiper-button-prev:after,
.swiper-pagination-container .swiper-button-next:after {
  content: url("../svg/arrow.svg");
  width: 24px;
  height: 24px;
  font-family: sans-serif;
  font-size: 14px;
}

.swiper-pagination-container .swiper-button-prev:after {
  transform: rotate(180deg);
}

.swiper-pagination-container {
  display: flex;
  align-items: center;
  gap: 36px;
  justify-content: center;
}

.faq-container {
  padding: 77px 48px 0px 48px;
}

.faq-card {
  padding: 24px 36px 24px 52px;
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: 0 0px 20px #5259701a;
  border-radius: 20px;
  margin-top: 24px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-card.active {
  box-shadow: 0 0 30px #83c4ae6f;
}

.faq-card:hover {
  box-shadow: 0 0 20px #83c4ae6f;
  transform: scale(1.02);
}

.faq-card .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 23px;
  color: #000000;
}

.faq-card .question img {
  width: 36px;
  height: 36px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card .answer {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-size: 19px;
  color: #999999;
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    max-height 0.5s ease-in-out,
    opacity 0.25s ease-in-out,
    transform 0.4s ease-in-out;
}

.faq-card.active .answer {
  max-height: 300px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 0.5s ease-in-out,
    opacity 0.4s ease-in-out 0.1s,
    transform 0.4s ease-in-out 0.1s;
}

.faq-card .border-line {
  width: 100%;
  height: 1px;
  background-color: #83c4ae59;
  margin-top: 24px;
  margin-bottom: 12px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.faq-card.active .border-line {
  opacity: 1;
  transform: scaleX(1);
}

.faq-card.active .question img {
  transform: rotate(180deg);
}

.contact-form-container-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 62%;
  margin: 80px auto;
  text-align: center;
}

.contact-form-container {
  position: relative;
}

.contact-form-container::before,
.contact-form-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: -1;
}

.contact-form-container::before {
  position: absolute;
  top: -650px;
  height: calc(50% + 650px);
  background: linear-gradient(to top, rgba(150, 165, 212, 0.25), #ffffff);
}

.contact-form-container::after {
  position: absolute;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(150, 165, 212, 0.25), #ffffff);
}

.form-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 27px;
  margin-bottom: 0px;
}

.form-description {
  font-family: "Inter", sans-serif;
  font-weight: normal;
  font-size: 18px;
  margin-bottom: 24px;
  color: #000000;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  padding: 0 16px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  border-radius: 15px;
  box-shadow: 0 0 13px 4px #52597014;
  height: 56px;
  border: none;
  box-sizing: unset;
  background-color: #fff;
}


.contact-form input,
.contact-form textarea:focus {
  outline-color: #83c4ae70;
}

.contact-form textarea {
  min-height: 104px;
  resize: vertical;
  padding-top: 12px;
}

.contact-form button {
  width: 143px;
  height: 50px;
  color: #ffffff;
  align-self: center;
}

.contact-form button:hover {
  color: #000000;
  transform: scale(1.02);
}

.contact-form-container .contact-form input,
.contact-form-container .contact-form select,
.contact-form-container .contact-form textarea,
.contact-form-container .contact-form button {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-form-container .contact-form input.visible,
.contact-form-container .contact-form select.visible,
.contact-form-container .contact-form textarea.visible,
.contact-form-container .contact-form button.visible {
  opacity: 1;
  transform: translateY(0);
}

.ss-main {
  width: 100% !important;
  min-height: 56px !important;
  border: none !important;
  border-radius: 15px !important;
  box-shadow: 0 0 13px 4px #52597014;
  background-color: #ffffff !important;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000 !important;
  display: flex !important;
  align-items: center;
  padding: 0 16px !important;
  box-sizing: border-box !important;
  margin: 0 !important;
}

.ss-main:focus {
  outline: none;
  box-shadow: 0 0 10px #83c4ae4d;
}

.ss-placeholder {
  color: #999999;
  font-weight: 400;
}

.ss-values {
  padding: 8px 0 !important;
}

.ss-single-selected,
.ss-multi-selected {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.ss-arrow {
  width: 18px !important;
  height: 18px !important;
  background-repeat: no-repeat;
  background-size: contain;
  right: 16px !important;
  transition: transform 0.3s ease;
}

.ss-main.ss-open .ss-arrow {
  transform: rotate(180deg);
}

.ss-arrow path {
  stroke: #83C4AE !important;
}

.ss-content {
  border: none;
  border-radius: 15px;
  box-shadow: 0 0 40px 20px #52597014;
  background-color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #000;
  margin-top: 8px;
  overflow: hidden;
  animation: fadeIn 0.25s ease-in-out;
}

.ss-option {
  padding: 12px 16px;
  transition: background-color 0.2s ease;
}

.ss-option:hover {
  background-color: #83C4AE !important;
}

.ss-option.ss-selected {
  background-color: #83C4AE !important;
  font-weight: 600 !important;
}

.ss-values {
  height: 60%;
}

.ss-value {
  color: #fff !important;
  font-weight: 500 !important;
  background-color: #83C4AE !important;
  padding: 8px 12px;
}

.callback-left-line {
  position: absolute;
  left: 0;
  top: -50px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.callback-right-line {
  position: absolute;
  right: 0;
  bottom: -80px;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
  border: 2px solid #ff4d4d81 !important;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.136);
}

.ss-main.invalid {
  border: 2px solid #ff4d4d81 !important;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.136);
}

footer {
  color: #fff;
  background-color: #000000;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  flex-direction: column;
  gap: 40px;
}

.footer-left {
  padding: 50px 48px;
  display: flex;
  flex-direction: column;
  gap: 73px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: #FFFFFF;
}

.phone img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-right {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-content: flex-start;
  padding: 50px 59px;
}

.footer-right h3 {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
}

.footer-right span {
  font-family: Inter, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(156, 153, 176, 0.758);
}

.vertical-divider {
  width: 1px;
  height: 135px;
  background-color: #ffffff36;
  align-self: flex-end;
  margin-left: 36px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contacts_socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link-img {
  width: 28px;
  height: 28px;
}

.horizontal-divider {
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
  opacity: 0.6;
}

.copyright {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #8f8f8f;
  padding: 32px 48px;
}

.header-hamburger {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -101%;
  width: 90%;
  height: 100vh;
  background: #fff;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 20px;
  z-index: 20;
  transition: left 0.5s ease;
}

.mobile-menu .logo {
  width: 150px;
  height: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu .menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #0b163f;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu li {
  margin-bottom: 24px;
  font-size: 14px;
  color: #11152E;
  font-weight: 600;
}

@media (max-width: 1023px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
    border-bottom: none;
  }

  .header-view.visible .header-left .logo {
    max-width: 150px;
  }

  .header-menu {
    display: none;
  }

  .header-hamburger {
    display: block;
  }

  .header-hamburger::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url('../svg/hamburger_menu.svg');
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0px;
  }

  .header-right .phone,
  .header-right .action-btn {
    display: none;
  }

  .header-right::before {
    display: block;
    cursor: pointer;
  }

  .phone-icon {
    width: 24px;
    height: 24px;
    display: block;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 36px;
  }

  .header-light-bg-container {
    order: 1;
  }

  .header-light-bg {
    width: 150vw;
    margin-bottom: -8vw;
  }

  .header-light-bottom {
    width: 55vw;
    margin-bottom: 18px;
    margin-right: 5vw;
  }

  .header-light-center {
    position: absolute;
    bottom: 9%;
    left: 40%;
    z-index: 3;
    width: 38vw;
  }

  .header-text {
    order: 2;
    left: 0;
  }

  .header-text h1 {
    font-size: 24px;
  }

  .header-text p {
    font-size: 16px;
    margin: 0 32px;
  }

  .header-text .action-btn {
    margin-top: 12px;
    width: 90%;
  }

  .lines-wrapper {
    display: none;
  }

  .how-we-work-container {
    overflow-x: visible;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 20px 18px 120px;
  }

  .how-we-work-lines {
    display: none;
  }

  .how-we-work-card {
    flex: 1;
    max-width: none;
    box-shadow: 0 0 20px 6px #52597014;
  }

  .how-we-work-container {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .how-we-work-card {
    flex: 0 0 260px;
  }

  .comment-container {
    width: 100%;
    height: auto;
  }

  .benefits-container {
    grid-template-columns: 1fr;
    margin-top: 36px;
    margin-left: 18px;
    margin-right: 18px;
  }

  .container {
    padding: 40px 20px;
    overflow: hidden;
  }

  .container .blur-text {
    font-size: clamp(24px, 36px, 38px);
    margin-left: 0;
    filter: blur(3px);
    z-index: 1;
  }

  .container .main-text {
    font-size: clamp(18px, 26px, 28px);
    margin-top: -40px;
    margin-left: 4px;
  }

  .service-container {
    margin: 0;
  }

  .service-card {
    margin-left: 16px;
    margin-right: 16px;
    height: auto;
    padding: 12px;
    border-radius: 15px;
  }

  .service-card .action-btn {
    display: none;
  }

  .service-card img {
    width: 24px;
  }

  .service-card h3 {
    font-size: 16px;
  }

  .service-card p {
    font-size: 14px;
  }

  .about-container {
    padding: 0;
  }

  .about-container .about-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
    align-items: center;
    align-content: center;
    margin-bottom: 36px;
  }

  .about-container .about-text p {
    font-size: 16px;
    margin: 0 24px;
  }

  .about-text .action-btn {
    width: 90%;
    color: #fff;
    margin-top: 32px;
  }

  .about-container img {
    display: none;
  }

  .reviews-container {
    padding: 0px 18px;
    margin-top: -14px;
  }

  .reviews-container::before {
    top: -30%;
    height: 80%;
    background: linear-gradient(to top, rgba(150, 165, 212, 0.25), #ffffff);
  }

  .reviews-container::after {
    bottom: -100%;
    height: 150%;
    background: linear-gradient(to bottom, rgba(150, 165, 212, 0.25), #ffffff);
  }

  .reviews-container p {
    font-size: 16px;
  }

  .comments-swiper {
    margin-top: 16px;
  }

  .comment-container .title {
    font-size: 16px;
  }

  .comment-container .subtitle {
    font-size: 14px;
  }

  .comment-container .comment {
    font-size: 13px;
  }

  .star-container img {
    width: 20px;
  }

  .star-container {
    margin-top: 10px;
  }

  .swiper-button-prev {
    display: none !important;
  }

  .swiper-button-next {
    display: none !important;
  }

  .comments-swiper .swiper-slide {
    width: 100% !important;
  }

  .faq-container {
    margin-top: -14px;
    padding: 0 12px;
  }

  .faq-card {
    padding: 8px 16px 8px 20px;
    margin-top: 8px;
    border-radius: 15px;
  }

  .faq-card .question {
    font-size: 16px;
  }

  .faq-card .question img {
    width: 24px;
    height: 24px;
  }

  .faq-card .answer {
    font-size: 14px;
  }

  .contact-form-container img {
    display: none;
  }

  .contact-form-container-wrapper {
    width: 90%;
    margin: 56px auto;
  }

  .contact-form-container-wrapper h2 {
    font-size: 24px;
  }

  .contact-form-container-wrapper p {
    font-size: 18px;
  }

  .contact-form-container-wrapper .action-btn {
    width: 100%;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: self-start;
  }

  .footer-container {
    gap: 36px;
  }

  .footer-wrapper {
    display: block;
  }

  .footer-left {
    display: block;
    padding: 0px 0px;
  }

  .footer-left .logo {
    max-width: 50%;
    margin-top: 36px;
    margin-left: 18px;
  }

  .footer-left .phone {
    margin-top: 51px;
    margin-left: 18px;
    gap: 24px;
    font-size: 18px;
  }

  .footer-right {
    display: block;
    padding: 36px 18px;
  }

  .footer-right h3 {
    font-size: 16px;
  }

  .footer-right span {
    font-size: 14px;
    color: #ffffffd2;
  }

  .copyright {
    font-size: 14px;
    color: #ffffffd2;
  }

  .vertical-divider {
    height: 1px;
    width: 100%;
    margin: 24px 0;
  }
}