@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Bold.ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-ExtraBold.ttf');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: 'Inter', sans-serif;
  --header-height: 80px;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-light-grey: #f8f8f8;
  --color-grey: #79797a;
  --color-grey-light: #b7b6b6;
  --color-grey-transparent: #0000001a;
  --color-beige: #f6f6f6;
  --color-light-blue: #e6effe;
  --color-violet: #761bdd;
  --color-violet-dark: #303093;
  --color-green: rgba(74, 164, 56, 0.8);
  --color-black-hover: #333333;
  --color-yellow: #def009;
  --color-transparent: transparent;
  --color-blue: #1579e4;
  --color-error: #df2632;
  --bg-gradient-violet: linear-gradient(90deg, #3d53f5 0%, #7721d4 100%);
  --bg-gradient-black: linear-gradient(
    263.83deg,
    #000000 36.56%,
    rgba(0, 0, 0, 0) 231.98%
  );
}

html {
  scrollbar-gutter: stable;
}

html:has(body.form-open-blur),
html:has(body.card-modal-open),
html:has(body.menu-open) {
  margin-right: 0 !important;
  overflow: hidden;
}

.font-inter {
  font-family: var(--font-family);
  overflow-x: hidden;
}

body.form-open-blur,
body.card-modal-open,
body.menu-open {
  overflow: hidden;
}

body {
  font-family: var(--font-family);
  overflow-x: hidden !important;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background-color: transparent;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.admin-bar header {
  top: 32px;
}

header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

main {
  padding-top: var(--header-height);
}

.admin-bar main {
  padding-top: calc(32px + var(--header-height));
}

/* Site container: BS4 max-width (BS5 xxl is 1320px). */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container,
.container-fluid {
  padding-right: 16px;
  padding-left: 16px;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--color-black);
  cursor: pointer;
  text-decoration: none;
}

.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

.color-grey {
  color: var(--color-grey);
}

.color-white {
  color: var(--color-white);
}

.color-grey-light {
  color: var(--color-grey-light);
}

.color-violet {
  color: var(--color-violet-dark);
}

.color--bg-violet {
  color: var(--color-transparent);
  background-clip: text;
  background-image: var(--bg-gradient-violet);
}

.btn {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 18px 40px;
  border-radius: 16px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  transition: 0.3s;
}

