h1 {
  font-family: "Amstelvar", arial;
}

h2,
button {
  font-family: "Philosopher", sans-serif;
}

body,
p,
a {
  font-family: "Montserrat", sans-serif;
}

body {
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  display: block;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

div {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* HEADER BLOCK */

.header {
  width: 100%;
  height: 48.994vw;
  background: linear-gradient(144deg, #faf4e4 0%, #ffecf7 50.5%, #e8daff 100%);
  position: relative;
  @media (max-width: 1023px) {
    height: auto;
    padding-bottom: 7.708vw;
  }
}

.header-gradient-top-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}

.content-box {
  max-width: 100vw;
  margin: 0 auto;
  position: relative;
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.header-logo-wrapper {
  width: 21.032vw;
  position: relative;
  z-index: 2;
}

.header-logo-desktop-image {
  width: 100%;
  display: block;
  margin-top: 2.014vw;
  margin-left: 12.708vw;
  @media (max-width: 1023px) {
    display: none;
  }
}

.header-logo-mobile-image {
  display: none;
  @media (max-width: 1023px) {
    display: block;
    position: absolute;
    top: 4.167vw;
    left: 5.91875%;
    width: 86.031vw;
  }
}

.header-nav {
  position: relative;
  z-index: 3;
  margin-top: 3.194vw;
  margin-right: 2.222vw;
  display: flex;
  align-items: center;
  gap: 2.443vw;
  @media (max-width: 1023px) {
    display: none;
  }
}

.nav-item {
  font-weight: 400;
  font-size: 0.972vw;
  color: #4543a9;
  text-shadow: 0 0.278vw 1.458vw 0 #fff;
  cursor: pointer;
  position: relative;
  user-select: none;
  text-decoration: none;
}

.nav-item::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.104vw;
  bottom: 0;
  left: 0;
  background-color: #4543a9;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.language-selector-wrapper {
  width: 6.944vw;
  position: relative;
  user-select: none;
  @media (max-width: 1023px) {
    width: 20.833vw;
    margin-left: 13.958vw;
  }
}

.language-selector {
  position: relative;
  z-index: 4;
  width: 6.944vw;
  height: 2.917vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.761vw;
  box-shadow: 0 0.347vw 2.5vw 0 rgba(223, 181, 255, 0.6);
  background: #fff;
  border-radius: 1.458vw;
  cursor: default;
  @media (max-width: 1023px) {
    width: 20.833vw;
    height: 8.75vw;
    gap: 1.458vw;
    box-shadow: 0 1.042vw 7.5vw 0 rgba(223, 181, 255, 0.6);
    border-radius: 4.375vw;
  }
}

.language-icon {
  width: 1.139vw;
  @media (max-width: 1023px) {
    width: 3.333vw;
  }
}

.language-selector-name {
  font-weight: 400;
  font-size: 1.181vw;
  text-align: center;
  color: #4543a9;
  text-shadow: 0 0.347vw 1.667vw 0 #fff;
  @media (max-width: 1023px) {
    font-size: 3.542vw;
    text-shadow: 0 1.042vw 5vw 0 #fff;
  }
}

.language-chevron {
  margin-left: -0.208vw;
  width: 0.4vw;
  transition: all 0.3s ease;
  @media (max-width: 1023px) {
    display: none;
  }
}

.language-dropdown-wrapper {
  position: absolute;
  z-index: 3;
  max-height: 0;
  transition: max-height 0.3s ease;
  overflow: hidden;
  top: 0.417vw;
  border-radius: 1.458vw;
  @media (max-width: 1023px) {
    top: 0.417vw;
    border-radius: 1.458vw;
  }
}

.language-selector-wrapper:hover .language-dropdown-wrapper {
  max-height: 7.917vw;
  @media (max-width: 1023px) {
    max-height: 25vw;
  }
}

.language-selector-wrapper:hover .language-chevron {
  transform: scaleY(-1);
}

.language-dropdown {
  background: #fff;
  border-radius: 1.458vw;
  width: 6.944vw;
  height: 7.917vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.556vw;
  @media (max-width: 1023px) {
    border-radius: 2.5vw;
    width: 20.833vw;
    height: 25vw;
    gap: 2.083vw;
  }
}

.language-dropdown-item {
  font-weight: 400;
  font-size: 1.181vw;
  text-align: center;
  color: #7e87d5;
  text-shadow: 0 0.347vw 1.667vw 0 #fff;
  height: 1.458vw;
  cursor: pointer;
  transition: color 0.3s ease;
  @media (max-width: 1023px) {
    font-size: 3.542vw;
    height: 5.833vw;
  }
}

.language-dropdown-item:hover {
  color: #4543a9;
}

.header-bars {
  display: none;
  @media (max-width: 1023px) {
    display: block;
    position: absolute;
    cursor: pointer;
    top: 7.083vw;
    right: 5.417vw;
    z-index: 2;
    width: 4.792vw;
  }
}

.header-image-wrapper {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 38.3vw;
  @media (max-width: 1023px) {
    width: 100%;
    left: 0;
    height: auto;
    position: relative;
    margin-top: 0vw;
  }
}

.header-image {
  width: 100%;
  display: block;
  @media (max-width: 1023px) {
    display: none;
  }
}

.header-image-gradient {
  display: none;
  @media (max-width: 1023px) {
    margin-top: -11vw;
    display: block;
    width: 100%;
    height: 100%;
  }
}

.header-main-block-wrapper {
  position: absolute;
  top: 14.306vw;
  right: 7.014vw;
  width: 44.931vw;
  @media (max-width: 1023px) {
    position: relative;
    width: 100%;
    right: 0;
    top: 0;
    text-align: center;
  }
}

.header-main-block-name {
  width: 41.458vw;
  margin-bottom: 3.681vw;
  @media (max-width: 1023px) {
    display: none;
  }
}

.header-main-block-text {
  font-weight: 400;
  font-size: 1.667vw;
  color: #7e87d5;
  width: 44.931vw;
  padding-left: 0.208vw;
  margin-bottom: 6.667vw;
  text-align: center;
  @media (max-width: 1023px) {
    position: relative;
    width: auto;
    font-size: 2.917vw;
    padding: 0 7.083vw 0 11.875vw;
    margin-bottom: 6.875vw;
  }
}

.header-contact-button {
  border-radius: 2.778vw;
  width: 14.583vw;
  height: 4.861vw;
  box-shadow: 0 0.278vw 3.264vw 0 #c1bffc;
  background: #7e87d5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.389vw;
  text-align: center;
  color: #fff;
  border: 0;
  cursor: pointer;
  margin-left: 23.958vw;
  transition: background 0.3s ease;
  @media (max-width: 1023px) {
    border-radius: 7.778vw;
    margin: 0 auto;
    width: 43.75vw;
    height: 12.083vw;
    font-size: 3.958vw;
  }
}

.header-contact-button:hover {
  background: #9695eb;
}

.header-contact-button:active {
  background: #7374cf;
}

.hidden-text {
  position: absolute;
  user-select: none;
  opacity: 0;
  font-size: 0.069vw;
  margin: 0;
}

/* MOBILE MENU BLOCK */

.mobile-menu {
  display: none;
  width: 59.792vw;
  height: 100vh;
  min-height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  box-shadow: 0 0 7.708vw 0 rgba(127, 97, 176, 0.3);
  background: linear-gradient(143deg, #faf4e4 0%, #ffecf7 50.5%, #e8daff 100%);
  z-index: 3;
  margin: 0;
  box-sizing: border-box;
  padding: 0;
  overflow-y: auto;
}

.mobile-menu-bg {
  background: rgba(255, 255, 255, 0.6);
  z-index: 4;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.mobile-menu-content {
  z-index: 5;
  position: relative;
  height: 100vh;
  overflow-x: hidden;
}

.mobile-menu-cross-icon {
  position: absolute;
  top: 6.042vw;
  right: 6.25vw;
  width: 3.333vw;
  cursor: pointer;
}

.mobile-menu-logo {
  margin-top: 16.25vw;
  margin-left: 1.25vw;
  margin-bottom: 18.333vw;
  width: 60.208vw;
  height: 8.75vw;

  @media (max-height: 700px) {
    margin-bottom: 5vw;
  }
}

.mobile-menu-nav {
  margin-left: 14.375vw;
  margin-bottom: 15.625vw;
  @media (max-height: 700px) {
    margin-bottom: 0;
  }
}

.mobile-menu-nav-item {
  font-weight: 400;
  font-size: 4.167vw;
  text-align: left;
  width: max-content;
  margin-bottom: 7.292vw;
  color: #4543a9;
  text-shadow: 0 0.833vw 4.375vw 0 #fff;
  cursor: pointer;
  position: relative;
  user-select: none;
  text-decoration: none;
  display: block;
}

.mobile-menu-nav-item::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 0.208vw;
  bottom: 0;
  left: 0;
  background-color: #4543a9;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.mobile-menu-nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@keyframes fadeInFromLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes fadeOutToLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}

/* FAMILIAR BLOCK */

.familiar-title {
  font-weight: 400;
  font-size: 4.444vw;
  text-align: center;
  color: #4543a9;
  margin-top: 4.722vw;
  margin-bottom: 2.153vw;
  position: relative;
  z-index: 2;
  @media (max-width: 1023px) {
    font-size: 8.542vw;
    margin-top: 11.204vw;
    margin-bottom: 8.36vw;
  }
}

.familiar-subtitle {
  font-weight: 400;
  font-size: 1.389vw;
  color: #4543a9;
  text-align: center;
  position: relative;
  z-index: 2;
  @media (max-width: 1023px) {
    font-size: 2.5vw;
  }
}

.familiar-image-wrapper {
  height: 57.736vw;
  position: relative;
  z-index: 1;
  width: 57.278vw;
  margin: -10.5vw auto 0;
  @media (max-width: 1023px) {
    margin: -3.09vw auto -7.338vw;
    width: 72.61vw;
    height: 125.715vw;
  }
}

.familiar-image {
  position: absolute;
  width: 100%;
  user-select: none;
  @media (max-width: 1023px) {
    display: none;
  }
}

.familiar-image-mobile {
  position: absolute;
  display: none;
  user-select: none;
  @media (max-width: 1023px) {
    display: block;
    width: 100%;
  }
}

.familiar-item-light {
  position: absolute;
  font-weight: 500;
  font-size: 1.042vw;
  text-align: center;
  color: #a49cf6;
  width: max-content;
  @media (max-width: 1023px) {
    font-size: 1.042vw;
    color: rgba(99, 97, 176, 0.35);
  }
}

.familiar-item {
  position: absolute;
  font-weight: 500;
  font-size: 1.319vw;
  text-align: center;
  color: #7e87d5;
  width: max-content;
  opacity: 0;
  transform: translateY(20px);
  cursor: default;
  transition: opacity 0.5s ease, transform 0.5s ease;
  @media (max-width: 1023px) {
    font-size: 2.5vw;
  }
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.familiar-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.familiar-item:hover {
  transform: translateY(0) scale(1.1);
}

.familiar-item-1 {
  top: 17vw;
  left: 10.917vw;
  font-size: 0.747vw;
  @media (max-width: 1023px) {
    font-size: 2.4vw;
    top: 37.6vw;
    left: 41.731vw;
  }
}

.familiar-item-2 {
  top: 20.6vw;
  left: 23.889vw;
  font-size: 0.972vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    top: 20.773vw;
    left: 37.527vw;
  }
}

.familiar-item-3 {
  top: 18.87vw;
  right: 10.444vw;
  font-size: 0.947vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    top: 55.173vw;
    left: 3.188vw;
  }
}

.familiar-item-4 {
  top: 25.7vw;
  left: 4vw;
  font-size: 0.872vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    top: 29.05vw;
    left: 3.508vw;
  }
}

.familiar-item-5 {
  top: 31.667vw;
  left: 17.8vw;
  font-size: 0.872vw;
  @media (max-width: 1023px) {
    font-size: 2.4vw;
    top: 11.988vw;
    left: -0.863vw;
  }
}

.familiar-item-6 {
  top: 29.681vw;
  left: 29.806vw;
  font-size: 0.9vw;
  @media (max-width: 1023px) {
    display: none;
  }
}

.familiar-item-7 {
  top: 25vw;
  left: 46vw;
  font-size: 0.972vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    top: 58.596vw;
    left: 32.542vw;
  }
}

.familiar-item-8 {
  top: 36.25vw;
  left: 38.528vw;
  font-size: 0.72vw;
  @media (max-width: 1023px) {
    font-size: 2.4vw;
    top: 78.204vw;
    left: 29.419vw;
    width: min-content;
  }
}

.familiar-title-bottom {
  font-weight: 400;
  font-size: 4.444vw;
  text-align: center;
  color: #4543a9;
  margin-bottom: 6.25vw;
  margin-top: -14.944vw;
  position: relative;
  z-index: 2;
  @media (max-width: 1023px) {
    font-size: 7.042vw;
    width: 45.381vw;
    margin: -35vw auto 10.679vw;
  }
}

/* ABOUT BLOCK */

.about-me-section {
  position: relative;
  background: #7e87d5;
}

.about-me-gradient {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

.about-top-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6.25vw;
  @media (max-width: 1023px) {
    flex-direction: column;
    margin-bottom: 10vw;
  }
}

.about-me-block {
  padding: 4.792vw 0 0 9.444vw;
  @media (max-width: 1023px) {
    padding: 11.25vw 0 0 11.875vw;
  }
}

.about-me-title {
  font-weight: 400;
  font-size: 4.444vw;
  color: #fff;
  margin-bottom: 2.4vw;
  @media (max-width: 1023px) {
    font-size: 8.333vw;
  }
}

.about-me-text {
  width: 37.292vw;
  font-weight: 450;
  font-size: 1.389vw;
  color: #fff;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    width: 81.667vw;
    margin-bottom: 12.5vw;
  }
}

