@charset "UTF-8";

:root {
  --font-family: "Inter", sans-serif;
  --content-width: 1345px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
  --background-color: #ffffff;
  --white-color: #ffffff;
  --blue-color: #113c67;
  --pink-color: #89578d;
}

/* 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 */
* {
  padding: 0px;
  margin: 0px;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

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

:focus,
:active {
  /*outline: none;*/
}

a:focus,
a:active {
  /* outline: none;*/
}

/* Links */
a {
  /* color: inherit; */
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

ul,
ul li {
  list-style: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  margin-left: 0;
}

img {
  vertical-align: top;
}

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

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button {
  display: inline-block;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input[type="submit"] {
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/* Reset and base styles  */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 2px 0;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property:
    opacity,
    -webkit-filter;
  transition-property:
    opacity,
    -webkit-filter;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property:
    opacity,
    filter,
    -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  font: inherit;
  font-size: 0;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #ffffff;
}

.hamburger-box {
  width: 25px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -7px;
}

.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
  -o-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition:
    top 0.1s 0.25s ease-in,
    opacity 0.1s ease-in;
  -o-transition:
    top 0.1s 0.25s ease-in,
    opacity 0.1s ease-in;
  transition:
    top 0.1s 0.25s ease-in,
    opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition:
    bottom 0.1s 0.25s ease-in,
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.1s 0.25s ease-in,
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-transition:
    bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.1s 0.25s ease-in,
    transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition:
    top 0.1s ease-out,
    opacity 0.1s 0.12s ease-out;
  -o-transition:
    top 0.1s ease-out,
    opacity 0.1s 0.12s ease-out;
  transition:
    top 0.1s ease-out,
    opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition:
    bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.1s ease-out,
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition:
    bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.1s ease-out,
    transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

.page {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

.page__body {
  font-family: var(--font-family, sans-serif);
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  background-color: var(--background-color);
  color: #000000;
  height: 100%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

img {
  display: inline-block;
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

a {
  color: inherit;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  text-decoration: none;
  outline: none;
}

a:hover {
  color: #a6c8eb;
}

a[href*="tel:"] {
  white-space: nowrap;
}

input[type="submit"] {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.site-container {
  /* overflow: hidden; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.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);
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

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

.centered {
  text-align: center;
}

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

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

ul {
  list-style-type: none;
  padding: 0;
}

.anim-scale {
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  -o-transition: transform 0.1s;
  transition: transform 0.1s;
  transition:
    transform 0.1s,
    -webkit-transform 0.1s;
}

.anim-scale:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.youtube-video {
  width: 100%;
  aspect-ratio: 16/9;
}

.body-disable-scroll {
  overflow-y: hidden;
}

.video-js {
  background: transparent;
}

.sect-p {
  padding: 70px 0;
}

.sect-p._off-top {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 991px) {
  .sect-p {
    padding: 40px 0;
  }
}

.sect-m {
  margin: 70px 0;
}

@media (max-width: 991px) {
  .sect-m {
    margin: 40px 0;
  }
}

.page-p {
  padding: 45px 0 60px;
}

@media (max-width: 991px) {
  .page-p {
    padding: 30px 0 40px;
  }
}

.page-m {
  margin: 45px 0 60px;
}

@media (max-width: 991px) {
  .page-m {
    margin: 30px 0 40px;
  }
}

.content-box > *:not(:last-child) {
  margin-bottom: 16px;
}

.content-box ul,
.content-box li {
  list-style: disc;
}

.content-box li {
  margin-left: 35px;
  line-height: 1.4;
}

.content-box li:not(:last-child) {
  margin-bottom: 3px;
}

.content-box img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.content-box h2,
.content-box h3,
.content-box h4,
.content-box h5,
.content-box h6 {
  font-weight: 600;
  line-height: 1.2;
}

.content-box h2:not(:first-child),
.content-box h3:not(:first-child),
.content-box h4:not(:first-child),
.content-box h5:not(:first-child),
.content-box h6:not(:first-child) {
  padding-top: 10px;
}

.content-box h2 {
  font-size: 32px;
}

.content-box h3 {
  font-size: 24px;
}

.content-box h4 {
  font-size: 20px;
}

.content-box h5 {
  font-size: 16px;
}

.content-box h6 {
  font-size: 14px;
}

@media (max-width: 575px) {
  .content-box h2 {
    font-size: 26px;
  }

  .content-box h3 {
    font-size: 20px;
  }

  .content-box h4 {
    font-size: 18px;
  }
}

.p-0 {
  padding: 0;
}

.p-page {
  padding-bottom: 70px;
}

@media (max-width: 991px) {
  .p-page {
    padding-bottom: 40px;
  }
}

.content-box .alignright {
  float: right;
  margin-bottom: 16px;
}

.content-box .alignleft {
  float: left;
  margin-bottom: 16px;
}

@media (min-width: 481px) {
  .content-box .alignright {
    padding-left: 16px;
  }

  .content-box .alignleft {
    padding-right: 16px;
  }
}

.content-box ol li {
  list-style: decimal;
}

.content-box a {
  text-decoration: underline;
}

.content-box a:hover {
  text-decoration: none;
}

/* .content-box > h1 {
  margin-bottom: 20px !important;
} */
.content-box table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-top: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-left: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.content-box table td {
  padding: 3px;
  border-right: 1px solid rgba(0, 0, 0, 0.2470588235);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2470588235);
}

.mob-menu-overlay {
  display: none;
  position: absolute;
  z-index: 105;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 34, 34, 0.75);
}

.mob-menu {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 100%;
  width: 100%;
  max-width: 375px;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition:
    transform 0.5s,
    -webkit-transform 0.5s;
}

.mob-menu._show {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.mob-menu__close-btn {
  padding: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
  line-height: 0;
}

.mob-menu__close-btn::before {
  content: "\e900";
  display: inline-block;
  font-family: "gulp";
  color: inherit;
  line-height: 1;
  font-size: 20px;
}

.success__inner {
  height: 400px;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.form {
  --label-color: rgba(0, 0, 0, 0.4);
  --label-bg: var(--background-color);
  --input-color: #000;
  --input-bg: #fff;
  --input-height: 55px;
  --rect-color: var(--pink-color);
  --rect-arrow-color: #fff;
  --border-color: #ccc;
  width: 100%;
}

.form__title {
  margin-bottom: 25px;
}

.form__agreement-box {
  font-size: 14px;
  line-height: 1.2;
}

.form__agreement-box input[type="checkbox"] {
  visibility: hidden;
  opacity: 0;
}

.form__agreement-box .agreement__label {
  font-size: 13px;
}

.form__fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 15px;
}

.form__field {
  position: relative;
  width: 100%;
}

.form__field._file label {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.form__field._file label::after {
  content: "\e90c";
  display: inline-block;
  font-family: "icomoon";
  line-height: 1;
  font-size: 16px;
  margin-right: 10px;
}

.form__field.input-active label {
  top: -10px;
  left: 20px;
}

.form__field.input-active label::after {
  display: none;
}

.form__field textarea {
  padding-top: 10px;
  overflow: auto;
  outline: none;
  resize: none;
  height: 100px;
}

.form__input {
  padding: 0 20px;
  width: 100%;
  height: var(--input-height);
  background: var(--input-bg);
  color: var(--input-color);
  border: 1px solid var(--border-color);
}

.form__label {
  padding: 0 5px;
  font-weight: 300;
  font-size: 14px;
  line-height: 19px;
  background: var(--label-bg);
  color: var(--label-color);
  position: absolute;
  left: 20px;
  top: 17px;
  cursor: text;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: inline-block;
  border-radius: 2px;
}

.form__label.form__label--required::after {
  content: "*";
  display: block;
  position: absolute;
  color: var(--rect-color);
  right: -8px;
  top: -5px;
}

.form__btn {
  margin-top: 20px;
  width: 200px;
}

@media (max-width: 575px) {
  .form__btn {
    width: 100%;
  }
}

.agreement {
  position: relative;
  left: 25px;
  width: calc(100% - 25px);
}

.agreement a {
  text-decoration: underline;
}

.agreement .agreement__rect {
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #89578d;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: -25px;
}

.agreement.checkbox-active .agreement__rect {
  overflow: hidden;
}

.agreement.checkbox-active .agreement__rect::after {
  content: "\e902";
  display: inline-block;
  font-family: "gulp";
  line-height: 1;
  font-size: 18px;
  color: var(--rect-arrow-color);
  background: var(--rect-color);
  width: 17px;
  height: 17px;
  border-radius: 3px;
  top: -2px;
  left: -2px;
  position: absolute;
}

.e404-page {
  height: 400px;
  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;
  text-align: center;
}

.e404-page__link {
  margin: 0 auto;
  max-width: 220px;
}

.ic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ic::before,
.ic::after {
  display: inline-block;
  font-family: "icomoon";
  line-height: 1;
  font-size: 16px;
}

.s-pagination {
  text-align: center;
  margin-top: 20px;
  display: none;
  line-height: 0;
}

@media (max-width: 991px) {
  .s-pagination {
    display: block;
  }
}

.s-pagination span {
  background: #064497;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.s-pagination.swiper-pagination-lock {
  display: none;
}

.s-scrollbar {
  height: 2px;
  background: #e6e6e6;
  margin-top: 40px;
}

@media (max-width: 575px) {
  .s-scrollbar {
    margin-top: 20px;
  }
}

.s-scrollbar .swiper-scrollbar-drag {
  background: #89578d;
}

.zoom-bg:hover::after {
  opacity: 1;
  visibility: visible;
}

.zoom-bg::after {
  content: "\e901";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "gulp";
  line-height: 1;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.6980392157);
  background: rgba(0, 0, 0, 0.2392156863);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  pointer-events: none;
}

.page-head {
  color: #1e1e1e;
}

.page-head--p {
  padding: 40px 0;
}

@media (max-width: 991px) {
  .page-head--p {
    padding: 20px 0;
  }
}

.page-head--m {
  margin: 40px 0;
}

@media (max-width: 991px) {
  .page-head--m {
    margin: 20px 0;
  }
}

.page-head .s-title {
  margin-top: 25px;
}

@media (max-width: 991px) {
  .page-head .s-title {
    margin-top: 15px;
  }
}

.aioseo-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
}

.aioseo-breadcrumbs > span {
  opacity: 1;
}

.aioseo-breadcrumbs > span:last-child {
  opacity: 0.35;
}

.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  opacity: 0.35;
}

.plyr {
  height: 100%;
  --plyr-color-main: #fff;
}

.plyr--stopped video {
  -o-object-fit: cover;
  object-fit: cover;
}

.plyr__poster {
  background-size: cover;
}

.plyr > button.plyr__control::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.22;
}

.plyr > button.plyr__control svg {
  fill: #ffca42;
}

.plyr .plyr__control svg {
  fill: #ffca42;
}

.sect-reviews__item-video .plyr--stopped .plyr__controls {
  display: none;
}

[class*="gototech"],
[class*="gototaxi"],
[class*="copyright__wrap"] {
  display: none !important;
}

.SumoSelect {
  cursor: pointer;
}

.SumoSelect .CaptionCont {
  padding: 19px 30px 19px 20px;
  width: 100%;
  height: var(--input-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000;
  border-radius: 0;
  border: 1px solid #000;
  background: transparent;
}

.SumoSelect .CaptionCont span {
  padding: 0;
  margin: 0;
}

.SumoSelect .CaptionCont label {
  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;
}

.SumoSelect .CaptionCont label::before {
  content: "\e903";
  font-family: "gulp";
  font-size: 20px;
  line-height: 1;
  display: inline-block;
}

.SumoSelect .CaptionCont label i {
  display: none;
}

.SumoSelect .CaptionCont span.placeholder {
  color: #636363;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.SumoSelect.open > .optWrapper {
  top: 55px;
  border-radius: 0;
  border: 1px solid #ccc;
  background: none;
}

.SumoSelect > .optWrapper > .options {
  color: #000;
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt {
  padding: 10px;
  background: #fff;
  border-bottom: 1px solid rgba(121, 121, 121, 0.5);
  border-radius: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.SumoSelect > .optWrapper > .options li.opt:first-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:last-child {
  border-radius: 0;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
  background-color: #ccc;
}

.nav-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

@media (max-width: 991px) {
  .nav-box {
    display: none;
  }
}

.nav-left,
.nav-right {
  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: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(137, 87, 141, 0.3);
  cursor: pointer;
  pointer-events: all;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.nav-left.swiper-button-lock,
.nav-right.swiper-button-lock {
  display: none;
}

.nav-left::before,
.nav-right::before {
  content: "\e900";
  position: relative;
  font-family: "icomoon";
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  color: #89578d;
  right: 1px;
}

.nav-left.swiper-button-disabled,
.nav-right.swiper-button-disabled {
  cursor: default;
  opacity: 0.5;
}

.nav-right::before {
  content: "\e901";
  left: 1px;
}

.btn {
  padding: 13px 22px;
  display: inline-block;
  color: #fff;
  background: #89578d;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn:hover {
  color: #fff;
  background: #c19cc4;
}

.btn--more {
  /* padding: 8px 22px; */
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* background: #fff; */
  /* color: rgba(0, 0, 0, 0.53); */
  /* border: 1px solid rgba(17, 60, 103, 0.25); */
  /* border-radius: 3px; */
  margin: 40px auto 0;
}

@media (max-width: 991px) {
  .btn--more {
    margin: 30px auto 0;
  }
}

/* .btn--more:hover {
  background: #f8f8f8;
  color: rgba(0, 0, 0, 0.53);
} */

[class^="icon-"]::before {
  position: relative;
  /* top: 1px; */
}

.s-title {
  font-weight: 500;
  font-size: 40px;
  color: #1e1e1e;
  line-height: 1;
}

@media (max-width: 991px) {
  .s-title {
    font-size: 28px;
  }
}

.sub-title {
  font-size: 25px;
  font-weight: 500;
  color: #1e1e1e;
  margin-bottom: 30px;
}

.sect-top {
  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;
  gap: 15px;
  margin-bottom: 45px;
}

@media (max-width: 991px) {
  .sect-top {
    margin-bottom: 25px;
  }
}

.bg-or {
  background: #fcf8f5;
}

.g-color {
  color: rgba(0, 0, 0, 0.5);
}

.header {
  height: 174px;
  z-index: 10;
  /* далее код после скролла */
}

@media (max-width: 991px) {
  .header {
    height: 66px;
  }
}

.header .hamburger {
  line-height: 0;
}

.header .hamburger__wrapper {
  display: none;
  line-height: 0;
}

@media (max-width: 991px) {
  .header .hamburger__wrapper {
    display: block;
  }
}

.header .hamburger .hamburger-inner,
.header .hamburger .hamburger-inner::before,
.header .hamburger .hamburger-inner::after {
  background-color: #000;
}

.header__wrap {
  z-index: 20;
}

.header__wrap._fx {
  color: #fff;
}

.header__wrap._fx .header__top {
  background: none;
}

.header__wrap._fx .header__top-inner {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header__wrap._fx .header__bottom {
  background: none;
}

.header__wrap._fx .header__logo ._wh {
  display: block;
}

.header__wrap._fx .header__logo ._bk {
  display: none;
}

.header__wrap._fx .hamburger-inner,
.header__wrap._fx .hamburger-inner::before,
.header__wrap._fx .hamburger-inner::after {
  background-color: #fff;
}

.header__wrap._fx + .main .page-head {
  position: absolute;
  top: 160px;
  width: 100%;
  z-index: 2;
  background: none;
  color: #fff;
}

@media (max-width: 991px) {
  .header__wrap._fx + .main .page-head {
    top: 70px;
  }
}

.header__top {
  background: #fcf8f6;
}

.header__top-inner {
  padding: 22px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .header__top-inner {
    padding: 10px 0;
  }
}

.header__top-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

@media (max-width: 991px) {
  .header__address {
    display: none;
  }
}

.header__logo img {
  height: 62px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .header__logo img {
    height: 45px;
  }
}

.header__logo ._wh {
  display: none;
}

.header__top-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.header__tel {
  font-size: 24px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .header__tel {
    font-size: 0;
  }

  .header__tel::before {
    content: "\f095";
    font-family: "gulp";
    line-height: 1;
    font-size: 24px;
  }
}

.header__bottom {
  background: #252525;
  color: #fff;
}

@media (max-width: 991px) {
  .header__bottom {
    display: none;
  }
}

.header__bottom-inner {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__bottom-left {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.header__bottom-right {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.header__nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}

.header__nav-menu ul a {
  white-space: nowrap;
}

.header__catalog-link {
  font-weight: 500;
}

.header__catalog-link span::before {
  margin-right: 15px;
}

.header__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.header__social {
  font-size: 25px;
  line-height: 1;
}

.header .has-sub-menu {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}

.header .has-sub-menu > a::after {
  content: "\e903";
  font-family: "gulp";
  font-size: 24px;
  line-height: 0.8;
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.header .has-sub-menu:hover .sub-menu-wrap {
  visibility: visible;
}

.header .has-sub-menu:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.header .has-sub-menu:hover .sub-menu li a {
  font-weight: 400;
  z-index: 2;
}

.header .has-sub-menu:hover .sub-menu li a:hover {
  color: #fff;
  text-decoration: underline;
}

.header .has-sub-menu:hover a::after {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.header .sub-menu-wrap {
  top: 0;
  padding-top: 40px;
  position: absolute;
  visibility: hidden;
}

@media (max-width: 1199px) {
  .header .sub-menu-wrap {
    position: static;
    visibility: visible;
    display: none;
  }
}

.header .sub-menu {
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5019607843);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .header .sub-menu {
    width: auto;
    visibility: visible;
    opacity: 1;
    background: transparent;
    padding-left: 20px;
  }
}

.header .sub-menu li:not(:first-child) {
  padding-top: 7px;
}

.header .sub-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(204, 204, 204, 0.4196078431);
  padding-bottom: 7px;
}

.header .sub-menu li a {
  display: block;
  position: relative;
  color: #000;
}

.header__fxd {
  position: absolute;
  left: 0;
  right: 0;
}

.header__fxd._fixed {
  position: fixed;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}

.header__fxd._fixed .hamburger-inner,
.header__fxd._fixed .hamburger-inner::before,
.header__fxd._fixed .hamburger-inner::after {
  background-color: #000;
}

.header__fxd._fixed .header__logo img {
  display: none;
}

.header__fxd._fixed .header__logo ._wh {
  display: none;
}

.header__fxd._fixed .header__logo ._bk {
  display: block;
}

.header__fxd._fixed .header__top {
  background: #fff;
  color: #000;
}

.header__fxd._fixed .header__top-inner {
  padding: 5px 0;
  border-color: transparent;
}

.header__fxd._fixed .header__bottom {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: -1;
  position: absolute;
  left: 0;
  right: 0;
  background: #252525;
}

.header__fxd._fixed .header__bottom-inner {
  padding: 8px 0;
}

.header__fxd._fixed:hover .header__bottom {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__fxd._show {
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__fxd._show .header__bottom {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transition:
    transform 0.5s ease,
    -webkit-transform 0.5s ease;
}

.mob-menu {
  color: #000;
  background: #fff;
  text-align: center;
}

.mob-menu__wrapper {
  padding: 30px 0;
}

.mob-menu__wrapper ._row {
  padding: 20px 0;
  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;
  gap: 7px;
}

.mob-menu__wrapper ._row:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.mob-menu__logo img {
  width: 100%;
  max-width: 180px;
}

.mob-menu__tel {
  font-weight: 500;
  font-size: 24px;
}

.mob-menu__nav-menu ul {
  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;
  font-size: 18px;
}

.mob-menu__nav-menu ul li.current-menu-item {
  color: var(--pink-color);
  font-weight: 700;
}

.mob-menu__socials-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.mob-menu__socials-box a {
  font-size: 40px;
  line-height: 1;
}

.mob-menu a {
  text-decoration: none;
}

.footer {
  padding: 70px 65px;
  background: var(--pink-color);
  color: #fff;
}

@media (max-width: 991px) {
  .header__fxd._fixed .header__tel {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #accf60;
    color: white;
  }

  .footer {
    padding: 50px 0;
  }
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 991px) {
  .footer__inner {
    -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;
    text-align: center;
  }
}

.footer__col {
  max-width: 320px;
}

@media (max-width: 991px) {
  .footer__col._ac .footer__col-title::after {
    content: "\e903";
    position: absolute;
    top: calc(50% + 2px);
    right: -25px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    font-family: "gulp";
    line-height: 1;
    font-size: 16px;
    margin-left: 12px;
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }

  .footer__col._ac._active .footer__col-title::after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
  }
}

.footer__logo {
  display: inline-block;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footer__logo {
    margin-bottom: 0;
  }
}

.footer__logo img {
  width: 136px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer__about {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .footer__about {
    display: none;
  }
}

.footer__about ._fade {
  opacity: 0.5;
}

.footer__about._mob {
  display: none;
}

@media (max-width: 991px) {
  .footer__about._mob {
    display: block;
  }
}

.footer__cards {
  height: 34px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .footer__cards {
    display: none;
  }
}

.footer__cards._mob {
  display: none;
}

@media (max-width: 991px) {
  .footer__cards._mob {
    display: inline-block;
  }
}

.footer__col-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 40px;
  position: relative;
}

@media (max-width: 991px) {
  .footer__col-title {
    margin-bottom: 0;
    margin: 0 auto;
  }
}

@media (max-width: 991px) {
  .footer__col-content {
    margin-top: 20px;
  }
}

.footer__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 991px) {
  .footer__menu ul {
    font-size: 16px;
  }
}

.footer__row:not(:last-child) {
  margin-bottom: 30px;
}

.footer__row p:not(:last-child) {
  margin-bottom: 12px;
}

.footer__tel {
  display: block;
  font-size: 24px;
}

.footer__email {
  display: block;
  opacity: 0.4;
}

.footer__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #fff;
}

@media (max-width: 991px) {
  .footer__socials {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__socials a {
  display: inline-block;
  width: 25px;
  height: 25px;
  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;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .footer__socials a {
    width: 40px;
    height: 40px;
  }
}

.footer__socials a::before {
  font-family: "icomoon";
  line-height: 1;
  font-size: 13px;
}

@media (max-width: 991px) {
  .footer__socials a::before {
    font-size: 20px;
  }
}

.footer__socials a._tt {
  background-color: #000;
}

.footer__socials a._tt::before {
  content: "\e90c";
}

.footer__socials a._yt {
  background-color: #ed3131;
}

.footer__socials a._yt::before {
  content: "\e90e";
}

.footer__socials a._tg {
  padding-top: 2px;
  padding-right: 1px;
  background-color: #039be5;
}

.footer__socials a._tg::before {
  content: "\e90b";
}

.footer__socials a._vk {
  padding-top: 2px;
  background-color: #0161a2;
}

.footer__socials a._vk::before {
  content: "\e90d";
}

.footer__socials a._inst {
  background-color: #fe0f66;
}

.footer__socials a._inst::before {
  content: "\e90a";
}

.footer__socials a._max {
  background: linear-gradient(
    90deg,
    rgba(63, 194, 253, 1) 0%,
    rgba(48, 66, 241, 1) 50%,
    rgba(166, 91, 220, 1) 100%
  );
}

.footer__socials a._max::before {
  content: "\e911";
}

.bann__inner {
  position: relative;
}

.bann .swiper-slide {
  background: no-repeat center/cover;
  position: relative;
  color: #fff;
}

.bann .swiper-slide::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.bann .swiper-slide__inner {
  padding: 235px 0 50px;
  min-height: 670px;
  text-align: center;
  position: relative;
}

.bann h1 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.bann__descr {
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  max-width: 860px;
  margin: 30px auto 35px auto;
}

.bann__btn {
  display: block;
  margin: 30px auto 0;
  max-width: 275px;
  width: 100%;
}

@media (max-width: 991px) {
  .bann .swiper-slide__inner {
    padding: 150px 0 50px;
    min-height: 400px;
  }

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

@media (max-width: 743px) {
  .bann__descr {
    font-size: 18px;
  }
}

.bann .swiper-slide__inner h1,
.bann .swiper-slide__inner h2,
.bann .swiper-slide__inner .h2 {
  font-size: 48px;
}

@media (max-width: 991px) {
  .bann .swiper-slide__inner h1,
  .bann .swiper-slide__inner h2,
  .bann .swiper-slide__inner .h2 {
    font-size: 36px;
  }
}

.bann__swiper-box {
  position: relative;
}

.bann__swiper-box .nav-box {
  position: absolute;
  bottom: 90px;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
}

.bann__swiper-box .nav-box__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bann__swiper-box .nav-box .nav-left::before,
.bann__swiper-box .nav-box .nav-right::before {
  color: #fff;
  font-family: "icomoon";
  font-size: 66px;
  font-weight: 400;
}

.bann__swiper-box .nav-box .nav-left::before {
  content: "\e900";
}

.bann__swiper-box .nav-box .nav-right::before {
  content: "\e901";
}

.bann__swiper-box .s-pagination {
  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;
  position: absolute;
  bottom: 100px;
  z-index: 1;
}

@media (max-width: 991px) {
  .bann__swiper-box .s-pagination {
    bottom: 20px;
  }
}

.bann__swiper-box .s-pagination span {
  background: #fff;
}

.bann__adv {
  padding: 15px 10px 10px;
  gap: 30px;
  position: absolute;
  width: 1145px;
  max-width: calc(100vw - 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  background: #fcf8f5;
  border-radius: 4px 4px 0 0;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

@media (max-width: 1200px) {
  .bann__adv {
    display: none;
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .bann__adv {
    padding: 30px 15px;
    position: relative;
    border-radius: 0;
    justify-content: center;
    gap: 10px;
  }
}

body:not(.home) .bann__adv {
  display: none;
}

.bann__adv-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bann__adv-item img {
  width: 20px;
  height: 20px;
}

@media (max-width: 575px) {
  .bann__adv-item {
    width: 100%;
  }
}

.bann__adv-icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.bann__adv-icon img {
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}

.bann__adv-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ece2d9;
  border-radius: 50%;
}

.bann__adv-text {
  font-size: 16px;
}

.card {
  padding: 20px;
  background: rgba(236, 226, 217, 0.26);
  border-radius: 3px;
}

@media (max-width: 991px) {
  .card {
    padding: 10px;
  }
}

.card__img {
  display: block;
  border-radius: 3px;
  margin-bottom: 20px;
  overflow: hidden;
}

.card__img:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

@media (max-width: 991px) {
  .card__img {
    margin-bottom: 12px;
  }
}

.card__img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform;
}

@media (max-width: 575px) {
  .card__img {
    height: 250px;
  }
}

.card__title {
  font-weight: 500;
  font-size: 18px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

@media (max-width: 991px) {
  .card__title {
    margin-bottom: 12px;
  }
}

.card__desc {
  opacity: 0.8;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .card__desc {
    margin-bottom: 12px;
  }
}

.card__price-box {
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  .card__price-box {
    margin-bottom: 12px;
  }
}

.card__price {
  font-weight: 500;
  font-size: 18px;
  color: #89578d;
}

.card__time:not(:first-child) {
  padding-left: 30px;
}
.card__time {
  font-weight: 500;
  font-size: 18px;
  color: #ab3b61;
}

.card__time span {
  padding-right: 10px;
}

@media (max-width: 575px) {
  .card__link {
    width: 100%;
  }
}

.sect-catalog {
  background: #fcf8f5;
}

.page-template-template-catalog .sect-catalog {
  padding-top: 15px;
}

.sect-catalog__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 991px) {
  .sect-catalog__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .sect-catalog__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 15px;
  }
}

.home .sect-catalog__grid .card:nth-child(n + 7) {
  display: none;
}

.page-id-76 .sect-catalog__grid .card:nth-child(n + 13) {
  display: none;
}

.sect-adv {
  padding: 40px 0 70px;
  background: #fcf8f5;
}

@media (max-width: 991px) {
  .sect-adv {
    padding: 40px 0;
  }
}

.sect-adv__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 767px) {
  .sect-adv__grid {
    -ms-grid-columns: (minmax(0, 1fr)) [1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
}

.sect-adv__item {
  text-align: center;
}

.sect-adv__icon {
  width: 55px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .sect-adv__icon {
    margin-bottom: 15px;
  }
}

.sect-adv__title {
  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;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2b2a28;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .sect-adv__title {
    margin-bottom: 15px;
  }
}

.sect-adv__desc {
  font-weight: 500;
  opacity: 0.6;
  max-width: 270px;
  margin: 0 auto;
}

.sect-grid__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  -ms-grid-rows: 175px 309px 175px;
  grid-template-rows: 175px 309px 175px;
  gap: 16px 24px;
  grid-auto-flow: column;
}

@media (max-width: 1399px) {
  .sect-grid__inner {
    gap: 10px;
  }
}

@media (max-width: 991px) {
  .sect-grid__inner {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-auto-flow: row;
  }
}

@media (max-width: 575px) {
  .sect-grid__inner {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
}

.sect-grid__item {
  position: relative;
  padding: 25px;
  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-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  color: #fff;
  background: no-repeat center/cover;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

@media (max-width: 767px) {
  .sect-grid__item {
    padding: 15px;
  }
}

.sect-grid__item:not(._logo)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    color-stop(20%, rgba(0, 0, 0, 0.5)),
    color-stop(70%, rgba(0, 0, 0, 0))
  );
  background: -o-linear-gradient(
    bottom,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 20%,
    rgba(0, 0, 0, 0) 70%
  );
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.5) 20%,
    rgba(0, 0, 0, 0) 70%
  );
}

@media (max-width: 991px) {
  .sect-grid__item {
    height: 250px;
  }
}

.sect-grid__item img {
  width: 100%;
  height: 100%;
}

.sect-grid__item:nth-child(1) {
  -ms-grid-column-span: 2;
  grid-column: span 2;
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media (max-width: 991px) {
  .sect-grid__item:nth-child(1) {
    grid-column: auto;
    grid-row: auto;
  }
}

.sect-grid__item._logo {
  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;
  background: #fcf8f5;
}

.sect-grid__item._logo img {
  width: 100%;
  height: auto;
  max-width: 120px;
}

.sect-grid__item:nth-child(4) {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

@media (max-width: 991px) {
  .sect-grid__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
}

.sect-grid__item-title {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
}

.sect-grid__item-desc {
  max-width: 400px;
  position: relative;
}

.news-card {
  padding: 20px;
  background: #fcf8f5;
}

@media (max-width: 575px) {
  .news-card {
    padding: 15px;
  }
}

.news-card__img {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .news-card__img {
    margin-bottom: 15px;
  }
}

.news-card__img:hover img {
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
}

.news-card__img img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  will-change: transform;
}

@media (max-width: 767px) {
  .news-card__img img {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .news-card__img img {
    height: 260px;
  }
}

.news-card__title {
  font-weight: 500;
  font-size: 18px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

.news-card__date {
  opacity: 0.5;
}

.sect-reviews {
  overflow: hidden;
}
.sect-reviews .swiper {
  overflow: visible;
}

.sect-reviews__item {
  padding: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 10px;
  background: #fff;
  color: #000;
  width: 315px !important;
}

@media (max-width: 1199px) {
  .sect-reviews__item {
    padding: 20px;
  }
}

.sect-reviews__item-name {
  color: #2b2a28;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 15px;
}

@media (max-width: 575px) {
  .sect-reviews__item-name {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.sect-reviews__item-rating-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
}

@media (max-width: 575px) {
  .sect-reviews__item-rating-box {
    margin-bottom: 15px;
  }
}

.sect-reviews__item-rating {
  background: url("../img/svg/star-icon.svg") no-repeat center/contain;
  width: 20px;
  height: 18px;
}

.sect-reviews__item-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.53;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .sect-reviews__item-text {
    margin-bottom: 10px;
  }
}

.sect-reviews__item-video {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .sect-reviews__item-video {
    margin-bottom: 10px;
  }
}

.sect-reviews__item-video video {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.sect-reviews__item-gallery {
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .sect-reviews__item-gallery {
    margin-bottom: 10px;
  }
}

.sect-reviews__item-gallery a:nth-child(n + 2) {
  display: none;
}

.sect-reviews__item-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.sect-reviews__item-date span {
  color: #ffca42;
  font-size: 16px;
}

.sect-individual {
  overflow: hidden;
  padding-top: 90px;
  background: #fcf8f5;
}

@media (max-width: 767px) {
  .sect-individual {
    padding-top: 0;
    margin: 40px 0;
  }
}

.sect-individual__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

@media (max-width: 767px) {
  .sect-individual__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.sect-individual__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  left: -5000px;
  right: -5000px;
  background: #fff;
}

.sect-individual__content {
  padding: 70px 15px 70px 0;
  width: 50%;
  position: relative;
  background: #fff;
  border-radius: 4px;
  z-index: 2;
}

@media (max-width: 767px) {
  .sect-individual__content {
    padding: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}

.sect-individual__logo {
  width: 120px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .sect-individual__logo {
    margin-bottom: 20px;
  }
}

.sect-individual__title {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .sect-individual__title {
    margin-bottom: 20px;
  }
}

.sect-individual__desc {
  font-size: 20px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .sect-individual__desc {
    margin-bottom: 20px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .sect-individual__btn {
    width: 100%;
  }
}

.sect-individual__bg {
  width: calc(50% + 65px);
  position: relative;
  margin-top: -90px;
  margin-left: -65px;
}

@media (max-width: 767px) {
  .sect-individual__bg {
    width: 100%;
    margin: 0;
  }
}

.sect-individual__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .sect-individual__bg img {
    max-height: 350px;
  }
}

.sect-callback__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.sect-callback__title {
  text-transform: none;
}

.product-main {
  padding-top: 0;
}

.product-main__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px 55px;
}

@media (max-width: 991px) {
  .product-main__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.product-main__left {
  width: 50%;
}

@media (max-width: 991px) {
  .product-main__left {
    width: 100%;
  }
}

.product-main__swiper-box {
  position: relative;
}

.product-main .swiper {
  border-radius: 4px;
}

.product-main .swiper-slide img {
  width: 100%;
  height: 345px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 575px) {
  .product-main .swiper-slide img {
    height: 280px;
  }
}

.product-main .s-scrollbar {
  margin-top: 30px;
}

.product-main .nav-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25px;
  width: calc(100% - 50px);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
}

@media (max-width: 575px) {
  .product-main .nav-box {
    left: 10px;
    width: calc(100% - 20px);
  }
}

@media (max-width: 991px) {
  .product-main .nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-main .nav-left,
.product-main .nav-right {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.product-main .nav-left::before,
.product-main .nav-right::before {
  color: #fff;
  font-size: 18px;
}

.product-main__date-box {
  margin-top: 30px;
}

.product-main__date-box .sub-title {
  margin-bottom: 25px;
}

@media (max-width: 991px) {
  .product-main__date-box .sub-title {
    margin-bottom: 15px;
  }
}

.product-main__dates {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  border-top: 1px solid rgba(17, 60, 103, 0.1);
  border-bottom: 1px solid rgba(17, 60, 103, 0.1);
}

.product-main__date {
  padding: 7px 17px;
  color: rgba(0, 0, 0, 0.53);
  border: 1px solid rgba(17, 60, 103, 0.25);
  border-radius: 3px;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 30%;
  flex: 1 0 30%;
  white-space: nowrap;
}

.product-main__date._active {
  background: #89578d;
  font-weight: 500;
  color: #fff;
  border-color: transparent;
}

.product-main__right {
  width: 50%;
}

@media (max-width: 991px) {
  .product-main__right {
    width: 100%;
  }
}

.product-main__title {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .product-main__title {
    margin-bottom: 20px;
  }
}

.product-main .content-box {
  opacity: 0.5;
}

.product-main__price-box {
  margin: 25px 0;
}

.product-main__price-box p {
  margin-top: 10px;
}

.product-main__price {
  font-weight: 500;
  font-size: 25px;
  text-transform: uppercase;
  color: #89578d;
}

.product-main__price-note {
  position: relative;
  bottom: 0.2em;
  opacity: 0.5;
  margin-left: 20px;
}

@media (max-width: 575px) {
  .product-main__price-note {
    display: block;
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  .product-main__order-btn {
    width: 100%;
  }
}

.product-main__anchors {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow-x: auto;
  border-bottom: 1px solid rgba(17, 60, 103, 0.2);
  margin-bottom: 30px;
}

.product-main__anchors.is_stuck {
  padding-top: 15px;
  z-index: 2;
}

@media (max-width: 991px) {
  .product-main__anchors {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

@media (max-width: 575px) {
  .product-main__anchors {
    gap: 20px;
  }
}
.product-main__nav-wrapper {
  margin-bottom: 50px;
}
.product-main__tab-nav {
  border-bottom: none !important;
  margin: 0 !important;
}
.product-main__tab-nav .tab-nav__btn {
  border-bottom: 1px solid rgba(0, 0, 0, 0.4) !important;
}

.tab-nav {
  display: flex;
  border-radius: 0 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.tab-nav__btn {
  position: relative;
  color: #1e1e1e;
  width: fit-content !important;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  padding: 16px 24px;
  flex-shrink: 0;
  white-space: nowrap;
  border-right: 1px solid rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(0, 0, 0, 0.4);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.tab-nav__btn:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.4);
}

.tab-nav__btn:hover {
  background-color: #89578d;
  border-color: #89578d;
  color: white;
}

.tab-nav__btn._active {
  background-color: #89578d;
  border-color: #89578d;
  color: white;
}

.product-main__anchor {
  color: #1e1e1e;
  font-weight: 500;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.product-main__anchor._active {
  color: #89578d;
  opacity: 1;
  -webkit-text-decoration: underline 1px solid #89578d;
  text-decoration: underline 1px solid #89578d;
  text-underline-offset: 25px;
}

.product-main__anchor-content:not(:last-child) {
  margin-bottom: 30px;
}

.product-main__anchor-content .sub-title {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .product-main__anchor-content .sub-title {
    margin-bottom: 15px;
  }
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}

@media (max-width: 1199px) {
  .faq__inner {
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media (max-width: 991px) {
  .faq__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.faq__column {
  width: 100%;
}

.faq__item {
  padding: 20px 0;
  border-top: 1px solid rgba(17, 60, 103, 0.2);
}

@media (max-width: 991px) {
  .faq__item {
    padding: 15px 0;
  }
}

.faq__item._active .faq__item-icon {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.faq__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.faq__item-count {
  color: #1e1e1e;
  font-size: 20px;
  line-height: normal;
  margin-right: 25px;
}

@media (max-width: 991px) {
  .faq__item-count {
    margin-right: 15px;
  }
}

.faq__item-title {
  width: 100%;
  color: #1e1e1e;
  font-size: 18px;
}

.faq__item-icon {
  margin-left: 10px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  will-change: transform;
}

.faq__item-icon::before {
  content: "\e900";
  font-family: "gulp";
  font-size: 14px;
  color: #1e1e1e;
}

.faq__item-content {
  padding-top: 25px;
  color: #1e1e1e;
  font-size: 16px;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .faq__item-content {
    padding-top: 15px;
  }
}

.sect-miniadv__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 991px) {
  .sect-miniadv__inner {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.sect-miniadv__item {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 991px) {
  .sect-miniadv__item {
    padding: 0;
  }
}

.sect-miniadv__item-icon {
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sect-miniadv__item-icon img {
  width: 27px;
  height: 27px;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
}

.sect-miniadv__item-icon::before {
  content: "";
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #ece2d9;
  border-radius: 50%;
}

.sect-miniadv__item-title {
  font-weight: 500;
  font-size: 17px;
  text-align: center;
  color: #000;
}

.sect-miniadv__separator {
  width: 1px;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  background: rgba(17, 60, 103, 0.12);
}

@media (max-width: 991px) {
  .sect-miniadv__separator {
    display: none;
  }
}

.sect-team__content {
  opacity: 0.5;
  margin-bottom: 50px;
}

@media (min-width: 576px) {
  .sect-team__slider .swiper-wrapper {
    align-items: stretch;
  }
}

.sect-team__item {
  padding: 20px;
  background: #fcf8f5;
  border-radius: 3px;
  height: auto;
}

.sect-team__item.more-text-wrap .sect-team__item-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 575px) {
  .sect-team__item {
    padding: 15px;
  }
}

.sect-team__item-img,
.woocommerce .sect-team__item-img {
  width: 100%;
  height: 460px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center top;
  object-position: center top;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  .sect-team__item-img,
  .woocommerce .sect-team__item-img {
    height: 400px;
  }
}

.sect-team__item-name {
  font-weight: 500;
  font-size: 24px;
  color: #1e1e1e;
  line-height: 1;
  margin-bottom: 12px;
}

.sect-team__item-post {
  opacity: 0.5;
}

.sect-team__item-desc {
  margin-top: 20px;
  /* display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
}

@media (max-width: 575px) {
  .sect-team__content {
    margin-bottom: 30px;
  }

  .sect-team__item-img {
    margin-bottom: 12px;
  }

  .sect-team__item-name {
    font-size: 22px;
  }

  .sect-team__item-desc {
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .sect-team__item-img {
    height: 400px;
  }
}

.sect-gallery .sect-grid__item:nth-child(5),
.sect-gallery .sect-grid__item:nth-child(6),
.sect-gallery .sect-grid__item:nth-child(7),
.sect-gallery .sect-grid__item:nth-child(8) {
  grid-column: 1 span;
}

.sect-gallery .sect-grid__item:nth-child(n + 9) {
  display: none;
}

@media (max-width: 576px) {
  .sect-gallery .sect-grid__item:nth-child(n + 5) {
    display: none;
  }
}

.sect-gallery .sect-grid__item::before {
  display: none;
}

.about-intro__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px;
}

.about-intro__img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
}

.about-intro__title {
  margin-bottom: 30px;
}

.about-intro__text {
  opacity: 1;
}

.contacts-main__inner {
  padding: 25px 0 40px;
  min-height: 400px;
  position: relative;
}

@media (max-width: 767px) {
  .contacts-main__inner {
    padding: 0;
  }
}

.contacts-main__content {
  padding: 25px 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .contacts-main__content {
    padding: 0 15px;
    width: 100%;
    margin-bottom: 30px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .contacts-main__content {
    gap: 20px;
  }
}

.contacts-main__tel {
  display: block;
  font-size: 24px;
}

.contacts-main__email {
  display: block;
  color: rgba(30, 30, 30, 0.33);
  margin-top: 5px;
}

.contacts-main .footer__socials {
  margin-top: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.contacts-main__map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .contacts-main__map {
    position: static;
    height: 350px;
  }
}

.news-archive__links {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  border-bottom: 1px solid rgba(17, 60, 103, 0.2);
  margin-bottom: 40px;
  overflow-x: auto;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .news-archive__links {
    padding-bottom: 15px;
    gap: 20px;
    margin-bottom: 20px;
  }
}

.news-archive__links li {
  color: #1e1e1e;
  font-weight: 500;
  opacity: 0.7;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  text-underline-offset: 25px;
}

@media (max-width: 991px) {
  .news-archive__links li {
    text-underline-offset: 20px;
  }
}

.news-archive__links li._active {
  color: #89578d;
  opacity: 1;
  -webkit-text-decoration-color: #89578d;
  text-decoration-color: #89578d;
}

.news-archive__item {
  padding: 20px;
  background: #fcf8f5;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .news-archive__item {
    padding: 10px;
  }
}

.news-archive__img-box img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .news-archive__img-box img {
    height: 300px;
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
  .news-archive__img-box img {
    height: 190px;
    margin-bottom: 10px;
  }
}

.news-archive__title {
  font-weight: 500;
  font-size: 18px;
  color: #1e1e1e;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .news-archive__title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.news-archive__date {
  opacity: 0.5;
}

@media (max-width: 767px) {
  .news-archive__date {
    font-size: 14px;
  }
}

.archive-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr)) [4];
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1199px) {
  .archive-grid {
    -ms-grid-columns: (minmax(0, 1fr)) [3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .archive-grid {
    -ms-grid-columns: (minmax(0, 1fr)) [2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

.news-intro__inner {
  padding: 45px 45px 0;
  min-height: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: #fff;
  position: relative;
}

@media (max-width: 1199px) {
  .news-intro__inner {
    min-height: 400px;
  }
}

@media (max-width: 991px) {
  .news-intro__inner {
    min-height: 350px;
  }
}

@media (max-width: 575px) {
  .news-intro__inner {
    padding: 0;
    min-height: auto;
  }
}

.news-intro__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover;
  border-radius: 4px;
}

@media (max-width: 575px) {
  .news-intro__bg {
    position: static;
    height: 200px;
  }
}

.news-intro__text {
  padding: 25px 30px;
  max-width: 580px;
  background: #fff;
  color: #000;
  border-radius: 4px 4px 0 0;
  margin-top: auto;
  position: relative;
}

@media (max-width: 575px) {
  .news-intro__text {
    padding: 10px;
    background: #efefef;
    border-radius: 0 0 4px 4px;
  }
}

.news-intro__text p {
  opacity: 0.5;
}

.mfp-image-holder .popup__close-btn {
  top: 7px;
  right: -5px;
  color: #fff;
}

[class*="mfp-sideAnim"] .mfp-container.mfp-inline-holder {
  padding: 0;
}

[class*="mfp-sideAnim"].mfp-bg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

[class*="mfp-sideAnim"].mfp-ready.mfp-bg {
  opacity: 0.8;
}

[class*="mfp-sideAnim"].mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-sideAnim-fromLeft .popup {
  -webkit-animation: mfp-from-sideLeft-in 0.4s ease;
  animation: mfp-from-sideLeft-in 0.4s ease;
}

.mfp-sideAnim-fromLeft.mfp-removing .popup {
  -webkit-animation: mfp-from-sideLeft-out 0.4s ease;
  animation: mfp-from-sideLeft-out 0.4s ease;
}

@-webkit-keyframes mfp-from-sideLeft-in {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes mfp-from-sideLeft-in {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes mfp-from-sideLeft-out {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@keyframes mfp-from-sideLeft-out {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@media (max-width: 991px) {
  [class*="mfp-sideAnim"] .mfp-content {
    height: 100%;
  }
}

.popup {
  max-width: 600px;
  padding: 40px;
  margin: 30px auto;
  background: #fff;
  border-radius: 5px;
  position: relative;
  z-index: 10;
}

@media (max-width: 575px) {
  .popup {
    padding: 20px 20px;
    border-radius: 3px;
  }
}

.popup.content {
  max-width: 1000px;
  text-align: left;
}

.popup.content h4 {
  margin-bottom: 15px;
}

.popup.content p {
  margin-bottom: 15px;
  text-align: start;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

.popup.content b {
  font-weight: 700;
  font-size: 16px;
}

.popup__title {
  color: #000;
  font-weight: 700;
  font-size: 22px;
  line-height: 134.9%;
  margin-bottom: 15px;
}

.popup .js-form {
  width: 100%;
  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;
}

.popup .js-form .form-policy a {
  color: red;
}

.popup input {
  width: 100%;
}

.popup__close-btn {
  position: absolute;
  width: 25px;
  height: 25px;
  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;
  top: 15px;
  right: 15px;
}

.popup__close-btn::before {
  content: "\e900";
  display: inline-block;
  font-family: "gulp";
  line-height: 1;
  font-size: 18px;
  pointer-events: none;
}

.popup__tx {
  max-width: 450px;
}

.popup__tx p {
  font-weight: 400;
  font-size: 16px;
}

.popup__video {
  padding: 0;
  width: 100%;
  max-width: 1200px;
  background: none;
}

.popup__video .popup__close-btn {
  color: #fff;
}

@media (max-width: 575px) {
  .popup__video .popup__close-btn {
    display: none;
  }
}

.popup__video .plyr__video-wrapper {
  background: transparent;
  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;
}

.popup__video video {
  width: auto;
  max-width: 100%;
  max-height: 85vh;
}

.popup.mfp-full-h {
  height: 100dvh;
  margin: 0;
}

@media (max-width: 991px) {
  .popup.mfp-full-h {
    height: 100%;
    overflow-y: auto;
  }
}

.wpcf7 form .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7 form .wpcf7-not-valid {
  border: 1px solid rgb(255, 83, 83) !important;
}

.wpcf7-response-output {
  display: none;
}

.bapf_sfilter {
  margin-bottom: 0;
}

.sect-catalog__filters {
  margin-bottom: 30px;
}

.sect-catalog__filters-top-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(17, 60, 103, 0.2);
  margin-bottom: 20px;
}

.sect-catalog__filter._type .bapf_body ul {
  display: flex;
  align-items: center;
  gap: 45px;
  white-space: nowrap;
}

.sect-catalog__filter .bapf_body li label,
.sect-catalog__period-months-item {
  transition: all 0.2s ease;
}

.sect-catalog__filter._type .bapf_body li label {
  font-weight: 500;
  color: #1e1e1e;
  opacity: 0.7;
  line-height: normal;
  position: relative;
}

.sect-catalog__filter._type .bapf_body li.checked label,
.sect-catalog__filter._type .bapf_body li label:hover {
  color: #89578d;
  opacity: 1;
}

.sect-catalog__filter._type .bapf_body li.checked label::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  left: 0;
  width: 100%;
  bottom: -20px;
  background: #89578d;
}

.sect-catalog__filter._type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.berocket_single_filter_widget_85 {
  flex: 1 0 0;
  overflow: hidden;
}

.sect-catalog__next-btn {
  display: none;
  padding: 5px 0;
  font-size: 8px;
  color: var(--pink-color);
}

.sect-catalog__next-btn i {
  font-weight: 700;
}

@media (min-width: 992px) {
  .sect-catalog__next-btn {
    cursor: pointer;
  }
}

.sect-catalog__filter._period .bapf_body ul,
.sect-catalog__period-months {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sect-catalog__filter._period .bapf_body li {
  text-align: center !important;
}

.sect-catalog__filter._period .bapf_body li label,
.sect-catalog__period-months-item {
  display: inline-block !important;
  padding: 8px 35px;
  color: rgba(0, 0, 0, 0.53);
  border: 1px solid rgba(17, 60, 103, 0.25);
  border-radius: 3px;
}

.sect-catalog__period-months-item {
  padding: 8px;
  width: 100%;
  max-width: 90px;
  text-align: center;
}

.sect-catalog__filter._period .bapf_body li.checked label,
.sect-catalog__period-months-item._active {
  color: #fff;
  background: #89578d;
}

.sect-catalog__filter._period .bapf_body li label:hover {
  border: 1px solid rgba(17, 60, 103, 0.75);
}

.sect-catalog__period-months {
  margin-top: 10px;
}

.sect-catalog__period-months-item ._mob {
  display: none;
}

@media (max-width: 1199px) {
  .sect-catalog__filter._type .bapf_body ul {
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .sect-catalog__filters {
    margin-bottom: 20px;
  }

  .sect-catalog__filters-top-wrap {
    flex-direction: column-reverse;
    gap: 5px;
  }

  .sect-catalog__filter-reset {
    text-align: end;
  }

  .sect-catalog__filters-top-wrap {
    padding-bottom: 10px;
  }

  .sect-catalog__filter._type .bapf_body li.checked label::before {
    display: none;
  }

  /* .sect-catalog__filter._type .bapf_body ul {
    overflow-x: auto;
  } */
  .sect-catalog__filter._period .bapf_body ul,
  .sect-catalog__period-months {
    gap: 5px;
  }

  .sect-catalog__filter._period .bapf_body li {
    width: 100%;
  }

  .sect-catalog__filter._period .bapf_body li label,
  .sect-catalog__period-months-item {
    padding: 5px 3px;
    width: 100%;
    font-size: 14px;
  }

  .sect-catalog__period-months-item ._pc {
    display: none;
  }

  .sect-catalog__period-months-item ._mob {
    display: inline;
  }
}

.footer__dev {
  width: fit-content;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .footer__dev {
    margin: 0 auto;
  }
}

.float-btns {
  position: fixed;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 404;
}

.float-btn-wrap {
  position: relative;
}

.float-btn-wrap a {
  text-decoration: none;
}

.whatsapp-button,
.telegram-button,
.phone-button,
.max-button {
  background: #43d854;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  color: #fff;
  text-align: center;
  line-height: 53px;
  font-size: 35px;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.float-btn-wrap svg {
  width: 30px;
  height: auto;
}

.telegram-button {
  color: #2aabee;
  background: #fff;
  font-size: 55px;
}

.phone-button {
  background: #2aabee;
  color: #fff;
}

.max-button {
  background: linear-gradient(
    90deg,
    rgba(63, 194, 253, 1) 0%,
    rgba(48, 66, 241, 1) 50%,
    rgba(166, 91, 220, 1) 100%
  );
}

.whatsapp-button:before,
.whatsapp-button:after,
.telegram-button:before,
.telegram-button:after,
.phone-button:before,
.phone-button:after,
.max-button:before,
.max-button:after {
  content: " ";
  display: block;
  position: absolute;
  border: 50%;
  border: 1px solid #43d854;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  animation: animate 1.5s linear infinite;
  opacity: 0;
  backface-visibility: hidden;
}

.telegram-button:before,
.telegram-button:after {
  border: 1px solid #2aabee;
}

.phone-button:before,
.phone-button:after {
  border: 1px solid #2aabee;
}

.whatsapp-button:after,
.telegram-button:after,
.phone-button:after {
  animation-delay: 0.5s;
}

.max-button:before,
.max-button:after {
  border: 1px solid #3fc2fd;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.sect-partners .swiper-slide {
  width: fit-content;
}

.sect-partners .swiper-slide img {
  height: 60px;
  object-fit: contain;
}

.accent {
  position: relative;
  min-height: 575px;
  padding: 80px 0px;
  color: white;
  z-index: 1;
}

.accent::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  inset: 0;
  z-index: -1;
}

.accent__slider {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2 !important;
}

.accent__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accent__title {
  color: inherit;
  margin-bottom: 300px;
}

.accent__wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
}

.accent__menu {
}

.accent__slide-title {
  font-weight: 400;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 30px;
  transition: opacity 0.2s ease;
}

.accent__nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.accent__nav-btn {
  width: 20px;
  height: 40px;
}

.accent__nav-btn::before {
  font-size: 36px;
  color: white;
}

.accent__slider-fraction {
  font-size: 24px;
  opacity: 0.8;
  width: fit-content !important;
}

.accent__slide-content {
  margin: 0;
  opacity: 0.8;
  max-width: 530px;
  font-size: 22px;
  transition: opacity 0.2s ease;
}

@media (max-width: 991px) {
  .accent__title {
    margin-bottom: 220px;
  }

  .accent__wrapper {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
}

@media (max-width: 743px) {
  .accent {
    min-height: auto;
  }

  .accent__title {
    margin-bottom: 150px;
  }

  .accent__slide-content {
    font-size: 18px;
  }

  .accent__slide-title {
    margin-bottom: 20px;
    font-size: 24px;
  }
}

.offer {
  position: relative;
  padding: 38px 0px;
  z-index: 1;
  color: white;
}

.offer::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.32);
  z-index: -1;
}

.offer__body {
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 25px 40px 40px 40px;
  max-width: 670px;
}

.offer__title {
  color: inherit;
  margin-bottom: 25px;
}

.offer__content {
  margin: 0px 0px 40px 0px;
  font-size: 16px;
}

.offer__btn {
  max-width: 275px;
  width: 100%;
}

@media (max-width: 743px) {
  .offer__body {
    padding: 20px;
  }

  .offer__content {
    margin-bottom: 25px;
  }
}

.sect-individual__form {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sect-individual__form-item {
  flex: 0 1 calc(50% - 7px);
}

.sect-individual__form .wpcf7-spinner {
  order: 5;
}

.sect-individual__input {
  padding: 11px 15px;
  background-color: white;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.4);
  outline: none;
  width: 100%;

  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}

.sect-individual__input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.sect-individual__form-btn {
  padding: 5px;
  min-height: 42px;
  height: 42px !important;
  flex: 0 1 calc(50% - 7px);
}

.sect-individual__btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px;
  color: white;
  font-size: 15px;
  line-height: 120%;
  min-height: 42px;
  flex: 0 1 calc(50% - 7px);
  background-color: #add15f;
}

.sect-individual__btn-social:hover {
  opacity: 0.8;
  color: white;
}

.sect-individual__btn-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #add15f;
}

@media (max-width: 576px) {
  .sect-individual__form-item,
  .sect-individual__btn-social,
  .sect-individual__form-btn {
    flex-basis: 100%;
  }
}

.cases {
  padding: 75px 0px;
}

.cases__container {
  max-width: 1270px;
}

.cases__title {
  margin-bottom: 35px;
}

.cases__body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.cases__gallery {
  position: relative;
  flex: 0 1 685px;
  height: 435px;
}

.cases__video {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.cases__video::before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  inset: 0;
  z-index: 1;
}

.cases__video-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: #c19cc4;
  transition: transform 0.2s ease;
  z-index: 2;
}

.cases__video-btn:hover {
  transform: scale(1.1);
}

.cases__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cases__list {
  display: flex;
  flex-direction: column;
  flex: 0 1 505px;
  gap: 15px;
}

.cases__item {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cases__item-number {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
  width: 75px;
  height: 75px;

  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  border-radius: 100%;
  background-color: #ece2d9;
}

.cases__item-content {
  font-size: 15px;
  margin: 0px;
}

@media (max-width: 1260px) {
  .cases__body {
    flex-direction: column;
  }

  .cases__gallery {
    flex: none;
    max-width: 600px;
    width: 100%;
    height: 350px;
    margin: 0 auto;
  }

  .cases__list {
    flex: none;
    max-width: 700px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .cases__gallery {
    height: 280px;
  }
}

@media (max-width: 419px) {
  .cases__item {
    gap: 15px;
  }
}

.analysis {
  position: relative;
  padding: 50px 0px;
  z-index: 1;
}

.analysis::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.analysis__container {
}

.analysis__item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  max-width: 1245px;
}

.analysis__item:not(:last-child) {
  margin-bottom: 90px;
}

.analysis__item:first-child {
  max-width: 1035px;
}

.analysis__item:last-child {
  justify-content: center;
}

.analysis__item:first-child .analysis__card:first-child::before {
  right: -18px;
  bottom: -18px;
}

.analysis__item:first-child .analysis__card:last-child::before {
  left: -18px;
  bottom: -18px;
}

.analysis__item:nth-child(2) .analysis__card:first-child::before {
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
}

.analysis__item:nth-child(2) .analysis__card:last-child::before {
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}

.analysis__item:last-child .analysis__card::before {
  left: 50%;
  transform: translateX(-50%);
  top: -32px;
}

.analysis__card {
  position: relative;
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  max-width: 360px;
}

.analysis__card::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: #89578d;
  border: 4px solid white;
  width: 18px;
  height: 18px;
}

.analysis__card-title {
  font-weight: 500;
  font-size: 18px;
  margin: 0px 0px 13px 0px;
}

.analysis__card-content {
  margin: 0;
  font-size: 15px;
  line-height: 120%;
}

@media (max-width: 993px) {
  .analysis__item:not(:last-child) {
    margin-bottom: 30px;
  }

  .analysis__card::before {
    display: none;
  }
}

@media (max-width: 743px) {
  .analysis__item {
    flex-wrap: wrap;
    gap: 20px;
  }

  .analysis__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .analysis__card {
    max-width: none;
    width: 100%;
  }
}

.ticker-partners {
  overflow: hidden;
}

.ticker-partners .swiper {
  overflow: visible !important;
}

@media (max-width: 479px) {
  .header__top-right {
    flex: 1;
  }

  .sect-menu .sect-grid__item._logo,
  .sect-menu .sect-grid__item:nth-child(3) {
    display: none;
  }
}

.product-main__bottom {
  margin-top: 50px;
}

[data-tab] {
  display: none;
}

[data-tab]._open {
  display: block;
}

.product-main__bottom-content {
  color: black;
  opacity: 1 !important;
}

.product-main__bottom-content ul {
  padding: 0;
  list-style: none;
  max-width: 760px;
  display: flex;
  gap: 110px;
  row-gap: 16px;
  flex-wrap: wrap;
  margin: 0px 0px 35px 0px !important;
}

.product-main__bottom-content ul li {
  flex: 0 1 calc(50% - 55px);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .product-main__bottom-content ul li {
    flex-basis: 100%;
  }
}

.price {
  background-color: white;
}

.price__title {
  margin-bottom: 50px;
}

.price__table {
  border-radius: 10px;
  overflow: hidden;
}

.price__table thead tr {
  display: flex;
  background-color: #fcf8f5 !important;
}

.price__table th {
  font-size: 15px;
  font-weight: 600;
  padding: 20px 40px;
  text-align: start;
}

.price__table th,
.price__table td {
  flex: 1;
}

.price__table tr {
  display: flex;
  background-color: rgba(0, 0, 0, 0.03);
}

.price__table td {
  padding: 20px 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 22px;
}

.price__table tr:nth-child(odd) {
  background-color: white;
}

@media (max-width: 991px) {
  .price {
    overflow: hidden;
  }

  .price__table-wrapper {
    overflow-x: auto;
    margin: 0 -15px;
  }

  .price__table {
    min-width: 870px;
  }
}

@media (max-width: 743px) {
  .price__title {
    margin-bottom: 25px;
  }

  .price__table th,
  .price__table td {
    padding: 15px 25px;
    flex: 1 !important;
  }
}

.sect-grid__item .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-btn {
  width: 140px;
  height: 140px;
  transition: transform 0.2s ease;
}

.play-btn:hover .play-btn__body::before {
  transform: scale(1.07);
}

.play-btn__body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.play-btn__body::before,
.play-btn__body::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  z-index: -1;
}

.play-btn__body::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  background: url("../img/svg/play.svg") center / 37px auto no-repeat;
  background-color: white;
  transition: transform 0.2s ease;
}

.play-btn__body::after {
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.sect-reviews__head {
  gap: 20px;
  flex-wrap: wrap;
}

.sect-reviews__tab-nav {
  margin-right: auto;
  margin-left: 100px;
}

@media (max-width: 991px) {
  .sect-reviews__tab-nav {
    margin: 0;
  }
}

.sect-policy {
  padding: 75px 0px;
}

.form-policy {
  font-size: 16px;
  margin-top: 15px;
}

.form-policy a {
  text-decoration: underline !important;
}

.form-policy a:hover {
  text-decoration: none !important;
}

.berocket_single_filter_widget_85 .bapf_body ul li {
  width: fit-content;
}
.sect-team__item-desc .more-text {
  color: #89578d;
  font-weight: 600;
}
.more-text-wrap .sect-team__item-desc p {
  display: none;
}
.more-text-wrap .sect-team__item-desc p:nth-child(1),
.more-text-wrap .sect-team__item-desc p:nth-child(2) {
  display: block;
}
.product-main__nav-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-main__nav-next {
  font-size: 16px;
  display: none;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}
.product-main__nav-next:hover {
  color: #89578d;
}
.product-main__nav-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media (max-width: 768px) {
  .product-main__nav-next {
    display: block;
  }
  .product-main__tab-nav .tab-nav__btn {
    position: static;
    padding: 10px;
    background: none;
    border: none;
  }
  .product-main__tab-nav .tab-nav__btn:hover {
    color: #89578d;
  }
  .product-main__tab-nav .tab-nav__btn._active {
    color: #89578d;
  }
}
@media (max-width: 576px) {
  .product-main__nav-next {
    font-size: 12px;
  }
}

.sect-team__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

@media (max-width: 575px) {
  .sect-team__head {
    margin-bottom: 30px;
  }

  .sect-gallery .sect-grid__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sect-gallery .sect-grid__item:first-child {
    grid-column: 3 span;
  }
  .sect-gallery .sect-grid__item {
    grid-column: 1 span;
  }
}

@media (max-width: 480px) {
  .sect-grid__item:nth-child(2),
  .sect-grid__item:nth-child(3),
  .sect-grid__item:nth-child(4) {
    height: auto;
    aspect-ratio: 1/1;
  }
}

.sect-team .nav-box {
  display: flex !important;
}

@media (max-width: 480px) {
  .price__table th:first-child,
  .price__table td:first-child {
    flex: 0 1 190px !important;
  }
}

.wpcf7-form-control-wrap.utm_data[data-name="utm_data"] {
  display: none !important;
  visibility: hidden !important;
}

.s-product-main {
}
.s-product-main__wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
}
.s-product-main__body {
  flex: 0 1 670px;
  overflow: hidden;
}
.s-product-main__gallery {
  width: 100%;
}
.s-product-main__gallery .nav-right,
.s-product-main__gallery .nav-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  z-index: 10;
  background-color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.s-product-main__gallery .nav-right::before {
  left: 1px;
}
.s-product-main__gallery .nav-left::before {
  right: 1px;
}
.s-product-main__gallery .nav-right::before,
.s-product-main__gallery .nav-left::before {
  color: #89578d;
  font-size: 14px;
}
.s-product-main__gallery .nav-left {
  left: 15px;
}
.s-product-main__gallery .nav-right {
  right: 15px;
}
.s-product-main__slider {
  width: 100%;
}
.s-product-main__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 76%;
  box-sizing: border-box;
  height: auto !important;
  transition: opacity 0.2s ease;
}
.s-product-main__slide:hover {
  opacity: 0.8;
}
.s-product-main__slide-img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.s-product-main__thumb-slider {
  width: 100%;
}
.s-product-main__thumb-slide {
  position: relative;
  cursor: pointer;
  height: 112px;
  transition: opacity 0.2s ease;
}
.s-product-main__thumb-slide:hover {
  opacity: 0.9;
}
.s-product-main__thumb-slide::before {
  position: absolute;
  content: "";
  inset: 0;
  border: 3px solid #89578d;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 10;
}
.s-product-main__thumb-slide.swiper-slide-thumb-active::before {
  opacity: 1;
}
.s-product-main__slider-play {
  position: absolute;
  width: 140px;
  height: 140px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.s-product-main__main {
  position: sticky;
  top: 90px;
  font-family: "Inter", sans-serif;
  background: #fcf8f5;
  padding: 35px;
  flex: 0 1 560px;
  color: #1e1e1e;
}
.s-product-main__title {
  font-size: 32px;
  font-weight: 500;
  margin: 0px 0px 12px 0px;
}
.s-product-main__content {
  font-size: 16px;
  line-height: 20px;
  color: rgb(0, 0, 0, 0.5);
  margin: 0px 0px 25px 0px;
}
.s-product-main__price-box {
  margin: 25px 0;
}

.s-product-main__price-box p {
  max-width: 450px;
  font-size: 15px;
  line-height: 20px;
}

.s-product-main__price {
  font-weight: 500;
  font-size: 25px;
  line-height: 32px;
  text-transform: uppercase;
  color: #89578d;
}

.s-product-main__price-note {
  position: relative;
  bottom: 0.2em;
  opacity: 0.5;
  margin-left: 20px;
}

@media (max-width: 1199px) {
  .s-product-main__main {
    padding: 25px;
  }
}

@media (max-width: 991px) {
  .s-product-main__body {
    width: 100%;
    flex: none;
  }
  .s-product-main__gallery {
    max-width: 600px;
    margin: 0 auto;
  }
  .s-product-main__main {
    position: static;
    margin-top: 25px;
  }
  .s-product-main__slider-play {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 575px) {
  .s-product-main__price-note {
    display: block;
    margin-left: 0;
  }
  .s-product-main__thumb-slide {
    height: 80px;
  }
  .s-product-main__main {
    padding: 25px 15px;
  }
  .s-product-main__title {
    font-size: 26px;
  }
}

.s-product-main__consult {
  margin-top: 25px;
}
.s-product-main__consult-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 22px;
}
.s-product-main__form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.s-product-main__form-item {
  width: 100%;
}
.input {
  padding: 11px 15px;
  background-color: white;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.4);
  outline: none;
  width: 100%;

  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
}
.input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.s-product-main__form-btn {
  width: 100%;
}

.s-product-main__input-policy {
  display: none;
}
.s-product-main__input-policy:checked + label div::before {
  content: "\e902";
  display: inline-block;
  font-family: "gulp";
  line-height: 1;
  font-size: 18px;
  color: var(--rect-arrow-color);
  background: var(--rect-color);
  width: 17px;
  height: 17px;
  border-radius: 3px;
  position: absolute;
}
.s-product-main__label-policy {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: rgb(0, 0, 0, 0.4);
}
.s-product-main__label-policy div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  transform: translateY(2px);
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}
.s-product-main__form .wpcf7-spinner {
  display: none;
}

.s-product-main__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 50px;
}
.s-product-main__social-title {
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
  opacity: 0.5;
}
.s-product-main__social-wrapper {
  display: flex;
  gap: 15px;
}
.s-product-main__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: opacity 0.2s ease;
}
.s-product-main__social-btn:hover {
  opacity: 0.8;
}
.s-product-main__social-btn._wa {
  background: #25d366;
}
.s-product-main__social-btn._tg {
  background: linear-gradient(203deg, #37aee2 21.67%, #1e96c8 70%);
}

@media (max-width: 767px) {
  .s-product-main__social {
    margin-top: 25px;
  }
}

.s-product-main__places {
  margin-top: 55px;
}
.s-product-main__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
.s-product-main__places-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 16px;
}
.s-product-main__places-list {
  font-size: 15px;
  line-height: 19.5px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  row-gap: 15px;
}
.s-product-main__places-content {
  font-size: 16px;
  line-height: 19.5px;
  margin-top: 16px;
}
.s-product-main__places-content p:not(:last-child) {
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  .s-product-main__places {
    margin-top: 30px;
  }
  .s-product-main__places-list li {
    grid-column: 2 span;
  }
  .s-product-main__subtitle {
    font-size: 24px;
  }
}

.s-product-main__item {
  margin-top: 25px;
}
.s-product-main__item-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 19.5px;
}
.s-product-main__item-content p:not(:last-child),
.s-product-main__item-content ul:not(:last-child) {
  margin-bottom: 16px;
}
.s-product-main__item-content li {
  position: relative;
  padding-left: 24px;
}
.s-product-main__item-content li::before {
  position: absolute;
  content: "";
  left: 9px;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: currentColor;
}

.s-product-main__conditions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  row-gap: 25px;
  max-width: 545px;
}
.s-product-main__conditions-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
}
.s-product-main__conditions-rect {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  background: #89578d;
  flex-shrink: 0;
}
.s-product-main__conditions-rect img {
  max-width: 90%;
}

.s-product-main__footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;

  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
}

.more-text {
  color: #89578d;
  font-weight: 600;
  margin-top: 15px;
}
.more-text:hover {
  text-decoration: underline;
}

.footer__note {
  font-size: 12px;
  text-align: right;
  margin-top: 10px;
}
@media (max-width: 991px) {
  .footer__note {
    text-align: center;
  }
}

.b-cookie {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 500;
  border: #f7f4ed;
  border-radius: 12px;
  background-color: white;
  box-shadow: 0px 0px 12px -3px rgba(0, 0, 0, 0.25);
  width: 500px;
  max-width: calc(100% - 30px);
  font-size: 15px;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.b-cookie._open {
  opacity: 1;
  transform: translate(0, 0);
  visibility: visible;
}
.b-cookie._hide {
  opacity: 0;
}
.b-cookie__body {
  padding: 15px 20px 20px 20px;
}
.b-cookie__close {
  cursor: pointer;
  width: 20px;
  height: 20px;
  margin: 0px 0px 15px auto;

  transition: opacity .3s ease;
}
.b-cookie__close svg {
  width: 100%;
  height: 100%;
}
.b-cookie__close:hover {
  opacity: 0.7;
}
.b-cookie__content {
  margin: 0;
}
.b-cookie__content a {
  text-decoration: underline;
}
.b-cookie__content a:hover {
  text-decoration: none;
}
.b-cookie__btn {
  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  width: 100%;
  max-width: 100%;
  padding: 12px 20px;
  border-radius: 4px;
  margin-top: 15px;

  user-select: none;
  background-color: #89578d;
  color: white;

  transition: opacity 0.3s ease;
}
.b-cookie__btn:hover {
  opacity: 0.8;
}