@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
:root {
  --color-main-black: #2c2825;
  --color-second-black: #484542;
  --color-second-black-hover: #605c59;
  --color-main-orange: #ef7f1a;
  --color-light-orange: #fae5d2;
  --color-main-white: #ffffff;
  --color-stroke: #ebe8e6;
  --color-bg-elements-2: #faf9f8;
  --font-bg-block: "Helvetica";
  --font-p-1: 16px;
  --border-radius-1: 10px;
  --box-shadow: 0 0 40px;
}

html {
  box-sizing: border-box;
}

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

body {
  background: #fff;
  font-family: "Onest", sans-serif;
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--color-second-black);
}

p {
  margin: 0px;
}
p:not(:last-child) {
  padding-bottom: 15px;
}

b {
  font-weight: 600;
}

a {
  text-decoration: none;
  transition: 0.2s;
  color: inherit;
}
a:hover {
  color: var(--color-main-orange);
}
button {
  transition: 0.2s;
  border: none;
  cursor: pointer;
  background: transparent;
  padding: 0;
}
img {
  max-width: 100%;
}

blockquote {
  margin: 0px 0px 15px 0px;
  border-left: 2px solid var(--color-main-orange);
  padding-left: 15px;
  color: var(--color-main-black);
}

ul {
  padding: 0;
  list-style: none;
  display: block;
  margin: 0px;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--color-main-black);
}

h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 115%;
  margin-bottom: 15px;
}

h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 115%;
}

