/*============= ALIGNES ===============*/

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
}

.error-bread input[type="number"] {
  -moz-appearance: textfield;
}

::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.compensate-for-scrollbar {
  margin: 0 auto !important;
}

html.with-fancybox body.hide-scrollbar {
  margin: 0 auto !important;
}

.fancybox__container * {
  transition: unset !important;
}

.fancybox__container,
.fancybox__container > * {
  transform: unset !important;
  transition: unset !important;
}

.fancybox-image {
  border-radius: 10px;
}

.fancybox__container iframe {
  width: 100%;
  height: 100%;
  min-width: 70vw;
  max-height: 90vh;
  aspect-ratio: 16 / 9;
}

.fancybox__content:has(iframe) {
  padding: 10px;
  background: transparent;
  width: 90%;
}

html.with-fancybox body.hide-scrollbar {
  overflow: hidden;
  /* Prevent scrolling */
}

.fancybox__container *:not(.fancybox__container .theme-modal *) {
  transition: unset;
  --fancybox-bg: rgba(29, 29, 31, 0.8);
}

.loader {
  width: 45px;
  aspect-ratio: 1;
  --c: no-repeat
    linear-gradient(
      90deg,
      var(--secondary-hover) 0%,
      var(--secondary-hover) 56.5%
    );
  background:
    var(--c) 0% 50%,
    var(--c) 50% 50%,
    var(--c) 100% 50%;
  background-size: 20% 100%;
  animation: l1 1s infinite linear;
  opacity: 0;
  position: fixed;
  pointer-events: none;
  left: 0;
  z-index: 11000;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0px auto;
  margin-top: auto;
  margin-bottom: auto;
}

.pseudo-bg {
  opacity: 0;
  position: fixed;
  pointer-events: none;
  left: 0;
  z-index: 10001;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 0px auto;
  margin-top: auto;
  margin-bottom: auto;
  width: 100%;
  height: 100%;
  background: var(--white);
}

@keyframes l1 {
  0% {
    background-size:
      20% 100%,
      20% 100%,
      20% 100%;
  }

  33% {
    background-size:
      20% 10%,
      20% 100%,
      20% 100%;
  }

  50% {
    background-size:
      20% 100%,
      20% 10%,
      20% 100%;
  }

  66% {
    background-size:
      20% 100%,
      20% 100%,
      20% 10%;
  }

  100% {
    background-size:
      20% 100%,
      20% 100%,
      20% 100%;
  }
}

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

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
  transition: unset;
  -webkit-box-shadow: 0 0 0 30px #ffffff inset !important;
  -webkit-text-fill-color: #171717 !important;
}

img {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE */
}

.alignwide {
  width: 100%;
}

.alignfull {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 1920px;
}

@media only screen and (min-width: 1920px) {
  .alignfull {
    width: 100vw !important;
    max-width: unset;
    /*margin-left: calc(-1 * (1920px - 1170px) / 2) !important;*/
    /*margin-right: calc(-1 * (1920px - 1170px) / 2) !important;*/
  }
}

button {
  border: unset;
}

/* =========== BASE CONFIG =========== */

:root {
  --transition: all 0.2s ease-in-out;

  --ten: clamp(0.5rem, 0.475rem + 0.125vw, 0.625rem);
  /* 10 - 8 */
  --fifteen: clamp(0.5rem, 0.4125rem + 0.4375vw, 0.9375rem);
  /* 15 - 8 */
  --eighteen: clamp(0.625rem, 0.525rem + 0.5vw, 1.125rem);
  /* 18 - 10 */
  --twenty: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  /* 20 - 14 */
  --twentyFive: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
  /* 25 - 16 */
  --thirty: clamp(0.75rem, 0.525rem + 1.125vw, 1.875rem);
  /* 30 - 12 */
  --thirtyFive: clamp(1.125rem, 0.9125rem + 1.0625vw, 2.1875rem);
  /* 35 - 18 */
  --fourty: clamp(1.125rem, 0.85rem + 1.375vw, 2.5rem);
  /* 40 - 18 */
  --fourtyFive: clamp(1.25rem, 0.9375rem + 1.5625vw, 2.8125rem);
  /* 45 - 20 */
  --fifty: clamp(1.25rem, 0.875rem + 1.875vw, 3.125rem);
  /* 50 - 20 */
  --fiftyFive: clamp(1.25rem, 0.8125rem + 2.1875vw, 3.4375rem);
  --sixty: clamp(1.375rem, 0.9rem + 2.375vw, 3.75rem);
  /* 60 - 22 */
  --sixtyFive: clamp(1.375rem, 0.8375rem + 2.6875vw, 4.0625rem);
  --seventy: clamp(1.375rem, 0.775rem + 3vw, 4.375rem);
  /* 70 - 22 */
  --eighty: clamp(1.5rem, 0.8rem + 3.5vw, 5rem);
  /* 80 - 24 */
  --eightyFive: clamp(1.375rem, 0.5875rem + 3.9375vw, 5.3125rem);
  --ninety: clamp(1.125rem, 0.225rem + 4.5vw, 5.625rem);
  /* 90 - 18 */
  --100: clamp(1.75rem, 0.85rem + 4.5vw, 6.25rem);
  /* 100 - 28 */
  --110: clamp(1.375rem, 0.275rem + 5.5vw, 6.875rem);
  /* 110 - 22 */
  --120: clamp(1.125rem, -0.15rem + 6.375vw, 7.5rem);
  /* 120 - 22 */
  --125: clamp(1.375rem, 0.0875rem + 6.4375vw, 7.8125rem);
  /* 125 - 22 */
  --130: clamp(1.125rem, -0.275rem + 7vw, 8.125rem);
  --150: clamp(0rem, -1.5625rem + 7.8125vw, 7.8125rem);
  --170: clamp(1.375rem, -0.475rem + 9.25vw, 10.625rem);

  --5040: clamp(2.5rem, 2.375rem + 0.625vw, 3.125rem);
  --2420: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  --2418: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  --2018: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  --2016: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  --2014: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
  --1816: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  --1814: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  --1614: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  --14: 14px;

  --font-family: "TildaSans";
}

.title-xl {
  font-size: 72px;
  line-height: 1.17;
}

@media screen and (max-width: 1200px) {
  .title-xl {
    font-size: 68px;
  }
}

@media screen and (max-width: 640px) {
  .title-xl {
    font-size: 32px;
  }
}

@media screen and (max-width: 480px) {
  .title-xl {
    font-size: 30px;
  }
}

.title-xs {
  font-size: 42px;
  line-height: 1.23;
}

@media screen and (max-width: 1200px) {
  .title-xs {
    font-size: 38px;
  }
}

@media screen and (max-width: 640px) {
  .title-xs {
    font-size: 30px;
  }
}

.title-xxs {
  font-size: 36px;
  line-height: 1.23;
}

@media screen and (max-width: 1200px) {
  .title-xxs {
    font-size: 32px;
  }
}

@media screen and (max-width: 640px) {
  .title-xxs {
    font-size: 28px;
  }
}

.title-md {
  font-size: 52px;
  line-height: 1.23;
}

