/*==============================RESET==============================*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
}

table {
  border-collapse: collapse;
}

/*==============================FONTS==============================*/
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2"), url("../fonts/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-LightBETA.woff2") format("woff2"), url("../fonts/Inter-LightBETA.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2"), url("../fonts/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2"), url("../fonts/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("../fonts/Tektur-Medium.woff2") format("woff2"), url("../fonts/Tektur-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*==============================GENERAL==============================*/
:root {
  --text-primary: #111827;
  --text-secondary: #4c576e;
  --color-accent: #5f8bff;
  --font-main: 'Inter', sans-serif;
  --font-accent: 'Tektur', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--text-primary);
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
}

.main {
  margin: 0 auto;
  padding: 24px;
  max-width: 1920px;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 24px;
  line-height: 1.2;
}

.ttile_1 {
  font-size: 64px;
}

h1 {
  font-size: 64px;
  line-height: 0.875;
  font-weight: normal;
  color: #252e57;
}

h2 {
  margin-bottom: 32px;
  font-size: 40px;
  line-height: 1.4;
  font-weight: normal;
  color: #252e57;
}

.title_white {
  color: #fff;
}

p {
  margin-bottom: 20px;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

img {
  height: auto;
}

.img-cover {
  position: relative;
  overflow: hidden;
}
.img-cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1279px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    line-height: 1.3;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 28px;
  }
  h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}
/*==============================FORM ELEMENTS==============================*/
.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  min-height: 48px;
  padding: 6px 16px;
  line-height: 1.2;
  background: #252e57;
  color: #f2f5ff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opcaity 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opcaity 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background: #4c5476;
}
.btn svg {
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
}
.btn path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn_big {
  padding: 12px 24px;
  min-height: 72px;
  font-size: 24px;
}
.btn_big span {
  margin-right: 40px;
}
.btn_big svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48px;
          flex: 0 0 48px;
  height: 48px;
}
.btn_full {
  width: 100%;
}
.btn_white {
  background: #fff;
  color: #2f3a6f;
}
.btn_white:hover {
  background: #f2f5ff;
}
.btn_white path {
  fill: #2f3a6f;
  stroke: #2f3a6f;
}
.btn_border {
  background: #fff;
  color: #2f3a6f;
  border: 1px solid #2f3a6f;
}
.btn_border:hover {
  background: #f2f5ff;
}
.btn_border path {
  fill: #2f3a6f;
  stroke: #2f3a6f;
}
.btn_blue {
  background: #f2f5ff;
  color: #2f3a6f;
}
.btn_blue:hover {
  background: #2f3a6f;
  color: #fff;
}
.btn_blue:hover path {
  fill: #fff;
  stroke: #fff;
}
.btn_blue path {
  fill: #2f3a6f;
  stroke: #2f3a6f;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.input,
.textarea {
  width: 100%;
  padding: 10px 15px;
  background: #fff;
}
.input:focus,
.textarea:focus {
  outline: none;
}
.input::-webkit-input-placeholder, .textarea::-webkit-input-placeholder {
  opacity: 0.6;
}
.input::-moz-placeholder, .textarea::-moz-placeholder {
  opacity: 0.6;
}
.input:-ms-input-placeholder, .textarea:-ms-input-placeholder {
  opacity: 0.6;
}
.input::-ms-input-placeholder, .textarea::-ms-input-placeholder {
  opacity: 0.6;
}
.input::placeholder,
.textarea::placeholder {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .btn_big {
    padding: 12px 16px;
    min-height: 58px;
    font-size: 16px;
  }
  .btn_big span {
    margin-right: 25px;
  }
}
/*==============================INDEX==============================*/
/*-------------------------header-------------------------*/
.header {
  margin-bottom: 80px;
}
.header__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}
.header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__mobiletop {
  display: none;
}

.header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-menu__item {
  margin-right: 16px;
}
.header-menu__link {
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
}
.header-menu__link:hover {
  color: var(--color-accent);
}

.header-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
}
.header-contacts__timetable {
  margin-right: 32px;
  font-weight: 300;
  color: #2F3A6F;
}
.header-contacts__phone {
  margin-right: 16px;
  font-weight: 500;
  color: #2f3a6f;
}
.header-contacts__phone:hover {
  color: var(--color-accent);
}
.header-contacts__mail {
  font-weight: 500;
  color: #2f3a6f;
}
.header-contacts__mail:hover {
  color: var(--color-accent);
}