.container {
  max-width: 1230px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 15px;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

.gap-0 {
  gap: 0px;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

@media (min-width: 576px) {
  .col-sm-1 {
    grid-column: span 1;
  }
  .col-sm-2 {
    grid-column: span 2;
  }
  .col-sm-3 {
    grid-column: span 3;
  }
  .col-sm-4 {
    grid-column: span 4;
  }
  .col-sm-5 {
    grid-column: span 5;
  }
  .col-sm-6 {
    grid-column: span 6;
  }
  .col-sm-7 {
    grid-column: span 7;
  }
  .col-sm-8 {
    grid-column: span 8;
  }
  .col-sm-9 {
    grid-column: span 9;
  }
  .col-sm-10 {
    grid-column: span 10;
  }
  .col-sm-11 {
    grid-column: span 11;
  }
  .col-sm-12 {
    grid-column: span 12;
  }
  .gap-sm-0 {
    gap: 0px;
  }
  .gap-sm-10 {
    gap: 10px;
  }
  .gap-sm-20 {
    gap: 20px;
  }
  .gap-sm-30 {
    gap: 30px;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    grid-column: span 1;
  }
  .col-md-2 {
    grid-column: span 2;
  }
  .col-md-3 {
    grid-column: span 3;
  }
  .col-md-4 {
    grid-column: span 4;
  }
  .col-md-5 {
    grid-column: span 5;
  }
  .col-md-6 {
    grid-column: span 6;
  }
  .col-md-7 {
    grid-column: span 7;
  }
  .col-md-8 {
    grid-column: span 8;
  }
  .col-md-9 {
    grid-column: span 9;
  }
  .col-md-10 {
    grid-column: span 10;
  }
  .col-md-11 {
    grid-column: span 11;
  }
  .col-md-12 {
    grid-column: span 12;
  }
  .gap-md-0 {
    gap: 0px;
  }
  .gap-md-10 {
    gap: 10px;
  }
  .gap-md-20 {
    gap: 20px;
  }
  .gap-md-30 {
    gap: 30px;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    grid-column: span 1;
  }
  .col-lg-2 {
    grid-column: span 2;
  }
  .col-lg-3 {
    grid-column: span 3;
  }
  .col-lg-4 {
    grid-column: span 4;
  }
  .col-lg-5 {
    grid-column: span 5;
  }
  .col-lg-6 {
    grid-column: span 6;
  }
  .col-lg-7 {
    grid-column: span 7;
  }
  .col-lg-8 {
    grid-column: span 8;
  }
  .col-lg-9 {
    grid-column: span 9;
  }
  .col-lg-10 {
    grid-column: span 10;
  }
  .col-lg-11 {
    grid-column: span 11;
  }
  .col-lg-12 {
    grid-column: span 12;
  }
  .gap-lg-0 {
    gap: 0px;
  }
  .gap-lg-10 {
    gap: 10px;
  }
  .gap-lg-20 {
    gap: 20px;
  }
  .gap-lg-30 {
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    grid-column: span 1;
  }
  .col-xl-2 {
    grid-column: span 2;
  }
  .col-xl-3 {
    grid-column: span 3;
  }
  .col-xl-4 {
    grid-column: span 4;
  }
  .col-xl-5 {
    grid-column: span 5;
  }
  .col-xl-6 {
    grid-column: span 6;
  }
  .col-xl-7 {
    grid-column: span 7;
  }
  .col-xl-8 {
    grid-column: span 8;
  }
  .col-xl-9 {
    grid-column: span 9;
  }
  .col-xl-10 {
    grid-column: span 10;
  }
  .col-xl-11 {
    grid-column: span 11;
  }
  .col-xl-12 {
    grid-column: span 12;
  }
  .gap-xl-0 {
    gap: 0px;
  }
  .gap-xl-10 {
    gap: 10px;
  }
  .gap-xl-20 {
    gap: 20px;
  }
  .gap-xl-30 {
    gap: 30px;
  }
}
.btn {
  display: block;
  background-color: var(--color-main-orange);
  color: var(--color-main-white);
  padding: 13px 38px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  font-family: "Onest", sans-serif;
  border: none;
  outline: none;
  transition: 0.2s;
}
.btn:hover {
  color: #ffffff;
  background-color: #db7214;
}
.btn-light {
  background-color: var(--color-light-orange);
  color: var(--color-main-orange);
}

a.btn {
  max-width: -moz-max-content;
  max-width: max-content;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=url],
input[type=search] {
  padding: 15px;
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  width: 100%;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus {
  outline: none;
}
input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: red;
  width: 20px;
  height: 20px;
}
input[type=checkbox]:focus {
  outline: none;
}
input[type=checkbox]:checked {
  background: blue;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  background: green;
}
input[type=radio]:focus {
  outline: none;
}
input[type=radio]:checked {
  background: blue;
}

textarea {
  resize: none;
  padding: 15px;
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  font-family: "Onest", sans-serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  width: 100%;
}
textarea:focus {
  outline: none;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

.accordion-body {
  display: none;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.3s ease 0s;
  z-index: 100;
}

.modal-show {
  opacity: 1;
  visibility: visible;
}

.modal__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}

.modal__content {
  background: #ffffff;
  padding: 45px 15px;
  border-radius: 10px;
  max-width: 800px;
  position: relative;
}
.modal__content p {
  padding-bottom: 0px;
}

.close-modal {
  background: transparent;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: 0.2s;
}
.site-header {
  box-shadow: 0 5px 30px 0 rgba(44, 40, 37, 0.04);
  padding: 15px 0px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.site-logo {
  width: 238px;
  order: 1;
}

.site-header__menu-toggler {
  order: 2;
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.site-header__menu-toggler span {
  display: block;
  height: 2px;
  width: 22.67px;
  background: var(--color-main-black);
  border-radius: 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.site-header__menu-toggler span:not(:last-child) {
  margin-bottom: 4px;
}

.site-header__menu-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.site-header__menu-toggler.active span:nth-child(2) {
  opacity: 0;
}
.site-header__menu-toggler.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.site-header__menu {
  order: 8;
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  line-height: 115%;
  color: var(--color-main-black);
  display: none;
}
.site-header__menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-header__mobile-line {
  order: 3;
  display: block;
  background: var(--color-stroke);
  height: 1px;
  width: 100%;
}

.contacts-phone {
  order: 4;
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  width: 50%;
}
.contacts-phone a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-main-black);
}
.contacts-phone a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.6194 13.4583C11.1275 13.4583 9.62865 13.1115 8.1229 12.4177C6.61728 11.7239 5.23265 10.7453 3.96902 9.48179C2.71054 8.21816 1.73441 6.83472 1.04065 5.33148C0.346882 3.82837 0 2.33086 0 0.838969C0 0.601469 0.0791667 0.402233 0.2375 0.24126C0.395833 0.0804202 0.59375 0 0.83125 0H3.41327C3.61317 0 3.78951 0.0652468 3.9423 0.19574C4.09509 0.326101 4.19227 0.487205 4.23383 0.679052L4.68766 3.00833C4.71906 3.22446 4.71246 3.41017 4.66787 3.56547C4.62314 3.72077 4.54291 3.85119 4.4272 3.95675L2.59884 5.73661C2.89308 6.27548 3.22927 6.78524 3.60743 7.26592C3.98545 7.74646 4.39474 8.20543 4.8353 8.64282C5.26966 9.07732 5.73147 9.4808 6.22072 9.85328C6.70997 10.2258 7.23828 10.5724 7.80564 10.8931L9.58214 9.1012C9.70603 8.97229 9.85605 8.88191 10.0322 8.83005C10.2082 8.77833 10.3912 8.76566 10.581 8.79205L12.7793 9.23974C12.9792 9.29252 13.1423 9.39451 13.2687 9.54572C13.3951 9.69693 13.4583 9.86846 13.4583 10.0603V12.6271C13.4583 12.8646 13.3779 13.0625 13.2171 13.2208C13.0561 13.3792 12.8569 13.4583 12.6194 13.4583Z' fill='%23EF7F1A' /%3E%3C/svg%3E");
}
.contacts-phone span {
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
  color: var(--color-second-black);
}

.site-header__signup {
  order: 5;
  margin-left: auto;
  width: 40%;
  display: flex;
}
.site-header__signup .btn {
  margin-left: auto;
}

.contacts-address {
  order: 6;
  flex: 0 0 230px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contacts-address__main-address {
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  color: var(--color-main-black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contacts-address__main-address::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 15 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.67335 17.5754C6.48648 17.5108 6.31749 17.411 6.1664 17.2759C5.30645 16.4833 4.50169 15.6672 3.75211 14.8273C3.0027 13.9877 2.35127 13.1483 1.79783 12.3091C1.24424 11.4699 0.806198 10.6381 0.483719 9.81381C0.16124 8.98933 0 8.19311 0 7.42517C0 5.21365 0.715316 3.42325 2.14595 2.05395C3.57674 0.684649 5.27259 0 7.2335 0C9.19441 0 10.8903 0.684649 12.3211 2.05395C13.7517 3.42325 14.467 5.21365 14.467 7.42517C14.467 8.19311 14.3058 8.98773 13.9833 9.80902C13.6608 10.6305 13.2244 11.4623 12.674 12.3045C12.1234 13.1467 11.4734 13.9862 10.724 14.8228C9.97457 15.6596 9.16981 16.4742 8.30971 17.2665C8.15861 17.4017 7.98819 17.503 7.79844 17.5706C7.60853 17.6381 7.42022 17.6719 7.2335 17.6719C7.04678 17.6719 6.86007 17.6397 6.67335 17.5754ZM8.45801 8.46735C8.79662 8.1289 8.96593 7.72073 8.96593 7.24284C8.96593 6.76496 8.79662 6.35671 8.45801 6.01809C8.11956 5.67964 7.71139 5.51042 7.2335 5.51042C6.75561 5.51042 6.34744 5.67964 6.00899 6.01809C5.67038 6.35671 5.50107 6.76496 5.50107 7.24284C5.50107 7.72073 5.67038 8.1289 6.00899 8.46735C6.34744 8.80581 6.75561 8.97503 7.2335 8.97503C7.71139 8.97503 8.11956 8.80581 8.45801 8.46735Z' fill='%23484542' /%3E%3C/svg%3E");
  display: block;
  width: 15px;
  height: 18px;
}

.contacts-address__others {
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
  color: var(--color-second-black);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.contacts-address__others a {
  color: var(--color-main-orange);
  text-decoration: underline;
  font-weight: 600;
}

.contacts-address__other-address {
  display: flex;
  align-items: center;
  gap: 5px;
}
.contacts-address__other-address i {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}

.contacts-address__green i {
  background-color: #9fbf00;
}

.contacts-address__yellow i {
  background-color: #ffd000;
}

.site-socials {
  order: 7;
  display: flex;
  gap: 8px;
}
.site-socials a {
  width: 32px;
  height: 32px;
  padding: 3.2px;
}

.site-header__inner .site-socials {
  margin-left: auto;
}

.mobile-menu-active .site-header__signup {
  order: 9;
  margin-left: 0;
}
.mobile-menu-active .site-header__signup .btn {
  margin-left: 0;
}
.mobile-menu-active .site-socials {
  order: 6;
}

.slider-btn-next,
.slider-btn-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  opacity: 0.5;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--color-bg-elements-2);
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 5;
  transition: 0.2s;
}
.slider-btn-next:hover,
.slider-btn-prev:hover {
  opacity: 1;
}

.slider-btn-next {
  right: 30px;
}

.slider-btn-prev {
  left: 30px;
}

.slider-pagination {
  margin-left: auto;
  margin-right: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-top: 15px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--color-main-black);
  opacity: 0.1;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.c-section {
  margin: 15px 0px;
}

.c-title::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 86px;
  height: 5px;
  background: var(--color-main-orange);
}

.arrow-link {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: var(--color-main-orange);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s;
  font-family: "Onest", sans-serif;
}
.arrow-link path {
  transition: 0.2s;
  fill: var(--color-main-orange);
}
.arrow-link:hover {
  color: var(--color-second-black);
}
.arrow-link:hover path {
  fill: var(--color-second-black);
}

.c-section-btn {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.c-section__header {
  display: flex;
  align-items: center;
}

.site-footer {
  background: var(--color-bg-elements-2);
  padding: 30px 0px;
}
.site-footer .site-logo {
  order: 0;
}
.site-footer .contacts-address {
  order: 0;
  flex: unset;
}
.site-footer .contacts-address .contacts-address__others a {
  width: auto;
}
.site-footer .site-header__signup {
  margin-left: 0;
  width: auto;
}
.site-footer .contacts-phone {
  width: 100%;
}

.site-footer__col-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
}

.site-footer__row-first {
  display: flex;
  flex-direction: column;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.site-footer__menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.site-footer__menu ul li {
  width: calc(50% - 8px);
  font-weight: 600;
  font-size: 18px;
  line-height: 115%;
  color: var(--color-main-black);
}

.site-footer__row-first {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--color-stroke);
}

.socials-footer__wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}

.socials-footer ul {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 0;
}

.site-footer__right-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.socials-footer__wrapper {
  margin-bottom: 15px;
}

.site-footer__copyright {
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
  color: #b9b1a8;
}

.site-footer__right-block a {
  font-weight: 600;
  font-size: 13px;
  line-height: 125%;
  text-decoration: underline;
  color: var(--color-main-orange);
}

.table-price {
  margin-bottom: 15px;
}

.table-price__row {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  padding: 10px 0px;
  border-bottom: 1px solid var(--color-stroke);
}
.table-price__row:last-child {
  border-bottom: none;
}

.table-price__title {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--color-main-black);
}