@media screen and (max-width: 1200px) {
  .title-md {
    font-size: 48px;
  }
}

@media screen and (max-width: 640px) {
  .title-md {
    font-size: 30px;
  }
}

.name-md {
  font-size: 20px;
  line-height: 1.35;
}

@media screen and (max-width: 1200px) {
  .name-md {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .name-md {
    font-size: 16px;
  }
}

.descr-xl,
.descr-xl p,
.descr-xl li,
.descr-xl a {
  font-size: 24px;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  .descr-xl,
  .descr-xl p,
  .descr-xl li,
  .descr-xl a {
    font-size: 22px;
  }
}

@media screen and (max-width: 640px) {
  .descr-xl,
  .descr-xl p,
  .descr-xl li,
  .descr-xl a {
    font-size: 20px;
    line-height: 1.4;
  }
}

.descr-sm,
.descr-sm p,
.descr-sm li,
.descr-sm a {
  font-size: 18px;
  line-height: 1.55;
}

@media screen and (max-width: 1200px) {
  .descr-sm,
  .descr-sm p,
  .descr-sm li,
  .descr-sm a {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .descr-sm,
  .descr-sm p,
  .descr-sm li,
  .descr-sm a {
    font-size: 14px;
    line-height: 1.45;
  }
}

.text-md,
.text-md p,
.text-md li,
.text-md a {
  font-size: 20px;
  line-height: 1.55;
}

@media screen and (max-width: 1200px) {
  .text-md,
  .text-md p,
  .text-md li,
  .text-md a {
    font-size: 18px;
  }
}

@media screen and (max-width: 640px) {
  .text-md,
  .text-md p,
  .text-md li,
  .text-md a {
    font-size: 16px;
    line-height: 1.45;
  }
}

.name-lg {
  font-size: 22px;
  line-height: 1.35;
}

@media screen and (max-width: 1200px) {
  .name-lg {
    font-size: 20px;
  }
}

html {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  transition: var(--transition);
  font-weight: 400;
  box-sizing: inherit;
}

body {
  background: var(--colors-head-primary);
  overflow-x: hidden;
  margin: 0 auto;
  width: auto;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: #121212;
}

ul li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

#mobile-mnu ul li::marker {
  font-size: 16px;
}

ul li::marker {
  color: black;
  width: 10px;
  height: 10px;
  unicode-bidi: isolate;
  font-variant-numeric: tabular-nums;
  text-transform: none;
  text-indent: 0px !important;
  text-align: start !important;
  text-align-last: auto !important;
}

ol li {
  list-style-position: inside;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
  color: #121212;
  font-size: 18px;
  line-height: 26px;
}

h1.page-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: var(--h1);
  line-height: 100%;
  color: var(--colors-main-text-primary);
  margin-bottom: var(--fourty);
}

main.foned {
  position: relative;
  overflow: hidden;
  z-index: 999;
}

main.foned:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}

.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: fit-content;
  width: fit-content;
  gap: 0px 5px;
  padding-top: 20px;
  padding-bottom: var(--fourty);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--p2);
  line-height: 120%;
  color: var(--colors-secondary-text);
  flex-wrap: wrap;
}

.bread-dep {
  background: var(--element-primary);
  border-radius: 1px;
  width: 10px;
  height: 4px;
  display: flex;
}

.breadcrumbs span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--p2);
  line-height: 120%;
  color: var(--colors-secondary-text);
}

.breadcrumbs span.current-item,
.breadcrumbs span:hover,
.error-bread {
  color: var(--colors-main-text-primary) !important;
}

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

@media (max-width: 1220px) {
  .container {
    padding: 0 20px;
  }
}

.swiper-holder {
  width: 100%;
  overflow: clip;
  position: relative;
  display: flex;
  flex-direction: column;
}

.swiper-holder .swiper {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: -30px;
  margin-bottom: -30px;
}

.swiper-slide {
  touch-action: pan-y;
  display: flex !important;
  height: auto !important;
  align-self: stretch !important;
}

.arrow.swiper-button-disabled {
  pointer-events: none !important;
}

.arrow.swiper-button-disabled svg path {
  fill: var(--colors-secondary-text) !important;
}

.swiper-pagination__holder {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  height: fit-content;
}

.swiper-pagination-bullets {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: 10px;
  width: fit-content !important;
  height: fit-content !important;
  align-items: center;
  flex-wrap: wrap;
}

.swiper-pagination-bullet {
  opacity: 1 !important;
  border-radius: 30px !important;
  width: 8px !important;
  height: 8px !important;
  background: #c7c7c7 !important;
  margin: unset !important;
}

.swiper-pagination-bullet-active {
  background: #222 !important;
}

#main,
#primary {
  min-height: 30vh;
  background: var(--black);
  flex-grow: 1;
  overflow: clip;
  display: flex;
  flex-direction: column;
}

/* components start */

.navigation.pagination {
  height: fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-top: var(--thirty);
}

.navigation.pagination .nav-links {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.navigation.pagination .page-numbers {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 130%;
  text-align: center;
  color: var(--colors-secondary-text);
}

.navigation.pagination .nav-links .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  place-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  border-radius: 100%;
  background: var(--colors-background-secondary);
}

.navigation.pagination .nav-links .page-numbers:hover {
  background: var(--colors-primary);
  color: white;
}

.navigation.pagination .page-numbers.current {
  pointer-events: none;
  color: var(--colors-main-text-primary);
}

.navigation.pagination .page-numbers.disabled {
  pointer-events: none;
}

.navigation.pagination .page-numbers.disabled svg path {
  fill: var(--colors-secondary-text);
}