.header-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 203px;
          flex: 0 0 203px;
  width: 203px;
  height: 23px;
  background-image: url(../img/logo-dark2.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.header-logo img {
  max-width: 203px;
}

.header-search {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 16px;
  padding: 0 16px 0 46px;
}
.header-search__body {
  position: relative;
}
.header-search__input {
  width: 100%;
  height: 56px;
  padding: 8px 50px 8px 64px;
  font-size: 20px;
  background: transparent;
  color: #2f3a6f;
  border: 1px solid rgba(76, 84, 118, 0.6);
  background-image: url(../img/icon-search-dark2.svg);
  background-repeat: no-repeat;
  background-position: 16px 50%;
  background-size: 32px 32px;
  border-radius: 16px;
}
.header-search__input::-webkit-input-placeholder {
  color: rgba(76, 84, 118, 0.6);
}
.header-search__input::-moz-placeholder {
  color: rgba(76, 84, 118, 0.6);
}
.header-search__input:-ms-input-placeholder {
  color: rgba(76, 84, 118, 0.6);
}
.header-search__input::-ms-input-placeholder {
  color: rgba(76, 84, 118, 0.6);
}
.header-search__input::placeholder {
  color: rgba(76, 84, 118, 0.6);
}
.header-search__input:focus {
  outline: none;
}
.header-search__clear {
  display: none;
  position: absolute;
  top: 16px;
  cursor: pointer;
  right: 16px;
  z-index: 10;
}
.header-search__clear.active {
  display: block;
}

.header-economy {
  padding: 8px 16px;
  min-height: 56px;
  background: #4c5476;
  color: #f2f5ff;
}
.header-economy:hover {
  background: #252E57;
}
.header-economy span {
  margin-right: 20px;
}

.header-mobile {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-mobile__switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: #f2f5ff;
  border-radius: 10px;
}

.search-suggest {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  left: 48px;
  margin-top: 8px;
  z-index: 10;
  background: #fff;
  border: 1px solid rgba(37, 46, 87, 0.2);
  border-radius: 16px;
  padding: 0 16px;
}
.search-suggest.active {
  display: block;
}
.search-suggest__item {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(76, 87, 110, 0.1);
}
.search-suggest__item:hover {
  color: var(--color-accent);
}
.search-suggest__item:last-child {
  border: 0;
}
.search-suggest__caption {
  font-size: 20px;
  line-height: 1.3;
}
.search-suggest__desc {
  padding-top: 5px;
  font-size: 16px;
  line-height: 1.3;
  color: #4c576e;
}

@media (max-width: 1279px) {
  body.lock {
    overflow: hidden;
  }
  .search-suggest {
    left: 0;
  }
  .header {
    margin-bottom: 40px;
  }
  .header__body {
    position: fixed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
    right: -100vw;
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 24px;
    overflow-y: auto;
    z-index: 30;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header__body.open {
    right: 0;
  }
  .header__top {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__mobiletop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
  }
  .header .header__mobiletop-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    background: #f2f5ff;
    border-radius: 10px;
  }
  .header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu {
    margin-bottom: 15px;
  }
  .header-menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-menu__item {
    margin-bottom: 16px;
  }
  .header-menu__link {
    font-size: 18px;
  }
  .header-contacts {
    -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: flex-start;
    font-size: 18px;
  }
  .header-contacts__timetable {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin: 14px 0 0;
    font-size: 14px;
  }
  .header-contacts__phone {
    margin: 0 0 12px;
  }
  .header-logo {
    display: none;
  }
  .header-search {
    position: absolute;
    top: 80px;
    left: 24px;
    right: 24px;
    padding: 0;
  }
  .header-search__input {
    height: 48px;
    font-size: 16px;
  }
  .header-search__clear {
    right: 10px;
    top: 11px;
  }
  .header-economy {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .header {
    margin-bottom: 24px;
  }
  .header-menu__link {
    font-size: 16px;
  }
  .header-contacts__timetable {
    font-size: 12px;
  }
  .header-search__input {
    padding-left: 42px;
    background-size: 24px 24px;
    background-position: 12px 50%;
    font-size: 14px;
  }
  .header__mobiletop {
    margin-bottom: 90px;
  }
}
@media (max-width: 479px) {
  .main {
    padding: 16px;
  }
  .header__body {
    padding: 16px;
  }
  .header-mobile__logo {
    max-width: 150px;
  }
  .header-search {
    left: 16px;
    right: 16px;
  }
  .search-suggest__caption {
    font-size: 16px;
  }
  .search-suggest__desc {
    font-size: 14px;
  }
}
/*-------------------------mainscreen-------------------------*/
.mainscreen {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 72px;
  height: 696px;
  padding: 16px;
  isolation: isolate;
  background: #25365f;
  border-radius: 32px;
}
body.header-is-fixed .mainscreen,
.mainscreen:has(.header.is-fixed) {
  z-index: 1200;
}
.mainscreen-parallax {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}
.mainscreen-parallax::before {
  position: absolute;
  inset: -48px;
  background: url(../img/mainscreen-bg.jpg?v=20260723) 50% 20%/cover no-repeat;
  content: "";
  transform: translate3d(var(--mainscreen-parallax-x, 0), var(--mainscreen-parallax-y, 0), 0) scale(1.04);
  transform-origin: center;
  will-change: transform;
}
.mainscreen > :not(.mainscreen-parallax) {
  position: relative;
  z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
  .mainscreen-parallax::before {
    transform: scale(1.04);
    will-change: auto;
  }
}
.mainscreen .header {
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(229, 231, 235, 0.2);
}

.mainscreen-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: auto;
  padding: 16px 16px 0;
}
.mainscreen-content__leftside {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding-right: 100px;
}
.mainscreen-content__rightside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 420px;
          flex: 0 0 420px;
  min-width: 0;
  padding-bottom: 16px;
}
.mainscreen-content__title {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: normal;
  color: #f9fafb;
}
.mainscreen-content__desc {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.2;
  color: #f9fafb;
}
.mainscreen-content__offer {
  font-size: 20px;
  line-height: 1.3;
  width: 100%;
}

@media (min-width: 1280px) {
  .mainscreen .header {
    background: rgba(37, 46, 87, 0.9);
    backdrop-filter: blur(20px);
  }
  .mainscreen .header-logo {
    background-image: url(../img/logo.svg);
  }
  .mainscreen .header-menu__link {
    color: #fff;
  }
  .mainscreen .header-menu__link:hover {
    color: var(--color-accent);
  }
  .mainscreen .header-contacts {
    font-size: 12px;
  }
  .mainscreen .header-contacts__timetable {
    color: #fff;
  }
  .mainscreen .header-contacts__mail,
  .mainscreen .header-contacts__phone {
    color: #ff9f40;
  }
  .mainscreen .header-contacts__mail:hover,
  .mainscreen .header-contacts__phone:hover {
    color: #ff8105;
  }
  .mainscreen .header-search__clear path {
    stroke: #fff;
  }
  .mainscreen .header-search__input {
    color: #fff;
    border: 1px solid rgba(229, 231, 235, 0.6);
    background-image: url(../img/icon-search.svg);
  }
  .mainscreen .header-search__input::-webkit-input-placeholder {
    color: rgba(229, 231, 235, 0.5);
  }
  .mainscreen .header-search__input::-moz-placeholder {
    color: rgba(229, 231, 235, 0.5);
  }
  .mainscreen .header-search__input:-ms-input-placeholder {
    color: rgba(229, 231, 235, 0.5);
  }
  .mainscreen .header-search__input::-ms-input-placeholder {
    color: rgba(229, 231, 235, 0.5);
  }
  .mainscreen .header-search__input::placeholder {
    color: rgba(229, 231, 235, 0.5);
  }
  .mainscreen .header-search__input:focus {
    outline: none;
  }
}
@media (max-width: 1279px) {
  .mainscreen .header {
    background: #2F3D66;
    backdrop-filter: none;
  }
  .mainscreen-content {
    display: block;
  }
  .mainscreen-content__title {
    font-size: 48px;
  }
  .mainscreen-content__leftside {
    padding: 0;
  }
  .mainscreen-content__offer {
    width: auto;
  }
}
@media (max-width: 767px) {
  .mainscreen {
    padding: 0;
    margin: -24px -24px 64px;
    border-radius: 0;
  }
  .mainscreen-content__title {
    font-size: 28px;
  }
  .mainscreen-content__desc {
    font-size: 18px;
  }
  .mainscreen .header {
    margin: 8px;
  }
}
@media (max-width: 479px) {
  .mainscreen {
    margin: -16px -16px 64px;
  }
  .mainscreen-content__offer {
    width: 100%;
  }
}
/*-------------------------section-------------------------*/
.section {
  margin-bottom: 192px;
}

.section_2 {
  margin-bottom: 96px;
}

.section_title {
  margin-bottom: 68px;
}

.swiper-button-lock {
  display: none !important;
}