.table-price__value {
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: var(--color-main-black);
  text-wrap: nowrap;
  display: flex;
  gap: 30px;
  align-items: center;
}
.table-price__value::before {
  content: "...";
}

.rating-values .wpcf7-radio {
  display: inline-flex;
  flex-direction: row;
  gap: 4px;
}

/* Скрываем дефолтный инпут radio */
.rating-values .star-label input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Оформление лейбла-звезды */
.rating-values .star-label {
  cursor: pointer;
  margin: 0;
  padding: 2px;
  display: inline-block;
}

/* Иконка звезды */
.rating-values .star-icon {
  font-size: 28px;
  transition: color 0.15s ease-in-out, transform 0.15s ease-in-out;
  display: block;
  line-height: 1;
}

/* Активная звезда и эффект при наведении */
.rating-values .star-label.is-active .star-icon path {
  fill: #ef7f1a;
}

.wpcf7-list-item {
  margin: 0px;
}

.add-file-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
}

/* Безопасное скрытие системного инпута (не display:none, чтобы не ломать отправку) */
.add-file-form input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  opacity: 0;
}

/* Кастомная кнопка прикрепления */
.btn-attach-file {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease;
}

.btn-attach-file:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
}

/* Плашка выбранного файла */
.file-preview-list {
  width: 100%;
}

.file-preview-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  font-size: 13px;
  color: #166534;
  margin-top: 4px;
  max-width: 100%;
}

