:root {
  --font-family: "Circe", sans-serif;
  --content-width: 1860px;
  --container-offset: 30px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --light-color: #fff;
  --violet-color: #3C1E4E;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable value-keyword-case */
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Light.eot");
  src: local("Circe Light"), local("Circe-Light"), url("../fonts/Circe-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe-Light.woff2") format("woff2"), url("../fonts/Circe-Light.woff") format("woff"), url("../fonts/Circe-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-ExtraBold.eot");
  src: local("Circe Extra Bold"), local("Circe-ExtraBold"), url("../fonts/Circe-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe-ExtraBold.woff2") format("woff2"), url("../fonts/Circe-ExtraBold.woff") format("woff"), url("../fonts/Circe-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Regular.eot");
  src: local("Circe"), local("Circe-Regular"), url("../fonts/Circe-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe-Regular.woff2") format("woff2"), url("../fonts/Circe-Regular.woff") format("woff"), url("../fonts/Circe-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("../fonts/Circe-Bold.eot");
  src: local("Circe Bold"), local("Circe-Bold"), url("../fonts/Circe-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Circe-Bold.woff2") format("woff2"), url("../fonts/Circe-Bold.woff") format("woff"), url("../fonts/Circe-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

p, ul, ol {
  margin: 0;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.no-scroll {
  overflow: hidden;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  color: #000;
}
.page__body--home .header__inner {
  border-left: 1px solid #C9C4E7;
  border-right: 1px solid #C9C4E7;
}
@media (max-width: 768px) {
  .page__body--home .header__inner {
    border-right: 0;
    border-left: 0;
  }
}

.page__body.page__body--home header {
  background: transparent;
}
@media (max-width: 768px) {
  .page__body.page__body--home header {
    background: #fff;
  }
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important; /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}
.input-reset::-webkit-search-decoration, .input-reset::-webkit-search-cancel-button, .input-reset::-webkit-search-results-button, .input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.borders {
  border-left: 1px solid #C9C4E7;
  border-right: 1px solid #C9C4E7;
}
@media (max-width: 576px) {
  .borders {
    border-left: 0;
    border-right: 0;
  }
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  width: 100%;
  max-width: var(--container-width);
}
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
    max-width: 100%;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

.main {
  min-height: 80vh;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--violet-color);
  border-bottom: 1px solid rgba(201, 196, 231, 0.5);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header.hide {
  -webkit-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%);
}
.header.fixed {
  position: fixed;
  background: #fff !important;
}
.header.fixed .nav__link {
  color: #6F3189;
}
.header.fixed .nav__item::marker {
  color: #6F3189;
}
@media (max-width: 768px) {
  .header {
    border-bottom: 0;
    background: #fff;
  }
}

.logo--header {
  padding: 14px 27px 15px;
  background: var(--light-color);
}
@media (max-width: 1200px) {
  .logo--header {
    padding: 11px 25px 12px;
  }
  .logo--header img {
    width: 132px;
  }
  .logo--footer img {
    width: 153px;
  }
}
@media (max-width: 768px) {
  .logo--header {
    padding: 8px 0 4px;
    background: #fff;
    position: relative;
    z-index: 1000;
  }
}

.nav--header {
  margin-right: 44px;
}
.nav--footer {
  margin-left: 50px;
}
@media (max-width: 1200px) {
  .nav--footer {
    margin-left: 30px;
  }
  .nav--footer .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    padding-left: 16px;
  }
  .nav--footer .nav__link {
    line-height: normal;
  }
}
@media (max-width: 768px) {
  .nav--footer {
    display: none;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  list-style-type: square;
}
.nav__item {
  color: rgba(255, 255, 255, 0.5);
}
#menu-item-20 {
  display: none;
}
.nav__link {
  position: relative;
  color: #fff;
  font-weight: 400;
}

.header.fixed .nav__link::before {
  background: #6F3189;
}

.nav__link::before {
  content: '';
  display: block;
  position: absolute;
  top: 9px;
  left: -12px;
  width: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.50);
  transition: width .5s cubic-bezier(1, 0, 0, 1);
}

.nav__link.active::before {
  width: 145%;
}
.nav__link:hover::before {
  width: 145%;
}
#menu-item-20 {
  padding: 10px 37px 10px 49px;
  line-height: normal;
  border-radius: 22.5px;
  border: 1px solid #6F3189;
  background: url("../img/phone.png");
  background-repeat: no-repeat;
  background-position: 2px 2px;
}
.nav.nav--footer .nav__item:last-child {
  display: none;
}
@media (max-width: 1366px) {
  .nav--header {
    margin-right: 40px;
  }
}
@media (max-width: 1200px) {
  .nav__list {
    gap: 46px;
  }
}
@media (max-width: 768px) {
  .nav--header {
    margin-right: 0;
    padding: 36px 0 40px;
    position: absolute;
    top: 51px;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(201, 196, 231, 0.5);
    -webkit-transform: translateY(-120%);
    -ms-transform: translateY(-120%);
    transform: translateY(-120%);
    opacity: 0;
    -webkit-transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .nav__link::before {
    background: #6F3189;
  }
  .nav--header.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 25px;
    width: 100%;
    padding-left: 0;
    list-style-type: none;
    position: relative;
  }
  .nav__list::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -33px;
    left: 50%;
    margin-right: -50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 56px;
    height: 5px;
    border-radius: 10px;
    background: #E6E5EB;
  }
  #menu-item-20 {
    display: block;
  }
  .nav__link {
    color: #6F3189;
  }
}

