:root {
  --color-black: #23282B;
  --color-black--rgb: 35, 40, 43;
  --color-red: #CB504C;
  --color-red--rgb: 203, 80, 76;
  --color-light-red: #CB504C;
  --color-light-red--rgb: 203, 80, 76;
  --color-jet: #826E64;
  --color-jet--rgb: 130, 110, 100;
  --color-smoke: #F3F3F3;
  --color-smoke--rgb: 243, 243, 243;
  --color-gray: #F1F1F1;
  --color-gray--rgb: 241, 241, 241;
  --color-light-gray: #F5F5F5;
  --color-light-gray--rgb: 245, 245, 245;
  --color-dark-gray: #9C9C9C;
  --color-dark-gray--rgb: 156, 156, 156; }

* {
  box-sizing: border-box; }
  *:before, *:after {
    box-sizing: border-box; }
  *:focus {
    outline: 0; }

/* Base */
body, html {
  margin: 0;
  padding: 0;
  height: 100%; }

body {
  font-family: "Gilroy", sans-serif !important;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-black);
  background: #fff; }
  @media (min-width: 768px) {
    body {
      font-size: 24px; } }
  @media (min-width: 1280px) {
    body {
      font-size: 20px; } }
  @media (min-width: 1650px) {
    body {
      font-size: 24px; } }

iframe {
  border: 0; }

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

/* Headers */
h1, .h1, h2, .h2 {
  font-weight: normal;
  line-height: 1.2;
  margin: 0; }

h1, .h1 {
  font-size: 22px; }
  @media (min-width: 768px) {
    h1, .h1 {
      font-size: 36px; } }
  @media (min-width: 1650px) {
    h1, .h1 {
      font-size: 70px !important; } }

h2, .h2 {
  font-size: 24px;
  margin-bottom: 16px; }
  @media (min-width: 1280px) {
    h2, .h2 {
      font-size: 45px;
      line-height: calc(52 / 45);
      margin-bottom: 24px; } }

/* Text */
p {
  margin: 10px 0;
  line-height: calc(24 / 20); }
  p:first-child {
    margin-top: 0; }
  p:last-child {
    margin-bottom: 0; }

a {
  text-decoration: none;
  color: inherit;
  transition: .2s ease; }
  a:hover {
    text-decoration: none;
    color: var(--color-red); }

b, strong {
  font-weight: 700; }

i, em {
  font-style: italic; }

/* Lists */
ul, ol {
  overflow: hidden;
  margin: 10px 0;
  padding-left: 20px;
  list-style-type: disc; }
  ul:first-child, ol:first-child {
    margin-top: 0; }
  ul:last-child, ol:last-child {
    margin-bottom: 0; }

ol {
  list-style-type: decimal; }

svg {
  max-width: 100%;
  max-height: 100%; }

.p0 {
  padding: 0 !important; }

.modal__wrapper {
  border-radius: 20px;
  padding: 20px;
  font-family: "Gilroy", sans-serif;
  max-width: 90%; }
  .modal__wrapper.modal {
    width: 700px;
    text-align: center; }
    .modal__wrapper.modal .form__field {
      width: 350px;
      max-width: 100%; }
  @media (min-width: 1280px) {
    .modal__wrapper {
      border-radius: 40px;
      padding: 80px 55px; } }
  .modal__wrapper b {
    font-weight: 600; }
  .modal__wrapper .fancybox-close-small {
    display: flex;
    align-items: center;
    justify-content: center;
    top: 10px;
    right: 10px; }
    @media (min-width: 768px) {
      .modal__wrapper .fancybox-close-small {
        top: 40px;
        right: 40px; } }
    @media (min-width: 1280px) {
      .modal__wrapper .fancybox-close-small {
        top: 34px;
        right: 34px; } }
    @media (min-width: 1650px) {
      .modal__wrapper .fancybox-close-small {
        top: 52px;
        right: 52px; } }
    .modal__wrapper .fancybox-close-small:after {
      font-family: "Gilroy", sans-serif;
      font-size: 36px;
      color: var(--color-jet);
      width: auto;
      height: auto;
      position: static; }
      @media (min-width: 768px) {
        .modal__wrapper .fancybox-close-small:after {
          font-size: 60px; } }
      @media (min-width: 1280px) {
        .modal__wrapper .fancybox-close-small:after {
          font-size: 50px;
          color: var(--color-black); } }
    .modal__wrapper .fancybox-close-small:hover:after {
      background: none; }
@media (max-width: 767px) {
  .modal__feedback .fancybox-close-small {
    right: 0;
    top: 0; } }
@media (max-width: 767px) {
  .modal__feedback .form__agreement {
    font-size: 12px; } }
.modal__title {
  margin-bottom: 20px;
  font-size: 24px; }
  @media (min-width: 1280px) {
    .modal__title {
      font-size: 45px; } }

.form__fields {
  display: flex;
  gap: 15px;
  flex-direction: column; }
  .form__fields.column {
    flex-direction: column;
    align-items: center; }
  @media (min-width: 1280px) {
    .form__fields {
      flex-direction: row; } }
.form__field {
  flex: none; }
  @media (min-width: 1280px) {
    .form__field {
      width: 250px; } }
  @media (min-width: 1650px) {
    .form__field {
      width: 392px; } }
  .form__field-submit {
    flex-grow: 1; }
    .form__field-submit .btn {
      border-radius: 8px; }
      @media (min-width: 1650px) {
        .form__field-submit .btn {
          height: 100%; } }
  .form__field-radio {
    position: relative;
    cursor: pointer; }
    .form__field-radio input {
      position: absolute;
      opacity: 0;
      visibility: hidden; }
      .form__field-radio input:checked + span:after {
        opacity: 1; }
    .form__field-radio span {
      position: relative;
      padding-left: 27px; }
      .form__field-radio span:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        height: 20px;
        border: 2px solid #c5c5c5;
        border-radius: 50%; }
      .form__field-radio span:after {
        content: '';
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        width: 10px;
        height: 10px;
        background: var(--color-black);
        border-radius: 50%;
        transition: .2s;
        opacity: 0; }
  .form__field-checkbox {
    position: relative;
    cursor: pointer; }
    .form__field-checkbox input {
      position: absolute;
      opacity: 0;
      visibility: hidden; }
      .form__field-checkbox input:checked + span:after {
        opacity: 1; }
    .form__field-checkbox span {
      position: relative;
      padding-left: 42px;
      display: block; }
      @media (min-width: 1650px) {
        .form__field-checkbox span {
          padding-left: 57px; } }
      .form__field-checkbox span:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        border: 1px solid #d1d1d1;
        border-radius: 5px; }
        @media (min-width: 1650px) {
          .form__field-checkbox span:before {
            width: 40px;
            height: 40px; } }
      .form__field-checkbox span:after {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        background: url(images/check.svg) no-repeat 50% 50%;
        background-size: 70%;
        transition: .2s;
        opacity: 0; }
        @media (min-width: 1650px) {
          .form__field-checkbox span:after {
            width: 40px;
            height: 40px; } }
.form__agreement {
  font-size: 14px;
  color: var(--color-jet);
  margin-top: 8px; }
  @media (min-width: 1650px) {
    .form__agreement {
      font-size: 16px;
      margin-top: 16px; } }

::-webkit-input-placeholder {
  color: var(--color-black); }
  @media (min-width: 1280px) {
    ::-webkit-input-placeholder {
      color: var(--color-jet); } }

::-moz-placeholder {
  color: var(--color-black); }
  @media (min-width: 1280px) {
    ::-moz-placeholder {
      color: var(--color-jet); } }

:-moz-placeholder {
  color: var(--color-black); }
  @media (min-width: 1280px) {
    :-moz-placeholder {
      color: var(--color-jet); } }

:-ms-input-placeholder {
  color: var(--color-black); }
  @media (min-width: 1280px) {
    :-ms-input-placeholder {
      color: var(--color-jet); } }

/*::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #555; }
::-webkit-scrollbar-thumb { background: #222; }*/
::-webkit-inner-spin-button {
  display: none; }

::-webkit-calendar-picker-indicator {
  display: none; }

::-webkit-inner-cancel-button {
  display: none; }

::-webkit-clear-button {
  display: none; }

::-webkit-search-cancel-button {
  display: none; }

*::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none; }

*::--webkit-media-controls-play-button {
  display: none !important;
  -webkit-appearance: none; }

*::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none; }

input, textarea, select {
  font: inherit;
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 13px;
  transition: all .2s;
  font-size: 14px;
  border-radius: 18px;
  background: var(--color-gray);
  height: 60px;
  border: 0; }
  @media (min-width: 768px) {
    input, textarea, select {
      font-size: 24px; } }
  @media (min-width: 1280px) {
    input, textarea, select {
      height: auto;
      background: #fff;
      border: 1px solid #d1d1d1;
      border-radius: 8px;
      font-size: 15px; } }
  @media (min-width: 1650px) {
    input, textarea, select {
      font-size: 16px;
      border-radius: 12px;
      height: 60px; } }

button, [type='submit'], [type='reset'] {
  font: inherit;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  text-decoration: none; }
  button.btn, [type='submit'].btn, [type='reset'].btn {
    width: 100%; }

textarea {
  resize: none; }