.about-me-img {
  width: 43.403vw;
  @media (max-width: 1023px) {
    width: 100vw;
  }
}

.experience-principles-row-desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 78.403vw;
  margin: 0 auto 4.653vw;
  @media (max-width: 1023px) {
    display: none;
  }
}

.experience-principles-item-wrapper {
  background: radial-gradient(
    circle at center,
    rgba(207, 159, 235, 0.5) 0%,
    rgba(207, 159, 235, 0) 75%
  );
  @media (max-width: 1023px) {
    background: radial-gradient(
      circle at center,
      rgba(207, 159, 235, 0.5) 0%,
      rgba(207, 159, 235, 0) 60%
    );
  }
  background-size: 90% 90%;
  background-repeat: no-repeat;
  background-position: center;
  height: 17.722vw;
  margin-top: -4vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.experience-principles-item {
  font-weight: 500;
  font-size: 1.667vw;
  text-align: center;
  color: #fff;
  @media (max-width: 1023px) {
    font-size: 2.708vw;
  }
}

.eduation-title {
  font-weight: 400;
  font-size: 4.444vw;
  color: #fff;
  margin-bottom: 5.903vw;
  text-align: center;
  position: relative;
  z-index: 2;
  @media (max-width: 1023px) {
    font-size: 8.333vw;
    margin-bottom: 8.929vw;
  }
}

.education-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5vw 9.097vw 6.736vw;
  @media (max-width: 1023px) {
    flex-direction: column;
    padding: 0 2.292vw 28.333vw 7.5vw;
  }
}

