.header {
  width: 100%;
  position: static;
  padding: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px) 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 100%);
  backdrop-filter: blur(8.65px);
}
.header.active {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: none;
}
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  text-decoration: none;
}
.header__logo img {
  flex-shrink: 0;
}
.header__logo span {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
}
@media (max-width: 390px) {
  .header__logo span {
    font-size: 15px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .header__logo span {
    font-size: calc(0.0058823529 * 100vw + 12.7058823529px);
  }
}
@media (min-width: 1241px) {
  .header__logo span {
    font-size: 20px;
  }
}
.header__logo span {
  line-height: 110%;
  color: #ff8033;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: clamp(22.5px, 19.0588235294px + 0.8823529412vw, 30px);
}
@media (max-width: 1199px) {
  .header__menu {
    display: none;
  }
}
.header__menu-item {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 390px) {
  .header__menu-item {
    font-size: 10.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .header__menu-item {
    font-size: calc(0.0041176471 * 100vw + 8.8941176471px);
  }
}
@media (min-width: 1241px) {
  .header__menu-item {
    font-size: 14px;
  }
}
.header__menu-item {
  line-height: 110%;
  color: #303b3f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: clamp(3px, 2.5411764706px + 0.1176470588vw, 4px);
  position: relative;
}
.header__menu-item::before {
  position: relative;
  content: "";
  width: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  height: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  background: #303b3f;
  border-radius: 2px;
  transform: rotate(45deg);
}
.header__utils {
  flex-shrink: 0;
}
@media (max-width: 1199px) {
  .header__button {
    display: none;
  }
}
.header__burger {
  display: none;
  border: none;
  background: transparent;
  outline: none;
  aspect-ratio: 1/1;
  width: 26px;
  height: 26px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 1199px) {
  .header__burger {
    display: flex;
  }
}
.header__burger::before, .header__burger::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #5f5cff;
  content: "";
  left: 0;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
}
.header__burger::before {
  top: 8px;
}
.header__burger::after {
  bottom: 8px;
}
.header__burger.active::before {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
  left: 50%;
  width: 16px;
}
.header__burger.active::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  bottom: inherit;
  top: 50%;
  width: 16px;
  left: 50%;
}

.fixed-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  transform: translateY(0);
}
.fixed-wrapper.hidden {
  transform: translateY(-100%);
}