.control {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-red);
  cursor: pointer;
  transition: .2s;
  width: 40px;
  height: 40px; }
  @media (min-width: 1280px) {
    .control {
      width: 56px;
      height: 56px; } }
  .control svg {
    width: 14px;
    height: 16px;
    fill: var(--color-red);
    transition: .2s; }
  .control.prev svg {
    transform: rotate(180deg); }
  .control.swiper-button-disabled {
    cursor: default; }
    .control.swiper-button-disabled:hover {
      background: none; }
      .control.swiper-button-disabled:hover svg {
        fill: var(--color-red); }
  .control:hover {
    background: var(--color-red); }
    .control:hover svg {
      fill: #fff; }

.slider__controls {
  display: flex;
  align-items: center; }
  @media (min-width: 1280px) {
    .slider__controls {
      gap: 57px;
      flex-grow: 1;
      justify-content: flex-end; } }
  .slider__controls-arrows {
    display: flex;
    align-items: center;
    gap: 26px; }
  .slider__controls-dots {
    width: auto !important;
    gap: 12px; }
    @media (min-width: 1280px) {
      .slider__controls-dots {
        gap: 14px; } }
    @media (min-width: 1650px) {
      .slider__controls-dots {
        gap: 20px; } }
    .slider__controls-dots.swiper-pagination-bullets-dynamic {
      transform: unset !important;
      white-space: normal !important; }
    .slider__controls-dots .swiper-pagination-bullet {
      background: #e7e7e7;
      border-radius: 50%;
      width: 6px;
      height: 6px; }
      @media (min-width: 768px) {
        .slider__controls-dots .swiper-pagination-bullet {
          width: 12px;
          height: 12px; } }
      @media (min-width: 1650px) {
        .slider__controls-dots .swiper-pagination-bullet {
          width: 20px;
          height: 20px; } }
      .slider__controls-dots .swiper-pagination-bullet-active {
        background: #CB504C; }
.slider__container {
  padding: 15px;
  margin: -15px; }
  @media (min-width: 1280px) {
    .slider__container {
      width: 1040px; } }
  @media (min-width: 1650px) {
    .slider__container {
      width: 1480px; } }
  @media (min-width: 1920px) {
    .slider__container {
      width: 1620px;
      margin: 0;
      padding: 0; } }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  border-radius: 8px;
  color: #fff;
  white-space: nowrap;
  transition: all 0.1s ease-out;
  flex: none;
  max-width: 100%;
  text-align: center;
  min-width: 160px;
  padding: 14px 20px;
  font-size: 13px; }
  .btn:hover {
    background: none;
    color: var(--color-black); }
  @media (min-width: 768px) {
    .btn {
      font-size: 20px;
      padding: 18px 50px;
      border-radius: 16px; } }
  @media (min-width: 1280px) {
    .btn {
      font-size: 15px;
      padding: 16px 20px; } }
  @media (min-width: 1650px) {
    .btn {
      font-size: 24px;
      padding: 25px 27px;
      min-width: 256px;
      border-radius: 8px; } }
  @media (min-width: 1280px) {
    .btn__medium {
      padding-top: 15px;
      padding-bottom: 15px; } }
  @media (min-width: 1650px) {
    .btn__medium {
      padding-top: 25px;
      padding-bottom: 25px; } }
  @media (min-width: 1280px) {
    .btn__small {
      padding-top: 10px;
      padding-bottom: 10px; } }
  @media (min-width: 1650px) {
    .btn__small {
      padding-top: 15px;
      padding-bottom: 15px;
      font-size: 16px; } }
  @media (min-width: 1280px) {
    .btn.wide {
      min-width: 250px; } }
  @media (min-width: 1650px) {
    .btn.wide {
      min-width: 390px; } }
  .btn.fluid {
    width: auto; }
  .btn__white {
    background: #fff;
    color: var(--color-black); }
    .btn__white:hover {
      color: #fff;
      background: var(--color-red); }
  .btn__black {
    background: #000;
    border: none;
    color: #fff; }
    .btn__black:hover {
      color: #fff; }
  .btn:active {
    transform: scale(0.95); }
  @media (min-width: 1280px) {
    .btn.mobile {
      display: none; } }

@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Thin.eot");
  src: local("Gilroy Thin"), local("Gilroy-Thin"), url("fonts/Gilroy-Thin.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Thin.woff") format("woff"), url("fonts/Gilroy-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-UltraLight.eot");
  src: local("Gilroy UltraLight"), local("Gilroy-UltraLight"), url("fonts/Gilroy-UltraLight.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-UltraLight.woff") format("woff"), url("fonts/Gilroy-UltraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Light.eot");
  src: local("Gilroy Light"), local("Gilroy-Light"), url("fonts/Gilroy-Light.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Light.woff") format("woff"), url("fonts/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Regular.eot");
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url("fonts/Gilroy-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Regular.woff") format("woff"), url("fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Medium.eot");
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url("fonts/Gilroy-Medium.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Medium.woff") format("woff"), url("fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-SemiBold.eot");
  src: local("Gilroy SemiBold"), local("Gilroy-SemiBold"), url("fonts/Gilroy-SemiBold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-SemiBold.woff") format("woff"), url("fonts/Gilroy-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-Heavy.eot");
  src: local("Gilroy Heavy"), local("Gilroy-Heavy"), url("fonts/Gilroy-Heavy.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-Heavy.woff") format("woff"), url("fonts/Gilroy-Heavy.ttf") format("truetype");
  font-weight: 900;
  font-style: normal; }
@font-face {
  font-family: 'Gilroy';
  src: url("fonts/Gilroy-ExtraBold.eot");
  src: local("Gilroy ExtraBold"), local("Gilroy-ExtraBold"), url("fonts/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"), url("fonts/Gilroy-ExtraBold.woff") format("woff"), url("fonts/Gilroy-ExtraBold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }
/*
 * base on bootstrap 4
 */
/* container */
.container {
  width: 100%;
  max-width: 375px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 7px;
  padding-left: 7px; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 758px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1280px) {
    .container {
      max-width: 1180px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1650px) {
    .container {
      max-width: 1620px;
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1920px) {
    .container {
      max-width: 1830px;
      padding-right: 15px;
      padding-left: 15px; } }

.m-auto {
  margin: auto; }

/* row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -7px;
  margin-left: -7px; }
  @media (min-width: 576px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 768px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 1280px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 1650px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }
  @media (min-width: 1920px) {
    .row {
      margin-right: -15px;
      margin-left: -15px; } }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

/* col */
.col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 7px;
  padding-left: 7px; }
  @media (min-width: 576px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 768px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1280px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1650px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 15px;
      padding-left: 15px; } }
  @media (min-width: 1920px) {
    .col, .col-auto, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col-sm, .col-sm-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md, .col-md-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg, .col-lg-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl, .col-xl-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xxl, .col-xxl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
      padding-right: 15px;
      padding-left: 15px; } }

.col {
  max-width: 100%;
  flex-basis: 0;
  flex-grow: 1; }

.col-auto {
  width: auto;
  max-width: none;
  flex: 0 0 auto; }

.col-1 {
  max-width: 8.3333333333%;
  flex: 0 0 8.3333333333%; }

.col-2 {
  max-width: 16.6666666667%;
  flex: 0 0 16.6666666667%; }

.col-3 {
  max-width: 25%;
  flex: 0 0 25%; }

.col-4 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%; }

.col-5 {
  max-width: 41.6666666667%;
  flex: 0 0 41.6666666667%; }

.col-6 {
  max-width: 50%;
  flex: 0 0 50%; }

.col-7 {
  max-width: 58.3333333333%;
  flex: 0 0 58.3333333333%; }

.col-8 {
  max-width: 66.6666666667%;
  flex: 0 0 66.6666666667%; }

.col-9 {
  max-width: 75%;
  flex: 0 0 75%; }

.col-10 {
  max-width: 83.3333333333%;
  flex: 0 0 83.3333333333%; }

.col-11 {
  max-width: 91.6666666667%;
  flex: 0 0 91.6666666667%; }

.col-12 {
  max-width: 100%;
  flex: 0 0 100%; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

.offset-12 {
  margin-left: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

@media (min-width: 576px) {
  .col-sm {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 576px) {
  .col-sm-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 576px) {
  .col-sm-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 576px) {
  .col-sm-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 576px) {
  .col-sm-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 576px) {
  .col-sm-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 576px) {
  .col-sm-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 576px) {
  .col-sm-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 576px) {
  .offset-sm-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 576px) {
  .offset-sm-3 {
    margin-left: 25%; } }

@media (min-width: 576px) {
  .offset-sm-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 576px) {
  .offset-sm-6 {
    margin-left: 50%; } }

@media (min-width: 576px) {
  .offset-sm-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 576px) {
  .offset-sm-9 {
    margin-left: 75%; } }

@media (min-width: 576px) {
  .offset-sm-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 576px) {
  .offset-sm-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 576px) {
  .order-sm-first {
    order: -1; } }

@media (min-width: 576px) {
  .order-sm-last {
    order: 13; } }

@media (min-width: 576px) {
  .order-sm-0 {
    order: 0; } }

@media (min-width: 576px) {
  .order-sm-1 {
    order: 1; } }

@media (min-width: 576px) {
  .order-sm-2 {
    order: 2; } }

@media (min-width: 576px) {
  .order-sm-3 {
    order: 3; } }

@media (min-width: 576px) {
  .order-sm-4 {
    order: 4; } }

@media (min-width: 576px) {
  .order-sm-5 {
    order: 5; } }

@media (min-width: 576px) {
  .order-sm-6 {
    order: 6; } }

@media (min-width: 576px) {
  .order-sm-7 {
    order: 7; } }

@media (min-width: 576px) {
  .order-sm-8 {
    order: 8; } }

@media (min-width: 576px) {
  .order-sm-9 {
    order: 9; } }

@media (min-width: 576px) {
  .order-sm-10 {
    order: 10; } }

@media (min-width: 576px) {
  .order-sm-11 {
    order: 11; } }

@media (min-width: 576px) {
  .order-sm-12 {
    order: 12; } }

@media (min-width: 768px) {
  .col-md {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 768px) {
  .col-md-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 768px) {
  .col-md-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 768px) {
  .col-md-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 768px) {
  .col-md-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 768px) {
  .col-md-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 768px) {
  .col-md-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 768px) {
  .col-md-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 768px) {
  .col-md-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 768px) {
  .col-md-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 768px) {
  .col-md-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 768px) {
  .col-md-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 768px) {
  .col-md-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 768px) {
  .col-md-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 768px) {
  .offset-md-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 768px) {
  .offset-md-3 {
    margin-left: 25%; } }

@media (min-width: 768px) {
  .offset-md-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 768px) {
  .offset-md-6 {
    margin-left: 50%; } }

@media (min-width: 768px) {
  .offset-md-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 768px) {
  .offset-md-9 {
    margin-left: 75%; } }

@media (min-width: 768px) {
  .offset-md-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 768px) {
  .offset-md-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 768px) {
  .order-md-first {
    order: -1; } }

@media (min-width: 768px) {
  .order-md-last {
    order: 13; } }

@media (min-width: 768px) {
  .order-md-0 {
    order: 0; } }

@media (min-width: 768px) {
  .order-md-1 {
    order: 1; } }

@media (min-width: 768px) {
  .order-md-2 {
    order: 2; } }

@media (min-width: 768px) {
  .order-md-3 {
    order: 3; } }

@media (min-width: 768px) {
  .order-md-4 {
    order: 4; } }

@media (min-width: 768px) {
  .order-md-5 {
    order: 5; } }

@media (min-width: 768px) {
  .order-md-6 {
    order: 6; } }

@media (min-width: 768px) {
  .order-md-7 {
    order: 7; } }

@media (min-width: 768px) {
  .order-md-8 {
    order: 8; } }

@media (min-width: 768px) {
  .order-md-9 {
    order: 9; } }

@media (min-width: 768px) {
  .order-md-10 {
    order: 10; } }

@media (min-width: 768px) {
  .order-md-11 {
    order: 11; } }

@media (min-width: 768px) {
  .order-md-12 {
    order: 12; } }

@media (min-width: 1280px) {
  .col-lg {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 1280px) {
  .col-lg-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 1280px) {
  .col-lg-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 1280px) {
  .col-lg-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 1280px) {
  .col-lg-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 1280px) {
  .col-lg-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 1280px) {
  .col-lg-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 1280px) {
  .col-lg-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 1280px) {
  .col-lg-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 1280px) {
  .col-lg-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 1280px) {
  .col-lg-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 1280px) {
  .col-lg-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 1280px) {
  .col-lg-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 1280px) {
  .col-lg-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 1280px) {
  .offset-lg-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 1280px) {
  .offset-lg-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 1280px) {
  .offset-lg-3 {
    margin-left: 25%; } }

@media (min-width: 1280px) {
  .offset-lg-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 1280px) {
  .offset-lg-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 1280px) {
  .offset-lg-6 {
    margin-left: 50%; } }

@media (min-width: 1280px) {
  .offset-lg-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 1280px) {
  .offset-lg-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 1280px) {
  .offset-lg-9 {
    margin-left: 75%; } }

@media (min-width: 1280px) {
  .offset-lg-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 1280px) {
  .offset-lg-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1280px) {
  .order-lg-first {
    order: -1; } }

@media (min-width: 1280px) {
  .order-lg-last {
    order: 13; } }

@media (min-width: 1280px) {
  .order-lg-0 {
    order: 0; } }

@media (min-width: 1280px) {
  .order-lg-1 {
    order: 1; } }

@media (min-width: 1280px) {
  .order-lg-2 {
    order: 2; } }

@media (min-width: 1280px) {
  .order-lg-3 {
    order: 3; } }

@media (min-width: 1280px) {
  .order-lg-4 {
    order: 4; } }

@media (min-width: 1280px) {
  .order-lg-5 {
    order: 5; } }

@media (min-width: 1280px) {
  .order-lg-6 {
    order: 6; } }

@media (min-width: 1280px) {
  .order-lg-7 {
    order: 7; } }

@media (min-width: 1280px) {
  .order-lg-8 {
    order: 8; } }

@media (min-width: 1280px) {
  .order-lg-9 {
    order: 9; } }

@media (min-width: 1280px) {
  .order-lg-10 {
    order: 10; } }

@media (min-width: 1280px) {
  .order-lg-11 {
    order: 11; } }

@media (min-width: 1280px) {
  .order-lg-12 {
    order: 12; } }

@media (min-width: 1650px) {
  .col-xl {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 1650px) {
  .col-xl-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 1650px) {
  .col-xl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 1650px) {
  .col-xl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 1650px) {
  .col-xl-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 1650px) {
  .col-xl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 1650px) {
  .col-xl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 1650px) {
  .col-xl-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 1650px) {
  .col-xl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 1650px) {
  .col-xl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 1650px) {
  .col-xl-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 1650px) {
  .col-xl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 1650px) {
  .col-xl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 1650px) {
  .col-xl-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 1650px) {
  .offset-xl-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 1650px) {
  .offset-xl-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 1650px) {
  .offset-xl-3 {
    margin-left: 25%; } }

@media (min-width: 1650px) {
  .offset-xl-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 1650px) {
  .offset-xl-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 1650px) {
  .offset-xl-6 {
    margin-left: 50%; } }

@media (min-width: 1650px) {
  .offset-xl-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 1650px) {
  .offset-xl-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 1650px) {
  .offset-xl-9 {
    margin-left: 75%; } }

@media (min-width: 1650px) {
  .offset-xl-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 1650px) {
  .offset-xl-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1650px) {
  .order-xl-first {
    order: -1; } }

@media (min-width: 1650px) {
  .order-xl-last {
    order: 13; } }

@media (min-width: 1650px) {
  .order-xl-0 {
    order: 0; } }

@media (min-width: 1650px) {
  .order-xl-1 {
    order: 1; } }

@media (min-width: 1650px) {
  .order-xl-2 {
    order: 2; } }

@media (min-width: 1650px) {
  .order-xl-3 {
    order: 3; } }

@media (min-width: 1650px) {
  .order-xl-4 {
    order: 4; } }

@media (min-width: 1650px) {
  .order-xl-5 {
    order: 5; } }

@media (min-width: 1650px) {
  .order-xl-6 {
    order: 6; } }

@media (min-width: 1650px) {
  .order-xl-7 {
    order: 7; } }

@media (min-width: 1650px) {
  .order-xl-8 {
    order: 8; } }

@media (min-width: 1650px) {
  .order-xl-9 {
    order: 9; } }

@media (min-width: 1650px) {
  .order-xl-10 {
    order: 10; } }

@media (min-width: 1650px) {
  .order-xl-11 {
    order: 11; } }

@media (min-width: 1650px) {
  .order-xl-12 {
    order: 12; } }

@media (min-width: 1920px) {
  .col-xxl {
    max-width: 100%;
    flex-basis: 0;
    flex-grow: 1; } }

@media (min-width: 1920px) {
  .col-xxl-auto {
    width: auto;
    max-width: none;
    flex: 0 0 auto; } }

@media (min-width: 1920px) {
  .col-xxl-1 {
    max-width: 8.3333333333%;
    flex: 0 0 8.3333333333%; } }

@media (min-width: 1920px) {
  .col-xxl-2 {
    max-width: 16.6666666667%;
    flex: 0 0 16.6666666667%; } }

@media (min-width: 1920px) {
  .col-xxl-3 {
    max-width: 25%;
    flex: 0 0 25%; } }

@media (min-width: 1920px) {
  .col-xxl-4 {
    max-width: 33.3333333333%;
    flex: 0 0 33.3333333333%; } }

@media (min-width: 1920px) {
  .col-xxl-5 {
    max-width: 41.6666666667%;
    flex: 0 0 41.6666666667%; } }

@media (min-width: 1920px) {
  .col-xxl-6 {
    max-width: 50%;
    flex: 0 0 50%; } }

@media (min-width: 1920px) {
  .col-xxl-7 {
    max-width: 58.3333333333%;
    flex: 0 0 58.3333333333%; } }

@media (min-width: 1920px) {
  .col-xxl-8 {
    max-width: 66.6666666667%;
    flex: 0 0 66.6666666667%; } }

@media (min-width: 1920px) {
  .col-xxl-9 {
    max-width: 75%;
    flex: 0 0 75%; } }

@media (min-width: 1920px) {
  .col-xxl-10 {
    max-width: 83.3333333333%;
    flex: 0 0 83.3333333333%; } }

@media (min-width: 1920px) {
  .col-xxl-11 {
    max-width: 91.6666666667%;
    flex: 0 0 91.6666666667%; } }

@media (min-width: 1920px) {
  .col-xxl-12 {
    max-width: 100%;
    flex: 0 0 100%; } }

@media (min-width: 1920px) {
  .offset-xxl-1 {
    margin-left: 8.3333333333%; } }

@media (min-width: 1920px) {
  .offset-xxl-2 {
    margin-left: 16.6666666667%; } }

@media (min-width: 1920px) {
  .offset-xxl-3 {
    margin-left: 25%; } }

@media (min-width: 1920px) {
  .offset-xxl-4 {
    margin-left: 33.3333333333%; } }

@media (min-width: 1920px) {
  .offset-xxl-5 {
    margin-left: 41.6666666667%; } }

@media (min-width: 1920px) {
  .offset-xxl-6 {
    margin-left: 50%; } }

@media (min-width: 1920px) {
  .offset-xxl-7 {
    margin-left: 58.3333333333%; } }

@media (min-width: 1920px) {
  .offset-xxl-8 {
    margin-left: 66.6666666667%; } }

@media (min-width: 1920px) {
  .offset-xxl-9 {
    margin-left: 75%; } }

@media (min-width: 1920px) {
  .offset-xxl-10 {
    margin-left: 83.3333333333%; } }

@media (min-width: 1920px) {
  .offset-xxl-11 {
    margin-left: 91.6666666667%; } }

@media (min-width: 1920px) {
  .order-xxl-first {
    order: -1; } }

@media (min-width: 1920px) {
  .order-xxl-last {
    order: 13; } }

@media (min-width: 1920px) {
  .order-xxl-0 {
    order: 0; } }

@media (min-width: 1920px) {
  .order-xxl-1 {
    order: 1; } }

@media (min-width: 1920px) {
  .order-xxl-2 {
    order: 2; } }

@media (min-width: 1920px) {
  .order-xxl-3 {
    order: 3; } }

@media (min-width: 1920px) {
  .order-xxl-4 {
    order: 4; } }

@media (min-width: 1920px) {
  .order-xxl-5 {
    order: 5; } }

@media (min-width: 1920px) {
  .order-xxl-6 {
    order: 6; } }

@media (min-width: 1920px) {
  .order-xxl-7 {
    order: 7; } }

@media (min-width: 1920px) {
  .order-xxl-8 {
    order: 8; } }

@media (min-width: 1920px) {
  .order-xxl-9 {
    order: 9; } }

@media (min-width: 1920px) {
  .order-xxl-10 {
    order: 10; } }

@media (min-width: 1920px) {
  .order-xxl-11 {
    order: 11; } }

@media (min-width: 1920px) {
  .order-xxl-12 {
    order: 12; } }

/* display */
.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; } }

@media (min-width: 576px) {
  .d-sm-inline {
    display: inline !important; } }

@media (min-width: 576px) {
  .d-sm-inline-block {
    display: inline-block !important; } }

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important; } }

@media (min-width: 576px) {
  .d-sm-table {
    display: table !important; } }

@media (min-width: 576px) {
  .d-sm-table-row {
    display: table-row !important; } }

@media (min-width: 576px) {
  .d-sm-table-cell {
    display: table-cell !important; } }

@media (min-width: 576px) {
  .d-sm-flex {
    display: flex !important; } }

@media (min-width: 576px) {
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; } }

@media (min-width: 768px) {
  .d-md-inline {
    display: inline !important; } }

@media (min-width: 768px) {
  .d-md-inline-block {
    display: inline-block !important; } }

@media (min-width: 768px) {
  .d-md-block {
    display: block !important; } }

@media (min-width: 768px) {
  .d-md-table {
    display: table !important; } }

@media (min-width: 768px) {
  .d-md-table-row {
    display: table-row !important; } }

@media (min-width: 768px) {
  .d-md-table-cell {
    display: table-cell !important; } }

@media (min-width: 768px) {
  .d-md-flex {
    display: flex !important; } }

@media (min-width: 768px) {
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1280px) {
  .d-lg-none {
    display: none !important; } }

@media (min-width: 1280px) {
  .d-lg-inline {
    display: inline !important; } }

@media (min-width: 1280px) {
  .d-lg-inline-block {
    display: inline-block !important; } }

@media (min-width: 1280px) {
  .d-lg-block {
    display: block !important; } }

@media (min-width: 1280px) {
  .d-lg-table {
    display: table !important; } }

@media (min-width: 1280px) {
  .d-lg-table-row {
    display: table-row !important; } }

@media (min-width: 1280px) {
  .d-lg-table-cell {
    display: table-cell !important; } }

@media (min-width: 1280px) {
  .d-lg-flex {
    display: flex !important; } }

@media (min-width: 1280px) {
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1650px) {
  .d-xl-none {
    display: none !important; } }

@media (min-width: 1650px) {
  .d-xl-inline {
    display: inline !important; } }

@media (min-width: 1650px) {
  .d-xl-inline-block {
    display: inline-block !important; } }

@media (min-width: 1650px) {
  .d-xl-block {
    display: block !important; } }

@media (min-width: 1650px) {
  .d-xl-table {
    display: table !important; } }

@media (min-width: 1650px) {
  .d-xl-table-row {
    display: table-row !important; } }

@media (min-width: 1650px) {
  .d-xl-table-cell {
    display: table-cell !important; } }

@media (min-width: 1650px) {
  .d-xl-flex {
    display: flex !important; } }

@media (min-width: 1650px) {
  .d-xl-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1920px) {
  .d-xxl-none {
    display: none !important; } }

@media (min-width: 1920px) {
  .d-xxl-inline {
    display: inline !important; } }

@media (min-width: 1920px) {
  .d-xxl-inline-block {
    display: inline-block !important; } }

@media (min-width: 1920px) {
  .d-xxl-block {
    display: block !important; } }

@media (min-width: 1920px) {
  .d-xxl-table {
    display: table !important; } }

@media (min-width: 1920px) {
  .d-xxl-table-row {
    display: table-row !important; } }

@media (min-width: 1920px) {
  .d-xxl-table-cell {
    display: table-cell !important; } }

@media (min-width: 1920px) {
  .d-xxl-flex {
    display: flex !important; } }

@media (min-width: 1920px) {
  .d-xxl-inline-flex {
    display: inline-flex !important; } }

html, body {
  min-width: 320px;
  height: 100%; }

body.noscroll {
  overflow: hidden; }

.wrapper {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto; }

.video__container {
  position: relative;
  height: 0;
  padding-bottom: 56.25%; }
  .video__container iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }

.page__inner {
  position: relative; }
  .page__inner > * {
    margin-bottom: 100px; }
    @media (min-width: 1280px) {
      .page__inner > * {
        margin-bottom: 120px; } }
    @media (min-width: 1650px) {
      .page__inner > * {
        margin-bottom: 220px; } }
    .page__inner > *:last-child {
      margin-bottom: 0; }
  @media (min-width: 1650px) {
    .page__inner.price__page > * {
      margin-bottom: 90px; } }
  @media (min-width: 1650px) {
    .page__inner.price__page > *.main__actions {
      margin-bottom: 220px; } }
  @media (min-width: 1650px) {
    .page__inner.doctor__page > *, .page__inner.portfolio__page > * {
      margin-bottom: 180px; } }
  .page__inner > div {
    padding-left: 12px;
    padding-right: 12px; }
    @media (min-width: 1280px) {
      .page__inner > div {
        padding-left: 55px;
        padding-right: 55px; } }
    @media (min-width: 1650px) {
      .page__inner > div {
        padding-left: 90px;
        padding-right: 90px; } }

.g-block {
  border-radius: 30px;
  padding: 16px 12px;
  overflow: hidden; }
  @media (min-width: 1280px) {
    .g-block {
      background: var(--color-gray);
      border-radius: 40px;
      padding: 55px; } }
  @media (min-width: 1650px) {
    .g-block {
      border-radius: 64px;
      padding: 90px; } }
  .g-block .swiper-pagination-bullet:not(.swiper-pagination-bullet-active) {
    background: #9b9b9b; }

.filter__list, .nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px; }
  @media (min-width: 1280px) {
    .filter__list, .nav__list {
      margin-bottom: 9px; } }
  @media (min-width: 1650px) {
    .filter__list, .nav__list {
      gap: 16px;
      margin-bottom: 16px; } }
.filter__item, .nav__item {
  background: var(--color-gray);
  font-weight: 500;
  transition: .2s;
  cursor: pointer;
  font-size: 12px;
  border-radius: 8px;
  padding: 12px; }
  .filter__item:hover, .filter__item.active, .nav__item:hover, .nav__item.active {
    background: var(--color-red);
    color: #fff; }
  @media (min-width: 1280px) {
    .filter__item, .nav__item {
      font-size: 15px;
      border-radius: 10px;
      padding: 11px 15px; } }
  @media (min-width: 1650px) {
    .filter__item, .nav__item {
      font-size: 24px;
      padding: 20px 27px;
      border-radius: 18px; } }

.span-column.c1 {
  grid-column: none; }
.span-column.c2 {
  grid-column: span 2; }
.span-column.c3 {
  grid-column: span 3; }
.span-column.c4 {
  grid-column: span 4; }
.span-column.c5 {
  grid-column: span 5; }
.span-column.c6 {
  grid-column: span 6; }
.span-column.c7 {
  grid-column: span 7; }
.span-column.c8 {
  grid-column: span 8; }
.span-column.c9 {
  grid-column: span 9; }
.span-column.c10 {
  grid-column: span 10; }
.span-column.c11 {
  grid-column: span 11; }
.span-column.mobile-c1 {
  grid-column: none; }
.span-column.mobile-c2 {
  grid-column: span 2; }
.span-column.mobile-c3 {
  grid-column: span 3; }
.span-column.mobile-c4 {
  grid-column: span 4; }
.span-column.mobile-c5 {
  grid-column: span 5; }
.span-column.mobile-c6 {
  grid-column: span 6; }
.span-column.mobile-c7 {
  grid-column: span 7; }
.span-column.mobile-c8 {
  grid-column: span 8; }
.span-column.mobile-c9 {
  grid-column: span 9; }
.span-column.mobile-c10 {
  grid-column: span 10; }
.span-column.mobile-c11 {
  grid-column: span 11; }

.header {
  padding: 2px 0 8px;
  position: relative;
  z-index: 10; }
  @media (min-width: 768px) {
    .header {
      padding: 8px 0 16px; } }
  @media (min-width: 1280px) {
    .header {
      padding-top: 0; } }
  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-gray);
    border-radius: 22px;
    padding: 12px 23px;
    gap: 16px; }
    @media (min-width: 768px) {
      .header__top {
        gap: 46px;
        padding: 19px 36px; } }
    @media (min-width: 1280px) {
      .header__top {
        background: none;
        gap: 70px;
        padding: 30px 55px; } }
    @media (min-width: 1650px) {
      .header__top {
        gap: 90px;
        padding-left: 90px;
        padding-right: 90px; } }
  .header__logo {
    display: flex;
    align-items: center;
    flex-grow: 1; }
    @media (min-width: 1280px) {
      .header__logo {
        flex-grow: unset;
        gap: 16px; } }
    @media (min-width: 1650px) {
      .header__logo {
        gap: 22px; } }
    .header__logo a {
      flex: none;
      width: 90px; }
      @media (min-width: 768px) {
        .header__logo a {
          width: 160px; } }
      @media (min-width: 1650px) {
        .header__logo a {
          width: 252px; } }
  .header__slogan {
    display: none; }
    @media (min-width: 1280px) {
      .header__slogan {
        font-size: 12px;
        display: block; } }
    @media (min-width: 1650px) {
      .header__slogan {
        font-size: 16px; } }
  .header__services-title {
    display: flex;
    width: 142px;
    height: 36px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 8px;
    border: 1px solid var(--color-black);
    transition: .2s; }
    @media (min-width: 768px) {
      .header__services-title {
        width: 326px;
        height: 80px; } }
    .header__services-title.active {
      border-color: var(--color-red);
      color: var(--color-red); }
      .header__services-title.active svg {
        fill: var(--color-red);
        transform: rotate(180deg); }
    .header__services-title svg {
      transition: .2s;
      width: 11px;
      height: 6px; }
  .header__services-list {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    background: var(--color-light-gray);
    border-radius: 22px;
    width: calc(100% - 14px);
    left: 50%;
    transform: translateX(-50%);
    top: 73px;
    padding: 12px 21px; }
    @media (min-width: 768px) {
      .header__services-list {
        top: 142px;
        width: calc(100% - 40px); } }
    .header__services-list.active {
      opacity: 1;
      visibility: visible; }
    .header__services-list .megamenu__catalog {
      height: calc(100vh - 110px);
      overflow-y: auto; }
      .header__services-list .megamenu__catalog .root {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start; }
      .header__services-list .megamenu__catalog .li-item .inner-menu-wrap {
        display: none;
        font-size: 14px;
        padding-left: 10px;
        padding-top: 10px; }
        .header__services-list .megamenu__catalog .li-item .inner-menu-wrap .li-item {
          margin-bottom: 14px; }
          .header__services-list .megamenu__catalog .li-item .inner-menu-wrap .li-item:last-child {
            margin-bottom: 0; }
      .header__services-list .megamenu__catalog .parent {
        font-size: 16px;
        font-weight: 500;
        display: inline-flex;
        background: #fff;
        padding: 8px 10px;
        border-radius: 8px;
        gap: 5px;
        align-items: center; }
        .header__services-list .megamenu__catalog .parent.active {
          color: var(--color-red); }
          .header__services-list .megamenu__catalog .parent.active:after {
            border-top-color: var(--color-red); }
        .header__services-list .megamenu__catalog .parent:after {
          content: '';
          width: 0;
          height: 0;
          border-left: 5px solid transparent;
          border-right: 5px solid transparent;
          border-top: 7px solid var(--color-black);
          transition: .2s; }
  @media (min-width: 1280px) {
    .header__services {
      display: none; } }
  .header__contacts {
    display: none; }
    @media (min-width: 1280px) {
      .header__contacts {
        display: flex;
        align-items: center;
        gap: 58px; } }
  .header__phone {
    display: none; }
    @media (min-width: 1280px) {
      .header__phone {
        display: block; } }
    .header__phone-item {
      display: flex;
      align-items: center;
      font-weight: 500;
      margin-bottom: 5px;
      gap: 13px; }
      @media (min-width: 1650px) {
        .header__phone-item {
          font-size: 24px; } }
      .header__phone-item svg {
        flex: none;
        fill: var(--color-red); }
        @media (min-width: 1280px) {
          .header__phone-item svg {
            width: 24px;
            height: 24px; } }
    .header__phone span {
      display: flex;
      align-items: center;
      gap: 6px;
      padding-left: 13px; }
      @media (min-width: 1280px) {
        .header__phone span {
          font-size: 16px;
          padding-left: 25px; } }
      @media (min-width: 1650px) {
        .header__phone span {
          font-size: 20px; } }
      .header__phone span:before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--color-red);
        transform: translateY(1px); }
  .header__burger {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
    @media (min-width: 768px) {
      .header__burger {
        width: 37px;
        height: 37px; } }
    @media (min-width: 1280px) {
      .header__burger {
        display: none; } }
    .header__burger svg {
      fill: var(--color-jet);
      transition: .2s; }
      .header__burger svg.burger-active {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        opacity: 0;
        visibility: hidden;
        stroke: var(--color-jet);
        fill: none; }
    .header__burger.active svg.burger-default {
      opacity: 0;
      visibility: hidden; }
    .header__burger.active svg.burger-active {
      opacity: 1;
      visibility: visible; }
  .header__bottom {
    background: var(--color-gray);
    transition: .2s;
    transform: translateX(-150%);
    position: absolute;
    width: 100%;
    z-index: 10;
    top: 100%;
    border-radius: 22px;
    padding: 20px; }
    .header__bottom.active {
      transform: translateX(0); }
    @media (min-width: 1280px) {
      .header__bottom {
        transform: translateX(0);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 26px;
        padding: 0 55px;
        border-radius: 26px; } }
    @media (min-width: 1650px) {
      .header__bottom {
        border-radius: 30px;
        padding: 0 90px; } }
    @media (min-width: 1280px) {
      .header__bottom nav > ul > li {
        padding: 29px 0; } }
    @media (min-width: 1650px) {
      .header__bottom nav > ul > li {
        padding: 50px 0; } }

nav {
  margin-bottom: 16px; }
  @media (min-width: 1280px) {
    nav {
      margin-bottom: 0; } }
  nav ul {
    list-style-type: none;
    overflow: unset;
    padding: 0;
    column-count: 2;
    gap: 30px; }
    @media (min-width: 1280px) {
      nav ul {
        column-count: 1;
        display: flex;
        align-items: center;
        gap: 36px; } }
    @media (min-width: 1650px) {
      nav ul {
        gap: 55px; } }
    nav ul li {
      position: relative;
      break-inside: avoid;
      margin-bottom: 16px; }
      nav ul li.catalog-li {
        position: static; }
      nav ul li:last-child {
        margin-bottom: 0; }
      @media (min-width: 1280px) {
        nav ul li {
          margin-bottom: 0; } }
      @media (min-width: 1280px) {
        nav ul li.desktop-hide {
          display: none; } }
      nav ul li.mobile-hide {
        display: none; }
        @media (min-width: 1280px) {
          nav ul li.mobile-hide {
            display: block; } }
      nav ul li .nav__label {
        position: absolute;
        padding: 2px 6px;
        bottom: 60%;
        left: 80%;
        display: none; }
        @media (min-width: 1280px) {
          nav ul li .nav__label {
            display: block;
            font-size: 13px;
            background: var(--color-red);
            color: #fff;
            border-radius: 6px; } }
        @media (min-width: 1650px) {
          nav ul li .nav__label {
            left: 100%;
            font-size: 14px; } }
      nav ul li .submenu {
        display: none;
        padding-top: 16px; }
        @media (min-width: 1280px) {
          nav ul li .submenu {
            display: block;
            position: absolute;
            z-index: 100;
            transition: .2s;
            padding-top: 48px;
            opacity: 0;
            visibility: hidden; } }
        @media (min-width: 1650px) {
          nav ul li .submenu {
            padding-top: 66px; } }
        nav ul li .submenu ul {
          flex-direction: column;
          align-items: flex-start;
          display: flex;
          gap: 3px; }
          @media (min-width: 1280px) {
            nav ul li .submenu ul {
              background: var(--color-light-gray);
              border-radius: 30px;
              padding: 34px;
              box-shadow: 11px 10px 21px 0 rgba(var(--color-black--rgb), 0.1); } }
          nav ul li .submenu ul li a {
            display: block; }
            @media (min-width: 1280px) {
              nav ul li .submenu ul li a {
                padding: 16px 20px;
                border-radius: 18px; } }
            @media (min-width: 1650px) {
              nav ul li .submenu ul li a {
                font-size: 20px; } }
          nav ul li .submenu ul li:hover a {
            background: #fff;
            color: var(--color-red); }
      nav ul li:hover .submenu {
        opacity: 1;
        visibility: visible; }
      nav ul li:hover .megamenu {
        opacity: 1;
        visibility: visible; }
    nav ul a {
      white-space: nowrap; }
      @media (min-width: 1280px) {
        nav ul a {
          font-size: 15px; } }
      @media (min-width: 1650px) {
        nav ul a {
          font-size: 24px; } }
      nav ul a.parent {
        display: flex;
        align-items: center;
        gap: 9px; }
        nav ul a.parent svg {
          flex: none;
          stroke: var(--color-black);
          width: 11px;
          height: 6px;
          transition: .2s; }
          @media (min-width: 1280px) {
            nav ul a.parent svg {
              width: 6px;
              height: 3px; } }
          @media (min-width: 1650px) {
            nav ul a.parent svg {
              width: 10px;
              height: 5px; } }
        nav ul a.parent.clicked svg {
          transform: rotate(180deg); }

.footer {
  padding: 40px 0; }
  @media (min-width: 1280px) {
    .footer {
      padding: 60px 0; } }
  .footer .logo {
    width: 248px;
    margin-bottom: 24px; }
    @media (min-width: 1280px) {
      .footer .logo {
        margin-bottom: 26px; } }
    @media (min-width: 1650px) {
      .footer .logo {
        width: 390px; } }
  .footer__container {
    background: var(--color-gray);
    padding: 22px 12px;
    border-radius: 30px; }
    @media (min-width: 1280px) {
      .footer__container {
        padding: 55px;
        font-size: 13px;
        border-radius: 40px; } }
    @media (min-width: 1650px) {
      .footer__container {
        font-size: 16px; } }
  .footer__mobile {
    display: grid;
    grid-gap: 20px; }
    @media (min-width: 1280px) {
      .footer__mobile {
        display: none; } }
  .footer__desktop {
    display: none; }
    @media (min-width: 1280px) {
      .footer__desktop {
        display: grid;
        grid-gap: 14px;
        grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 768px) {
    .footer__menu {
      font-size: 20px; } }
  .footer__menu ul {
    list-style-type: none;
    padding: 0; }
    .footer__menu ul li {
      margin-bottom: 19px; }
      .footer__menu ul li:last-child {
        margin-bottom: 0; }
  .footer__title {
    color: var(--color-jet);
    margin-bottom: 7px; }
    @media (min-width: 1650px) {
      .footer__title {
        margin-bottom: 17px;
        font-size: 16px; } }
  .footer__phone {
    font-size: 24px;
    display: block;
    margin-bottom: 14px; }
    @media (min-width: 768px) {
      .footer__phone {
        font-size: 40px;
        font-weight: 600; } }
    @media (min-width: 1280px) {
      .footer__phone {
        font-size: 24px;
        font-weight: 400; } }
    @media (min-width: 1650px) {
      .footer__phone {
        font-size: 32px;
        font-weight: 600; } }
  @media (min-width: 1280px) {
    .footer__contacts {
      margin-bottom: 100px; } }
  @media (min-width: 1650px) {
    .footer__contacts {
      flex-grow: 1;
      margin-bottom: 0; } }
  .footer__contacts-doctor {
    display: flex;
    align-items: center;
    font-size: 11px;
    gap: 3px; }
    @media (min-width: 1650px) {
      .footer__contacts-doctor {
        font-size: 12px; } }
  .footer__contacts .btn {
    width: auto; }
  .footer__text {
    color: var(--color-jet); }
    .footer__text a {
      text-decoration: underline; }
    @media (min-width: 1650px) {
      .footer__text p:first-child {
        font-size: 20px; } }
  @media (min-width: 1280px) {
    .footer .payments {
      margin-bottom: 28px; } }
  .footer .payments__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 15px;
    align-items: center; }
    @media (min-width: 768px) {
      .footer .payments__list {
        grid-template-columns: repeat(3, 160px);
        justify-content: space-around; } }
    @media (min-width: 1280px) {
      .footer .payments__list {
        grid-template-columns: repeat(3, 1fr);
        justify-content: flex-start; } }
    @media (min-width: 1650px) {
      .footer .payments__list {
        grid-template-columns: repeat(3, 118px); } }
  @media (min-width: 1650px) {
    .footer__col:nth-child(2) {
      display: flex;
      flex-direction: column; } }

.accordion {
  display: grid;
  grid-row-gap: 10px;
  align-items: flex-start; }
  @media (min-width: 1280px) {
    .accordion {
      grid-column-gap: 16px;
      grid-template-columns: 1fr 1fr; } }
  .accordion__col {
    display: grid;
    grid-row-gap: 10px; }
  .accordion__item {
    background: var(--color-light-gray);
    border-radius: 20px; }
    @media (min-width: 1650px) {
      .accordion__item {
        border-radius: 30px; } }
    .accordion__item-label {
      display: flex;
      font-weight: 500;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      gap: 14px;
      padding: 17px; }
      @media (min-width: 1650px) {
        .accordion__item-label {
          padding: 22px 28px; } }
      .accordion__item-label-icon {
        position: relative;
        width: 43px;
        height: 43px;
        border-radius: 50%;
        background: var(--color-red);
        flex: none;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media (min-width: 768px) {
          .accordion__item-label-icon {
            width: 90px;
            height: 90px; } }
        @media (min-width: 1650px) {
          .accordion__item-label-icon {
            width: 68px;
            height: 68px; } }
        .accordion__item-label-icon svg {
          width: 16px;
          fill: #fff;
          transition: .2s;
          transform: rotate(45deg); }
      .accordion__item-label-title {
        flex-grow: 1;
        font-size: 14px; }
        @media (min-width: 768px) {
          .accordion__item-label-title {
            font-size: 30px; } }
        @media (min-width: 1280px) {
          .accordion__item-label-title {
            font-size: 16px; } }
        @media (min-width: 1650px) {
          .accordion__item-label-title {
            font-size: 20px; } }
    .accordion__item.active .accordion__item-label-icon svg {
      transform: rotate(0); }
    .accordion__item-content {
      padding: 0 13px 18px 17px;
      display: none;
      font-size: 12px; }
      @media (min-width: 768px) {
        .accordion__item-content {
          font-size: 14px;
          padding: 0 45px 20px 17px; } }
      @media (min-width: 1650px) {
        .accordion__item-content {
          font-size: 16px;
          padding: 0 27px 28px; } }

.tabs__heading-container {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 2px solid #F0F0F0;
  overflow-x: auto; }
  .tabs__heading-container::-webkit-scrollbar {
    display: none; }
  @media (min-width: 768px) {
    .tabs__heading-container {
      gap: 40px; } }
  @media (min-width: 1280px) {
    .tabs__heading-container {
      gap: 80px; } }
.tabs__heading-item {
  font-weight: 500;
  padding-bottom: 15px;
  transition: .2s;
  white-space: nowrap;
  border-bottom: 2px solid #F0F0F0;
  color: rgba(var(--color-black--rgb), 0.4);
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 15px; }
  .tabs__heading-item .hide-mobile {
    display: none; }
    @media (min-width: 768px) {
      .tabs__heading-item .hide-mobile {
        display: inline-block; } }
  .tabs__heading-item svg {
    flex: none;
    width: 24px;
    height: 24px; }
    @media (min-width: 768px) {
      .tabs__heading-item svg {
        width: 30px;
        height: 30px; } }
  @media (min-width: 768px) {
    .tabs__heading-item {
      padding-bottom: 20px;
      font-size: 20px; }
      .tabs__heading-item:hover {
        color: var(--color-black);
        border-bottom-color: var(--color-green); } }
  .tabs__heading-item.active {
    color: var(--color-black);
    border-bottom-color: var(--color-green); }
.tabs__heading.gray-full {
  position: relative; }
  .tabs__heading.gray-full .tabs__heading-container {
    background: #f8f8f8;
    padding: 15px 0 3px;
    border-bottom: 0;
    gap: 14px; }
    @media (min-width: 768px) {
      .tabs__heading.gray-full .tabs__heading-container {
        gap: 42px;
        padding-top: 20px; } }
  .tabs__heading.gray-full:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    width: calc(100vw - 15px);
    height: 100%;
    background: #f8f8f8; }
  .tabs__heading.gray-full .tabs__heading-item {
    border-bottom: 3px solid #f8f8f8;
    color: var(--color-black);
    margin-bottom: -3px; }
    @media (min-width: 768px) {
      .tabs__heading.gray-full .tabs__heading-item {
        font-size: 16px; }
        .tabs__heading.gray-full .tabs__heading-item:hover {
          border-bottom-color: var(--color-black); } }
    .tabs__heading.gray-full .tabs__heading-item.active {
      border-bottom-color: var(--color-black); }
.tabs__heading.gray .tabs__heading-container {
  justify-content: center;
  border-bottom: 0;
  gap: 0; }
.tabs__heading.gray .tabs__heading-item {
  border-bottom: 3px solid #f8f8f8;
  color: var(--color-black);
  text-align: center;
  flex-grow: 1;
  justify-content: center;
  margin-bottom: 0; }
  @media (min-width: 768px) {
    .tabs__heading.gray .tabs__heading-item {
      font-size: 16px; }
      .tabs__heading.gray .tabs__heading-item:hover {
        border-bottom-color: var(--color-black); } }
  .tabs__heading.gray .tabs__heading-item.active {
    border-bottom-color: var(--color-black); }
.tabs__content {
  padding-top: 25px;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .tabs__content {
      padding-top: 50px;
      padding-bottom: 0; } }
  .tabs__content > .tabs__heading-item {
    display: flex;
    margin-bottom: 8px; }
    @media (min-width: 768px) {
      .tabs__content > .tabs__heading-item {
        display: none; } }
  .tabs__content-item {
    display: none; }
    .tabs__content-item.active {
      display: block; }
    .tabs__content-item-heading span {
      color: rgba(52, 60, 75, 0.4); }
    .tabs__content-item .tabs__content {
      padding-top: 10px; }

.breadcrumbs {
  margin-bottom: 20px; }
  @media (min-width: 1280px) {
    .breadcrumbs {
      margin-bottom: 35px; } }
  @media (min-width: 1650px) {
    .breadcrumbs {
      margin-bottom: 46px; } }
  .breadcrumbs ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    gap: 6px; }
    @media (min-width: 1280px) {
      .breadcrumbs ul {
        gap: 8px; } }
    @media (min-width: 1650px) {
      .breadcrumbs ul {
        gap: 6px; } }
  .breadcrumbs__item > * {
    border-radius: 8px;
    padding: 6px 12px;
    display: block; }
    @media (min-width: 1650px) {
      .breadcrumbs__item > * {
        padding: 7px 13px; } }
  .breadcrumbs__item a {
    background: #fff; }
  .breadcrumbs__item span {
    background: var(--color-red);
    color: #fff; }
  .breadcrumbs__item, .breadcrumbs__separator {
    font-size: 10px; }
    @media (min-width: 1280px) {
      .breadcrumbs__item, .breadcrumbs__separator {
        font-size: 13px; } }
    @media (min-width: 1650px) {
      .breadcrumbs__item, .breadcrumbs__separator {
        font-size: 16px; } }

.social {
  display: flex;
  align-items: center;
  gap: 5px; }
  .social__item {
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px; }
    .social__item svg {
      fill: #000;
      width: 61%;
      height: 61%; }

.heading {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 9px;
  flex-direction: column;
  align-items: flex-start; }
  @media (min-width: 768px) {
    .heading {
      gap: 16px; } }
  @media (min-width: 1280px) {
    .heading {
      align-items: center;
      flex-direction: row;
      gap: 30px;
      margin-bottom: 45px; } }
  .heading.center {
    justify-content: center;
    align-items: center;
    text-align: center; }
  .heading__right {
    flex: none;
    padding-left: 85px; }
    @media (min-width: 1280px) {
      .heading__right {
        padding-left: 0;
        width: calc(50% - 30px); } }
  .heading__suptitle {
    font-size: 20px; }
    @media (min-width: 768px) {
      .heading__suptitle {
        font-size: 24px;
        margin-bottom: 6px; } }
    @media (min-width: 1650px) {
      .heading__suptitle {
        font-size: 30px; } }
    @media (min-width: 1650px) {
      .heading__suptitle {
        margin-bottom: 20px; } }
  @media (min-width: 1280px) {
    .heading__subtitle {
      font-size: 32px;
      color: var(--color-jet); } }
  @media (min-width: 1650px) {
    .heading__subtitle {
      font-size: 40px; } }
  .heading__title {
    font-size: 24px; }
    @media (min-width: 768px) {
      .heading__title {
        font-size: 40px; } }
    @media (min-width: 1280px) {
      .heading__title {
        font-size: 45px;
        line-height: calc(52 / 45); } }
    @media (min-width: 1650px) {
      .heading__title {
        font-size: 64px;
        font-weight: 600; } }
    .heading__title span {
      white-space: nowrap;
      border: 1px solid #d1d1d1;
      border-radius: 10px;
      padding: 0 10px;
      font-weight: 600; }
      @media (min-width: 1280px) {
        .heading__title span {
          font-weight: 400; } }
  .heading__text {
    color: var(--color-jet); }
    @media (min-width: 1650px) {
      .heading__text {
        font-size: 40px; } }

.top__block {
  display: grid;
  padding: 0 !important;
  grid-gap: 8px; }
  @media (min-width: 1280px) {
    .top__block {
      grid-gap: 16px; } }
  .top__block-item {
    overflow: hidden;
    position: relative;
    padding: 16px 12px;
    min-height: 160px;
    background-color: var(--color-light-gray); }
    @media (min-width: 1280px) {
      .top__block-item {
        padding: 40px 55px; } }
    @media (min-width: 1650px) {
      .top__block-item {
        padding-left: 90px;
        padding-right: 90px; } }
    .top__block-item:first-child {
      background-image: url(images/waves/portfolio.svg);
      background-size: contain;
      background-repeat: no-repeat;
      background-position: 50% 100%; }
    @media (min-width: 1280px) {
      .top__block-item-text {
        color: var(--color-jet); } }
    .top__block-item.img {
      padding: 0 !important;
      border-radius: 30px;
      background: var(--color-light-gray); }
      @media (min-width: 1280px) {
        .top__block-item.img {
          border-radius: 40px; } }
      @media (min-width: 1650px) {
        .top__block-item.img {
          border-radius: 64px; } }
      .top__block-item.img img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .top__block-item .doctor__info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      font-size: 19px;
      gap: 6px; }
      @media (min-width: 768px) {
        .top__block-item .doctor__info {
          font-size: 30px; } }
      @media (min-width: 1280px) {
        .top__block-item .doctor__info {
          gap: 8px;
          font-size: 16px; } }
      @media (min-width: 1650px) {
        .top__block-item .doctor__info {
          gap: 12px;
          font-size: 24px; } }
      .top__block-item .doctor__info-item {
        background: #fff;
        border-radius: 6px;
        padding: 4px; }
        @media (min-width: 1280px) {
          .top__block-item .doctor__info-item {
            border-radius: 5px;
            padding: 10px; } }
        @media (min-width: 1650px) {
          .top__block-item .doctor__info-item {
            padding: 16px; } }
        .top__block-item .doctor__info-item.name {
          font-weight: 500; }
          @media (min-width: 1280px) {
            .top__block-item .doctor__info-item.name {
              font-weight: 600; } }
        .top__block-item .doctor__info-item.position {
          font-size: 14px; }
          @media (min-width: 768px) {
            .top__block-item .doctor__info-item.position {
              font-size: 20px; } }
          @media (min-width: 1280px) {
            .top__block-item .doctor__info-item.position {
              font-size: 12px; } }
          @media (min-width: 1650px) {
            .top__block-item .doctor__info-item.position {
              font-size: 20px; } }
  .top__block-title {
    margin-bottom: 15px; }
    @media (min-width: 1280px) {
      .top__block-title {
        margin-bottom: 44px; } }
    @media (min-width: 1650px) {
      .top__block-title {
        margin-bottom: 40px; } }
  .top__block-list {
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .top__block-list {
        margin-bottom: 37px; } }
    @media (min-width: 1280px) {
      .top__block-list {
        color: var(--color-jet);
        font-size: 32px; } }
    @media (min-width: 1650px) {
      .top__block-list {
        font-size: 40px;
        margin-bottom: 66px; } }
    .top__block-list ul {
      list-style-type: none;
      padding-left: 0; }
      .top__block-list ul li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px; }
        @media (min-width: 1280px) {
          .top__block-list ul li {
            margin-bottom: 16px; } }
        @media (min-width: 1650px) {
          .top__block-list ul li {
            margin-bottom: 26px; } }
        .top__block-list ul li:last-child {
          margin-bottom: 0; }
        .top__block-list ul li:before {
          content: '';
          width: 20px;
          height: 20px;
          flex: none;
          display: flex;
          background: url(images/li.svg) no-repeat 50%; }
          @media (min-width: 1650px) {
            .top__block-list ul li:before {
              width: 24px;
              height: 24px; } }
  .top__block-slider-pagination {
    text-align: center;
    width: 100%;
    margin-top: 30px; }
    @media (min-width: 1280px) {
      .top__block-slider-pagination {
        margin-top: 50px; } }
    @media (min-width: 1650px) {
      .top__block-slider-pagination {
        margin-top: 74px; } }
  .top__block-btns {
    display: flex;
    gap: 8px; }
    @media (min-width: 1280px) {
      .top__block-btns {
        gap: 14px; } }
  .top__block.main {
    display: grid;
    grid-gap: 8px; }
    @media (min-width: 1280px) {
      .top__block.main {
        grid-gap: 16px;
        grid-template-columns: repeat(3, 1fr); } }
    .top__block.main .top__block-item:first-child {
      background: var(--color-gray) url(images/waves/main.svg) no-repeat;
      background-size: contain;
      background-position: 50% 25px;
      padding: 47px 12px 13px; }
      @media (min-width: 1280px) {
        .top__block.main .top__block-item:first-child {
          grid-column: span 2;
          padding-top: 87px;
          padding-left: 55px;
          padding-right: 50px; } }
      @media (min-width: 1650px) {
        .top__block.main .top__block-item:first-child {
          padding: 117px 73px 23px 90px; } }
    .top__block.main .top__block-item:last-child {
      background: var(--color-gray) url(images/kecherukov.png) no-repeat;
      background-size: 65%;
      background-position: 50% 100%;
      padding: 35px 12px 0;
      height: 325px; }
      @media (min-width: 768px) {
        .top__block.main .top__block-item:last-child {
          height: 530px; } }
      @media (min-width: 1280px) {
        .top__block.main .top__block-item:last-child {
          background-size: contain;
          height: auto;
          padding: 26px 55px 26px 26px; } }
      @media (min-width: 1650px) {
        .top__block.main .top__block-item:last-child {
          padding: 45px; } }

.main__about {
  overflow: visible; }
  @media (min-width: 1280px) {
    .main__about {
      margin-top: 78px;
      padding-top: 55px;
      padding-bottom: 55px; } }
  .main__about .heading {
    flex-direction: column;
    justify-content: space-between; }
    @media (min-width: 1280px) {
      .main__about .heading {
        flex-direction: row;
        align-items: flex-end;
        margin-top: -132px;
        margin-bottom: 20px; } }
    @media (min-width: 1650px) {
      .main__about .heading {
        margin-bottom: 50px; } }
    .main__about .heading__left {
      display: flex;
      flex-direction: column;
      padding: 0 12px; }
      @media (min-width: 1280px) {
        .main__about .heading__left {
          padding: 0 0 16px;
          display: block; } }
      @media (min-width: 1650px) {
        .main__about .heading__left {
          padding-bottom: 50px; } }
      .main__about .heading__left .heading__title {
        order: 1;
        margin-bottom: 10px; }
        @media (min-width: 1280px) {
          .main__about .heading__left .heading__title {
            margin-bottom: 0; } }
        @media (min-width: 1650px) {
          .main__about .heading__left .heading__title {
            font-size: 64px; } }
      .main__about .heading__left .heading__suptitle {
        order: 2;
        padding-left: 85px; }
        @media (min-width: 1280px) {
          .main__about .heading__left .heading__suptitle {
            padding-left: 0; } }
    .main__about .heading__right {
      flex: none;
      box-sizing: content-box;
      overflow: hidden;
      border-radius: 30px;
      padding-left: 0; }
      @media (min-width: 1280px) {
        .main__about .heading__right {
          margin-left: 85px;
          width: 350px;
          border-radius: 20px;
          margin-right: 72px; } }
      @media (min-width: 1650px) {
        .main__about .heading__right {
          width: 532px; } }
      .main__about .heading__right img {
        display: block; }
  .main__about-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 25px; }
    @media (min-width: 1280px) {
      .main__about-list {
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 90px; } }
  .main__about-item {
    text-align: center; }
    @media (min-width: 1280px) {
      .main__about-item {
        text-align: left; } }
    .main__about-item-icon {
      width: 62px;
      height: 62px;
      margin: 0 auto 12px; }
      @media (min-width: 1280px) {
        .main__about-item-icon {
          margin: 0 0 5px;
          width: 88px;
          height: 88px; } }
      @media (min-width: 1650px) {
        .main__about-item-icon {
          width: 94px;
          height: 94px;
          margin-bottom: 10px; } }
    .main__about-item-title {
      font-weight: 600;
      color: var(--color-red);
      font-size: 32px;
      margin-bottom: 16px; }
      @media (min-width: 1280px) {
        .main__about-item-title {
          font-size: 30px;
          margin-bottom: 0; } }
      @media (min-width: 1650px) {
        .main__about-item-title {
          font-size: 48px; } }
    @media (min-width: 1280px) {
      .main__about-item-text {
        font-size: 24px; } }
    @media (min-width: 1650px) {
      .main__about-item-text {
        font-size: 36px; } }