.swiper-nav {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.swiper-arrow-next, .swiper-arrow-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 8px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  width: 64px;
  height: 64px;
  background: #f2f5ff;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.swiper-arrow-next path, .swiper-arrow-prev path {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.swiper-arrow-next:hover, .swiper-arrow-prev:hover {
  background: #2f3a6f;
}
.swiper-arrow-next:hover path, .swiper-arrow-prev:hover path {
  stroke: #fff;
}
.swiper-arrow-next.swiper-button-disabled, .swiper-arrow-prev.swiper-button-disabled {
  background: transparent !important;
  cursor: default;
}
.swiper-arrow-next.swiper-button-disabled path, .swiper-arrow-prev.swiper-button-disabled path {
  stroke: #a5aab6;
}

@media (max-width: 1279px) {
  .section {
    margin-bottom: 96px;
  }
  .section_title {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .section,
  .section_2 {
    margin-bottom: 64px;
  }
  .swiper-arrow-next,
  .swiper-arrow-prev {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32px;
            flex: 0 0 32px;
    width: 32px;
    height: 32px;
    margin-left: 4px;
    border-radius: 8px;
  }
  .swiper-arrow-next svg,
  .swiper-arrow-prev svg {
    width: 16px;
    height: 16px;
  }
}
/*-------------------------maincategories-------------------------*/
.maincategories {
  position: relative;
  margin-bottom: 144px;
}

.maincategories-item {
  padding-left: calc(32% + 16px);
}
.maincategories-item.active .maincategories-item__caption {
  background: #e4e8f6;
  border-color: transparent;
  border-radius: 16px;
  color: var(--text-primary);
}
.maincategories-item.active .maincategories-item__caption:after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.maincategories-item.active .maincategories-item__content {
  height: auto;
}
.maincategories-item.active .maincategories-info {
  display: block;
}
.maincategories-item__caption {
  position: relative;
  padding: 20px 60px 20px 24px;
  font-size: 24px;
  line-height: 1.16;
  border-bottom: 1px solid #e5e7eb;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.maincategories-item__caption:hover {
  color: var(--color-accent);
}
.maincategories-item__caption:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow-acc.svg);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.maincategories-item__content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

.maincategories-list {
  padding-left: 24px;
}
.maincategories-list__item {
  border-bottom: 1px solid #e5e7eb;
}
.maincategories-list__link {
  position: relative;
  display: block;
  padding: 16px 24px;
  font-size: 20px;
  line-height: 1.2;
}
.maincategories-list__link:hover {
  color: var(--color-accent);
}
.maincategories-list__link:hover:after {
  opacity: 1;
}
.maincategories-list__link:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow-link.svg);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.2;
}
.maincategories-list__link strong {
  font-weight: 500;
  color: var(--color-accent);
}

.maincategories-info {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
}
.maincategories-info__img {
  margin-bottom: 16px;
  padding-bottom: 68%;
  -webkit-box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.4);
          box-shadow: inset 0 0 20px 0 rgba(255, 255, 255, 0.4);
  background: #e4e8f6;
  border-radius: 16px;
}

.maincategories-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid rgba(37, 46, 87, 0.4);
  border-radius: 16px;
}
.maincategories-stats__item {
  padding: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 0;
  height: 112px;
  border-bottom: 1px solid rgba(37, 46, 87, 0.4);
  border-right: 1px solid rgba(37, 46, 87, 0.4);
}
.maincategories-stats__item:nth-child(2n), .maincategories-stats__item:nth-child(2n) {
  border-right: 0;
}
.maincategories-stats__item:nth-last-child(1), .maincategories-stats__item:nth-last-child(2) {
  border-bottom: 0;
}
.maincategories-stats__caption {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.66;
  color: #4c576e;
}
.maincategories-stats__value {
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--color-accent);
}

.maincategories-offer {
  position: absolute;
  top: var(--maincategories-offer-top, auto);
  left: 0;
  width: 32%;
  padding: 12px 16px;
  text-align: left;
}

@media (max-width: 1279px) {
  .maincategories-item {
    padding-left: calc(45% + 16px);
  }
  .maincategories-offer,
  .maincategories-info {
    width: 45%;
  }
  .maincategories-item__caption {
    font-size: 22px;
  }
  .maincategories {
    margin-bottom: 96px;
  }
}
@media (max-width: 1023px) {
  .maincategories-item {
    padding-left: 0;
  }
  .maincategories-info {
    position: static;
    width: 100%;
    padding: 10px 0;
  }
  .maincategories-list {
    padding: 0;
  }
  .maincategories-offer {
    position: static;
    width: 100%;
    margin-top: 64px;
  }
}
@media (max-width: 767px) {
  .maincategories-stats__caption {
    -ms-hyphens: auto;
        hyphens: auto;
  }
  .maincategories-stats__item {
    height: auto;
  }
  .maincategories-item__caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 52px;
    padding: 12px 60px 12px 24px;
    font-size: 18px;
  }
  .maincategories-list__link {
    font-size: 18px;
  }
  .maincategories-item__caption,
  .maincategories-list__link {
    padding-left: 8px;
  }
  .maincategories-list__link:after,
  .maincategories-item__caption:after {
    right: 12px;
  }
}
@media (max-width: 359px) {
  .maincategories-stats__caption {
    -ms-hyphens: auto;
        hyphens: auto;
  }
  .maincategories-stats__item {
    padding: 16px;
  }
}
/*-------------------------equipment-------------------------*/
.equipment {
  position: relative;
  margin-bottom: 144px;
}
.equipment__title {
  margin-bottom: 64px;
}
.equipment__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.equipment__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 16px) / 2);
          flex: 0 0 calc((100% - 16px) / 2);
  min-width: 0;
}
.equipment__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.equipment__grid .equipment-main {
  display: none;
}

.equipment-main {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
}
.equipment-main:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
  background-image: url(../img/equipment-main-bg.jpg);
  background-position: 50% bottom;
  background-size: cover;
  z-index: 5;
}
.equipment-main__img {
  height: 992px;
}
.equipment-main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.equipment-main__title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  width: 100%;
  font-size: 24px;
  font-family: var(--font-accent);
  font-weight: 500;
  color: #fff;
  z-index: 10;
}

