@charset "UTF-8";
/* Fonts */
@font-face {
  font-family: "Graphik LCG";
  src: local("Graphik LCG Regular"), local("GraphikLCG-Regular"), url("../fonts/GraphikLCG-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Graphik LCG";
  src: local("Graphik LCG Medium"), local("GraphikLCG-Medium"), url("../fonts/GraphikLCG-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Graphik LCG";
  src: local("Graphik LCG Semibold"), local("GraphikLCG-Semibold"), url("../fonts/GraphikLCG-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Graphik LCG";
  src: local("Graphik LCG Bold"), local("GraphikLCG-Bold"), url("../fonts/GraphikLCG-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-width: 1370px;
  scroll-behavior: smooth;
}
@media (max-width: 430px) {
  html {
    min-width: 320px;
  }
}

body {
  font-family: "Graphik LCG", sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #000000;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 300;
  line-height: 110%;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

input,
textarea {
  font-family: "Graphik LCG", sans-serif;
}

button {
  padding: 0;
  font-family: "Graphik LCG", sans-serif;
  font-weight: 400;
  border: none;
  background: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  width: 1370px;
  padding: 0 10px;
  margin: 0 auto;
}
@media (max-width: 430px) {
  .container {
    width: 95%;
    padding: 0;
    overflow: hidden;
  }
}

.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 65px;
  width: fit-content;
  padding: 0 40px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  background-color: transparent;
  border-radius: 16px;
  border: none;
  transition: 0.3s;
  place-self: center;
}
.btn--red {
  color: #ffffff;
  background-color: #f1361d;
}
.btn--red:hover {
  background-color: #f1361d;
}
.btn--gray {
  margin: 0 auto;
  color: #ffffff;
  background-color: #454341;
}
@media (max-width: 430px) {
  .btn {
    width: 100%;
    height: 50px;
    padding: 0 10px;
    font-size: 14px;
  }
}

.cta-link {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.26;
  color: #f1361d;
  transition: opacity 0.2s ease;
}
.cta-link span {
  position: relative;
  display: flex;
  width: max-content;
  padding-right: 25px;
}
.cta-link span::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14px;
  height: 14px;
  background: url("../img/icon/icon-arrow-right.svg") no-repeat;
}
.cta-link:hover {
  opacity: 0.75;
}
@media (max-width: 430px) {
  .cta-link {
    width: 100%;
    font-size: 14px;
  }
}

.header__top {
  background-color: #ffffff;
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 48px;
}

.header__logo {
  width: 31px;
}

.header__content {
  background-color: #faf8f5;
}

.header__content-inner {
  padding: 47px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #E1DFDD;
}

.header__brand-logo {
  width: auto;
  height: 36px;
}

.header__tagline {
  font-size: 20px;
  font-weight: 500;
  color: #000000;
  opacity: 0.45;
}

.header__navigation {
  display: flex;
  gap: 24px;
}

.nav-menu {
  opacity: 0.9;
}
.nav-menu__link {
  width: max-content;
  font-size: 18px;
  font-weight: 500;
  line-height: 126%;
  transition: color 0.2s ease;
  color: rgba(0, 0, 0, 0.45);
}
.nav-menu__link:hover {
  color: #000000;
}

.header__title {
  padding: 60px 0;
  font-size: 70px;
  font-weight: 500;
  line-height: 1.26;
}
.header__title strong {
  font-weight: 500;
  color: #FF6854;
}

@media (max-width: 430px) {
  .header__content-inner {
    padding: 20px 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .header__tagline {
    font-size: 16px;
  }
  .header__navigation {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  .nav-menu {
    opacity: 0.9;
  }
  .nav-menu__link {
    width: max-content;
    font-size: 14px;
    line-height: 126%;
  }
  .header__title {
    padding: 30px 0;
    font-size: 36px;
    line-height: 1;
  }
}
.hero {
  position: relative;
  padding: 50px 0 60px;
  background-color: #FF6854;
  overflow: hidden;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/content/bg-elipse-hero.png") no-repeat center top;
  z-index: -1;
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero__arguments {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 656px;
}
.hero__argument {
  position: relative;
  display: flex;
  flex-basis: calc(50% - 10px);
  padding: 60px 24px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.26;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
.hero__argument::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 24px;
  width: 32px;
  height: 32px;
  background: url("../img/icon/icon-hero-feature-1.svg") no-repeat center left;
  background-size: contain;
}
.hero__argument:nth-child(2)::before {
  background-image: url("../img/icon/icon-hero-feature-2.svg");
}
.hero__argument:nth-child(3)::before {
  background-image: url("../img/icon/icon-hero-feature-3.svg");
}
.hero__argument:nth-child(4)::before {
  background-image: url("../img/icon/icon-hero-feature-4.svg");
}
.hero__image {
  width: 605px;
}
.hero__summary {
  display: block;
  width: 950px;
  margin: 40px auto;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
  text-align: center;
  color: #ffffff;
}
.hero__cta-link {
  width: fit-content;
  background-color: #ffffff;
  font-weight: 500;
  color: #000000;
}

@media (max-width: 430px) {
  .hero {
    position: relative;
    padding: 25px 0 30px;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
  }
  .hero__arguments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: auto;
  }
  .hero__argument {
    flex-basis: 100%;
    padding: 50px 15px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
  }
  .hero__argument::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    width: 25px;
    height: 25px;
  }
  .hero__image {
    margin-top: 20px;
    width: auto;
  }
  .hero__summary {
    display: block;
    width: auto;
    margin: 20px auto;
    font-size: 18px;
  }
  .hero__cta-link {
    width: 100%;
    text-align: center;
  }
}
.challenges {
  padding: 60px 0 80px;
  background-color: #000000;
  overflow: hidden;
}
@media (max-width: 430px) {
  .challenges {
    padding: 30px 0 40px;
  }
}
.challenges__title {
  margin: 0 auto;
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.27;
  color: #ffffff;
  text-align: center;
}
.challenges__title strong {
  display: block;
  font-weight: 500;
  color: #FF6854;
}
.challenges__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 40px;
}
.challenges__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.challenges__item:nth-child(2) .challenges__item-description {
  width: 450px;
}
.challenges__item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 40px 40px 40px;
}
.challenges__item-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  color: #ffffff;
}
.challenges__item-stat {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
  color: #FF6854;
}
.challenges__item-description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
  color: rgba(255, 255, 255, 0.65);
}
.challenges__cta-link {
  width: fit-content;
  background-color: #f1361d;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 430px) {
  .challenges__title {
    font-size: 36px;
  }
  .challenges__title strong {
    font-size: 28px;
  }
  .challenges__list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px;
  }
  .challenges__item {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .challenges__item:nth-child(2) .challenges__item-description {
    width: auto;
  }
  .challenges__item-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px 20px 20px;
  }
  .challenges__item-title {
    font-size: 24px;
  }
  .challenges__item-stat {
    font-size: 28px;
  }
  .challenges__item-description {
    font-size: 18px;
    line-height: 1.26;
  }
  .challenges__cta-link {
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}
.case {
  padding: 60px 0 80px;
  background-color: #faf8f5;
}
@media (max-width: 430px) {
  .case {
    padding: 30px 0 40px;
  }
}
.case--bg-white {
  background-color: #ffffff;
}
.case__card {
  padding: 40px 40px 100px 40px;
  background-color: #ffffff;
  border-radius: 36px;
}
.case__card--bg-gray {
  background-color: #faf8f5;
}
.case__badge {
  max-width: max-content;
  padding: 5px 10px;
  font-size: 16px;
  color: #ffffff;
  background-color: #f1361d;
  border-radius: 8px;
}
.case__title {
  margin: 16px 0 40px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  color: #000000;
}
.case__overview {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.case__overview-image {
  width: 616px;
  height: auto;
}
.case__overview-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.case__overview-content--column {
  flex-direction: column;
  width: 616px;
}
.case__overview-text {
  width: 616px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.46;
  color: rgba(0, 0, 0, 0.45);
}
.case__results {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.case__cta {
  margin: 60px auto 0;
  width: fit-content;
}

.case-features {
  width: 616px;
  padding: 32px 40px 50px;
  background-color: #faf8f5;
  border-radius: 24px;
}
.case-features__title {
  font-size: 36px;
  font-weight: 500;
}
.case-features__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.case-features__item {
  position: relative;
  padding-left: 36px;
  font-size: 24px;
  line-height: 1.26;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
}
.case-features__item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: url("../img/icon/icon-case-checked.svg") no-repeat center;
  background-size: cover;
}

.case-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-stats__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D9D9D9;
}
.case-stats__item:last-of-type {
  border: none;
}
.case-stats__value {
  font-size: 48px;
  line-height: 1.02;
  font-weight: 500;
}
.case-stats__description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.26;
  color: rgba(0, 0, 0, 0.45);
}

