/*
Theme Name: Orvin
Template: wp-bootstrap-starter
Author: Orvin
*/
:root {
  --o-primary-color: #e6945a;
  --o-primary-color-rgb: 230, 148, 90;
  --o-secondary-color: #5a5744;
  --o-secondary-color-rgb: 90, 87, 68;
  --o-color-two: #1c1c1c;
  --o-color-three: #fff;
  --o-color-three-rgb: 255, 255, 255;
  --o-color-four: #e8e8e8;
  --o-color-five: #f9f9f9;
  --o-color-six: #6e6e74;
  --o-color-seven: #fea;
  --o-font-color: #1c1c1c;
  --o-bg-color-primary: var(--o-secondary-color);
  --o-bg-color-secondary: #4d484c;
  --o-border-color: #ebebeb;
  --o-box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: "Onest";
  font-weight: 400;
  font-style: normal;

  src: url("fonts/onest-v6-cyrillic-ext_latin-ext-regular.woff2") format("woff2");
}

@font-face {
  font-family: "Onest";
  font-weight: 500;
  font-style: normal;

  src: url("fonts/onest-v6-cyrillic-ext_latin-ext-500.woff2") format("woff2");
}

@font-face {
  font-family: "Onest";
  font-weight: 600;
  font-style: normal;

  src: url("fonts/onest-v6-cyrillic-ext_latin-ext-600.woff2") format("woff2");
}

@font-face {
  font-family: "Onest";
  font-weight: 700;
  font-style: normal;

  src: url("fonts/onest-v6-cyrillic-ext_latin-ext-700.woff2") format("woff2");
}

html {
  box-sizing: border-box;
  font-size: 20px;
  line-height: 1.5;
}

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

:focus {
  outline: none !important;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-thumb {
  border: none;
  border-radius: 0;
  background-color: var(--o-primary-color);
  box-shadow: none;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--o-primary-color);
}

::-webkit-scrollbar-track-piece {
  background-color: var(--o-color-four);
}

body {
  position: relative;
  min-width: 320px;
  max-width: 1920px;
  margin: 0 auto;
  padding-right: 0 !important;
  word-wrap: normal;
  word-break: keep-all;
  color: var(--o-font-color);
  font-family: "Onest", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.body--active {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  text-transform: none;
  text-wrap: balance;
  color: var(--o-color-two);
  border: 0 !important;
  font-weight: 600;
  line-height: 1.2;
}

*[class*="title"] {
  text-wrap: balance;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.2rem;
}

.section--main-title {
  display: none;
}

p {
  margin: 0 0 1rem;
}

a {
  transition: all 0.3s linear;
  text-decoration: none !important;
  color: var(--o-color-two);
}

a:hover {
  color: var(--o-primary-color);
}

blockquote {
  margin: 0;
}

.text-accent {
  color: var(--o-primary-color);
}

.screen-reader-text,
.skip-link {
  display: none !important;
}

.styled-list {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}

.styled-list li {
  position: relative;
  z-index: 1;
  min-height: 26px;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
  padding-top: 3px;
  padding-left: 36px;
  list-style: none;
}

.styled-list li:last-child {
  margin: 0;
}

.styled-list li::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  content: "";
  background-image: url("img/icons/styled-list.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.orvin {
  margin-right: 1rem;
}

.orvin a {
  color: var(--o-primary-color);
}

.privacy {
  display: block;
  color: var(--o-primary-color);
}

.privacy:hover,
.orvin a:hover {
  color: #fff;
}

form {
  margin: 0;
}

.appointment-form__modal {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.overlay {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  transition: all 0.3s linear;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.body--active .overlay {
  visibility: visible;
  opacity: 1;
}

.modal-form {
  position: fixed;
  z-index: 31;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  transition: all 0.3s linear;
  opacity: 0;
}

.modal-form--place-order {
  z-index: 32;
}

.modal-form--active {
  visibility: visible;
  opacity: 1;
}

.modal-form__wrapper {
  z-index: 2;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: auto;
  transition: all 0.3s linear;
  transform: translateY(-2.5rem);
}

.modal-form--product .modal-form__wrapper {
  max-width: 1366px;
}

.modal-form--active .modal-form__wrapper {
  transform: translateY(0);
}

.success-message {
  position: fixed;
  z-index: 33;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  overflow-y: auto;
  transition: all 0.3s linear;
  opacity: 0;
}

.success-message--active {
  visibility: visible;
  opacity: 1;
}

.success-message__wrapper {
  z-index: 2;
  width: 100%;
  max-width: 540px;
  height: auto;
  margin: auto;
  transition: all 0.3s linear;
  transform: translateY(-2.5rem);
}

.success-message--active .success-message__wrapper {
  transform: translateY(0);
}

.success-message__content {
  position: relative;
  min-width: 280px;
  margin: 1rem;
  padding: 2rem;
  text-align: center;
  text-transform: none;
  color: #fff;
  border: 0;
  background-color: var(--o-primary-color);
  box-shadow: var(--o-box-shadow);
  font-size: 1.5rem;
  font-weight: 600;
}

.success-message__info span {
  display: block;
}

.modal-form__content {
  position: relative;
  z-index: 1;
  min-width: 280px;
  margin: 1rem;
  margin-top: 3.5rem;
  padding: 2rem;
  border: 0;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.modal-form__title {
  text-align: center;
}

.modal-form--product .modal-form__content {
  display: flex;
  flex-direction: column;
  padding-bottom: 1rem;
}

.modal-form__close {
  position: absolute;
  z-index: 2;
  top: -2.5rem;
  right: 0;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  transition: all 0.3s linear;
  border: 0;
  border-radius: 0;
  background-color: var(--o-primary-color);
  box-shadow: var(--o-box-shadow);
}

.modal-form__close:hover {
  background-color: var(--o-color-two);
}

.modal-form__close::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.3s linear;
  border-radius: 0;
  background-image: url("img/icons/close.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 18px auto;
}

label {
  display: block;
  margin: 0;
}

input,
textarea {
  min-width: 1px;
  line-height: 1.2;
}

textarea {
  width: 100% !important;
  min-height: 100px;
  max-height: 100px;
}

.appointment-form__control {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.appointment-form__label {
  margin-bottom: 0.2rem;
  font-size: 0.8rem;
}

.appointment-form__required {
  color: var(--o-primary-color);
}

.appointment-form__input {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0.8rem;
  cursor: text;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 0;
  background-color: var(--o-bg-color-primary);
}

.appointment-form__input:focus,
.appointment-form__input--readonly {
  border-color: var(--o-primary-color);
}

.appointment-form__privacy {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.8rem;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 1rem;
  padding: 0;
}

.checkbox {
  display: none;
}

.checkbox + label {
  position: relative;
  min-width: 1rem;
  max-width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  cursor: pointer;
}

.checkbox + label::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--o-primary-color);
}

.checkbox:checked + label::before {
  border-color: var(--o-primary-color);
}

.checkbox + label::after {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  background-image: url("img/icons/check.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% auto;
}

.checkbox:checked + label::after {
  visibility: visible;
  opacity: 1;
}

.btn-center {
  text-align: center;
}

.btn {
  position: relative;
  z-index: 0;
  display: inline-block;
  overflow: hidden;
  padding: 0.8rem 1.4rem;
  cursor: pointer;
  transition: 0.8s;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid var(--o-primary-color);
  border-radius: 0;
  background-color: var(--o-primary-color);
  background-position: right center;
  background-size: 200% auto;
  font-size: 0.7rem;
  font-weight: 600;
}

.btn::after {
  position: absolute;
  z-index: -1;
  top: -200%;
  left: 50%;
  width: 200%;
  height: 200%;
  content: "";
  transition: 0.8s;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: var(--o-bg-color-primary);
}

.btn:hover {
  color: var(--o-color-three);
}

.btn:hover::after {
  top: -40%;
}

input::placeholder {
  display: none;
  transition: none;
  opacity: 1 !important;
  color: var(--o-color-two) !important;
}

input:focus::placeholder {
  transition: none;
  opacity: 1 !important;
  color: var(--o-color-two) !important;
}

textarea::placeholder {
  transition: none;
  opacity: 1 !important;
  color: var(--o-color-two) !important;
}

textarea:focus::placeholder {
  transition: none;
  opacity: 1 !important;
  color: var(--o-color-two) !important;
}

.site-header {
  position: relative;
  width: 100%;
  max-width: 1920px;
}

.container,
.content-center {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.home .site-content .container {
  max-width: 1920px;
  padding: 0;
}

.header-info {
  position: relative;
  z-index: 4;
  padding: 1rem 0;
  border-top: 3px solid var(--o-primary-color);
}

.header-info .container {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 1rem;
}

.main-logo__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.main-logo__img {
  width: 3.5rem;
  margin-right: 1rem;
}

.main-logo__img img {
  width: 100%;
  height: auto;
}

.main-logo__name {
  text-transform: uppercase;
  color: var(--o-color-two);
  font-size: 1.1rem;
  font-weight: 700;
}

.main-logo__slogan {
  color: var(--o-color-two);
  font-size: 0.7rem;
}

.header-info__text {
  font-size: 1.1rem;
  font-weight: 600;
}

.main-nav {
  position: relative;
  z-index: 5;
  background-color: var(--o-bg-color-primary);
}

body:not(.home) .main-nav {
  border-bottom: none;
}

.main-nav__navbar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}

.main-nav__item {
  position: relative;
  margin: 0;
  margin-right: 1rem;
  padding: 0;
  list-style: none;
}

.main-nav__item:last-child {
  margin-right: 0;
}

.main-nav__link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem 0;
  transition: color 0.3s linear;
  text-align: center;
  white-space: normal;
  text-transform: uppercase;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--o-primary-color);
}

.main-nav__link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 0;
  height: 3px;
  content: "";
  transition: width 0.4s ease-in-out;
  background-color: var(--o-primary-color);
}

.main-nav__link:hover::after,
.main-nav__link--active::after {
  visibility: visible;
  width: 100%;
  opacity: 1;
}

.main-nav__item--parent > .main-nav__link {
  padding-right: 1.2rem;
}

.main-nav__item--parent > .main-nav__link::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 0;
  width: 12px;
  height: 12px;
  content: "";
  transition: all 0.3s linear;
  transform: translateY(-50%);
  background-image: url("img/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.main-nav__item--parent > .main-nav__link:hover::before,
.main-nav__item--parent > .main-nav__link--active::before {
  transform: translateY(-50%) rotate(180deg);
}

.main-nav__sub {
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 0;
  visibility: hidden;
  width: 280px;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: opacity 0.3s linear;
  opacity: 0;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.main-nav__item--parent:hover > .main-nav__sub {
  visibility: visible;
  opacity: 1;
}

.main-nav__sub > .main-nav__item {
  margin: 0;
  padding: 0;
}

.main-nav__sub > .main-nav__item .main-nav__link {
  justify-content: flex-start;
  height: auto;
  min-height: auto;
  padding: 15px 1rem;
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  color: var(--o-color-two);
  border-bottom: 1px solid var(--o-color-four);
  font-weight: 500;
}

.main-nav__sub > .main-nav__item:last-child .main-nav__link {
  border-bottom: 0;
}

.main-nav__sub > .main-nav__item .main-nav__link:hover,
.main-nav__sub > .main-nav__item .main-nav__link--active {
  color: var(--o-primary-color);
}

.main-nav__sub > .main-nav__item .main-nav__link::after {
  top: 50%;
  left: 0;
  width: 2px;
  height: 0;
  transition: 0.4s;
  transform: translateY(-50%);
}

.main-nav__sub > .main-nav__item .main-nav__link:hover::after,
.main-nav__sub > .main-nav__item .main-nav__link--active::after {
  height: 100%;
}

.main-nav__sub .main-nav__sub {
  top: 0;
  left: 100%;
}

.main-nav__sub .main-nav__item--parent > .main-nav__link {
  padding-right: 44px;
}

.main-nav__sub .main-nav__item--parent > .main-nav__link::before {
  right: 1rem;
  background-image: url("img/icons/arrow-right.svg");
}

.main-nav__sub .main-nav__item--parent > .main-nav__link:hover::before {
  transform: translateY(-50%) rotate(360deg);
}

.main-nav__sub .main-nav__sub > .main-nav__item .main-nav__link {
  border-bottom: 1px solid var(--o-color-four);
}

.main-nav__sub .main-nav__sub > .main-nav__item:last-child .main-nav__link {
  border-bottom: 0;
}

.mobile-nav {
  position: fixed;
  z-index: 40;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  opacity: 0;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav__content {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 290px;
  height: 100%;
  transition: all 0.3s linear;
  transform: translateX(-100%);
  opacity: 0;
  background-color: #fff;
}

.active .mobile-nav__content {
  transform: translateX(0);
  opacity: 1;
}

#responsive-menu-pro-container {
  position: relative !important;
  z-index: 1 !important;
  top: auto !important;
  bottom: auto !important;
  height: 100%;
  padding: 0 !important;
  transition: none !important;
  outline: none !important;
  background: none !important;
}

#responsive-menu-pro-wrapper {
  background: none !important;
  background-color: transparent !important;
}

#responsive-menu-pro {
  width: 100% !important;
  height: 100% !important;
  transition: all 0.3s linear !important;
}

#responsive-menu-pro-wrapper ul {
  display: flex !important;
  flex-direction: column;
}