.education-text-block {
  width: 40vw;
  font-weight: 450;
  font-size: 1.389vw;
  color: #fff;
  @media (max-width: 1023px) {
    width: 83.667vw;
    font-size: 2.5vw;
  }
}

.experience-principles-row-mobile {
  display: none;
  @media (max-width: 1023px) {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 9.375vw auto 16.875vw !important;
    gap: 14.167vw;
  }
}

.education-list {
  color: #fff;
  width: 36.319vw;
  margin: 0;
  @media (max-width: 1023px) {
    width: 81.875vw;
    padding-inline-start: 6.25vw;
  }
}

.education-list-item {
  font-weight: 450;
  font-size: 1.389vw;
  color: #fff;
  margin-bottom: 1.389vw;
  @media (max-width: 1023px) {
    font-size: 3.125vw;
    margin-bottom: 3.125vw;
  }
}

/* APPROACHES BLOCK */

.approaches-main-block {
  @media (max-width: 1023px) {
    background: linear-gradient(89deg, #faf4e4 0%, #ffecf7 50.5%, #e8daff 100%);
  }
}

.approaches-column-wrapper {
  display: flex;
  flex-direction: column;
}

.approaches-block {
  position: relative;
  margin-bottom: 12.486vw;
  background: linear-gradient(to right, #faf4e4, #ffecf7, #e8daff);
  overflow: hidden;
  @media (max-width: 1023px) {
    background: none;
  }
}

.approaches-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  z-index: 1;
  @media (max-width: 1023px) {
    background: none;
  }
}

.approaches-header {
  font-weight: 400;
  font-size: 4.444vw;
  color: #4543a9;
  width: 65.25vw;
  margin: 5vw auto 6.667vw 10.278vw;
  @media (max-width: 1023px) {
    margin: 10.463vw 9vw 11.875vw 12.708vw;
    font-weight: 400;
    font-size: 10vw;
    width: auto;
  }
}

.approaches-row {
  margin-left: 6.708vw;
  display: flex;
  align-items: center;
  gap: 2.639vw;
  position: relative;
  z-index: 2;
  @media (max-width: 1023px) {
    margin-left: 0;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

.approach-item {
  position: relative;
  @media (max-width: 1023px) {
    width: 100vw;
    padding: 0 0 0 12.083vw;
    background: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 40%,
      rgba(255, 255, 255, 0) 80%
    );
  }
}

.approach-item-header {
  width: 26.389vw;
  margin-bottom: 2.153vw;
  @media (max-width: 1023px) {
    width: 78.125vw;
    border-radius: 6.458vw;
    margin-bottom: 8.542vw;
  }
}

.approach-header-text-hidden {
  position: absolute;
  user-select: none;
  opacity: 0;
  font-size: 0.069vw;
  margin: 0;
}

.approach-item-text {
  font-weight: 500;
  font-size: 1.389vw;
  color: #7374cf;
  @media (max-width: 1023px) {
    font-size: 4.167vw;
    margin-left: 1.458vw;
  }
}

.approach-item-text-1 {
  width: 30vw;
  @media (max-width: 1023px) {
    width: 70vw;
    margin-bottom: 22.5vw;
  }
}

.approach-item-text-2 {
  width: 28vw;
  @media (max-width: 1023px) {
    width: 72.708vw;
    margin-bottom: 27.292vw;
  }
}

.approach-item-text-3 {
  width: 26vw;
  @media (max-width: 1023px) {
    width: 71.25vw;
    margin-bottom: 40.833vw;
  }
}

.help-yourself-mobile-header {
  display: none;
  @media (max-width: 1023px) {
    display: block;
    font-weight: 400;
    font-size: 6.042vw;
    color: #2d2534;
    margin: 7.708vw auto 6.25vw 11.875vw;
  }
}

.help-yourself-title {
  font-weight: 500;
  font-size: 2.8vw;
  text-align: center;
  color: #4543a9;
  margin-bottom: 11.111vw;
  @media (max-width: 1023px) {
    font-size: 5vw;
    margin-bottom: 8.125vw;
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
  }
}

.help-yourself-image-wrapper {
  position: relative;
  margin: 0 auto 0;
  width: 61.25vw;
  @media (max-width: 1023px) {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150.208vw;
    margin: -13vw 0 7.042vw;
    padding-right: 5vw;
    background: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 55%,
      rgba(255, 255, 255, 0) 80%
    );
  }
}

.help-yourself-image {
  width: 61.25vw;
  @media (max-width: 1023px) {
    height: 61.042vw;
    width: 120.208vw;
    transform: rotate(90deg);
  }
}

.balance-line {
  position: absolute;
  width: 63.403vw;
  top: 0;
  top: -1.528vw;
  left: -0.972vw;
  @media (max-width: 1023px) {
    width: 79.167vw;
  }
}

.help-yourself-image-text {
  font-weight: 400;
  font-size: 1.944vw;
  position: absolute;
  color: #7e87d5;
  @media (max-width: 1023px) {
    font-size: 3.333vw;
  }
}

.help-yourself-image-text-1 {
  top: -3.125vw;
  left: 14.111vw;
  @media (max-width: 1023px) {
    top: 36.64vw;
    left: 25.39vw;
  }
}

.help-yourself-image-text-2 {
  top: -2vw;
  left: 34.361vw;
  @media (max-width: 1023px) {
    top: 85.433vw;
    left: 34.565vw;
  }
}

.help-yourself-image-text-3 {
  top: -1vw;
  left: 52.931vw;
  @media (max-width: 1023px) {
    top: 113.973vw;
    left: 62.025vw;
  }
}

.help-yourself-image-text-4 {
  top: 16.736vw;
  left: -1.444vw;
  @media (max-width: 1023px) {
    top: 24.708vw;
    left: 59.167vw;
  }
}

.help-yourself-image-text-5 {
  top: 24.194vw;
  left: 21.25vw;
  @media (max-width: 1023px) {
    top: 61.983vw;
    left: 59.181vw;
  }
}

.help-yourself-image-text-6 {
  top: 16.3vw;
  left: 42vw;
  @media (max-width: 1023px) {
    top: 110.7vw;
    left: 19.362vw;
  }
}

.approaches-bottom-text {
  font-weight: 500;
  font-size: 1.389vw;
  text-align: center;
  color: #7374cf;
  width: 75vw;
  margin: 0 auto;
  padding-bottom: 3.625vw;
  margin-top: 12.708vw;
  @media (max-width: 1023px) {
    font-weight: 400;
    font-size: 3.958vw;
    width: 64.375vw;
    padding-bottom: 31.458vw;
    margin-top: 0vw;
  }
}

/* DOULA BLOCK */

.doula-title {
  font-weight: 400;
  font-size: 4.444vw;
  text-align: center;
  color: #4543a9;
  margin-top: 2.403vw;
  margin-bottom: 5.486vw;
  @media (max-width: 1023px) {
    margin-top: 10.625vw;
    margin-bottom: 7.375vw;
    font-size: 11.25vw;
  }
}

.doula-subtitle {
  font-weight: 400;
  font-size: 1.667vw;
  color: #4543a9;
  margin-bottom: 4.861vw;
  text-align: center;
  @media (max-width: 1023px) {
    margin-bottom: 11.875vw;
    font-size: 3.333vw;
  }
}

.doula-row {
  display: flex;
  align-items: center;
  gap: 6.597vw;
  justify-content: center;
  margin-bottom: 4.167vw;
  @media (max-width: 1023px) {
    flex-direction: column-reverse;
    gap: 14.583vw;
  }
}

.doula-text {
  font-weight: 500;
  font-size: 1.389vw;
  color: #7e87d5;
  width: 51.458vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    width: 76.458vw;
    font-weight: 400;
    color: #4543a9;
  }
}