.case-quote {
  position: relative;
  width: 1150px;
  margin: 40px auto 0;
  padding: 60px 136px 0 136px;
}
.case-quote::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 0;
  width: 86px;
  height: 77px;
  background: url("../img/icon/icon-quote-l-r.svg") no-repeat center;
  background-size: cover;
}
.case-quote::after {
  content: "";
  position: absolute;
  top: 60px;
  right: 0;
  width: 86px;
  height: 77px;
  background: url("../img/icon/icon-quote-r-r.svg") no-repeat center;
  background-size: cover;
}
.case-quote__text {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.02;
}
.case-quote__text--fz-48 {
  font-size: 48px;
  text-align: center;
}
.case-quote__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.case-quote__photo {
  width: 100px;
  height: 100px;
}
.case-quote__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-quote__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
  color: #f1361d;
}
.case-quote__position {
  font-size: 16px;
  line-height: 1.26;
  color: rgba(0, 0, 0, 0.45);
}
.case-quote__position span {
  display: block;
}

@media (max-width: 430px) {
  .case__card {
    padding: 20px 15px 35px 15px;
  }
  .case__badge {
    max-width: max-content;
    padding: 3px 10px;
    font-size: 14px;
  }
  .case__title {
    margin: 16px 0 30px;
    font-size: 28px;
  }
  .case__overview {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 20px;
  }
  .case__overview-image {
    width: auto;
    height: auto;
  }
  .case__overview-content {
    flex-direction: column;
    gap: 15px;
  }
  .case__overview-content--column {
    flex-direction: column;
    width: auto;
    margin-top: 20px;
  }
  .case__overview-text {
    width: auto;
    font-size: 16px;
    line-height: 1.12;
    font-weight: 400;
  }
  .case__results {
    display: flex;
    gap: 40px;
    margin-top: 40px;
  }
  .case__cta {
    margin: 30px auto 0;
    width: 100%;
  }
  .case-quote {
    position: relative;
    width: auto;
    margin: 20px auto 0;
    padding: 30px 0 0 0;
  }
  .case-quote::before {
    content: "";
    position: absolute;
    top: 30px;
    left: -10px;
    width: 20px;
    height: 13px;
    background-size: contain !important;
  }
  .case-quote::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -10px;
    width: 20px;
    height: 13px;
    background-size: contain !important;
  }
  .case-quote__text {
    padding: 0 10px;
    font-size: 21px;
    line-height: 1.02;
    text-align: center;
  }
  .case-quote__text--fz-48 {
    font-size: 28px;
    text-align: center;
  }
  .case-quote__author {
    gap: 10px;
    margin-top: 15px;
  }
  .case-quote__photo {
    width: 70px;
    height: 70px;
  }
  .case-quote__info {
    width: 100%;
    gap: 5px;
  }
  .case-quote__name {
    font-size: 16px;
  }
  .case-quote__position {
    font-size: 14px;
    line-height: 1.26;
    color: rgba(0, 0, 0, 0.45);
  }
  .case-quote__position span {
    display: block;
  }
}
.departments {
  padding: 60px 0 80px;
  background: #faf8f5;
  overflow: hidden;
}
@media (max-width: 430px) {
  .departments {
    padding: 30px 0 40px;
  }
}
.departments__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}
.departments__title {
  width: 700px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.26;
  color: #000000;
}
.departments__description {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
  color: rgba(0, 0, 0, 0.45);
}
.departments__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  width: 1250px;
  margin: 0 auto;
  justify-content: center;
}
.departments__link {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0 24px 0 64px;
  height: 64px;
  font-size: 24px;
  color: #000000;
  font-weight: 500;
  border-radius: 24px;
  background-color: rgba(133, 96, 60, 0.1);
}
.departments__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
  width: 32px;
  height: 32px;
}
.departments__advantage {
  display: block;
  margin: 60px 0;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
}
.departments__carousel {
  position: relative;
  overflow: hidden;
  margin-top: 140px;
}
.departments__track {
  position: relative;
  height: 450px;
}
.departments__slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 650px;
  height: 393px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform-origin: center bottom;
}
.departments__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.1));
}
.departments__note {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: rgba(0, 0, 0, 0.45);
}
.departments__cta {
  margin: 60px auto 0;
}