.btn--small {
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.btn--black,
.btn--black:disabled {
  background: var(--bg-gradient-black);
  color: var(--color-white);
}

.btn--black:hover:not(:disabled) {
  opacity: 0.8;
  color: var(--color-white);
}

.btn--black:hover:disabled {
  color: var(--color-white);
}

.btn--yellow {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn--yellow:hover:not(:disabled) {
  background: yellow;
  color: var(--color-black);
}

.btn--yellow:disabled {
  opacity: 1;
  background-color: var(--color-grey-light);
}

.btn--green {
  background-color: #4ba438;
  color: white;
}

.btn--green:hover {
  color: white;
}

.btn--green:hover:not(:disabled) {
  color: white;
}

.btn--green:disabled {
  opacity: 1;
  background-color: #7abb90;
}

.btn--white,
.btn--white:hover {
  background: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-black);
}

.btn--white:hover {
  opacity: 0.8;
}

.link {
  width: fit-content;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.link--l {
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
}

.link--violet {
  color: var(--color-transparent);
  background-clip: text;
  background-image: var(--bg-gradient-violet);
}

.link--blue {
  color: var(--color-blue);
}

.link--blue:hover {
  color: var(--color-violet-dark);
}

.link--violet:hover {
  color: var(--color-violet);
}

.link--grey {
  color: var(--color-grey-light);
}

.link--grey:hover {
  color: var(--color-white);
}

.link--black {
  color: var(--color-black);
}

.link--black:hover {
  color: var(--color-black-hover);
}

.link--underline {
  text-decoration: underline;
}

.link--underline:hover {
  text-decoration: underline;
}

.bg-beige {
  background-color: var(--color-beige);
}

.bg-light-blue {
  background-color: var(--color-light-blue);
}

.rounded-s {
  border-radius: 12px;
}

.rounded-m {
  border-radius: 16px;
}

.title {
  margin: 0;
  padding: 0;
}

.title--link,
.title--link a {
  color: var(--color-black);
  transition: all 0.3s ease-in-out;
}

.title--link:hover,
.title--link a:hover {
  color: var(--color-violet);
}

.title--xl {
  font-size: 80px;
  line-height: 90px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .title--xl {
    font-size: 48px;
    line-height: 58px;
  }
}

@media screen and (max-width: 767px) {
  .title--xl {
    font-size: 44px;
    line-height: 53px;
  }
}

.title--l {
  font-size: 48px;
  line-height: 50px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .title--l {
    font-size: 44px;
    line-height: 53px;
  }
}

@media screen and (max-width: 767px) {
  .title--l {
    font-size: 32px;
    line-height: 39px;
  }
}

.title--m {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .title--m {
    font-size: 24px;
    line-height: 30px;
  }
}

.title--s {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .title--s {
    font-size: 20px;
    line-height: 24px;
  }
}

.title--xs {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
}

/* delete after deleting old styles */
p.text {
  margin: 0;
  padding: 0;
}

.text--xl {
  font-size: 32px;
  line-height: 46px;
}

@media screen and (max-width: 991px) {
  .text--xl {
    font-size: 22px;
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .text--xl {
    font-size: 20px;
    line-height: 28px;
  }
}

.text--l {
  font-size: 24px;
  line-height: 32px;
}

@media screen and (max-width: 991px) {
  .text--l {
    line-height: 30px;
  }
}

@media screen and (max-width: 767px) {
  .text--l {
    font-size: 20px;
    line-height: 26px;
  }
}

.text--m {
  font-size: 20px;
  line-height: 27px;
}

@media screen and (max-width: 991px) {
  .text--m {
    font-size: 18px;
    line-height: 26px;
  }
}

.text--s {
  font-size: 18px;
  line-height: 22px;
}

.text--xs {
  font-size: 16px;
  line-height: 24px;
}

.text--xxs {
  font-size: 14px;
  line-height: 20px;
}

.text--medium {
  font-weight: 500;
}

.text--semibold {
  font-weight: 600;
}

.wrap {
}

.wrap--l {
  padding: 120px 0;
}

.wrap--video {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .wrap--l {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .wrap--l {
    padding: 80px 0;
  }
}

.wrap--popup {
  padding: 0;
}

@media screen and (max-width: 575px) {
  .wrap--popup {
    padding-top: 10px;
  }
}

.wrap--m {
  padding: 100px 0;
}

@media screen and (max-width: 991px) {
  .wrap--m {
    padding: 80px 0;
  }
}

.wrap--s {
  padding: 80px 0;
}

.wrap--xs {
  padding: 60px 0;
}

.wrap--clip-x {
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}

.wrap--grid {
  display: grid;
}

.wrap--grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.wrap--grey {
  background-color: #25272b;
}

.wrap--beige {
  background: -webkit-linear-gradient(180deg, #fffcf8 0%, #f8f8f8 100%);
  background: -moz-linear-gradient(180deg, #fffcf8 0%, #f8f8f8 100%);
  background: -o-linear-gradient(180deg, #fffcf8 0%, #f8f8f8 100%);
  background: linear-gradient(180deg, #fffcf8 0%, #f8f8f8 100%);
}

@media screen and (max-width: 991px) {
  .wrap--grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .wrap--grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.wrap--post {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 60px;
}

@media screen and (max-width: 1200px) {
  .wrap--post {
    gap: 30px;
  }
}

@media screen and (max-width: 992px) {
  .wrap--post {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.text-block h2 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: var(--color-black);
  /* delete after deleting old styles */
  background: none;
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}

.gap-0 {
  gap: 0;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.gap-32 {
  gap: 32px;
}
.gap-40 {
  gap: 40px;
}

.max-width-920 {
  max-width: 920px;
}

.max-width-800 {
  max-width: 800px;
}

.max-width-600 {
  max-width: 600px;
}

.page-image {
  display: block;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .page-image {
    margin-top: 55px;
  }
}

.page-image-mob {
  display: none;
  position: absolute;
  right: 0;
}

.image-wrap {
  display: none;
  height: 570px;
}

@media screen and (max-width: 450px) {
  .page-image {
    display: none;
  }
  .page-image-mob {
    display: block;
  }
  .image-wrap {
    display: block;
  }
}

.box {
  border-radius: 16px;
}

.box--specialty img {
  /* remove after delete style.css */
  max-width: 80px !important;
}

.box--l {
  padding: 48px;
}

.box--m {
  padding: 32px;
}

@media screen and (max-width: 991px) {
  .box--l {
    padding: 36px;
  }

  .box--m {
    padding: 24px;
  }
}

@media screen and (max-width: 767px) {
  .box--l {
    padding: 24px;
  }
  .box--m {
    padding: 16px;
  }
}

.box--s {
  padding: 24px;
}

@media screen and (max-width: 991px) {
  .box--s {
    padding: 16px;
  }
}

.box--cards img {
  border-radius: 16px;
  width: 100%;
  height: 378px;
  object-fit: cover;
}

.box--solid-grey {
  border: 1px solid var(--color-grey-transparent);
}

.box--grey {
  break-inside: avoid;
  color: white;
  border: 1px solid #ffffff1a;
}

.label {
  width: fit-content;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.label--violet,
.label--violet a {
  background-color: var(--color-light-blue);
  color: var(--color-violet-dark);
}

.label--violet a:hover {
  color: var(--color-violet);
}

.review {
  /* delete after changing all reviews in html */
  display: block !important;
  text-decoration: none !important;
}

.rewiew__content {
  display: flex;
  flex-direction: column;
  align-items: space-between;
}

.rewiew__text {
  height: 94px;
  overflow: hidden;
}

/* delete after changing all reviews in html */
.review img.logo {
  display: inline-block;
  float: left;
}

/* delete after changing all reviews in html */
.review img.stars {
  height: 24px;
  float: right;
  padding: 5px 0;
}

/* delete after changing all reviews in html */
.review__wrap {
  display: flex;
  flex-direction: column;
  align-items: space-between;
}

/* ddelete after changing all reviews in html */
.reviews__images {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* delete after changing all reviews in html */
.review p {
  clear: both;
  margin-top: 16px;
  font-weight: 400;
  font-size: 18px;
  color: #173300;
  line-height: 24px;
  text-align: left;
  height: 94px;
  overflow: hidden;
}

/* ddelete after changing all reviews in html */
.review p.name {
  font-style: normal;
  font-weight: 500;
  height: auto;
  font-size: 16px;
  margin-top: 48px;
  margin-bottom: 2px;
  line-height: 22px;
}

/* delete after changing all reviews in html */
.review p.mast {
  font-weight: 100;
  font-size: 16px;
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  line-height: 22px;

  color: #5b5b5b;
}

/* delete after changing all reviews in html */
.reviews-section {
  margin-bottom: 60px;
}

.reviews .slick-list {
  overflow: hidden;
}

.reviews .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: auto;
  height: 12px;
  padding: 4px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.reviews .slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  transition: 0.3s all;
  left: 0;
  width: 12px;
  height: 12px;
  content: '';
  text-align: center;
  opacity: 1;
  background: #d1d6cc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 12px;
}
.reviews .slick-dots li.slick-active button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 12px;
  content: '';
  text-align: center;
  opacity: 1;
  background: #8b9980;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 12px;
}
.reviews .slick-dots li.slick-active button {
  width: 18px;
}
.reviews .slick-dots li button {
  width: 12px;
}
.reviews .slick-dots li {
  position: relative;
  display: inline-block;
  width: auto;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}

.reviews .slick-prev {
  left: initial;
  right: 56px;
  top: -36px;
  background: #f8f8f8;
  background-image: url(/img/prev-shape-light.svg);
  background-repeat: no-repeat;
  background-position: center center;
}

.reviews .slick-next {
  left: initial;
  right: 0px;
  top: -36px;
  background: #f8f8f8;
  background-image: url(/img/next-shape-light.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.reviews .slick-prev:before {
  content: '';
}
.reviews .slick-next:before {
  content: '';
}
.reviews .slick-next:hover,
.reviews .slick-next:focus {
  background: #f8f8f8;
  background-image: url(/img/next-shape.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.reviews .slick-prev:hover,
.reviews .slick-prev:focus {
  background: #f8f8f8;
  background-image: url(/img/prev-shape.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.reviews .slick-prev,
.reviews .slick-next {
  width: 40px;
  height: 40px;
  border-radius: 33px;
}

.reviews .slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
  padding: 32px 24px;
  width: 389px;
}
.reviews .slick-center.slick-current {
  margin: 0 16px;
}

.reviews.slick-initialized .slick-slide {
  width: 389px;
  border-radius: 24px;
}
.reviews .slick-dots {
  position: absolute;
  bottom: -34px;
}
@media (max-width: 1280px) {
  .reviews.slick-initialized .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    padding: 32px 24px;
    width: calc(100vw - 32px);
    margin: 0 0px;
  }
  .revs .sect-summary {
    margin-bottom: 40px;
  }
}

.reviews.slick-initialized .slick-slide {
  margin: 0 8px;
}

@media screen and (max-width: 767px) {
  .reviews.slick-initialized .review.slick-slide {
    padding: 24px;
  }
}

.reviews.slick-initialized .slick-track {
  padding: 14px 0px 40px;
}

.reviews.slick-initialized .slick-slide {
  margin: 0 16px;
}

.circle-image {
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid #e3e3e3;
  background-color: white;
}

.benefit {
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}

.benefit__info {
  max-width: 600px;
}

.benefit__btns {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  justify-content: left;
}

@media screen and (max-width: 1440px) {
  .benefit {
    flex-direction: row;
  }
}

@media screen and (max-width: 991px) {
  .benefit {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .benefit {
    justify-items: center;
  }

  .benefit__info {
    text-align: center;
  }

  .benefit__btns {
    flex-direction: column;
    align-items: center;
  }
}

.ellipse {
  position: absolute;
  z-index: -1;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%) scale(1.3);
}
.ellipse_analytics {
  bottom: 0px;
}

.ellipse--why {
  bottom: -280px;
}

.ellipse--faq {
  z-index: 0;
  top: 50px;
  left: 50%;
  transform: translateX(-50%) scale(1.3);
  opacity: 0.8 !important;
}

@media screen and (max-width: 991px) {
  .ellipse--why {
    bottom: -80px;
  }
}

@media screen and (max-width: 767px) {
  .ellipse {
    bottom: 0px;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 450px) {
  .ellipse {
    display: none;
  }
}

.top-image {
  display: block;
  margin-top: 40px;
}

@media screen and (max-width: 1200px) {
  .top-image {
    margin-top: 55px;
  }
}

a svg.icon-grey {
  color: #cdcdcd;
  transition: all 0.3s ease-in-out;
}

a svg.icon-grey:hover {
  color: white;
}

.menu-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style-type: none;
}

.menu-list--grey li a {
  color: var(--color-grey);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.menu-list--grey li a:hover {
  color: var(--color-white);
}

.send__field {
  position: relative;
}

.send__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.send__intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
  min-height: 100%;
}

.send__intro .send__contacts {
  margin-top: auto;
}

.send__contact {
  display: block;
  font-size: 18px;
  line-height: 22px;
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.3s;
}

.send__contact:hover {
  color: var(--color-grey);
}

.send__input {
  width: 100%;
  padding: 21px 14px 5px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 120%;
  transition: 0.3s;
  border-radius: 8px;
  height: 48px;
}

.send__textarea {
  width: 100%;
  padding: 21px 14px;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 120%;
  transition-duration: 0.35s;
  padding-bottom: 5px;
  border-radius: 8px;
  height: 100px;
}

.send--grey .send__input,
.send--grey .send__textarea {
  background-color: var(--color-white);
  color: var(--color-black);
  border: 1px solid var(--color-grey-light);
}

.send--black-white .send__input {
  background: #262626;
  color: #ffffffe5;
}

@media screen and (max-width: 648px) {
  .send--black-white .send__input {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-grey-light);
  }
}

.send--transparent .send__input,
.send--transparent .send__textarea {
  background: rgba(235, 235, 235, 0.2);
  border: 1px solid rgba(221, 221, 221, 0.2);
  color: var(--color-grey-light);
}

.send__input.form__error,
.send__textarea.form__error {
  border-color: var(--color-error);
}

.send--grey .send__input.form__error,
.send--grey .send__textarea.form__error {
  border-color: var(--color-error);
}

.send--black-white .send__input.form__error,
.send--black-white .send__textarea.form__error {
  border: 1px solid var(--color-error);
}

@media screen and (max-width: 648px) {
  .send--black-white .send__input.form__error,
  .send--black-white .send__textarea.form__error {
    border-color: var(--color-error);
  }
}

.send--transparent .send__input.form__error,
.send--transparent .send__textarea.form__error {
  border-color: var(--color-error);
}

.send__input.form__error + .send__label > .send__span,
.send__textarea.form__error + .send__label .send__span {
  color: var(--color-error);
}

.lead-form__submit {
  position: relative;
  display: block;
  width: 100%;
}

.lead-form__submit-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: default;
  display: none;
}

.lead-form__submit:has(button:disabled) .lead-form__submit-overlay {
  display: block;
}

.lead-form__submit button:disabled {
  cursor: default;
}

.send__label {
  position: absolute;
  pointer-events: none;
  left: 14px;
  right: 15px;
  top: 0;
  white-space: nowrap;
  overflow: hidden;
  line-height: 46px;
  transition: 0.3s;
}

.send__span {
  display: inline-block;
  margin: 0 0 2px;
  font-weight: 100;
  font-size: 16px;
  line-height: 152%;
  transition: 0.3s;
}

.send--transparent .send__span {
  color: rgba(242, 244, 247, 1);
}

.send--black-white .send__span {
  color: var(--color-grey);
}

.send--grey .send__span {
  color: var(--color-grey);
}

.send__input:focus + .send__label,
.send__input.filled + .send__label,
.send__input.valid + .send__label {
  font-size: 10px;
}

.send__input:focus + .send__label > .send__span,
.send__input.filled + .send__label > .send__span,
.send__input.valid + .send__label > .send__span {
  font-size: 12px;
}

.send__textarea:focus + .send__label .send__span,
.send__textarea.filled + .send__label .send__span,
.send__textarea.valid + .send__label .send__span {
  transform: translateY(-12px);
  font-size: 12px;
}

.send__input:hover + .send__label .send__span,
.send__input:focus + .send__label .send__span,
.send__input.filled + .send__label .send__span,
.send__input.valid + .send__label .send__span {
  transform: translateY(-12px);
  font-size: 12px;
}

.send__textarea:hover + .send__label .send__span,
.send__textarea:focus + .send__label .send__span,
.send__textarea.filled + .send__label .send__span,
.send__textarea.valid + .send__label .send__span {
  transform: translateY(-12px);
  font-size: 12px;
}

.send__input:-webkit-autofill,
.send__textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s;
}

.send--black-white .send__input:-webkit-autofill,
.send--black-white .send__textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px #262626 inset !important;
  -webkit-text-fill-color: #ffffffe5 !important;
  transition: background-color 5000s ease-in-out 0s;
}

@media screen and (max-width: 648px) {
  .send--black-white .send__input:-webkit-autofill,
  .send--black-white .send__textarea:-webkit-autofill {
    box-shadow: 0 0 0 1000px var(--color-white) inset !important;
    -webkit-text-fill-color: var(--color-black) !important;
    transition: background-color 5000s ease-in-out 0s;
  }
}

.send--transparent .send__input:-webkit-autofill,
.send--transparent .send__textarea:-webkit-autofill {
  box-shadow: 0 0 0 1000px rgba(235, 235, 235, 0) inset !important;
  -webkit-text-fill-color: var(--color-grey-light) !important;
  transition: background-color 5000s ease-in-out 0s;
}

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

.send__radio-title {
  font-size: 16px;
  line-height: 152%;
  font-weight: 100;
  color: var(--color-grey);
}

.send--transparent .send__radio-title {
  color: rgba(242, 244, 247, 1);
}

.send--black-white .send__radio-title {
  color: var(--color-grey);
}

.send__radio-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
}

.send__radio {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
}

.send__radio-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.send__radio-mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-grey-light);
  border-radius: 50%;
  background-color: var(--color-white);
  transition:
    border-color 0.3s,
    background-color 0.3s;
  position: relative;
}

.send__radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-black);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.send__radio-input:checked + .send__radio-mark {
  border-color: var(--color-black);
}

.send__radio-input:checked + .send__radio-mark::after {
  transform: translate(-50%, -50%) scale(1);
}

.send__radio-text {
  font-size: 16px;
  line-height: 120%;
  color: var(--color-black);
}

.send--grey .send__radio-mark {
  background-color: var(--color-white);
}

.send--black-white .send__radio-mark {
  background-color: #262626;
  border-color: var(--color-grey);
}

.send--black-white .send__radio-mark::after {
  background-color: var(--color-white);
}

.send--black-white .send__radio-input:checked + .send__radio-mark {
  border-color: var(--color-white);
}

.send--black-white .send__radio-text {
  color: #ffffffe5;
}

.send--transparent .send__radio-mark {
  background: rgba(235, 235, 235, 0.2);
  border-color: rgba(221, 221, 221, 0.2);
}

.send--transparent .send__radio-mark::after {
  background-color: var(--color-white);
}

.send--transparent .send__radio-input:checked + .send__radio-mark {
  border-color: var(--color-white);
}

.send--transparent .send__radio-text {
  color: var(--color-grey-light);
}

.send__radio:hover .send__radio-mark {
  border-color: var(--color-grey);
}

.send__radio-input:focus-visible + .send__radio-mark {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
}

@media screen and (max-width: 575px) {
  .send__radio-list {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 648px) {
  .send--black-white .send__radio-mark {
    background-color: var(--color-white);
    border-color: var(--color-grey-light);
  }

  .send--black-white .send__radio-mark::after {
    background-color: var(--color-black);
  }

  .send--black-white .send__radio-input:checked + .send__radio-mark {
    border-color: var(--color-black);
  }

  .send--black-white .send__radio-text {
    color: var(--color-black);
  }
}

.send-row--success > .col-12:first-child {
  display: none;
}

.send-row--success > .col-12:last-child {
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: 0 !important;
}

.send--success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.send__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.send__success-title {
  margin: 0;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  color: var(--color-black);
}

.send__success-text {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: var(--color-grey);
}

.send__success-text--bold {
  font-weight: 700;
}

.send--black-white .send__success-title {
  color: #ffffffe5;
}

.send--black-white .send__success-text {
  color: var(--color-grey);
}

.send--transparent .send__success-title {
  color: var(--color-white);
}

.send--transparent .send__success-text {
  color: var(--color-grey-light);
}

.menu-wrapper .menu-item-hoverable,
.menu-wrapper svg {
  color: var(--color-black);
  fill: currentColor;
  transition:
    color 0.2s ease,
    fill 0.2s ease;
  cursor: pointer;
}

.menu-wrapper:hover .menu-item-hoverable,
.menu-wrapper:hover svg {
  color: var(--color-grey);
  fill: currentColor;
}

.menu-wrapper .col-auto:hover .menu-item-hoverable,
.menu-wrapper .col-auto:hover svg {
  color: var(--color-black);
  fill: currentColor;
}

.menu-item-hoverable__link {
  transition: 0.3s;
}

.menu-item-hoverable__link:hover .color-grey {
  color: black;
}

.menu-descktop-forwhom {
  padding-left: 255px;
  padding-bottom: 100px;
}

.menu-descktop-about {
  padding-left: 382px;
  padding-bottom: 100px;
}

.dropdown-block {
  display: none;
  opacity: 0;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.admin-bar .dropdown-block {
  top: calc(32px + var(--header-height));
}

.dropdown-block.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.dropdown-block::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.82),
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  pointer-events: none;
  z-index: 998;
}

.dropdown-block > .container {
  position: relative;
  z-index: 1;
}

.dropdown-block .blur {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: none;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.burger-new {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger-new span {
  display: block;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.burger-new.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-new.active span:nth-child(2) {
  opacity: 0;
}

.burger-new.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
.menu-mobile {
  position: fixed;
  top: var(--header-height);
  transform: translateX(-100%);
  width: 100vw;
  height: calc(100vh - var(--header-height));
  background-color: rgba(250, 250, 252, 0.99);
  z-index: 9999;
  transition: all 0.4s;
  overflow-y: auto;
}

.admin-bar .menu-mobile {
  top: calc(32px + var(--header-height));
  height: calc(100vh - 32px - var(--header-height));
}

.menu-mobile.show {
  transform: translateX(0);
}

.menu-mobile__wrap {
  min-height: 70vh;
  margin-bottom: 30px;
}

.menu-mobile__nav {
  position: sticky;
  top: 0;
}

.menu-mobile__second-wrap {
  margin-bottom: 100px;
}

.mobile-submenu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
}

.mobile-menu-title {
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  padding: 12px 0;
}

.mobile-menu-item.active .mobile-submenu {
  display: block;
}

.mobile-menu-arrow {
  transition: transform 0.3s ease;
}

.mobile-menu-item.active .mobile-menu-arrow {
  transform: rotate(180deg);
}

.expandable .item-list {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

@media (min-width: 576px) {
  .expand-toggle {
    display: none;
  }
}

.expand-link,
.expand-link:hover,
.expand-link:active {
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(90deg, #3d53f5 0%, #7721d4 100%);
}

@media screen and (max-width: 400px) {
  .main-logo {
    /* delete after delete style.css */
    max-width: 80px !important;
  }
  .btn--small {
    padding: 8px;
    border-radius: 12px;
  }
}

.menu-mobile__form {
  background-color: #000000;
  padding: 32px;
  border-radius: 24px;
  color: white;
}

.menu-mobile__form-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: white;
}

.menu-mobile__form-title p {
  margin-bottom: 0;
}

.menu-mobile__form-title span {
  color: #ffffff99;
}

@media screen and (max-width: 648px) {
  .menu-mobile__form {
    background-color: #fafafc;
    padding: 0;
  }

  .menu-mobile__form-title {
    color: #000000;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
  }

  .menu-mobile__form-title span {
    color: #00000080;
  }
}

.page-title {
  max-width: 920px;
  margin: 0 auto 32px;
  font-weight: 700;
  font-size: 80px;
  line-height: 90px;
  font-family: var(--font-family);
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .page-title {
    max-width: 600px;
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 112.2%;
    text-align: center;
  }
}

@media screen and (max-width: 600px) {
  .page-title {
    font-size: 40px;
    line-height: 116%;
    text-align: center;
  }
}

.page-title_black {
  color: var(--color-black);
}

.text-middle {
  max-width: 790px;
}

.text-gray {
  color: var(--color-grey);
  font-size: 32px;
  font-weight: 400;
  line-height: 35.92px;
}

.text-gray_small {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
}

@media screen and (max-width: 1200px) {
  .text-gray {
    font-size: 22px;
    line-height: 112.2%;
  }
}

.accordion-item {
  margin-bottom: 20px;
  border-radius: 16px;
}

.accordion-item .accordion-title {
  cursor: pointer;
  padding: 22px;
  transition: transform 0.4s ease-in-out;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.accordion-item .accordion-title.active-title {
  padding-top: 22px;
  padding-bottom: 22px;
}

.accordion-item .accordion-title div {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  text-align: left;
}

.accordion-item .accordion-content {
  display: none;
  padding: 0 24px 16px;
  padding-right: 11%;
  border-radius: 0 0 16px 16px;
  color: #5b5b5b;
  text-align: left;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
}

.accordion-item .accordion-content.active {
  display: block;
}

.accordion-item .accordion-content p {
  margin: 0;
  font-size: 16px;
}

.accordions img.reverse {
  transform: rotate(180deg);
}

.accordions .active-item {
  background: #f5f5f5;
  border-radius: 16px;
}

.accordion-item:hover {
  background: #f5f5f5;
}

.accordion-title img {
  padding-left: 16px;
}

.accordion-title img.reverse {
  padding-right: 16px;
  padding-left: 0;
}

.accordion-black {
  position: relative;
  z-index: 10;
}

.accordion-black .accordion-item {
  background-color: rgba(235, 235, 235, 0.1);
  border: 1px solid rgba(235, 235, 235, 0.1);
}

.accordion-black .accordion-item .accordion-title div {
  color: white;
  font-weight: 500;
}

.accordion-black .accordion-item {
  margin-bottom: 0;
  border-radius: 0;
}

.accordion-black .accordion-item:first-child {
  border-radius: 16px 16px 0 0;
}

.accordion-black .accordion-item:last-child {
  border-radius: 0 0 16px 16px;
}

.accordion-black .accordion-content {
  padding: 24px;
  background-color: rgba(248, 248, 248, 0.05);
  border-radius: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
}

.accordion-black .accordion-item:hover,
.accordion-black .accordions .active-item {
  background-color: rgba(235, 235, 235, 0.1);
  border-radius: 0;
}

.accordion-black .accordion-item:first-child.active-item,
.accordion-black .accordion-item:first-child:hover {
  border-radius: 16px 16px 0 0;
}

.accordion-black .accordion-item:last-child.active-item,
.accordion-black .accordion-item:last-child:hover {
  border-radius: 0 0 16px 16px;
}

.post {
  position: relative;
  display: block;
  padding: 56px 0;
  color: var(--color-black);
  text-decoration: none;
}

.post::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #e3e3e3;
}

.post__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.post-info {
  display: flex;
  gap: 8px;
  align-items: center;
}

.post-content {
  font-size: 18px;
  line-height: 28px;
}

.post-content a:not(.btn_black) {
  color: #007bff;
  transition: all 0.3s ease-in-out;
}

.post-content a:hover {
  color: #4aa438;
  cursor: pointer;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  margin: 0;
  color: black;
}

.post-content p {
  margin-bottom: 20px;
}

.post-content ol,
.post-content ul {
  margin: 0;
  padding: 0 10px;
  padding-left: 20px;
}

.post-content li {
  margin: 0;
  padding: 10px 0;
}

.post-content h2 {
  margin: 0;
  padding: 56px 0 16px;
  font-size: 28px;
  font-weight: 600;
}

.post-content h3 {
  margin: 0;
  padding: 46px 0 16px;
  font-size: 26px;
  font-weight: 600;
}

.post-content h4 {
  margin: 0;
  padding: 36px 0 16px;
  font-size: 24px;
  font-weight: 600;
}

.post-content h5 {
  margin: 0;
  padding: 26px 0 16px;
  font-size: 22px;
  font-weight: 600;
}

.post-content h6 {
  margin: 0;
  padding: 16px 0 16px;
  font-size: 20px;
  font-weight: 600;
}

.post-content img {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
}

.post-main-img img {
  width: 100%;
  margin-top: 40px;
  max-height: 595px;
  object-fit: cover;
  border-radius: 12px;
}

@media screen and (max-width: 1200px) {
  .post-main-img img {
    max-height: 538px;
  }
}

@media screen and (max-width: 767px) {
  .post-main-img img {
    max-height: 240px;
  }
}

.post-review {
  color: rgba(111, 111, 111, 1);
  font-size: 18px;
  font-weight: 600;
  line-height: 110%;
}

.post-review a {
  color: rgba(33, 120, 207, 1);
}

.post-review a:hover {
  color: rgba(33, 120, 207, 1);
}

.link-live {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 30px 0 0 0;
  color: #1579e4;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  transition: 0.3s;
}

.link-live svg {
  transition: 0.3s;
  fill: #ffffff00;
}

.post:hover .link-live {
  color: #1169c7;
}

.post:hover .link-live svg {
  fill: #1169c7;
}

.circle-dot {
  width: 3px;
  height: 3px;
  border-radius: 50px;
  display: block;
  position: relative;
}

.circle-dot--grey {
  background-color: var(--color-grey);
}

.link-back {
  width: 75px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
}

.link-back:hover {
  color: var(--color-black);
}

.more-posts {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.more-posts__elem {
  position: relative;
  display: grid;
  grid-template-columns: 244px 1fr;
  grid-template-rows: 175px;
  color: black;
  margin-bottom: 16px;
}

.more-posts__elem:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -21px;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #d9d9d9;
}

.more-posts__elem img {
  width: 100%;
  height: 100% !important;
  border-radius: 12px 0 0 12px;
  object-fit: cover;
}

.more-posts__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 32px;
  border-radius: 0 12px 12px 0;
  background-color: #f8f8f8;
}

@media screen and (max-width: 768px) {
  .more-posts__elem {
    grid-template-columns: 1fr;
    grid-template-rows: 220px auto;
  }

  .more-posts__elem img {
    width: 100%;
    height: 100% !important;
    border-radius: 12px 12px 0 0;
    object-fit: cover;
  }

  .more-posts__info {
    padding: 16px;
    border-radius: 0 0 12px 12px;
  }
}

.grade {
  padding: 4px;
  width: fit-content;
  display: flex;
  background-color: #0000000d;
  border-radius: 10px;
}

.grade__num {
  padding: 7px 8px;
  border-radius: 10px;
  background-color: #0f0f10cc;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700px;
  line-height: 18.2px;
}

.grade__text {
  color: #000000b2;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  white-space: nowrap;
  overflow: hidden;
  width: 0px;
  animation-name: open-gradeText;
  animation-duration: 1.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}

.grade__text .test {
  white-space: nowrap;
}

@keyframes open-gradeText {
  from {
    width: 0;
  }

  to {
    width: 180px;
    padding-left: 8px;
  }
}

.background-circle {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 700px;
}

@media screen and (max-width: 767px) {
  .background-circle {
    display: none;
  }
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1800px;
  height: 1800px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: pulse 200s infinite;
  animation-timing-function: linear;
}

.circle:nth-child(1) {
  animation-delay: -200s;
}

.circle:nth-child(2) {
  animation-delay: -190s;
}

.circle:nth-child(3) {
  animation-delay: -180s;
}

.circle:nth-child(4) {
  animation-delay: -170s;
}

.circle:nth-child(5) {
  animation-delay: -160s;
}

.circle:nth-child(6) {
  animation-delay: -150s;
}

.circle:nth-child(7) {
  animation-delay: -140s;
}

.circle:nth-child(8) {
  animation-delay: -130s;
}

.circle:nth-child(9) {
  animation-delay: -120s;
}

.circle:nth-child(10) {
  animation-delay: -110s;
}

.circle:nth-child(11) {
  animation-delay: -100s;
}

.circle:nth-child(12) {
  animation-delay: -90s;
}

.circle:nth-child(13) {
  animation-delay: -80s;
}

.circle:nth-child(14) {
  animation-delay: -70s;
}

.circle:nth-child(15) {
  animation-delay: -60s;
}

.circle:nth-child(16) {
  animation-delay: -50s;
}

.circle:nth-child(17) {
  animation-delay: -40s;
}

.circle:nth-child(18) {
  animation-delay: -30s;
}

.circle:nth-child(19) {
  animation-delay: -20s;
}

.circle:nth-child(20) {
  animation-delay: -10s;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  5% {
    opacity: 0.5;
  }
  49% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
}

.animated-boxes {
  column-count: 3;
  column-gap: 20px;
}

.animated-boxes__elem {
  opacity: 0;
  transform: translateY(30px);
}

@media screen and (max-width: 991px) {
  .animated-boxes {
    column-count: 2;
  }
}

@media screen and (max-width: 767px) {
  .animated-boxes {
    column-count: 1;
  }
}

.description {
  position: relative;
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1fr 746px;
  gap: 80px;
}

.description::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #3c3e41;
  bottom: 0px;
}

@media screen and (max-width: 1199px) {
  .description {
    position: relative;
    padding: 56px 0;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 56px;
  }
}

@media screen and (max-width: 992px) {
  .description {
    position: relative;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.container-swiper-logo {
  position: relative;
  width: 110%;
  transform: translateX(-5%);
  margin: 0 auto;
}

.swiper-logo-curtain-left {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 5%;
  width: 150px;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7764355742296919) 68%,
    rgba(0, 212, 255, 0) 100%
  );
}

.swiper-logo-curtain-right {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 4%;
  width: 150px;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    270deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.7764355742296919) 68%,
    rgba(0, 212, 255, 0) 100%
  );
}

@media screen and (max-width: 1920px) {
  .container-swiper-logo {
    width: 110%;
    transform: translateX(-5%);
    margin: 0 auto;
  }
}

@media screen and (max-width: 1023px) {
  .container-swiper-logo {
    width: 114%;
    transform: translateX(-7%);
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .container-swiper-logo {
    width: 100%;
    transform: translateX(0px);
    margin: 0 auto;
  }
  .container-swiper-logo {
    position: relative;
    width: 110%;
    transform: translateX(-5%);
    margin: 0 auto;
  }

  .swiper-logo-curtain-left {
    display: none;
  }

  .swiper-logo-curtain-right {
    display: none;
  }
}

.slider-logo {
  margin-top: 100px;
  margin-bottom: 25px;
  overflow: hidden;
}

.slider-logo .swiper-wrapper {
  padding-left: 20px;
  padding-right: 20px;
}

.slider-logo {
  margin-top: 100px;
  margin-bottom: 25px;
  overflow: hidden;
  position: relative;
}

.slider-logo .swiper-wrapper {
  margin-left: -20px;
  margin-right: -20px;
  transition-timing-function: linear !important;
}

.slider-logo .swiper-slide-active {
  transform: none;
  opacity: 1;
}

.slider-logo .swiper-slide {
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  display: flex;
  justify-content: center;
}

.solution {
  margin: 100px 0 190px;
}

.solution__wrap {
  position: relative;
}

.solution__text {
  max-width: 665px;
  margin: 0 auto 40px;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
}

.solution__text span {
  color: #00000080;
}

.solution__info {
  opacity: 0;
  transform: translateY(30px);
}

.arrow {
  display: flex;
  position: absolute;
  width: fit-content;
  -webkit-box-shadow: 0px 50px 58px -5px rgba(34, 60, 80, 0.19);
  -moz-box-shadow: 0px 50px 58px -5px rgba(34, 60, 80, 0.19);
  box-shadow: 0px 50px 58px -5px rgba(34, 60, 80, 0.19);
}

.arrow__text {
  width: fit-content;
  padding: 12px;
  border-radius: 12px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}

.arrow__right {
  position: absolute;
  top: -25px;
  right: -25px;
}

.arrow__left {
  position: absolute;
  top: -25px;
  left: -25px;
}

.arrow_violet {
  background-color: #8964f1;
}

.arrow_blue {
  background-color: #3a69e1;
}

.arrow_green {
  background: #52b077;
}

.arrow_first {
  top: 110px;
}

.arrow_second {
  top: 115px;
  right: 0;
}

.arrow_third {
  right: 150px;
  bottom: -80px;
}

@media screen and (max-width: 992px) {
  .solution__text {
    max-width: 605px;
    font-size: 44px;
    line-height: 53px;
  }

  .arrow_first {
    top: 38px;
    left: -5vw;
  }

  .arrow_second {
    top: 74px;
    right: -5vw;
  }
}

@media screen and (max-width: 800px) {
  .arrow_first {
    top: 9px;
    left: -2vw;
  }

  .arrow_second {
    top: 40px;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .solution {
    margin: 150px 0 150px;
  }

  .solution__text {
    max-width: 289px;
    font-size: 28px;
    line-height: 42px;
  }

  .arrow__text {
    padding: 6px;
    border-radius: 6px;
    font-size: 9px;
    line-height: 11px;
  }

  .arrow_first {
    top: -29px;
    left: -8px;
    bottom: auto;
  }

  .arrow_second {
    top: -14px;
    right: 0;
  }

  .arrow_third {
    right: 70px;
    bottom: -80px;
  }
}

.grid-double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

@media (max-width: 992px) {
  .grid-three {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-four {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .grid-double {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-three {
    grid-template-columns: repeat(1, 1fr);
  }
  .grid-four {
    grid-template-columns: repeat(1, 1fr);
  }
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video a {
  position: absolute;
  top: 0;
  z-index: 100;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

@media screen and (max-width: 767px) {
  .video iframe {
    border-radius: 7px;
  }
}

.videoplus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 51, 0, 0.4);
}

.videoplus img {
  width: 24px;
  height: auto;
}

.card-read-more {
  cursor: pointer;
}

.card-descr {
  display: none;
}

.card-open {
  width: 600px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -600px;
  padding: 40px 60px 80px;
  background-color: white;
  transition: right 0.5s ease-in-out;
  z-index: 10002;
  overflow-y: auto;
}

.card-open::-webkit-scrollbar {
  width: 6px;
}

.card-open::-webkit-scrollbar-thumb {
  background-color: white;
  border-radius: 3px;
}

.card-open::-webkit-scrollbar-track {
  background: white;
}

.card-open.active {
  right: 0;
}

.background-sepia {
  position: fixed;
  z-index: 10001;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-in-out,
    visibility 0.3s ease-in-out;
}

.background-sepia.active {
  opacity: 1;
  visibility: visible;
}

.card-open__btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.card-open__btn {
  cursor: pointer;
}

.card-open__about {
  margin-top: 40px;
}

.card-open__info {
  display: flex;
  gap: 24px;
}

.card-open__img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  border: 1px solid #e3e3e3;
}

.card-open__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  padding-bottom: 4px;
}

.card-open__subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #79797a;
}

.card-open__text-full {
  margin-top: 32px;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  color: #79797a;
}

@media screen and (max-width: 767px) {
  .card-open__about {
    margin-top: 00px;
  }
  .card-open {
    width: 80%;
    padding: 40px 20px 80px;
  }
  .card-open__info {
    flex-direction: column;
  }

  .card-open__title {
    font-size: 20px;
  }
}

@media screen and (max-width: 375px) {
  .card-open {
    width: 90%;
    padding: 20px 20px 40px;
  }
}

.cpra-banner {
  position: fixed;
  left: 50%;
  bottom: 41px;
  width: 70%;
  transform: translateX(-50%);
  z-index: 1001;
  background: var(--color-white);
  border: 1px solid var(--color-grey-transparent);
  border-radius: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

@media screen and (max-width: 991px) {
  .cpra-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateX(0);
    border-radius: 16px 16px 0 0;
    border-bottom: 0;
  }
}

.cpra-banner[hidden] {
  display: none !important;
}

body.cpra-banner-open {
  padding-bottom: 0;
}

.cpra-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
}

.cpra-banner__content {
  flex: 1;
  min-width: 0;
}

.cpra-banner__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-grey);
}

.cpra-banner__toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.cpra-banner__checkbox {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-black);
  cursor: pointer;
}

.cpra-banner__toggle-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--color-black);
}

.cpra-banner__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cpra-banner__continue,
.cpra-banner__settings {
  min-width: 140px;
}

@media screen and (max-width: 991px) {
  .cpra-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
  }

  .cpra-banner__actions {
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .cpra-banner__inner {
    padding: 16px 20px;
  }

  .cpra-banner__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 10px;
  }

  .cpra-banner__continue,
  .cpra-banner__settings {
    width: 100%;
    min-width: 0;
  }
}

.rm-cpra-privacy-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-grey-transparent);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  color: var(--color-black);
  cursor: pointer;
}