.menu-item {
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: transparent;
}

.menu-item__link {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center;
  height: auto !important;
  min-height: 3rem !important;
  padding: 15px 20px !important;
  transition: all 0.3s linear;
  text-transform: none !important;
  word-wrap: normal !important;
  word-break: keep-all !important;
  color: var(--o-color-two) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--o-color-four) !important;
  background-color: transparent !important;
  font-size: 1.2rem !important;
  font-weight: 600;
  line-height: 1.2 !important;
}

.mobile-nav .menu-item-has-children > .menu-item__link {
  padding-right: 46px !important;
}

.menu-item:last-child > .menu-item__link {
  border: 0 !important;
}

.menu-item__link:hover,
.menu-item__link--active {
  color: var(--o-primary-color) !important;
}

.menu-item__link::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  visibility: hidden;
  width: 2px;
  height: 0;
  content: "";
  transition: all 0.3s linear;
  transform: translateY(-50%);
  opacity: 0;
  background-color: var(--o-primary-color);
}

.menu-item__link:hover::after,
.menu-item__link--active::after {
  visibility: visible;
  height: 100%;
  opacity: 1;
}

.responsive-menu-pro-subarrow {
  position: absolute !important;
  z-index: 1 !important;
  width: 100% !important;
  height: 100% !important;
  transition: all 0.3s linear;
  border: 0 !important;
  background-color: transparent !important;
  font-size: 0 !important;
  line-height: 1.2 !important;
}

.responsive-menu-pro-subarrow::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 1rem;
  width: 16px;
  height: 16px;
  content: "";
  transition: all 0.3s linear;
  transform: translateY(-50%);
  background-image: url("img/icons/arrow-right_color.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.menu-item__link:hover > .responsive-menu-pro-subarrow::before {
  transform: translateY(-50%) rotate(360deg);
}

.responsive-menu-pro-back {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center;
  order: -1;
  height: auto !important;
  min-height: 3rem !important;
  padding: 15px 20px !important;
  padding-left: 3rem !important;
  transition: all 0.3s linear;
  text-transform: none !important;
  word-wrap: normal !important;
  word-break: keep-all !important;
  color: var(--o-color-two) !important;
  border: 0 !important;
  border-bottom: 1px solid var(--o-color-four) !important;
  background-color: transparent !important;
  font-size: 1.2rem !important;
  font-weight: 500;
  line-height: 1.2 !important;
}

.responsive-menu-pro-back:hover {
  color: var(--o-primary-color) !important;
}