/* Крайний слева */
.is-second-prev {
  transform: translateX(-820px) scale(0.55);
  opacity: 0.5;
  z-index: 1;
}

/* Слева */
.is-prev {
  transform: translateX(-540px) scale(0.8);
  opacity: 0.8;
  z-index: 2;
}

/* Центр */
.is-active {
  transform: translateX(-50%) scale(1);
  opacity: 1;
  z-index: 3;
}

/* Справа */
.is-next {
  transform: translateX(-110px) scale(0.8);
  opacity: 0.8;
  z-index: 2;
}

/* Крайний справа */
.is-second-next {
  transform: translateX(170px) scale(0.55);
  opacity: 0.5;
  z-index: 1;
}

@media (max-width: 430px) {
  .departments__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 30px;
  }
  .departments__title {
    width: auto;
    font-size: 36px;
    text-align: left;
    line-height: 1;
  }
  .departments__description {
    font-size: 18px;
    line-height: 1.26;
    color: rgba(0, 0, 0, 0.45);
  }
  .departments__list {
    gap: 8px;
    justify-content: flex-start;
    width: auto;
  }
  .departments__link {
    padding: 0 12px 0 28px;
    height: 44px;
    font-size: 16px;
  }
  .departments__icon {
    position: absolute;
    left: 6px;
    width: 18px;
    height: 18px;
  }
  .departments__advantage {
    display: block;
    margin: 60px 0;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
  }
  .departments__carousel {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
  }
  .departments__track {
    position: relative;
    height: 280px;
  }
  .departments__slide {
    position: absolute;
    top: 0;
    left: 50%;
    width: 365px;
    height: auto;
  }
  .departments__slide img {
    object-fit: contain;
  }
  .departments__note {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    color: rgba(0, 0, 0, 0.45);
  }
  .departments__cta {
    margin: 20px auto 0;
  }
  /* Крайний слева */
  .is-second-prev {
    transform: translateX(-820px) scale(0.55);
    opacity: 0.5;
    z-index: 1;
  }
  /* Слева */
  .is-prev {
    transform: translateX(-540px) scale(0.8);
    opacity: 0.8;
    z-index: 2;
  }
  /* Центр */
  .is-active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
  }
  /* Справа */
  .is-next {
    transform: translateX(-110px) scale(0.8);
    opacity: 0.8;
    z-index: 2;
  }
  /* Крайний справа */
  .is-second-next {
    transform: translateX(170px) scale(0.55);
    opacity: 0.5;
    z-index: 1;
  }
}
.ai-transformation {
  background: #ffffff;
  padding: 60px 0 80px;
}
@media (max-width: 430px) {
  .ai-transformation {
    padding: 30px 0 40px;
  }
}
.ai-transformation__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 60px;
}
.ai-transformation__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
  color: #141414;
}
.ai-transformation__description {
  max-width: 1160px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.26;
  color: rgba(0, 0, 0, 0.45);
}
.ai-transformation__directions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.ai-transformation__direction {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 40px 40px;
  background-color: #faf8f5;
  border-radius: 24px;
}
.ai-transformation__direction-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}
.ai-transformation__direction-description {
  color: rgba(0, 0, 0, 0.45);
  font-weight: 500;
  line-height: 1.26;
}
.ai-transformation__screen {
  margin-top: 60px;
}
.ai-transformation__cta {
  margin: 60px auto 0;
}
@media (max-width: 430px) {
  .ai-transformation .ai-transformation__intro {
    gap: 16px;
    margin-bottom: 30px;
  }
  .ai-transformation .ai-transformation__title {
    font-size: 36px;
  }
  .ai-transformation .ai-transformation__description {
    font-size: 16px;
  }
  .ai-transformation .ai-transformation__directions {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
  .ai-transformation .ai-transformation__direction {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 10px 10px;
  }
  .ai-transformation .ai-transformation__direction-title {
    font-size: 20px;
  }
  .ai-transformation .ai-transformation__direction-description {
    font-size: 16px;
  }
  .ai-transformation .ai-transformation__screen {
    margin-top: 30px;
  }
  .ai-transformation .ai-transformation__cta {
    margin: 30px auto 0;
  }
}

.reviews {
  position: relative;
  padding: 60px 0 80px;
  background: #ffffff;
  background: #faf8f5;
  overflow: hidden;
}
@media (max-width: 430px) {
  .reviews {
    padding: 30px 0 40px;
  }
}
.reviews__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
.reviews__title {
  max-width: 1144px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  color: #000000;
}
.reviews__slider {
  padding: 0 30px;
  overflow: hidden;
  position: relative;
  margin-top: 60px;
}
.reviews__list {
  display: flex;
}
.reviews__item {
  display: flex;
  flex-shrink: 0;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 40px 40px;
  border-radius: 24px;
  background-color: #ffffff;
  overflow: hidden;
  user-select: none;
  cursor: pointer;
}
.review-card__author {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
.review-card__photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.review-card__photo-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86px;
  height: 77px;
  background: url("../img/icon/icon-quote-l.svg") no-repeat center;
  background-size: cover;
}
.review-card__photo-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86px;
  height: 77px;
  background: url("../img/icon/icon-quote-r.svg") no-repeat center;
  background-size: cover;
}
.review-card__person {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.review-card__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.12;
}
.review-card__position {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.26;
  color: rgba(0, 0, 0, 0.45);
}
.review-card__overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.review-card__title, .review-card__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.26;
  color: #000000;
}
.review-card__text {
  color: rgba(0, 0, 0, 0.45);
}