.drawer {
  background: #c5d4d9;
  width: 100%;
  position: absolute;
  top: 100%;
  right: 0;
  height: auto;
  transition: all 0.3s ease-in-out;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(120%);
  gap: clamp(52.5px, 44.4705882353px + 2.0588235294vw, 70px);
  box-sizing: border-box;
  padding: clamp(18.75px, 15.8823529412px + 0.7352941176vw, 25px);
}
.drawer.active {
  transform: none;
}
.drawer__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(22.5px, 19.0588235294px + 0.8823529412vw, 30px);
}
.drawer__menu-item {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}
@media (max-width: 390px) {
  .drawer__menu-item {
    font-size: 10.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .drawer__menu-item {
    font-size: calc(0.0041176471 * 100vw + 8.8941176471px);
  }
}
@media (min-width: 1241px) {
  .drawer__menu-item {
    font-size: 14px;
  }
}
.drawer__menu-item {
  line-height: 110%;
  color: #303b3f;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: clamp(3px, 2.5411764706px + 0.1176470588vw, 4px);
  position: relative;
}
.drawer__menu-item::before {
  position: relative;
  content: "";
  width: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  height: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  background: #303b3f;
  border-radius: 2px;
  transform: rotate(45deg);
}

.intro {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(180px, 180px + 0vw, 180px) 0;
}
.intro__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(42px, 13.0941176471px + 7.4117647059vw, 105px);
  position: relative;
  z-index: 20;
  pointer-events: none;
}
.intro__container a,
.intro__container button,
.intro__container input,
.intro__container select,
.intro__container textarea,
.intro__container [role=button] {
  pointer-events: auto;
}
.intro__text {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: clamp(42.75px, 36.2117647059px + 1.6764705882vw, 57px);
  max-width: 900px;
}
.intro__text h1 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 98px;
}
@media (max-width: 390px) {
  .intro__text h1 {
    font-size: 42px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .intro__text h1 {
    font-size: calc(0.0658823529 * 100vw + 16.3058823529px);
  }
}
@media (min-width: 1241px) {
  .intro__text h1 {
    font-size: 98px;
  }
}
.intro__text h1 {
  line-height: 100%;
  color: #303b3f;
  text-align: center;
}
.intro__text h1 span {
  font-weight: 700;
  color: #5f5cff;
}
.intro__text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 390px) {
  .intro__text p {
    font-size: 13.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .intro__text p {
    font-size: calc(0.0052941176 * 100vw + 11.4352941176px);
  }
}
@media (min-width: 1241px) {
  .intro__text p {
    font-size: 18px;
  }
}
.intro__text p {
  line-height: 110%;
  color: #303b3f;
  text-align: center;
}
.intro__utils {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 450px;
  gap: clamp(9px, 7.6235294118px + 0.3529411765vw, 12px);
}
.intro__utils p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 390px) {
  .intro__utils p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .intro__utils p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .intro__utils p {
    font-size: 16px;
  }
}
.intro__utils p {
  line-height: 110%;
  color: #303b3f;
  text-align: center;
}
.intro__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
}
.intro__left {
  position: absolute;
  top: 0;
  left: 0;
  max-width: clamp(105px, -7.4117647059px + 28.8235294118vw, 350px);
  height: auto;
  z-index: 15;
  pointer-events: none;
}
.intro__right {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: clamp(140px, 43.6470588235px + 24.7058823529vw, 350px);
  height: auto;
  z-index: 15;
  pointer-events: none;
}
.intro__cards {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #c5d4d9;
  z-index: 10;
  width: 120%;
  min-width: calc(12 * clamp(126px, 106.7294117647px + 4.9411764706vw, 168px));
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(clamp(126px, 106.7294117647px + 4.9411764706vw, 168px), 1fr));
}
@media (max-width: 991px) {
  .intro__cards {
    min-width: calc(8 * clamp(75px, 63.5294117647px + 2.9411764706vw, 100px));
    grid-template-columns: repeat(8, minmax(clamp(75px, 63.5294117647px + 2.9411764706vw, 100px), 1fr));
  }
}
.intro__card {
  aspect-ratio: 1;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  padding: clamp(10.8px, 4.7435294118px + 1.5529411765vw, 24px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: var(--col, auto);
  grid-row: var(--row, auto);
}
@media (max-width: 991px) {
  .intro__card {
    grid-column: var(--col-m, auto);
    grid-row: var(--row-m, auto);
  }
}
.intro__card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.intro__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
  position: relative;
  z-index: 10;
}
.intro__card p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 17px;
}
@media (max-width: 390px) {
  .intro__card p {
    font-size: 10px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .intro__card p {
    font-size: calc(0.0082352941 * 100vw + 6.7882352941px);
  }
}
@media (min-width: 1241px) {
  .intro__card p {
    font-size: 17px;
  }
}
.intro__card p {
  line-height: 110%;
  color: #ffffff;
  position: relative;
  z-index: 10;
}
.intro__card:not(.no-hover, .no-hover-desktop):hover::before {
  background: url(https://www.olenatsysar.com/wp-content/uploads/2026/07/no-text.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
.intro__card.with-text:hover::before {
  background: url(https://www.olenatsysar.com/wp-content/uploads/2026/07/with-text.png) no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 991px) {
  .intro__card.no-hover-desktop:hover::before {
    background: url(https://www.olenatsysar.com/wp-content/uploads/2026/07/no-text.png) no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
.intro__card.with-img {
  padding: 0;
}
.intro__card.with-img:hover img {
  display: block;
}

.bio {
  background: #fff;
  padding: clamp(52.5px, 44.4705882353px + 2.0588235294vw, 70px) 0 clamp(180px, 180px + 0vw, 180px);
  position: relative;
  overflow: hidden;
}
.bio__container {
  display: flex;
  flex-direction: column;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
  align-items: center;
  max-width: 660px;
  z-index: 15;
}
.bio__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.bio__description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(9px, 7.6235294118px + 0.3529411765vw, 12px);
}
.bio__description h2 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
}
@media (max-width: 390px) {
  .bio__description h2 {
    font-size: 32px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .bio__description h2 {
    font-size: calc(0.0329411765 * 100vw + 19.1529411765px);
  }
}
@media (min-width: 1241px) {
  .bio__description h2 {
    font-size: 60px;
  }
}
.bio__description h2 {
  line-height: 110%;
  text-align: center;
  color: #000000;
}
.bio__description p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
}
@media (max-width: 390px) {
  .bio__description p {
    font-size: 16px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .bio__description p {
    font-size: calc(0.0094117647 * 100vw + 12.3294117647px);
  }
}
@media (min-width: 1241px) {
  .bio__description p {
    font-size: 24px;
  }
}
.bio__description p {
  line-height: 110%;
  text-align: center;
  color: #171717;
}
.bio__content {
  gap: clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
  display: flex;
  width: 100%;
  flex-direction: column;
}
.bio__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  background: #cbd8dd;
  border-radius: 8px;
}
.bio__image img {
  height: auto;
  width: 100%;
}
.bio__num {
  position: absolute;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(12px, 10.1647058824px + 0.4705882353vw, 16px);
  gap: clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
  width: 168px;
  height: 168px;
  background: #ffffff;
  border: 2px solid #d4dee3;
  border-radius: 8px;
  aspect-ratio: 1/1;
  z-index: 10;
}
@media (max-width: 767px) {
  .bio__num {
    display: none;
  }
}
.bio__num h4 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 34px;
}
@media (max-width: 390px) {
  .bio__num h4 {
    font-size: 25.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .bio__num h4 {
    font-size: calc(0.01 * 100vw + 21.6px);
  }
}
@media (min-width: 1241px) {
  .bio__num h4 {
    font-size: 34px;
  }
}
.bio__num h4 {
  color: #5f5cff;
  text-align: center;
  line-height: 110%;
}
.bio__num p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 390px) {
  .bio__num p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .bio__num p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .bio__num p {
    font-size: 16px;
  }
}
.bio__num p {
  color: #171717;
  text-align: center;
  line-height: 110%;
}
.bio__num-one {
  left: 25%;
  top: 15%;
}
.bio__num-two {
  right: 15%;
  top: 30%;
}
.bio__num-three {
  left: 15%;
  top: 50%;
}
.bio__list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
}
.bio__list-item {
  display: flex;
  align-items: flex-start;
  padding: clamp(18px, 15.2470588235px + 0.7058823529vw, 24px);
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  background: #ffffff;
  border: 2px solid #d4dee3;
  border-radius: 8px;
  flex-grow: 1;
  width: 50%;
  position: relative;
}
.bio__list-item::before {
  position: relative;
  content: "";
  width: 10px;
  height: 10px;
  background: #090817;
  border-radius: 2px;
  transform: rotate(45deg);
  display: block;
  flex-shrink: 0;
}
.bio__list-item:nth-child(1), .bio__list-item:nth-child(3) {
  margin-right: -2px;
}
@media (max-width: 767px) {
  .bio__list-item:nth-child(1), .bio__list-item:nth-child(3) {
    margin-right: 0;
  }
}
.bio__list-item:nth-child(4), .bio__list-item:nth-child(3) {
  margin-top: -2px;
}
@media (max-width: 767px) {
  .bio__list-item:nth-child(2) {
    margin-top: -2px;
  }
}
@media (max-width: 767px) {
  .bio__list-item {
    width: 100%;
  }
}
.bio__cards {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  background: #d4dee3;
  z-index: 5;
  width: 120%;
  min-width: calc(12 * clamp(126px, 106.7294117647px + 4.9411764706vw, 168px));
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(clamp(126px, 106.7294117647px + 4.9411764706vw, 168px), 1fr));
}
@media (max-width: 991px) {
  .bio__cards {
    min-width: calc(8 * clamp(75px, 63.5294117647px + 2.9411764706vw, 100px));
    grid-template-columns: repeat(8, minmax(clamp(75px, 63.5294117647px + 2.9411764706vw, 100px), 1fr));
  }
}
.bio__card {
  aspect-ratio: 1;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  grid-column: var(--col, auto);
  grid-row: var(--row, auto);
}
.bio__card.mobile {
  display: block;
}
@media (max-width: 991px) {
  .bio__card {
    grid-column: var(--col-m, auto);
    grid-row: var(--row-m, auto);
  }
  .bio__card.mobile {
    display: none;
  }
}
.bio__card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.bio__card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
  position: relative;
  z-index: 10;
}
.bio__card:hover::before {
  background: rgba(255, 255, 255, 0.4);
}
.bio__card.with-img:hover img {
  display: block;
}

.experience {
  background: #cbd8dd;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
  position: relative;
}
.experience__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
  max-width: 1000px;
  z-index: 10;
}
.experience__description {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .experience__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .experience__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .experience__description {
    font-size: 26px;
  }
}
.experience__description {
  line-height: 110%;
  color: #303b3f;
}
.experience__cards {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
@media (max-width: 767px) {
  .experience__cards {
    display: flex;
    flex-direction: column;
  }
}
.experience__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25.5px, 21.6px + 1vw, 34px);
  gap: clamp(21px, 17.7882352941px + 0.8235294118vw, 28px);
  background: rgba(253, 253, 253, 0.85);
  border: 2px solid #cbd8dd;
  border-radius: 8px;
}
.experience__card-label {
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  background: #5f5cff;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 390px) {
  .experience__card-label {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .experience__card-label {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .experience__card-label {
    font-size: 12px;
  }
}
.experience__card-label {
  line-height: 110%;
  color: #ffffff;
}
.experience__card-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
}
.experience__card-text h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 22px;
}
@media (max-width: 390px) {
  .experience__card-text h5 {
    font-size: 16.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .experience__card-text h5 {
    font-size: calc(0.0064705882 * 100vw + 13.9764705882px);
  }
}
@media (min-width: 1241px) {
  .experience__card-text h5 {
    font-size: 22px;
  }
}
.experience__card-text h5 {
  line-height: 110%;
  color: #090817;
}
.experience__card-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .experience__card-text p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .experience__card-text p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .experience__card-text p {
    font-size: 16px;
  }
}
.experience__card-text p {
  line-height: 110%;
  color: #75858b;
}
.experience__card:nth-child(1) {
  grid-area: 1/1/2/5;
}
.experience__card:nth-child(2) {
  grid-area: 1/5/2/8;
}
.experience__card:nth-child(3) {
  grid-area: 1/8/2/11;
}
.experience__card:nth-child(4) {
  grid-area: 2/1/3/4;
}
.experience__card:nth-child(5) {
  grid-area: 2/4/3/7;
}
.experience__card:nth-child(6) {
  grid-area: 2/7/3/11;
}
.experience__image {
  position: absolute;
  z-index: 5;
  transform: translate(-50%, -50%);
  top: 80%;
  left: 25%;
}
@media (max-width: 767px) {
  .experience__image {
    max-width: 400px;
    top: 95%;
  }
}