.main__services-slider-item {
  width: 335px; }
  @media (min-width: 1280px) {
    .main__services-slider-item {
      width: auto; } }
  .main__services-slider-item:hover .main__services-slider-item-title {
    border-color: var(--color-red);
    background: var(--color-red);
    color: #fff; }
  .main__services-slider-item:hover .main__services-slider-item-img {
    opacity: 0;
    visibility: hidden; }
  .main__services-slider-item:hover .main__services-slider-item-open {
    opacity: 1;
    visibility: visible; }
  .main__services-slider-item-title {
    cursor: pointer;
    text-align: center;
    border: 1px solid #d1d1d1;
    background: #fff;
    font-size: 20px;
    border-radius: 20px;
    padding: 28px 5px;
    margin-bottom: 8px; }
    @media (min-width: 1280px) {
      .main__services-slider-item-title {
        margin-bottom: 16px;
        padding: 21px 5px;
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .main__services-slider-item-title {
        border-radius: 30px;
        font-size: 24px;
        font-weight: 500;
        padding-top: 39px;
        padding-bottom: 39px; } }
  .main__services-slider-item-content {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 30px; }
    @media (min-width: 1280px) {
      .main__services-slider-item-content {
        font-size: 14px; } }
    @media (min-width: 1650px) {
      .main__services-slider-item-content {
        font-size: 24px; } }
    .main__services-slider-item-content ul {
      list-style-type: none;
      padding-left: 0; }
      .main__services-slider-item-content ul li a {
        display: inline-block; }
        @media (min-width: 1280px) {
          .main__services-slider-item-content ul li a {
            padding: 9px 13px;
            border-radius: 8px; } }
        .main__services-slider-item-content ul li a:hover {
          background: var(--color-light-gray);
          font-weight: 600;
          color: var(--color-black); }
  .main__services-slider-item-img {
    transition: .2s; }
    .main__services-slider-item-img.hide {
      opacity: 1;
      visibility: hidden; }
  .main__services-slider-item-open {
    transition: .2s;
    opacity: 0;
    visibility: visible;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(images/waves/service.svg) no-repeat;
    background-size: contain;
    padding: 56px 13px; }
.main__services .slider__controls-arrows {
  display: none; }
  @media (min-width: 1280px) {
    .main__services .slider__controls-arrows {
      display: flex; } }
@media (min-width: 1650px) {
  .main__services .btn {
    width: 256px;
    height: 60px;
    font-size: 16px;
    padding: 0; } }
@media (min-width: 1280px) {
  .main__rating {
    padding-bottom: 130px; } }
@media (min-width: 1650px) {
  .main__rating {
    padding-bottom: 30px; } }
@media (min-width: 1280px) {
  .main__rating-content {
    display: flex;
    justify-content: space-between; } }
@media (min-width: 1650px) {
  .main__rating-content {
    align-items: center; } }
.main__rating-img {
  border-radius: 20px;
  position: relative;
  flex: none;
  width: 250px;
  margin-bottom: 150px; }
  .main__rating-img:after {
    content: '';
    position: absolute;
    background: url(images/circles.svg) no-repeat 50%;
    background-size: contain;
    width: 190px;
    height: 190px;
    left: 50%;
    bottom: -60px;
    transform: translateX(-50%); }
    @media (min-width: 1280px) {
      .main__rating-img:after {
        left: unset;
        transform: unset;
        right: -55px;
        bottom: -50px;
        width: 262px;
        height: 262px; } }
    @media (min-width: 1650px) {
      .main__rating-img:after {
        right: 12px;
        bottom: 24px;
        width: 409px;
        height: 409px; } }
  @media (min-width: 768px) {
    .main__rating-img {
      width: 435px;
      margin-bottom: 110px; } }
  @media (min-width: 1280px) {
    .main__rating-img {
      width: 512px;
      margin-bottom: 0; } }
  @media (min-width: 1650px) {
    .main__rating-img {
      width: 800px; } }
  .main__rating-img .review__item {
    position: absolute;
    left: 88px;
    top: calc(100% - 86px);
    z-index: 1; }
    @media (min-width: 768px) {
      .main__rating-img .review__item {
        left: calc(100% - 57px);
        top: calc(100% - 185px); } }
    @media (min-width: 1280px) {
      .main__rating-img .review__item {
        left: calc(100% - 87px);
        top: calc(100% - 120px); } }
    @media (min-width: 1650px) {
      .main__rating-img .review__item {
        left: calc(100% - 240px);
        top: calc(100% - 250px); } }
.main__rating-list {
  flex: none;
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr); }
  @media (min-width: 768px) {
    .main__rating-list {
      grid-template-columns: 153px 1fr; } }
  @media (min-width: 1280px) {
    .main__rating-list {
      display: block;
      width: 264px; } }
  @media (min-width: 1650px) {
    .main__rating-list {
      width: auto;
      display: grid;
      grid-template-columns: 195px 392px;
      grid-gap: 16px; } }
.main__rating-item {
  background: var(--color-gray);
  text-align: center;
  border-radius: 12px; }
  .main__rating-item img {
    max-height: 20px; }
    @media (min-width: 1650px) {
      .main__rating-item img {
        max-height: 35px; } }
  .main__rating-item:not(.ya) {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    @media (min-width: 768px) {
      .main__rating-item:not(.ya) {
        grid-column: unset; } }
    @media (min-width: 1280px) {
      .main__rating-item:not(.ya) {
        display: block;
        height: 56px; } }
    @media (min-width: 1650px) {
      .main__rating-item:not(.ya) {
        height: 84px; } }
  .main__rating-item.ya {
    grid-row: span 3;
    padding: 12px 8px; }
    @media (min-width: 1280px) {
      .main__rating-item.ya {
        display: flex;
        justify-content: center; } }
    @media (min-width: 1650px) {
      .main__rating-item.ya {
        padding: 36px 40px; } }
    .main__rating-item.ya img {
      max-height: unset; }
      @media (min-width: 768px) {
        .main__rating-item.ya img {
          width: 108px;
          height: 108px; } }
      @media (min-width: 1280px) {
        .main__rating-item.ya img {
          width: 70px;
          height: 70px; } }
      @media (min-width: 1650px) {
        .main__rating-item.ya img {
          width: 108px;
          height: 108px; } }
    .main__rating-item.ya .ya__item {
      flex-direction: column;
      border-radius: 70px 70px 0 0;
      clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 16px), 0 100%);
      padding: 5px 5px 20px; }
      @media (min-width: 1280px) {
        .main__rating-item.ya .ya__item {
          flex-direction: row;
          padding: 0 25px 0 0;
          border-radius: 70px 0 0 70px;
          clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%); } }
      @media (min-width: 1650px) {
        .main__rating-item.ya .ya__item {
          flex-direction: column;
          border-radius: 70px 70px 0 0;
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 36px), 0 100%);
          padding: 5px 5px 43px; } }
  .main__rating-item:last-child {
    margin-bottom: 0; }
  @media (min-width: 1280px) {
    .main__rating-item {
      margin-bottom: 6px;
      border-radius: 14px;
      padding: 7px 30px; } }
  @media (min-width: 1650px) {
    .main__rating-item {
      border-radius: 18px; } }
  .main__rating-item .rating {
    justify-content: center; }
    @media (min-width: 1280px) {
      .main__rating-item .rating {
        margin-top: 4px; } }
    .main__rating-item .rating .c-star {
      width: 7px;
      height: 7px; }
      @media (min-width: 1280px) {
        .main__rating-item .rating .c-star {
          width: 15px;
          height: 15px; } }