.reviews__slide-prev,
.reviews__slide-next {
  position: absolute;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  cursor: pointer;
  z-index: 99;
  opacity: 0.9;
}
.reviews__slide-prev.swiper-button-disabled,
.reviews__slide-next.swiper-button-disabled {
  opacity: 0;
}

.reviews__slide-prev {
  left: 0;
  right: auto;
  background: url("../img/icon/icon-slide-left.svg") no-repeat center;
  background-size: contain;
}

.reviews__slide-next {
  background: url("../img/icon/icon-slide-right.svg") no-repeat center;
  background-size: contain;
}

@media (max-width: 430px) {
  .reviews__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 60px;
  }
  .reviews__title {
    font-size: 28px;
  }
  .reviews__slider {
    padding: 0;
    margin-top: 30px;
  }
  .review-card {
    gap: 18px;
    padding: 22px 15px 15px;
    border-radius: 24px;
    background-color: #ffffff;
    overflow: hidden;
    user-select: none;
    cursor: pointer;
  }
  .review-card__author {
    gap: 14px;
  }
  .review-card__photo-wrapper::before {
    left: 20px;
    width: 46px;
    height: 37px;
    background-size: cover !important;
  }
  .review-card__photo-wrapper::after {
    right: 20px;
    width: 46px;
    height: 37px;
    background-size: cover !important;
  }
  .review-card__name {
    font-size: 18px;
  }
  .review-card__overview {
    gap: 8px;
  }
  .review-card__title, .review-card__text {
    font-size: 16px;
  }
  .reviews__slide-prev,
  .reviews__slide-next {
    width: 32px;
    height: 32px;
  }
}
.trust {
  position: relative;
  padding: 120px 0 160px 0;
  background: #ffffff;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 180px;
  background: linear-gradient(to left, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 9;
}
.trust::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 180px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 0.95) 100%);
  z-index: 9;
}
.trust__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 60px;
}
.trust__title {
  width: 1144px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.12;
  color: #000000;
}
.trust__companies {
  display: flex;
  width: 100%;
}
.trust__company {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 109px;
  flex-shrink: 0;
}
.trust__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 430px) {
  .trust {
    padding: 60px 0 30px;
  }
  .trust::before {
    top: auto;
    bottom: 0;
    height: 160px;
    width: 80px;
  }
  .trust::after {
    content: "";
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    height: 160px;
    width: 80px;
  }
  .trust__intro {
    margin-bottom: 30px;
  }
  .trust__title {
    width: auto;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.12;
    color: #000000;
  }
  .trust__companies {
    display: flex;
    width: 100%;
  }
  .trust__company {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    flex-shrink: 0;
  }
  .trust__logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
.demo-request {
  position: relative;
  padding: 60px 0 80px;
  color: #ffffff;
  background-color: #FF6854;
  z-index: 0;
}
@media (max-width: 430px) {
  .demo-request {
    padding: 30px 0 40px;
  }
}
.demo-request::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: url("../img/content/bg-elipse-hero.png") no-repeat center top;
  z-index: -1;
}
.demo-request__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 60px;
}
.demo-request__title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.02;
}