.responsive-menu-pro-back::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  content: "";
  transition: all 0.3s linear;
  transform: translateY(-50%);
  background-image: url("img/icons/back.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.responsive-menu-pro-back:hover::before {
  transform: translateY(-50%) rotate(360deg);
}

.responsive-menu-pro-back::after {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  visibility: hidden;
  width: 2px;
  height: 0;
  content: "";
  transition: all 0.3s linear;
  transform: translateY(-50%);
  opacity: 0;
  background-color: var(--o-primary-color);
}

.responsive-menu-pro-back:hover::after {
  visibility: visible;
  height: 100%;
  opacity: 1;
}

.menu-item__link--parrent {
  font-weight: 700 !important;
}

.responsive-menu-pro-container--active .menu-item {
  display: none !important;
}

.responsive-menu-pro-container--active .responsive-menu-pro-subarrow-active,
.responsive-menu-pro-container--active .responsive-menu-pro-subarrow-active .menu-item {
  display: flex !important;
}

.responsive-menu-pro-submenu .menu-item__link {
  font-weight: 400;
}

.menu-toggler {
  z-index: 2;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s linear;
  border: 0;
  border-radius: 0;
  background-color: var(--o-primary-color);
  box-shadow: var(--o-box-shadow);
}

.menu-toggler:hover {
  background-color: var(--o-bg-color-primary);
}

.menu-toggler::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.3s linear;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% auto;
}

.menu-toggler--main {
  position: relative;
  display: none;
}

.menu-toggler--main::before {
  background-image: url("img/icons/menu.svg");
}

.menu-toggler--close {
  position: absolute;
  top: 1rem;
  right: -2.5rem;
}

.menu-toggler--close::before {
  background-image: url("img/icons/close.svg");
}

.responsive-menu-pro-button {
  display: none !important;
}

#content.site-content,
.section {
  overflow: hidden;
  padding: 4rem 0;
}

.home #content.site-content {
  padding: 0;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 0;
}

.site-content .content-area {
  padding: 0;
}

.section--inner-slide {
  position: relative;
  z-index: 1;
  padding: 2rem 0;
  text-align: center;
  background-color: var(--o-color-five);
}

.section--inner-slide::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("img/bg/pattern.png");
  background-repeat: repeat;
  background-position: center center;
  background-size: auto;
}

.page-title {
  text-align: center;
}

.page-title__head {
  position: relative;
  display: inline-block;
  margin: 1rem;
  padding-top: 0;
}

.inner-slide__title h1,
.page-title__head--white {
  position: relative;
}

.inner-slide__title h1:last-child {
  margin-bottom: 0;
}