.rm-cpra-privacy-button__icon {
  display: block;
  flex-shrink: 0;
}

.rm-cpra-privacy-button[hidden] {
  display: none !important;
}

.rm-cpra-privacy-button:hover,
.rm-cpra-privacy-button:focus-visible {
  border-color: var(--color-black);
  outline: none;
}

body.cpra-banner-open .rm-cpra-privacy-button {
  display: none !important;
}

.rm-cpra-modal[hidden] {
  display: none !important;
}

.rm-cpra-modal {
  position: fixed;
  inset: 0;
  z-index: 1002;
}

.rm-cpra-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.rm-cpra-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100vh - var(--header-height) - 32px);
  margin: calc(var(--header-height) + 16px) auto 16px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.admin-bar .rm-cpra-modal__panel {
  max-height: calc(100vh - 32px - var(--header-height) - 32px);
  margin-top: calc(32px + var(--header-height) + 16px);
}

.rm-cpra-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: var(--color-grey);
  cursor: pointer;
}

.rm-cpra-modal__close:hover,
.rm-cpra-modal__close:focus-visible {
  color: var(--color-black);
  background: transparent;
  outline: none;
}

.rm-cpra-modal__title {
  margin: 0;
  padding: 24px 56px 0 24px;
}

p.text.rm-cpra-modal__intro,
p.text.rm-cpra-modal__policy-link {
  margin: 12px 24px 0;
}