.demo-request__form {
  width: 888px;
  margin: 0 auto;
}

.demo-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.demo-form__label {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
}

.demo-form__input {
  height: 54px;
  margin-top: 5px;
  padding-left: 16px;
  font-size: 18px;
  color: #ffffff;
  background-color: rgba(248, 244, 240, 0.2);
  border: none;
  border-radius: 10px;
  transition: 0.2s;
  outline: none;
}
.demo-form__input:focus {
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.demo-form__input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.demo-form__button {
  width: 100%;
  grid-column: 1/4;
  height: 50px;
  font-size: 20px;
  border-radius: 10px;
  font-weight: 500;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
}
.demo-form__button:disabled {
  background-color: #454341;
  color: #ffffff;
}
.demo-form__button:disabled:hover {
  cursor: no-drop;
}

.permission {
  position: relative;
  grid-column: 1/4;
  padding-left: 34px;
  margin: 0 auto;
  text-align: center;
  font-size: 12px;
  line-height: 1.4;
  user-select: none;
}

.permission__label {
  cursor: pointer;
}

.permission__rules {
  display: inline;
  color: white;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.permission__checkmark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  min-width: 24px;
  min-height: 24px;
  margin-right: 15px;
  background-color: rgba(248, 244, 240, 0.2);
  border: 1px solid #ffffff;
  border-radius: 8px;
}
.permission__checkmark::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: none;
}