.file-preview-name {
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Кнопка удаления файла (крестик) */
.file-preview-remove {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
}

.file-preview-remove:hover {
  color: #dc2626;
}

.add-file-form {
  margin: 15px 0px;
}

.rating-values {
  margin: 15px 0px;
}

.btn.btn-add-file {
  padding: 15px;
  font-size: 16px;
}

/* Main Page */
.mp-hero {
  display: none;
  margin: 0px;
}

.mp-hero-slider {
  position: relative;
  overflow: hidden;
}
.mp-hero-slider .swiper-pagination-bullet {
  background-color: #ffffff;
}
.mp-hero-slider .slider-pagination {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  margin: auto;
  max-width: -moz-max-content;
  max-width: max-content;
}

.mp-hero-slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
  display: flex;
  align-items: center;
}

.mp-hero-slide__block {
  display: flex;
  flex-direction: column;
  gap: 15px;
  backdrop-filter: blur(15px);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 30px;
  max-width: 515px;
  box-sizing: border-box;
}

.mp-hero-slide__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 115%;
  color: var(--color-main-black);
}

.mp-hero-slide__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--color-second-black-hover);
}

.service-card {
  padding: 20px;
  background-color: var(--color-bg-elements-2);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card ul {
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--color-main-black);
}

.service-card__inner {
  position: relative;
  z-index: 5;
}
.service-card__inner h2 {
  margin-bottom: 15px;
}
.service-card__inner ul li {
  padding-left: 0px !important;
  width: 100% !important;
}
.service-card__inner ul li::before {
  display: none !important;
}

.service-card__img-bg {
  width: 232px;
  height: 232px;
  filter: blur(5px);
  opacity: 0.1;
  position: absolute;
  right: 0px;
  bottom: -50px;
}
.service-card__img-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  line-height: 0;
}

.section-services__inner .row {
  gap: 15px;
}

.section-about {
  background-color: var(--color-bg-elements-2);
  padding: 15px 0px;
}

.section-about__desc p {
  font-weight: 400;
  font-size: 15px;
  line-height: 125%;
}

.section-about__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.section-promo {
  overflow: hidden;
}

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

.slider-trans .swiper-slide {
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.slider-trans .swiper-slide.swiper-slide-fully-visible {
  opacity: 1;
}

.promo-slider {
  position: relative;
  overflow: hidden;
}

.section-specialists {
  overflow: hidden;
}

.specialists-slider__wrapper {
  position: relative;
}
.specialists-slider__wrapper .slider-btn-next, .specialists-slider__wrapper .slider-btn-prev {
  top: 0;
  bottom: 0;
  margin: auto;
}
.specialists-slider__wrapper .slider-btn-prev {
  left: -20px;
}
.specialists-slider__wrapper .slider-btn-next {
  right: -20px;
}

.specialists-slider .swiper-slide {
  height: auto;
}

.specialist-card {
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  height: 100%;
  box-sizing: border-box;
}

.specialist-card__img {
  height: 240px;
}

.specialist-card__info {
  padding: 15px;
  display: flex;
  flex-direction: column;
}

.specialist-card__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
}

.specialist-card__btn {
  margin-top: 5px;
}

.specialist-card__header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 0 0 70px;
}

.section-gallery {
  overflow: hidden;
}

.gallery-slide {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
}

.gallery-slider__wrapper .slider-btn-next, .gallery-slider__wrapper .slider-btn-prev {
  top: 0;
  bottom: 0;
  margin: auto;
}
.gallery-slider__wrapper .slider-btn-prev {
  left: -20px;
}
.gallery-slider__wrapper .slider-btn-next {
  right: -20px;
}

.section-reviews-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-radius: 10px;
  padding: 15px;
  margin-left: auto;
  background-color: var(--color-bg-elements-2);
}

.section-reviews-header__maps {
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  color: var(--color-main-black);
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.section-reviews-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.section-reviews-header-info img {
  display: block;
}

.section-reviews-header-info__btn {
  display: flex;
  justify-content: center;
  width: 100%;
}
.section-reviews-header-info__btn .btn {
  width: 155px;
  padding: 15.5px 20px;
  text-wrap: nowrap;
}

.section-reviews-header-info__title {
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  color: var(--color-main-black);
}

.section-reviews .c-section__header {
  flex-direction: column;
  align-items: start;
}

.section-reviews-header-info__left {
  flex: 0 0 40px;
}

.section-reviews .c-section__header {
  margin-bottom: 15px;
}

.section-reviews-header-info__rating {
  display: flex;
  gap: 5px;
  align-items: center;
}

.reviews-card {
  padding: 15px;
  border-radius: 10px;
  background-color: var(--color-bg-elements-2);
}

.reviews-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reviews-card__info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-card__avatar {
  flex: 0 0 45px;
  height: 45px;
  overflow: hidden;
  border-radius: 100%;
}

.reviews-card__name {
  font-weight: 500;
  font-size: 15px;
  line-height: 125%;
  color: var(--color-main-black);
  margin-bottom: 3px;
}

.reviews-card__date {
  font-weight: 400;
  font-size: 13px;
  line-height: 125%;
}

.reviews-card__rating {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 15px;
  gap: 3px;
  line-height: 0;
}

.reviews-card__body {
  margin-top: 15px;
}
.reviews-card__body .arrow-link {
  margin-top: 15px;
}

.reviews-card__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 6.25em;
  transition: max-height 0.4s ease-in-out;
}

.reviews-slider {
  overflow: hidden;
}
.reviews-slider .swiper-slide {
  height: auto;
}