.rm-cpra-modal__tabs {
  display: flex;
  gap: 24px;
  margin: 20px 24px 0;
  border-bottom: 1px solid var(--color-grey-transparent);
}

.rm-cpra-modal__tab {
  display: inline-block;
  padding: 0 0 12px;
  margin-bottom: -1px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: none;
  text-decoration: none;
  cursor: pointer;
}

.rm-cpra-modal__tab--active {
  border-bottom-color: var(--color-black);
}

.rm-cpra-modal__tab:hover,
.rm-cpra-modal__tab:focus-visible {
  text-decoration: none;
  outline: none;
}

.rm-cpra-modal__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  padding: 16px 24px;
}

.rm-cpra-modal__tab-panel[hidden] {
  display: none !important;
}

.rm-cpra-modal__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-grey-transparent);
}

.rm-cpra-modal__item:last-child {
  border-bottom: 0;
}

.rm-cpra-modal__item-title {
  margin: 0 0 8px;
}

.rm-cpra-modal__item-text,
.rm-cpra-modal__item-meta,
.rm-cpra-modal__empty {
  margin: 0 0 8px;
}

.rm-cpra-modal__item-list {
  margin: 0;
  padding-left: 20px;
}

.rm-cpra-modal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--color-grey-transparent);
  background: var(--color-white);
}