.intro {
  --intro-height: 920px;
  height: var(--intro-height);
  position: relative;
  background: url("../img/intro_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.intro__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.intro__inner {
  height: var(--intro-height);
  width: 100%;
  position: relative;
  z-index: 5;
}
.intro__inner::before {
  content: "";
  display: block;
  width: 133px;
  height: 123px;
  position: absolute;
  top: 136px;
  right: 55px;
  z-index: inherit;
  border-top: 6px solid #fff;
  border-right: 6px solid #fff;
}
.intro__inner::after {
  content: "";
  display: block;
  width: 7px;
  height: 366px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: inherit;
  background: #fff;
}
@media (max-width: 1366px) {
  .intro__inner::before {
    width: 97px;
    height: 90px;
  }
  .intro__inner::after {
    width: 5px;
    height: 260px;
  }
}
@media (max-width: 1200px) {
  .intro__inner::before {
    width: 60px;
    height: 55px;
    border-width: 4px;
  }
  .intro__inner::after {
    width: 3px;
    height: 160px;
  }
}
@media (max-width: 576px) {
  .intro__inner::before {
    width: 29px;
    height: 27px;
    top: 70px;
    border-width: 2px;
    right: 0;
  }
  .intro__inner::after {
    display: none;
  }
}
@media (max-width: 1366px) {
  .intro {
    --intro-height: 654px ;
  }
}
@media (max-width: 768px) {
  .intro {
    --intro-height: 400px ;
  }
}
@media (max-width: 576px) {
  .intro {
    --intro-height: 245px ;
  }
}

.section__wrapper {
  padding: 100px 0 0;
}
.section__wrapper--products {
  padding-top: 148px;
}
.section__wrapper--about, .section__wrapper--contacts {
  padding-top: 140px !important;
}
.section__wrapper--last {
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .section__wrapper {
    padding-top: 60px;
  }
  .section__wrapper--last {
    padding-bottom: 60px;
  }
  .section__wrapper--products {
    padding-top: 98px;
  }
  .section__wrapper--about, .section__wrapper--contacts {
    padding-top: 90px !important;
  }
}
@media (max-width: 576px) {
  .section__wrapper {
    padding-top: 30px;
  }
  .section__wrapper--last {
    padding-bottom: 30px;
  }
  .section__wrapper--products {
    padding-top: 50px;
  }
  .section__wrapper--about, .section__wrapper--contacts {
    padding-top: 80px !important;
  }
}
.section__title {
  padding-left: 34px;
  position: relative;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section__title--line span {
  padding-right: 24px;
  position: relative;
  z-index: 10;
  background: #fff;
}
@media (max-width: 768px) {
  .section__title--line span {
    padding-right: 14px;
  }
}
.section__title--line::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  width: 100vw;
  height: 1px;
  background: #C9C4E7;
}
.section__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  height: 100%;
  background: #6F3189;
}
@media (max-width: 576px) {
  .section__title {
    padding-left: 0;
  }
  .section__title::before {
    left: -20px;
  }
}
.section__text p + p {
  margin-top: 15px;
}