.swiper-nav {
  margin-top: var(--thirty);
  display: flex;
  width: 100%;
  height: fit-content;
  justify-content: space-between;
  align-items: center;
  gap: var(--twenty);
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.swiper-nav:has(.swiper-pagination-bullets) {
  flex-wrap: nowrap !important;
}

.swiper-nav:has(.swiper-pagination-bullets) .swiper-pagination-bullets {
  flex-wrap: wrap !important;
}

.swiper-nav__arrows-absolute {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 3;
  height: fit-content;
}

.swiper-nav__arrows-absolute > * {
  pointer-events: all;
}

.swiper-nav__arrows-absolute > *:first-child {
  margin-left: -30px;
}

.swiper-nav__arrows-absolute > *:last-child {
  margin-right: -30px;
}

@media (max-width: 1650px) {
  .swiper-nav__arrows-absolute > *:first-child {
    margin-left: -10px;
  }

  .swiper-nav__arrows-absolute > *:last-child {
    margin-right: -10px;
  }
}

/* .swiper-holder .arrow {
  background: var(--txt-main-text-primary);
} */

.swiper-nav__arrows {
  display: flex;
  flex-direction: row;
  width: fit-content;
  height: fit-content;
  gap: var(--twenty);
}

.swiper-nav__progressbar {
  position: relative;
  width: 100%;
  top: -2px;
}

.swiper-nav__pagination {
  flex-wrap: nowrap;
  gap: var(--thirty);
  position: relative;
  z-index: 4;
}

.swiper-pagination-progressbar {
  background: var(--bg-stroke) !important;
  height: 3px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--element-third) !important;
  height: 3px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.swiper-nav__pseudo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.swiper-nav__pseudo * {
  pointer-events: all;
}

.swiper-nav__pseudo > * {
  padding: 10px;
  height: 100%;
  align-items: center;
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.swiper-nav__pseudo .swiper-button-disabled {
  background: rgba(255, 255, 255, 0.2) !important;
  pointer-events: none !important;
}

.swiper-nav__pseudo > *:hover {
  background: var(--black);
}

.swiper-nav__pseudo > *:hover:not(.swiper-button-disabled) svg path {
  fill: var(--element-primary);
}

.swiper-nav .btn {
  flex-shrink: 0;
}

/* components end */

/* templates start */

input,
textarea,
select {
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-size: 16px;
  height: 60px;
  line-height: 1.33;
  margin: 0;
  outline: none;
  padding: 0 20px;
  width: 100%;
  color: #000000;
  border: 1px solid #000000;
  outline: none;
  resize: none;
  transition: var(--transition);
  font-family: var(--font-family);
}

textarea {
  padding-top: 17px;
  height: 102px;
  resize: vertical;
}

select {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  line-height: 120%;
  color: var(--txt-head-primary);
}

select option[value=""][disabled] {
  color: var(--txt-secondary-text);
}

select:invalid {
  color: var(--txt-secondary-text);
}

select option:not([disabled]) {
  color: var(--txt-head-primary);
}

select option,
select option::placeholder {
  font-family: var(--font-family);
  line-height: 1.33;
  color: #000000;
  opacity: 0.5;
}

input::placeholder,
textarea::placeholder,
select::placeholder {
  font-family: var(--font-family);
  line-height: 1.33;
  color: #000000;
  opacity: 0.5;
  transition: var(--transition);
}

input.error,
textarea.error,
.woocommerce-invalid input,
.woocommerce-invalid textarea {
  border-color: red !important;
  color: red !important;
}

input.error::placeholder,
textarea.error::placeholder {
  color: red;
}

/* .form-input__holder:has(input.error) .input-placeholder,
.form-input__holder:has(textarea.error) .input-placeholder,
input.error::placeholder,
textarea.error::placeholder {
  color: red !important;
}

.form-input__holder {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.form-input__holder input::placeholder {
  opacity: 0;
  transition: var(--transition);
}

.form-input__holder input:hover::placeholder,
.form-input__holder input:focus::placeholder {
  opacity: 1;
} */

.input-placeholder {
  position: absolute;
  /* left: var(--thirty); */
  /* right: var(--thirty); */
  /* top: var(--thirty); */
  /* bottom: var(--thirty); */
  left: var(--thirty);
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  bottom: 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 140%;
  color: var(--gray);
  height: fit-content;
  pointer-events: none;
  transition: var(--transition);
}

.input-placeholder.active {
  top: -25px !important;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) !important;
}

.form-input__holder:hover .input-placeholder {
  top: -25px;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
}

@media (max-width: 1300px) {
  .form-input__holder:hover .input-placeholder {
    top: -25px;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  }

  .form-input__holder .input-placeholder.active {
    top: -25px !important;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) !important;
  }
}

@media (max-width: 1300px) {
  .form-input__holder:hover .input-placeholder {
    top: -25px;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  }

  .form-input__holder .input-placeholder.active {
    top: -25px !important;
    font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) !important;
  }
}

.has-childs {
  position: relative;
}

/*============ HEADER =================*/
#header {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.header-main {
  background-color: rgba(0, 0, 0, 1);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0);
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 40px;
  padding-right: 40px;

  ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;

    li {
      margin-bottom: 0px;
      line-height: unset;
      list-style: none;
    }

    a {
      color: #ffffff;
      font-weight: 600;
      font-size: 16px;
    }

    li.active a {
      opacity: 0.7;
    }
  }
}

.lang-swap__outer {
  min-width: 147px;
  display: flex;
  justify-content: flex-end;
}

.lang-swap {
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
}

.logo-img__holder {
  display: block;

  * {
    display: flex;
    object-fit: contain;
  }
}

@media (max-width: 1200px) {
  .header-main {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 980px) {
  .header-main {
    display: none;
  }
  .burger.open_menu {
    display: flex !important;
  }
}

/*================ MOBILE MNU =============*/
#header .burger.open_menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background-color: transparent;
  outline: none;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: transform 0.5s ease-in-out;
  cursor: pointer;
  z-index: 999;
  background-color: #11111150;
  border-radius: 100px;
}

#header .burger.open_menu span {
  background-color: white;
  width: 22px;
  height: 2px;
  transition: all 0.3s ease-in;
}

.mobile-socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  height: fit-content;
}

#mobile-mnu .logo-holder {
  margin-bottom: 20px;
}

#mobile-mnu .logo-holder__text-holder {
  display: none;
}

#header #mobile-mnu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 260px;
  background-color: #111;
  padding: 42px 25px 25px;
  transition: all 0.3s ease-in;
  transform: translateX(260px);
  z-index: 9999;
  overflow-y: auto;
  gap: 25px;
}

#header #mobile-mnu #close-mnu {
  position: absolute;
  width: 24px;
  height: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  display: block;
  right: 25px;
  top: 25px;
  color: white;
  padding: 10px;
  margin: -10px;
}

#header #mobile-mnu #close-mnu span {
  display: block;
  position: absolute;
  width: 100%;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  height: 2px;
  background-color: white;
}

#header #mobile-mnu #close-mnu span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#header #mobile-mnu #close-mnu span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header #mobile-mnu #close-mnu span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#header #mobile-mnu #close-mnu span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

#header #mobile-mnu #close-mnu svg path {
  fill: black;
}

#header #mobile-mnu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;

  li {
    list-style: none;
    margin-bottom: 0px;
    line-height: unset;
  }

  a {
    font-size: 24px;
    color: #ffffff;
  }
}

#header #mobile-mnu .logo__holder {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#header #mobile-mnu .logo__holder img {
  max-height: 60px;
}

#header #mobile-mnu .adresses__holder {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  gap: 10px;
}

#header #mobile-mnu .adresses__holder:before {
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-image: url("../images/map.svg");
  background-position: center center;
  background-repeat: no-repeat;
}

#mobile-mnu .contacts-item__outer {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

#header #mobile-mnu .adresses__holder p {
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-weight: 450;
  margin-bottom: 0px;
}

#header #mobile-mnu .email__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 10px;
}

#header #mobile-mnu .email__holder .email__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-weight: 450;
}

#header #mobile-mnu .email__holder .email__item:hover {
  color: var(--element-primary);
}

#header #mobile-mnu .email__holder .email__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .phones__holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

#header #mobile-mnu .phones__holder .phone__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  color: var(--white);
  font-weight: 450;
}

#header #mobile-mnu .phones__holder .phone__item:hover {
  color: var(--element-primary);
}

#header #mobile-mnu .phones__holder .phone__item svg {
  margin-right: 10px;
}