.equipment-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 16px) / 2);
          flex: 0 0 calc((100% - 16px) / 2);
  height: 320px;
  min-width: 0;
  position: relative;
  background: #e4e8f6;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.equipment-item:hover {
  opacity: 0.8;
}
.equipment-item_1 .equipment-item__img {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.equipment-item_3 .equipment-item__img {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 350px;
}
.equipment-item_4 .equipment-item__img {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.equipment-item_5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.equipment-item_5 .equipment-item__img {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.equipment-item__title {
  padding: 24px;
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 500;
  color: #111827;
}
.equipment-item__img {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 250px;
  text-align: center;
}
.equipment-item__img img {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}

.equipment-carousel__nav {
  display: none;
}

@media (max-width: 1279px) {
  .equipment {
    margin-bottom: 96px;
  }
  .equipment__body {
    display: block;
  }
  .equipment-main__img {
    margin-bottom: 16px;
    height: 600px;
  }
}
@media (max-width: 767px) {
  .equipment__grid {
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .equipment__grid .equipment-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .equipment-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .equipment__col_1 {
    display: none;
  }
  .equipment-main {
    height: 320px;
  }
  .equipment-main__img {
    width: 100%;
    height: 100%;
  }
  .equipment-carousel {
    margin-right: -16px;
    padding-right: 16px;
  }
  .equipment-carousel__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 13px;
  }
  .equipment__title {
    padding-right: 100px;
  }
}
/*-------------------------benefits-------------------------*/
.benefits {
  margin-bottom: 148px;
}
.benefits__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 0 16px;
}

.benefits-item {
  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-flex: 0;
      -ms-flex: 0 0 calc((100% - 72px) / 4);
          flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  background: rgba(228, 232, 246, 0.5);
  padding: 32px;
  border-radius: 16px;
}
.benefits-item__icon {
  margin-bottom: 72px;
}
.benefits-item__title {
  margin-top: auto;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: #111827;
}

@media (max-width: 1399px) {
  .benefits-item__title br {
    display: none;
  }
}
@media (max-width: 1279px) {
  .benefits {
    margin-bottom: 96px;
  }
  .benefits__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
  }
  .benefits-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 24px) / 2);
            flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 767px) {
  .benefits__row {
    display: block;
  }
  .benefits-item {
    margin-bottom: 8px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 16px;
  }
  .benefits-item__icon {
    margin: 0 16px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 64px;
            flex: 0 0 64px;
    width: 64px;
    min-width: 0;
  }
  .benefits-item__title {
    margin: 0;
    font-size: 16px;
  }
}
/*-------------------------mainarticles-------------------------*/
.mainarticles {
  position: relative;
}
.mainarticles__title {
  margin-bottom: 68px;
}

.mainarticles-carousel {
  margin: 0 -24px;
  padding: 0 24px;
  overflow: visible;
}

.mainarticles-item {
  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: flex-start;
  padding: 16px;
  height: auto;
  background: rgba(228, 232, 246, 0.5);
  border-radius: 24px;
}
.mainarticles-item__img {
  margin-bottom: 30px;
  width: 100%;
  padding-bottom: 77%;
  border-radius: 8px;
  overflow: hidden;
}
.mainarticles-item__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainarticles-item__title {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.1;
}
.mainarticles-item__title a {
  color: var(--text-primary);
}
.mainarticles-item__title a:hover {
  color: var(--color-accent);
}
.mainarticles-item__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  height: 36px;
  margin-top: auto;
  font-size: 16px;
  text-align: center;
  color: #2f3a6f;
  border-radius: 8px;
  border: 1px solid #2f3a6f;
}
.mainarticles-item__btn:hover {
  background: #2f3a6f;
  color: #fff;
}

@media (max-width: 1279px) {
  .mainarticles__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 1023px) {
  .mainarticles-item__title {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .mainarticles-item {
    padding: 12px;
    border-radius: 16px;
  }
  .mainarticles__title {
    padding-right: 100px;
  }
  .mainarticles-item__title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .mainarticles-item__img {
    margin-bottom: 16px;
  }
}
@media (max-width: 479px) {
  .mainarticles__title span {
    display: block;
  }
  .mainarticles-carousel__nav {
    top: 13px;
  }
  .mainarticles-carousel {
    margin: 0 -16px;
    padding: 0 16px;
  }
}
/*-------------------------maincalc-------------------------*/
.maincalc {
  position: relative;
  padding: 64px;
  background: url(../img/maincalc-bg.jpg) 50% 50%/cover;
  border-radius: 32px;
  overflow: hidden;
  z-index: 1;
}
.maincalc:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(45%, #2F3A6F), to(transparent));
  background: linear-gradient(to right, #2F3A6F 45%, transparent 100%);
  z-index: -1;
}
.maincalc__title {
  margin-bottom: 64px;
  font-weight: 500;
  line-height: 1.2;
}

@media (max-width: 1023px) {
  .maincalc {
    padding: 40px;
    background-position: 70% 50%;
  }
  .maincalc__title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .maincalc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 640px;
    background-image: url(../img/maincalc-bg-mobile.jpg);
    background-position: 50% 50%;
  }
  .maincalc::after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, #2F3A6F), to(transparent));
    background: linear-gradient(to bottom, #2F3A6F 15%, transparent 100%);
  }
  .maincalc__title {
    font-size: 32px;
  }
  .maincalc__btn {
    margin-top: auto;
    text-align: left;
  }
}
@media (max-width: 479px) {
  .maincalc {
    padding: 24px 16px;
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    background-position: 50% 100%;
  }
  .maincalc__title {
    font-size: 28px;
  }
}
/*-------------------------mainabout-------------------------*/
.mainabout {
  padding: 32px;
  border: 1px solid #e4e8f6;
  border-radius: 32px;
}
.mainabout__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mainabout__leftside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 48%;
          flex: 0 0 48%;
  width: 48%;
  min-width: 0;
}
.mainabout__rightside {
  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-flex: 0;
      -ms-flex: 0 0 calc(52% - 48px);
          flex: 0 0 calc(52% - 48px);
  width: calc(52% - 48px);
}
.mainabout__title {
  margin-bottom: 64px;
  font-family: var(--font-accent);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #2f3a6f;
}
.mainabout__img {
  position: relative;
  border-radius: 16px;
  padding-bottom: 110%;
  overflow: hidden;
  min-height: 760px;
}
.mainabout__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainabout__btn {
  position: absolute;
  left: 32px;
  padding: 12px 24px;
  font-size: 24px;
  color: #2f3a6f;
  min-width: 340px;
  bottom: 32px;
  z-index: 5;
}
.mainabout__text p {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 1.3;
  color: #4c576e;
  font-weight: 300;
}
.mainabout__text p:last-child {
  margin-bottom: 0;
}

.mainabout-stats {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mainabout-stats__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mainabout-stats__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-bottom: 16px;
  min-width: 0;
}
.mainabout-stats__num {
  font-weight: 500;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-family: var(--font-accent);
  color: var(--color-accent);
}
.mainabout-stats__desc {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
}