.rm-cpra-toggle {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  user-select: none;
}

.rm-cpra-toggle__input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--color-black);
  cursor: pointer;
}

.rm-cpra-modal__save {
  flex-shrink: 0;
  min-width: 140px;
}

body.rm-cpra-modal-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .rm-cpra-privacy-button {
    left: 16px;
    bottom: 16px;
  }

  .rm-cpra-modal__panel {
    width: calc(100vw - 24px);
  }

  .rm-cpra-modal__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .rm-cpra-modal__save {
    width: 100%;
  }
}

/* GDPR consent banner (Phase 3C) — shell aligned with .cpra-banner */
.gdpr-banner {
  position: fixed;
  left: 50%;
  bottom: 41px;
  width: 70%;
  transform: translateX(-50%);
  z-index: 1001;
  background: var(--color-white);
  border: 1px solid var(--color-grey-transparent);
  border-radius: 16px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
}

.gdpr-banner[hidden] {
  display: none !important;
}

body.gdpr-banner-open {
  padding-bottom: 0;
}

.gdpr-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 40px;
}

.gdpr-banner__content {
  flex: 1;
  min-width: 0;
}

.gdpr-banner__title {
  margin: 0 0 8px;
}

.gdpr-banner__body {
  margin: 0;
}

.gdpr-banner__actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  min-width: 292px;
}