#header #mobile-mnu .soc__holder {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
}

#header #mobile-mnu .soc__holder .soc__item {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #3a899a;
  transition: background-color 0.3s ease-in;
}

#header #mobile-mnu .soc__holder .soc__item:hover {
  background-color: #609fa8;
}

#header #mobile-mnu.opened {
  transform: translateX(0px);
}

#header #mobile-mnu .logo-holder__title,
#header #mobile-mnu .logo-holder__subtitle {
  color: var(--white);
}

/*============ FOOTER ===============*/

#footer {
  width: 100%;
  height: fit-content;
  margin-top: var(--ninety);
  background: black;
}

.footer-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  padding-top: var(--fourty);
  padding-bottom: var(--fourty);
}

.footer-copy {
  vertical-align: middle;
  color: #919191;
  font-size: 14px;
  font-family: "Arial", Arial, sans-serif;
  font-weight: 400;
  opacity: 0.9;
  background-position: center center;
}

.error-holder {
  display: flex;
  flex-direction: column;
  margin: auto;

  .error-title {
    vertical-align: middle;
    color: #000000;
    font-size: clamp(9.375rem, 3.125rem + 15.625vw, 21.875rem);
    font-family: "Arial", Arial, sans-serif;
    line-height: 1.23;
    font-weight: 600;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    text-align: center;
  }

  .error-sub {
    vertical-align: middle;
    color: #000000;
    font-size: 22px;
    font-family: "Arial", Arial, sans-serif;
    line-height: 1.55;
    font-weight: 400;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    text-align: center;
  }

  .error-go {
    color: #ffffff;
    background-color: #ff4a4a;
    --border-width: 0px;
    border-style: none !important;
    border-radius: 30px;
    box-shadow: none !important;
    transition-duration: 0.2s;
    transition-property:
      background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
    margin: 0 4px 8px 0;
    height: 60px;
    font-size: 16px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 4px 8px 0;
    font-weight: 600;
    line-height: 1.4;
    width: fit-content;
    place-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 30px;
    margin-bottom: 10px;
    cursor: pointer;
    align-items: center;
  }
}

/* ============== MODAL ============= */
/* .wpcf7 .wpcf7-response-output,
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
} */

.wpcf7 .ajax-loader {
  display: none;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}

.theme-modal {
  display: none;
  padding: 40px !important;
}

.theme-modal .form__holder {
  width: 100%;
}

.theme-modal.fancybox__content {
  width: 560px;
  border-radius: 2px;
  background: white;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: unset;
}

/* .f-button {
  color: initial !important;
}

.f-button svg {
  stroke: initial;
} */

.theme-modal.fancybox__content > .f-button.is-close-btn {
  top: 15px !important;
  right: 15px !important;
  padding: 0;
  width: var(--thirtyFive);
  height: var(--thirtyFive);
  opacity: 1 !important;
  background: unset !important;
}

.theme-modal .f-button svg {
  fill: unset !important;
  stroke: unset !important;
}

@media (max-width: 1100px) {
  .theme-modal.fancybox__content > .f-button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
  }
}

@media (max-width: 500px) {
  .theme-modal.fancybox__content > .f-button.is-close-btn {
    top: 15px !important;
    right: 15px !important;
  }
}

.theme-modal .form__holder {
  width: 100%;
  height: 100%;
}

.theme-modal .form-title {
  text-align: left;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: #000000;
  padding-bottom: 30px;
}

@media (max-width: 1200px) {
  .theme-modal .form-title {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .theme-modal .form-title {
    font-size: 20px;
  }
}

.modal-zakaz__items {
  display: flex;
  flex-direction: column;
  gap: 35px;
  width: 100%;
  padding-top: 17px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;

  p {
    margin-bottom: 0px;
  }
}

#modal-zakaz {
  .form-label {
    font-size: 16px;
    line-height: 1.55;
    font-weight: 300;
    color: #000000;
  }

  form > p {
    display: flex;
    flex-direction: column;
  }

  .wpcf7-submit {
    margin-top: 15px;
    color: #ffffff;
    background-color: #000000;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
  }
}

.modal-zakaz__item {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.modal-zakaz__item-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10px;
  align-items: center;

  img {
    width: 70px;
    height: 70px;
    display: flex;
    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .modal-zakaz__item-title {
    font-size: var(--1614);
    font-weight: 600;
    color: #000;
    line-height: 1.55;
    max-width: 80%;
    margin-right: auto;
  }

  .modal-zakaz__item-qty {
    display: flex;
    flex-direction: row;
    flex-shrink: 0;
    align-items: center;
  }

  .modal-zakaz__item-qty__value {
    border: 1px solid transparent;
    color: #000;
    font-size: 16px;
    line-height: 16px;
    margin: 0 5px;
    padding: 2px 5px;
  }

  .modal-zakaz__item-qty__minus {
    cursor: pointer;
    display: inline-block;
    height: 16px;
    opacity: 0.4;
    position: relative;
    width: 16px;
    svg {
      width: 16px;
      height: 16px;
    }
  }

  .modal-zakaz__item-qty__plus {
    cursor: pointer;
    display: inline-block;
    height: 16px;
    opacity: 0.4;
    position: relative;
    width: 16px;
    svg {
      width: 16px;
      height: 16px;
    }
  }
}

.modal-zakaz__item-delete {
  cursor: pointer;
  display: inline-block;
  height: 16px;
  opacity: 0.4;
  position: relative;
  width: 16px;

  svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 620px) {
  .modal-zakaz__item-content {
    flex-wrap: wrap;
  }
  .modal-zakaz__item {
    align-items: flex-start;
    gap: 25px;
  }
  .modal-zakaz__item-title {
    width: 50%;
  }
}

.theme-modal .form-subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 130%;
  text-align: center;
  color: var(--colors-secondary-text);
  margin-bottom: var(--fourty);
}

.theme-modal .form-input__holder,
.theme-modal input,
.theme-modal textarea {
  width: 100%;
  transition: var(--transition);
}

.theme-modal * {
  transition: var(--transition) !important;
}

.form-input__holder:has(textarea) .input-placeholder {
  margin-top: unset;
  margin-bottom: unset;
  top: 19px;
}

.form-input__holder:has(textarea):hover .input-placeholder {
  top: 4px !important;
  font-size: 14px !important;
}

.form-input__holder:has(textarea) .input-placeholder.active {
  top: 4px !important;
  font-size: 14px !important;
}

@media (max-width: 1300px) {
  .form-input__holder:has(textarea):hover .input-placeholder,
  .form-input__holder:has(textarea) .input-placeholder.active {
    top: 4px !important;
    font-size: 14px !important;
  }
}

.theme-modal .btn {
  width: 100%;
}

.theme-modal .privacy,
.theme-modal .privacy > * {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--light-text-2);
}

.theme-modal .form {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--fourty);
}

.theme-modal .form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--thirty);
}

#modal-callback .form-row:first-child {
  flex-direction: row;
  gap: var(--twenty);
}

@media (max-width: 600px) {
  #modal-callback .form-row:first-child {
    flex-direction: column;
  }
}