.reviews-slider__wrapper {
  position: relative;
}
.reviews-slider__wrapper .slider-btn-next, .reviews-slider__wrapper .slider-btn-prev {
  top: 100px;
}
.reviews-slider__wrapper .slider-btn-prev {
  left: -20px;
}
.reviews-slider__wrapper .slider-btn-next {
  right: -20px;
}

.reviews-card__text.active {
  max-height: 1000px;
  -webkit-line-clamp: 999;
  display: block;
}

.section-faq {
  background-color: var(--color-bg-elements-2);
  padding: 30px 0px;
}

.faq-item__arrow {
  width: 25px;
  height: 25px;
}
.faq-item__arrow svg {
  transition: 0.2s;
}

.section-faq__inner {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-faq__question-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
}

.faq-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  gap: 20px;
  cursor: pointer;
}

.faq-item__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 115%;
  color: var(--color-main-black);
}

.faq-item__body {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  display: none;
}

.faq-item.active .faq-item__arrow svg {
  transform: rotate(180deg);
}

.section-faq-aside {
  border-radius: 10px;
  padding: 15px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.section-faq-aside__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 115%;
  color: var(--color-main-black);
}
.section-faq-aside__title span {
  color: var(--color-main-orange);
}

.section-faq-aside__text {
  font-weight: 400;
  font-size: 15px;
  line-height: 125%;
}

.section-faq-aside__link a {
  font-weight: 600;
  font-size: 15px;
  line-height: 125%;
  text-decoration: underline;
  color: var(--color-main-orange);
}

.blog-slider {
  overflow: hidden;
}

.post-card {
  border: 1px solid var(--color-stroke);
  border-radius: 10px;
  overflow: hidden;
}

.post-card__img {
  height: 240px;
}

.post-card__info {
  padding: 15px;
}

.post-card__header {
  display: flex;
  gap: 10px;
  flex-direction: column;
  margin-bottom: 10px;
}

.post-card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 115%;
  color: var(--color-main-black);
}

.post-card__excerpt {
  font-weight: 400;
  font-size: 15px;
  line-height: 125%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-slider__wrapper {
  position: relative;
}
.blog-slider__wrapper .slider-btn-next, .blog-slider__wrapper .slider-btn-prev {
  top: 36%;
  display: none;
}
.blog-slider__wrapper .slider-btn-prev {
  left: -20px;
}
.blog-slider__wrapper .slider-btn-next {
  right: -20px;
}

.single-page-wrapper {
  padding: 15px 0px;
}

.breadcrumbs {
  font-weight: 400;
  font-size: 15px;
  line-height: 125%;
  color: #b9b1a8;
  margin-bottom: 15px;
}
.breadcrumbs > span {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 2px;
}

.static-page__title {
  margin-bottom: 15px;
}

.single-page-wrapper__inner {
  display: flex;
  flex-direction: column;
}

.static-page {
  font-weight: 400;
  font-size: 15px;
  line-height: 125%;
  margin-bottom: 15px;
  min-width: 0;
  width: 100%;
}
.static-page h2 {
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  margin-bottom: 15px;
}
.static-page h3 {
  margin-bottom: 10px;
}
.static-page h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 115%;
}
.static-page p:not(:last-child) {
  padding-bottom: 10px;
}
.static-page ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.static-page ul li {
  width: 100%;
}
.static-page .static-page__content ul {
  margin-bottom: 15px;
}
.static-page .static-page__content ul li {
  position: relative;
  padding-left: 15px;
}
.static-page .static-page__content ul li::before {
  content: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='3' fill='%23EF7F1A' /%3E%3C/svg%3E");
  line-height: 0;
  position: absolute;
  left: 0;
  top: 0.45em;
}
.static-page .static-page__content img {
  height: 240px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.book-appointment {
  border-radius: 10px;
  padding: 15px;
  background: var(--color-bg-elements-2);
}
.book-appointment .contacts-address {
  margin-bottom: 15px;
}
.book-appointment .site-socials {
  margin-bottom: 15px;
  margin-left: 48px;
}
.book-appointment .contacts-phone {
  margin-bottom: 15px;
  width: 100%;
}
.book-appointment .contacts-address__others a {
  width: 100%;
}
.book-appointment .btn {
  margin-left: 25px;
}

.book-appointment__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  color: var(--color-main-black);
  margin-bottom: 15px;
}

.static-page__slider {
  margin: 15px 0px;
}

.static-page-slider {
  overflow: hidden;
}

.static-page-slider__wrapper {
  position: relative;
}
.static-page-slider__wrapper .slider-btn-next, .static-page-slider__wrapper .slider-btn-prev {
  top: 0;
  bottom: 0;
  margin: auto;
}
.static-page-slider__wrapper .slider-btn-prev {
  left: -20px;
}
.static-page-slider__wrapper .slider-btn-next {
  right: -20px;
}

.sp-slide {
  border-radius: 10px;
  height: 250px;
  overflow: hidden;
}

.specialist-card-small {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid var(--color-stroke);
}

.specialist-card-small__img {
  flex: 0 0 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 100%;
}

.specialist-card-small__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  color: var(--color-main-black);
  margin-bottom: 5px;
}

.specialist-card-small__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  margin-bottom: 10px;
}

.static-page__specialists {
  margin: 15px 0px;
}

.static-page__specialists-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.static-page__specialists-grid .specialist-card-small {
  width: 100%;
}

.static-page__promo {
  margin: 15px 0px;
}

.static-page__faq {
  margin: 15px 0px;
}

.static-page__promo-slider {
  overflow: hidden;
}

.static-page__promo-slide {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.2s;
}
.static-page__promo-slide:hover {
  opacity: 0.8;
}