.main__actions-list {
  display: grid;
  grid-gap: 16px; }
  @media (min-width: 768px) {
    .main__actions-list {
      grid-template-columns: 1fr 1fr; } }
.main__actions-item {
  overflow: hidden;
  display: grid;
  background: var(--color-gray);
  border-radius: 30px;
  position: relative; }
  @media (min-width: 1280px) {
    .main__actions-item {
      grid-gap: 16px;
      grid-template-columns: 1fr 1fr;
      border-radius: 20px; } }
  .main__actions-item-img {
    display: flex;
    flex: none; }
  .main__actions-item-content {
    display: flex;
    flex-direction: column;
    padding: 16px; }
    @media (min-width: 1280px) {
      .main__actions-item-content {
        position: relative;
        padding: 26px 75px 15px 0;
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .main__actions-item-content {
        padding: 50px 120px 15px 0; } }
  .main__actions-item-date {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    top: -10px;
    right: -5px;
    font-size: 12px;
    width: 84px;
    height: 84px; }
    @media (min-width: 1280px) {
      .main__actions-item-date {
        width: 63px;
        height: 63px; } }
    @media (min-width: 1650px) {
      .main__actions-item-date {
        width: 100px;
        height: 100px;
        font-size: 14px;
        top: -20px;
        right: -10px; } }
    .main__actions-item-date:before {
      content: '';
      display: block;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: none;
      border: 1px solid #fff;
      width: 145px;
      height: 145px; }
      @media (min-width: 1280px) {
        .main__actions-item-date:before {
          width: 109px;
          height: 109px; } }
      @media (min-width: 1650px) {
        .main__actions-item-date:before {
          width: 172px;
          height: 172px; } }
  .main__actions-item-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px; }
    @media (min-width: 1280px) {
      .main__actions-item-title {
        margin-bottom: 8px;
        font-weight: 400; } }
    @media (min-width: 1650px) {
      .main__actions-item-title {
        font-size: 24px;
        margin-bottom: 20px; } }
  .main__actions-item-prices {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 13px; }
    @media (min-width: 1280px) {
      .main__actions-item-prices {
        display: block; } }
  .main__actions-item-price {
    font-size: 32px;
    font-weight: 600;
    order: 1; }
    @media (min-width: 1280px) {
      .main__actions-item-price {
        font-size: 24px;
        font-weight: 400; } }
    @media (min-width: 1650px) {
      .main__actions-item-price {
        font-size: 32px;
        font-weight: 600; } }
    .main__actions-item-price-old {
      order: 2;
      color: var(--color-jet);
      font-size: 20px; }
      @media (min-width: 1280px) {
        .main__actions-item-price-old {
          margin-bottom: 3px;
          font-size: 16px; } }
      @media (min-width: 1650px) {
        .main__actions-item-price-old {
          font-size: 20px;
          text-decoration: line-through; } }
  .main__actions-item-btn {
    flex-grow: 1;
    display: flex;
    align-items: flex-end; }
    .main__actions-item-btn .btn {
      width: 100%; }
      @media (min-width: 1280px) {
        .main__actions-item-btn .btn {
          width: auto; } }
      @media (min-width: 1650px) {
        .main__actions-item-btn .btn {
          font-size: 20px; } }
.main__garanty {
  background: var(--color-gray);
  border-radius: 40px;
  padding: 25px 12px; }
  @media (min-width: 1280px) {
    .main__garanty {
      background: none;
      border-radius: 0;
      padding: 0 !important; } }
  @media (min-width: 1280px) {
    .main__garanty .heading {
      padding: 0 55px; } }
  .main__garanty .heading__title span {
    margin: 0 -10px; }
  .main__garanty .heading__right {
    color: var(--color-jet); }
    @media (min-width: 1280px) {
      .main__garanty .heading__right {
        color: var(--color-black); } }
    @media (min-width: 1650px) {
      .main__garanty .heading__right {
        font-size: 40px; } }
  .main__garanty-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px; }
    @media (min-width: 1280px) {
      .main__garanty-list {
        grid-gap: 16px;
        grid-template-columns: repeat(12, 1fr);
        padding-top: 32px;
        padding-bottom: 32px; } }
  .main__garanty-item {
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    border-radius: 30px;
    background-image: url(images/waves/garanty.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
    height: 140px; }
    @media (min-width: 768px) {
      .main__garanty-item {
        height: 270px; } }
    .main__garanty-item img {
      height: 100%;
      object-fit: cover; }
    .main__garanty-item:nth-child(1) {
      order: 1;
      grid-column: span 2; }
      @media (min-width: 1280px) {
        .main__garanty-item:nth-child(1) {
          grid-column: span 5; } }
    .main__garanty-item:nth-child(2) {
      order: 4;
      grid-column: span 2; }
      @media (min-width: 1280px) {
        .main__garanty-item:nth-child(2) {
          grid-column: span 7;
          order: 2; } }
    .main__garanty-item:nth-child(3) {
      order: 5;
      grid-column: span 2; }
      @media (min-width: 1280px) {
        .main__garanty-item:nth-child(3) {
          grid-column: span 5;
          order: 3; } }
    .main__garanty-item:nth-child(4) {
      order: 3; }
      @media (min-width: 1280px) {
        .main__garanty-item:nth-child(4) {
          grid-column: span 4;
          order: 4; } }
    .main__garanty-item:nth-child(5) {
      order: 2; }
      @media (min-width: 1280px) {
        .main__garanty-item:nth-child(5) {
          grid-column: span 3;
          order: 5; } }
    @media (min-width: 1280px) {
      .main__garanty-item {
        background-image: unset;
        border-radius: 20px;
        font-size: 24px;
        height: auto; } }
    @media (min-width: 1650px) {
      .main__garanty-item {
        background-image: url(images/waves/garanty.svg);
        border-radius: 30px;
        font-size: 36px; } }
    .main__garanty-item .text {
      padding: 23px; }
      @media (min-width: 1650px) {
        .main__garanty-item .text {
          padding: 36px; } }
    .main__garanty-item span {
      font-weight: 500; }
.main__specs .heading__title span {
  margin: 0 -10px; }
.main__specs .heading__right {
  font-size: 20px;
  color: var(--color-jet); }
  @media (min-width: 1280px) {
    .main__specs .heading__right {
      font-size: 24px;
      color: var(--color-black); } }
  @media (min-width: 1650px) {
    .main__specs .heading__right {
      font-size: 40px; } }
.main__specs-experience {
  margin-top: 20px;
  text-align: center;
  background: var(--color-black);
  color: #fff;
  display: none; }
  @media (min-width: 1280px) {
    .main__specs-experience {
      display: block;
      width: 250px;
      border-radius: 8px;
      font-size: 14px;
      padding: 10px 5px; } }
  .main__specs-experience span {
    font-weight: 600; }
    @media (min-width: 1280px) {
      .main__specs-experience span {
        font-size: 20px; } }
@media (min-width: 1280px) {
  .main__specs-slider {
    margin-bottom: 20px; } }
.main__specs-item {
  background: var(--color-gray);
  overflow: hidden;
  display: grid;
  border-radius: 30px;
  position: relative; }
  @media (min-width: 1280px) {
    .main__specs-item {
      grid-gap: 16px;
      grid-template-columns: 1fr 1fr;
      border-radius: 35px; } }
  @media (min-width: 1650px) {
    .main__specs-item {
      border-radius: 54px; } }
  .main__specs-item-img {
    display: flex;
    flex: none;
    align-items: flex-end;
    background: #dfdfdf;
    justify-content: center;
    max-height: 190px;
    padding-top: 16px; }
    @media (min-width: 1280px) {
      .main__specs-item-img {
        max-height: unset;
        padding-top: 0; } }
  .main__specs-item-content {
    display: flex;
    flex-direction: column;
    padding: 16px; }
    @media (min-width: 1280px) {
      .main__specs-item-content {
        position: relative;
        padding: 40px 20px 20px 0;
        font-size: 14px; } }
  .main__specs-item-period {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--color-black);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    top: -10px;
    right: -5px;
    width: 84px;
    height: 84px;
    font-size: 12px; }
    @media (min-width: 1280px) {
      .main__specs-item-period {
        font-size: 11px;
        width: 63px;
        height: 63px; } }
    @media (min-width: 1650px) {
      .main__specs-item-period {
        font-size: 16px;
        width: 100px;
        height: 100px; } }
    .main__specs-item-period span {
      font-weight: 500; }
  .main__specs-item-name {
    font-size: 20px;
    margin-bottom: 7px; }
    @media (min-width: 1280px) {
      .main__specs-item-name {
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .main__specs-item-name {
        font-size: 24px;
        font-weight: 600; } }
  .main__specs-item-position {
    color: #9c9c9c;
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .main__specs-item-position {
        font-size: 14px; } }
    @media (min-width: 1280px) {
      .main__specs-item-position {
        margin-bottom: 12px; } }
    @media (min-width: 1650px) {
      .main__specs-item-position {
        font-size: 16px;
        margin-bottom: 17px; } }
  .main__specs-item-text {
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      .main__specs-item-text {
        font-size: 16px; } }
    @media (min-width: 1280px) {
      .main__specs-item-text {
        margin-bottom: 16px;
        font-size: 14px; } }
    @media (min-width: 1650px) {
      .main__specs-item-text {
        font-size: 20px; } }
  .main__specs-item-docs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 7px;
    margin-bottom: 16px; }
    @media (min-width: 1650px) {
      .main__specs-item-docs {
        margin-bottom: 25px; } }
    .main__specs-item-docs-item {
      display: flex;
      background: #fff;
      border-radius: 3px;
      padding: 5px;
      cursor: pointer; }
  .main__specs-item-btn .btn {
    font-size: 13px;
    width: 100%; }
    @media (min-width: 1650px) {
      .main__specs-item-btn .btn {
        font-size: 20px;
        padding-top: 17px;
        padding-bottom: 17px; } }
.main__specs .slider__controls-arrows {
  display: none; }
  @media (min-width: 1280px) {
    .main__specs .slider__controls-arrows {
      display: flex; } }
@media (min-width: 1650px) {
  .main__specs .main__slider-bottom-btn .btn {
    font-size: 20px;
    width: 256px;
    height: 60px;
    min-width: unset;
    padding: 0; } }
.main__slider-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px; }
  @media (min-width: 1650px) {
    .main__slider-bottom .btn {
      width: 256px;
      height: 60px;
      padding: 0;
      min-width: unset;
      font-size: 16px; } }
  @media (min-width: 1650px) {
    .main__slider-bottom .slider__controls-dots .swiper-pagination-bullet {
      width: 12px;
      height: 12px; } }
.main__form {
  background-color: var(--color-light-gray);
  border-radius: 30px;
  padding-top: 18px;
  padding-bottom: 13px;
  position: relative;
  z-index: 1;
  overflow: visible; }
  @media (min-width: 1280px) {
    .main__form {
      padding-top: 45px;
      padding-bottom: 110px;
      margin-bottom: 180px; } }
  @media (min-width: 1650px) {
    .main__form {
      padding-bottom: 195px;
      margin-bottom: 280px; } }
  @media (min-width: 1280px) {
    .main__form:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      z-index: 2;
      width: 100%;
      height: calc(100% + 70px);
      background-image: url(images/form-photo.png);
      background-position: 106% 100%;
      background-repeat: no-repeat;
      background-size: contain; } }
  @media (min-width: 1650px) {
    .main__form:after {
      height: calc(100% + 110px); } }
  .main__form .heading__title {
    text-align: center;
    margin-bottom: 15px; }
    @media (min-width: 1280px) {
      .main__form .heading__title {
        text-align: left;
        margin-bottom: 25px; } }
    @media (min-width: 1650px) {
      .main__form .heading__title {
        margin-bottom: 40px; } }
  .main__form-text {
    font-size: 20px;
    text-align: center;
    margin-bottom: 14px; }
    @media (min-width: 1280px) {
      .main__form-text {
        font-size: 24px;
        text-align: left;
        margin-bottom: 25px; } }
    @media (min-width: 1650px) {
      .main__form-text {
        font-size: 36px;
        margin-bottom: 40px; } }
    .main__form-text ul {
      list-style-type: none;
      padding: 0;
      margin-top: 16px;
      font-size: 16px; }
      @media (min-width: 1280px) {
        .main__form-text ul {
          font-size: 20px; } }
      @media (min-width: 1650px) {
        .main__form-text ul {
          font-size: 24px; } }
      .main__form-text ul li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px; }
        @media (min-width: 1650px) {
          .main__form-text ul li {
            margin-bottom: 26px; } }
        .main__form-text ul li:last-child {
          margin-bottom: 0; }
        .main__form-text ul li:before {
          content: '';
          width: 16px;
          height: 16px;
          background: url(images/li.svg) no-repeat; }
          @media (min-width: 1280px) {
            .main__form-text ul li:before {
              background-image: url(images/li-gray.svg); } }
  .main__form-wrapper {
    background: #fff;
    border-radius: 30px;
    padding: 14px;
    text-align: center; }
    @media (min-width: 1280px) {
      .main__form-wrapper {
        text-align: left;
        background: linear-gradient(to right, #e7e7e7, rgba(255, 255, 255, 0.3));
        backdrop-filter: blur(3px);
        border-radius: 20px;
        padding: 43px 88px;
        position: absolute;
        z-index: 3; } }
    @media (min-width: 1650px) {
      .main__form-wrapper {
        width: calc(100% - 180px);
        border-radius: 30px;
        backdrop-filter: blur(7px);
        padding: 66px 137px; } }
  .main__form-title {
    margin-bottom: 14px;
    font-size: 20px; }
    @media (min-width: 1280px) {
      .main__form-title {
        font-size: 24px; } }
    @media (min-width: 1650px) {
      .main__form-title {
        font-size: 32px;
        margin-bottom: 30px; } }
@media (min-width: 1280px) {
  .main__articles-slider {
    margin-bottom: 20px; } }
.main__articles .slider__controls-arrows {
  display: none; }
  @media (min-width: 1280px) {
    .main__articles .slider__controls-arrows {
      display: flex; } }
.main__articles-item {
  background: var(--color-gray);
  display: block;
  border-radius: 30px;
  padding: 25px; }
  @media (min-width: 1280px) {
    .main__articles-item {
      padding: 19px; } }
  .main__articles-item-img {
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 16px; }
    @media (min-width: 1280px) {
      .main__articles-item-img {
        margin-bottom: 9px; } }
    @media (min-width: 1650px) {
      .main__articles-item-img {
        margin-bottom: 20px; } }
  .main__articles-item-title {
    margin-bottom: 5px;
    font-size: 20px; }
    @media (min-width: 1280px) {
      .main__articles-item-title {
        text-align: center;
        padding: 0 13px;
        font-size: 24px; } }
    @media (min-width: 1650px) {
      .main__articles-item-title {
        padding: 0 60px; } }
  .main__articles-item-bottom {
    display: flex;
    justify-content: flex-end; }
  .main__articles-item-more {
    width: 46px;
    height: 46px;
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    transition: .2s; }
    @media (min-width: 1280px) {
      .main__articles-item-more {
        width: 50px;
        height: 50px; } }
    .main__articles-item-more svg {
      width: 13px;
      height: 14px;
      flex: none;
      fill: var(--color-red);
      transition: .2s; }
  .main__articles-item:hover .main__articles-item-more {
    background: var(--color-red); }
    .main__articles-item:hover .main__articles-item-more svg {
      transform: rotate(45deg);
      fill: #fff; }
  .main__articles-item:hover .main__articles-item-title {
    color: var(--color-black); }
.main__contacts .heading__title span {
  margin-left: -10px; }
.main__contacts-wrapper {
  display: grid;
  grid-gap: 16px; }
  @media (min-width: 1280px) {
    .main__contacts-wrapper {
      grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) {
  .main__contacts-content {
    order: 2; } }
@media (min-width: 1650px) {
  .main__contacts-content {
    display: flex;
    flex-direction: column;
    padding-bottom: 80px; }
    .main__contacts-content .contacts__item-list {
      flex-grow: 1; } }
.main__contacts-content .contacts__consult {
  display: none; }
  @media (min-width: 1280px) {
    .main__contacts-content .contacts__consult {
      display: block; } }
@media (min-width: 1280px) {
  .main__contacts-map {
    order: 1; } }
@media (min-width: 1280px) {
  .main__contacts-map .contacts__consult {
    display: none; } }
.main__contacts-map-wrapper {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
  height: 248px; }
  @media (min-width: 768px) {
    .main__contacts-map-wrapper {
      height: 460px; } }
  @media (min-width: 1280px) {
    .main__contacts-map-wrapper {
      margin-bottom: 20px;
      height: 355px; } }
  @media (min-width: 1650px) {
    .main__contacts-map-wrapper {
      height: 566px; } }
.main__contacts-map-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 8px;
  align-items: center;
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .main__contacts-map-links {
      grid-template-columns: 97px 1fr; } }
  @media (min-width: 1280px) {
    .main__contacts-map-links {
      margin-bottom: 0;
      grid-gap: 16px;
      grid-template-columns: 1fr 1fr; } }
  .main__contacts-map-links .btn {
    grid-column: span 3;
    width: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
    height: 50px; }
    @media (min-width: 768px) {
      .main__contacts-map-links .btn {
        font-size: 20px;
        grid-column: unset;
        height: auto; } }
    @media (min-width: 1280px) {
      .main__contacts-map-links .btn {
        font-size: 11px; } }
    @media (min-width: 1650px) {
      .main__contacts-map-links .btn {
        font-size: 16px;
        height: 60px; } }
    .main__contacts-map-links .btn img {
      flex: none;
      width: 30px;
      height: 30px; }
      @media (min-width: 768px) {
        .main__contacts-map-links .btn img {
          width: 45px;
          height: 45px; } }
      @media (min-width: 1280px) {
        .main__contacts-map-links .btn img {
          width: 34px;
          height: 34px; } }
      @media (min-width: 1650px) {
        .main__contacts-map-links .btn img {
          width: 40px;
          height: 40px; } }
  .main__contacts-map-links .ya {
    grid-row: span 2;
    background: #eee;
    border-radius: 12px;
    padding: 5px 9px 10px;
    text-align: center; }
    @media (min-width: 768px) {
      .main__contacts-map-links .ya__item-title {
        font-size: 13px; } }
    @media (min-width: 1280px) {
      .main__contacts-map-links .ya {
        display: none; } }

.rating {
  display: flex;
  gap: 4px; }
  .rating .c-star {
    width: 15px;
    height: 15px;
    fill: #E8E8E8;
    stroke: #E8E8E8; }
    .rating .c-star.active {
      fill: #F1A62F;
      stroke: #F1A62F; }
      .rating .c-star.active .stroke {
        fill: #E8E8E8;
        stroke: #E8E8E8; }

@media (min-width: 1650px) {
  .reviews__top {
    margin-bottom: 90px; } }
@media (min-width: 1280px) {
  .reviews__top-container {
    display: flex; } }
.reviews__top-content {
  margin-bottom: 12px; }
  @media (min-width: 1280px) {
    .reviews__top-content {
      margin-bottom: 0; } }
.reviews__top-img {
  flex: none;
  width: 290px;
  margin: 0 auto; }
  @media (min-width: 1280px) {
    .reviews__top-img {
      width: 35%; } }
.reviews__top .heading {
  margin-bottom: 20px; }
  @media (min-width: 1650px) {
    .reviews__top .heading {
      margin-bottom: 46px; } }
.reviews__top-text {
  color: var(--color-jet);
  margin-bottom: 20px; }
  @media (min-width: 1280px) {
    .reviews__top-text {
      font-size: 32px; } }
  @media (min-width: 1650px) {
    .reviews__top-text {
      margin-bottom: 40px;
      font-size: 40px; } }
  .reviews__top-text ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .reviews__top-text ul li {
      margin-bottom: 16px; }
      @media (min-width: 1650px) {
        .reviews__top-text ul li {
          margin-bottom: 26px; } }
      .reviews__top-text ul li:last-child {
        margin-bottom: 0; }
      .reviews__top-text ul li span {
        color: var(--color-black); }
.reviews__doctor-slider {
  margin: 0;
  padding: 0; }
.reviews__doctor-item {
  display: grid;
  grid-gap: 8px;
  padding-bottom: 15px; }
  @media (min-width: 1280px) {
    .reviews__doctor-item {
      grid-template-columns: 1fr 1fr;
      grid-gap: 18px;
      padding-bottom: 0; } }
  .reviews__doctor-item-reviews {
    display: grid;
    grid-gap: 16px; }
    .reviews__doctor-item-reviews .review__item {
      width: 100%; }
      .reviews__doctor-item-reviews .review__item-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center; }
.reviews__list-slider {
  margin: -15px;
  padding: 15px; }
.reviews__list .slider__controls {
  width: 100%; }
  .reviews__list .slider__controls-dots {
    flex-grow: 1; }

@media (min-width: 1280px) {
  .main__reviews .swiper-wrapper {
    display: grid;
    grid-gap: 16px;
    grid-template-columns: repeat(4, 1fr); } }

.review__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px; }
.review__item {
  background: #fff;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 5px 7px 11px 0 rgba(234, 234, 234, 0.63);
  width: 248px; }
  .review__item-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 5px 7px 11px 0 rgba(234, 234, 234, 0.63);
    width: 248px; }
    @media (min-width: 1280px) {
      .review__item-wrapper.swiper-slide {
        width: 100%; } }
    .review__item-wrapper .review__item {
      background: none;
      border-radius: 0;
      padding: 0;
      box-shadow: unset;
      width: 100%; }
  @media (min-width: 768px) {
    .review__item {
      width: 323px; } }
  @media (min-width: 1280px) {
    .review__item {
      width: 248px; } }
  @media (min-width: 1650px) {
    .review__item {
      width: 392px;
      padding: 21px 20px; } }
  .review__item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px; }
    @media (min-width: 1650px) {
      .review__item-top {
        gap: 21px;
        margin-bottom: 17px; } }
    .review__item-top-sub {
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 12px; }
      @media (min-width: 1280px) {
        .review__item-top-sub {
          gap: 15px; } }
      @media (min-width: 1650px) {
        .review__item-top-sub {
          margin-bottom: 17px; } }
  .review__item-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    background: #D889A8;
    flex: none; }
    @media (min-width: 768px) {
      .review__item-icon {
        width: 46px;
        height: 46px; } }
    @media (min-width: 1280px) {
      .review__item-icon {
        width: 40px;
        height: 40px; } }
    @media (min-width: 1650px) {
      .review__item-icon {
        width: 60px;
        height: 60px; } }
  .review__item-name {
    font-weight: 600;
    font-size: 14px; }
    @media (min-width: 768px) {
      .review__item-name {
        font-size: 20px; } }
    @media (min-width: 1280px) {
      .review__item-name {
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .review__item-name {
        font-size: 20px;
        margin-bottom: 8px; } }
  .review__item-position {
    color: #9c9c9c;
    font-size: 12px; }
    @media (min-width: 1280px) {
      .review__item-position {
        font-size: 14px; } }
    @media (min-width: 1650px) {
      .review__item-position {
        font-size: 16px; } }
  .review__item-date {
    display: flex;
    align-items: center;
    gap: 5px; }
    .review__item-date-icon {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #F6B0B0;
      color: #fff;
      font-size: 10px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: center; }
      @media (min-width: 768px) {
        .review__item-date-icon {
          width: 17px;
          height: 17px; } }
      @media (min-width: 1280px) {
        .review__item-date-icon {
          width: 12px;
          height: 12px; } }
      @media (min-width: 1650px) {
        .review__item-date-icon {
          width: 18px;
          height: 18px; } }
    .review__item-date-value {
      color: #9c9c9c;
      font-size: 12px; }
      @media (min-width: 768px) {
        .review__item-date-value {
          font-size: 16px; } }
      @media (min-width: 1280px) {
        .review__item-date-value {
          font-size: 12px; } }
      @media (min-width: 1650px) {
        .review__item-date-value {
          font-size: 16px; } }
  .review__item-text {
    margin-bottom: 8px;
    font-size: 12px; }
    @media (min-width: 768px) {
      .review__item-text {
        font-size: 16px; } }
    @media (min-width: 1280px) {
      .review__item-text {
        font-size: 15px; } }
    @media (min-width: 1650px) {
      .review__item-text {
        font-size: 16px;
        margin-bottom: 16px; } }
  .review__item-rating {
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .review__item-rating {
        margin-bottom: 16px; } }
    @media (min-width: 1280px) {
      .review__item-rating {
        margin-bottom: 10px; } }
    @media (min-width: 1650px) {
      .review__item-rating {
        margin-bottom: 20px; } }
    .review__item-rating .rating {
      justify-content: center; }
  .review__item-btn {
    text-align: center; }
    @media (min-width: 1280px) {
      .review__item-btn .btn {
        border-radius: 8px; } }
.review__modal.modal {
  background: #f1f1f1;
  width: 800px;
  text-align: left;
  padding: 0; }
  @media (min-width: 1650px) {
    .review__modal.modal {
      padding: 100px 120px; } }
  @media (min-width: 1280px) {
    .review__modal.modal .fancybox-close-small {
      top: 45px;
      right: 45px; } }
.review__modal .review__item {
  width: 100%; }
  @media (min-width: 768px) {
    .review__modal .review__item {
      padding: 58px 45px; } }
  @media (min-width: 1280px) {
    .review__modal .review__item {
      padding: 12px; } }
  @media (min-width: 768px) {
    .review__modal .review__item-icon {
      width: 83px;
      height: 83px; } }
  @media (min-width: 1280px) {
    .review__modal .review__item-icon {
      width: 40px;
      height: 40px; } }
  @media (min-width: 1650px) {
    .review__modal .review__item-icon {
      width: 60px;
      height: 60px; } }
  @media (min-width: 768px) {
    .review__modal .review__item-name {
      font-size: 30px; } }
  @media (min-width: 1280px) {
    .review__modal .review__item-name {
      font-size: 16px; } }
  @media (min-width: 1650px) {
    .review__modal .review__item-name {
      font-size: 20px; } }
  @media (min-width: 768px) {
    .review__modal .review__item-position {
      font-size: 30px; } }
  @media (min-width: 1280px) {
    .review__modal .review__item-position {
      font-size: 14px; } }
  @media (min-width: 1650px) {
    .review__modal .review__item-position {
      font-size: 16px; } }
  @media (min-width: 768px) {
    .review__modal .review__item-date-value {
      font-size: 30px; } }
  @media (min-width: 1280px) {
    .review__modal .review__item-date-value {
      font-size: 12px; } }
  @media (min-width: 1650px) {
    .review__modal .review__item-date-value {
      font-size: 16px; } }
  .review__modal .review__item-rating {
    margin-bottom: 0; }
    .review__modal .review__item-rating .rating .c-star {
      width: 11px;
      height: 11px; }
      @media (min-width: 768px) {
        .review__modal .review__item-rating .rating .c-star {
          width: 22px;
          height: 22px; } }
      @media (min-width: 1280px) {
        .review__modal .review__item-rating .rating .c-star {
          width: 17px;
          height: 17px; } }
  .review__modal .review__item-text {
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .review__modal .review__item-text {
        font-size: 30px; } }
    @media (min-width: 1280px) {
      .review__modal .review__item-text {
        font-size: 18px; } }
    @media (min-width: 1650px) {
      .review__modal .review__item-text {
        font-size: 20px;
        margin-bottom: 16px; } }
  .review__modal .review__item-btn .btn {
    width: 100%;
    height: 46px; }
    @media (min-width: 768px) {
      .review__modal .review__item-btn .btn {
        height: 90px; } }
    @media (min-width: 1280px) {
      .review__modal .review__item-btn .btn {
        height: 60px; } }

@media (min-width: 1280px) {
  .contacts__page .contacts__map-container .main__contacts-map-wrapper {
    height: 436px; } }
@media (min-width: 1280px) {
  .contacts__top {
    grid-template-columns: 2fr 1fr; } }
@media (min-width: 1650px) {
  .contacts__top {
    margin-bottom: 90px; } }
.contacts__top .heading {
  margin-bottom: 14px; }
  @media (min-width: 1280px) {
    .contacts__top .heading {
      margin-bottom: 20px; } }
  @media (min-width: 1650px) {
    .contacts__top .heading {
      margin-bottom: 28px; } }
.contacts__top .top__block-item:first-child {
  background: var(--color-gray) url(images/waves/contacts.svg) no-repeat 50% 100%;
  background-size: contain; }
.contacts__top .top__block-item.img {
  display: none; }
  @media (min-width: 1280px) {
    .contacts__top .top__block-item.img {
      display: block;
      grid-row: span 2; } }
.contacts__top-grid {
  display: grid;
  grid-gap: 16px; }
  @media (min-width: 1280px) {
    .contacts__top-grid {
      grid-template-columns: 5fr 3fr; } }
  .contacts__top-grid .contacts__item-list {
    grid-template-columns: 1fr; }
  .contacts__top-grid .contacts__item-metro .contacts__metro {
    grid-template-columns: 1fr 1fr; }
    .contacts__top-grid .contacts__item-metro .contacts__metro-item {
      font-size: 12px; }
      @media (min-width: 1280px) {
        .contacts__top-grid .contacts__item-metro .contacts__metro-item {
          font-size: 14px; } }
      @media (min-width: 1650px) {
        .contacts__top-grid .contacts__item-metro .contacts__metro-item {
          font-size: 16px; } }
      .contacts__top-grid .contacts__item-metro .contacts__metro-item-icon {
        width: 16px;
        height: 16px; }
        @media (min-width: 1280px) {
          .contacts__top-grid .contacts__item-metro .contacts__metro-item-icon {
            width: 25px;
            height: 25px; } }
  .contacts__top-grid .contacts__item-list {
    margin-bottom: 0; }
  .contacts__top-grid .contacts__item-value {
    font-size: 16px; }
  .contacts__top-grid .contacts__item-phone, .contacts__top-grid .contacts__item-address {
    order: 1; }
  .contacts__top-grid .contacts__item-btn, .contacts__top-grid .contacts__item-metro {
    order: 2; }
  .contacts__top-grid .contacts__item-ya, .contacts__top-grid .contacts__item-schedule {
    order: 3; }
  .contacts__top-grid .contacts__item .ya__item {
    display: inline-flex;
    padding: 0 25px 0 0; }
    .contacts__top-grid .contacts__item .ya__item-img {
      width: 60px;
      height: 60px; }
      @media (min-width: 1650px) {
        .contacts__top-grid .contacts__item .ya__item-img {
          width: 105px;
          height: 105px; } }
    .contacts__top-grid .contacts__item .ya__item-content {
      text-align: center; }
    @media (min-width: 1280px) {
      .contacts__top-grid .contacts__item .ya__item-title {
        font-size: 15px; } }
    @media (min-width: 1650px) {
      .contacts__top-grid .contacts__item .ya__item-title {
        font-size: 27px; } }
    @media (min-width: 1650px) {
      .contacts__top-grid .contacts__item .ya__item-text {
        font-size: 12px; } }
.contacts__metro {
  display: grid;
  grid-gap: 12px; }
  @media (min-width: 768px) {
    .contacts__metro {
      grid-template-columns: 1fr 1fr;
      grid-column-gap: 24px;
      grid-row-gap: 8px; } }
  @media (min-width: 1650px) {
    .contacts__metro {
      grid-row-gap: 12px; } }
  .contacts__metro-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16px;
    white-space: nowrap; }
    @media (min-width: 1280px) {
      .contacts__metro-item {
        gap: 16px;
        font-size: 14px; } }
    @media (min-width: 1650px) {
      .contacts__metro-item {
        font-size: 16px; } }
    .contacts__metro-item-icon {
      width: 25px;
      height: 25px;
      flex: none; }
      @media (min-width: 1280px) {
        .contacts__metro-item-icon {
          width: 24px;
          height: 24px; } }
      @media (min-width: 1650px) {
        .contacts__metro-item-icon {
          width: 30px;
          height: 30px; } }
      .contacts__metro-item-icon.green svg {
        fill: #3AA63A; }
      .contacts__metro-item-icon.light-green svg {
        fill: #9FBF00; }
.contacts__item-list {
  display: grid;
  grid-gap: 17px;
  margin-bottom: 17px; }
  @media (min-width: 1280px) {
    .contacts__item-list {
      grid-gap: 13px; } }
  @media (min-width: 1650px) {
    .contacts__item-list {
      grid-gap: 20px;
      grid-template-columns: auto auto;
      padding-top: 20px; } }
  .contacts__item-list-bottom {
    grid-template-columns: 3fr 1fr; }
    @media (min-width: 1280px) {
      .contacts__item-list-bottom {
        grid-template-columns: unset; } }
    .contacts__item-list-bottom .contacts__item-phone {
      order: 1; }
    .contacts__item-list-bottom .contacts__item-ya {
      order: 2;
      grid-row: span 2; }
      @media (min-width: 1280px) {
        .contacts__item-list-bottom .contacts__item-ya {
          order: 3;
          grid-row: unset; } }
      .contacts__item-list-bottom .contacts__item-ya .ya__item {
        flex-direction: column;
        border-radius: 70px 70px 0 0;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 16px), 0 100%);
        padding: 5px 5px 20px; }
        @media (min-width: 1280px) {
          .contacts__item-list-bottom .contacts__item-ya .ya__item {
            flex-direction: row;
            border-radius: 70px 0 0 70px;
            clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%);
            padding: 0 25px 0 0; } }
        @media (min-width: 1650px) {
          .contacts__item-list-bottom .contacts__item-ya .ya__item {
            clip-path: polygon(0 0, 100% 0, calc(100% - 27px) 50%, 100% 100%, 0 100%); } }
    .contacts__item-list-bottom .contacts__item-btn {
      order: 3; }
      @media (min-width: 1280px) {
        .contacts__item-list-bottom .contacts__item-btn {
          order: 2; } }