.theme-modal .form-row:last-child {
  gap: 10px;
}

.theme-modal input[type="file"] {
  appearance: none;
  display: none;
}

.theme-modal .files,
.theme-modal .files label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: fit-content;
}

.file-additional__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}

.theme-modal .files .file-label {
  cursor: pointer;
  border-radius: 10px;
  padding: var(--twenty) var(--twentyFive);
  background: #d3d3d3;
  display: flex;
  width: 100%;
  height: fit-content;
  place-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: var(--1614);
  line-height: 140%;
  color: #8b8b8b;
}

.theme-modal .files .file-label:hover {
  background: var(--element-primary);
  color: var(--white);
}

.form-privacy,
.form-privacy > * {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--black);
}

.form-privacy > * {
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

/* #modal-error .form-subtitle,
#modal-success .form-subtitle {
  margin-bottom: 0px !important;
} */

#modal-review .form-row:first-child {
  gap: var(--twenty) !important;
}

#modal-review .files {
  margin-top: var(--twenty);
}

/* blocks start */

.mainbanner-block {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
  text-align: center;
  -moz-transform: unset;
  vertical-align: middle;
  width: 100%;
  min-height: clamp(23.75rem, 21rem + 13.75vw, 37.5rem);
  display: flex;
  justify-content: center;
}

.mainbanner-block__pseudo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  position: absolute;
  pointer-events: none;
  vertical-align: middle;
  width: 100%;
  z-index: 1;
}

.mainbanner-block__title {
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
  padding: 24px 0 38px;
  line-height: 1.17;
  color: #fff;
  position: relative;
  z-index: 2;
  font-weight: 600;
  padding-left: var(--fourty);
  padding-right: var(--fourty);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.services-block {
  margin-top: 30px;
}

.services-block__holder {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--ninety);
}

.services-block__text-holder {
  display: flex;
  flex-direction: column;
  gap: var(--fourty);
}