.static-page__promo-slider-wrapper {
  position: relative;
}

.promo-slider__wrapper {
  position: relative;
}
.promo-slider__wrapper .slider-btn-next, .promo-slider__wrapper .slider-btn-prev {
  top: 0;
  bottom: 0;
  margin: auto;
}
.promo-slider__wrapper .slider-btn-prev {
  left: -20px;
}
.promo-slider__wrapper .slider-btn-next {
  right: -20px;
}

.static-page__faq .faq-item {
  border-radius: 0px;
}
.static-page__faq .faq-item__header {
  padding: 15px 0px;
}
.static-page__faq .faq-item__body {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 15px;
}
.static-page__faq .faq-item__title {
  font-size: 18px;
}
.static-page__faq .faq-item__body-inner {
  max-width: none;
}
.static-page__faq .faq-item {
  border-bottom: 1px solid var(--color-stroke);
}

.static-page__thumb {
  height: auto;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.static-page-specialist h2 {
  margin: 15px 0px;
}
.static-page-specialist h3 {
  margin: 15px 0px;
}
.static-page-specialist .static-page__thumb {
  max-width: 360px;
  margin: 0 auto;
}

.cookie-accept__wrapper {
  position: fixed;
  z-index: 7;
  left: 0px;
  bottom: 0px;
  padding: 10px;
  width: 100%;
}

.cookie-accept {
  max-width: 390px;
  background-color: var(--color-bg-elements-2);
  border-left: 5px solid var(--color-main-orange);
}

.cookie-accept__inner {
  padding: 15px;
}
.cookie-accept__inner h2 {
  margin-bottom: 15px;
}

.cookie-accept__text a {
  color: var(--color-main-orange);
  text-decoration: underline;
  transition: 0.2s;
}
.cookie-accept__text a:hover {
  opacity: 0.8;
}

.cookie-accept__btns {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}
.cookie-accept__btns .btn {
  width: 157px;
  padding: 15.5px 0px;
}

.wpcf7-submit {
  margin: 0 auto;
}

.wpcf7-spinner {
  display: none;
}

.reviews-add-review-btn {
  display: flex;
  justify-content: center;
  margin: 30px 0px;
}

.reviews-card__avatar.img-cover img {
  height: 100%;
}

.gallery-album__title {
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}

.static-page .static-page__content .gallery-img-item img {
  height: auto;
  aspect-ratio: 1/1;
}

.main-main-page {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.main-main-page .section-promo {
  order: 0;
  margin: 30px 0px;
}
.main-main-page .section-services {
  order: 1;
}
.main-main-page .section-about {
  order: 2;
}
.main-main-page .section-specialists {
  order: 3;
}
.main-main-page .section-gallery {
  order: 4;
}
.main-main-page .section-reviews {
  order: 5;
}
.main-main-page .section-faq {
  order: 6;
}
.main-main-page .section-blog {
  order: 7;
}

.static-page .socials-footer ul li {
  width: auto;
}

.static-page__prices {
  margin: 30px 0px;
}

.site-sidebar {
  position: sticky;
  top: 20px;
  max-height: -moz-max-content;
  max-height: max-content;
}

.gallery-slider__wrapper {
  position: relative;
}

.swiper-button-disabled {
  display: none;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 30px 0px 0px 0px;
}

.page-numbers.current {
  color: var(--color-main-orange);
}

.post-navigation {
  margin: 30px 0px 0px 0px;
}
.post-navigation .nav-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.post-navigation .nav-previous, .post-navigation .nav-next {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
}
.post-navigation .nav-previous a, .post-navigation .nav-next a {
  width: auto;
}
.post-navigation .nav-next {
  text-align: right;
  margin-left: auto;
}
.post-navigation .nav-next a {
  display: flex;
  align-items: center;
}
.post-navigation .nav-next a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6L15 12L9 18' stroke='%232c2825' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  line-height: 0;
}
.post-navigation .nav-previous a {
  display: flex;
  align-items: center;
}
.post-navigation .nav-previous a::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 6L9 12L15 18' stroke='%232c2825' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  line-height: 0;
}

.nav-previous a:hover::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M15 6L9 12L15 18' stroke='%23ef7f1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.nav-next a:hover::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30px' height='30px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M9 6L15 12L9 18' stroke='%23ef7f1a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.static-page__more-posts {
  margin: 30px 0px 0px 0px;
}

.reviews-card__photos {
  margin-top: 15px;
}

.reviews-card__photo {
  aspect-ratio: 1/1;
}
.reviews-card__photo img {
  height: 100% !important;
}

.post-card-horizontal .post-card__title {
  font-size: 20px;
  font-weight: 600;
}
.post-card-horizontal .post-card__date {
  font-size: 14px;
}

.post-navigation .nav-links {
  font-weight: 600;
}

.site-footer__inner .contacts-address .contacts-address__other-address:first-child,
.book-appointment .contacts-address .contacts-address__other-address:first-child {
  margin-left: 15px;
}

.book-appointment .contacts-address a {
  margin-left: 25px;
}

.site-footer__inner .contacts-phone span,
.book-appointment .contacts-phone span {
  margin-left: 25px;
}

.book-appointment .contacts-phone {
  width: 100%;
}

.promo-page .post-card {
  height: 100%;
}
.promo-page .post-card .post-card__img {
  height: auto;
}
.promo-page .post-card .post-card__img img {
  height: -moz-min-content;
  height: min-content;
}

.rasp-desktop {
  display: none;
}

.section-about__desc p:last-child {
  padding-bottom: 10px;
}