.about .accordion {
  margin-top: 60px;
  width: 45%;
}
.about__inner {
  min-height: 612px;
  padding: 105px 157px 0 105px;
}
.about__inner--page {
  padding-top: 82px;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .about__inner--page .about__item:last-child {
    padding-right: 30px;
  }
  .about__inner--page .about__item ul, .about__inner--page .about__item ol {
    margin-left: 20px;
  }
  .about__inner--page .about__item ul {
    margin-top: 36px;
  }
  .about__inner--page .accordion {
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .about__inner--page .about__item:last-child {
    padding-right: 0;
  }
  .about__inner--page .about__item ul, .about__inner--page .about__item ol {
    margin-left: 0;
  }
  .about__inner--page .about__item ul {
    margin-top: 20px;
  }
  .about__inner--page .about__item ul,
  .about__inner--page .about__item ol {
    padding-left: 20px;
  }
  .about__inner--page .accordion {
    margin-top: 30px;
  }
}
@media (max-width: 1919px) {
  .about__inner {
    min-height: calc(435px + 177 * (100vw - 1366px) / 554);
  }
}
@media (max-width: 1366px) {
  .about__inner {
    min-height: unset;
  }
  .about__inner--page {
    padding-top: 82px;
    padding-bottom: 100px !important;
  }
  .about__inner--page .accordion {
    width: 100%;
  }
}
.about__text {
  margin-bottom: 40px;
}
@media (max-width: 576px) {
  .about__text {
    margin-bottom: 20px;
  }
}
.about__item {
  position: relative;
}
.about__item:first-child {
  margin-left: 137px;
  margin-bottom: 100px;
  width: 46%;
  float: right;
}
.about__item-bg {
  position: absolute;
  top: 7%;
  left: -37%;
  z-index: -1;
}
@media (max-width: 1919px) {
  .about__item-bg {
    top: 15%;
    width: calc(359px + 115 * (100vw - 1366px) / 554);
  }
}
@media (max-width: 768px) {
  .about__item-bg {
    width: 100%;
    left: -59%;
  }
}
@media (max-width: 576px) {
  .about__item-bg {
    display: none;
  }
}
.about__item ul {
  margin-top: 50px;
  list-style-type: disc;
}
.about__item ul li::marker {
  font-size: 8px;
}
.about__item ul + .about__item ul {
  margin-top: 10px;
}
.about__item ul + ol {
  margin-top: 10px;
}
.about__item ul, .about__item ol {
  margin-left: 50px;
}
@media (max-width: 1919px) {
  .about__item:first-child {
    margin-left: 60px;
    margin-bottom: 70px;
  }
}
@media (max-width: 1366px) {
  .about__inner {
    padding: 57px 54px 0 54px;
  }
}
@media (max-width: 1200px) {
  .about__inner {
    padding: 20px 0 0 30px;
  }
  .about__inner--page {
    padding-bottom: 40px !important;
  }
  .about__item:first-child {
    margin-left: 40px;
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .about__inner {
    padding: 20px 0 0 0;
  }
  .about__inner--page {
    padding-bottom: 30px !important;
  }
  .about__item:first-child {
    width: 100%;
    float: unset;
    margin-left: 10px;
    padding-right: 6px;
    margin-bottom: 41px;
  }
}

.btn {
  display: inline-block;
  padding: 10px 30px;
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #6824B8;
  border-radius: 3px;
  border: 1px solid #6824B8;
  background: transparent;
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}
.btn:hover {
  background: #6824B8;
  color: #fff;
}
@media (max-width: 576px) {
  .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about .swiper {
  width: 100%;
  max-height: 448px;
}
.about .swiper img {
  width: 100%;
  height: 100%;
}
.about .swiper-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.about .swiper-cards .swiper-slide {
  -webkit-transition: all;
  transition: all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about .swiper-slide-prev,
.about .swiper-slide-next {
  padding-top: 60px;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
@media (max-width: 1366px) {
  .about .swiper-slide-prev,
  .about .swiper-slide-next {
    padding-top: 30px;
  }
}
.about .swiper-slide.swiper-slide-visible.swiper-slide-active {
  max-height: 448px;
}
.about .swiper-slide-next {
  opacity: 0;
}
.about .swiper-slide-active {
  border: 10px solid #FFF;
  -webkit-box-shadow: 20px 20px 50px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 20px 20px 50px 0px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .about .swiper-slide-active {
    border-width: 6px;
  }
}
.about .swiper-button-prev,
.about .swiper-button-next {
  width: 50px;
  height: 50px;
  background-color: #39225B;
  background-image: url("../img/about/arrow.webp");
  background-position: center center;
  background-size: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0.5;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.about .swiper-button-prev:hover,
.about .swiper-button-next:hover {
  opacity: 1;
}
.about .swiper-button-prev::after,
.about .swiper-button-next::after {
  display: none;
}
@media (max-width: 768px) {
  .about .swiper-button-prev,
  .about .swiper-button-next {
    display: none;
  }
}
.about .swiper-button-prev {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: unset;
  bottom: 0;
  left: 0;
}
.about .swiper-button-next {
  top: unset;
  right: unset;
  left: 50px;
  bottom: 0;
}
.about .swiper-horizontal > .swiper-pagination-bullets,
.about .swiper-pagination-bullets.swiper-pagination-horizontal,
.about .swiper-pagination-custom,
.about .swiper-pagination-fraction {
  width: auto;
  left: 120px;
  top: unset;
  bottom: 15px;
}
@media (max-width: 768px) {
  .about .swiper-horizontal > .swiper-pagination-bullets,
  .about .swiper-pagination-bullets.swiper-pagination-horizontal,
  .about .swiper-pagination-custom,
  .about .swiper-pagination-fraction {
    left: 0;
    bottom: -20px;
  }
}
@media (max-width: 576px) {
  .about .swiper-horizontal > .swiper-pagination-bullets,
  .about .swiper-pagination-bullets.swiper-pagination-horizontal,
  .about .swiper-pagination-custom,
  .about .swiper-pagination-fraction {
    bottom: -16px;
  }
}
.about .swiper-pagination-bullet {
  margin: 0 5px !important;
  width: 6px;
  height: 6px;
  background: #fff;
  opacity: 0.5;
  border-radius: 0;
}
@media (max-width: 768px) {
  .about .swiper-pagination-bullet {
    background: #351A84;
  }
}
.about .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: -65px;
  top: unset;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
}

.swiper-scrollbar-drag {
  border-radius: 10px;
  background: #9B95C5;
}

.products .slider-container {
  position: relative;
}
.products__inner {
  padding-top: 110px;
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
}
.products__inner--home {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}
.products__inner--page {
  padding-top: 0;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.products__inner--page .products__item {
  background-position: calc(100% - 60px) 30px;
}
.products__inner--page .products__img {
  right: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
@media (max-width: 1200px) {
  .products__inner--page {
    padding-top: 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 57px;
  }
  .products__inner--page .products__item {
    padding: 20px 30px;
    background-position: calc(100% - 20px) 47px;
  }
  .products__inner--page .products__img {
    right: 20px;
  }
}
@media (max-width: 768px) {
  .products__inner--page {
    padding-top: 0 !important;
  }
}
@media (max-width: 576px) {
  .products__inner--page {
    grid-gap: 35px;
  }
  .products__inner--page .products__item {
    padding: 20px;
    background-size: 80px;
    background-position: calc(100% - 20px) 20px;
  }
  .products__inner--page .products__img {
    width: 100px;
    height: 120px;
    right: 10px;
  }
  .products__inner--page .products__img img {
    max-width: unset;
  }
}
@media (max-width: 1366px) {
  .products__inner {
    padding-top: 70px;
  }
  .products__inner--home {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 68px 8px;
  }
}
@media (max-width: 1200px) {
  .products__inner {
    padding-top: 40px;
  }
}
@media (max-width: 768px) {
  .products__inner {
    padding-top: 20px;
  }
  .products__inner--home {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    grid-gap: 0;
  }
}
.products__item {
  padding: 30px;
  position: relative;
  height: 260px;
  border: 10px solid #EEEDF6;
  background: url("../img/products/arrow.webp");
  background-repeat: no-repeat;
  background-position: calc(100% - 30px) 30px;
}
@media (max-width: 768px) {
  .products__item {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    grid-gap: 0;
  }
}
@media (max-width: 576px) {
  .products__item {
    padding: 20px;
    height: 160px;
    border-width: 6px;
    background-size: 115px;
    background-position: calc(100% - 29px) 24px;
  }
}
.products__img {
  position: absolute;
  right: 10px;
  top: 100px;
}
@media (max-width: 1366px) {
  .products__img {
    width: 220px;
    height: 204px;
  }
  .products__img img {
    height: 100%;
  }
}
@media (max-width: 576px) {
  .products__img {
    top: 66px;
    width: 146px;
    height: 136px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: end;
  }
}
.products__name {
  color: var(--unnamed, #6F3189);
  font-family: inherit;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media (max-width: 576px) {
  .products__name {
    font-size: 18px;
  }
}
.products__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.products__dots span {
  width: 10px;
  height: 10px;
  background: #F0EFF5;
}
@media (max-width: 576px) {
  .products__dots {
    bottom: 20px;
    left: 19px;
    gap: 12px;
  }
  .products__dots span {
    width: 6px;
    height: 6px;
  }
}
.products .section__wrapper {
  padding-bottom: 188px;
}
.products .swiper {
  width: 100%;
}
.products .swiper-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.products .swiper-slide {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .products .section__wrapper {
    padding-bottom: 128px;
  }
}
@media (max-width: 768px) {
  .products .section__wrapper {
    padding-bottom: 92px;
  }
  .products .section__wrapper {
    overflow: hidden;
  }
}
@media (max-width: 576px) {
  .products--page .section__wrapper {
    padding-bottom: 62px;
  }
}

.product__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 500px 1fr;
  grid-template-rows: 500px 1fr;
  grid-gap: 0 30px;
}
@media (max-width: 1366px) {
  .product__inner {
    -ms-grid-rows: initial;
    grid-template-rows: initial;
  }
}
@media (max-width: 1919px) {
  .product__item:nth-child(1) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    overflow: hidden;
  }
  .product__item:nth-child(1) .product__banner {
    height: 100%;
  }
  .product__item:nth-child(1) .product__title {
    bottom: -28px;
  }
  .product__item:nth-child(1) img {
    width: 100%;
    max-height: 100%;
  }
  .product__item:nth-child(2) {
    padding-top: 40px;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .product__item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .product__item:nth-child(3) .product__content {
    padding-right: 0;
  }
}
@media (max-width: 1366px) {
  .product__item:nth-child(1) .product__title {
    bottom: -24px;
  }
  .product__item:nth-child(2) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .product__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
  .product__item:nth-child(3) .product__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
  .product__item:nth-child(3) .product__range {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .product__item:nth-child(1) .product__title {
    bottom: -18px;
  }
  .product__item:nth-child(1) .product__name {
    font-size: 54px;
  }
  .product__item:nth-child(1) .product__banner::before {
    width: 36px;
    height: 34px;
    border-width: 2px;
  }
  .product__item:nth-child(2) {
    padding-top: 60px;
  }
  .product__item:nth-child(3) .product__range-title {
    font-size: 34px;
    line-height: 44px;
  }
  .product__item:nth-child(3) .product__content {
    padding: 60px 60px 0 45px;
  }
  .product__item:nth-child(3) .product__range ul {
    margin-top: 29px;
  }
  .product__item:nth-child(3) .product__range ul li + li {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .product__item:nth-child(1) .product__banner::before {
    width: 28px;
    height: 26px;
    top: 20px;
    right: 20px;
  }
  .product__item:nth-child(1) .product__title {
    left: 44px;
    bottom: -9px;
  }
  .product__item:nth-child(1) .product__name {
    font-size: 34px;
  }
  .product__item:nth-child(2) {
    padding-top: 30px;
  }
  .product__item:nth-child(2) .product__categories-item {
    background-image: none;
  }
  .product__item:nth-child(2) .product__categories-name {
    font-size: 18px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: normal;
  }
  .product__item:nth-child(2) .product__categories-img {
    width: 65px;
    height: 65px;
  }
  .product__item:nth-child(3) .product__content {
    padding: 13px 20px 0 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .product__item:nth-child(3) .product__range-title {
    font-size: 24px;
    line-height: normal;
  }
  .product__item:nth-child(3) .product__range ul {
    margin-top: 20px;
  }
  .product__item:nth-child(3) .product__range ul li + li {
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .product__item:nth-child(1) {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 180px;
  }
  .product__item:nth-child(1) .product__title {
    left: 20px;
    bottom: -15px;
  }
  .product__item:nth-child(1) img {
    height: 100%;
  }
  .product__item:nth-child(3) {
    padding-top: 180px;
  }
  .product__item:nth-child(3) .product__content {
    padding: 13px 0 0 0;
  }
  .product__item:nth-child(3) .product__range ul li {
    padding-left: 45px;
  }
  .product__item:nth-child(3) .product__range ul li::before {
    width: 30px;
  }
}
.product__more {
  margin-top: 10px;
  display: none;
  color: #6824B8;
  line-height: normal;
  text-decoration: underline;
}
@media (max-width: 576px) {
  .product__more {
    display: block;
  }
}
.product__banner {
  position: relative;
}
.product__banner::before {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
  right: 30px;
  width: 59px;
  height: 55px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  opacity: 0.5;
}
.product__title {
  position: absolute;
  bottom: -24px;
  left: 53px;
}
.product__name {
  color: #FFF;
  font-family: inherit;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.product__content {
  padding: 45px 45px 0 53px;
}
.product__range {
  margin-top: 33px;
}
.product__range-title {
  font-family: inherit;
  font-size: 54px;
  font-style: normal;
  font-weight: 350;
  line-height: 70px;
}
.product__range ul {
  padding-left: 0;
  margin-top: 37px;
  list-style: none;
}
.product__range ul li {
  padding-left: 60px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}
.product__range ul li::before {
  content: "";
  display: block;
  position: absolute;
  top: 46%;
  left: 0;
  width: 40px;
  height: 1px;
  background: #A09EA0;
}
.product__range ul li + li {
  margin-top: 40px;
}
.product__categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}
.product__categories-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #C9C4E7;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  background-image: url("../img/products/arrow-sm.webp");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 20px;
}
.product__categories-item:hover {
  background-color: #F0EFF5;
}
.product__categories-name {
  padding-left: 30px;
  padding-right: 95px;
  color: #6F3189;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.product__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 21px;
  margin-bottom: 33px;
}
.product__link {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 24px;
  text-decoration: underline;
}
.product__link.active {
  text-decoration: none;
  font-weight: 800;
}
.product__link:hover {
  text-decoration: none;
}

.products-page__inner {
  display: -ms-grid;
  display: grid;
  grid-gap: 30px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.products-page .product__banner-img {
  height: 100%;
}
@media (max-width: 1366px) {
  .products-page__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .products-page .product__banner {
    height: 280px;
  }
  .products-page img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1200px) {
  .products-page .product__banner {
    height: 240px;
  }
  .products-page .product__banner::before {
    width: 36px;
    height: 34px;
    border-width: 2px;
  }
  .products-page .product__name {
    font-size: 54px;
  }
  .products-page .product__links {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .products-page__inner {
    grid-gap: 26px;
  }
  .products-page .product__banner {
    height: 140px;
  }
  .products-page .product__banner::before {
    width: 28px;
    height: 26px;
    top: 20px;
    right: 20px;
  }
  .products-page .product__title {
    bottom: -15px;
    left: 20px;
  }
  .products-page .product__name {
    font-size: 34px;
  }
  .products-page .product__links {
    margin-bottom: 15px;
  }
  .products-page .product__link {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .products-page__inner {
    grid-gap: 10px;
  }
  .products-page .product__banner::before {
    right: 0;
    z-index: 10;
  }
  .products-page .product__title {
    left: 0;
  }
  .products-page .product__name {
    word-break: break-all;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
  }
  .products-page .product__banner {
    position: relative;
  }
  .products-page .product__banner .product__banner-img {
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    bottom: 0;
  }
}

.contacts__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 630px 1fr;
  grid-template-columns: 630px 1fr;
}
.contacts__inner--page {
  margin-top: 60px;
}
@media (max-width: 1366px) {
  .contacts__inner--page {
    margin-top: 0;
  }
}
@media (max-width: 1366px) {
  .contacts__inner {
    -ms-grid-columns: 445px 1fr;
    grid-template-columns: 445px 1fr;
  }
}
@media (max-width: 1200px) {
  .contacts__inner {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contacts__inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.contacts__item {
  position: relative;
  margin-top: -18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contacts__item .btn {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .contacts__item {
    margin-top: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .contacts__item .btn {
    margin-top: 20px;
  }
}
.contacts__map {
  height: 540px;
  border: 1px solid #C9C4E7;
  width: 100%;
}
.contacts__map img {
  height: 100%;
}
@media (max-width: 1366px) {
  .contacts__map {
    height: 471px;
  }
}
@media (max-width: 768px) {
  .contacts__map {
    height: 434px;
  }
}
.contacts__text {
  margin-top: 40px;
  padding-right: 44px;
  padding-left: 54px;
}
@media (max-width: 1366px) {
  .contacts__text {
    margin-top: 30px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 576px) {
  .contacts__text {
    margin-top: 20px;
    padding-right: 0;
    padding-left: 0;
  }
}
.contacts__link {
  position: absolute;
  right: 30px;
  bottom: 30px;
}
@media (max-width: 576px) {
  .contacts__link {
    display: none;
  }
}
.contacts__info {
  padding-left: 42px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .contacts__info {
    padding-top: 44px;
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .contacts__info {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
  }
  .contacts__info-tel, .contacts__info-mail {
    border-radius: 20.5px;
    background: #F0EFF5;
  }
  .contacts__info-tel a, .contacts__info-mail a {
    color: #6F3189;
  }
  .contacts__info img {
    width: 35px;
    height: 35px;
  }
}
.contacts__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contacts__info-item + .contacts__info-item {
  margin-top: 5px;
}
@media (max-width: 576px) {
  .contacts__info-item {
    gap: 10px;
  }
}
.contacts__info-text {
  color: #000;
  font-family: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .contacts__info-text {
    font-size: 16px;
  }
}
.contacts__info--footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  padding-right: 0;
  padding-left: 20px;
}
.contacts__info--footer .contacts__info-item + .contacts__info-item {
  margin-top: 10px;
}
.contacts__info--footer .contacts__info-text {
  color: #fff;
  text-align: right;
}
@media (max-width: 768px) {
  .contacts__info--footer {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
}
@media (max-width: 576px) {
  .contacts__info--footer .contacts__info-text {
    text-align: left;
  }
}
.contacts .section__wrapper {
  padding-top: 0;
}

.footer {
  background-color: #3C1E4E;
  background-image: url("../img/footer/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.footer__inner {
  position: relative;
  padding: 0 50px 0 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0 30px 0 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .footer__inner {
    padding: 0;
  }
}
.footer__scroll {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  background: #93539A;
  width: 38px;
  height: 38px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .footer__scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer__item {
  padding: 70px 0 0 0;
}
.footer__item:nth-child(1) {
  border-right: 1px solid #9B95C5;
}
@media (max-width: 768px) {
  .footer__item:nth-child(1) {
    border-right: 0;
  }
}
@media (max-width: 768px) {
  .footer__item:nth-child(2) {
    display: none;
  }
}
.footer__item:nth-child(2), .footer__item:nth-child(3) {
  margin-top: 25px;
}
@media (max-width: 1200px) {
  .footer__item:nth-child(2), .footer__item:nth-child(3) {
    margin-top: 10px;
  }
}
.footer__item:nth-child(3) {
  background: url("../img/footer/arrow.webp");
  background-repeat: no-repeat;
  background-position: 100% 20px;
}
@media (max-width: 768px) {
  .footer__item {
    padding: 30px 0 25px 0;
  }
  .footer__item:nth-child(3) {
    padding: 0;
    margin: 0;
    background: none;
  }
}
.footer__copyright {
  padding-top: 82px;
  padding-bottom: 40px;
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-right: 1px solid #9B95C5;
}
@media (max-width: 768px) {
  .footer__copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-right: 0;
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .footer__copyright {
    padding-bottom: 20px;
    font-size: 14px;
  }
}

table {
  margin-top: 60px;
  border-collapse: collapse;
  width: 100%;
}
table tr:first-child {
  background: #F0EFF5;
}
table tr:first-child td {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
table th,
table td {
  padding: 10px 20px;
  border: 1px solid #E1E0E5;
}
table tr:nth-child(2n+3) {
  background: #F7F7F7;
}

.burger {
  padding: 15px 0;
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
@media (max-width: 768px) {
  .burger {
    display: block;
  }
}

.burger:focus {
  outline: none;
}

.burger__item {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #6824B8;
  font-size: 0;
  color: transparent;
}

.burger.clicked span {
  opacity: 0;
}

.burger.clicked::before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.burger.clicked::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.burger.clicked::before,
.burger.clicked::after {
  top: 50%;
  background-color: #6824B8;
}

.burger::before,
.burger::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #6824B8;
  position: absolute;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.burger::before {
  top: 8px;
}

.burger::after {
  bottom: 8px;
}

@media (min-width: 576px) {
  .accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .accordion .accordion__body {
    display: block !important;
  }
}

.accordion__item {
  background: #FFF;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border: 1px solid #E1E0E5;
  border-right: 0;
}

.accordion__item:last-child {
  border-right: 1px solid #E1E0E5;
}

.accordion__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 18px 10px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  background: #F0EFF5;
  cursor: pointer;
  pointer-events: none;
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
}
@media (max-width: 576px) {
  .accordion__header {
    pointer-events: initial;
  }
  .accordion__item {
    border-right: 1px solid #E1E0E5;
    border-bottom: 0;
  }
  .accordion__item:last-child {
    border-bottom: 1px solid #E1E0E5;
  }
}

.accordion__header::after {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 17px;
  display: none;
  width: 20px;
  height: 11px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 11' fill='%236824B8'%3e%3cpath fill-rule='evenodd' d='M6.71758 2.15326L6.68562 2.12131L8.80694 -1.16223e-05L17.6777 8.87078L15.5564 10.9921L8.8389 4.27458L2.12129 10.9922L-2.68883e-05 8.87087L6.71758 2.15326Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  content: "";
  -webkit-transition: -webkit-transform 0.2s ease-out;
  transition: -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out;
  transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}
@media (max-width: 576px) {
  .accordion__header::after {
    display: block;
  }
}

.accordion__item_show .accordion__header::after,
.accordion__item_slidedown .accordion__header::after {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.accordion__content {
  padding: 0.75rem 1rem;
  background: #fff;
}

.accordion__item:not(.accordion__item_show) .accordion__body {
  display: none;
}

.accordion__body p {
  padding: 10px 20px;
  line-height: normal;
  border-top: 1px solid #E1E0E5;
}

.accordion__body p + p {
  margin-top: 0;
}

.accordion__body p:nth-child(2n+2) {
  background: #F7F7F7;
}

.modal {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.modal__inner {
  padding: 53px 48px 30px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

.modal__img {
  max-width: 220px;
}
@media (max-width: 576px) {
  .modal__inner {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .modal__img {
    display: none;
  }
}
.modal__content--response {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.modal__title {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.modal__title--bg {
  font-size: 30px;
}
@media (max-width: 576px) {
  .modal__title {
    padding-right: 20px;
    font-size: 18px;
  }
}
.modal__text {
  margin-top: 10px;
  font-size: 20px;
  max-width: 458px;
}
.modal form {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 280px;
}
@media (max-width: 576px) {
  .modal form {
    min-width: 100%;
  }
}
.modal .form__submit {
  margin-top: 10px;
  padding: 10px 30px;
  color: #fff;
  border-radius: 3px;
  background: #6824B8;
  border: 0;
  line-height: normal;
  cursor: pointer;
}
.modal .form__group {
  width: 100%;
}
.modal .form__control {
  padding: 8px 15px;
  border: none;
  border-radius: 3px;
  width: 100%;
  line-height: normal;
  background: #F5F5F5;
  -webkit-box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1) inset;
  box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.1) inset;
}
.modal .form__control::-webkit-input-placeholder {
  color: #A09EA0;
}
.modal .form__control::-moz-placeholder {
  color: #A09EA0;
}
.modal .form__control:-ms-input-placeholder {
  color: #A09EA0;
}
.modal .form__control::-ms-input-placeholder {
  color: #A09EA0;
}
.modal .form__control::placeholder {
  color: #A09EA0;
}

.modal.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__dialog {
  margin: auto;
  background-color: rgb(255, 255, 255);
}

.modal__close {
  width: 17px;
  height: 17px;
  padding: 0;
  background: none;
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 2;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}

.modal__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.modal__close:focus {
  outline: none;
}