.doula-image-wrapper {
  position: relative;
  width: 17.431vw;
  height: 17.986vw;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 1023px) {
    width: 51.042vw;
    height: 51.042vw;
  }
}

.doula-image {
  width: 12.569vw;
  @media (max-width: 1023px) {
    width: 37.5vw;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.doula-image.spin-animation {
  animation: spin 1.6s ease-out;
}

.doula-image-text {
  font-weight: 700;
  font-size: 1.458vw;
  text-align: center;
  color: #4543a9;
  position: absolute;
  @media (max-width: 1023px) {
    font-size: 5vw;
  }
}

.doula-image-text-top {
  top: 0;
}

.doula-image-text-right {
  right: -3.125vw;
  transform: rotate(90deg);
  @media (max-width: 1023px) {
    right: -10.833vw;
  }
}

.doula-image-text-bottom {
  bottom: 0;
}

.doula-image-text-left {
  left: -3.125vw;
  transform: rotate(270deg);
  @media (max-width: 1023px) {
    left: -10.833vw;
  }
}

.doula-dropdown-wrapper {
  margin-bottom: 8vw;
  margin-left: 11.528vw;
  @media (max-width: 1023px) {
    margin-left: 12.292vw;
    margin-bottom: 29.375vw;
  }
}

.doula-dropdown-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 51.667vw;
  border-bottom: 0.069vw solid #b5c9fb;
  padding: 0 1.042vw 0.347vw 0.556vw;
  cursor: pointer;
  @media (max-width: 1023px) {
    width: 78.125vw;
    border-bottom: 0.208vw solid #b5c9fb;
    padding: 0 3.75vw 2.5vw 2.292vw;
  }
}

.doula-dropdown-row-text {
  font-weight: 400;
  font-size: 1.667vw;
  text-align: center;
  color: #4543a9;
  @media (max-width: 1023px) {
    font-size: 3.333vw;
  }
}

.doula-dropdown-plus {
  font-weight: 200;
  font-size: 2.778vw;
  color: #4543a9;
  @media (max-width: 1023px) {
    font-size: 5vw;
  }
}

.doula-dropdown-text-wrapper {
  padding: 1.806vw 0.347vw 0 1.597vw;
  width: 51.458vw;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  @media (max-width: 1023px) {
    padding: 3.542vw 7.292vw 0 8.542vw;
    width: 78.125vw;
    box-sizing: border-box;
  }
}

.doula-dropdown-text-wrapper.open {
  max-height: 10.903vw;
}
@media (max-width: 1023px) {
  .doula-dropdown-text-wrapper.open {
    max-height: 31.25vw;
    padding: 3.542vw 7.292vw 0 8.542vw;
  }
}

.doula-dropdown-text {
  font-weight: 400;
  font-size: 1.389vw;
  color: #7374cf;
  @media (max-width: 1023px) {
    font-size: 2.708vw;
    width: 62.292vw;
  }
}

/* CAN HELP BLOCK */

.what-can-i-help-title {
  font-weight: 400;
  font-size: 4.444vw;
  color: #4543a9;
  margin-bottom: 5.556vw;
  margin-left: 12.153vw;
  @media (max-width: 1023px) {
    font-size: 7.5vw;
    margin-bottom: 11.25vw;
    text-align: center;
    margin-left: 11.875vw;
    margin-right: auto;
    width: max-content;
  }
}

.what-can-i-help-text {
  font-weight: 500;
  font-size: 1.389vw;
  color: #7e87d5;
  margin-bottom: 7.639vw;
  width: 68.125vw;
  margin-left: 12.153vw;
  @media (max-width: 1023px) {
    font-size: 3.333vw;
    margin-bottom: 16.25vw;
    text-align: center;
    margin-left: 11.875vw;
    width: 75.208vw;
    font-weight: 400;
  }
}

.can-help-block {
  width: 100%;
  height: 42.222vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.917vw;
  @media (max-width: 1023px) {
    height: 239.375vw;
    gap: 6.667vw;
    flex-direction: column;
  }
}

.can-help-img-desktop {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  @media (max-width: 1023px) {
    display: none;
  }
}

.can-help-img-mobile {
  display: none;
  @media (max-width: 1023px) {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
}

.can-help-item {
  position: relative;
  z-index: 1;
  border: 0.069vw solid #6361b0;
  border-radius: 1.528vw;
  background-color: #fff;
  height: 23vw;
  padding: 1.875vw 1.436vw 0 2.5vw;
  box-sizing: border-box;
  @media (max-width: 1023px) {
    border: 0.208vw solid #6361b0;
    border-radius: 3.542vw;
    height: auto;
    padding: 3vw 2.188vw 6.875vw 5.479vw;
  }
}

.can-help-item:nth-of-type(1) {
  width: 22.292vw;
  @media (max-width: 1023px) {
    width: 67.292vw;
  }
}

.can-help-item:nth-of-type(2) {
  width: 31.736vw;
  @media (max-width: 1023px) {
    width: 67.292vw;
  }
}

.can-help-item:nth-of-type(3) {
  width: 21.111vw;
  @media (max-width: 1023px) {
    width: 67.292vw;
  }
}

.can-help-item-title {
  font-weight: 500;
  font-size: 2.222vw;
  color: #6361b0;
  margin-bottom: 1.458vw;
  @media (max-width: 1023px) {
    font-size: 6.667vw;
    margin-bottom: 3.542vw;
  }
}

.can-help-item-title-small {
  font-size: 1.806vw;
  @media (max-width: 1023px) {
    font-size: 6.667vw;
  }
}

.can-help-text {
  font-weight: 500;
  font-size: 0.972vw;
  color: #6361b0;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
  }
}

.can-help-item-list {
  padding-left: 1.319vw;
  @media (max-width: 1023px) {
    padding-left: 3.333vw;
  }
}

.can-help-item-list-li {
  font-weight: 500;
  font-size: 0.972vw;
  color: #6361b0;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
  }
}

.can-help-item-list-li-eng {
  margin-bottom: 0.417vw;
}

.can-help-item-list-li-ru {
  margin-bottom: 0.15vw;
}

.can-help-bottom-text {
  font-weight: 500;
  font-size: 1.389vw;
  color: #7e87d5;
  margin: 5.486vw auto 9.306vw 13.333vw;
  width: 75.347vw;
  @media (max-width: 1023px) {
    margin: 17.5vw auto 23.542vw 14.583vw;
    width: 72.708vw;
    font-size: 2.917vw;
    font-weight: 400;
  }
}

/* PUBLICATION BLOCK */

.publication-title {
  font-weight: 400;
  font-size: 4.444vw;
  text-align: center;
  color: #4543a9;
  margin-bottom: 3.75vw;
  @media (max-width: 1023px) {
    font-size: 8.333vw;
    margin-bottom: 7.292vw;
  }
}

.publications-block {
  width: 100%;
  position: relative;
  height: 44.722vw;
  @media (max-width: 1023px) {
    height: 153.75vw;
  }
}