.mainabout-gallery {
  margin-top: auto;
}
.mainabout-gallery__slider {
  padding-right: 16px;
  margin-right: -32px;
}
.mainabout-gallery__item {
  position: relative;
  padding-bottom: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.mainabout-gallery__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mainabout-gallery__nav {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
}
.mainabout-gallery__prev {
  margin-right: 8px;
}

@media (max-width: 1399px) {
  .mainabout-stats__desc {
    font-size: 20px;
  }
  .mainabout__text p {
    font-size: 18px;
  }
}
@media (max-width: 1279px) {
  .mainabout__body {
    display: block;
  }
  .mainabout__rightside,
  .mainabout__leftside {
    width: 100%;
  }
  .mainabout__img {
    margin-bottom: 50px;
    padding: 0;
    min-height: auto;
    height: 800px;
  }
  .mainabout__img img {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .mainabout__text {
    margin-bottom: 50px;
  }
  .mainabout-stats {
    margin-bottom: 60px;
  }
  .mainabout-stats__row {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mainabout {
    padding: 0;
    border: 0;
  }
  .mainabout__title {
    margin-bottom: 32px;
    font-size: 28px;
  }
  .mainabout__img {
    height: auto;
  }
  .mainabout__img img {
    min-height: 480px;
  }
  .mainabout__btn {
    min-width: auto;
    padding: 12px 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    white-space: nowrap;
    font-size: 16px;
  }
  .mainabout__btn span {
    margin: 0;
  }
  .mainabout__btn svg {
    display: none;
  }
  .mainabout-stats__row {
    display: block;
  }
  .mainabout-stats__item {
    margin-bottom: 24px;
  }
  .mainabout-stats__num {
    margin-bottom: 10px;
    font-size: 40px;
  }
  .mainabout-stats__desc {
    font-size: 20px;
    margin: 0;
  }
  .mainabout__text {
    margin-bottom: 40px;
  }
  .mainabout-stats {
    margin-bottom: 40px;
  }
  .mainabout-gallery__nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 479px) {
  .mainabout-gallery__slider {
    margin-right: -16px;
    padding-right: 16px;
  }
}
/*-------------------------mainstages-------------------------*/
.mainstages {
  position: relative;
}
.mainstages__title {
  margin-bottom: 68px;
}

.mainstages-carousel {
  overflow: visible;
  margin-right: -24px;
  padding-right: 24px;
}

.mainstages-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 32px 24px;
  height: 320px;
  background: rgba(228, 232, 246, 0.5);
  border-radius: 16px;
}
.mainstages-item__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: auto;
}
.mainstages-item__title {
  font-weight: 500;
  font-size: 24px;
  padding-right: 30px;
}

@media (max-width: 767px) {
  .mainstages__title {
    margin-bottom: 32px;
  }
}
@media (max-width: 479px) {
  .mainstages-carousel {
    margin-right: -16px;
    padding-right: 16px;
  }
}
/*-------------------------maincases-------------------------*/
.maincases__body {
  position: relative;
}

.indexpage .maincases {
  margin-bottom: 96px;
}

.maincases-item {
  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: flex-start;
  padding: 16px;
  background: rgba(228, 232, 246, 0.5);
  border-radius: 16px;
  height: auto;
}
.maincases-item__img {
  margin-bottom: 30px;
  padding-bottom: 44%;
  border-radius: 8px;
  width: 100%;
}
.maincases-item__type {
  margin-bottom: 5px;
  font-size: 24px;
  font-family: var(--font-accent);
  color: var(--color-accent);
}
.maincases-item__title {
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}
.maincases-item__title a {
  color: var(--text-primary);
}
.maincases-item__title a:hover {
  color: var(--color-accent);
}
.maincases-item__desc {
  margin-bottom: 30px;
  font-size: 24px;
  line-height: 1.4;
}
.maincases-item__btn {
  margin-top: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 24px;
  font-size: 16px;
  border-radius: 8px;
  line-height: 1.3;
  text-align: center;
  color: #2f3a6f;
  border: 1px solid #2f3a6f;
}
.maincases-item__btn:hover {
  background: #2f3a6f;
  color: #fff;
}

@media (max-width: 1023px) {
  .maincases-item__type {
    font-size: 14px;
  }
  .maincases-item__title {
    font-size: 20px;
    line-height: 1.2;
  }
  .maincases-item__desc {
    font-size: 16px;
  }
}
/*-------------------------footer-------------------------*/
.footer {
  margin-top: 120px;
  padding: 32px 24px;
  background: rgba(228, 232, 246, 0.5);
  border-radius: 32px;
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 32px;
}
.footer__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__bottom {
  margin-top: 32px;
}
.footer__top-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 0;
  padding-right: 30px;
}
.footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 8px;
}
.footer__timetable {
  margin-bottom: 67px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: rgba(47, 58, 111, 0.5);
}
.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  color: #2f3a6f;
}
.footer__phone {
  margin-right: 50px;
}
.footer__phone:hover {
  color: var(--color-accent);
}
.footer__mail:hover {
  color: var(--color-accent);
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-nav__list {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 0;
  padding-right: 30px;
}
.footer-nav__item {
  margin-bottom: 16px;
}
.footer-nav__link {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #727272;
}
.footer-nav__link:hover {
  color: var(--color-accent);
}

.footer-search {
  margin-right: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.footer-search__input {
  width: 100%;
  height: 64px;
  padding: 8px 64px 8px 16px;
  font-size: 20px;
  background: transparent;
  color: rgb(114, 114, 114);
  border: 1px solid #8c98a2;
  background-image: url(../img/icon-search-dark.svg);
  background-repeat: no-repeat;
  background-position: right 16px top 50%;
  background-size: 32px 32px;
  border-radius: 16px;
}
.footer-search__input::-webkit-input-placeholder {
  color: rgba(114, 114, 114, 0.5);
}
.footer-search__input::-moz-placeholder {
  color: rgba(114, 114, 114, 0.5);
}
.footer-search__input:-ms-input-placeholder {
  color: rgba(114, 114, 114, 0.5);
}
.footer-search__input::-ms-input-placeholder {
  color: rgba(114, 114, 114, 0.5);
}
.footer-search__input::placeholder {
  color: rgba(114, 114, 114, 0.5);
}
.footer-search__input:focus {
  outline: none;
}

.footer-discount {
  text-align: left;
  line-height: 1.25;
}
.footer-discount span {
  margin-right: 35px;
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
  font-size: 12px;
  color: rgba(47, 58, 111, 0.5);
}
.footer-info a {
  color: rgba(47, 58, 111, 0.5);
}
.footer-info a:hover {
  color: var(--color-accent);
}
.footer-info__item {
  margin-right: 16px;
}
.footer-info__item_metrika {
  margin-right: 0;
  margin-left: auto;
}
.footer-metrika {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  opacity: 0.72;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.footer-metrika:hover {
  opacity: 1;
}
.footer-metrika img {
  display: block;
}

@media (max-width: 1279px) {
  .footer__top-col {
    padding-right: 0;
  }
  .footer__contacts {
    -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: flex-start;
    font-size: 28px;
  }
  .footer__phone {
    display: inline-block;
    margin: 0 0 8px;
  }
}
@media (max-width: 1023px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 64px;
  }
  .footer__middle {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-search {
    margin: 0 0 8px;
  }
  .footer-info {
    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;
    padding: 30px 0;
    gap: 16px;
  }
  .footer-info__item {
    margin: 0;
  }
  .footer-info__item_metrika {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .footer {
    margin: 64px -24px -24px;
    border-radius: 0;
  }
  .footer__timetable {
    font-size: 16px;
  }
  .footer__contacts {
    font-size: 24px;
  }
  .footer-nav {
    display: block;
  }
  .footer-nav__list {
    margin-bottom: 16px;
    padding-right: 0;
  }
  .footer-search__input {
    font-size: 14px;
  }
  .footer-discount {
    font-size: 14px;
  }
  .footer-discount br {
    display: none;
  }
  .footer-discount span {
    margin-right: 20px;
  }
}
@media (max-width: 479px) {
  .footer {
    margin: 64px -16px -16px;
  }
}
@media (max-width: 359px) {
  .footer-discount {
    font-size: 12px;
  }
  .footer-discount span {
    margin-right: 10px;
  }
}
/*==============================SERVICE==============================*/
/*-------------------------service-promo-------------------------*/
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-bottom: 40px;
}
.breadcrumbs li {
  position: relative;
  margin: 0 24px 24px 0;
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs li:after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  right: -20px;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-breadcrumbs.svg);
}
.breadcrumbs li a {
  color: #252e57;
}
.breadcrumbs li a:hover {
  color: var(--color-accent);
}

.service-promo {
  position: relative;
  margin-bottom: 160px;
}
.service-promo .breadcrumbs {
  position: static;
  margin-bottom: 48px;
}
.service-promo__body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}
.service-promo__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.service-promo__heading {
  min-width: 0;
}
.service-promo__num {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: baseline;
  gap: 7px;
  margin-top: 6px;
  padding: 8px 12px;
  color: #4c576e;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  background: #f2f5ff;
  border-radius: 10px;
}
.service-promo__num-value {
  color: var(--color-accent);
  font-size: 22px;
  font-weight: 600;
}
.service-promo__num-label {
  font-weight: 500;
}
.service-promo__desc {
  line-height: 1.2;
  color: var(--text-secondary);
}
.service-promo__desc p {
  margin-bottom: 10px;
  font-size: 20px;
}
.service-promo__desc p:last-child {
  margin-bottom: 0;
}
.service-promo__content {
  min-width: 0;
  padding: 0;
}
.service-promo__img {
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 9;
  padding-bottom: 0;
  border-radius: 16px;
}

@media (max-width: 1279px) {
  .service-promo {
    margin-bottom: 96px;
  }
  .service-promo__title {
    margin-bottom: 35px;
  }
  .service-promo__num {
    margin-top: 3px;
  }
}
@media (max-width: 1023px) {
  .breadcrumbs {
    padding-bottom: 5px;
  }
  .service-promo__body {
    grid-template-columns: 1fr;
  }
  .service-promo .breadcrumbs {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .service-promo {
    margin-bottom: 64px;
  }
  .service-promo__title {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  .service-promo__content {
    padding-top: 0;
  }
  .service-promo__desc p {
    font-size: 14px;
  }
  .service-promo__num {
    top: -20px;
  }
}
@media (max-width: 479px) {
  .breadcrumbs {
    font-size: 14px;
  }
  .breadcrumbs li {
    margin: 0 24px 12px 0;
  }
}
/*-------------------------service-products-------------------------*/
.service-products__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
}
.service-products__title {
  margin-bottom: 0;
}
.service-products__desc {
  margin-left: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 24px) / 2);
          flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  font-size: 20px;
  line-height: 1.2;
  color: #4c576e;
}
.service-products__list {
  position: relative;
  padding-left: calc(32% + 24px);
  min-height: 468px;
}
.service-products__item {
  padding: 2px 0;
  border-bottom: 1px solid #e5e7eb;
  cursor: pointer;
}
.service-products__item:first-child {
  border-top: 1px solid #e5e7eb;
}
.service-products__item.open .service-products__btn {
  background: #e4e8f6;
  border-radius: 16px;
}
.service-products__item.open .service-products__img {
  display: block;
}
.service-products__btn {
  position: relative;
  padding: 20px 60px 20px 24px;
  font-size: 24px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  line-height: 1.16;
}
.service-products__link {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.service-products__img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 32%;
  padding-bottom: 25%;
  border-radius: 16px;
}