.gdpr-banner__primary-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gdpr-banner__accept,
.gdpr-banner__reject {
  flex: 1 1 0;
  min-width: 140px;
}

.gdpr-banner__manage {
  width: 100%;
  min-width: 0;
}

.gdpr-banner__privacy-button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-grey-transparent);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.gdpr-banner__privacy-button[hidden] {
  display: none !important;
}

.gdpr-banner__privacy-button:hover,
.gdpr-banner__privacy-button:focus-visible {
  background: var(--color-grey-light, #f5f5f5);
}

.gdpr-banner__privacy-button-icon {
  display: block;
}

body.gdpr-banner-open .gdpr-banner__privacy-button,
body.gdpr-banner-preferences-open .gdpr-banner__privacy-button {
  display: none !important;
}

.gdpr-banner__preferences[hidden] {
  display: none !important;
}

.gdpr-banner__preferences {
  position: fixed;
  inset: 0;
  z-index: 1002;
}

.gdpr-banner__preferences-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.gdpr-banner__preferences-panel {
  position: absolute;
  left: 50%;
  top: calc(var(--header-height) + 16px);
  transform: translateX(-50%);
  width: min(640px, calc(100% - 32px));
  max-height: calc(100vh - var(--header-height) - 32px);
  overflow: auto;
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px 24px 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.admin-bar .gdpr-banner__preferences-panel {
  top: calc(32px + var(--header-height) + 16px);
  max-height: calc(100vh - 32px - var(--header-height) - 32px);
}

.gdpr-banner__preferences-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-grey);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.gdpr-banner__preferences-close:hover,
.gdpr-banner__preferences-close:focus-visible {
  background: var(--color-grey-light, #f5f5f5);
  color: var(--color-black);
}

.gdpr-banner__preferences-title {
  margin: 0 32px 16px 0;
}

.gdpr-banner__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.gdpr-banner__category {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-grey-transparent);
}

.gdpr-banner__category:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.gdpr-banner__category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}