.business {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
}
.business__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.business__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 560px;
}
.business__title {
  text-align: center;
}
.business__cards {
  display: flex;
  align-items: stretch;
  width: 100%;
  flex-wrap: wrap;
}
.business__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(25.5px, 21.6px + 1vw, 34px);
  gap: clamp(21px, 17.7882352941px + 0.8235294118vw, 28px);
  background: rgba(253, 253, 253, 0.85);
  border: 2px solid #cbd8dd;
  border-radius: 8px;
  width: 33%;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .business__card {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .business__card {
    width: 100%;
  }
}
.business__card:nth-child(1) {
  margin-right: -2px;
  margin-bottom: -2px;
}
@media (max-width: 767px) {
  .business__card:nth-child(1) {
    margin-right: 0px;
  }
}
.business__card:nth-child(2) {
  margin-bottom: -2px;
}
.business__card:nth-child(3) {
  margin-bottom: -2px;
  margin-left: -2px;
}
@media (max-width: 991px) {
  .business__card:nth-child(3) {
    margin-left: 0px;
    margin-right: -2px;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .business__card:nth-child(3) {
    margin-right: 0px;
    margin-bottom: -2px;
  }
}
.business__card:nth-child(4) {
  margin-right: -2px;
}
@media (max-width: 767px) {
  .business__card:nth-child(4) {
    margin-right: 0px;
    margin-bottom: -2px;
  }
}
@media (max-width: 991px) {
  .business__card:nth-child(5) {
    margin-right: -2px;
    margin-top: -2px;
  }
}
@media (max-width: 767px) {
  .business__card:nth-child(5) {
    margin-right: 0px;
    margin-top: 0px;
    margin-bottom: -2px;
  }
}
.business__card:nth-child(6) {
  margin-left: -2px;
}
@media (max-width: 991px) {
  .business__card:nth-child(6) {
    margin-left: 0px;
    margin-top: -2px;
  }
}
@media (max-width: 767px) {
  .business__card:nth-child(6) {
    margin-top: 0px;
    margin-bottom: -2px;
  }
}
.business__card-label {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 390px) {
  .business__card-label {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .business__card-label {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .business__card-label {
    font-size: 16px;
  }
}
.business__card-label {
  line-height: 110%;
  color: #5f5cff;
}
.business__card-line {
  width: 100%;
  border: 1px solid #c5d4d9;
}

.levels {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
}
.levels__container {
  display: flex;
  flex-direction: column;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.levels__text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(15px, 12.7058823529px + 0.5882352941vw, 20px);
}
@media (max-width: 767px) {
  .levels__text {
    gap: 0;
    flex-direction: column-reverse;
  }
}
.levels__description {
  max-width: 1000px;
  align-self: flex-end;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .levels__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .levels__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .levels__description {
    font-size: 26px;
  }
}
.levels__description {
  line-height: 110%;
  color: #303b3f;
}

.enter {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
}
.enter__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
  max-width: 1000px;
}
.enter__text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.enter__title {
  text-align: center;
  margin: 0 auto;
  max-width: 960px;
}
.enter__description {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .enter__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .enter__description {
    font-size: 26px;
  }
}
.enter__description {
  line-height: 110%;
  color: #303b3f;
}
.enter__cards {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}
.enter__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 11.9058823529px + 2.5882352941vw, 44px);
  gap: clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
  background: #cbd8dd;
  border: 2px solid #ffffff;
  border-radius: 8px;
  width: 50%;
}
@media (max-width: 767px) {
  .enter__card {
    width: 100%;
  }
}
.enter__card h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
}
@media (max-width: 390px) {
  .enter__card h3 {
    font-size: 21px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card h3 {
    font-size: calc(0.0082352941 * 100vw + 17.7882352941px);
  }
}
@media (min-width: 1241px) {
  .enter__card h3 {
    font-size: 28px;
  }
}
.enter__card h3 {
  line-height: 110%;
  color: #090817;
}
.enter__card h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 390px) {
  .enter__card h5 {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card h5 {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .enter__card h5 {
    font-size: 16px;
  }
}
.enter__card h5 {
  line-height: 110%;
  color: #5f5cff;
}
.enter__card-utils {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.enter__card-label {
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  background: #5f5cff;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 390px) {
  .enter__card-label {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card-label {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .enter__card-label {
    font-size: 12px;
  }
}
.enter__card-label {
  line-height: 110%;
  color: #ffffff;
}
.enter__card-period {
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px);
  background: #ff8033;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
}
@media (max-width: 390px) {
  .enter__card-period {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card-period {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .enter__card-period {
    font-size: 12px;
  }
}
.enter__card-period {
  line-height: 110%;
  color: #090817;
}
.enter__card-text {
  display: flex;
  flex-direction: column;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  width: 100%;
}
.enter__card-text h6 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}
@media (max-width: 390px) {
  .enter__card-text h6 {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card-text h6 {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .enter__card-text h6 {
    font-size: 12px;
  }
}
.enter__card-text h6 {
  line-height: 110%;
  color: #090817;
}
.enter__card-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .enter__card-text p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card-text p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .enter__card-text p {
    font-size: 16px;
  }
}
.enter__card-text p {
  line-height: 110%;
  color: #303b3f;
}
.enter__card-citation {
  display: flex;
  flex-direction: column;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  width: 100%;
  box-sizing: border-box;
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(12px, 10.1647058824px + 0.4705882353vw, 16px);
  border-left: 2px solid #5f5cff;
}
.enter__card-citation h6 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}
@media (max-width: 390px) {
  .enter__card-citation h6 {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card-citation h6 {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .enter__card-citation h6 {
    font-size: 12px;
  }
}
.enter__card-citation h6 {
  line-height: 110%;
  color: #090817;
}
.enter__card-citation p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .enter__card-citation p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .enter__card-citation p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .enter__card-citation p {
    font-size: 16px;
  }
}
.enter__card-citation p {
  line-height: 110%;
  color: #303b3f;
}

.steps {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
}
.steps__container {
  display: flex;
  flex-direction: column;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.steps__text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(15px, 12.7058823529px + 0.5882352941vw, 20px);
}
@media (max-width: 767px) {
  .steps__text {
    gap: 0;
    flex-direction: column-reverse;
  }
}
.steps__description {
  max-width: 1000px;
  align-self: flex-end;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .steps__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .steps__description {
    font-size: 26px;
  }
}
.steps__description {
  line-height: 110%;
  color: #303b3f;
}
.steps__cards {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  width: 100%;
  gap: clamp(21px, 17.7882352941px + 0.8235294118vw, 28px);
  flex-wrap: wrap;
}
.steps__card {
  width: calc(33% - 20px);
  display: flex;
  flex-direction: column;
  gap: clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
}
@media (max-width: 991px) {
  .steps__card {
    width: calc(50% - 14px);
  }
}
@media (max-width: 767px) {
  .steps__card {
    width: 100%;
  }
}
.steps__card h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 390px) {
  .steps__card h3 {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__card h3 {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .steps__card h3 {
    font-size: 26px;
  }
}
.steps__card h3 {
  line-height: 110%;
  color: #090817;
}
.steps__card h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 390px) {
  .steps__card h5 {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__card h5 {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .steps__card h5 {
    font-size: 16px;
  }
}
.steps__card h5 {
  line-height: 110%;
  color: #5f5cff;
}
.steps__card p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .steps__card p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__card p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .steps__card p {
    font-size: 16px;
  }
}
.steps__card p {
  line-height: 110%;
  color: #303b3f;
}
.steps__card-arrow {
  display: flex;
  align-items: center;
  width: 100%;
  gap: clamp(8.25px, 6.9882352941px + 0.3235294118vw, 11px);
}
.steps__card-arrow p {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}
@media (max-width: 390px) {
  .steps__card-arrow p {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__card-arrow p {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .steps__card-arrow p {
    font-size: 12px;
  }
}
.steps__card-arrow p {
  line-height: 110%;
  color: #5f5cff;
}
.steps__card-start {
  flex-grow: 1;
  height: 1px;
  background: #5F5CFF;
}
.steps__card-end {
  display: flex;
  align-items: center;
}
.steps__card-citation {
  display: flex;
  flex-direction: column;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  width: 100%;
  box-sizing: border-box;
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(12px, 10.1647058824px + 0.4705882353vw, 16px);
  border-left: 2px solid #5f5cff;
}
.steps__card-citation h6 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
}
@media (max-width: 390px) {
  .steps__card-citation h6 {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__card-citation h6 {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .steps__card-citation h6 {
    font-size: 12px;
  }
}
.steps__card-citation h6 {
  line-height: 110%;
  color: #090817;
}
.steps__card-citation p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .steps__card-citation p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .steps__card-citation p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .steps__card-citation p {
    font-size: 16px;
  }
}
.steps__card-citation p {
  line-height: 110%;
  color: #303b3f;
}

.workshop {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
  overflow: hidden;
  position: relative;
}
.workshop .workshop-button-next,
.workshop .workshop-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #cbd8dd;
  border-radius: 8px;
  cursor: pointer;
}
.workshop .workshop-button-next:not(.swiper-button-disabled):hover,
.workshop .workshop-button-prev:not(.swiper-button-disabled):hover {
  background: #75858b;
}
.workshop .workshop-button-next:not(.swiper-button-disabled):hover svg path,
.workshop .workshop-button-prev:not(.swiper-button-disabled):hover svg path {
  fill: #ffffff;
}
.workshop .workshop-button-next.swiper-button-disabled svg path,
.workshop .workshop-button-prev.swiper-button-disabled svg path {
  fill: rgba(48, 59, 63, 0.3019607843);
}
.workshop__container {
  display: flex;
  flex-direction: column;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.workshop__text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(15px, 12.7058823529px + 0.5882352941vw, 20px);
}
@media (max-width: 767px) {
  .workshop__text {
    gap: 0;
    flex-direction: column-reverse;
  }
}
.workshop__description {
  max-width: 1000px;
  align-self: flex-end;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .workshop__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .workshop__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .workshop__description {
    font-size: 26px;
  }
}
.workshop__description {
  line-height: 110%;
  color: #303b3f;
}
.workshop__swiper {
  position: relative;
  width: 100%;
}
.workshop__swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch !important;
}
.workshop__card {
  margin: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 11.9058823529px + 2.5882352941vw, 44px);
  gap: clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
  background: #d4dee3;
  border: 1px solid #ffffff;
  border-radius: 8px;
  height: 100%;
}
.workshop__card img {
  display: block;
  height: auto;
  width: 100%;
  border-radius: 8px;
}
.workshop__card h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
}
@media (max-width: 390px) {
  .workshop__card h3 {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .workshop__card h3 {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .workshop__card h3 {
    font-size: 26px;
  }
}
.workshop__card h3 {
  line-height: 110%;
  color: #171717;
}
.workshop__card h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
}
@media (max-width: 390px) {
  .workshop__card h5 {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .workshop__card h5 {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .workshop__card h5 {
    font-size: 16px;
  }
}
.workshop__card h5 {
  line-height: 110%;
  color: #5f5cff;
}
.workshop__card ul {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(21px, 17.7882352941px + 0.8235294118vw, 28px);
  border-left: 3px solid #5f5cff;
}
.workshop__card ul li {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .workshop__card ul li {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .workshop__card ul li {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .workshop__card ul li {
    font-size: 16px;
  }
}
.workshop__card ul li {
  line-height: 110%;
  color: #303b3f;
}
.workshop__card-label {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 12px;
}
@media (max-width: 390px) {
  .workshop__card-label {
    font-size: 9px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .workshop__card-label {
    font-size: calc(0.0035294118 * 100vw + 7.6235294118px);
  }
}
@media (min-width: 1241px) {
  .workshop__card-label {
    font-size: 12px;
  }
}
.workshop__card-label {
  line-height: 110%;
  color: #ff8033;
}
.workshop__utils {
  display: flex;
  align-items: stretch;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  width: calc(100% + 100px);
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1440px) {
  .workshop__utils {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: clamp(18px, 15.2470588235px + 0.7058823529vw, 24px);
    width: 100%;
  }
}

.cases {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
  overflow: hidden;
  position: relative;
}
.cases .cases-button-next,
.cases .cases-button-prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #cbd8dd;
  border-radius: 8px;
  cursor: pointer;
}
.cases .cases-button-next:not(.swiper-button-disabled):hover,
.cases .cases-button-prev:not(.swiper-button-disabled):hover {
  background: #75858b;
}
.cases .cases-button-next:not(.swiper-button-disabled):hover svg path,
.cases .cases-button-prev:not(.swiper-button-disabled):hover svg path {
  fill: #ffffff;
}
.cases .cases-button-next.swiper-button-disabled svg path,
.cases .cases-button-prev.swiper-button-disabled svg path {
  fill: rgba(48, 59, 63, 0.3019607843);
}
.cases__container {
  display: flex;
  flex-direction: column;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.cases__text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(15px, 12.7058823529px + 0.5882352941vw, 20px);
}
@media (max-width: 767px) {
  .cases__text {
    gap: 0;
    flex-direction: column-reverse;
  }
}
.cases__description {
  max-width: 1000px;
  align-self: flex-end;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .cases__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .cases__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .cases__description {
    font-size: 26px;
  }
}
.cases__description {
  line-height: 110%;
  color: #303b3f;
}
.cases__swiper {
  position: relative;
  width: 100%;
  padding: 0 0 clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
}
.cases__swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch !important;
}
.cases__card {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
  gap: clamp(25.5px, 21.6px + 1vw, 34px);
  position: relative;
  background: #ffffff;
  border: 2px solid #c5d4d9;
  border-radius: 8px;
  box-sizing: border-box;
}
.cases__card svg {
  position: absolute;
  top: 0;
  right: clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
}
.cases__card-text {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
}
.cases__card-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 390px) {
  .cases__card-text p {
    font-size: 10.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .cases__card-text p {
    font-size: calc(0.0041176471 * 100vw + 8.8941176471px);
  }
}
@media (min-width: 1241px) {
  .cases__card-text p {
    font-size: 14px;
  }
}
.cases__card-text p {
  line-height: 110%;
  color: #171717;
}
.cases__card-author {
  display: flex;
  align-items: center;
  gap: clamp(9px, 7.6235294118px + 0.3529411765vw, 12px);
}
.cases__card-author img {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  display: block;
}
.cases__card-info {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
}
.cases__card-info h6 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
}
@media (max-width: 390px) {
  .cases__card-info h6 {
    font-size: 13.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .cases__card-info h6 {
    font-size: calc(0.0052941176 * 100vw + 11.4352941176px);
  }
}
@media (min-width: 1241px) {
  .cases__card-info h6 {
    font-size: 18px;
  }
}
.cases__card-info h6 {
  line-height: 110%;
  color: #171717;
}
.cases__card-info p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
}
@media (max-width: 390px) {
  .cases__card-info p {
    font-size: 7.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .cases__card-info p {
    font-size: calc(0.0029411765 * 100vw + 6.3529411765px);
  }
}
@media (min-width: 1241px) {
  .cases__card-info p {
    font-size: 10px;
  }
}
.cases__card-info p {
  line-height: 110%;
  color: #171717;
}
.cases__utils {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: clamp(13.5px, 11.4352941176px + 0.5294117647vw, 18px);
}
.cases__disclaimer {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 390px) {
  .cases__disclaimer {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .cases__disclaimer {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .cases__disclaimer {
    font-size: 16px;
  }
}
.cases__disclaimer {
  line-height: 110%;
  color: #ff8033;
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(3px, 2.5411764706px + 0.1176470588vw, 4px);
}
.cases__disclaimer::before {
  position: relative;
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: #ff8033;
  border-radius: 2px;
  transform: rotate(45deg);
}
.cases__navigation {
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
}

.audit {
  background: #cbd8dd;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
}
.audit__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
  max-width: 890px;
}
.audit__text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.audit__description {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .audit__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .audit__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .audit__description {
    font-size: 26px;
  }
}
.audit__description {
  line-height: 110%;
  color: #303b3f;
}
.audit__card {
  width: 100%;
  padding: 0 clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
  display: flex;
  align-items: center;
  gap: 34px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(7.1px);
  border-radius: 8px;
  justify-content: space-around;
}
.audit__card img {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .audit__card {
    flex-direction: column-reverse;
    padding: clamp(25.5px, 21.6px + 1vw, 34px) clamp(18px, 15.2470588235px + 0.7058823529vw, 24px) 0;
  }
}
.audit__content {
  display: flex;
  flex-direction: column;
  gap: clamp(25.5px, 21.6px + 1vw, 34px);
}
.audit__content-text {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 10.1647058824px + 0.4705882353vw, 16px);
}
.audit__content-text h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 390px) {
  .audit__content-text h5 {
    font-size: 18px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .audit__content-text h5 {
    font-size: calc(0.0070588235 * 100vw + 15.2470588235px);
  }
}
@media (min-width: 1241px) {
  .audit__content-text h5 {
    font-size: 24px;
  }
}
.audit__content-text h5 {
  line-height: 110%;
  color: #090817;
}
.audit__content-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 390px) {
  .audit__content-text p {
    font-size: 13.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .audit__content-text p {
    font-size: calc(0.0052941176 * 100vw + 11.4352941176px);
  }
}
@media (min-width: 1241px) {
  .audit__content-text p {
    font-size: 18px;
  }
}
.audit__content-text p {
  line-height: 110%;
  color: #090817;
}

.price {
  background: #ffffff;
  padding: clamp(78.75px, 66.7058823529px + 3.0882352941vw, 105px) 0;
}
.price__container {
  display: flex;
  flex-direction: column;
  gap: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
}
.price__text {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(15px, 12.7058823529px + 0.5882352941vw, 20px);
}
@media (max-width: 767px) {
  .price__text {
    gap: 0;
    flex-direction: column-reverse;
  }
}
.price__description {
  max-width: 1000px;
  align-self: flex-end;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 390px) {
  .price__description {
    font-size: 19.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .price__description {
    font-size: calc(0.0076470588 * 100vw + 16.5176470588px);
  }
}
@media (min-width: 1241px) {
  .price__description {
    font-size: 26px;
  }
}
.price__description {
  line-height: 110%;
  color: #303b3f;
}
.price__content {
  display: flex;
  width: 100%;
  align-items: center;
  gap: clamp(18px, 15.2470588235px + 0.7058823529vw, 24px);
  justify-content: space-around;
}
@media (max-width: 1199px) {
  .price__content {
    flex-direction: column;
  }
}
.price__list {
  width: calc(50% - 12px);
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(18px, 15.2470588235px + 0.7058823529vw, 24px);
}
@media (max-width: 1199px) {
  .price__list {
    width: 100%;
  }
}
.price__list-item {
  display: flex;
  flex-direction: column;
  gap: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px);
  box-sizing: border-box;
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(12px, 10.1647058824px + 0.4705882353vw, 16px);
  border-left: 2px solid #5f5cff;
  width: calc(50% - 12px);
}
.price__list-item h5 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
}
@media (max-width: 390px) {
  .price__list-item h5 {
    font-size: 18px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .price__list-item h5 {
    font-size: calc(0.0070588235 * 100vw + 15.2470588235px);
  }
}
@media (min-width: 1241px) {
  .price__list-item h5 {
    font-size: 24px;
  }
}
.price__list-item h5 {
  line-height: 110%;
  color: #090817;
}
.price__list-item p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 390px) {
  .price__list-item p {
    font-size: 12px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .price__list-item p {
    font-size: calc(0.0047058824 * 100vw + 10.1647058824px);
  }
}
@media (min-width: 1241px) {
  .price__list-item p {
    font-size: 16px;
  }
}
.price__list-item p {
  line-height: 110%;
  color: #303b3f;
}
.price__step {
  display: flex;
  flex-direction: column;
  width: calc(50% - 12px);
  padding: clamp(33px, 27.9529411765px + 1.2941176471vw, 44px);
  gap: clamp(27.75px, 23.5058823529px + 1.0882352941vw, 37px);
  background: rgba(197, 212, 217, 0.2);
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .price__step {
    width: 100%;
  }
}
.price__step-text {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 10.1647058824px + 0.4705882353vw, 16px);
  width: 100%;
}
.price__step-text h3 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 37px;
}
@media (max-width: 390px) {
  .price__step-text h3 {
    font-size: 27.75px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .price__step-text h3 {
    font-size: calc(0.0108823529 * 100vw + 23.5058823529px);
  }
}
@media (min-width: 1241px) {
  .price__step-text h3 {
    font-size: 37px;
  }
}
.price__step-text h3 {
  line-height: 110%;
  color: #090817;
}
.price__step-text p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 390px) {
  .price__step-text p {
    font-size: 13.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .price__step-text p {
    font-size: calc(0.0052941176 * 100vw + 11.4352941176px);
  }
}
@media (min-width: 1241px) {
  .price__step-text p {
    font-size: 18px;
  }
}
.price__step-text p {
  line-height: 110%;
  color: #090817;
}
.price__step-contact {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: clamp(11.25px, 9.5294117647px + 0.4411764706vw, 15px);
}
@media (max-width: 767px) {
  .price__step-contact {
    flex-direction: column;
    align-items: flex-start;
  }
}
.price__step-contact p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 390px) {
  .price__step-contact p {
    font-size: 15px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .price__step-contact p {
    font-size: calc(0.0058823529 * 100vw + 12.7058823529px);
  }
}
@media (min-width: 1241px) {
  .price__step-contact p {
    font-size: 20px;
  }
}
.price__step-contact p {
  line-height: 110%;
  color: #090817;
}

.footer {
  background: #d4dee3;
  padding: clamp(67.5px, 57.1764705882px + 2.6470588235vw, 90px) 0 clamp(39px, 33.0352941176px + 1.5294117647vw, 52px);
}
.footer__container {
  display: flex;
  flex-direction: column;
}
.footer__copyright {
  margin-top: clamp(27.75px, 23.5058823529px + 1.0882352941vw, 37px);
  width: 100%;
  border-top: 1px solid #75858b;
  padding: clamp(7.5px, 6.3529411765px + 0.2941176471vw, 10px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__copyright p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
}
@media (max-width: 390px) {
  .footer__copyright p {
    font-size: 10.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .footer__copyright p {
    font-size: calc(0.0041176471 * 100vw + 8.8941176471px);
  }
}
@media (min-width: 1241px) {
  .footer__copyright p {
    font-size: 14px;
  }
}
.footer__copyright p {
  line-height: 110%;
  color: #171717;
  text-align: center;
}
.footer__info {
  margin-top: clamp(0px, -42.2117647059px + 10.8235294118vw, 92px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 12.7058823529px + 0.5882352941vw, 20px);
  position: relative;
  z-index: 20;
}
@media (max-width: 767px) {
  .footer__info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__contact {
  display: flex;
  align-items: center;
  gap: clamp(12.75px, 10.8px + 0.5vw, 17px);
}
.footer__contact p {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 390px) {
  .footer__contact p {
    font-size: 15px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .footer__contact p {
    font-size: calc(0.0058823529 * 100vw + 12.7058823529px);
  }
}
@media (min-width: 1241px) {
  .footer__contact p {
    font-size: 20px;
  }
}
.footer__contact p {
  line-height: 110%;
  color: #171717;
}
.footer__contact p a {
  text-decoration: none;
  color: #171717;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
}
.footer__social a {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: linear-gradient(0deg, #303b3f, #303b3f), #5f5cff;
  border: 1px solid rgba(95, 92, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer__social a:hover {
  background: #5f5cff;
}
.footer__social a:hover svg path {
  fill: #262b1e;
}
.footer__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .footer__content {
    align-items: center;
  }
}
.footer__text {
  display: flex;
  flex-direction: column;
  max-width: 890px;
  gap: clamp(13.5px, -21.6px + 9vw, 90px);
  position: relative;
  z-index: 10;
}
.footer__text h2 {
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 109px;
}
@media (max-width: 390px) {
  .footer__text h2 {
    font-size: 64px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .footer__text h2 {
    font-size: calc(0.0529411765 * 100vw + 43.3529411765px);
  }
}
@media (min-width: 1241px) {
  .footer__text h2 {
    font-size: 109px;
  }
}
.footer__text h2 {
  color: #090817;
  letter-spacing: -0.025em;
  line-height: 110%;
}
.footer__text h2 span {
  font-style: italic;
  font-weight: 400;
  color: #5f5cff;
}
.footer__text p {
  max-width: 645px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 34px;
}
@media (max-width: 390px) {
  .footer__text p {
    font-size: 25.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .footer__text p {
    font-size: calc(0.01 * 100vw + 21.6px);
  }
}
@media (min-width: 1241px) {
  .footer__text p {
    font-size: 34px;
  }
}
.footer__text p {
  color: #303b3f;
}
.footer__image {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translate(0%, -50%);
}
@media (max-width: 991px) {
  .footer__image {
    top: 50%;
  }
}
@media (max-width: 767px) {
  .footer__image {
    position: relative;
    transform: none;
  }
}
.footer__click {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer__face {
  height: auto;
}
@media (max-width: 991px) {
  .footer__face {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .footer__face {
    max-width: 355px;
  }
}
.footer__label {
  position: absolute;
  transform: translate(-50%, -50%);
  padding: clamp(4.5px, 3.8117647059px + 0.1764705882vw, 6px) clamp(6px, 5.0823529412px + 0.2352941176vw, 8px);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2px);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
}
@media (max-width: 390px) {
  .footer__label {
    font-size: 7.5px;
  }
}
@media (min-width: 391px) and (max-width: 1240px) {
  .footer__label {
    font-size: calc(0.0029411765 * 100vw + 6.3529411765px);
  }
}
@media (min-width: 1241px) {
  .footer__label {
    font-size: 10px;
  }
}
.footer__label {
  color: #ffffff;
}
.footer__label-one {
  left: 60%;
  top: 40%;
}
.footer__label-two {
  left: 65%;
  top: 45%;
}/*# sourceMappingURL=cisar.css.map */