@media (max-width: 1799px) {
  .service-products__list {
    min-height: 400px;
  }
  .service-products__btn {
    padding: 18px 60px 18px 24px;
  }
}
@media (max-width: 1279px) {
  .service-products__top {
    display: block;
  }
  .service-products__title {
    margin-bottom: 32px;
  }
  .service-products__list {
    padding-left: calc(44% + 24px);
  }
  .service-products__img {
    width: 44%;
    padding-bottom: 35%;
  }
}
@media (max-width: 1023px) {
  .service-products__list {
    min-height: 320px;
  }
  .service-products__btn {
    padding: 14px 50px 14px 20px;
    font-size: 20px;
  }
  .service-products__link {
    right: 16px;
  }
}
@media (max-width: 767px) {
  .service-products__title {
    margin-bottom: 24px;
  }
  .service-products__item.open .service-products__img {
    display: none;
  }
  .service-products__list {
    padding-left: 0;
    min-height: auto;
  }
  .service-products__top {
    margin-bottom: 32px;
  }
  .service-products__btn {
    font-size: 24px;
  }
}
/*-------------------------service-principle-------------------------*/
.service-principle__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.service-principle__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 24px) / 2);
          flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
}
.service-principle__desc {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 1.2;
  color: #4c576e;
}

.service-principle-block {
  margin-bottom: 16px;
  padding: 32px;
  background: rgba(228, 232, 246, 0.5);
  border-radius: 16px;
}
.service-principle-block__caption {
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
}
.service-principle-block__text {
  font-size: 20px;
  line-height: 1.2;
  color: var(--text-secondary);
}
.service-principle-block__list li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 36px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #4C576E;
}
.service-principle-block__list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #2F3A6F;
  border-radius: 50%;
}
.service-principle-block__list li:last-child {
  margin-bottom: 0;
}
.service-principle-block__list li strong {
  font-weight: 500;
  color: #2f3a6f;
}

@media (max-width: 1279px) {
  .service-principle__row {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-principle-block__caption {
    line-height: 1.1;
  }
  .service-principle__desc {
    margin-bottom: 32px;
  }
  .service-principle-block {
    padding: 16px;
  }
  .service-principle-block__text {
    font-size: 18px;
  }
}
@media (max-width: 359px) {
  .service-principle-block {
    padding: 24px;
  }
  .service-principle-block__list li {
    font-size: 18px;
  }
}
/*-------------------------service-features-------------------------*/
.service-features__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}