.gdpr-banner__category-title {
  margin: 0;
}

.gdpr-banner__category-status {
  flex-shrink: 0;
  font-style: italic;
}

.gdpr-banner__category-description {
  margin: 0;
}

.gdpr-banner__toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.gdpr-banner__toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gdpr-banner__toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--color-grey-transparent, #d9d9d9);
  transition: background 0.2s ease;
}

.gdpr-banner__toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  transition: transform 0.2s ease;
}

.gdpr-banner__toggle-input:checked + .gdpr-banner__toggle-slider {
  background: var(--color-black);
}

.gdpr-banner__toggle-input:checked + .gdpr-banner__toggle-slider::before {
  transform: translateX(20px);
}

.gdpr-banner__preferences-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gdpr-banner__save,
.gdpr-banner__accept-all {
  flex: 1 1 0;
  min-width: 0;
}

body.gdpr-banner-preferences-open {
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .gdpr-banner {
    left: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    border-radius: 16px 16px 0 0;
    border-bottom: 0;
  }

  .gdpr-banner__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
  }

  .gdpr-banner__actions {
    min-width: 0;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .gdpr-banner__inner {
    padding: 16px 20px;
  }

  .gdpr-banner__actions {
    min-width: 0;
    width: 100%;
  }

  .gdpr-banner__manage {
    order: 1;
  }

  .gdpr-banner__primary-actions {
    flex-direction: column;
    order: 2;
  }

  .gdpr-banner__accept,
  .gdpr-banner__reject,
  .gdpr-banner__manage {
    width: 100%;
    min-width: 0;
  }

  .gdpr-banner__reject {
    background: var(--color-white);
    color: var(--color-black);
    border: 1px solid var(--color-black);
  }

  .gdpr-banner__reject:hover:not(:disabled) {
    opacity: 0.8;
    color: var(--color-black);
  }

  .gdpr-banner__preferences-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .gdpr-banner__save,
  .gdpr-banner__accept-all {
    width: 100%;
  }

  .gdpr-banner__privacy-button {
    left: 16px;
    bottom: 16px;
  }
}