.site-footer__menu {
  background: #fae5d2;
  width: auto;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.site-footer__menu ul {
  padding-left: 41px;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}
.site-footer__menu ul li:last-child {
  margin-left: auto;
}

.site-footer__inner .site-logo {
  margin-bottom: 15px;
}
.site-footer__inner .site-footer__contacts {
  margin-bottom: 15px;
}
.site-footer__inner .site-footer__col-socials {
  margin-bottom: 25px;
}

.m-10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.mx-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.p-10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.m-20 {
  margin: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.p-20 {
  padding: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.img-cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
  line-height: 0;
}

.rounded-10 {
  border-radius: 10px;
}

.rounded-full {
  border-radius: 100%;
}

.p-v1 {
  font-size: var(--font-p-1);
}

@media (max-width: 700px) {
  .contacts-phone a {
    font-size: 14px;
  }
  .site-header .contacts-address__other-address:first-child {
    margin-left: 0px !important;
  }
  .site-header__signup .btn {
    margin-left: 0;
    width: 120px;
    padding: 15px;
  }
  .site-header .contacts-phone {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .site-header .contacts-address {
    order: 5;
    flex: unset;
  }
  .site-header .site-header__signup {
    order: 6;
    width: calc(50% - 8px);
    margin-left: 0px;
    justify-content: end;
  }
  .site-header .site-socials {
    margin-left: 0;
    margin-right: 0px;
    width: calc(50% - 8px);
  }
  .site-header .contacts-address__others {
    margin-left: 15px;
  }
}
@media (max-width: 992px) {
  .site-header .contacts-address {
    flex: unset !important;
  }
  .site-header .contacts-address__others a {
    margin-left: 0px !important;
  }
}
@media (min-width: 700px) and (max-width: 992px) {
  .site-header .contacts-address__others .contacts-address__other-address:first-child {
    margin-left: 15px;
  }
  .site-header .contacts-address {
    flex: auto;
    width: auto;
  }
  .site-header .contacts-phone {
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
@media (min-width: 576px) {
  .mp-hero {
    display: block;
  }
  .section-reviews-header {
    margin-left: auto;
    margin-right: auto;
  }
  .cookie-accept {
    max-width: 513px;
    border-left: 10px solid var(--color-main-orange);
  }
  .cookie-accept__inner {
    padding: 15px 30px;
  }
  .main-main-page {
    display: block;
  }
  .main-main-page .section-promo {
    margin: 60px 0px;
  }
}
@media (min-width: 768px) {
  .breadcrumbs {
    font-size: 16px;
  }
  .site-footer__menu {
    margin-left: 0;
    margin-right: 0;
  }
  .site-footer__row-first {
    gap: 15px;
  }
  .site-footer__inner .site-logo {
    margin-bottom: 0px;
  }
  .site-footer__inner .site-footer__contacts {
    margin-bottom: 0px;
  }
  .site-footer__inner .site-footer__col-socials {
    margin-bottom: 0px;
  }
  .site-footer__menu {
    background: none;
  }
  .site-footer__menu ul {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 25px;
  }
  .rasp-mobile {
    display: none;
  }
  .rasp-desktop {
    display: inline;
  }
  .section-reviews-header-info__btn {
    margin-left: auto;
    width: auto;
  }
  .section-reviews-header-info {
    width: auto;
    justify-content: start;
  }
  .section-reviews-header__maps {
    justify-content: start;
  }
  .site-footer__col-socials {
    justify-content: start;
  }
  .faq-item__title {
    font-size: 20px;
  }
  .post-navigation .nav-links {
    flex-direction: row;
  }
  .post-card-horizontal {
    display: flex;
  }
  .post-card-horizontal .post-card__img {
    height: 240px;
    flex: 0 0 240px;
  }
  .c-section {
    margin: 60px 0px;
  }
  .c-section.mp-hero {
    margin: 0px;
  }
  .contacts-address {
    width: 50%;
  }
  .c-section-btn {
    margin-top: 30px;
  }
  .specialists-slider {
    overflow: hidden;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  h3 {
    font-size: 20px;
  }
  .slider-pagination {
    margin-top: 30px;
  }
  .service-card ul {
    font-size: 16px;
  }
  .section-about__desc h2 {
    margin-bottom: 30px;
  }
  .section-reviews-header {
    margin-right: 0;
    margin-left: auto;
  }
  .section-reviews .c-section__header {
    flex-direction: row;
    align-items: center;
  }
  .section-reviews .c-section__header .c-title {
    margin-bottom: 0px;
  }
  .site-footer__row-first {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .site-footer .site-logo {
    width: calc(50% - 8px);
  }
  .site-footer .site-footer__contacts {
    width: calc(50% - 8px);
  }
  .site-footer .site-footer__col-socials {
    width: calc(50% - 8px);
  }
  .site-footer .site-footer__menu {
    width: calc(50% - 8px);
  }
  .site-footer .contacts-address {
    width: 100%;
  }
  .site-footer__row-second {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .socials-footer__wrapper {
    margin-bottom: 0px;
  }
  .site-footer__right-block {
    gap: 30px;
  }
  .static-page__specialists-grid .specialist-card-small {
    width: calc(50% - 8px);
  }
  .static-page__specialists,
  .static-page__promo,
  .static-page__faq {
    margin: 30px 0px;
  }
  .static-page__faq .faq-item__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .site-logo {
    width: 268px;
  }
  .site-header {
    padding: 25px 0px;
  }
  .site-header__menu-toggler {
    display: none;
  }
  .site-header__mobile-line {
    display: none;
  }
  .contacts-address {
    order: 2;
    width: auto;
    flex: 0 0 380px;
  }
  .site-header__inner {
    gap: 20px;
  }
  .contacts-phone {
    width: auto;
  }
  .contacts-phone a::before {
    width: 17px;
    height: 17px;
  }
  .contacts-phone {
    font-size: 18px;
  }
  .site-header__signup {
    width: auto;
  }
  .site-header__menu {
    display: block;
    font-size: 20px;
    max-width: -moz-max-content;
    max-width: max-content;
  }
  .site-header__menu ul {
    flex-direction: row;
    gap: 20px;
  }
  .site-socials {
    order: 9;
  }
  .contacts-address__main-address {
    font-size: 18px;
  }
  .contacts-address__others {
    font-size: 16px;
  }
  .contacts-address__other-address::before {
    width: 7px;
    height: 7px;
  }
  .contacts-phone span {
    font-size: 16px;
  }
  .section-about__inner {
    flex-direction: row;
  }
  .section-about__desc {
    width: 50%;
  }
  .section-about__desc p {
    padding-left: 30px;
    font-size: 16px;
  }
  .section-about__desc .btn {
    margin-top: 30px;
  }
  .section-about__img {
    width: 50%;
  }
  .section-about {
    padding: 30px 0px;
  }
  .promo-slider .slider-btn-next, .promo-slider .slider-btn-prev {
    display: none;
  }
  .gallery-slider .slider-btn-next, .gallery-slider .slider-btn-prev {
    display: none;
  }
  .section-reviews-header {
    flex-wrap: nowrap;
  }
  .section-reviews-header-info__left {
    flex: 0 0 45px;
  }
  .section-reviews-header-info__right {
    flex: 0 0 117px;
  }
  .section-reviews-header {
    gap: 30px;
    padding: 15px 30px;
  }
  .section-reviews .c-section__header {
    margin-bottom: 30px;
  }
  .section-reviews-header-info__btn .btn {
    padding: 15px 28.5px;
    width: auto;
  }
  .reviews-card {
    padding: 30px;
  }
  .section-faq__inner {
    flex-direction: row;
  }
  .section-faq-aside {
    flex: 0 0 289px;
  }
  .faq-item__header {
    padding: 30px;
  }
  .faq-item__body {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
  }
  .faq-item__title {
    font-size: 20px;
  }
  .faq-item__body {
    font-size: 16px;
  }
  .faq-item__body-inner {
    max-width: 690px;
  }
  .section-faq-aside {
    max-height: -moz-max-content;
    max-height: max-content;
    padding: 30px;
  }
  .section-faq-aside__title {
    font-size: 20px;
  }
  .section-faq-aside__text {
    font-size: 16px;
  }
  .section-faq-aside__link {
    font-size: 16px;
  }
  .blog-slider__wrapper .slider-btn-next, .blog-slider__wrapper .slider-btn-prev {
    display: flex;
  }
  .post-card__title {
    font-size: 18px;
  }
  .post-card__excerpt {
    font-size: 16px;
  }
  .single-page-wrapper__inner {
    flex-direction: row;
    gap: 15px;
  }
  .site-sidebar {
    flex: 0 0 320px;
  }
  .breadcrumbs {
    margin-bottom: 30px;
  }
  .single-page-wrapper {
    padding: 30px 0px;
  }
  .static-page {
    font-size: 16px;
  }
  .static-page h1 {
    font-size: 28px;
  }
  .static-page h2 {
    font-size: 24px;
  }
  .static-page p:not(:last-child) {
    padding-bottom: 15px;
  }
  .static-page ul {
    gap: 10px;
  }
  .static-page ul li {
    width: calc(50% - 5px);
  }
  .table-price__title {
    font-size: 18px;
  }
  .table-price__value {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .site-footer__menu ul {
    padding-left: 0px;
  }
  .site-footer__inner .contacts-address__other-address:first-child {
    margin-left: 12px !important;
  }
  .site-footer__inner .contacts-address a {
    margin-left: 23px;
  }
  .contacts-address {
    flex: unset;
  }
  .contacts-address__others {
    gap: 10px;
  }
  .site-header__inner {
    gap: 30px;
  }
  .btn {
    font-size: 18px;
    padding: 16px 50px;
  }
  .site-header__signup .btn {
    width: 220px;
  }
  .site-header__inner .site-socials {
    width: 220px;
    justify-content: center;
  }
  .site-socials a {
    width: 40px;
    height: 40px;
    padding: 4px;
  }
  .site-socials {
    gap: 15px;
  }
  .site-footer .site-logo {
    width: auto;
    order: 0;
  }
  .site-footer .site-footer__contacts {
    width: auto;
    order: 1;
    flex: 0 0 280px;
  }
  .site-footer .site-footer__col-socials {
    width: auto;
    order: 3;
  }
  .site-footer .site-footer__menu {
    width: auto;
    order: 2;
  }
  .site-footer__row-first {
    flex-wrap: nowrap;
  }
  .site-footer__menu ul {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .site-footer__col-socials {
    flex-direction: column;
  }
  .site-footer__row-first {
    justify-content: space-between;
  }
  .site-footer__menu {
    flex: 0 0 140px;
  }
  .site-footer__menu ul li {
    width: 100%;
  }
  .site-sidebar {
    flex: 0 0 390px;
  }
}
@media (max-width: 1110px) {
  .site-header .contacts-address {
    flex: 0 0 275px;
  }
  .site-header .contacts-address__other-address:first-child {
    margin-left: 11px;
  }
  .site-header .contacts-address__others a {
    margin-left: 22px;
  }
}/*# sourceMappingURL=style.css.map */