.publication-img-desk {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  @media (max-width: 1023px) {
    display: none;
  }
}

.publication-img-mob {
  display: none;
  @media (max-width: 1023px) {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
  }
}

.publication-item {
  position: absolute;
  z-index: 1;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.publication-item:hover {
  transform: scale(1.1);
}

.publication-item:hover .publication-text {
  color: #004ad4;
}

.publication-item-image {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.publication-item-image-desktop {
  @media (max-width: 1023px) {
    display: none;
  }
}

.publication-item-image-mobile {
  display: none;
  @media (max-width: 1023px) {
    display: block;
  }
}

.publication-text {
  font-weight: 500;
  font-size: 1.25vw;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #216efb;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.publication-item-1 {
  width: 30.069vw;
  padding: 2.222vw 0 0 3.264vw;
  top: 4.722vw;
  left: 14.931vw;
  @media (max-width: 1023px) {
    width: 74.583vw;
    padding: 5.417vw 0vw 0 7.917vw;
    top: 13.75vw;
    left: 12.5vw;
  }
}

.publication-item-1 .publication-item-image {
  transform: scaleX(-1);
}

.publication-item-1-eng {
  padding: 1.8vw 1vw 0 1.4vw;
  @media (max-width: 1023px) {
    padding: 5.417vw 0vw 0 7.917vw;
  }
}

.publication-item-1 .publication-text,
.publication-item-3 .publication-text {
  @media (max-width: 1023px) {
    font-size: 2.708vw;
  }
}

.publication-item-2 {
  width: 31.25vw;
  padding: 1.458vw 1.111vw 0 3.472vw;
  top: 7.431vw;
  left: 54.792vw;
  @media (max-width: 1023px) {
    width: 62.708vw;
    padding: 3.896vw 0vw 0 4.25vw;
    top: 50.625vw;
    left: 25.625vw;
  }
}

.publication-item-2-eng {
  padding: 1.458vw 1.111vw 0 2.8vw;
  @media (max-width: 1023px) {
    padding: 2.5558vw 1.111vw 0 2.8vw;
  }
}

.publication-item-2 .publication-item-image {
  transform: scaleX(-1);
  @media (max-width: 1023px) {
    transform: scaleX(1);
  }
}

.publication-item-2 .publication-text {
  @media (max-width: 1023px) {
    font-size: 2.5vw;
  }
}

.publication-item-2-ru {
  @media (max-width: 1023px) {
    padding: 3.479vw 0.625vw 0 3.208vw;
  }
}

.publication-item-3 {
  width: 30.417vw;
  padding: 1.944vw 2.5vw 0 2.847vw;
  top: 25.208vw;
  left: 12.083vw;
  @media (max-width: 1023px) {
    width: 62.083vw;
    padding: 15.208vw 0vw 0 3.208vw;
    top: 71.458vw;
    left: 11.667vw;
  }
}

.publication-item-3-eng {
  padding: 2.744vw 2.5vw 0 2.847vw;
  @media (max-width: 1023px) {
    padding: 15.208vw 6vw 0 7.208vw;
  }
}

.publication-item-3 .publication-item-image {
  transform: scaleX(-1);
  @media (max-width: 1023px) {
    transform: scaleX(1);
  }
}

.publication-item-4 {
  width: 24.028vw;
  padding: 2.292vw 3.2vw 0 3.75vw;
  top: 26.667vw;
  left: 56.389vw;
  @media (max-width: 1023px) {
    width: 68.958vw;
    padding: 20.125vw 0vw 0 10.667vw;
    top: 102.083vw;
    left: 19.375vw;
  }
}

.publication-item-4-eng {
  padding: 2.592vw 1.2vw 0 2.75vw;
  @media (max-width: 1023px) {
    padding: 20.125vw 0vw 0 10.667vw;
  }
}

.publication-item-4 .publication-text {
  font-size: 1.667vw;
  @media (max-width: 1023px) {
    font-size: 4.583vw;
  }
}

.publication-item-4 .publication-item-image {
  @media (max-width: 1023px) {
    transform: scaleX(-1);
  }
}

/* Consultation block */
.consultation-faq-wrapper {
  background: linear-gradient(144deg, #faf4e4 0%, #ffecf7 50.5%, #e8daff 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.consultation-section {
  padding-bottom: 6.597vw;
  @media (max-width: 1023px) {
    padding-bottom: 7.5vw;
  }
}

.consultation-title {
  font-weight: 400;
  color: #6361b0;
  font-size: 4.444vw;
  margin-bottom: 3.472vw;
  padding-top: 4.792vw;
  text-align: center;
  @media (max-width: 1023px) {
    font-size: 10vw;
    text-align: left;
    margin-left: 12.708vw;
    margin-bottom: 10.208vw;
    padding-top: 2.083vw;
  }
}

.consultation-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5vw;
  @media (max-width: 1023px) {
    gap: 8.75vw;
    flex-direction: column-reverse;
    align-items: center;
  }
}

.consultation-item-supervision {
  width: 26.667vw;
  min-width: 26.667vw;
  height: 41.667vw;
  border-radius: 2.083vw;
  background: linear-gradient(
      60deg,
      #e8daff87 0%,
      #ffecf77c 31.7%,
      #faf4e4b9 83.55%
    ),
    #c3edff;
  box-shadow: 0 0.208vw 2.917vw 0 rgba(162, 161, 203, 0.33);
  padding: 2.201vw 3.146vw 3.681vw 2.556vw;
  position: relative;
  @media (max-width: 1023px) {
    width: 80vw;
    height: 132.083vw;
    border-radius: 4.167vw;
    box-shadow: 0 0.625vw 8.75vw 0 rgba(162, 161, 203, 0.33);
    padding: 8.125vw 8.125vw 10.125vw 9.229vw;
  }
}

.consultation-item-supervision-title {
  font-weight: 400;
  font-size: 2.917vw;
  color: #7374cf;
  margin-bottom: 2.153vw;
  @media (max-width: 1023px) {
    font-size: 10vw;
    margin-bottom: 3.396vw;
  }
}

.consultation-item-supervision-text {
  font-weight: 400;
  font-size: 0.903vw;
  color: #7e84d0;
  margin-bottom: 2.438vw;
  height: 11.944vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    margin-bottom: 6.042vw;
    height: 39.545vw;
  }
}

.consultation-item-supervision-price-title {
  font-weight: 400;
  font-size: 1.042vw;
  color: #7e84d0;
  margin-bottom: 0.681vw;
  text-align: center;
  @media (max-width: 1023px) {
    font-size: 3.125vw;
    margin-bottom: 2.083vw;
  }
}

.consultation-item-supervision-price {
  font-weight: 500;
  font-size: 1.597vw;
  color: #7880d1;
  text-align: center;
  margin-bottom: 1.181vw;
  @media (max-width: 1023px) {
    font-size: 4.792vw;
    margin-bottom: 6.25vw;
  }
}

.consultation-item-supervision-button {
  border-radius: 2.083vw;
  width: 9.722vw;
  height: 3.125vw;
  box-shadow: 0 0.208vw 3.472vw 0 #f5c6ff;
  background: #7e87d5;
  transition: all 0.3s ease;
  border: 0;
  font-weight: 400;
  font-size: 1.042vw;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  bottom: 3.681vw;
  left: 8.48vw;
  @media (max-width: 1023px) {
    border-radius: 6.875vw;
    width: 41.667vw;
    height: 12.917vw;
    box-shadow: 0 0.625vw 10vw 0 #f5c6ff;
    font-size: 4.167vw;
    bottom: 11.667vw;
    left: 19.167vw;
  }
}

.consultation-item-colegues {
  width: 26.667vw;
  height: 41.667vw;
  border-radius: 2.083vw;
  min-width: 26.667vw;
  box-shadow: 0 0.208vw 3.75vw 0 rgba(162, 161, 203, 0.33);
  padding: 2.292vw 2.951vw 3.681vw 2.5vw;
  background: linear-gradient(120deg, #faf4e4 0%, #ffecf7 70%, #e8daff 100%),
    rgba(255, 255, 255, 0.37);
  position: relative;
  @media (max-width: 1023px) {
    width: 80vw;
    min-width: 80vw;
    height: 138.083vw;
    border-radius: 4.167vw;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 0.625vw 8.958vw 0 rgba(162, 161, 203, 0.33);
    padding: 6.667vw 8vw 10.417vw 9.333vw;
  }
}

.consultation-item-colegues-title {
  font-weight: 400;
  font-size: 2.5vw;
  margin-bottom: 1.389vw;
  color: #7e87d5;
  @media (max-width: 1023px) {
    font-size: 7.5vw;
    margin-bottom: 5.625vw;
  }
}

.consultation-item-colegues-text {
  font-weight: 400;
  font-size: 0.903vw;
  color: #7e87d5;
  margin-bottom: 1.25vw;
  height: 17.708vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    margin-bottom: 6.667vw;
    height: auto;
  }
}

.consultation-item-colegues-text span {
  font-weight: 600;
}

.consultation-item-colegues-price-row {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 70%;
  margin-left: 15%;
}

.supervision-text {
  font-weight: 500;
  font-size: 1.806vw;
  text-align: center;
  color: #7e87d5;
  text-shadow: 0 0.278vw 3.194vw 0 #fff;
  @media (max-width: 1023px) {
    text-shadow: 0 0.417vw 5.625vw 0 #fff;
    font-size: 5.417vw;
  }
}

.consultation-button-colegues {
  border-radius: 2.083vw;
  width: 9.722vw;
  height: 3.125vw;
  box-shadow: 0 0.208vw 3.472vw 0 #f5c6ff;
  background: #7e87d5;
  transition: all 0.3s ease;
  border: 0;
  font-weight: 400;
  font-size: 1.042vw;
  text-transform: capitalize;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  position: absolute;
  bottom: 3.681vw;
  left: 8.48vw;
  @media (max-width: 1023px) {
    border-radius: 6.25vw;
    width: 41.667vw;
    height: 12.5vw;
    box-shadow: 0 0.417vw 26.667vw 0 rgba(255, 222, 183, 0.66);
    font-size: 4.167vw;
    bottom: 11.667vw;
    left: 19.167vw;
  }
}

.consultation-button-colegues:hover {
  background: #9695eb;
}

.consultation-button-colegues:active {
  background: #7374cf;
}

.consultation-item-individual {
  width: 26.667vw;
  height: 41.667vw;
  border-radius: 2.083vw;
  min-width: 26.667vw;
  background: #757ed2;
  box-shadow: 0 0.278vw 4.444vw 0 rgba(162, 161, 203, 0.33);
  padding: 2.428vw 3.16vw 3.681vw;
  position: relative;
  @media (max-width: 1023px) {
    width: 80vw;
    min-width: 80vw;
    height: 127.083vw;
    border-radius: 4.167vw;
    box-shadow: 0 0.625vw 6.458vw 0 rgba(0, 0, 0, 0.25);
    padding: 5vw 8.75vw 11.667vw 9.167vw;
  }
}

.consultation-item-individual-title {
  font-weight: 400;
  font-size: 2.917vw;
  color: #fff;
  margin-bottom: 4.028vw;
  @media (max-width: 1023px) {
    font-size: 9vw;
    margin-bottom: 5.375vw;
  }
}

.consultation-item-individual-text {
  font-weight: 400;
  font-size: 0.903vw;
  color: #fff;
  margin-bottom: 2.826vw;
  max-height: 7.431vw;
  height: 7.431vw;
  @media (max-width: 1023px) {
    font-size: 2.917vw;
    margin-bottom: 8.542vw;
    max-height: 35.208vw;
    height: 35.208vw;
  }
}

.consultation-item-individual-text span {
  font-weight: 600;
}

.consultation-item-individual-special {
  font-weight: 200 !important;
  font-style: italic;
}

.consultation-item-individual-price {
  font-weight: 500;
  font-size: 2.153vw;
  text-align: center;
  color: #e6f8ff;
  margin-bottom: 1.162vw;
  position: relative;
}

@media (max-width: 1023px) {
  .consultation-item-individual-price {
    font-size: 6.667vw;
    margin-bottom: 3.583vw;
  }
}

.tooltip-ua-ru,
.tooltip-ua,
.tooltip-ua-en {
  cursor: default;
}

/* Tooltip styles */
.tooltip-ua-ru::after,
.tooltip-ua::after,
.tooltip-ua-en::after {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #16191d;
  color: #e6f8ff;
  padding: 0.417vw 0.833vw;
  border-radius: 0.417vw;
  font-size: 0.833vw;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-in-out;
  z-index: 10;
}

.tooltip-ua-ru::after {
  content: "Только для граждан Украины";
}

.tooltip-ua::after {
  content: "Тільки для громадян України";
}

.tooltip-ua-en::after {
  content: "Only for citizens of Ukraine";
}

.tooltip-ua-ru:hover::after,
.tooltip-ua:hover::after,
.tooltip-ua-en:hover::after {
  opacity: 1;
}

/* Mobile scaling */
@media (max-width: 1023px) {
  .tooltip-ua-ru::after,
  .tooltip-ua::after,
  .tooltip-ua-en::after {
    font-size: 3vw;
    padding: 1vw 2vw;
    border-radius: 1vw;
  }
}

.consultation-item-individual-button {
  border-radius: 2.083vw;
  width: 9.722vw;
  height: 3.125vw;
  box-shadow: 0 0.208vw 3.472vw 0 rgba(206, 189, 168, 0.66);
  background: #d8f0fb;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.042vw;
  text-align: center;
  color: #6361b0;
  border: 0;
  cursor: pointer;
  position: absolute;
  bottom: 3.681vw;
  left: 8.48vw;
  @media (max-width: 1023px) {
    border-radius: 6.25vw;
    width: 41.667vw;
    height: 12.5vw;
    box-shadow: 0 0.417vw 26.667vw 0 rgba(255, 222, 183, 0.66);
    font-size: 4.167vw;
    margin: 7.604vw auto 0;
    bottom: 11.667vw;
    left: 19.167vw;
  }
}

.consultation-item-individual-button:hover {
  background: #fff;
}

.consultation-item-individual-button:active {
  background: #fff;
}

/* FAQ BLOCK */

.faq-block-wrapper {
  position: relative;
  padding-bottom: 7.153vw;
  @media (max-width: 1023px) {
    padding-bottom: 13.542vw;
    padding-top: 4.167vw;
  }
}

.faq-block-bg {
  filter: blur(6.25vw);
  background: #fff;
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  @media (max-width: 1023px) {
    filter: blur(2.083vw);
    width: 120%;
    margin-left: -10%;
  }
}

.faq-block {
  position: relative;
  z-index: 1;
  border: 0.139vw solid #7374cf;
  border-radius: 2.361vw;
  width: 84.028vw;
  padding: 4.931vw 3.681vw 9.028vw 6.701vw;
  margin: 7.083vw auto 0;
  @media (max-width: 1023px) {
    border-radius: 2.917vw;
    border: 0.208vw solid #7374cf;
    width: 84.583vw;
    padding: 7.083vw 5.208vw 7.5vw 5.833vw;
    margin: 6.458vw auto 0;
  }
}

.faq-title {
  font-weight: 400;
  font-size: 4.444vw;
  text-align: center;
  color: #7374cf;
  margin-bottom: 4.444vw;
  @media (max-width: 1023px) {
    font-size: 5.625vw;
    margin-bottom: 5.625vw;
  }
}

.faq-row {
  display: flex;
  align-items: center;
  gap: 3.581vw;
  @media (max-width: 1023px) {
    gap: 0;
  }
}

.faq-questions-item-wrapper {
  position: relative;
}

.faq-questions-item {
  width: 31.597vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.396vw;
  border-bottom: 0.069vw solid #b5c9fb;
  margin-bottom: 0.347vw;
  cursor: pointer;
  @media (max-width: 1023px) {
    width: 73.542vw;
    padding: 0 1.167vw;
    border-bottom: 0.208vw solid #b5c9fb;
    margin-bottom: 2.708vw;
  }
}

.faq-questions-text {
  font-weight: 400;
  font-size: 1.111vw;
  line-height: 2vw;
  color: #4543a9;
  margin-bottom: 0.347vw;
  @media (max-width: 1023px) {
    font-size: 2.708vw;
    line-height: 3vw;
  }
}

.faq-questions-icon {
  font-weight: 200;
  font-size: 1.667vw;
  color: #7374cf;
  cursor: pointer;
  user-select: none;
  @media (max-width: 1023px) {
    font-size: 5.833vw;
  }
}

.faq-questions-dropdown {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  @media (max-width: 1023px) {
    display: block;
  }
}

.faq-questions-dropdown-text {
  @media (max-width: 1023px) {
    font-weight: 400;
    font-size: 2.5vw;
    color: #6361b0;
    margin-bottom: 5.208vw;
  }
}

.faq-questions-item-wrapper.open .faq-questions-dropdown {
  @media (max-width: 1023px) {
    display: block;
    max-height: 100vh; /* Ensure it expands fully */
    opacity: 1;
  }
}

.faq-questions-item-wrapper.open .faq-questions-icon {
  content: "-";
}

.agreement-button {
  border: 0.069vw solid #216efb;
  border-radius: 3.472vw;
  width: 27.986vw;
  height: 4.306vw;
  background: rgba(175, 179, 255, 0);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.083vw;
  transition: all 0.3s ease;
  cursor: pointer;
  @media (max-width: 1023px) {
    width: 60.417vw;
    height: 9.167vw;
    border: 0.15vw solid #216efb;
    border-radius: 7.5vw;
    gap: 3.542vw;
    margin-bottom: 6.25vw;
  }
}

.agreement-button:hover {
  box-shadow: 0 0 1.389vw 0.347vw rgba(223, 181, 255, 0.6);
}

.agreement-icon {
  width: 1.944vw;
  height: 2.014vw;
  @media (max-width: 1023px) {
    width: 3.542vw;
    height: 4.375vw;
  }
}

.agreement-text {
  font-weight: 400;
  font-size: 1.25vw;
  text-align: center;
  color: #216efb;
  @media (max-width: 1023px) {
    font-size: 2.708vw;
  }
}

.faq-answer-block {
  @media (max-width: 1023px) {
    display: none;
  }
}

.faq-answer-text {
  font-weight: 400;
  font-size: 1.111vw;
  color: #7374cf;
  margin-bottom: 2.5vw;
}

/* FOOTER BLOCK */
.footer-block {
  width: 100vw;
  height: 55.208vw;
  position: relative;
  padding: 4.861vw 33.472vw 7.5vw 13.194vw;
  box-sizing: border-box;
  @media (max-width: 1023px) {
    height: 193.75vw;
    padding: 12.5vw 13.958vw 45.417vw 13.333vw;
  }
}

.footer-image-desk {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  @media (max-width: 1023px) {
    display: none;
  }
}

.footer-image-mob {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: none;
  @media (max-width: 1023px) {
    display: block;
  }
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-weight: 400;
  font-size: 6.667vw;
  color: #fff;
  margin-bottom: 4.028vw;
  text-align: center;
  white-space: nowrap;
  width: 100vw;
  margin-left: -13.194vw;
  @media (max-width: 1023px) {
    font-size: 13.333vw;
    margin-bottom: 12.708vw;
    margin-right: 2.5vw;
    text-align: center;
    white-space: initial;
  }
}

.footer-contact-item {
  margin-bottom: 2.153vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.431vw;
  @media (max-width: 1023px) {
    margin-bottom: 4.167vw;
    gap: 5.833vw;
  }
}

.footer-contact-image {
  width: 2.431vw;
  @media (max-width: 1023px) {
    width: 4.583vw;
  }
}

.footer-contact-text {
  font-weight: 500;
  font-size: 1.667vw;
  color: #fff;
  @media (max-width: 1023px) {
    font-size: 4.167vw;
  }
}

.footer-subtitle {
  margin-top: 7.292vw;
  font-weight: 400;
  font-size: 1.2vw;
  width: 38.75vw;
  color: #fff;
  @media (max-width: 1023px) {
    text-align: center;
    margin-top: 34.583vw;
    font-size: 3.333vw;
    padding-left: 5vw;
    width: 66.875vw;
  }
}

.footer-button {
  border-radius: 2.778vw;
  width: 27.083vw;
  height: 5.417vw;
  box-shadow: 0 0.278vw 7.569vw 0 rgba(199, 245, 255, 0.38);
  background: rgba(207, 159, 235, 0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 1.667vw;
  text-align: center;
  color: #fff;
  border: 0.067vw solid #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 3.611vw 6.944vw auto;
  @media (max-width: 1023px) {
    border-radius: 8.333vw;
    width: 70.833vw;
    height: 16.042vw;
    margin: 0 0 22.542vw auto;
    font-size: 5vw;
    box-shadow: 0 0.833vw 22.708vw 0 rgba(199, 245, 255, 0.38);
  }
}

.footer-button:hover {
  background: rgba(165, 45, 235, 0.54);
}

.footer-button:active {
  background: rgba(165, 45, 235, 0.54);
}

/* POPUP BLOCK */

.popup-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1.389vw;
  box-sizing: border-box;
  @media (max-width: 1023px) {
    padding: 3.333vw;
  }
}

.popup-form {
  border: 0.044vw solid rgba(255, 255, 255, 0.1);
  border-radius: 2.222vw;
  height: max-content;
  box-shadow: 0 0.208vw 3.472vw 0 rgba(72, 70, 149, 0.42);
  background: #fff;
  padding: 2.292vw 2.431vw 2.083vw 2.431vw;
  box-sizing: border-box;
  @media (max-width: 1023px) {
    padding: 10vw 8.75vw 8.125vw 9.167vw;
    box-shadow: 0 0.417vw 9.792vw 0 rgba(72, 70, 149, 0.42);
    border: 0.125vw solid rgba(255, 255, 255, 0.1);
    border-radius: 6.25vw;
  }
}

.popup-label {
  display: block;
  font-weight: 400;
  font-size: 1.042vw;
  text-align: center;
  color: #7e87d5;
  margin-bottom: 0.694vw;
  text-align: left;
  @media (max-width: 1023px) {
    margin-bottom: 2.292vw;
    font-size: 3.333vw;
  }
}

.popup-input {
  display: block;
  border: 0.044vw solid #7e87d5;
  border-radius: 2.222vw;
  width: 29.583vw;
  height: 2.292vw;
  background: rgba(175, 179, 255, 0);
  margin-bottom: 1.528vw;
  padding-left: 2.014vw;
  font-size: 0.903vw;
  transition: all 0.3s ease;
  box-sizing: border-box;
  @media (max-width: 1023px) {
    border: 0.208vw solid #7e87d5;
    border-radius: 6.25vw;
    width: 71.458vw;
    height: 6.875vw;
    margin-bottom: 4.583vw;
    padding-left: 2.917vw;
    font-size: 3.333vw;
  }
}

.popup-input:active {
  outline: none;
  border: 0.044vw solid #404787;
  box-shadow: 0 0 0.694vw 0vw #4047876f;
  @media (max-width: 1023px) {
    border: 0.208vw solid #404787;
    box-shadow: 0 0 1.042vw 0vw #4047876f;
  }
}

.popup-input:focus {
  outline: none;
  border: 0.044vw solid #404787;
  box-shadow: 0 0 0.694vw 0vw #4047876f;
  @media (max-width: 1023px) {
    border: 0.208vw solid #404787;
    box-shadow: 0 0 1.042vw 0vw #4047876f;
  }
}

.popup-type-wrapper {
  width: 29.583vw;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 2.083vw;
  @media (max-width: 1023px) {
    width: 71.458vw;
    margin-bottom: 5.208vw;
  }
}

.popup-type-item {
  border: 0.044vw solid #7e87d5;
  border-radius: 2.222vw;
  width: 29.583vw;
  height: 2.361vw;
  background: rgba(175, 179, 255, 0);
  padding: 0 1.389vw 0 2.014vw;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  background-color: #fff;
  cursor: default;
  @media (max-width: 1023px) {
    border: 0.208vw solid #7e87d5;
    border-radius: 6.25vw;
    width: 71.458vw;
    height: 7.083vw;
    padding: 0 2.708vw 0 2.708vw;
    align-items: center;
    justify-content: center;
  }
}

.popup-type-item-text {
  font-weight: 400;
  font-size: 0.903vw;
  margin-top: 0.556vw;
  color: #7374cf;
  @media (max-width: 1023px) {
    text-align: center;
    font-size: 2.917vw;
    margin-top: 0;
  }
}

.popup-item-chewron {
  width: 0.896vw;
  margin-top: 0.139vw;
  @media (max-width: 1023px) {
    width: 2.083vw;
    margin-top: 0;
    position: absolute;
    right: 2.083vw;
    top: 2.708vw;
  }
}

.popup-type-dropdown-wrapper {
  position: absolute;
  z-index: 2;
  top: 0.833vw;
  overflow: hidden;
  max-height: 0;
  transition: all 0.3s ease;
  @media (max-width: 1023px) {
    top: 0.833vw;
  }
}

.popup-type-dropdown {
  border: 0.044vw solid #7e87d5;
  border-radius: 0.417vw 0.417vw 2.014vw 2.014vw;
  width: 29.583vw;
  padding: 1.389vw 1.389vw 0 2.014vw;
  background: rgba(175, 179, 255, 0);
  background-color: #fff;
  @media (max-width: 1023px) {
    border: 0.208vw solid #7e87d5;
    border-radius: 2.083vw 2.083vw 6.25vw 6.25vw;
    width: 71.458vw;
    padding: 6.042vw 2.083vw 0 6.25vw;
  }
}

.popup-dropdown-item {
  height: 2.083vw;
  font-weight: 400;
  font-size: 0.764vw;
  color: #7374cf;
  border-bottom: 0.069vw solid #b5c9fb;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border-top-right-radius: 0.417vw;
  border-top-left-radius: 0.417vw;
  @media (max-width: 1023px) {
    border-bottom: 0.208vw solid #b5c9fb;
    border-top-right-radius: 1.25vw;
    border-top-left-radius: 1.25vw;
    height: 8.333vw;
    font-size: 2.708vw;
  }
}

.popup-dropdown-item:last-of-type {
  border-bottom: 0vw solid #7374cf;
}

.popup-dropdown-item:hover {
  background: #b5c9fb3a;
}

.popup-type-wrapper:hover .popup-type-dropdown-wrapper {
  max-height: 10.556vw;
  @media (max-width: 1023px) {
    max-height: 44.444vw;
  }
}

.popup-type-wrapper:hover .popup-item-chewron {
  transform: scaleY(-1);
}

.popup-message {
  border: 0.044vw solid #7e87d5;
  border-radius: 1.319vw;
  width: 29.583vw;
  height: 12.986vw;
  font-size: 0.903vw;
  padding: 0.903vw;
  margin-bottom: 1.55vw;
  background: rgba(175, 179, 255, 0);
  resize: none;
  box-sizing: border-box;
  @media (max-width: 1023px) {
    border: 0.208vw solid #7e87d5;
    border-radius: 3.75vw;
    width: 71.458vw;
    height: 28.333vw;
    font-size: 2.5vw;
    padding: 2.5vw;
    margin-bottom: 4.167vw;
  }
}

.popup-invalid-message {
  visibility: hidden;
  font-weight: 400;
  font-size: 0.833vw;
  color: #eb5757;
  position: absolute;
  margin-top: -1.55vw;
  @media (max-width: 1023px) {
    font-size: 2.5vw;
    margin-top: -3.75vw;
  }
}

.popup-message:active {
  outline: none;
  border: 0.044vw solid #404787;
  box-shadow: 0 0 0.694vw 0vw #4047876f;
  @media (max-width: 1023px) {
    border: 0.208vw solid #404787;
    box-shadow: 0 0 2.083vw 0vw #4047876f;
  }
}

.popup-message:focus {
  outline: none;
  border: 0.044vw solid #404787;
  box-shadow: 0 0 0.694vw 0vw #4047876f;
  @media (max-width: 1023px) {
    border: 0.208vw solid #404787;
    box-shadow: 0 0 2.083vw 0vw #4047876f;
  }
}

.popup-bottom-text-mob {
  display: none;
  @media (max-width: 1023px) {
    display: block;
    font-weight: 400;
    font-size: 2.708vw;
    color: #7e87d5;
    margin-bottom: 4.167vw;
    width: 63.125vw;
  }
}

.popup-send-button {
  width: 13.889vw;
  height: 3.125vw;
  border-radius: 1.736vw;
  box-shadow: 0 0.208vw 3.472vw 0 #fcbfea;
  font-size: 1.111vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #7e87d5;
  font-weight: 500;
  text-align: center;
  color: #fff;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  @media (max-width: 1023px) {
    width: 46.042vw;
    height: 12.083vw;
    border-radius: 6.875vw;
    box-shadow: 0 0.625vw 8.125vw 0 #c1bffc;
    font-size: 3.958vw;
    margin: 0 auto;
  }
}

.popup-send-button:hover {
  background: #9695eb;
}

.popup-send-button:active {
  background: #7374cf;
}

.popup-bottom-text-desk {
  margin-top: 2.083vw;
  font-weight: 400;
  font-size: 0.694vw;
  color: #7e87d5;
  @media (max-width: 1023px) {
    display: none;
  }
}

/*==========MISC==========*/

.top-scroll-item {
  border: 1px solid rgba(130, 137, 212, 0.9);
  border-radius: 50px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 61px;
  bottom: 85px;
  cursor: pointer;
  background-color: #ffffffa8;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 5;
  @media (max-width: 1023px) {
    right: 41px;
    bottom: 60px;
  }
}

.top-scroll-image {
  width: 22px;
}

.br-mb{
  display: none;
   @media (max-width: 1023px) {
    display: block;
  }
}

.br-dt{
  display: block;
   @media (max-width: 1023px) {
    display: none;
  }
}