.service-features-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 24px) / 2);
          flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  padding: 24px 16px;
  background: rgba(228, 232, 246, 0.5);
  border-radius: 16px;
}
.service-features-item__img {
  margin-bottom: 30px;
  padding-bottom: 56%;
  border-radius: 8px;
}
.service-features-item__title {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.3;
}
.service-features-item__desc {
  font-size: 20px;
  line-height: 1.4;
}

@media (max-width: 1279px) {
  .service-features-item__title {
    font-size: 28px;
  }
}
@media (max-width: 1023px) {
  .service-features-item__desc {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .service-features__row {
    display: block;
  }
  .service-features-item {
    margin-bottom: 24px;
  }
  .service-features-item:last-child {
    margin-bottom: 0;
  }
  .service-features-item__img {
    padding-bottom: 58%;
  }
  .service-features-item__title {
    font-size: 20px;
  }
  .service-features-item__desc {
    font-size: 16px;
  }
}
/*-------------------------service-stats-------------------------*/
.service-stats__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.service-stats__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 24px) / 2);
          flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
}
.service-stats__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid rgba(37, 46, 87, 0.4);
  border-radius: 16px;
}

.service-stats-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 0;
  padding: 24px;
  border-top: 1px solid rgba(37, 46, 87, 0.4);
  border-right: 1px solid rgba(37, 46, 87, 0.4);
}
.service-stats-item:nth-child(2n), .service-stats-item:last-child {
  border-right: 0;
}
.service-stats-item:nth-child(1), .service-stats-item:nth-child(2) {
  border-top: 0;
}
.service-stats-item_big {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.service-stats-item__caption {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.66;
  color: #4c576e;
}
.service-stats-item__value {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-accent);
}
.service-stats-item__desc {
  margin-top: 8px;
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.2;
  color: #252e57;
}

.mobile_only {
  display: none;
}

@media (max-width: 1279px) {
  .service-stats__row {
    display: block;
  }
}
@media (max-width: 767px) {
  .service-stats-item {
    padding: 16px;
  }
  .service-stats-item__value {
    font-size: 14px;
  }
  .service-stats-item__caption {
    font-size: 10px;
  }
  .service-stats-item__desc {
    font-size: 12px;
  }
}
@media (max-width: 359px) {
  .mobile_only {
    display: block;
  }
  .desktop_only {
    display: none;
  }
}
/*-------------------------service-scheme-------------------------*/
.service-scheme__title {
  margin-bottom: 64px;
}
.service-scheme__img {
  border-radius: 8px;
  overflow: hidden;
}
.service-scheme__img img {
  width: 100%;
}

@media (max-width: 1279px) {
  .service-scheme__title {
    margin-bottom: 32px;
  }
}
/*-------------------------service-product-------------------------*/
.service-product__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}
.service-product__gallery {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 64px) / 2);
          flex: 0 0 calc((100% - 64px) / 2);
  min-width: 0;
}
.service-product__gallery-img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.service-product__gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-product__gallery-slide {
  display: none;
}
.service-product__gallery-slide.active {
  display: block;
}
.service-product__gallery-btns {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  bottom: 24px;
  left: 50%;
  background: #fff;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 12px;
  overflow: hidden;
  z-index: 10;
}
.service-product__gallery-btn {
  border: 0;
  background: #fff;
  font-family: inherit;
  padding: 10px 16px;
  font-size: 12px;
  color: #111827;
  cursor: pointer;
  white-space: nowrap;
}
.service-product__gallery-btn.active {
  background: #f2f5ff;
}
.service-product__title {
  margin-bottom: 48px;
}
.service-product__desc {
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.3;
  color: #4c576e;
}
.service-product__list {
  padding-bottom: 32px;
}
.service-product__list li {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  color: #2f3a6f;
}
.service-product__list li:before {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #2f3a6f;
  border-radius: 50%;
}
.service-product__price {
  margin-bottom: 45px;
  font-weight: 500;
  font-size: 64px;
  color: #252e57;
}
.service-product__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.service-product__action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 8px) / 2);
          flex: 0 0 calc((100% - 8px) / 2);
  min-width: 0;
}
.service-product__action.btn_border:hover {
  background: #2f3a6f;
  color: #fff;
}
.service-product__action.btn_border:hover path {
  fill: #fff;
  stroke: #fff;
}
.service-product .btn_full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

@media (max-width: 1279px) {
  .service-product__body {
    gap: 24px;
  }
  .service-product__gallery {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 24px) / 2);
            flex: 0 0 calc((100% - 24px) / 2);
  }
  .service-product__price {
    margin-bottom: 40px;
    font-size: 48px;
  }
  .service-product__list {
    padding-bottom: 24px;
  }
  .service-product__list li {
    font-size: 18px;
  }
  .service-product__desc {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .service-product__title {
    margin-bottom: 24px;
  }
}
@media (max-width: 1023px) {
  .service-product__body {
    display: block;
  }
  .service-product__gallery {
    margin-bottom: 24px;
  }
  .service-product__gallery-img {
    position: static;
  }
}
@media (max-width: 639px) {
  .service-product__desc {
    font-size: 14px;
  }
  .service-product__list li {
    font-size: 14px;
    padding-left: 24px;
  }
  .service-product__list li:before {
    top: 3px;
    width: 8px;
    height: 8px;
  }
  .service-product__price {
    margin-bottom: 30px;
    font-size: 32px;
  }
  .service-product__action {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    text-align: left;
  }
}
/*-------------------------service-variants-------------------------*/
.service-variants {
  position: relative;
}
.service-variants__body {
  border: 1px solid #e4e8f6;
  border-radius: 16px;
}
.service-variants__grid {
  padding: 12px 24px;
}
.service-variants__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service-variants__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  width: 25%;
  min-width: 0;
  padding: 16px;
}
.service-variants__item-num {
  position: absolute;
  top: 32px;
  left: 16px;
  font-size: 24px;
  color: #252e57;
}
.service-variants__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.service-variants__nav {
  display: none;
}

.service-configuration__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #e4e8f6;
  border-radius: 16px;
}
.service-configuration__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  min-width: 0;
  padding: 24px;
  border-top: 1px solid #e4e8f6;
  border-right: 1px solid #e4e8f6;
}
.service-configuration__item:nth-child(2n) {
  border-right: 0;
}
.service-configuration__item:nth-child(1), .service-configuration__item:nth-child(2) {
  border-top: 0;
}
.service-configuration__item-caption {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.66;
  color: var(--text-secondary);
}
.service-configuration__item-value {
  font-size: 20px;
  line-height: 1.2;
  color: var(--color-accent);
}