.services-block__title {
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.services-block__text {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  gap: 0px;
  margin: auto;

  p,
  li {
    font-weight: 300;
    color: #000000;
    margin-bottom: 0px;
  }
}

.services-block__columns {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.service-card__v1 {
  display: inline;
  float: left;
  margin-left: 20px;
  margin-right: 20px;
  width: 100%;
  max-width: 560px;
  margin-top: 90px;
}

.service-card__v1:nth-child(-n + 1),
.service-card__v1:nth-child(-n + 2) {
  margin-top: 0;
}

.service-card__v1-photo__wrap {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 110%;
}

.service-card__v1-photo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  -webkit-transition: opacity 0.1s linear;
  -o-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

.service-card__v1-title {
  font-weight: 700;
  color: #000000;
}

.service-card__v1-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__v1-desc {
  font-weight: 300;
  color: #000000;
}

.service-card__v1-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card__v1-btn {
  color: #ffffff;
  background-color: #ff931f;
  --border-width: 0px;
  border-style: none !important;
  border-radius: 30px;
  box-shadow: none !important;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
  margin: 0 4px 8px 0;
  height: 45px;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 4px 8px 0;
  font-weight: 600;
  line-height: 1.4;
  width: fit-content;
  place-content: center;
}

@media (max-width: 1200px) {
  .services-block__columns {
    max-width: 960px;
    padding: 0;
  }

  .service-card__v1-btn {
    padding-left: 25px;
    padding-right: 25px;
  }

  .service-card__v1 {
    display: inline;
    float: left;
    margin-left: 10px;
    margin-right: 10px;
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 1000px) {
  .service-card__v1 {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 60px;
    display: block;
    float: none;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0;
    box-sizing: border-box;
    margin-bottom: 60px;
  }

  .services-block__columns {
    font-size: 0;
    max-width: 640px;
  }

  .service-card__v1-btn {
    white-space: normal;
  }
}

@media (max-width: 600px) {
  .services-block__columns {
    padding: 0 0px;
  }
  .service-card__v1 {
    width: 100%;
    display: block;
    padding-top: 10px;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100%;
  }
}

.form-block {
  max-width: 760px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;

  .form {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .form-label {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .wpcf7-submit {
    color: #ffffff;
    background-color: #ff4a4a;
    --border-width: 0px;
    border-style: none !important;
    border-radius: 30px;
    box-shadow: none !important;
    transition-duration: 0.2s;
    transition-property:
      background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
    margin: 0 4px 8px 0;
    height: 60px;
    font-size: 16px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 4px 8px 0;
    font-weight: 600;
    line-height: 1.4;
    width: fit-content;
    place-content: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    margin-top: 30px;
    margin-bottom: 10px;
    cursor: pointer;
  }

  .wpcf7-submit:hover {
    background-color: #e73535 !important;
  }
}

/* blocks end */

/* swiper-thumbs start */

.swiper-thumbs__holder,
.swiper-thumbs__holder .swiper {
  width: 100%;
  overflow: hidden;
  height: 100%;
  position: relative;
}

.swiper-thumbs__holder .thumbs .swiper-wrapper {
  height: auto !important;
  flex-direction: row;
}

.swiper-thumbs__holder {
  overflow: visible !important;
  height: fit-content;
  flex-shrink: 0 !important;
}

.swiper-thumbs__holder {
  max-width: 1210px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.swiper-thumbs__holder .holder {
  width: 100%;
  height: 545px;
  /* max-height: 50vw; */
  overflow: hidden;
}

.swiper-thumbs__holder .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  align-self: stretch;
}

.swiper-thumbs__holder .holder .swiper-slide {
  padding-bottom: 5px;
}

.swiper-thumbs__holder .holder-photo {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-self: stretch;
  padding-bottom: 1px;
}

.swiper-thumbs__holder .holder-photo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: auto auto;
  object-fit: contain;
  display: flex;
}

.swiper-thumbs__holder .thumbs .swiper {
  max-width: 100%;
  width: 100%;
  margin: unset;
  height: 90px;
  padding-bottom: 1px;
  display: flex;
  align-items: flex-end;
}

.swiper-thumbs__holder .thumbs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-shrink: 0;
  max-width: 100%;
  max-height: 100px;
  gap: 15px;
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide {
  width: 124px;
  height: 100%;
  display: flex;
  margin-right: 18px;
  height: 80px;
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide:last-child {
  margin-right: unset !important;
  /* padding-bottom: 5px !important; */
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide > * {
  width: 100%;
  height: 80px;
  display: flex;
  overflow: hidden;
  /* border: 1px solid var(--stroke); */
}

/* .swiper-thumbs__holder .thumbs .swiper .swiper-slide.swiper-slide-thumb-active>* {
  border-color: var(--primary) !important;
} */

.swiper-thumbs__holder .thumbs .swiper .swiper-slide > * > * {
  width: 100%;
  height: 80px;
  object-fit: cover;
  display: flex;
  aspect-ratio: 1/1;
}

.swiper-thumbs__holder .swiper-slide {
  cursor: pointer;
}

.swiper-thumbs__arrows {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  gap: var(--twenty);
}

.swiper-thumbs__arrows > * {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
}

.swiper-button-prev-thumbs,
.swiper-button-next-thumbs {
  display: flex;
  cursor: pointer;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-shrink: 0;
  border-radius: 100px;

  svg {
    width: 7px;
  }
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide {
  position: relative !important;
  transition: var(--transition);
}

.swiper-thumbs__holder .thumbs .swiper .swiper-slide:hover,
.swiper-thumbs__holder .thumbs .swiper .swiper-slide-thumb-active {
  transform: translateY(-10px);
}

.swiper-thumbs__holder {
  svg path {
    stroke: var(--text-secondary-main-text-secondary);
  }
  svg {
    display: flex;
    margin: auto;
  }
  .swiper-button-disabled {
    pointer-events: none;
    svg path {
      stroke: var(--text-secondary-main-text-secondary);
    }
  }
}

.single-product__swiper-holder__pagination {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  gap: 3px;
  display: none;

  .swiper-pagination-bullet {
    border-radius: 100%;
    background-color: #d9d9d9;
    width: 4px;
    height: 4px;
    margin: unset !important;
    opacity: 1 !important;
  }

  .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #1e1e1e;
  }
}

/* swiper-thumbs end */

.gal-block {
  padding: 40px;
  box-sizing: border-box;
  background-color: #ededed;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .swiper-thumbs__holder .thumbs .swiper {
    display: none;
  }
  .swiper-thumbs__holder .thumbs {
    position: absolute;
    z-index: 3;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    pointer-events: none;
  }
  .swiper-button-prev-thumbs {
    left: -15px;
    position: relative;
    pointer-events: all;
  }
  .swiper-button-next-thumbs {
    right: -15px;
    position: relative;
    pointer-events: all;
  }
  .swiper-thumbs__holder .holder {
    height: 100%;
  }
  .gal-block {
    padding: 20px;
  }
}

.text-block {
  margin-top: var(--sixty);
}

.text-block__text {
  display: flex;
  flex-direction: column;
  gap: var(--twenty);
  max-width: 1160px;

  p,
  li {
    font-weight: 300;
    color: #000000;
    font-size: 20px;
    opacity: 0.7;
    margin-bottom: 0px;
  }
}

.textColumns-block {
  margin-top: var(--sixty);

  .textColumns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    height: auto;
    width: 100%;

    * {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 0px;

      p,
      li {
        margin-bottom: 0px;
        line-height: unset;
      }
    }
  }
}

@media (max-width: 1000px) {
  .textColumns-block .textColumns {
    grid-template-columns: 1fr;
  }
}

.allServices-block {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  gap: 50px 0px;
  margin-top: var(--sixty);

  .service-card__v1 {
    max-width: 260px;
    margin-top: 0px;
  }
}

@media (max-width: 1200px) {
  .allServices-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    width: 100%;

    .service-card__v1 {
      width: auto;
      max-width: 100%;
      padding: 10px;
      margin-bottom: 0px;
    }
  }
}

@media (max-width: 640px) {
  .allServices-block {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.post-type-archive-services {
  .text-block__text {
    p,
    li {
      font-weight: 400;
      color: #000000;
      font-size: 20px;
      opacity: 1;
      margin-bottom: 0px;
      line-height: 31px;
    }
  }
}

.serviceBanner-block {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
  text-align: center;
  -moz-transform: unset;
  vertical-align: middle;
  width: 100%;
  min-height: clamp(23.75rem, 21rem + 13.75vw, 37.5rem);
  display: flex;
  justify-content: flex-start;
}

.serviceBanner-block__pseudo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  position: absolute;
  pointer-events: none;
  vertical-align: middle;
  width: 100%;
  z-index: 1;
}

.serviceBanner-block__actions {
  display: flex;
  flex-direction: column;
  gap: var(--ninety);
  position: relative;
  z-index: 2;
  width: fit-content;
  height: 100%;
  justify-content: center;
  padding-top: 15px;
  padding-bottom: 15px;
  margin: auto;
}

.serviceBanner-block:has(.serviceBanner-block__links) {
  .serviceBanner-block__actions {
    margin: unset;
  }
}

.serviceBanner-block__title {
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.serviceBanner-block:has(.serviceBanner-block__links) {
  .serviceBanner-block__title {
    text-align: left;
  }
}

.serviceBanner-block__links {
  display: flex;
  flex-direction: row;
  width: fit-content;
  gap: 10px;
  flex-wrap: wrap;
}

.serviceBanner-block__btn {
  color: #000000;
  background-color: #e0e0e0;
  --border-width: 0px;
  border-style: none !important;
  border-radius: 30px;
  box-shadow: none !important;
  white-space: normal;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
  margin: 0 4px 8px 0;
  height: 60px;
  font-size: 16px;
  padding-left: 60px;
  padding-right: 60px;
  margin: 0 4px 8px 0;
  font-weight: 600;
  line-height: 1.4;
  width: fit-content;
  place-content: center;
}

.serviceBanner-block__btn:first-child {
  color: #000000;
  background-color: #ffea00;
  --border-width: 0px;
  border-style: none !important;
  border-radius: 30px;
  box-shadow: none !important;
  white-space: normal;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
}

@media (max-width: 1200px) {
  .serviceBanner-block__btn {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media (max-width: 640px) {
  .serviceBanner-block__btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.single-services,
.post-type-archive-rent {
  .text-block__text {
    p,
    li {
      font-weight: 300;
      color: #000000;
      font-size: clamp(1rem, 0.875rem + 0.3125vw, 1.25rem);
      line-height: 1.55;
      opacity: 1;
      margin-bottom: 0px;
    }
  }
}

.slider-block {
  margin-top: 30px;

  .swiper-slide {
    max-width: 860px;
    width: 100%;
  }

  .slider-block__item {
    padding-bottom: 63.9535%;
  }

  .slider-block__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
  }

  .swiper-pagination-bullets {
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px;
    padding-left: 10px;
    padding-right: 10px;
    justify-content: center;
  }

  .swiper-slide-prev,
  .swiper-slide-next {
    .slider-block__item {
      opacity: 0.3;
    }
  }
}

.arrow-slider {
  display: flex;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: rgb(232, 232, 232);
  display: flex;
  flex-shrink: 0;
  border-radius: 100px;
  pointer-events: all;

  svg {
    width: 9px;
    margin: auto;
  }
}

.slider-block__arrows {
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  max-width: 1000px;
}

@media (max-width: 1050px) {
  .slider-block__arrows {
    width: 95%;
  }
}

@media (max-width: 640px) {
  .arrow-slider {
    width: 24px;
    height: 24px;

    svg {
      width: 6px;
    }
  }
}

strong {
  font-weight: 700;
}

strong > * {
  font-weight: 700;
}

.video-block {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--ninety);
}

.iframe-holder {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;

  iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
  }
}

.videoCols-block {
  margin-top: var(--ninety);
}

.videoCols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  height: auto;
  width: 100%;
}

@media (max-width: 1000px) {
  .videoCols {
    grid-template-columns: 1fr;
  }
}

.archiveBanner-block {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
  text-align: center;
  -moz-transform: unset;
  vertical-align: middle;
  width: 100%;
  min-height: clamp(23.75rem, 21rem + 13.75vw, 37.5rem);
  display: flex;
  justify-content: center;
}

.archiveBanner-block__pseudo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  position: absolute;
  pointer-events: none;
  vertical-align: middle;
  width: 100%;
  z-index: 1;
}

.archiveBanner-block__title {
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
  padding: 24px 0 38px;
  padding-bottom: 20px;
  line-height: 1.17;
  color: #fff;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.archiveBanner-block__actions {
  margin: auto;
  padding-left: var(--fourty);
  padding-right: var(--fourty);
  margin-bottom: unset;
  position: relative;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 40px;
}

.archiveBanner-anchor {
  animation: t-arrow-bottom 1.7s ease infinite;
  justify-self: anchor-center;
  position: relative;
  display: flex;
	margin-left:auto;
	margin-right:auto;
	width:fit-content;
  svg path {
    fill: white;
  }
}

@keyframes t-arrow-bottom {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }

  55% {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.oborud-block {
  margin-top: var(--ninety);
}

.oborud-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  width: 100%;
  height: auto;
}

.oborud-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-self: stretch;
  gap: var(--twenty);
}

.oborud-item__photo {
  padding-bottom: 110%;
  position: relative;
  width: 100%;
}

.oborud-item__img,
.oborud-item__img-hover {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.1s linear;
  z-index: 2;
  background-position: 50% !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.oborud-item__img-hover {
  opacity: 0;
}

.oborud-item:has(.oborud-item__img-hover):hover {
  .oborud-item__img-hover {
    opacity: 1;
  }
  .oborud-item__img {
    opacity: 0;
  }
}

.oborud-item__title {
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.oborud-item__text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.oborud-item__text * {
  margin-bottom: 0px;
}

.oborud-item__text p,
.oborud-item__text li {
  font-size: 20px;
  line-height: 1.55;
  font-weight: 300;
}

.oborud-item__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .oborud-items {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .oborud-items {
    grid-template-columns: 1fr;
  }
}

.single-oborud #header {
  display: none;
}

.single-oborud {
  .hide-close {
    cursor: pointer;
  }
}

.single-oborud__head {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px;
}

.single-oborud__head-go {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 400;
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.55;
  gap: 20px;
}

.single-oborud__head-go__mobile {
  display: none;
  cursor: pointer;
}

@media (max-width: 700px) {
  .single-oborud__head-go__mobile {
    display: flex;
  }
  .single-oborud__head-go {
    display: none;
  }

  .single-oborud .hide-close {
    display: none;
  }
}

.single-oborud {
  .swiper-thumbs__holder {
    max-width: 560px;
    gap: 3px;
  }
  .swiper-thumbs__holder .holder {
    height: 560px;
    position: relative;
  }
  .swiper-thumbs__holder .holder-photo img {
    object-fit: cover;
  }
  .swiper-thumbs__holder .thumbs .swiper {
    height: 64px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    width: 60px;
    margin-right: 5px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide > * > * {
    height: 60px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide > * {
    height: 60px;
  }
  .single__product-thumbs__photo {
    position: relative;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:hover {
    opacity: 0.7;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    border: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide-thumb-active {
    border-color: rgba(0, 0, 0, 0.15);
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:last-child {
    margin-right: 0px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:hover,
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide-thumb-active {
    transform: unset;
  }
  .swiper-thumbs__holder .thumbs .swiper {
    display: flex;
  }
  .swiper-thumbs__holder .thumbs {
    position: relative;
    pointer-events: all;
  }
  .swiper-button-prev-thumbs {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    z-index: 3;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgb(255, 255, 255);
  }
  .swiper-button-next-thumbs {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    z-index: 3;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgb(255, 255, 255);
  }
}

.single-oborud__content {
  margin-top: var(--eighty);
}

.single-oborud__actions {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: var(--fifty);
}

.single-oborud__title {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
}

@media (max-width: 1200px) {
  .single-oborud__title {
    font-size: 22px;
  }
}

@media (max-width: 640px) {
  .single-oborud__title {
    font-size: 20px;
  }
}

.single-oborud__action-modal {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  color: #ffffff;
  background-color: #000000;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  height: 45px;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
  border: 0 none;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 700;
  margin-bottom: 20px;
  cursor: pointer;
}

.single-oborud__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-oborud__text ul,
.single-oborud__text ol {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single-oborud__text p,
.single-oborud__text li {
  font-weight: 300;
  margin-bottom: 0px;
  font-size: 20px;
}

.single-oborud__text li {
  text-indent: -28px;
}

@media (max-width: 1100px) {
  .single-oborud {
    .swiper-thumbs__holder {
      max-width: 360px;
    }
    .swiper-thumbs__holder .holder {
      height: 360px;
    }
  }
}

@media (max-width: 770px) {
  .single-oborud__actions {
    flex-direction: column;
  }
  .single-oborud__head {
    padding: 10px;
  }
  .single-oborud__content {
    margin-top: 0px;
  }
  .single-oborud {
    .swiper-thumbs__holder .holder {
      height: 100vw;
    }
    .swiper-button-prev-thumbs {
      width: 24px;
      height: 24px;
      left: 10px;

      svg {
        width: 6px;
      }
    }
    .swiper-button-next-thumbs {
      width: 24px;
      height: 24px;
      right: 10px;

      svg {
        width: 6px;
      }
    }
    .swiper-thumbs__holder {
      max-width: 100%;
    }
    .swiper-thumbs__holder .thumbs,
    .single-oborud__info {
      padding-left: 20px;
      padding-right: 20px;
    }
    .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
      width: 40px;
      margin-right: 5px;
    }
    .swiper-thumbs__holder .thumbs .swiper .swiper-slide > * > * {
      height: 40px;
    }
    .swiper-thumbs__holder .thumbs .swiper .swiper-slide > * {
      height: 40px;
    }
    .swiper-thumbs__holder .thumbs .swiper {
      height: 40px;
    }
    .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
      margin-right: 2px;
    }
  }
  .single-oborud__content > .container {
    padding: unset;
  }
  .single-oborud__action-modal {
    width: 100%;
  }
}

.post-type-archive-oborud {
  .text-block__text {
    max-width: 760px;
    margin: auto;

    * {
      opacity: 1;
    }

    p,
    li {
      line-height: 1.55;
    }
  }
}

.cart-icon {
  position: fixed;
  z-index: 200;
  top: 100px;
  right: 20px;
  background-color: hsla(0, 0%, 100%, 0.8);
  border-radius: 50px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;

  svg {
    stroke: #000;
    height: 40px;
    width: 40px;
    display: flex;
    margin: auto;
  }

  svg path {
    stroke: #000;
  }
}

.cart-icon__count {
  background-color: red;
  border-radius: 30px;
  bottom: -3px;
  box-sizing: border-box;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  height: 30px;
  line-height: 30px;
  min-width: 30px;
  padding: 0 5px;
  position: absolute;
  right: -3px;
  text-align: center;
  width: auto;
}

.archiveBannerSec-block {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
  text-align: center;
  -moz-transform: unset;
  vertical-align: middle;
  width: 100%;
  min-height: clamp(18.75rem, 12.5rem + 15.625vw, 31.25rem);
  display: flex;
  justify-content: center;
}

.archiveBannerSec-block__pseudo {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  height: 100%;
  overflow: hidden;
  position: relative;
  text-align: center;
  position: absolute;
  pointer-events: none;
  vertical-align: middle;
  width: 100%;
  z-index: 1;
}

.archiveBannerSec-block__title {
  display: flex;
  margin: auto;
  text-align: center;
  justify-content: center;
  padding: 24px 0 38px;
  padding-bottom: 20px;
  line-height: 1.17;
  color: #fff;
  position: relative;
  z-index: 2;
  font-weight: 600;
}

.archiveBannerSec-block__actions {
  margin: auto;
  padding-left: var(--fourty);
  padding-right: var(--fourty);
  margin-bottom: unset;
  position: relative;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 40px;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  max-width: 1160px;
}

.archiveBannerSec-block__subtitle {
  padding: 0 0 30px;
  color: #fff;
}

.archiveBannerSec-text {
  margin-top: auto;
  margin-bottom: auto;
  gap: 30px;
}

.archiveBannerSec-anchor {
  animation: t-arrow-bottom 1.7s ease infinite;
  justify-self: anchor-center;
  position: relative;
  display: flex;
  svg path {
    fill: white;
  }
}

.rent-block {
  margin-top: var(--ninety);
}

.rent-item {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.rent-items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: var(--ninety);
}

.rent-block {
  .swiper-thumbs__holder {
    max-width: 50vw;
    gap: 3px;
  }
  .swiper-thumbs__holder .holder {
    height: 800px;
    max-height: 40vw;
    position: relative;
  }
  .swiper-thumbs__holder .holder-photo img {
    object-fit: contain;
  }
  .swiper-thumbs__holder .thumbs .swiper {
    height: 64px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    width: 60px;
    margin-right: 5px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide > * > * {
    height: 60px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide > * {
    height: 60px;
  }
  .single__product-thumbs__photo {
    position: relative;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:hover {
    opacity: 0.7;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide {
    border: 2px solid transparent;
    transition: border-color 0.3s ease-in-out;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide-thumb-active {
    border-color: rgba(0, 0, 0, 0.15);
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:last-child {
    margin-right: 0px;
  }
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide:hover,
  .swiper-thumbs__holder .thumbs .swiper .swiper-slide-thumb-active {
    transform: unset;
  }
  .swiper-thumbs__holder .thumbs .swiper {
    display: flex;
  }
  .swiper-thumbs__holder .thumbs {
    position: relative;
    pointer-events: all;
  }
  .swiper-thumbs__holder .thumbs .swiper-wrapper {
    justify-content: center;
  }
  .swiper-button-prev-thumbs {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    z-index: 3;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgb(255, 255, 255);
  }
  .swiper-button-next-thumbs {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    z-index: 3;
    margin-top: auto;
    margin-bottom: auto;
    background-color: rgb(255, 255, 255);
  }
}

.rent-item__title {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}

.rent-item__btn {
  color: #ffffff;
  background-color: #ff4a4a;
  --border-width: 0px;
  border-style: none !important;
  border-radius: 30px;
  box-shadow: none !important;
  transition-duration: 0.2s;
  transition-property:
    background-color, color, border-color, box-shadow, opacity, transform, gap;
  transition-timing-function: ease-in-out;
  height: 45px;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
  align-items: center;
  font-weight: 600;
  line-height: 1.4;
  width: fit-content;
  place-content: center;
  display: flex;
  margin-bottom: 30px;
  cursor: pointer;
}

.rent-item__text {
  display: flex;
  flex-direction: column;
  gap: 10px;

  p,
  li {
    margin-bottom: 0px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 300;
    color: #000000;
  }
}

.rent-item__info {
  width: 100%;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1000px) {
  .rent-item {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .rent-items {
    gap: 50px;
  }
  .rent-block {
    .swiper-thumbs__holder {
      max-width: 100%;
      gap: 3px;
    }

    .swiper-thumbs__holder .holder {
      max-height: 100%;
      height: 100%;
    }

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

.contacts-block {
  margin-top: var(--ninety);
}

.contacts-block__title {
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: var(--fourty);
}

.contacts-block__subtitle {
  font-weight: 300;
  color: #000000;
  margin-bottom: var(--seventy);
  text-align: center;
  max-width: 767px;
  margin-left: auto;
  margin-right: auto;
}

.contacts-block__text {
  font-size: 18px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 5px;

  p,
  li {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 0px;
  }
}

.feedback-block {
  margin-top: var(--ninety);
}

.feedback-title {
  margin-bottom: var(--fourty);
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.feedback-subtitle {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 300;
  color: #000000;
  margin-bottom: var(--ninety);
}

.feedback-form__title {
  width: 100%;
  max-width: 460px;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 300;
  color: #000000;
}

.feedback-form__holder {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 30px;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;

  .wpcf7 {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  input,
  textarea {
    border: 1px solid #c7c7c7;
    background-color: #f4f7fb;
  }

  .wpcf7-submit {
    color: #ffffff;
    background-color: #ff4a4a;
    --border-width: 0px;
    border-style: none !important;
    border-radius: 30px;
    box-shadow: none !important;
    transition-duration: 0.2s;
    transition-property:
      background-color, color, border-color, box-shadow, opacity, transform, gap;
    transition-timing-function: ease-in-out;
    margin: 0 4px 8px 0;
    height: 60px;
    font-size: 16px;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 4px 8px 0;
    font-weight: 600;
    line-height: 1.4;
    width: fit-content;
    place-content: center;
    display: flex;
    cursor: pointer;
    margin-top: 10px;
  }

  form > p {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 1200px) {
  .feedback-form__title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .feedback-form__title {
    font-size: 22px;
  }
}

@media (max-width: 1000px) {
  .feedback-form__holder {
    flex-direction: column;

    .wpcf7-submit {
      width: 100%;
    }
  }
  .feedback-form__title {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

.advantages-block {
  margin-top: var(--ninety);
}

.advantages-title {
  font-weight: 600;
  color: #000000;
  margin-bottom: var(--fourty);
  text-align: center;
}

.advantages-subtitle {
  max-width: 560px;
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--ninety);
}

.advantages-holder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  width: 100%;
  gap: 30px;
}

.advantage {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 15px;

  svg {
    width: 30px;
    height: 30px;
    display: flex;
    flex-shrink: 0;
  }

  .advantage-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .advantage-name {
    font-weight: 600;
    color: #000000;
  }

  .advantage-value {
    font-weight: 300;
    color: #000000;
  }
}

@media (max-width: 900px) {
  .advantages-holder {
    grid-template-columns: 1fr;
  }
}

.service-card__btn-en {
	color: #ffffff;
    background-color: #1f5bff;
}

.lang-swap__outer-mobile{
	margin-top:auto;
	justify-content: flex-start;
}