@media (min-width: 1280px) {
  .contacts__item-phone {
    order: 3; } }
@media (min-width: 1650px) {
  .contacts__item-phone {
    order: 2; }
    .contacts__item-phone .contacts__item-value {
      font-size: 32px; } }
@media (min-width: 1280px) {
  .contacts__item-metro {
    order: 2; } }
@media (min-width: 1650px) {
  .contacts__item-metro {
    order: 3; } }
@media (min-width: 1280px) {
  .contacts__item-address {
    order: 1; } }
.contacts__item-label {
  color: #9c9c9c;
  margin-bottom: 8px;
  font-size: 14px; }
  @media (min-width: 1280px) {
    .contacts__item-label {
      font-size: 13px; } }
  @media (min-width: 1650px) {
    .contacts__item-label {
      font-size: 16px;
      margin-bottom: 12px; } }
.contacts__item-value {
  font-size: 24px; }
  @media (min-width: 1650px) {
    .contacts__item-value {
      font-weight: 600; } }
.contacts__bottom {
  grid-template-columns: 135px 1fr;
  grid-gap: 10px;
  display: none; }
  @media (min-width: 1280px) {
    .contacts__bottom {
      display: grid; } }
  @media (min-width: 1650px) {
    .contacts__bottom {
      grid-template-columns: 195px 1fr; } }
  .contacts__bottom-item {
    background: var(--color-gray);
    text-align: center; }
    .contacts__bottom-item:first-child {
      border-radius: 12px; }
      @media (min-width: 1280px) {
        .contacts__bottom-item:first-child {
          padding: 25px 30px; } }
      @media (min-width: 1650px) {
        .contacts__bottom-item:first-child {
          padding: 50px 44px; } }
.contacts__consult {
  font-size: 16px;
  border-radius: 20px;
  background: var(--color-gray);
  text-align: center;
  padding: 20px 30px; }
  @media (min-width: 1280px) {
    .contacts__consult {
      padding: 17px 30px; } }
  @media (min-width: 1650px) {
    .contacts__consult {
      padding: 36px 50px;
      font-size: 20px; } }
  .contacts__consult .title {
    font-size: 20px; }
    @media (min-width: 1280px) {
      .contacts__consult .title {
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .contacts__consult .title {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 16px; } }
  @media (min-width: 1650px) {
    .contacts__consult .btn {
      font-size: 16px;
      height: 60px;
      padding: 0; } }
.contacts__map {
  display: grid; }
  @media (min-width: 1280px) {
    .contacts__map {
      grid-template-columns: repeat(12, 1fr); } }
  @media (min-width: 1280px) {
    .contacts__map-container {
      grid-column: 2 / 12; } }
  .contacts__map-container .main__contacts-map-wrapper {
    height: 180px; }
    @media (min-width: 1280px) {
      .contacts__map-container .main__contacts-map-wrapper {
        height: 248px; } }
  .contacts__map-container .main__contacts-map-links {
    grid-template-columns: unset;
    justify-content: center; }
    @media (min-width: 1280px) {
      .contacts__map-container .main__contacts-map-links {
        grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1280px) {
      .contacts__map-container .main__contacts-map-links .btn {
        font-size: 15px;
        border-radius: 8px; } }
    @media (min-width: 1650px) {
      .contacts__map-container .main__contacts-map-links .btn {
        font-size: 16px; } }
  .contacts__map-container .ya {
    display: none; }
.contacts__route {
  padding: 0 !important; }
  @media (min-width: 1280px) {
    .contacts__route .heading {
      padding: 0 55px; } }
  @media (min-width: 1650px) {
    .contacts__route .heading {
      padding: 0 90px; } }
  .contacts__route-tabs {
    display: flex;
    margin-bottom: 16px;
    gap: 8px;
    flex-wrap: wrap; }
    @media (min-width: 1280px) {
      .contacts__route-tabs {
        gap: 16px;
        margin-bottom: 30px;
        padding: 0 55px; } }
    @media (min-width: 1650px) {
      .contacts__route-tabs {
        margin-bottom: 43px;
        padding: 0 90px; } }
    .contacts__route-tabs-item {
      font-weight: 500;
      background: var(--color-light-gray);
      transition: .2s;
      cursor: pointer;
      font-size: 12px;
      border-radius: 8px;
      padding: 12px;
      white-space: nowrap; }
      .contacts__route-tabs-item:hover, .contacts__route-tabs-item.active {
        background: var(--color-red);
        color: #fff; }
      @media (min-width: 1280px) {
        .contacts__route-tabs-item {
          padding: 18px 16px;
          border-radius: 14px;
          font-size: 16px; } }
      @media (min-width: 1650px) {
        .contacts__route-tabs-item {
          font-size: 24px;
          padding: 20px 27px;
          border-radius: 18px; } }
  .contacts__route-slider-wrapper {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 18px;
    position: relative;
    background: var(--color-light-gray); }
    @media (min-width: 1650px) {
      .contacts__route-slider-wrapper {
        padding-top: 32px;
        padding-bottom: 32px;
        padding-right: 32px; } }
  .contacts__route-slider-item-content {
    display: grid;
    grid-gap: 16px;
    background: var(--color-light-gray); }
    @media (min-width: 1280px) {
      .contacts__route-slider-item-content {
        grid-template-columns: repeat(12, 1fr);
        grid-gap: 50px; } }
  @media (min-width: 1280px) {
    .contacts__route-slider-item-info {
      grid-column: span 7;
      padding-top: 30px;
      padding-bottom: 85px; } }
  @media (min-width: 1650px) {
    .contacts__route-slider-item-info {
      padding-top: 85px; } }
  .contacts__route-slider-item-img {
    display: flex;
    overflow: hidden;
    border-radius: 18px; }
    @media (min-width: 1280px) {
      .contacts__route-slider-item-img {
        grid-column: span 5;
        border-radius: 20px; } }
  .contacts__route-slider-item-title {
    margin-bottom: 16px;
    font-size: 20px; }
    @media (min-width: 1280px) {
      .contacts__route-slider-item-title {
        font-size: 24px; } }
    @media (min-width: 1650px) {
      .contacts__route-slider-item-title {
        font-size: 36px;
        margin-bottom: 33px; } }
  .contacts__route-slider-item-text {
    font-size: 16px; }
    @media (min-width: 1650px) {
      .contacts__route-slider-item-text {
        font-size: 20px; } }
  .contacts__route .main__slider-bottom .slider__controls {
    width: 100%; }
    .contacts__route .main__slider-bottom .slider__controls-dots {
      flex-grow: 1; }
  @media (min-width: 1280px) {
    .contacts__route .main__slider-bottom {
      margin-top: 0;
      position: absolute;
      z-index: 1;
      bottom: 32px;
      left: 55px; } }
  @media (min-width: 1280px) and (min-width: 1650px) {
    .contacts__route .main__slider-bottom {
      left: 90px; } }

.ya__item {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px;
  background: #fff;
  border-radius: 70px 0 0 70px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0 100%); }
  @media (min-width: 1280px) {
    .ya__item {
      gap: 12px; } }
  @media (min-width: 1650px) {
    .ya__item {
      gap: 0; } }
  .ya__item-img {
    display: flex; }
  .ya__item-title {
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1;
    font-size: 10px; }
    @media (min-width: 768px) {
      .ya__item-title {
        font-size: 20px; } }
    @media (min-width: 1280px) {
      .ya__item-title {
        font-size: 18px; } }
    @media (min-width: 1650px) {
      .ya__item-title {
        font-size: 20px; } }
  .ya__item-text {
    color: #9c9c9c;
    font-size: 7px; }
    @media (min-width: 768px) {
      .ya__item-text {
        font-size: 12px; } }
    @media (min-width: 1280px) {
      .ya__item-text {
        font-size: 9px; } }
.ya__vertical .ya__item {
  flex-direction: column;
  border-radius: 70px 70px 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 16px), 0 100%);
  padding: 5px 5px 20px; }
  @media (min-width: 1280px) {
    .ya__vertical .ya__item-title {
      font-size: 14px; } }
  .ya__vertical .ya__item-text {
    font-size: 8px; }

.price__top {
  grid-gap: 8px; }
  @media (min-width: 1280px) {
    .price__top {
      grid-gap: 16px;
      grid-template-columns: 1fr auto; } }
  .price__top-content {
    background: var(--color-gray); }
    .price__top-content-item {
      background-repeat: no-repeat;
      background-position: 50%;
      background-size: contain;
      display: none; }
      .price__top-content-item-wrapper {
        display: flex;
        align-items: center;
        gap: 10px; }
      @media (min-width: 1280px) {
        .price__top-content-item {
          padding: 30px 0;
          gap: 20px; } }
      .price__top-content-item .heading__title {
        margin-bottom: 14px; }
        @media (min-width: 1280px) {
          .price__top-content-item .heading__title {
            font-weight: 600;
            margin-bottom: 30px; } }
        @media (min-width: 1650px) {
          .price__top-content-item .heading__title {
            margin-bottom: 24px; } }
      .price__top-content-item-img {
        width: 44%;
        flex: none; }
      .price__top-content-item-date {
        color: #9c9c9c; }
        @media (min-width: 1280px) {
          .price__top-content-item-date {
            font-size: 16px; } }
        @media (min-width: 1650px) {
          .price__top-content-item-date {
            font-size: 20px;
            margin-bottom: 12px; } }
      .price__top-content-item-prices {
        display: flex;
        align-items: center;
        font-weight: 600; }
        @media (min-width: 1280px) {
          .price__top-content-item-prices {
            gap: 40px;
            margin-bottom: 25px; } }
        @media (min-width: 1650px) {
          .price__top-content-item-prices {
            margin-bottom: 50px; } }
      @media (min-width: 1280px) {
        .price__top-content-item-price {
          font-size: 45px; } }
      @media (min-width: 1650px) {
        .price__top-content-item-price {
          font-size: 60px; } }
      .price__top-content-item-price-old {
        text-decoration: line-through;
        color: var(--color-jet); }
        @media (min-width: 1280px) {
          .price__top-content-item-price-old {
            font-size: 24px; } }
        @media (min-width: 1650px) {
          .price__top-content-item-price-old {
            font-size: 36px; } }
      .price__top-content-item-text {
        margin-bottom: 20px; }
        @media (min-width: 1280px) {
          .price__top-content-item-text {
            font-size: 32px;
            margin-bottom: 40px; } }
        @media (min-width: 1650px) {
          .price__top-content-item-text {
            font-size: 40px;
            margin-bottom: 65px; } }
        .price__top-content-item-text ul {
          list-style-type: none;
          margin: 10px 0 0;
          padding: 0;
          color: var(--color-jet); }
          @media (min-width: 1280px) {
            .price__top-content-item-text ul {
              font-size: 22px; } }
          @media (min-width: 1650px) {
            .price__top-content-item-text ul {
              margin-top: 23px;
              font-size: 32px; } }
          .price__top-content-item-text ul li {
            margin-bottom: 10px; }
            @media (min-width: 1650px) {
              .price__top-content-item-text ul li {
                margin-bottom: 16px; } }
            .price__top-content-item-text ul li:last-child {
              margin-bottom: 0; }
      @media (min-width: 1650px) {
        .price__top-content-item-btn .btn {
          width: 385px;
          height: 74px;
          padding: 0; } }
  .price__top-list {
    display: grid;
    grid-gap: 16px;
    grid-auto-flow: column; }
    @media (min-width: 1280px) {
      .price__top-list {
        grid-auto-columns: 120px; } }
    @media (min-width: 1650px) {
      .price__top-list {
        grid-auto-columns: 150px; } }
  .price__top-item {
    background: var(--color-gray);
    cursor: pointer;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-radius: 22px;
    padding: 16px 5px;
    border: 1px solid rgba(255, 255, 255, 0);
    transition: .2s;
    outline: none; }
    .price__top-item:active, .price__top-item:focus {
      outline: none; }
    @media (min-width: 1280px) {
      .price__top-item {
        border-radius: 28px;
        padding: 28px 10px; } }
    .price__top-item.active {
      border: 1px solid var(--color-red); }
      .price__top-item.active .price__top-item-icon {
        background: var(--color-red); }
        .price__top-item.active .price__top-item-icon svg {
          fill: #fff;
          transform: rotate(-90deg); }
    .price__top-item:hover {
      border: 1px solid var(--color-red); }
    .price__top-item-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none;
      border-radius: 50%;
      background: #fff;
      border: 1px solid var(--color-red);
      transition: .2s;
      margin-bottom: 12px;
      width: 60px;
      height: 60px; }
      @media (min-width: 1280px) {
        .price__top-item-icon {
          width: 64px;
          height: 64px; } }
      @media (min-width: 1650px) {
        .price__top-item-icon {
          width: 80px;
          height: 80px;
          margin-bottom: 16px; } }
      .price__top-item-icon svg {
        width: 18px;
        fill: var(--color-red);
        transition: .2s; }
        @media (min-width: 1280px) {
          .price__top-item-icon svg {
            width: 20px;
            height: 22px; } }
        @media (min-width: 1650px) {
          .price__top-item-icon svg {
            width: 24px;
            height: 26px; } }
    .price__top-item-date {
      color: var(--color-jet);
      margin-bottom: 15px;
      font-size: 14px; }
      @media (min-width: 1280px) {
        .price__top-item-date {
          margin-bottom: 30px; } }
      @media (min-width: 1650px) {
        .price__top-item-date {
          font-size: 20px;
          margin-bottom: 35px; } }
    .price__top-item-prices {
      margin-bottom: 40px; }
      @media (min-width: 1280px) {
        .price__top-item-prices {
          margin-bottom: 30px; } }
    .price__top-item-price {
      font-size: 20px; }
      @media (min-width: 1280px) {
        .price__top-item-price {
          font-size: 24px; } }
      @media (min-width: 1650px) {
        .price__top-item-price {
          font-size: 32px;
          font-weight: 600; } }
      .price__top-item-price-old {
        color: #9c9c9c;
        font-size: 16px;
        text-decoration: line-through; }
        @media (min-width: 1650px) {
          .price__top-item-price-old {
            font-size: 20px;
            margin-bottom: 6px; } }
    .price__top-item-title {
      writing-mode: vertical-lr;
      flex-grow: 1;
      transform: rotate(180deg);
      text-align: left; }
      @media (min-width: 1280px) {
        .price__top-item-title {
          font-size: 24px; } }
      @media (min-width: 1650px) {
        .price__top-item-title {
          font-size: 32px; } }