.search-form {
  position: relative;
  max-width: 480px;
  margin: 0 auto 1rem;
  padding: 2rem;
  text-align: left;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.search-form__row {
  display: flex;
}

.btn--search-form {
  min-width: 2.5rem;
  max-width: 2.5rem;
  padding: 0;
  border-radius: 0;
  font-size: 0;
}

.btn--search-form::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("img/icons/search.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

.error-404 article {
  margin-bottom: 20px !important;
  border-bottom: 1px solid var(--o-color-four);
}

.error-404 h2.entry-title {
  padding: 0;
  text-align: center;
  text-transform: none;
  background-image: none;
  font-size: 1.5rem;
  font-weight: 500;
}

.error-404 h2.entry-title::before {
  display: none;
}

.error-404 h2.entry-title a {
  color: var(--o-color-two);
}

.error-404 h2.entry-title a:hover {
  color: var(--o-primary-color);
}

.error-404 img,
.error-404 .entry-summary {
  display: none;
}

.error-404 .page-content {
  position: relative;
  z-index: 1;
  padding-top: 22%;
  text-align: center;
}

.error-404 .page-content::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 60%;
  height: 100%;
  content: "";
  transform: translateX(-50%);
  background-color: transparent;
  background-image: url("img/404.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous,
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: none;
  width: auto;
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  overflow: visible;
  margin: 0;
}

.nav-links {
  display: flex;
  justify-content: center;
}

.site-main nav.navigation .nav-previous,
.site-main nav.navigation .nav-next {
  float: none;
  width: auto;
  margin-bottom: 1rem;
  padding: 0 10px;
  text-align: center;
}

.site-main nav.navigation .nav-previous a,
.site-main nav.navigation .nav-next a {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem !important;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: 0;
  border-radius: 50% !important;
  background-color: var(--o-primary-color);
  box-shadow: none;
  font-size: 0;
}

.site-main nav.navigation .nav-previous a:hover,
.site-main nav.navigation .nav-next a:hover {
  background-color: var(--o-color-two);
}

.site-main nav.navigation .nav-previous a::before,
.site-main nav.navigation .nav-next a::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

.site-main nav.navigation .nav-previous a::before {
  background-image: url("img/icons/arrow-left.svg");
}

.site-main nav.navigation .nav-next a::before {
  background-image: url("img/icons/arrow-right.svg");
}

.up-button {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 2.5rem;
  max-width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  opacity: 0.7;
  border: 0 !important;
  border-radius: 0;
  background-color: var(--o-primary-color);
  box-shadow: var(--o-box-shadow);
}

.up-button:hover {
  opacity: 1 !important;
}

.up-button::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url("img/icons/up-button.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

.link-collapsed {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 1rem;
  padding-top: 5px;
  padding-left: 5px;
  cursor: pointer;
}

.link-collapsed::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
}

.link-collapsed__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 15px 1rem;
  padding-right: 3.5rem;
  color: var(--o-color-two);
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
  font-size: 1.2rem;
  font-weight: 600;
}

.link-collapsed__btn::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  content: "";
  transition: all 0.3s linear;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #fff;
  background-image: url("img/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
}

.link-collapsed[aria-expanded="true"] .link-collapsed__btn::before {
  transform: translateY(-50%) rotate(180deg);
  background-color: var(--o-primary-color);
  background-image: url("img/icons/arrow-down-white.svg");
}

.table-collapse {
  padding-bottom: 1rem;
}

.table-collapse--last {
  padding: 0;
}

.table-responsive {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  margin-bottom: 1rem;
  box-shadow: var(--o-box-shadow);
}

table,
.table-content {
  width: 100%;
  margin-bottom: 1rem;
  border: 0;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.table-responsive table {
  margin: 0;
  box-shadow: none;
}

.table-content tr {
  border-bottom: 1px solid var(--o-color-four);
}

.table-content tr:first-child {
  background-color: var(--o-primary-color);
}

.table-content tr:first-child,
.table-content tr:last-child {
  border: 0;
}

.table-content th,
.table-content td {
  padding: 15px 1rem;
  text-align: left;
  border: 0;
}

.table-content tr:first-child th,
.table-content tr:first-child td {
  color: #fff;
  font-weight: 600;
}

.table-caption {
  padding: 15px 1rem;
  caption-side: top;
  text-align: center;
  color: #fff;
  background-color: var(--o-primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.asterisk {
  color: var(--o-primary-color);
}

.header-contacts {
  position: relative;
  z-index: 1;
}

.header-contacts__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;

  gap: 1.5rem;
}

.header-contacts__social {
  order: -1;
}

.contacts-link {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1.5rem;
  text-align: left;
  white-space: nowrap;
}

.contacts-link--social {
  padding: 0;
}

.contacts-link:hover {
  color: var(--o-color-two);
}

.contacts-link--adress,
.contacts-link--time {
  white-space: normal;
}

.contacts-link::before {
  position: absolute;
  z-index: -1;
  bottom: 0.3rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contacts-link--adress::before {
  background-image: url("img/icons/contacts/address.svg");
}

address {
  margin-bottom: 0;
}

.contacts-link--phone::before {
  background-image: url("img/icons/contacts/phone.svg");
}

.contacts-link--email::before {
  background-image: url("img/icons/contacts/email.svg");
}

.contacts-link__name,
.contacts-link__number,
.contacts-link__text {
  color: var(--o-color-two);
}

.page-contacts__list .contacts-link__name {
  color: #2c2c25;
}

.page-contacts__list .contacts-link__text,
.page-contacts__list .contacts-link__number {
  color: #000;
}


.page-contacts__row {
  flex-direction: column;
}

.page-contacts__content {
  align-items: center;
  order: -1;
  width: 100%;
}

.page-contacts__list {
  align-items: normal;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.page-contacts .contacts-link {
  justify-content: flex-start;
  height: 100%;
  padding: 1rem;
  padding-top: 2.5rem;
  text-align: center;
  border: 1px solid var(--o-border-color);
}

.page-contacts .contacts-link::before,
.page-contacts .contacts-link::after {
  left: 50%;
  transform: translateX(-50%);
}

.page-contacts .contacts-link::before {
  top: 1rem;
}

.page-contacts .contacts-link--social {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.page-contacts__btn {
  text-align: center;
}

.contacts-link__name {
  font-size: 0.7rem;
  font-weight: 300;
}

.contacts-link__number {
  font-size: 1rem;
  font-weight: 600;
}

.contacts-link__number a,
.contacts-link__text a {
  color: inherit;
}

.contacts-page {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.contacts-page__link {
  position: relative;
  margin-bottom: 10px;
  padding-left: 2rem;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
}

.contacts-page__link::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  transition: 0.3s all linear;
  transform: translateY(-50%);
  background-image: url("./img/icons/phone-link.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
}

.header-contacts .contacts-link__text {
  font-size: 0.9rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  background-color: var(--o-bg-color-primary);
}

.footer-top {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-top::before {
  position: absolute;
  display: block;
  content: "";
  opacity: 0.4;
  background-image: url("img/bg/pattern-2.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: auto;

  inset: 0;
}

.footer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.footer-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;

  gap: 2rem;
}

.footer-contacts {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;

  gap: 2rem;
}

.footer-contacts__item {
  padding: 0;
  list-style: none;
}

.footer-contacts .contacts-link__name,
.footer-contacts .contacts-link__number,
.footer-contacts .contacts-link__text {
  color: #fff !important;
}

.footer-list__item--right {
  width: 65%;
}

.footer-list__title {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
}

.footer-form__title {
  font-size: 2rem;
}

.footer-form {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding: 2rem;
  padding-bottom: 1rem;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.footer-form__outro {
  text-align: center;
}

.appointment-form__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

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

.appointment-form__item--col-1 {
  width: 100%;
}

.appointment-form__item--col-2 {
  width: calc(50% - 10px);
}

.appointment-form__item--price {
  display: none;
}

.footer-form .appointment-form__privacy {
  justify-content: flex-start;
  text-align: left;
}

.footer-form .btn {
  margin-bottom: 1rem;
}

.footer-bottom {
  padding: 1rem 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.1);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom__center {
  padding: 0 1rem;
}

.footer-bottom__right {
  display: flex;
  align-items: center;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.section--portfolio {
  background-color: var(--o-color-five);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;

  gap: 1rem;
}

.gallery:last-child {
  margin-bottom: 0;
}

.gallery__item {
  width: calc((100% - 1rem*(var(--items_in_row) - 1)) / var(--items_in_row));
  list-style: none;

  --items_in_row: 4;
}

.gallery__content {
  position: relative;
  z-index: 1;
  display: block;
  padding: 5px;
  border-radius: 0;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);

  aspect-ratio: 4/3;
}

.gallery__content::before {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  visibility: hidden;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  transition: all 0.3s linear;
  transform: translate(-50%, -75%);
  opacity: 0;
  background-color: var(--o-primary-color);
  background-image: url("img/icons/plus.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;
  box-shadow: var(--o-box-shadow);
}

.gallery__content:hover::before {
  visibility: visible;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.gallery__content::after {
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 5px;
  visibility: hidden;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: "";
  transition: all 0.3s linear;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.gallery__content:hover::after {
  visibility: visible;
  opacity: 1;
}

.gallery__content > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.modal {
  padding: 0 !important;
}

.modal-open .modal {
  display: flex !important;
}

.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-backdrop.show {
  opacity: 1;
}

.ekko-lightbox .modal-dialog {
  min-width: 280px;
  margin: 1rem;
}

.img-fluid {
  width: auto !important;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.ekko-lightbox .modal-body {
  padding: 0;
}

.ekko-lightbox .modal-content {
  border: 0;
  border-radius: 0;
  box-shadow: var(--o-box-shadow);
}

.ekko-lightbox-nav-overlay a {
  position: relative;
  z-index: 1;
  transition: all 0.3s linear;
  opacity: 0;
  font-size: 0;
}

.ekko-lightbox-nav-overlay a:hover {
  opacity: 1;
}

.ekko-lightbox-nav-overlay a::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  transform: translateY(-50%);
  background-color: var(--o-primary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;
}

.ekko-lightbox-nav-overlay a:first-child::before {
  left: 0;
  background-image: url("img/icons/arrow-left_white.svg");
}

.ekko-lightbox-nav-overlay a:last-child::before {
  right: 0;
  background-image: url("img/icons/arrow-right_white.svg");
}

.social {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.social__item {
  margin: 0;
  padding: 0 10px;
  padding-right: 10px;
  list-style: none;
}

.social__link {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: all 0.3s linear;
  opacity: 1 !important;
  background-color: var(--o-primary-color);
  box-shadow: var(--o-box-shadow);
}

.social__link:hover {
  background-color: #44576b;
}

.social__link::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

.social__link--vk::before {
  background-image: url("./img/social/vk.svg");
}

.social__link--instagram::before {
  background-image: url("./img/social/instagram.svg");
}

.social__link--facebook::before {
  background-image: url("./img/social/facebook.svg");
}

.social__link--twitter::before {
  background-image: url("./img/social/twitter.svg");
}

.social--header .social__item {
  padding: 0;
  padding-right: 10px;
}

.social--header .social__item:last-child {
  padding: 0;
}

.social--header .social__link,
.social--footer .social__link {
  background-color: rgba(255, 255, 255, 0.1);
}

.social--header .social__link {
  min-width: 1.5rem;
  max-width: 1.5rem;
  height: 1.5rem;
}

.social--header .social__link:hover,
.social--footer .social__link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.social--header .social__link::before {
  background-size: 16px auto;
}

.header-top {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}

.header-top::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.header-top__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

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

.header-top__item:first-child {
  padding-right: 10px;
}

.header-top__item:last-child {
  padding-left: 10px;
}

.header-top .contacts-link {
  min-height: 1rem;
  padding-left: 1.5rem;
}

.header-top .contacts-link,
.header-top .contacts-link__text {
  color: #fff !important;
}

.header-top .contacts-link::before {
  width: 1rem;
  height: 1rem;
  border-radius: 0;
  background-color: transparent !important;
  background-size: contain;
}

.main-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.main-slide .owl-carousel .owl-item {
  width: 100%;
  height: 100%;
}

.main-slide__bg {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  align-items: center;
  min-height: 35rem;
}

.main-slide__bg::before {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main-slide__bg--one::before {
  background-image: url("img/slide/bg-1.jpg");
}

.main-slide__bg--two::before {
  background-image: url("img/slide/bg-2.jpg");
}

.main-slide__bg--three::before {
  background-image: url("img/slide/bg-3.jpg");
}

.main-slide__bg--four::before {
  background-image: url("img/slide/bg-4.jpg");
}

.main-slide__bg::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  content: "";
  background-color: var(--o-color-five);
  background-image: url("img/bg/pattern.png");
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
}

.main-slide__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.main-slide__info {
  position: relative;
  z-index: 2;
  width: 50%;
}

.main-slide__title {
  margin-bottom: 1rem;
  color: var(--o-color-two);
  font-size: 3rem;
  font-weight: 600;
}

.main-slide__text {
  font-size: 1.2rem;
}

.main-slide__img {
  position: relative;
  z-index: 1;
  width: 45%;
}

.main-slide__img::before {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
}

.main-slide__img::after {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 75%;
  height: 75%;
  content: "";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(rgba(70, 118, 7, 0.7), rgba(70, 118, 7, 0.7)), url("./img/bg/forest.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto, cover;
}

.main-slide__img img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.main-slide__btn {
  position: relative;
  z-index: 2;
}

.main-slide__controls {
  position: absolute;
  z-index: 1;
  bottom: 6rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  padding: 0 1rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.main-slide__nav {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.main-slide__arrow span {
  display: none !important;
}

.main-slide .main-slide__content button.main-slide__arrow {
  position: relative;
  z-index: 1;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  transition: all 0.3s linear;
  pointer-events: all;
  border: none;
  border-radius: 0;
  background-color: var(--o-primary-color);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 35% auto;
}

.main-slide__arrow--prev {
  margin-right: 1rem;
}

.main-slide__arrow::before {
  position: absolute;
  display: block;
  content: "";
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;

  inset: 0;
}

.main-slide__arrow--prev::before {
  background-image: url("img/icons/arrow-left_white.svg");
}

.main-slide__arrow--next::before {
  background-image: url("img/icons/arrow-right_white.svg");
}

.main-slide__arrow:hover {
  opacity: 0.8;
}

.section--features {
  margin-top: -2rem;
  padding: 0;
  background-color: var(--o-color-five);
}

.features {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: div;
}

.features__item {
  width: 25%;
}

.features__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  box-shadow: var(--o-box-shadow);
}

.features__content::after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.features__item:nth-child(even) .features__content::after {
  background-color: var(--o-primary-color);
}

.features__item:nth-child(odd) .features__content::after {
  background-color: var(--o-bg-color-primary);
}

.features__content::before {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: 2rem;
  content: counter(div, decimal-leading-zero);
  counter-increment: div;
  color: rgba(255, 255, 255, 0.2);
  font-size: 3rem;
  font-weight: 600;
  line-height: 3rem;
}

.features__icon {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 2rem;
}

.features__icon::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.features__icon--one::before {
  background-image: url("img/features/1.svg");
}

.features__icon--two::before {
  background-image: url("img/features/2.svg");
}

.features__icon--three::before {
  background-image: url("img/features/3.svg");
}

.features__icon--four::before {
  background-image: url("img/features/4.svg");
}

.features__icon::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  opacity: 0.1;
  background-image: url("img/icons/feature-bg.svg");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

.features__title,
.features__text {
  color: #fff;
}

.features__title {
  font-size: 1.1rem;
}

.features__text {
  width: 100%;
  margin: 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: div;

  gap: 1rem;
}

.service-list__item {
  width: calc((100% - 1rem*(var(--items_in_row) - 1)) / var(--items_in_row));
  list-style: none;

  --items_in_row: 3;
}

.service-list__content {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  height: 100%;
  padding-right: 2.5rem;
  box-shadow: var(--o-box-shadow);
}

.service-list__content::before,
.service-list__content::after {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 100%;
  content: "";
  background-color: var(--o-bg-color-primary);
}

.service-list__content::before {
  content: counter(div, decimal-leading-zero);
  counter-increment: div;
  color: var(--o-primary-color);
  font-size: 1.5rem;
  font-weight: 600;

  writing-mode: vertical-rl;
}

.service-list__content::after {
  opacity: 0.4;
  background-image: url("img/bg/pattern-2.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: cover;
}


.service-list__img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.service-list__info {
  padding: 1rem;
}

.service-list__title {
  margin: 0;
  color: var(--o-color-two);
  font-size: 1.1rem;
}

.service-list__btn {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 100%;
  padding: 0;
  color: var(--o-color-three);
  border: none;
  border-radius: 0;
  background-color: var(--o-primary-color);
  box-shadow: none;
  line-height: 1;

  writing-mode: vertical-rl;
}

.service-list__btn::after {
  display: none;
}

.service-list__content:hover .service-list__btn {
  left: calc(100% - 2.5rem);
}

.product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.product__item {
  width: 31%;
  margin: 1%;
  margin-bottom: 1rem;
  list-style: none;
}

.product__content {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  cursor: pointer;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.product__row {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product__img {
  margin-bottom: 1rem;
}

.product .gallery__content {
  pointer-events: none;
}

.product__img .gallery__content {
  padding: 0;
  box-shadow: none;
}

.product__img .gallery__content::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.product .product__title,
.product .product__price {
  text-align: center;
}

.product__title span {
  display: block;
}

.product__type {
  color: var(--o-primary-color);
  font-size: 1.2rem;
  font-weight: 500;
}

.product__name {
  text-transform: uppercase;
  font-size: 1.4rem;
}

.characteristic {
  margin: 0;
  margin-bottom: 1rem;
  padding: 0;
}

.characteristic__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  padding: 0;
  list-style: none;
}

.characteristic__item:last-child {
  margin: 0;
}

.characteristic__name {
  font-size: 0.9rem;
}

.characteristic__line {
  flex: auto;
  margin: 0 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.characteristic__name--value {
  text-align: right;
  font-weight: 600;
}

.product .product-modal,
.modal-form--product .product-main {
  display: none;
}

.product__price {
  margin-top: auto;
}

.product__number {
  display: block;
  color: var(--o-primary-color);
  font-size: 1.5rem;
  font-weight: 600;
}

.product__btn .btn,
.appointment-form__form .btn,
.appointment-form__modal .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: none;
}


.modal-form--product .modal-form__row {
  display: flex;
  flex-wrap: wrap;
}

.modal-form--product .product__img {
  width: 55%;
  margin-bottom: 2rem;
}

.modal-form--product .product__info {
  display: block;
  width: 45%;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.modal-form--product .product__description {
  width: 100%;
}

.modal-form--product .gallery__content {
  pointer-events: auto;
}

.modal-form--product .product__type {
  font-size: 1.2rem;
}

.modal-form--product .product__name {
  font-size: 1.5rem;
}

.modal-form--product .characteristic__name {
  font-size: 1rem;
}

.modal-form--product .product__price {
  margin-top: 0;
  font-size: 1.2rem;
}

.modal-form--product .product__number {
  font-size: 2rem;
}

.modal-form--product .btn {
  background-color: transparent !important;
}

.modal-form--product .btn::before {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.modal-form--product .btn::after {
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.3s linear;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.1);
}

.modal-form--product .btn:hover::after {
  visibility: visible;
  opacity: 1;
}

ul.page-numbers,
.page-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 0;
}

.page-numbers li {
  margin-bottom: 1rem;
  padding: 0 10px;
  list-style: none;
}

.page-links a.post-page-numbers,
.page-links span.post-page-numbers {
  margin: 0 10px 1rem;
  font-size: 1rem !important;
}

a.page-numbers,
span.page-numbers.current,
.page-links a.post-page-numbers,
.page-links span.post-page-numbers {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  transition: all 0.3s linear;
  color: var(--o-color-two);
  border: 0;
  border-radius: 0;
  background-color: #fff;
  box-shadow: inset 0 0 0 1px var(--o-color-four), 0 5px 15px 0 transparent;
  font-size: 1rem !important;
  font-weight: 600;
}

a.page-numbers::before,
span.page-numbers.current::before,
.page-links a.post-page-numbers::before,
.page-links span.post-page-numbers::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 0.3s linear;
  opacity: 0;
}

a.page-numbers:hover,
span.page-numbers.current,
.page-links a.post-page-numbers:hover,
.page-links span.post-page-numbers.current {
  box-shadow: inset 0 0 0 1px transparent, 0 5px 15px 0 rgba(0, 0, 0, 0.1);
}

a.page-numbers:hover::before,
span.page-numbers.current::before,
.page-links a.post-page-numbers:hover::before,
.page-links span.post-page-numbers::before {
  visibility: visible;
  opacity: 1;
}

a.prev,
a.next,
.page-links a .page-links__prev,
.page-links a .page-links__next {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 2rem;
  max-width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: all 0.3s linear;
  border-radius: 0;
  background-color: var(--o-color-three);
  box-shadow: var(--o-box-shadow);
  font-size: 0;
}

a.prev:hover,
a.next:hover,
.page-links a .page-links__prev:hover,
.page-links a .page-links__next:hover {
  background-color: var(--o-color-three);
}

a.prev::before,
a.next::before,
.page-links a .page-links__prev::before,
.page-links a .page-links__next::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
}

a.prev::before,
.page-links a .page-links__prev::before {
  background-image: url("img/icons/arrow-left.svg");
}

a.next::before,
.page-links a .page-links__next::before {
  background-image: url("img/icons/arrow-right.svg");
}

.page-numbers.dots {
  font-size: 1rem;
}

.label-list {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0;
}

.label-list__item {
  margin-bottom: 5px;
  padding: 0;
  list-style: none;
}

.label-list__item:last-child {
  margin: 0;
}

.label-list__content {
  position: relative;
  z-index: 1;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 2px;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50%;
  box-shadow: var(--o-box-shadow);
  font-size: 0.8rem;
  font-weight: 600;
}

.label-list__content--new {
  background-color: var(--o-primary-color);
}

.label-list__content--hit {
  background-color: var(--o-primary-color);
}

.modal-form--product .label-list {
  top: 2rem;
  left: 2rem;
}

.modal-form--product .label-list__content {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
}

.btn-center {
  margin-bottom: 1rem;
  text-align: center;
}

.site-header--fixed .main-nav {
  position: fixed;
  z-index: 30;
  top: -100%;
  width: 100%;
  min-width: 320px;
  max-width: 1920px;
  transition: all 0.3s linear;
  box-shadow: none;
}

.scroll-up .main-nav {
  top: 0;
  transform: translateY(0);
  box-shadow: var(--o-box-shadow);
}

.scroll-down .main-nav {
  top: 0;
  transform: translateY(-100%);
}

.section--about {
  background-color: var(--o-color-five);
}

.page-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.page-item:last-child {
  margin-bottom: 0;
}

.page-item__content {
  position: relative;
  z-index: 1;
  width: calc(55% - 2rem);
}

.page-item__info {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 2rem;
  box-shadow: var(--o-box-shadow);
}

.page-item__title {
  font-size: 2rem;
}

.page-item__pic {
  position: relative;
  z-index: 1;
  width: 45%;
  height: 30rem;
}

.page-item__img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.page-item__custom-badge {
  position: absolute;
  bottom: 0;
  left: 0;
}

.custom-badge {
  padding: 2rem;
  text-align: center;
  color: #fff;
  border-top: 10px solid var(--o-color-three);
  border-right: 10px solid var(--o-color-three);
  background-color: var(--o-primary-color);
  background-image: url("img/bg/pattern-2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}

.custom-badge__title {
  margin-bottom: 1rem;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
}

.custom-badge__text {
  font-size: 1.2rem;
}

.section--stages {
  position: relative;
  z-index: 1;
}

.section--stages h2 {
  color: #fff;
}

.section--stages::before,
.section--stages::after {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  height: 40%;
  content: "";
}

.section--stages::before {
  background-color: var(--o-bg-color-primary);
}

.section--stages::after {
  opacity: 0.4;
  background-image: url("img/bg/pattern-2.png");
  background-repeat: repeat;
  background-position: top center;
  background-size: auto;
}

.stages {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: div;

  gap: 1rem;
}

.stages__item {
  position: relative;
  z-index: 1;
  width: calc((100% - 1rem*(var(--items_in_row) - 1)) / var(--items_in_row));
  list-style: none;

  --items_in_row: 3;
}


.stages__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  transition: 0.3s;
  border: 1px solid var(--o-color-four);
  background-color: var(--o-color-three);
}

.stages__content:hover {
  box-shadow: var(--o-box-shadow);
}

.stages__content:hover::before {
  opacity: 1;

  filter: none;
}

.stages__content::before {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: block;
  width: 2rem;
  height: 2rem;
  content: "";
  transition: 0.3s;
  opacity: 0.1;
  background-image: url("img/icons/diagonal-arrow.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;

  filter: grayscale(1);
}

.stages__icon {
  position: relative;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  transition: 0.6s;
}

.stages__content:hover .stages__icon {
  transform: rotateY(360deg);
}

.stages__icon::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.stages__icon--one::before {
  background-image: url("img/stages/1.svg");
}

.stages__icon--two::before {
  background-image: url("img/stages/2.svg");
}

.stages__icon--three::before {
  background-image: url("img/stages/3.svg");
}

.stages__icon--four::before {
  background-image: url("img/stages/4.svg");
}

.stages__icon--five::before {
  background-image: url("img/stages/5.svg");
}

.stages__icon--six::before {
  background-image: url("img/stages/6.svg");
}

.stages__title {
  margin-bottom: 1rem;
  color: var(--o-color-two);
  font-size: 1rem;
  font-weight: 600;
}

.stages__text {
  margin: 0;
}

.feedback-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.feedback-row__controls {
  position: absolute;
  z-index: 1;
  top: 2rem;
  right: 1rem;
  display: flex;
}

.feedback-row__arrow {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 3rem;
  height: 3rem;
  padding: 0;
  transition: 0.3s;
  border: 1px solid var(--o-color-two);
  border-radius: 0;
  background-color: var(--o-color-three);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;
}

.feedback-row__arrow--prev {
  margin-right: 1rem;
}

.feedback-row__arrow::before,
.feedback-row__arrow::after {
  position: absolute;
  display: block;
  content: "";
  transition: 0.3s;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 40% auto;

  inset: 0;
}

.feedback-row__arrow::after {
  top: -5rem;
}

.feedback-row__arrow--prev::before {
  background-image: url("img/icons/arrow-left.svg");
}

.feedback-row__arrow--next::before {
  background-image: url("img/icons/arrow-right.svg");
}

.feedback-row__arrow--prev::after {
  background-image: url("img/icons/arrow-left_color.svg");
}

.feedback-row__arrow--next::after {
  background-image: url("img/icons/arrow-right_color.svg");
}

.feedback-row__arrow--prev:hover::before,
.feedback-row__arrow--next:hover::before {
  bottom: -5rem;
}

.feedback-row__arrow--prev:hover::after,
.feedback-row__arrow--next:hover::after {
  top: 0;
}


.feedback-row__arrow:hover {
  border-color: var(--o-primary-color);
}

.feedback-slide__item {
  height: auto;
  padding: 1rem;
}

.feedback {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.feedback__item {
  width: 50%;
  margin-bottom: 1rem;
  padding: 0 10px;
  list-style: none;
}

.feedback__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 20px 0;
}

.feedback__content::before {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 1rem;
  width: 3rem;
  height: 49px;
  content: "";
  background-image: url("img/icons/quote.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.feedback__info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.feedback__time {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  text-align: center;
  color: #fff;
  background-color: var(--o-bg-color-primary);
  font-size: 0.8rem;
}

.feedback__time::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}

.feedback__name {
  font-size: 1.2rem;
}

.feedback-slide__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.feedback-slide__bullet {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 1rem;
  padding: 0 10px;
  list-style: none;
  cursor: none;
  opacity: 1;
  border-radius: 0;
  background-color: transparent;
}

.feedback-slide__nav {
  position: relative;
  z-index: 1;
  display: block;
  min-width: 1rem;
  max-width: 1rem;
  height: 5px;
  cursor: pointer;
  transition: all 0.3s linear;
  opacity: 1;
}

.swiper-pagination-bullet-active .feedback-slide__nav {
  min-width: 2rem;
  max-width: 2rem;
}

.feedback-slide__nav::before,
.feedback-slide__nav::after {
  position: absolute;
  top: 0;
  height: 100%;
  content: "";
  transition: all 0.3s linear;
}

.feedback-slide__nav::before {
  z-index: -1;
  left: 50%;
  visibility: hidden;
  width: 0;
  transform: translateX(-50%);
  opacity: 0;
}

.feedback-slide__nav::after {
  z-index: -2;
  right: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.feedback-slide__nav:hover::after,
.swiper-pagination-bullet-active .feedback-slide__nav::after {
  visibility: hidden;
  width: 0;
  opacity: 0;
}

.feedback-slide__nav:hover::before,
.swiper-pagination-bullet-active .feedback-slide__nav::before {
  visibility: visible;
  width: 100%;
  opacity: 1;
}

.feedback-slide__btn {
  margin-bottom: 1rem;
  text-align: center;
}

.page-contacts__row {
  background-color: #fff;
  box-shadow: var(--o-box-shadow);
}

.page-contacts__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
}

.page-contacts__list {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
}

.page-contacts__item {
  width: 33%;
  margin-bottom: 1rem;
  padding: 0 10px;
  list-style: none;
}

.page-contacts__item--address {
  width: 100%;
}

.map {
  width: 55%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.intro-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 1.5rem;
  padding: 0;
  list-style: none;
}

.intro-list__item {
  overflow: hidden;
  width: 100%;
  margin: 0;
  margin-bottom: 1.5rem;
  box-shadow: var(--o-box-shadow);
}

.intro-list__item:last-child {
  margin-bottom: 0;
}

.intro-list__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
}

.intro-list__item:nth-child(even) .intro-list__content {
  flex-direction: row-reverse;
}

.intro-list__pic {
  position: relative;
  display: flex;
  width: 40%;
}

.intro-list__img {
  width: 100%;
  height: 100%;

  object-position: center;
  object-fit: cover;
}

.intro-list__info {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  padding: 2rem;
  padding-bottom: 1rem;
  background-color: #fff;
}

.intro-list__title {
  text-align: left;
  color: var(--o-primary-color);
  font-size: 2rem;
}

.intro-list__price {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: block;
  padding: 15px 1rem;
  color: #fff;
  background-color: var(--o-primary-color);
  box-shadow: var(--o-box-shadow);
  font-size: 1.2rem;
}

.intro-list__item:nth-child(even) .intro-list__price {
  right: 1rem;
  left: auto;
}

.intro-list__cost {
  font-size: 2.5rem;
  font-weight: 600;
}

.intro-list__star {
  color: var(--o-primary-color);
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;

  gap: 1rem;
}

.team-list__item {
  width: calc((100% - 1rem*(var(--items_in_row) - 1)) / var(--items_in_row));
  box-shadow: var(--o-box-shadow);

  --items_in_row: 4;
}

.team-list__pic {
  display: block;
  overflow: hidden;
}

.team-list__img {
  width: 100%;
  height: 100%;
  transition: 0.3s;

  object-fit: cover;
  filter: grayscale(1);
}

.team-list__pic:hover .team-list__img {
  transform: scale(1.1);

  filter: grayscale(0);
}

.team-list__info {
  padding: 1rem;
}

.team-list__name {
  margin-bottom: 0.5rem;
  color: var(--o-color-two);
  font-size: 1.2rem;
  font-weight: 600;
}

.team-list__experience {
  color: var(--o-primary-color);
  font-size: 0.8rem;
}

.icon {
  display: block;
  width: var(--size);
  height: var(--size);
  background-color: var(--o-primary-color);

  --size: 0.9rem;
  --url: "adress";
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-image: var(--url);
          mask-image: var(--url);
  -webkit-mask-size: contain;
          mask-size: contain;
}


.icon--whatsapp {
  --url: url("img/icons/whatsapp.svg");
}

.social-list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;

  gap: 1rem;
}

.social-list__content--whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #43d854;
}

.social-list__content:hover {
  opacity: 0.8;
}

.social-list__content .icon {
  background-color: #fff;
}

.flex-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;

  --gap: 2rem;
  --count: 3;
  gap: var(--gap);
}

.flex-list__item {
  width: calc((100% + var(--gap)) / var(--count) - var(--gap));
}

.video-gallery__item {
  padding: 5px;
  border: 1px solid var(--o-border-color);
}

.archive article {
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: center;
  text-wrap: balance;
  border: 1px solid var(--o-border-color);
}

.archive article:last-child {
  margin-bottom: 0;
}

.archive article .posted-on {
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
}

.archive article h2 {
  font-size: 1.5rem;
}

.single-post .entry-header {
  display: none;
}

.single-post .post.hentry {
  margin-bottom: 0;
}

@media screen and (max-width: 10000px) {
  .mobile-nav #responsive-menu-pro-container #responsive-menu-pro ul.responsive-menu-pro-submenu {
    display: none !important;
  }

  .mobile-nav #responsive-menu-pro-container #responsive-menu-pro ul.responsive-menu-pro-submenu.responsive-menu-pro-subarrow-active,
  .mobile-nav #responsive-menu-pro-container #responsive-menu-pro .responsive-menu-pro-subarrow-active > .responsive-menu-pro-back {
    display: flex !important;
  }

  .mobile-nav #responsive-menu-pro-container .responsive-menu-pro-submenu li.responsive-menu-pro-item a {
    padding: 15px 20px !important;
  }

  .mobile-nav #responsive-menu-pro-container .responsive-menu-pro-submenu li.responsive-menu-pro-item-has-children a {
    padding-right: 46px !important;
  }
}

@media (max-width: 1199px) {
  html {
    font-size: 17px;
  }

  .styled-list li {
    padding-top: 4px;
  }

  .footer-contacts .contacts-link--adress {
    white-space: unset;
  }
}

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

  h1,
  h2 {
    text-align: center;
  }

  .text-left,
  .text-right {
    text-align: center !important;
  }

  .gallery__item {
    --items_in_row: 2;
  }

  .video-gallery {
    --count: 2;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .container {
    flex-direction: column;
  }

  .footer-bottom__left,
  .footer-bottom__center {
    margin-bottom: 1rem;
  }

  .footer-bottom__center {
    padding: 0;
  }

  .footer-bottom__right {
    flex-direction: column;
  }

  .page-item__btn {
    text-align: center;
  }

  .orvin {
    margin: 0;
    margin-bottom: 1rem;
  }

  .mobile-nav {
    display: block;
  }

  .header-info {
    border: 0;
  }

  .header-info,
  .header-info .container {
    padding: 0;
  }

  .header-info .container {
    align-items: center;
    flex-direction: column;

    gap: 0;
  }

  .main-logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 1rem 0 0.5rem;
  }

  .header-info__text {
    padding-bottom: 1rem;
  }

  .site-header--fixed .header-contacts {
    position: fixed;
    z-index: 30;
    top: -100%;
    width: 100%;
    min-width: 320px;
    max-width: 1920px;
    transition: all 0.3s linear;
    transform: translateY(0);
  }

  .scroll-up .header-contacts {
    top: 0;
    box-shadow: var(--o-box-shadow);
  }

  .scroll-down .header-contacts {
    top: 0;
    transform: translateY(-100%);
  }

  .header-contacts {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    background-color: var(--o-secondary-color);
  }

  .header-contacts::before {
    position: absolute;
    display: block;
    content: "";
    opacity: 0.4;
    background-image: url("img/bg/pattern-2.png");
    background-repeat: repeat;
    background-position: top center;
    background-size: auto;

    inset: 0;
  }

  .header-contacts__content {
    width: 100%;
    padding-right: 1rem;

    gap: 1rem;
  }

  .header-contacts,
  .header-contacts .phone,
  .header-contacts .contacts-link__name {
    color: #fff;
  }

  .main-nav {
    display: none;
  }

  .menu-toggler--main {
    display: block;
  }

  .header-contacts .contacts-link--time {
    display: none;
  }

  .main-slide__content {
    flex-direction: column;
  }

  .main-slide__content br {
    display: none;
  }

  .main-slide__info {
    order: -1;
    width: 100%;
    padding: 2rem;
    text-align: center;
  }

  .main-slide__bg {
    padding-top: 20rem;
  }

  .main-slide__bg::before {
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 20rem;
  }

  .main-slide__bg::after {
    top: 20rem;
    bottom: 0;
    width: 100%;
  }

  .main-slide__title {
    text-align: center;
  }

  .main-slide__img {
    width: 100%;
    max-width: 430px;
  }

  .main-slide__controls {
    position: relative;
    bottom: 2rem;
    display: none !important;
    margin: 0;
    padding: 1rem;
  }

  .main-slide__nav {
    justify-content: center;
  }

  .section--features {
    margin-top: 0;
  }

  .features__item {
    width: 50%;
  }

  .service-list__item {
    --items_in_row: 2;
  }

  .styled-list--center {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .modal-form--product .modal-form__row {
    justify-content: center;
  }

  .modal-form--product .product__img {
    width: 100%;
    max-width: 480px;
    margin-bottom: 1rem;
  }

  .modal-form--product .product__info {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0;
  }

  .modal-form--product .product__title,
  .modal-form--product .product__price,
  .modal-form--product .product__btn {
    text-align: center;
  }

  .page-item__content {
    width: 100%;
    padding: 0;
  }

  .page-item__pic {
    width: 100%;
    height: 25rem;
    padding: 0;
  }

  .page-item__pic::before {
    width: 100%;
    height: 40%;
  }

  .stages::before {
    top: 35px;
    width: 58%;
  }

  .stages::after {
    position: absolute;
    z-index: -1;
    top: 58%;
    left: 50%;
    width: 58%;
    height: 4rem;
    content: "";
    transform: translateX(-50%);
    opacity: 0.2;
    background-image: url("img/bg/line.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }

  .stages__item {
    --items_in_row: 2;
  }

  .footer-list__item {
    align-items: center;
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 1rem;
  }

  .footer-contacts {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;

    gap: 1rem;
  }

  .footer-contacts .contacts-link::after {
    top: 22px;
  }

  .footer-contacts .contacts-link--adress br {
    display: none;
  }

  .footer-list__title {
    text-align: center;
  }

  .map {
    width: 100%;
    height: 500px;
  }

  .intro-list__pic {
    width: 100%;
  }

  .intro-list__pic img {
    height: 300px;
  }

  .intro-list__info {
    width: 100%;
  }

  .intro-list__title {
    font-size: 2rem;
  }

  .intro-list__price {
    right: 1rem;
    left: auto;
  }

  .product__item {
    width: 48%;
  }

  .team-list__item {
    --items_in_row: 2;
  }

  .page-contacts .contacts-link--social {
    justify-content: center;
    padding: 1rem;
  }

  .page-contacts .social-list,
  .footer-contacts .social-list {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 15px;
  }

  .styled-list li {
    padding-top: 5px;
  }

  .section--inner-slide {
    padding: 2.5rem 2rem;
  }

  .map {
    height: 400px;
  }

  .main-logo {
    padding: 10px;
  }

  .modal-form__content,
  .success-message,
  .search-form,
  .footer-form {
    padding: 1rem;
  }

  .footer-form {
    padding-bottom: 0;
  }

  .modal-form--product .product__img {
    max-width: 380px;
  }

  ul.page-numbers,
  .page-links {
    margin-bottom: 10px;
  }

  .page-links a.post-page-numbers,
  .page-links span.post-page-numbers {
    margin: 0 5px 10px;
  }

  .label-list__content {
    width: 34px;
    height: 34px;
  }

  .modal-form--product .label-list__content {
    width: 2rem;
    height: 2rem;
  }

  .feedback__item {
    width: 100%;
    padding: 0;
  }

  .feedback__info {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .appointment-form__item {
    width: 100%;
  }

  .footer-form .appointment-form__privacy {
    justify-content: center;
    text-align: center;
  }

  .footer-form .btn {
    display: block;
    margin: 0 auto 1rem;
  }

  .page-contacts__content {
    padding: 1rem;
  }

  .page-contacts .page-contacts__item {
    width: 100%;
    padding: 0;
  }

  .intro-list__info {
    padding: 1rem;
    padding-bottom: 0;
  }

  .intro-list__pic img {
    height: 270px;
  }

  .modal-form--product .label-list {
    top: 1rem;
    left: 1rem;
  }

  .page-item__info {
    padding: 3rem 2rem;
  }

  .page-item__info::before {
    top: 2.5rem;
    right: 10px;
    width: 32px;
  }

  .page-item__info::after {
    top: 15px;
    right: 2rem;
    height: 35px;
  }

  .modal-form--product .modal-form__content {
    padding-bottom: 0;
  }

  .footer-contacts__item {
    --items_in_row: 2;
  }
}

@media (max-width: 600px) {
  .header-contacts .contacts-link {
    margin: 0;
  }

  .main-slide__title {
    font-size: 2.8rem;
  }

  .btn--header {
    margin: 0;
    padding: 10px 15px;
  }

  .header-top__list {
    flex-direction: column;
  }

  .header-top__item {
    padding: 0 !important;
  }

  .social--header {
    margin-top: 5px;
  }

  .social--header .social__item {
    padding: 0 5px !important;
  }

  .service-list__item {
    --items_in_row: 1;
  }

  .stages::before,
  .stages::after {
    display: none;
  }

  .stages__item {
    --items_in_row: 1;
  }

  .footer-contacts__item {
    --items_in_row: 1;
  }

  .stages__title {
    margin-bottom: 0;
  }

  .page-title__head {
    margin: 20px 1.5rem;
  }

  .feedback-row .page-title__head {
    margin: 1rem;
  }

  .inner-slide__title h1::before,
  .page-title__head::before {
    left: -35px;
    width: 32px;
  }

  .inner-slide__title h1::after,
  .page-title__head::after {
    top: -1.5rem;
    height: 1.5rem;
  }

  .feedback-row {
    flex-direction: column;
  }

  .feedback-row__controls {
    position: relative;
    top: unset;
    right: unset;
    left: 50%;
    justify-content: center;
    width: 100%;
    transform: translateX(-50%);
  }

  .video-gallery {
    --gap: 1rem;
    --count: 1;
  }
}

@media (max-width: 480px) {
  .main-slide__bg::after {
    display: none;
  }

  .main-slide__info {
    padding: 1rem;
  }

  .main-slide__arrow {
    width: 2.5rem;
    height: 2.5rem;
  }

  .main-slide__title {
    font-size: 2rem;
  }

  .mobile-nav__content {
    width: 250px;
  }


  .features__item {
    width: 100%;
  }

  .modal-form--product .product__img {
    max-width: 280px;
  }

  .product__item {
    width: 100%;
    padding: 0;
  }

  .appointment-form__control {
    margin-bottom: 10px;
  }

  .appointment-form__input {
    padding: 10px 15px !important;
  }

  ul.page-numbers,
  .page-links {
    margin-bottom: 16px;
  }

  .page-links a.post-page-numbers,
  .page-links span.post-page-numbers {
    margin: 0 2px 4px;
  }

  textarea {
    min-height: 4rem;
    max-height: 4rem;
  }

  .intro-list__pic img {
    height: 240px;
  }

  .page-item__info {
    padding: 2rem 1rem;
  }

  .page-contacts__content {
    padding: 20px 10px;
  }

  .section--inner-slide {
    padding: 2rem 1rem;
  }

  .inner-slide__title h1 {
    font-size: 2rem;
  }

  .team-list__item {
    --items_in_row: 1;
  }

  .page-item__pic {
    height: auto;
  }

  .page-item__img {
    height: 20rem;
  }

  .page-item__custom-badge {
    position: static;
  }

  .custom-badge {
    padding: 1rem;
    border-right: none;
  }

  .custom-badge__title {
    font-size: 2rem;
  }

  .custom-badge__text {
    font-size: 1rem;
  }

  .features-icon {
    margin-bottom: 1rem;
  }
}

@media (max-width: 375px) {
  .main-slide__title {
    font-size: 1.8rem;
  }

  .gallery__item {
    --items_in_row: 1;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  /* IE10+ CSS */
  .ekko-lightbox .modal-dialog {
    overflow: hidden;
    flex: 100% !important;
    margin-right: 0;
    margin-left: 0;

    -ms-overflow-style: none;
  }
}