/* TODO refactor: legacy "mhr-page" layout (EHR_notes/appointment/patient). */

.mhr-page {
  position: relative;
  margin: 0 auto;
  padding-bottom: 58px;
}

.wrap_clip-x {
  overflow-x: clip;
  overflow-y: visible;
}

.original {
  margin: 48px 0;
}

.original iframe {
  border: 1px solid #f2f2f2;
  box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

@media (max-width: 768px) {
  .original iframe {
    height: 220px !important;
  }
}

.blockposa {
  position: relative;
}

.blockposa_margin {
  margin: 120px 0 40px 0;
}

@media (max-width: 992px) {
  .blockposa_margin {
    margin: 80px 0 40px 0;
  }
}

@media (max-width: 768px) {
  .blockposa_margin {
    margin: 60px 0 40px 0;
  }
}

.blockposa a {
  position: absolute;
  z-index: 100;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.blockposa:hover .videoplus {
  background: rgba(23, 51, 0, 0.8);
}

.iframe {
  border: 1px solid #f2f2f2;
  box-shadow: 8px 12px 32px rgba(0, 0, 0, 0.06);
}

.iframe_rounded {
  border-radius: 16px;
}

.info-block {
  padding: 65px 0;
}

.info-block__title {
  margin: 0;
  padding: 0;
  color: black;
  font-size: 48px;
  line-height: 55px;
  font-weight: 700;
}

.info-grid-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media screen and (max-width: 992px) {
  .info-grid-triple {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.info-about {
  padding: 32px 0 0 32px;
  background-color: #f8f8f8;
  border-radius: 12px;
}

.info-about_elem {
  padding: 20px !important;
}

.info-about__title {
  margin: 0;
  padding: 0 32px 0 0;
  color: black;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

.info-about__descr {
  margin: 0;
  padding: 16px 32px 0 0;
  color: #79797a;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.info-about__p {
  margin: 0;
  padding: 12px 0 0 0;
  color: #79797a;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

@media screen and (max-width: 834px) {
  .info-about {
    padding: 16px 0 0 16px;
  }
  .info-about__title {
    padding: 0 16px 0 0;
  }
  .info-about__descr {
    padding: 16px 16px 0 0;
  }
}

@media screen and (max-width: 450px) {
  .info-block__title {
    font-size: 32px;
  }
  .info-about__title {
    font-size: 20px;
  }
}

.wrap_black {
  background-color: black;
  padding: 120px 0;
}

.wrap_middle {
  max-width: 800px;
  padding: 0;
}

.wrap_center {
  margin: 0 auto;
}

.wrap_overflow {
  overflow: hidden;
}

.form_horizontal {
  position: relative;
  z-index: 10;
}

.form__descr {
  max-width: 630px;
  color: #ffffffb2;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}

.form-bg {
  position: absolute;
  top: -50px;
  transform: scale(0.9);
  z-index: -100;
}

.title_white {
  color: white;
}

.title_middle {
  font-size: 44px;
  font-weight: 600;
  line-height: 110%;
}

@media screen and (max-width: 767px) {
  .wrap_black {
    padding: 80px 0;
  }
  .title_middle {
    font-size: 32px;
  }
}

/* TODO refactor: legacy contacts page cards (pages/contacts.php). */

.title_contact {
  font-size: 48px;
  font-weight: 700;
  line-height: 58px;
}

.text_contact {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #79797a;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  padding: 24px;
  border-radius: 16px;
}

.info-card:nth-child(odd) {
  background-color: #f5f5f7;
}

.info-card:nth-child(even) {
  background-color: #fefae4;
}

.info-card_beige {
  background-color: #fefae4 !important;
}

.info-card_partners {
  margin-top: 56px;
}

.info-card__title {
  margin: 0;
  padding: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  color: black;
}

.info-card__descr {
  padding: 0;
  margin: 12px 0;
  font-size: 20px;
  line-height: 27px;
  font-weight: 400;
  color: #79797a;
}

.info-card__contacts {
  margin: 0 0 16px 0;
}

.info-card__dotted {
  position: relative;
  padding: 0 0 0 10px;
  color: #424ff2;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}

.info-card__dotted::before {
  content: '.';
  position: absolute;
  left: 0;
  top: -7px;
  color: #79797a;
}

.info-card__dotted:hover {
  color: #424ff2;
}

.info-card__link {
  color: #424ff2;
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}

.info-card__link:hover {
  color: #424ff2;
}

.info-card__btn {
  display: block;
  width: fit-content;
  background-color: #101010;
  color: #e9e9e9;
  padding: 9px 16px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}

.info-card__btn:hover {
  color: #e9e9e9;
}

@media screen and (max-width: 767px) {
  .title_contact {
    font-size: 32px;
    line-height: 39px;
  }

  .text_contact {
    font-size: 20px;
    line-height: 26px;
  }

  .info-card__title {
    font-size: 20px;
    line-height: 24px;
  }
  .info-card__descr {
    font-size: 16px;
    line-height: 24px;
  }
  .info-card__link {
    font-size: 16px;
    line-height: 22px;
  }
  .info-card__dotted {
    font-size: 16px;
    line-height: 22px;
  }
}

/* TODO refactor: legacy partners page (pages/partners.php). */

.text_grey {
  color: #79797a;
}

.text_partners {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
}

.title_h2 {
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: black;
}

.title_h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: black;
}

.grid {
  display: grid;
}

.grid_double {
  grid-template-columns: repeat(2, 1fr);
}

.grid_triple {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .grid_triple {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid_double {
    grid-template-columns: repeat(1, 1fr);
  }
}

.grid_partners {
  padding-top: 56px;
  gap: 56px;
}

.banner_partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 0 150px;
}

.wrap_partners {
  padding: 90px 0;
}

.wrap_grey {
  background-color: #f5f5f7;
}

@media (max-width: 992px) {
  .grid_triple.grid_partners {
    grid-template-columns: repeat(1, 1fr);
    gap: 69px;
  }

  .grid_partners.grid_first {
    grid-template-columns: repeat(1, 1fr);
    gap: 69px;
  }
}

@media screen and (max-width: 1600px) {
  img.partner-main-img {
    max-width: 400px !important;
  }

  .banner_partners {
    padding: 60px 0 40px;
  }

  .page-title_partners {
    margin: 32px auto 24px;
  }

  .wrap_partners {
    padding: 60px 0;
  }

  .grid_partners {
    gap: 40px;
  }

  .title_h2 {
    font-size: 44px;
    line-height: 53px;
  }

  .title_h3 {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width: 500px) {
  img.partner-main-img {
    max-width: 100% !important;
  }

  .banner_partners {
    padding: 100px 0 140px;
  }

  .page-title_partners {
    margin: 40px auto 24px;
  }

  .title_h2 {
    font-size: 32px;
    line-height: 39px;
  }

  .grid_triple.grid_partners {
    gap: 104px;
  }

  .grid_partners {
    gap: 104px;
  }
}