.price__list {
  display: grid;
  grid-gap: 16px;
  align-items: flex-start; }
  @media (min-width: 1280px) {
    .price__list {
      padding-right: 0 !important;
      grid-template-columns: 1fr 304px; } }
  @media (min-width: 1650px) {
    .price__list {
      padding-right: 90px !important;
      grid-template-columns: 1fr 528px; } }
.price__items {
  display: grid;
  grid-gap: 16px; }
  @media (min-width: 1280px) {
    .price__items {
      grid-gap: 32px;
      order: 1; } }
  @media (min-width: 1650px) {
    .price__items {
      grid-gap: 42px; } }
  .price__items-section-label {
    display: flex;
    align-items: center;
    background: var(--color-gray);
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 18px; }
    @media (min-width: 1280px) {
      .price__items-section-label {
        border-radius: 20px;
        padding: 10px;
        gap: 17px; } }
    .price__items-section-label .price__items-section-title {
      border-radius: 0;
      padding: 0;
      margin-bottom: 0; }
  .price__items-section-arrow {
    flex: none;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-red);
    width: 32px;
    height: 32px; }
    @media (min-width: 1280px) {
      .price__items-section-arrow {
        width: 60px;
        height: 60px; } }
    .price__items-section-arrow svg {
      fill: var(--color-red);
      transition: .2s;
      width: 15px; }
      @media (min-width: 1280px) {
        .price__items-section-arrow svg {
          width: 18px; } }
    .price__items-section-arrow:hover svg {
      transform: rotate(45deg); }
  .price__items-section-title {
    flex-grow: 1;
    background: var(--color-gray);
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius: 18px;
    margin-bottom: 8px;
    padding: 12px;
    gap: 12px; }
    @media (min-width: 1280px) {
      .price__items-section-title {
        margin-bottom: 16px;
        border-radius: 20px;
        font-size: 20px;
        padding: 10px;
        gap: 17px; } }
    @media (min-width: 1650px) {
      .price__items-section-title {
        padding: 17px 28px;
        gap: 32px;
        font-size: 24px;
        border-radius: 30px; } }
    .price__items-section-title-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex: none;
      border-radius: 50%;
      overflow: hidden;
      width: 45px;
      height: 45px; }
      @media (min-width: 1280px) {
        .price__items-section-title-icon {
          width: 60px;
          height: 60px; } }
      @media (min-width: 1650px) {
        .price__items-section-title-icon {
          width: 86px;
          height: 86px; } }
      .price__items-section-title-icon img {
        width: 100%;
        height: 100%; }
    .price__items-section-title-text {
      flex-grow: 1; }
  .price__items-section-list {
    display: grid;
    grid-gap: 8px; }
    @media (min-width: 1280px) {
      .price__items-section-list {
        grid-template-columns: 1fr 1fr;
        grid-gap: 16px; } }
  .price__items-section-item {
    background: var(--color-light-gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 19px 12px;
    border-radius: 18px;
    font-size: 14px; }
    @media (min-width: 1280px) {
      .price__items-section-item {
        border-radius: 20px;
        padding: 30px 17px;
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .price__items-section-item {
        border-radius: 30px;
        font-size: 24px;
        padding: 45px 28px; } }
    .price__items-section-item-title {
      display: flex;
      align-items: center;
      gap: 10px; }
      @media (min-width: 1650px) {
        .price__items-section-item-title {
          font-size: 16px; } }
      .price__items-section-item-title:after {
        content: '';
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-left: 5px solid var(--color-red);
        border-bottom: 4px solid transparent; }
    .price__items-section-item-price {
      font-weight: 500; }
.price__tags {
  background: var(--color-light-gray);
  border-radius: 22px;
  padding: 12px; }
  @media (min-width: 1280px) {
    .price__tags {
      border-radius: 17px;
      padding: 17px 15px;
      order: 2;
      position: sticky;
      top: 0; } }
  @media (min-width: 1650px) {
    .price__tags {
      padding: 30px;
      border-radius: 30px; } }
  @media (min-width: 1650px) {
    .price__tags .btn {
      width: 385px;
      height: 74px;
      padding: 0; } }

.feedback__block {
  text-align: center;
  background: var(--color-light-gray); }
  .feedback__block .heading__title {
    margin-bottom: 14px; }
    @media (min-width: 1280px) {
      .feedback__block .heading__title {
        margin-bottom: 28px; } }
    @media (min-width: 1650px) {
      .feedback__block .heading__title {
        margin-bottom: 47px; } }
  .feedback__block-text {
    color: var(--color-jet);
    font-size: 16px;
    margin: 0 auto 16px; }
    @media (min-width: 1280px) {
      .feedback__block-text {
        font-size: 24px;
        width: 524px;
        max-width: 100%;
        margin-bottom: 24px; } }
    @media (min-width: 1650px) {
      .feedback__block-text {
        font-size: 36px;
        margin-bottom: 43px;
        width: 790px; } }
  .feedback__block-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px; }
    @media (min-width: 1280px) {
      .feedback__block-btns {
        gap: 16px;
        flex-direction: row; } }

.doctors__top {
  background: var(--color-gray) url(images/waves/doctors.svg) no-repeat 50%;
  background-size: contain;
  margin-bottom: 40px; }
  @media (min-width: 1280px) {
    .doctors__top {
      margin-bottom: 120px; } }
  @media (min-width: 1650px) {
    .doctors__top {
      background-size: cover; } }
  .doctors__top .top__block-item {
    background: none; }
.doctors__filter {
  background: var(--color-light-gray);
  margin-bottom: 16px;
  padding: 12px 20px;
  justify-content: center;
  border-radius: 22px; }
  @media (min-width: 1280px) {
    .doctors__filter {
      border-radius: 0;
      padding: 0;
      margin-bottom: 40px;
      background: none;
      justify-content: flex-start; } }
.doctors__list {
  display: grid;
  grid-gap: 8px; }
  @media (min-width: 768px) {
    .doctors__list {
      grid-template-columns: 1fr 1fr;
      grid-gap: 16px; } }
.doctors__btn {
  display: flex;
  justify-content: flex-end;
  margin-top: 18px; }
@media (min-width: 1280px) {
  .doctors__reviews {
    margin-bottom: 200px; } }

@media (min-width: 1280px) {
  .doctor__top {
    grid-template-columns: 2fr 1fr; } }
@media (min-width: 1650px) {
  .doctor__top {
    margin-bottom: 95px; } }
.doctor__top .heading {
  margin-bottom: 16px; }
.doctor__position {
  color: var(--color-jet);
  font-size: 14px;
  margin-bottom: 10px; }
  @media (min-width: 1280px) {
    .doctor__position {
      margin-bottom: 23px;
      font-size: 24px; } }
  @media (min-width: 1650px) {
    .doctor__position {
      font-size: 36px; } }
.doctor__advantages {
  margin-bottom: 16px; }
  @media (min-width: 1280px) {
    .doctor__advantages {
      margin-bottom: 40px; } }
  @media (min-width: 1650px) {
    .doctor__advantages {
      margin-bottom: 60px; } }
  .doctor__advantages ul {
    margin: 0;
    padding: 0;
    list-style-type: none; }
    .doctor__advantages ul li {
      font-size: 16px;
      margin-bottom: 12px; }
      @media (min-width: 1280px) {
        .doctor__advantages ul li {
          font-size: 32px;
          margin-bottom: 16px; } }
      @media (min-width: 1650px) {
        .doctor__advantages ul li {
          font-size: 40px;
          margin-bottom: 26px; } }
      .doctor__advantages ul li:last-child {
        margin-bottom: 0; }
.doctor__experience {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--color-light-gray);
  border-radius: 8px;
  padding: 8px;
  font-size: 12px; }
  @media (min-width: 1280px) {
    .doctor__experience {
      padding: 13px 17px;
      border-radius: 12px;
      font-size: 20px; } }
  @media (min-width: 1650px) {
    .doctor__experience {
      font-size: 24px;
      border-radius: 18px;
      padding: 20px 27px; } }
  .doctor__experience span {
    color: var(--color-red); }
.doctor__education {
  display: none; }
.doctor__spec .heading__title span {
  margin-left: -10px; }
.doctor__spec-list {
  display: grid;
  grid-row-gap: 8px;
  align-items: flex-start; }
  @media (min-width: 1280px) {
    .doctor__spec-list {
      grid-column-gap: 16px;
      grid-template-columns: 1fr 1fr; } }
.doctor__spec-col {
  display: grid;
  grid-row-gap: 8px; }
.doctor__spec-item-label {
  background: var(--color-light-gray);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  cursor: pointer; }
  @media (min-width: 1650px) {
    .doctor__spec-item-label {
      padding: 17px;
      border-radius: 30px; } }
  .doctor__spec-item-label.active .doctor__spec-item-arrow svg {
    transform: rotate(-45deg); }
.doctor__spec-item-title {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1; }
  @media (min-width: 1280px) {
    .doctor__spec-item-title {
      font-size: 20px; } }
  @media (min-width: 1650px) {
    .doctor__spec-item-title {
      font-size: 24px;
      gap: 32px; } }
.doctor__spec-item-icon {
  width: 45px;
  height: 45px;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media (min-width: 1280px) {
    .doctor__spec-item-icon {
      width: 60px;
      height: 60px; } }
  @media (min-width: 1650px) {
    .doctor__spec-item-icon {
      width: 86px;
      height: 86px; } }
  .doctor__spec-item-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
.doctor__spec-item-arrow {
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-red);
  width: 32px;
  height: 32px; }
  @media (min-width: 1280px) {
    .doctor__spec-item-arrow {
      width: 60px;
      height: 60px; } }
  .doctor__spec-item-arrow svg {
    fill: var(--color-red);
    transition: .2s;
    transform: rotate(135deg);
    width: 12px; }
    @media (min-width: 1280px) {
      .doctor__spec-item-arrow svg {
        width: 18px; } }
.doctor__spec-item-content {
  padding-top: 6px;
  display: none; }
  .doctor__spec-item-content-wrapper {
    background: var(--color-light-gray);
    border-radius: 20px;
    padding: 8px 9px; }
    @media (min-width: 1650px) {
      .doctor__spec-item-content-wrapper {
        padding: 16px;
        border-radius: 30px; } }