@media (max-width: 1023px) {
  .service-variants__grid {
    padding: 0;
  }
  .service-variants__item-img {
    padding: 15px;
  }
  .service-variants__item-num {
    top: 16px;
  }
}
@media (min-width: 768px) {
  .service-variants__grid {
    display: block;
  }
  .service-variants__row {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media (max-width: 767px) {
  .service-configuration__grid {
    display: block;
  }
  .service-configuration__item {
    padding: 16px;
    border-right: 0;
  }
  .service-configuration__item-value {
    font-size: 14px;
  }
  .service-configuration__item-value br {
    display: none;
  }
  .service-configuration__item:nth-child(2) {
    border-top: 1px solid #e4e8f6;
  }
  .service-variants {
    position: relative;
  }
  .service-variants__body {
    border: 0;
    border-radius: 0;
  }
  .service-variants__title {
    padding-right: 90px;
  }
  .service-variants__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .service-variants__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service-variants__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 0;
    min-width: 0;
  }
  .service-variants__item-num {
    top: 0;
    left: 0;
    font-size: 20px;
  }
  .service-variants__item-img {
    padding: 0;
  }
}
/*-------------------------service-payment-------------------------*/
.service-payment__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.service-payment__item {
  position: relative;
  padding: 32px 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 72px) / 4);
          flex: 0 0 calc((100% - 72px) / 4);
  min-width: 0;
  background: #252e57;
  border-radius: 16px;
}
.service-payment__item-caption {
  margin-bottom: 16px;
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 24px;
  color: #fff;
}
.service-payment__item-desc {
  padding-right: 50px;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  color: #f9fafb;
}
.service-payment__item-arrow {
  position: absolute;
  right: 24px;
  bottom: 32px;
}
.service-payment__item-arrow path {
  stroke: #5f8bff;
}

@media (max-width: 1279px) {
  .service-payment__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .service-payment__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 24px) / 2);
            flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 639px) {
  .service-payment__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .service-payment__item {
    padding: 24px 16px;
  }
  .service-payment__item-caption {
    font-size: 20px;
  }
}
/*-------------------------other-products-------------------------*/
.other-products {
  position: relative;
}

.products-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e4e8f6;
  height: auto;
}
.products-item__img {
  margin-bottom: 30px;
  padding-bottom: 69%;
  border-radius: 8px;
}
.products-item__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  padding: 0 16px;
  top: 32px;
  left: 32px;
  height: 38px;
  background: rgba(28, 39, 76, 0.8);
  color: #fff;
  border-radius: 8px;
  z-index: 10;
}
.products-item__title {
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
}
.products-item__title a {
  color: var(--text-primary);
}
.products-item__stats {
  padding-bottom: 20px;
}
.products-item__stat {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #2f3a6f;
}
.products-item__stat:before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #2f3a6f;
  border-radius: 50%;
}
.products-item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 35px;
}
.products-item__price-current {
  margin-right: 16px;
  font-size: 28px;
  font-weight: 600;
  color: #252e57;
}
.products-item__price-old {
  margin-right: 10px;
  font-weight: 500;
  font-size: 20px;
  text-decoration: line-through;
  color: rgba(76, 87, 110, 0.5);
}
.products-item__price-discount {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-accent);
}
.products-item__btn {
  margin-top: auto;
  padding: 8px 16px;
  width: 100%;
}

@media (max-width: 1399px) {
  .products-item__price-current {
    font-size: 25px;
  }
  .products-item__price-discount,
  .products-item__price-old {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .products-item__price-current {
    margin-right: 10px;
    font-size: 22px;
  }
  .products-item__price-discount,
  .products-item__price-old {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .other-products-carousel {
    margin-right: -24px;
    padding-right: 24px;
  }
  .products-item__title {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .products-item__stat {
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 16px;
  }
  .products-item__stat:before {
    top: 4px;
    width: 8px;
    height: 8px;
  }
  .products-item__price-current {
    font-size: 18px;
  }
  .products-item__price-discount,
  .products-item__price-old {
    font-size: 14px;
  }
}
@media (max-width: 479px) {
  .other-products-carousel {
    margin-right: -16px;
    padding-right: 16px;
  }
  .other-products__title span {
    display: block;
  }
  .other-products-carousel__nav {
    top: 13px;
  }
}
@media (max-width: 359px) {
  .products-item__price-current {
    font-size: 14px;
  }
  .products-item__price-discount, .products-item__price-old {
    font-size: 12px;
  }
}
/*-------------------------feedback-------------------------*/
.feedback__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.feedback__col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 16px) / 2);
          flex: 0 0 calc((100% - 16px) / 2);
  min-width: 0;
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.faq-list {
  margin-top: auto;
}
.faq-list__item {
  margin-top: 4px;
  border: 1px solid #e4e8f6;
  border-radius: 12px;
}
.faq-list__item.open .faq-list__item-caption:after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.faq-list__item.open .faq-list__item-content {
  height: auto;
}
.faq-list__item-caption {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 70px 16px 24px;
  min-height: 72px;
  font-size: 18px;
  line-height: 1.2;
  cursor: pointer;
}
.faq-list__item-caption:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 24px;
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow-acc.svg);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.faq-list__item-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
}
.faq-list__item-content-inner {
  padding: 0 24px 24px;
  line-height: 1.2;
}

.feedback-form {
  height: 100%;
  padding: 24px;
  background: #252e57;
  border-radius: 16px;
}
.feedback-form__title {
  max-width: 700px;
  margin-bottom: 64px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}
.feedback-form__input {
  margin-bottom: 10px;
  width: 100%;
  height: 64px;
  padding: 20px;
  background: transparent;
  border-radius: 16px;
  border: 1px solid rgba(229, 231, 235, 0.4);
  font-size: 24px;
  font-weight: 300;
  color: #fff;
}
.feedback-form__input::-webkit-input-placeholder {
  color: rgba(229, 231, 235, 0.5);
}
.feedback-form__input::-moz-placeholder {
  color: rgba(229, 231, 235, 0.5);
}
.feedback-form__input:-ms-input-placeholder {
  color: rgba(229, 231, 235, 0.5);
}
.feedback-form__input::-ms-input-placeholder {
  color: rgba(229, 231, 235, 0.5);
}
.feedback-form__input::placeholder {
  color: rgba(229, 231, 235, 0.5);
}
.feedback-form__input:focus {
  outline: none;
}
.feedback-form__note {
  margin-bottom: 32px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.2;
  color: #f9fafb;
}
.feedback-form__btn {
  font-weight: 500;
  font-size: 20px;
  min-height: 64px;
  height: 64px;
}
.feedback-form__btn svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
}
.feedback-form__policy {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
  color: #f9fafb;
}

@media (max-width: 1279px) {
  .feedback__body {
    display: block;
  }
  .faq {
    margin-bottom: 32px;
  }
}
@media (max-width: 767px) {
  .faq-list__item-caption {
    font-size: 14px;
  }
  .feedback-form__title {
    font-size: 18px;
  }
  .feedback-form__input {
    height: 48px;
    font-size: 18px;
  }
  .feedback-form__btn {
    min-height: 58px;
  }
}