input[type=checkbox]:checked + .permission__checkmark:before {
  display: block;
  background: url("../img/icon/icon-checked.svg") no-repeat center;
  background-size: 50%;
}

.crmresult {
  width: auto;
  margin: 20px auto 0;
  font-size: 22px;
  text-align: center;
  display: none;
}

.demo-form__cta {
  grid-column: 1/4;
  margin-top: 20px;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}
.demo-form__cta a {
  color: #ffffff;
}

@media (max-width: 430px) {
  .demo-request__intro {
    margin-bottom: 24px;
  }
  .demo-request__title {
    width: auto;
    font-size: 20px;
    line-height: 1.26;
  }
  .demo-request__description {
    width: auto;
    font-size: 16px;
  }
  .demo-request__form {
    width: auto;
  }
  .demo-form {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .demo-form__input {
    height: 48px;
    font-size: 16px;
  }
  .demo-form__button {
    width: 100%;
    grid-column: 1/1;
    height: 50px;
  }
  .permission {
    grid-column: 1/1;
    text-align: left;
    font-size: 12px;
  }
  .demo-form__cta {
    grid-column: 1/1;
  }
}
.footer {
  color: #ffffff;
  background-color: #000000;
}

.footer__wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 50px 0;
  line-height: 16px;
}

.footer__copyright {
  width: 100%;
  margin: 0;
  margin-top: 30px;
  font-size: 13px;
}

.footer__copyright-link {
  display: flex;
  flex-direction: column;
  display: inline;
  color: #ffffff;
  text-decoration: underline;
}

.footer__policy {
  display: flex;
  gap: 40px;
}

.footer__policy-link {
  display: block;
  font-size: 13px;
  text-decoration: underline;
  color: #ffffff;
}

.footer__callback {
  margin: 0;
  margin-left: 185px;
  font-size: 13px;
}

.footer__phone {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: #ffffff;
}

.footer__logo-link {
  position: absolute;
  bottom: 50px;
  right: 0;
}

.footer__logo {
  width: 135px;
}

@media (max-width: 430px) {
  .footer__wrapper {
    flex-direction: column;
  }
  .footer__policy {
    gap: 10px;
    flex-direction: column;
  }
  .footer__copyright {
    width: auto;
    margin: 10px 0;
  }
  .footer__logo-link {
    position: static;
    margin-left: 0;
    margin-top: 30px;
  }
  .footer__logo {
    width: 110px;
  }
}
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 0;
  right: 0;
  width: 100%;
  height: 126px;
  z-index: 99;
  animation: showbanner 0.3s 1s forwards;
  display: none;
}

@keyframes showbanner {
  0% {
    bottom: -150px;
  }
  100% {
    bottom: 10px;
  }
}
.cookie-banner__content {
  display: flex;
  align-items: center;
  gap: 50px;
  width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.85);
  border-radius: 23px;
}

.cookie-banner__text {
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}

.cookie-banner__permission {
  display: inline-block;
  color: #ffffff;
  text-underline-offset: 4px;
  text-decoration: underline;
}

.cookie-banner__button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 auto;
  width: 303px;
  height: 60px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

@media (max-width: 991px) {
  .cookie-banner {
    width: 98%;
    height: auto;
    margin: 0 auto;
  }
  .cookie-banner__content {
    flex-direction: column;
    width: auto;
    height: 100%;
    gap: 10px;
    margin: 0 auto;
    padding: 15px 10px;
    border-radius: 10px;
  }
  .cookie-banner__text {
    margin: 0;
    font-size: 13px;
    line-height: 15px;
  }
  .cookie-banner__button {
    width: 220px;
    height: 40px;
  }
}