.doctor__spec-item-service {
  border-radius: 12px;
  padding: 14px 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--color-gray); }
  @media (min-width: 1650px) {
    .doctor__spec-item-service {
      padding: 21px 28px; } }
  .doctor__spec-item-service:nth-child(2n) {
    background: #fff; }
  @media (min-width: 1650px) {
    .doctor__spec-item-service-title {
      font-size: 16px; } }
.doctor__consult {
  display: grid;
  grid-gap: 20px;
  background: var(--color-light-gray);
  text-align: center; }
  @media (min-width: 1280px) {
    .doctor__consult {
      text-align: left;
      grid-template-columns: 7fr 5fr; } }
  .doctor__consult-title {
    margin-bottom: 20px; }
    @media (min-width: 1280px) {
      .doctor__consult-title {
        margin-bottom: 30px; } }
    @media (min-width: 1650px) {
      .doctor__consult-title {
        margin-bottom: 46px; } }
  .doctor__consult-list {
    margin-bottom: 20px; }
    @media (min-width: 1280px) {
      .doctor__consult-list {
        margin-bottom: 35px; } }
    @media (min-width: 1650px) {
      .doctor__consult-list {
        margin-bottom: 57px; } }
    .doctor__consult-list ul {
      list-style-type: none;
      margin: 0;
      padding: 0; }
      @media (min-width: 1280px) {
        .doctor__consult-list ul {
          color: var(--color-jet);
          font-size: 24px; } }
      @media (min-width: 1650px) {
        .doctor__consult-list ul {
          font-size: 36px; } }
      .doctor__consult-list ul li {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        gap: 8px; }
        @media (min-width: 1280px) {
          .doctor__consult-list ul li {
            gap: 14px;
            margin-bottom: 16px; } }
        @media (min-width: 1650px) {
          .doctor__consult-list ul li {
            gap: 17px;
            margin-bottom: 26px; } }
        .doctor__consult-list ul li:last-child {
          margin-bottom: 0; }
        .doctor__consult-list ul li:before {
          content: '';
          display: flex;
          align-items: center;
          justify-content: center;
          width: 12px;
          height: 12px;
          background-image: url(images/li-gray.svg);
          background-size: contain; }
          @media (min-width: 1280px) {
            .doctor__consult-list ul li:before {
              width: 18px;
              height: 18px;
              background-image: url(images/li.svg); } }
          @media (min-width: 1650px) {
            .doctor__consult-list ul li:before {
              width: 27px;
              height: 27px; } }
  .doctor__consult-img {
    background: #fff;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: flex; }
  .doctor__consult-experience {
    position: absolute;
    top: -20px;
    right: -15px;
    background: var(--color-black);
    border-radius: 50%;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    font-size: 12px; }
    @media (min-width: 1280px) {
      .doctor__consult-experience {
        width: 109px;
        height: 109px;
        font-size: 20px; } }
.doctor__license .heading__title span {
  margin-left: -10px; }
.doctor__license .heading__right {
  width: auto; }
  @media (min-width: 1650px) {
    .doctor__license .heading__right .btn {
      width: 392px; } }
.doctor__license-item {
  cursor: pointer;
  display: flex;
  border-radius: 8px;
  overflow: hidden; }
  @media (min-width: 1280px) {
    .doctor__license-item {
      background: var(--color-light-gray);
      padding: 18px 11px;
      border-radius: 20px; } }

.gallery .heading__title span {
  margin-left: -10px; }
.gallery__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px; }
  @media (min-width: 1280px) {
    .gallery__list {
      grid-template-columns: repeat(12, 1fr);
      grid-gap: 16px; } }
.gallery__item {
  overflow: hidden;
  display: flex;
  border-radius: 30px; }
  @media (min-width: 1280px) {
    .gallery__item {
      border-radius: 20px; } }
  @media (min-width: 1650px) {
    .gallery__item {
      border-radius: 30px; } }
  .gallery__item:nth-child(1) {
    order: 1; }
    @media (min-width: 1280px) {
      .gallery__item:nth-child(1) {
        grid-column: span 5; } }
  .gallery__item:nth-child(2) {
    order: 3;
    grid-column: span 2; }
    @media (min-width: 1280px) {
      .gallery__item:nth-child(2) {
        grid-column: span 7;
        order: 2; } }
  .gallery__item:nth-child(3) {
    order: 2; }
    @media (min-width: 1280px) {
      .gallery__item:nth-child(3) {
        grid-column: span 5;
        order: 3; } }
  .gallery__item:nth-child(4) {
    order: 4; }
    @media (min-width: 1280px) {
      .gallery__item:nth-child(4) {
        grid-column: span 4; } }
  .gallery__item:nth-child(5) {
    order: 5; }
    @media (min-width: 1280px) {
      .gallery__item:nth-child(5) {
        grid-column: span 3; } }

.articles__top {
  background: var(--color-gray) url(images/waves/doctors.svg) no-repeat 50%;
  background-size: contain;
  margin-bottom: 40px; }
  @media (min-width: 1280px) {
    .articles__top {
      margin-bottom: 120px; } }
  .articles__top .heading {
    margin-bottom: 10px; }
    @media (min-width: 1650px) {
      .articles__top .heading {
        margin-bottom: 46px; } }
    .articles__top .heading__subtitle {
      text-align: center; }
      @media (min-width: 1650px) {
        .articles__top .heading__subtitle {
          font-size: 40px; } }
.articles__block {
  display: grid;
  grid-gap: 16px;
  align-items: flex-start;
  position: relative; }
  @media (min-width: 1280px) {
    .articles__block {
      grid-template-columns: 2fr 1fr; } }
  @media (min-width: 1650px) {
    .articles__block {
      grid-template-columns: 3fr 1fr; } }
.articles__list {
  display: grid;
  grid-gap: 8px; }
  @media (min-width: 1280px) {
    .articles__list {
      grid-gap: 16px;
      grid-template-columns: 1fr 1fr;
      order: 1; } }
  @media (min-width: 1650px) {
    .articles__list {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (min-width: 1650px) {
    .articles__list .main__articles-item-title {
      padding: 0 35px; } }

@media (min-width: 1280px) {
  .article__top {
    grid-template-columns: 7fr 5fr; } }
@media (min-width: 1650px) {
  .article__top {
    grid-template-columns: 8fr 4fr; } }
.article__top .top__block-item .heading {
  margin-bottom: 15px; }
  @media (min-width: 1280px) {
    .article__top .top__block-item .heading {
      margin-bottom: 20px; } }
  @media (min-width: 1650px) {
    .article__top .top__block-item .heading {
      margin-bottom: 42px; } }
.article__top .top__block-item:first-child {
  background-image: url(images/waves/portfolio.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 100%; }
.article__sidebar {
  display: none;
  background: var(--color-light-gray);
  padding: 14px;
  border-radius: 19px; }
  @media (min-width: 1280px) {
    .article__sidebar {
      display: block;
      position: sticky;
      top: 0; } }
  @media (min-width: 1650px) {
    .article__sidebar {
      border-radius: 30px;
      padding: 29px 25px; } }
  .article__sidebar .nav__item {
    max-width: 270px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
    @media (min-width: 1650px) {
      .article__sidebar .nav__item {
        max-width: 380px; } }
.article__detail {
  display: grid;
  grid-gap: 16px;
  align-items: flex-start;
  position: relative; }
  @media (min-width: 1280px) {
    .article__detail {
      grid-template-columns: 8fr 4fr; } }
  .article__detail .heading__title {
    margin-bottom: 19px; }
    @media (min-width: 1280px) {
      .article__detail .heading__title {
        margin-bottom: 24px; } }
    @media (min-width: 1650px) {
      .article__detail .heading__title {
        margin-bottom: 26px; } }
.article__text {
  margin-bottom: 26px; }
  @media (min-width: 1650px) {
    .article__text {
      font-size: 20px; } }
  @media (min-width: 1280px) {
    .article__text p {
      color: var(--color-jet); } }
  .article__text img {
    display: block;
    border-radius: 14px;
    margin: 16px 0; }
    @media (min-width: 1280px) {
      .article__text img {
        border-radius: 30px;
        margin: 20px 0 30px; } }
@media (min-width: 1280px) {
  .article__author {
    font-size: 19px; } }
.article__author span {
  font-weight: 600; }
.article__author.mobile {
  margin-bottom: 12px; }
  @media (min-width: 1280px) {
    .article__author.mobile {
      display: none; } }
.article__author.desktop {
  display: none; }
  @media (min-width: 1280px) {
    .article__author.desktop {
      display: block; } }

@media (min-width: 1280px) {
  .actions__top {
    grid-template-columns: 7fr 5fr; } }
@media (min-width: 1650px) {
  .actions__top {
    grid-template-columns: 8fr 4fr;
    margin-bottom: 90px; } }
.actions__top .heading {
  margin-bottom: 18px; }
  @media (min-width: 1280px) {
    .actions__top .heading {
      margin-bottom: 25px; } }
  .actions__top .heading__subtitle {
    margin-bottom: 20px; }
    @media (min-width: 1650px) {
      .actions__top .heading__subtitle {
        margin-bottom: 46px; } }
.actions__top .top__block-item {
  display: grid; }
  .actions__top .top__block-item img {
    display: block; }
.actions__block .heading__title span {
  margin-left: -10px; }

.action__modal.modal {
  width: auto;
  text-align: left;
  padding: 20px 12px;
  border-radius: 40px;
  background: #f1f1f1; }
  @media (min-width: 768px) {
    .action__modal.modal {
      padding: 72px 23px;
      border-radius: 80px; } }
  @media (min-width: 1280px) {
    .action__modal.modal {
      border-radius: 30px;
      padding: 0; } }
  .action__modal.modal .main__actions-item {
    border-radius: 0;
    grid-gap: 20px; }
    @media (min-width: 1280px) {
      .action__modal.modal .main__actions-item {
        grid-gap: 0; } }
    @media (min-width: 1650px) {
      .action__modal.modal .main__actions-item {
        background: #fff;
        grid-gap: 40px; } }
    .action__modal.modal .main__actions-item-content {
      order: 1;
      justify-content: center;
      padding: 0 10px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-content {
          padding: 0 20px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-content {
          order: 2;
          padding: 16px; } }
    .action__modal.modal .main__actions-item-img {
      order: 2;
      border-radius: 30px;
      overflow: hidden;
      max-width: 780px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-img {
          border-radius: 60px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-img {
          order: 1;
          border-radius: 0; } }
    .action__modal.modal .main__actions-item-date {
      width: auto;
      height: auto;
      position: static;
      display: block;
      background: none;
      text-align: left;
      border-radius: unset;
      font-size: 14px;
      color: var(--color-jet);
      margin-bottom: 7px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-date {
          font-size: 24px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-date {
          margin-bottom: 12px;
          color: #9c9c9c;
          font-size: 15px; } }
      @media (min-width: 1650px) {
        .action__modal.modal .main__actions-item-date {
          font-size: 20px; } }
      .action__modal.modal .main__actions-item-date:before {
        content: none; }
    .action__modal.modal .main__actions-item-title {
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 14px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-title {
          font-size: 40px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-title {
          margin-bottom: 24px;
          font-weight: 600;
          font-size: 45px; } }
      @media (min-width: 1650px) {
        .action__modal.modal .main__actions-item-title {
          font-size: 64px; } }
    .action__modal.modal .main__actions-item-prices {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      gap: 12px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-prices {
          margin-bottom: 30px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-prices {
          gap: 40px;
          margin-bottom: 26px; } }
    .action__modal.modal .main__actions-item-price {
      font-size: 32px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-price {
          font-size: 60px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-price {
          font-size: 40px; } }
      @media (min-width: 1650px) {
        .action__modal.modal .main__actions-item-price {
          font-size: 60px; } }
      .action__modal.modal .main__actions-item-price-old {
        font-size: 20px;
        text-decoration: line-through; }
        @media (min-width: 768px) {
          .action__modal.modal .main__actions-item-price-old {
            font-size: 40px; } }
        @media (min-width: 1280px) {
          .action__modal.modal .main__actions-item-price-old {
            font-size: 24px; } }
        @media (min-width: 1650px) {
          .action__modal.modal .main__actions-item-price-old {
            font-size: 36px; } }
    .action__modal.modal .main__actions-item-text {
      font-size: 16px;
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .action__modal.modal .main__actions-item-text {
          font-size: 30px; } }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-text {
          font-size: 26px;
          margin-bottom: 40px; } }
      @media (min-width: 1650px) {
        .action__modal.modal .main__actions-item-text {
          font-size: 40px; } }
      .action__modal.modal .main__actions-item-text ul {
        list-style-type: none;
        padding: 0;
        color: var(--color-jet);
        margin-top: 15px; }
        @media (min-width: 1280px) {
          .action__modal.modal .main__actions-item-text ul {
            margin-top: 23px; } }
        @media (min-width: 1650px) {
          .action__modal.modal .main__actions-item-text ul {
            font-size: 32px; } }
        .action__modal.modal .main__actions-item-text ul li {
          margin-bottom: 8px; }
          @media (min-width: 1280px) {
            .action__modal.modal .main__actions-item-text ul li {
              margin-bottom: 16px; } }
          .action__modal.modal .main__actions-item-text ul li:last-child {
            margin-bottom: 0; }
    .action__modal.modal .main__actions-item-btn {
      flex-grow: unset; }
      @media (min-width: 1280px) {
        .action__modal.modal .main__actions-item-btn .btn {
          width: 250px;
          height: 50px; } }
      @media (min-width: 1650px) {
        .action__modal.modal .main__actions-item-btn .btn {
          width: 388px;
          height: 80px;
          font-size: 24px; } }

@media (min-width: 1280px) {
  .about__top {
    grid-template-columns: 8fr 4fr; } }
@media (min-width: 1280px) {
  .about__top2 {
    grid-template-columns: 1fr 1fr; } }
@media (min-width: 1650px) {
  .about__top2 {
    grid-template-columns: 5fr 7fr; } }
.about__top2 .top__item {
  background-image: unset; }
@media (min-width: 1650px) {
  .about__top2 .top__block-item {
    padding: 88px 96px;
    order: 2; } }
@media (min-width: 1650px) {
  .about__top2 .top__block-item.img {
    order: 1; } }
.about__top-text {
  color: var(--color-jet); }
  @media (min-width: 1650px) {
    .about__top-text {
      font-size: 30px; } }
.about__garanty {
  background: var(--color-light-gray);
  border-radius: 30px;
  padding: 40px 12px; }
  @media (min-width: 1280px) {
    .about__garanty {
      background: none;
      border-radius: 0;
      padding: 0 !important;
      margin-bottom: 200px; } }
  @media (min-width: 1280px) {
    .about__garanty .heading {
      padding: 0 55px; } }
  @media (min-width: 1650px) {
    .about__garanty .heading {
      padding: 0 90px; } }
  .about__garanty .heading__title span {
    display: block;
    margin-left: -10px; }
  .about__garanty-list {
    display: grid;
    grid-gap: 8px;
    padding: 0; }
    @media (min-width: 1280px) {
      .about__garanty-list {
        grid-template-columns: repeat(12, 1fr);
        grid-column-gap: 16px;
        grid-row-gap: 11px;
        padding: 60px 55px; } }
  .about__garanty-item {
    border-radius: 20px;
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-color: #fff;
    background-size: contain;
    padding: 16px; }
    @media (min-width: 1280px) {
      .about__garanty-item {
        padding: 28px 80px 28px 31px;
        height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center; } }
    @media (min-width: 1650px) {
      .about__garanty-item {
        border-radius: 30px;
        height: 345px;
        padding: 56px 180px 56px 53px; } }
    .about__garanty-item-title {
      font-size: 20px;
      margin-bottom: 10px; }
      @media (min-width: 1280px) {
        .about__garanty-item-title {
          font-size: 24px; } }
      @media (min-width: 1650px) {
        .about__garanty-item-title {
          font-size: 40px; } }
    .about__garanty-item-text {
      font-size: 14px; }
      @media (min-width: 1280px) {
        .about__garanty-item-text {
          font-size: 15px; } }
      @media (min-width: 1650px) {
        .about__garanty-item-text {
          font-size: 20px; } }
    @media (min-width: 1280px) {
      .about__garanty-item:nth-child(1) {
        background-image: url(images/garanty/1.png);
        grid-column: span 5; } }
    @media (min-width: 1280px) {
      .about__garanty-item:nth-child(2) {
        background-image: url(images/garanty/2.png);
        grid-column: span 7; } }
    @media (min-width: 1280px) {
      .about__garanty-item:nth-child(3) {
        background-image: url(images/garanty/3.png);
        grid-column: span 7; } }
    @media (min-width: 1280px) {
      .about__garanty-item:nth-child(4) {
        background-image: url(images/garanty/4.png);
        grid-column: span 5; } }

.faq .heading__title span {
  margin-left: -10px; }

.megamenu {
  display: block;
  position: fixed;
  z-index: 100;
  padding-top: 0.5rem;
  transition: .2s;
  opacity: 0;
  visibility: hidden;
  top: 118px;
  width: calc(100% - 15px);
  min-height: 443px;
  left: 0;
  overflow: hidden; }
  @media (min-width: 1280px) {
    .megamenu {
      top: 100%;
      width: 100%;
      position: absolute;
      padding-top: 16px;
      background: none; } }
  @media (min-width: 1650px) {
    .megamenu {
      width: auto;
      overflow: visible; } }
  .megamenu.active, .megamenu:hover {
    transform: translateY(0);
    opacity: 1;
    visibility: visible; }
  .megamenu__wrap {
    position: relative;
    display: flex;
    height: 100%;
    background: var(--color-gray);
    border-radius: 30px;
    overflow: hidden;
    padding: 34px;
    box-shadow: 11px 10px 21px 0 rgba(var(--color-black--rgb), 0.1); }
    @media (min-width: 1650px) {
      .megamenu__wrap {
        gap: 46px; } }
  .megamenu__left {
    width: 100%;
    position: relative;
    flex: none;
    overflow-y: auto; }
    .megamenu__left::-webkit-scrollbar {
      width: 1px; }
    .megamenu__left::-webkit-scrollbar-track {
      background: #e8e8e8; }
    .megamenu__left::-webkit-scrollbar-thumb {
      background: var(--color-gray); }
    @media (min-width: 1280px) {
      .megamenu__left {
        width: 262px; } }
  .megamenu__right {
    display: none;
    flex-grow: 1;
    background: #fff; }
    @media (min-width: 1280px) {
      .megamenu__right {
        background: transparent;
        display: grid;
        grid-template-columns: 1fr 244px; } }
    @media (min-width: 1650px) {
      .megamenu__right {
        grid-template-columns: 1fr 280px;
        grid-gap: 46px; } }
  .megamenu__sidebar {
    display: none;
    flex: none; }
    @media (min-width: 1280px) {
      .megamenu__sidebar {
        display: block; } }
    .megamenu__sidebar .main__actions-item {
      background: #fff;
      grid-template-columns: 1fr; }
      .megamenu__sidebar .main__actions-item-content {
        position: static;
        text-align: center;
        padding: 14px 6px; }
      .megamenu__sidebar .main__actions-item-title {
        font-size: 16px; }
      .megamenu__sidebar .main__actions-item-prices {
        display: flex;
        justify-content: center; }
      .megamenu__sidebar .main__actions-item-btn {
        justify-content: center; }
        .megamenu__sidebar .main__actions-item-btn .btn {
          width: 100%;
          border-radius: 8px; }
  .megamenu__menu {
    flex-grow: 1;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .megamenu__menu-container {
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      gap: 3px;
      height: calc(100% - 68px);
      /*.li-item {
        position: relative;
        a {
          display: flex;
          align-items: center;
          gap: 15px;
          text-transform: uppercase;
          color: cl(black);
        }
        .inner-menu-wrap {
          position: absolute;
          top: 0;
          left: 50%;
          z-index: 10;
          .li-item {
            margin-bottom: 40px;
            &:last-child {
              margin-bottom: 0;
            }
          }
        }
        &:hover {
          .inner-menu-wrap {
            display: block;
          }
        }
      }*/ }
      .megamenu__menu-container::-webkit-scrollbar {
        width: 1px; }
      .megamenu__menu-container::-webkit-scrollbar-track {
        background: #e8e8e8; }
      .megamenu__menu-container::-webkit-scrollbar-thumb {
        background: var(--color-gray); }
      @media (min-width: 1650px) {
        .megamenu__menu-container .li-item a {
          font-size: 16px !important; } }
  .megamenu .inner-menu-wrap {
    display: none; }
  .megamenu__catalog {
    flex-grow: 1; }
    .megamenu__catalog .root {
      display: flex;
      flex-direction: column;
      gap: 3px; }
  .megamenu .li-item {
    transition: .2s; }
    .megamenu .li-item:hover a, .megamenu .li-item.hover a {
      background: var(--color-light-gray);
      color: var(--color-red); }
    .megamenu .li-item a {
      font-weight: 500;
      color: var(--color-black);
      display: inline-flex;
      align-items: center;
      padding: 14px 20px;
      border-radius: 18px; }
      @media (min-width: 1280px) {
        .megamenu .li-item a {
          padding: 18px 20px; } }
      @media (min-width: 1650px) {
        .megamenu .li-item a {
          font-size: 20px; } }
  .megamenu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    overflow: inherit; }

@media (min-width: 1280px) {
  .portfolio__top {
    grid-template-columns: 1fr 1fr; } }
@media (min-width: 1650px) {
  .portfolio__top {
    margin-bottom: 90px; } }
.portfolio__top .top__block-item .heading {
  margin-bottom: 14px; }
  @media (min-width: 1280px) {
    .portfolio__top .top__block-item .heading {
      margin-bottom: 20px; } }
  @media (min-width: 1650px) {
    .portfolio__top .top__block-item .heading {
      font-size: 46px; } }
  .portfolio__top .top__block-item .heading__subtitle {
    margin-bottom: 20px; }
    @media (min-width: 1280px) {
      .portfolio__top .top__block-item .heading__subtitle {
        margin-bottom: 28px; } }
    @media (min-width: 1650px) {
      .portfolio__top .top__block-item .heading__subtitle {
        margin-bottom: 58px;
        font-size: 40px; } }
.portfolio__top .top__block-item:first-child {
  background-image: url(images/waves/portfolio.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 100%; }
.portfolio__block .heading__title span {
  margin-left: -10px; }
.portfolio__filter {
  margin-bottom: 15px; }
  @media (min-width: 1280px) {
    .portfolio__filter {
      margin-bottom: 40px; } }
.portfolio__item {
  position: relative;
  overflow: hidden; }
  .portfolio__item-label {
    background: #f1f1f1;
    position: absolute;
    font-size: 12px;
    bottom: 6px;
    padding: 9px 12px;
    border-radius: 10px; }
    @media (min-width: 768px) {
      .portfolio__item-label {
        border-radius: 16px;
        bottom: 12px;
        font-size: 24px;
        padding: 17px 23px; } }
    @media (min-width: 1280px) {
      .portfolio__item-label {
        font-size: 20px;
        bottom: 9px;
        border-radius: 12px;
        padding: 13px 17px; } }
    @media (min-width: 1650px) {
      .portfolio__item-label {
        font-size: 24px;
        bottom: 16px;
        border-radius: 18px;
        padding: 20px 27px; } }
    .portfolio__item-label.before {
      right: 6px; }
      @media (min-width: 768px) {
        .portfolio__item-label.before {
          right: 12px; } }
      @media (min-width: 1280px) {
        .portfolio__item-label.before {
          right: 10px; } }
      @media (min-width: 1650px) {
        .portfolio__item-label.before {
          right: 15px; } }
    .portfolio__item-label.after {
      left: 6px; }
      @media (min-width: 768px) {
        .portfolio__item-label.after {
          left: 12px; } }
      @media (min-width: 1280px) {
        .portfolio__item-label.after {
          left: 10px; } }
      @media (min-width: 1650px) {
        .portfolio__item-label.after {
          left: 15px; } }
  .portfolio__item-control {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(calc(50% - 2.5px), -50%);
    width: 42px;
    height: 24px; }
    @media (min-width: 1280px) {
      .portfolio__item-control {
        width: 56px;
        height: 33px; } }
    .portfolio__item-control svg {
      fill: #fff; }
  .portfolio__item-before {
    background-size: cover;
    width: 100%;
    padding-bottom: 44%;
    position: relative;
    border-radius: 15px;
    overflow: hidden; }
    @media (min-width: 1280px) {
      .portfolio__item-before {
        border-radius: 10px; } }
    @media (min-width: 1650px) {
      .portfolio__item-before {
        border-radius: 15px; } }
  .portfolio__item-after {
    background-size: cover;
    bottom: 0;
    height: 100%;
    max-width: 100%;
    min-width: 0.6%;
    overflow: visible;
    position: absolute;
    width: 50%;
    animation: first 2s 1 normal ease-in-out 0.1s;
    -webkit-animation: first 2s 1 normal ease-in-out 0.1s; }
    .portfolio__item-after:before {
      content: '';
      width: 5px;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      background: #fff; }
  .portfolio__item input {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
    cursor: col-resize;
    height: 100%;
    left: 0;
    margin: 0;
    outline: none;
    padding: 0;
    position: absolute;
    bottom: 0;
    width: 100%; }
    .portfolio__item input::-moz-range-track {
      background: transparent; }
    .portfolio__item input::-ms-track {
      border: none;
      background-color: transparent;
      height: 100vw;
      left: 0;
      outline: none;
      position: relative;
      top: -100vw;
      width: 100%;
      margin: 0;
      padding: 0;
      cursor: col-resize;
      color: transparent; }
    .portfolio__item input::-ms-fill-lower {
      background-color: transparent; }
    .portfolio__item input::-webkit-slider-thumb {
      -webkit-appearance: none;
      height: 100vw;
      width: 0.5%;
      opacity: 0; }
    .portfolio__item input::-moz-range-thumb {
      -moz-appearance: none;
      height: 100vw;
      width: 0.5%;
      opacity: 0; }
    .portfolio__item input::-ms-thumb {
      height: 100vw;
      width: 0.5%;
      opacity: 0; }
    .portfolio__item input::-ms-tooltip {
      display: none; }

@media (min-width: 1280px) {
  .service__top {
    grid-template-columns: 2fr 1fr; } }
.service__top .heading {
  margin-bottom: 9px; }
  @media (min-width: 1280px) {
    .service__top .heading {
      margin-bottom: 18px; } }
  .service__top .heading__subtitle {
    margin-bottom: 10px; }
    @media (min-width: 1280px) {
      .service__top .heading__subtitle {
        margin-bottom: 25px; } }
    @media (min-width: 1650px) {
      .service__top .heading__subtitle {
        margin-bottom: 40px; } }
@media (min-width: 1650px) {
  .service__top.service__classic .heading {
    margin-bottom: 32px; } }
@media (min-width: 1650px) {
  .service__top.service__classic .heading__subtitle {
    font-size: 36px;
    margin-bottom: 40px; } }
.service__top.service__classic .top__block-text {
  font-size: 16px;
  margin-bottom: 9px; }
  @media (min-width: 1280px) {
    .service__top.service__classic .top__block-text {
      margin-bottom: 16px;
      font-size: 24px; } }
  @media (min-width: 1650px) {
    .service__top.service__classic .top__block-text {
      font-size: 40px;
      margin-bottom: 23px; } }
@media (min-width: 1280px) {
  .service__top.service__classic .top__block-btns .btn {
    width: 335px;
    height: 50px;
    border-radius: 8px;
    font-size: 15px;
    padding: 0; } }
@media (min-width: 1650px) {
  .service__top.service__classic .top__block-btns .btn {
    width: 447px;
    height: 80px;
    font-size: 24px; } }
.service__top .top__block-item:first-child {
  background: var(--color-gray) url(images/waves/service1.svg) no-repeat 50% 100%; }
.service__top .top__block-list {
  font-size: 16px; }
  @media (min-width: 1280px) {
    .service__top .top__block-list {
      font-size: 24px; } }
  @media (min-width: 1650px) {
    .service__top .top__block-list {
      font-size: 40px;
      margin-bottom: 50px; } }
  .service__top .top__block-list li:before {
    background-image: url(images/li-gray.svg); }
.service__top2 {
  text-align: center; }
  @media (min-width: 1280px) {
    .service__top2 {
      text-align: left;
      grid-template-columns: 1fr 1fr; } }
  .service__top2 .heading {
    margin-bottom: 15px; }
    @media (min-width: 1280px) {
      .service__top2 .heading {
        margin-bottom: 18px; } }
    @media (min-width: 1650px) {
      .service__top2 .heading {
        margin-bottom: 45px; } }
    .service__top2 .heading__title span {
      display: inline;
      font-weight: 600;
      border: 0;
      padding: 0;
      white-space: unset;
      color: #9c9c9c; }
  @media (min-width: 1280px) {
    .service__top2 .top__block-item {
      order: 2; } }
  @media (min-width: 1280px) {
    .service__top2 .top__block-item.img {
      order: 1; } }
  @media (min-width: 1650px) {
    .service__top2 .top__block-item-text {
      font-size: 20px; } }
@media (min-width: 1280px) {
  .service__classic {
    grid-template-columns: 7fr 5fr; } }
@media (min-width: 1650px) {
  .service__classic {
    grid-template-columns: 2fr 1fr; } }
.service__classic-item {
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 293px;
  padding: 27px; }
  @media (min-width: 768px) {
    .service__classic-item {
      height: auto; } }
  @media (min-width: 1280px) {
    .service__classic-item {
      text-align: center;
      padding: 40px 55px; } }
  @media (min-width: 1650px) {
    .service__classic-item {
      padding-left: 75px;
      padding-right: 75px; } }
.service__classic-title {
  color: var(--color-jet);
  font-size: 24px;
  margin-bottom: 6px; }
  @media (min-width: 1280px) {
    .service__classic-title {
      font-size: 40px;
      margin-bottom: 12px; } }
  @media (min-width: 1650px) {
    .service__classic-title {
      font-size: 50px;
      margin-bottom: 26px; } }
.service__classic-price {
  font-weight: 600;
  font-size: 32px; }
  @media (min-width: 768px) {
    .service__classic-price {
      font-size: 40px; } }
  @media (min-width: 1280px) {
    .service__classic-price {
      font-size: 48px; } }
  @media (min-width: 1650px) {
    .service__classic-price {
      font-size: 64px; } }
.service__classic-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 16px;
  row-gap: 20px;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 16px 34px; }
  @media (min-width: 768px) {
    .service__classic-menu {
      display: none; } }
@media (min-width: 768px) {
  .service__classic-advs {
    display: flex;
    flex-direction: column; } }
@media (min-width: 768px) {
  .service__classic-advs .heading {
    order: 1; } }
.service__classic-advs .heading__title span {
  margin-left: -10px; }
.service__classic-advs .main__slider-bottom {
  justify-content: flex-end; }
  @media (min-width: 768px) {
    .service__classic-advs .main__slider-bottom {
      order: 3; } }
  @media (min-width: 1280px) {
    .service__classic-advs .main__slider-bottom {
      display: none; } }
  .service__classic-advs .main__slider-bottom .control {
    width: 46px;
    height: 46px; }
.service__classic-advs-list {
  /*display: grid;
  grid-gap: 14px;
  grid-template-columns: repeat(3, 1fr);*/
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .service__classic-advs-list {
      order: 2; } }
  @media (min-width: 1280px) {
    .service__classic-advs-list .swiper-wrapper {
      display: grid;
      grid-gap: 14px;
      grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
  .service__classic-advs-item {
    width: 665px; } }
@media (min-width: 1280px) {
  .service__classic-advs-item {
    width: auto; } }
.service__classic-advs-item-img {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 12px; }
  @media (min-width: 1650px) {
    .service__classic-advs-item-img {
      margin-bottom: 20px; } }
.service__classic-advs-item-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px; }
  @media (min-width: 1650px) {
    .service__classic-advs-item-title {
      font-size: 40px; } }
.service__classic-advs-item-text {
  font-size: 14px; }
  @media (min-width: 1650px) {
    .service__classic-advs-item-text {
      font-size: 16px; } }
.service__classic-advs-bottom {
  display: flex;
  gap: 7px;
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 16px;
  padding-left: 60px; }
  @media (min-width: 768px) {
    .service__classic-advs-bottom {
      order: 3;
      margin-bottom: 0;
      padding-left: 0; } }
  @media (min-width: 1280px) {
    .service__classic-advs-bottom {
      font-size: 20px; } }
  @media (min-width: 1650px) {
    .service__classic-advs-bottom {
      font-size: 24px; } }
  .service__classic-advs-bottom-icon {
    flex: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid rgba(var(--color-red--rgb), 0.5);
    color: rgba(var(--color-red--rgb), 0.5);
    width: 25px;
    height: 25px;
    font-size: 14px; }
    @media (min-width: 1280px) {
      .service__classic-advs-bottom-icon {
        font-size: 20px;
        border-width: 7px;
        width: 39px;
        height: 39px; } }
    @media (min-width: 1650px) {
      .service__classic-advs-bottom-icon {
        width: 44px;
        height: 44px; } }
.service__classic-impl {
  background: var(--color-gray);
  padding: 25px 12px;
  border-radius: 40px; }
  @media (min-width: 1280px) {
    .service__classic-impl {
      border-radius: 0;
      background: none;
      padding: 0 !important; } }
  @media (min-width: 1280px) {
    .service__classic-impl .heading {
      padding: 0 55px; } }
  @media (min-width: 1650px) {
    .service__classic-impl .heading {
      padding: 0 90px; } }
  .service__classic-impl .heading__title span {
    display: inline-block;
    margin-left: -10px; }
  .service__classic-impl-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 8px; }
    @media (max-width: 1280px) {
      .service__classic-impl-list {
        padding: 0; } }
    @media (min-width: 1280px) {
      .service__classic-impl-list {
        grid-gap: 16px;
        grid-template-columns: repeat(12, 1fr); } }
  .service__classic-impl-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    border-radius: 30px;
    padding: 32px 16px; }
    @media (min-width: 768px) {
      .service__classic-impl-item {
        height: 270px;
        border-radius: 60px; } }
    @media (min-width: 1280px) {
      .service__classic-impl-item {
        height: 220px;
        border-radius: 20px;
        padding: 25px; } }
    @media (min-width: 1650px) {
      .service__classic-impl-item {
        height: 345px;
        border-radius: 30px;
        padding: 40px; } }
    .service__classic-impl-item.img {
      padding: 0; }
      .service__classic-impl-item.img img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .service__classic-impl-item-title {
      font-size: 16px;
      margin-bottom: 9px; }
      @media (min-width: 768px) {
        .service__classic-impl-item-title {
          font-size: 30px;
          margin-bottom: 16px; } }
      @media (min-width: 1280px) {
        .service__classic-impl-item-title {
          font-size: 24px;
          margin-bottom: 14px; } }
      @media (min-width: 1650px) {
        .service__classic-impl-item-title {
          font-size: 36px;
          margin-bottom: 23px; } }
    .service__classic-impl-item-text {
      font-size: 14px; }
      @media (min-width: 768px) {
        .service__classic-impl-item-text {
          font-size: 24px; } }
      @media (min-width: 1280px) {
        .service__classic-impl-item-text {
          font-size: 16px; } }
      @media (min-width: 1650px) {
        .service__classic-impl-item-text {
          font-size: 24px; } }
    .service__classic-impl-item:nth-child(1) {
      order: 1;
      grid-column: span 2; }
      @media (min-width: 1280px) {
        .service__classic-impl-item:nth-child(1) {
          grid-column: span 5; } }
    .service__classic-impl-item:nth-child(2) {
      order: 2; }
      @media (min-width: 1280px) {
        .service__classic-impl-item:nth-child(2) {
          grid-column: span 5;
          order: 3; } }
    .service__classic-impl-item:nth-child(3) {
      order: 3; }
      @media (min-width: 1280px) {
        .service__classic-impl-item:nth-child(3) {
          grid-column: span 4;
          order: 4; } }
    .service__classic-impl-item:nth-child(4) {
      order: 4;
      grid-column: span 2; }
      @media (min-width: 1280px) {
        .service__classic-impl-item:nth-child(4) {
          order: 2;
          grid-column: span 7; } }
    .service__classic-impl-item:nth-child(5) {
      order: 5;
      grid-column: span 2; }
      @media (min-width: 1280px) {
        .service__classic-impl-item:nth-child(5) {
          order: 5;
          grid-column: span 3; } }
.service__classic-smile .heading__title span {
  display: inline-block;
  margin-left: -10px; }
.service__classic-smile .main__slider-bottom {
  justify-content: flex-end; }
.service__classic-smile-wrapper {
  position: relative; }
  @media (min-width: 1280px) {
    .service__classic-smile-wrapper .main__slider-bottom {
      margin: 0;
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 1;
      background: #fff; } }
.service__classic-smile-item {
  display: grid;
  grid-gap: 16px; }
  @media (min-width: 1280px) {
    .service__classic-smile-item {
      grid-template-columns: 1fr 1fr; } }
  .service__classic-smile-item-portfolio {
    order: 2; }
    @media (min-width: 1280px) {
      .service__classic-smile-item-portfolio {
        order: 1; } }
  .service__classic-smile-item-info {
    order: 1; }
    @media (min-width: 1280px) {
      .service__classic-smile-item-info {
        order: 2; } }
  .service__classic-smile-item-block {
    margin-bottom: 16px; }
    @media (min-width: 1280px) {
      .service__classic-smile-item-block {
        margin-bottom: 20px; } }
    @media (min-width: 1650px) {
      .service__classic-smile-item-block {
        margin-bottom: 45px; } }
    .service__classic-smile-item-block:last-child {
      margin-bottom: 0; }
    .service__classic-smile-item-block-top {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 11px; }
      @media (min-width: 1280px) {
        .service__classic-smile-item-block-top {
          gap: 18px;
          margin-bottom: 17px; } }
    .service__classic-smile-item-block-text {
      font-size: 16px; }
      @media (min-width: 1650px) {
        .service__classic-smile-item-block-text {
          font-size: 20px; } }
  .service__classic-smile-item-icon {
    flex: none;
    width: 15px;
    height: 15px;
    display: flex; }
    @media (min-width: 1280px) {
      .service__classic-smile-item-icon {
        width: 20px;
        height: 20px; } }
    .service__classic-smile-item-icon.problem svg {
      fill: var(--color-red); }
    .service__classic-smile-item-icon.solution svg {
      fill: #4AF12F; }
  .service__classic-smile-item-title {
    font-size: 20px; }
    @media (min-width: 1280px) {
      .service__classic-smile-item-title {
        font-size: 24px; } }
  .service__classic-smile-item-doctor {
    margin-top: 20px; }
    @media (min-width: 1650px) {
      .service__classic-smile-item-doctor {
        margin-top: 30px; } }
    .service__classic-smile-item-doctor-name {
      font-size: 20px;
      margin-bottom: 8px; }
      @media (min-width: 1280px) {
        .service__classic-smile-item-doctor-name {
          font-size: 24px;
          margin-bottom: 13px; } }
      @media (min-width: 1650px) {
        .service__classic-smile-item-doctor-name {
          font-size: 30px; } }
    .service__classic-smile-item-doctor-position {
      color: #9c9c9c;
      font-size: 14px; }
      @media (min-width: 1280px) {
        .service__classic-smile-item-doctor-position {
          font-size: 16px; } }
      @media (min-width: 1650px) {
        .service__classic-smile-item-doctor-position {
          font-size: 20px; } }
.service__classic-reason .heading__title span {
  display: inline-block;
  margin-left: -10px; }
.service__classic-reason-content {
  display: grid; }
  @media (min-width: 1280px) {
    .service__classic-reason-content {
      grid-template-columns: 5fr 7fr;
      grid-gap: 16px; } }
.service__classic-reason-list {
  display: grid;
  grid-gap: 6px; }
  @media (min-width: 768px) {
    .service__classic-reason-list {
      grid-gap: 16px; } }
  @media (min-width: 1280px) {
    .service__classic-reason-list {
      grid-gap: 6px; } }
  @media (min-width: 1650px) {
    .service__classic-reason-list {
      grid-gap: 16px; } }
.service__classic-reason-item {
  background: #f5f5f5;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  font-size: 16px;
  gap: 8px;
  border-radius: 18px;
  height: 70px; }
  @media (min-width: 768px) {
    .service__classic-reason-item {
      font-size: 30px;
      height: 130px; } }
  @media (min-width: 1280px) {
    .service__classic-reason-item {
      height: 86px;
      border-radius: 20px;
      gap: 16px;
      font-size: 24px; } }
  @media (min-width: 1650px) {
    .service__classic-reason-item {
      height: 120px;
      border-radius: 30px;
      font-size: 32px; } }
  .service__classic-reason-item.active {
    background: #d1d1d1; }
    .service__classic-reason-item.active .service__classic-reason-item-arrow svg {
      transform: rotate(-45deg); }
  .service__classic-reason-item-icon {
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 46px;
    height: 46px; }
    @media (min-width: 768px) {
      .service__classic-reason-item-icon {
        width: 84px;
        height: 84px; } }
    @media (min-width: 1280px) {
      .service__classic-reason-item-icon {
        width: 60px;
        height: 60px; } }
    @media (min-width: 1650px) {
      .service__classic-reason-item-icon {
        width: 90px;
        height: 90px; } }
    .service__classic-reason-item-icon img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translateX(5px); }
  .service__classic-reason-item-text {
    flex-grow: 1; }
  .service__classic-reason-item-arrow {
    flex: none;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-red);
    background: #fff; }
    .service__classic-reason-item-arrow svg {
      width: 13px;
      height: 14px;
      transform: rotate(135deg);
      transition: .2s; }
      @media (min-width: 768px) {
        .service__classic-reason-item-arrow svg {
          width: 22px;
          height: 24px; } }
    @media (min-width: 768px) {
      .service__classic-reason-item-arrow {
        width: 84px;
        height: 84px; } }
    @media (min-width: 1280px) {
      .service__classic-reason-item-arrow {
        display: none; } }
.service__classic-reason-detail {
  background: #f1f1f1;
  border-radius: 20px;
  padding: 16px;
  display: none; }
  .service__classic-reason-detail-list {
    display: none; }
    @media (min-width: 1280px) {
      .service__classic-reason-detail-list {
        display: block; } }
  .service__classic-reason-detail-mobile {
    display: none; }
    @media (min-width: 1280px) {
      .service__classic-reason-detail-mobile {
        display: none !important; } }
  @media (min-width: 1650px) {
    .service__classic-reason-detail {
      border-radius: 30px;
      padding: 23px; } }
  .service__classic-reason-detail.active {
    display: block; }
  .service__classic-reason-detail-wrapper {
    gap: 16px;
    display: flex;
    flex-direction: column; }
    @media (min-width: 1280px) {
      .service__classic-reason-detail-wrapper {
        flex-direction: row; } }
  .service__classic-reason-detail-img {
    width: 254px;
    height: 240px;
    border-radius: 16px;
    flex: none;
    overflow: hidden; }
    @media (min-width: 1650px) {
      .service__classic-reason-detail-img {
        width: 369px;
        height: 346px; } }
    .service__classic-reason-detail-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .service__classic-reason-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
  .service__classic-reason-detail-title {
    margin-bottom: 6px;
    font-size: 20px; }
    @media (min-width: 1280px) {
      .service__classic-reason-detail-title {
        font-size: 24px; } }
    @media (min-width: 1650px) {
      .service__classic-reason-detail-title {
        font-size: 32px;
        margin-bottom: 14px; } }
  .service__classic-reason-detail-subtitle {
    font-size: 13px;
    color: var(--color-jet);
    margin-bottom: 8px; }
    @media (min-width: 1650px) {
      .service__classic-reason-detail-subtitle {
        font-size: 24px;
        margin-bottom: 0; } }
  .service__classic-reason-detail-duration {
    margin-bottom: 12px;
    font-size: 12px; }
    @media (min-width: 1280px) {
      .service__classic-reason-detail-duration {
        font-size: 16px; } }
    @media (min-width: 1650px) {
      .service__classic-reason-detail-duration {
        font-size: 24px;
        margin-bottom: 14px; } }
  .service__classic-reason-detail-btn .btn {
    width: 100%;
    height: 43px;
    border-radius: 6px; }
    @media (min-width: 1650px) {
      .service__classic-reason-detail-btn .btn {
        height: 62px; } }
.service__classic-garanty-list {
  display: grid;
  grid-gap: 12px;
  margin-bottom: 22px; }
  @media (min-width: 768px) {
    .service__classic-garanty-list {
      grid-gap: 16px;
      margin-bottom: 16px; } }
  @media (min-width: 1280px) {
    .service__classic-garanty-list {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 16px;
      margin-bottom: 16px; } }
.service__classic-garanty-item {
  border-radius: 20px;
  background: var(--color-gray);
  display: flex;
  align-items: center;
  height: 66px;
  overflow: hidden;
  padding-left: 10px;
  gap: 8px; }
  @media (min-width: 768px) {
    .service__classic-garanty-item {
      height: 136px;
      border-radius: 40px;
      font-size: 30px; } }
  @media (min-width: 1280px) {
    .service__classic-garanty-item {
      gap: 13px;
      height: 66px;
      border-radius: 20px;
      font-size: 20px; } }
  @media (min-width: 1650px) {
    .service__classic-garanty-item {
      border-radius: 30px;
      height: 108px;
      padding-left: 15px; } }
  .service__classic-garanty-item-icon {
    display: flex;
    width: 93px;
    height: 100%; }
    @media (min-width: 768px) {
      .service__classic-garanty-item-icon {
        width: 165px; } }
    @media (min-width: 1650px) {
      .service__classic-garanty-item-icon {
        width: 108px;
        height: 108px; } }
    .service__classic-garanty-item-icon img {
      object-fit: cover; }
.service__classic-garanty-btn .btn {
  width: 100%;
  border-radius: 8px;
  height: 50px; }
  @media (min-width: 1650px) {
    .service__classic-garanty-btn .btn {
      height: 80px;
      font-size: 24px; } }
.service__classic-services-list {
  display: grid;
  grid-gap: 8px; }
  @media (min-width: 1280px) {
    .service__classic-services-list {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 16px; } }
.service__classic-services-item {
  background: var(--color-gray);
  border-radius: 20px;
  padding: 12px; }
  @media (min-width: 768px) {
    .service__classic-services-item {
      padding: 20px;
      border-radius: 30px; } }
  @media (min-width: 1650px) {
    .service__classic-services-item {
      border-radius: 30px;
      padding: 20px; } }
  .service__classic-services-item-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .service__classic-services-item-top {
        margin-bottom: 20px;
        gap: 30px; } }
    @media (min-width: 1280px) {
      .service__classic-services-item-top {
        gap: 16px;
        margin-bottom: 12px; } }
    @media (min-width: 1650px) {
      .service__classic-services-item-top {
        margin-bottom: 20px; } }
  .service__classic-services-item-icon {
    flex: none;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px; }
    @media (min-width: 768px) {
      .service__classic-services-item-icon {
        width: 145px;
        height: 145px; } }
    @media (min-width: 1650px) {
      .service__classic-services-item-icon {
        width: 95px;
        height: 95px; } }
  .service__classic-services-item-title {
    font-size: 20px; }
    @media (min-width: 768px) {
      .service__classic-services-item-title {
        font-size: 40px; } }
    @media (min-width: 1650px) {
      .service__classic-services-item-title {
        font-size: 34px; } }
  .service__classic-services-item-btn .btn {
    font-size: 13px;
    height: 38px;
    width: 100%;
    border-radius: 8px; }
    @media (min-width: 768px) {
      .service__classic-services-item-btn .btn {
        font-size: 20px;
        height: 70px;
        border-radius: 16px; } }
    @media (min-width: 1280px) {
      .service__classic-services-item-btn .btn {
        font-size: 13px;
        height: 38px;
        border-radius: 8px; } }
    @media (min-width: 1650px) {
      .service__classic-services-item-btn .btn {
        height: 60px;
        font-size: 20px; } }
.service__classic-prices .heading__title span {
  display: block;
  margin-left: -10px; }
.service__classic-prices-list {
  display: grid;
  grid-gap: 8px;
  margin-bottom: 8px; }
  @media (min-width: 1280px) {
    .service__classic-prices-list {
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 16px;
      margin-bottom: 16px; } }
.service__classic-prices-item {
  background: #f5f5f5;
  border-radius: 30px;
  padding: 20px; }
  @media (min-width: 1650px) {
    .service__classic-prices-item {
      padding: 24px; } }
  .service__classic-prices-item-content {
    display: flex;
    margin-bottom: 18px; }
  .service__classic-prices-item-title {
    margin-bottom: 8px;
    font-size: 20px; }
    @media (min-width: 768px) {
      .service__classic-prices-item-title {
        font-size: 40px;
        margin-bottom: 16px; } }
    @media (min-width: 1280px) {
      .service__classic-prices-item-title {
        font-size: 24px;
        margin-bottom: 8px; } }
    @media (min-width: 1650px) {
      .service__classic-prices-item-title {
        font-size: 32px;
        margin-bottom: 20px; } }
  .service__classic-prices-item-text {
    color: var(--color-jet);
    font-size: 14px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .service__classic-prices-item-text {
        font-size: 30px;
        margin-bottom: 16px; } }
    @media (min-width: 1280px) {
      .service__classic-prices-item-text {
        font-size: 16px;
        margin-bottom: 0; } }
    @media (min-width: 1650px) {
      .service__classic-prices-item-text {
        font-size: 20px; } }
    .service__classic-prices-item-text span {
      display: block;
      font-weight: 600; }
  .service__classic-prices-item-prices {
    display: flex;
    align-items: center;
    gap: 15px; }
  .service__classic-prices-item-price {
    font-size: 20px; }
    @media (min-width: 768px) {
      .service__classic-prices-item-price {
        font-size: 40px; } }
    @media (min-width: 1280px) {
      .service__classic-prices-item-price {
        font-size: 24px; } }
    @media (min-width: 1650px) {
      .service__classic-prices-item-price {
        font-size: 32px; } }
    .service__classic-prices-item-price-old {
      color: var(--color-jet);
      text-decoration: line-through;
      font-size: 16px; }
      @media (min-width: 768px) {
        .service__classic-prices-item-price-old {
          font-size: 32px; } }
      @media (min-width: 1280px) {
        .service__classic-prices-item-price-old {
          font-size: 20px; } }
  .service__classic-prices-item-btn .btn {
    height: 50px;
    border-radius: 8px;
    width: 100%; }
    @media (min-width: 1650px) {
      .service__classic-prices-item-btn .btn {
        height: 60px;
        font-size: 20px; } }
.service__classic-prices-calc {
  background: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px 12px;
  border-radius: 30px; }
  @media (min-width: 768px) {
    .service__classic-prices-calc {
      padding: 40px 30px;
      border-radius: 60px; } }
  @media (min-width: 1280px) {
    .service__classic-prices-calc {
      border-radius: 20px;
      padding: 40px 20px; } }
  @media (min-width: 1650px) {
    .service__classic-prices-calc {
      padding: 44px 33px;
      grid-template-columns: 7fr 5fr; } }
  .service__classic-prices-calc-condition {
    display: none; }
    @media (min-width: 1280px) {
      .service__classic-prices-calc-condition {
        display: block; } }
    .service__classic-prices-calc-condition-title {
      font-size: 24px;
      margin-bottom: 23px; }
      @media (min-width: 768px) {
        .service__classic-prices-calc-condition-title {
          font-size: 40px;
          margin-bottom: 43px; } }
      @media (min-width: 1280px) {
        .service__classic-prices-calc-condition-title {
          font-size: 36px;
          font-weight: 600;
          margin-bottom: 40px; } }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-condition-title {
          font-size: 64px;
          margin-bottom: 80px; } }
    .service__classic-prices-calc-condition-list {
      display: grid;
      grid-gap: 13px;
      grid-template-columns: repeat(3, 1fr); }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-condition-list {
          grid-gap: 25px; } }
    .service__classic-prices-calc-condition-item {
      border-radius: 7px;
      background: var(--color-black); }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-condition-item {
          border-radius: 11px; } }
      .service__classic-prices-calc-condition-item-label {
        font-size: 13px;
        color: #fff;
        padding: 7px 10px; }
        @media (min-width: 1650px) {
          .service__classic-prices-calc-condition-item-label {
            font-size: 16px; } }
      .service__classic-prices-calc-condition-item-value {
        font-size: 14px;
        background: #fff;
        border-radius: 7px;
        padding: 10px 9px; }
        @media (min-width: 1650px) {
          .service__classic-prices-calc-condition-item-value {
            border-radius: 11px;
            font-size: 16px; } }
  @media (min-width: 1280px) {
    .service__classic-prices-calc-content {
      padding-left: 50px; } }
  @media (min-width: 1650px) {
    .service__classic-prices-calc-content {
      padding-left: 30px; } }
  @media (min-width: 1280px) {
    .service__classic-prices-calc-content .service__classic-prices-calc-condition-title {
      display: none; } }
  .service__classic-prices-calc-items {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 13px; }
    @media (min-width: 1280px) {
      .service__classic-prices-calc-items {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        margin-bottom: 15px; } }
    @media (min-width: 1650px) {
      .service__classic-prices-calc-items {
        gap: 35px;
        margin-bottom: 23px; } }
  .service__classic-prices-calc-price {
    font-weight: 600;
    font-size: 30px;
    margin-bottom: 15px; }
    @media (min-width: 1650px) {
      .service__classic-prices-calc-price {
        font-size: 45px;
        margin-bottom: 25px; } }
  .service__classic-prices-calc-pay {
    display: flex;
    gap: 30px;
    margin-bottom: 16px;
    padding-bottom: 13px;
    position: relative; }
    @media (min-width: 1650px) {
      .service__classic-prices-calc-pay {
        gap: 70px; } }
    .service__classic-prices-calc-pay-item-value {
      font-weight: 600;
      font-size: 20px; }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-pay-item-value {
          font-size: 32px; } }
    .service__classic-prices-calc-pay-item-label {
      font-size: 13px;
      color: var(--color-jet); }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-pay-item-label {
          font-size: 16px; } }
    @media (min-width: 1650px) {
      .service__classic-prices-calc-pay {
        margin-bottom: 23px;
        padding-bottom: 23px; } }
    .service__classic-prices-calc-pay:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      background: #828282;
      width: 100%;
      height: 5px;
      z-index: 1;
      border-radius: 3px; }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-pay:before {
          height: 7px; } }
    .service__classic-prices-calc-pay:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      background: #000;
      width: 30%;
      height: 5px;
      z-index: 2;
      border-radius: 3px; }
      @media (min-width: 1650px) {
        .service__classic-prices-calc-pay:after {
          height: 7px; } }
  .service__classic-prices-calc-btn .btn {
    border-radius: 8px;
    height: 50px;
    width: 250px; }
    @media (min-width: 1650px) {
      .service__classic-prices-calc-btn .btn {
        width: 390px;
        height: 60px;
        font-size: 20px; } }
.service__classic-responsive-top {
  display: grid;
  grid-gap: 11px;
  margin-bottom: 24px; }
  @media (min-width: 1280px) {
    .service__classic-responsive-top {
      grid-template-columns: 1fr 1fr;
      align-items: center;
      grid-gap: 16px;
      margin-bottom: 20px; } }
.service__classic-responsive-img {
  overflow: hidden;
  display: flex;
  border-radius: 40px;
  order: 2; }
  @media (min-width: 1280px) {
    .service__classic-responsive-img {
      order: 1; } }
.service__classic-responsive-heading {
  order: 1;
  font-size: 14px;
  color: var(--color-jet); }
  @media (min-width: 768px) {
    .service__classic-responsive-heading {
      font-size: 24px; } }
  @media (min-width: 1280px) {
    .service__classic-responsive-heading {
      font-size: 24px;
      order: 2;
      color: var(--color-black); } }
  @media (min-width: 1650px) {
    .service__classic-responsive-heading {
      font-size: 40px; } }
.service__classic-responsive .heading__title {
  color: var(--color-black); }
  .service__classic-responsive .heading__title span {
    margin-left: -10px;
    display: block; }
.service__classic-responsive-list {
  display: flex;
  gap: 7px;
  overflow-x: auto; }
  .service__classic-responsive-list::-webkit-scrollbar {
    display: none; }
  @media (min-width: 1280px) {
    .service__classic-responsive-list {
      overflow-x: hidden;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-gap: 16px; } }
.service__classic-responsive-item {
  background: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-jet);
  height: 100px;
  border-radius: 25px;
  font-size: 16px;
  padding: 10px;
  width: 250px;
  flex: none; }
  @media (min-width: 768px) {
    .service__classic-responsive-item {
      width: 375px;
      height: 130px;
      font-size: 24px; } }
  @media (min-width: 1280px) {
    .service__classic-responsive-item {
      border-radius: 20px;
      height: 106px;
      width: auto;
      font-size: 16px; } }
  @media (min-width: 1650px) {
    .service__classic-responsive-item {
      border-radius: 30px;
      font-size: 30px;
      height: 166px;
      padding: 10px 30px; } }
@media (min-width: 1280px) {
  .service__price {
    margin-bottom: 200px; } }
.service__price .heading__title span {
  margin-left: -10px; }
.service__price-img {
  border-radius: 20px;
  overflow: hidden;
  display: none; }
  @media (min-width: 1280px) {
    .service__price-img {
      display: flex;
      width: 248px;
      order: 2; } }
  @media (min-width: 1650px) {
    .service__price-img {
      width: 100%; }
      .service__price-img img {
        width: 100%;
        display: block; } }
@media (min-width: 1650px) {
  .service__price .price__list {
    padding-right: 0 !important;
    grid-template-columns: 1fr 624px; } }
.service__faq .heading__right {
  width: auto;
  color: var(--color-jet); }

.letter__top {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .letter__top {
      margin-bottom: 40px; } }
  @media (min-width: 1280px) {
    .letter__top {
      margin-bottom: 90px; } }
  @media (min-width: 1650px) {
    .letter__top {
      margin-bottom: 60px; } }
.letter__text {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px; }
  @media (min-width: 768px) {
    .letter__text {
      font-size: 30px; } }
  @media (min-width: 1280px) {
    .letter__text {
      margin-bottom: 20px;
      font-size: 24px; } }
  @media (min-width: 1650px) {
    .letter__text {
      font-size: 40px; } }
.letter__owner {
  font-size: 20px;
  margin-bottom: 24px; }
  @media (min-width: 768px) {
    .letter__owner {
      font-size: 30px;
      margin-bottom: 28px; } }
  @media (min-width: 1280px) {
    .letter__owner {
      font-size: 24px;
      margin-bottom: 32px; } }
  @media (min-width: 1650px) {
    .letter__owner {
      font-size: 40px;
      margin-bottom: 50px; } }
.letter__form-title {
  font-size: 20px;
  margin-bottom: 12px; }
  @media (min-width: 768px) {
    .letter__form-title {
      font-size: 30px;
      margin-bottom: 16px; } }
  @media (min-width: 1280px) {
    .letter__form-title {
      font-size: 24px;
      margin-bottom: 15px; } }
  @media (min-width: 1650px) {
    .letter__form-title {
      font-size: 32px;
      margin-bottom: 30px; } }
.letter__form .form__fields {
  display: grid;
  grid-gap: 12px; }
  @media (min-width: 768px) {
    .letter__form .form__fields {
      grid-gap: 16px; } }
  @media (min-width: 1280px) {
    .letter__form .form__fields {
      grid-gap: 15px;
      grid-template-columns: repeat(3, 1fr); } }
.letter__form .form__field {
  width: 100%; }
  @media (min-width: 1280px) {
    .letter__form .form__field.msg {
      grid-column: span 3; } }
  .letter__form .form__field input, .letter__form .form__field textarea {
    border: 1px solid #d1d1d1;
    height: 60px; }
    @media (min-width: 768px) {
      .letter__form .form__field input, .letter__form .form__field textarea {
        height: 100px; } }
    @media (min-width: 1280px) {
      .letter__form .form__field input, .letter__form .form__field textarea {
        height: 40px; } }
    @media (min-width: 1650px) {
      .letter__form .form__field input, .letter__form .form__field textarea {
        height: 60px; } }
  .letter__form .form__field textarea {
    height: 160px; }
    @media (min-width: 768px) {
      .letter__form .form__field textarea {
        height: 260px; } }
    @media (min-width: 1280px) {
      .letter__form .form__field textarea {
        height: 140px; } }
    @media (min-width: 1650px) {
      .letter__form .form__field textarea {
        height: 250px; } }
  @media (min-width: 1280px) {
    .letter__form .form__field-submit {
      grid-column: span 3; } }
  .letter__form .form__field-agreement {
    font-size: 12px;
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      .letter__form .form__field-agreement {
        font-size: 24px;
        margin-bottom: 25px; } }
    @media (min-width: 1280px) {
      .letter__form .form__field-agreement {
        grid-column: span 2;
        font-size: 20px;
        margin-bottom: 25px; } }
    @media (min-width: 1650px) {
      .letter__form .form__field-agreement {
        margin-bottom: 50px; } }
    .letter__form .form__field-agreement a {
      color: var(--color-red); }
  .letter__form .form__field .btn {
    width: 336px;
    height: 40px;
    border-radius: 8px; }
    @media (min-width: 1650px) {
      .letter__form .form__field .btn {
        width: 525px;
        height: 60px; } }

/*# sourceMappingURL=template_styles.css.map */
