@charset "UTF-8";
@import "hamburgers.css";
@import "../libs/slick/slick.css";
@import "../libs/slick/slick-theme.css";
@import "../libs/fancybox/fancybox.css";
@import "../fonts/tilda-sans/font.css";
.justify-start {
  -webkit-box-pack: start;
  -moz-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}

.justify-stretch {
  -webkit-box-pack: stretch;
  -moz-box-pack: stretch;
  -ms-flex-pack: stretch;
  -webkit-justify-content: stretch;
  justify-content: stretch;
}

.justify-between {
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.justify-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
  -moz-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  justify-content: space-evenly;
}

.align-items-start {
  -webkit-box-align: start;
  -moz-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.align-items-end {
  -webkit-box-align: end;
  -moz-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.align-items-center {
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.align-items-stretch {
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  -ms-flex-align: stretch;
  -webkit-align-items: stretch;
  align-items: stretch;
}

.gap-5 {
  gap: 5px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::-webkit-scrollbar {
  width: 4px;
}
*::-webkit-scrollbar-track {
  background: rgb(238, 238, 238);
}
*::-webkit-scrollbar-thumb {
  background-color: rgb(253, 129, 8);
}

body {
  margin: 0;
}
body.no-scroll {
  overflow-y: hidden;
}

img[src$=no-cover] {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.container {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1500px) {
  .container {
    max-width: 95%;
  }
}

a {
  text-decoration: unset;
  color: rgb(0, 0, 0);
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
a:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  height: 1px;
  background: currentColor;
  -webkit-transition: left 0.2s ease, right 0.2s ease;
  -o-transition: left 0.2s ease, right 0.2s ease;
  transition: left 0.2s ease, right 0.2s ease;
}
a .active:before {
  left: 0;
  right: 0;
}
a:hover {
  color: rgb(0, 0, 0);
}
a:hover:before {
  left: 0;
  right: 0;
}
a.no-hover:before {
  display: none;
}

.btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  color: rgb(255, 255, 255);
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
  backdrop-filter: blur(4px);
}
.btn:before {
  display: none;
}
.btn.btn-primary {
  background: rgb(253, 129, 8);
  border-color: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
.btn.btn-primary:hover {
  background: transparent;
  color: rgb(253, 129, 8);
}
.btn.btn-secondary {
  background: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.btn.btn-secondary:hover {
  background: transparent;
  color: rgb(0, 0, 0);
}
.btn.btn-black {
  background: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
.btn.btn-black:hover {
  background: rgb(253, 129, 8);
  border-color: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
.btn[disabled] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

[data-fancybox]:not([class*=video]) {
  position: relative;
  cursor: pointer;
  display: block;
}
[data-fancybox]:not([class*=video]):after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-image: url("data:image/svg+xml,%3Csvg fill='rgb(253, 129, 8)' width='800px' height='800px' viewBox='0 0 32 32' enable-background='new 0 0 32 32' id='Glyph' version='1.1' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M27.414,24.586l-5.077-5.077C23.386,17.928,24,16.035,24,14c0-5.514-4.486-10-10-10S4,8.486,4,14 s4.486,10,10,10c2.035,0,3.928-0.614,5.509-1.663l5.077,5.077c0.78,0.781,2.048,0.781,2.828,0 C28.195,26.633,28.195,25.367,27.414,24.586z M7,14c0-3.86,3.14-7,7-7s7,3.14,7,7s-3.14,7-7,7S7,17.86,7,14z' id='XMLID_227_'/%3E%3Cpath d='M19,14c0,0.552-0.448,1-1,1h-3v3c0,0.552-0.448,1-1,1s-1-0.448-1-1v-3h-3c-0.552,0-1-0.448-1-1s0.448-1,1-1 h3v-3c0-0.552,0.448-1,1-1s1,0.448,1,1v3h3C18.552,13,19,13.448,19,14z' id='XMLID_230_'/%3E%3C/svg%3E");
  background-size: 60px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  opacity: 0;
  visibility: hidden;
}
[data-fancybox]:not([class*=video]):hover:after {
  opacity: 0.7;
  visibility: visible;
}

.flex-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.flex-line:not([class*=gap-]) {
  gap: 10px;
}

.icon-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  color: rgb(253, 129, 8);
}
.phone svg {
  width: 20px;
  height: 20px;
}
.phone a, .phone a > div {
  font-weight: 700;
}
.phone-block label {
  color: #B2B2B2;
  margin: 0 0 5px 30px;
  display: block;
  font-size: 12px;
}

.email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgb(253, 129, 8);
}
.email svg {
  width: 20px;
  height: 20px;
}
.email a {
  font-size: 14px;
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
.socials a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  color: rgb(255, 255, 255);
}
.socials a:before {
  display: none;
}
.socials a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.socials a:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  border-color: rgb(253, 129, 8);
  color: rgb(253, 129, 8);
}

.form {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.form-control {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50px;
  outline: none;
  padding: 15px 20px;
  margin: 10px 0;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  width: 100%;
  font-size: 14px;
}
.form-control.error {
  outline: 3px solid rgb(253, 129, 8);
}
.form-control:hover, .form-control:focus, .form-control:active {
  border-color: rgb(253, 129, 8);
}
.form-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid rgb(140, 140, 140);
  border-radius: 3px;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 120%;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form-checkbox input[type=checkbox] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}
.form-checkbox:has(input[type=checkbox]:checked) {
  background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.1111 0H1.88889C0.85 0 0 0.85 0 1.88889V15.1111C0 16.15 0.85 17 1.88889 17H15.1111C16.15 17 17 16.15 17 15.1111V1.88889C17 0.85 16.15 0 15.1111 0V0ZM6.61148 13.223L1.88926 8.68236L3.21148 7.41099L6.61148 10.6802L13.7893 3.77852L15.1115 5.04988L6.61148 13.223V13.223Z' fill='rgb(140, 140, 140)'/%3E%3C/svg%3E%0A");
}
.form-title {
  margin-bottom: 15px;
}
.form-title, .form-title * {
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}
.form-title b, .form-title strong {
  color: rgb(253, 129, 8);
}
.form-subtitle {
  margin-bottom: 15px;
}
.form-subtitle, .form-subtitle * {
  font-size: 18px;
  font-weight: 600;
}
.form-subtitle b, .form-subtitle strong {
  color: rgb(253, 129, 8);
}
.form-text b, .form-text strong {
  color: rgb(253, 129, 8);
}
.form-group-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.form-group-line > * {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
}
.form-file {
  text-align: left;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}
.form-file label {
  color: rgb(253, 129, 8);
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form-file label:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
}
.form-file label:hover {
  color: rgb(0, 0, 0);
}
.form-file input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.form-file:hover label {
  color: rgb(0, 0, 0);
}
.form textarea {
  border-radius: 12px;
  min-height: 100px;
}
.form button {
  margin: 10px auto 0;
  display: block;
}
.form > .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  text-align: left;
  gap: 10px;
}
.form .agree {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 1fr;
  grid-template-columns: 20px 1fr;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  margin: 10px auto;
}
.form .agree .text, .form .agree .text * {
  color: rgb(51, 51, 51);
  font-size: 11px;
  font-weight: 300;
}
.form .agree .text a {
  display: inline;
  text-decoration: underline;
}
.form .agree .text a:before {
  display: none;
}
.form .agree .text a:hover {
  color: rgb(0, 0, 0);
}
.form .success-message {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.form .success-message .icon {
  width: 100px;
  height: 100px;
  position: relative;
}
.form .success-message .icon svg {
  width: 100%;
  height: auto;
  color: rgb(23, 162, 21);
}
.form .success-message .icon:before, .form .success-message .icon:after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgb(23, 162, 21);
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  opacity: 0;
}
.form .success-message .info {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.5s ease 1.8s;
  -o-transition: all 0.5s ease 1.8s;
  transition: all 0.5s ease 1.8s;
}
.form .success-message .title {
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
  margin-bottom: 20px;
}
.form .success-message .text {
  font-size: 13px;
  font-weight: 300;
}
.form .success-message.show {
  opacity: 1;
  visibility: visible;
}
.form .success-message.show .icon {
  -webkit-animation: jump-animate 1.7s linear;
  animation: jump-animate 1.7s linear;
}
.form .success-message.show .icon:before, .form .success-message.show .icon:after {
  -webkit-animation: border-animate 1s linear;
  animation: border-animate 1s linear;
}
.form .success-message.show .icon:after {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.form .success-message.show .info {
  max-height: 200px;
}
@-webkit-keyframes jump-animate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  80% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jump-animate {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  20% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 1;
  }
  30% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  80% {
    -webkit-transform: scale(1.8);
    transform: scale(1.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes border-animate {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@keyframes border-animate {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
  }
}
@media (max-width: 900px) {
  .form .form-group-line {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .form .form-group-line > * {
    width: 100%;
  }
  .form .agree {
    width: auto;
  }
  .form .agree br {
    display: none;
  }
}

.modal {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  z-index: 10;
}
.modal .wrapper {
  background: rgb(255, 255, 255);
  min-width: 650px;
  max-width: 95%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  padding: 60px;
}
.modal .wrapper .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: rgb(0, 0, 0);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  z-index: 10;
}
.modal .wrapper .btn-close svg {
  width: 16px;
  height: 16px;
}
.modal .form {
  width: 80%;
  margin: auto;
}
.modal .form-title {
  font-size: 36px;
  font-weight: 400;
  line-height: 44px;
  text-align: center;
}
.modal .form-control {
  border: 2px solid rgb(238, 238, 238);
}
.modal .form-control:hover, .modal .form-control:focus, .modal .form-control:active {
  border-color: rgb(253, 129, 8);
}
.modal .form > .info {
  font-size: 13px;
  font-weight: 300;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 10px 0;
}
.modal .form > .info br {
  display: none;
}
.modal .form button {
  margin: 20px auto;
}
.modal .form .agree {
  margin-top: 10px;
}
.modal .form .success-message .text br {
  display: none;
}
.modal.show {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 1000px) {
  .modal .wrapper {
    min-width: auto;
    padding: 30px;
  }
  .modal .form {
    width: 100%;
  }
  .modal .form .form-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
  }
  .modal .form > .info br {
    display: block;
  }
  .modal .form .success-message .title {
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
  }
  .modal .form .success-message .text br {
    display: block;
  }
}
@media (max-width: 500px) {
  .modal .wrapper {
    width: 95%;
  }
}

.page-title {
  font-size: 44px;
  font-weight: 700;
  line-height: 52px;
  margin: 40px 0;
}
@media (max-width: 1000px) {
  .page-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 40px;
  }
}
.page-content, .page-content * {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

.block-title-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
}
.block-title-line a {
  margin-top: 15px;
  display: block;
  color: rgb(253, 129, 8);
  font-size: 15px;
}
@media (max-width: 1000px) {
  .block-title-line {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 40px;
  }
  .block-title-line a {
    margin: 0;
  }
}
.block-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 145%;
  margin: 50px 0;
}
@media (max-width: 1000px) {
  .block-title {
    margin: 50px 0 20px;
    font-size: 36px;
    font-weight: 400;
    line-height: 42px;
  }
}
.block-subtitle {
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  margin: -45px 0 50px;
}
@media (max-width: 1000px) {
  .block-subtitle {
    margin: -15px 0 20px;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
  }
}
.block-subtext {
  color: rgb(163, 163, 163);
  margin: -30px 0 50px 25px;
  min-height: 1px;
}
.block-subtext, .block-subtext * {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
@media (max-width: 1000px) {
  .block-subtext {
    margin: -15px 0 20px;
  }
  .block-subtext, .block-subtext * {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
}

.slick-slider {
  margin: 0 -15px;
}
.slick-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slick-slider .slick-slide {
  height: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin: 0 15px;
}
.slick-slider .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.slick-slider .slick-arrow.tpl-arrow.prev {
  right: calc(100% + 45px);
}
.slick-slider .slick-arrow.tpl-arrow.next {
  left: calc(100% + 45px);
}
.slick-slider .slick-arrow.tpl-arrow:hover {
  color: rgb(253, 129, 8);
}
.slick-slider .slick-arrow.tpl-arrow-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  overflow: hidden;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.slick-slider .slick-arrow.tpl-arrow-circle svg {
  height: 20px;
  width: auto;
  position: absolute;
}
.slick-slider .slick-arrow.tpl-arrow-circle.prev {
  left: -30px;
}
.slick-slider .slick-arrow.tpl-arrow-circle.prev svg {
  left: 30%;
}
.slick-slider .slick-arrow.tpl-arrow-circle.next {
  right: -30px;
}
.slick-slider .slick-arrow.tpl-arrow-circle.next svg {
  right: 30%;
}
.slick-slider .slick-arrow.tpl-arrow-circle:hover {
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
.slick-slider .slick-dots {
  position: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 0;
}
.slick-slider .slick-dots li {
  background: rgb(163, 163, 163);
  margin: 0;
  padding: 0;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.slick-slider .slick-dots li button {
  display: none;
}
.slick-slider .slick-dots li:hover {
  background: rgb(253, 129, 8);
}
.slick-slider .slick-dots li.slick-active {
  width: 10px;
  height: 10px;
  background: rgb(253, 129, 8);
}
.slick-slider .slick-dots li:first-child:last-child {
  display: none;
}
@media (min-width: 900px) {
  .slick-slider.no-transform .slick-track {
    -webkit-transform: unset !important;
    -ms-transform: unset !important;
    transform: unset !important;
  }
}

.video-wrapper {
  width: 100%;
  position: relative;
  color: rgb(255, 255, 255);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  cursor: pointer;
  background: rgb(0, 0, 0);
  border-radius: 20px;
  overflow: hidden;
  display: block;
  aspect-ratio: 1.8/1;
}
.video-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.7;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.video-wrapper svg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  opacity: 0.7;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  pointer-events: none;
}
.video-wrapper:hover {
  color: rgb(253, 129, 8);
}
.video-wrapper:hover img, .video-wrapper:hover iframe {
  opacity: 1;
}

.tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: "column";
  -ms-flex-direction: "column";
  flex-direction: "column";
  position: absolute;
  top: 30px;
  left: 30px;
  gap: 7px;
}
.tags .tag {
  padding: 8px 14px;
  border-radius: 16px;
  font-size: 13px;
  background: rgb(140, 140, 140);
  color: rgb(255, 255, 255);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 1;
}
.tags .tag.builtup {
  background: rgb(253, 129, 8);
}
.tags .tag.passed {
  background: rgb(255, 255, 255);
  color: rgb(51, 51, 51);
}
.tags .tag.unsold_houses {
  color: rgb(51, 51, 51);
}
.tags .tag.soldout {
  background: #FF4433;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 40px;
  gap: 20px;
}
.pagination li a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 24px;
  background: transparent;
}
.pagination li a:before {
  display: none;
}
.pagination li.active a {
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
@media (max-width: 1100px) {
  .pagination {
    gap: 10px;
  }
  .pagination li a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .pagination li.control {
    display: none;
  }
}

.hamburger {
  display: none;
  position: relative;
  z-index: 1000;
  opacity: 1 !important;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  z-index: 999;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
  transform: translateX(-100%);
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
  padding: 20px;
}
.mobile-menu a {
  color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 400;
}
.mobile-menu.show {
  transform: translateX(0);
}

ul.menu-dropdown ul.children {
  display: none;
}
ul.menu-dropdown a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
ul.menu-dropdown a:before {
  display: none;
}
ul.menu-dropdown a.with-icon {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px auto;
  grid-template-columns: 30px auto;
}
ul.menu-dropdown a.with-children {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 30px;
  grid-template-columns: auto 30px;
}
ul.menu-dropdown a.with-icon.with-children {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30px auto 30px;
  grid-template-columns: 30px auto 30px;
}
ul.menu-dropdown a .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 30px;
  filter: grayscale(1) brightness(1.2);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
ul.menu-dropdown a .menutitle {
  font-size: 20px;
}
ul.menu-dropdown a .arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 7px;
  color: rgb(140, 140, 140);
}
ul.menu-dropdown a .arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
ul.menu-dropdown li.parent {
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
ul.menu-dropdown li.active > div > a {
  color: rgb(253, 129, 8);
}
ul.menu-dropdown li.active > div > img, ul.menu-dropdown li.active > div > svg {
  filter: grayscale(0) brightness(1);
}
ul.menu-dropdown > li {
  margin: 10px 0;
}
ul.menu-dropdown > li.parent > a {
  border-bottom: 2px solid transparent;
}
ul.menu-dropdown > li.parent.show {
  background: rgb(243, 243, 243);
  border-radius: 10px;
  padding: 10px;
}
ul.menu-dropdown > li.parent.show > a {
  border-color: rgb(253, 129, 8);
  padding-bottom: 5px;
}
ul.menu-dropdown > li.parent.show > a .icon {
  filter: grayscale(0) brightness(1);
}
ul.menu-dropdown > li.parent.show > a .arrow {
  color: rgb(253, 129, 8);
}
ul.menu-dropdown > li.parent > ul.children {
  padding-left: 40px;
}
ul.menu-dropdown > li.parent > ul.children > li {
  margin: 10px 0;
}
ul.menu-dropdown > li.parent > ul.children > li:last-child {
  margin-bottom: 0;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 5px;
  color: rgb(140, 140, 140);
}
.rating[data-rating="5"] svg:nth-child(-n+5), .rating[data-rating="4"] svg:nth-child(-n+4), .rating[data-rating="3"] svg:nth-child(-n+3), .rating[data-rating="2"] svg:nth-child(-n+2), .rating[data-rating="1"] svg:nth-child(-n+1) {
  color: rgb(253, 129, 8);
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  list-style: none;
  position: relative;
}
.breadcrumb .separator {
  color: rgb(51, 51, 51);
}
.breadcrumb .item {
  color: rgb(51, 51, 51);
}
.breadcrumb .item.home a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  color: rgb(61, 181, 174);
}
.breadcrumb .item.home a svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.breadcrumb .item.home a:hover {
  color: rgb(0, 0, 0);
}
.breadcrumb .item.active {
  color: rgb(140, 140, 140);
}
@media (max-width: 1100px) {
  .breadcrumb:before {
    display: none;
  }
}

.nav-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.nav-filter .item {
  color: rgb(0, 0, 0);
  font-size: 14px;
  font-weight: 300;
  border: 2px solid rgb(238, 238, 238);
  border-radius: 16px;
  cursor: pointer;
  padding: 6px 15px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.nav-filter .item:hover {
  border-color: rgb(253, 129, 8);
  color: rgb(253, 129, 8);
}
.nav-filter .item.active {
  background: rgb(253, 129, 8);
  border-color: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
.nav-filter.sort .title {
  font-size: 14px;
  font-weight: 300;
  color: rgb(140, 140, 140);
}
.nav-filter.sort .item {
  color: rgb(51, 51, 51);
  border: none;
  border-radius: 0;
  padding: 0;
}
.nav-filter.sort .item.active {
  color: rgb(253, 129, 8);
  background: transparent;
}
.nav-filter ~ .nav-filter.sort {
  margin-top: -30px;
}

.loader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  backdrop-filter: blur(5px);
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: -15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.loader .icon {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader .icon div {
  box-sizing: border-box;
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader .icon div:after {
  box-sizing: border-box;
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: rgb(253, 129, 8);
  margin: -3.6px 0 0 -3.6px;
}
.loader .icon div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader .icon div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.loader .icon div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader .icon div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.loader .icon div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader .icon div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.loader .icon div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader .icon div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader .icon div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader .icon div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.loader .icon div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader .icon div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.loader .icon div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader .icon div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.loader .icon div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader .icon div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader.show {
  opacity: 1;
  visibility: visible;
}

.tabs .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 40px;
}
.tabs .nav .item {
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  position: relative;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.tabs .nav .item:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  right: 50%;
  height: 3px;
  background: currentColor;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.tabs .nav .item.active {
  color: rgb(253, 129, 8);
  border-color: rgb(253, 129, 8);
}
.tabs .nav .item.active:before {
  left: 0;
  right: 0;
}
.tabs-content > .item {
  display: none;
}
.tabs-content > .item.active {
  display: block;
}
@media (max-width: 1000px) {
  .tabs .nav {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    gap: 30px;
  }
}

.vladweb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 5px;
  font-size: 10px;
  font-weight: 250;
  line-height: 15px;
  text-align: right;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.vladweb svg {
  fill: rgb(253, 129, 8);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.vladweb:hover {
  color: rgb(253, 129, 8);
}
.vladweb:hover svg {
  fill: #b00923;
}

[class^=item] .image {
  display: block;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}
[class^=item] .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.video .title {
  font-size: 22px;
  margin-top: 10px;
}
.item.used-equipment {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 350px 1fr;
  grid-template-columns: 350px 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.item.used-equipment .image {
  height: 260px;
}
.item.used-equipment .title {
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}
.item.used-equipment .text {
  margin: 20px 0;
}
.item.used-equipment .text p, .item.used-equipment .text span, .item.used-equipment .text b, .item.used-equipment .text strong {
  font-size: 22px;
  line-height: 34px;
  margin: 0;
}
/* .item.used-equipment .price {
  font-size: 22px;
  font-weight: 500;
  line-height: 34px;
  color: rgb(253, 129, 8);
} */
@media (max-width: 1000px) {
  .item.used-equipment {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    border-bottom: 1px solid rgba(217, 224, 238, 0.67);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .item.used-equipment .title, .item.used-equipment .price {
    font-size: 18px;
    line-height: normal;
  }
  .item.used-equipment .text p, .item.used-equipment .text span, .item.used-equipment .text b, .item.used-equipment .text strong {
    font-size: 18px;
    line-height: normal;
  }
}
.item.article {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
}
.item.article:before {
  display: none;
}
.item.article:after {
  content: "";
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.article .image {
  height: 340px;
}
.item.article .title {
  background: linear-gradient(90deg, #131315 0%, #414049 100%);
  border-radius: 12px;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: -50%;
  left: 4px;
  right: 4px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.article:hover:after {
  opacity: 0;
}
.item.article:hover .title {
  bottom: 4px;
}
.item.category {
  display: block;
  color: rgb(0, 0, 0);
  text-align: center;
  cursor: pointer;
}
.item.category .image {
  width: 75px;
  height: 75px;
  border-radius: 7px;
  overflow: hidden;
  margin: 0 auto 5px auto;
}
.item.category .image * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.item.category .title {
  border-radius: 46px;
  background: rgb(247, 248, 250);
  padding: 5px 10px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.item.category:hover .image * {
  transform: scale(1.1);
}
.item.category:hover .title {
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
.item.category.active .title {
  background: rgb(160, 170, 194);
  color: rgb(0, 0, 0);
}
@media (max-width: 600px) {
  .item.category .title {
    font-size: 14px;
    min-height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.item.product {
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid rgb(255, 250, 250);
  border-radius: 12px;
  background: rgb(255, 255, 255);
  text-align: center;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.item.product .title {
  font-size: 22px;
  min-height: 42px;
}
.item.product .description{
  font-size: 18px;
}
.item.product .image {
  max-height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin: 15px auto;
  width: 80%;
  aspect-ratio: 1/1;
}
#page-catalog .products.all .item.product {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 1fr;
  grid-template-columns: 100px 1fr;
  grid-auto-rows: min-content;
  grid-template-rows: auto;
  -webkit-box-align: unset;
  -moz-box-align: unset;
  -ms-flex-align: unset;
  -webkit-align-items: unset;
  align-items: unset;
  text-align: left;
}
#page-catalog .products.all .item.product .info {
  display: contents;
}
#page-catalog .products.all .item.product .info .image {
  grid-area: 1/1/4/2;
  max-height: unset;
  width: auto;
  margin: 0;
}
#page-catalog .products.all .item.product .info .title {
  min-height: auto;
  margin-top: 10px;
}
#page-catalog .products.all .item.product .btn {
  width: fit-content;
  height: fit-content;
  margin: auto 0 0 auto;
}
.item.product-short {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 130px 1fr;
  grid-template-columns: 130px 1fr;
  gap: 20px;
}
.item.product-short .image {
  max-height: 110px;
}
.item.product-short .title {
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: normal !important;
}
.item.product-short .more {
    margin-top: 5px;
  font-size: 20px !important;
  font-weight: 400 !important;
  line-height: normal !important;
  text-decoration: underline;
}

#section {
  /* ~~~~~~ Главная страница ~~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
}
#section-main-top-banner {
  height: 550px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 250px;
  margin-bottom: 40px;
}
#section-main-top-banner .title {
  color: rgb(253, 129, 8);
  font-size: 45px;
  font-weight: 700;
}
#section-main-top-banner .text {
  font-size: 42px;
  color: rgb(255, 255, 255);
}
@media (max-width: 1000px) {
  #section-main-top-banner {
    height: auto;
    padding-top: 120px;
  }
  #section-main-top-banner .title {
    font-size: 32px;
  }
  #section-main-top-banner .text {
    font-size: 20px;
  }
}
#section-main-advantages {
  margin: 40px 0;
  padding-bottom: 10px;
}
#section-main-advantages .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 70px;
}
#section-main-advantages .list .item {
  min-width: 150px;
}
#section-main-advantages .list .item .icon {
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
#section-main-advantages .list .item .icon * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#section-main-advantages .list .item .text {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: rgb(255, 255, 255);
  position: relative;
  margin-top: 15px;
}
#section-main-advantages .list .item .text:before {
  content: "";
  display: block;
  position: absolute;
  width: 90px;
  height: 1px;
  background: rgb(140, 140, 140);
  top: -5px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 1000px) {
  #section-main-advantages .list {
    gap: 30px;
  }
}
#section-main-menu {
  margin: 40px 0;
}
#section-main-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 35px;
}
#section-main-menu ul a {
  background: rgba(217, 224, 238, 0.67);
  border-radius: 33px;
  padding: 7px 15px;
  min-width: 240px;
  text-align: center;
  display: block;
  font-size: 17px;
  font-weight: 500;
}
#section-main-menu ul a:before {
  display: none;
}
#section-main-menu ul a:hover {
  color: rgb(255, 255, 255);
  background: rgb(160, 170, 194);
}
@media (max-width: 600px) {
  #section-main-menu ul {
    gap: 20px;
  }
  #section-main-menu ul a {
    min-width: auto;
  }
}
#section-main-banner .image * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#section-consultation {
  margin: 40px 0;
}
#section-consultation .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 30px;
}
#section-consultation .content .title {
  font-size: 35px;
  margin-bottom: 20px;
}
#section-consultation .content .text, #section-consultation .content .text * {
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
}
#section-consultation .content .text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#section-consultation .content .text ul li {
  position: relative;
  padding-left: 25px;
}
#section-consultation .content .text ul li:before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='16' viewBox='0 0 19 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.5324 0.159031C14.1039 2.0251 9.3845 6.08452 6.22031 10.7494C5.52696 11.7716 5.41213 11.9173 5.37317 11.8247C4.94614 10.8107 3.41913 9.38863 2.04752 8.72761C0.97116 8.20884 -0.103643 8.69956 0.00800815 9.6588C0.0906709 10.3693 0.372011 10.6989 1.26428 11.1305C2.79492 11.871 3.49998 12.6118 4.80594 14.8516C5.18846 15.5077 5.52123 16.0241 5.54535 15.9991C5.56942 15.9742 5.7742 15.5112 6.00044 14.9703C8.60095 8.75172 13.1507 3.37761 18.2994 0.442971C18.6847 0.22337 19 0.0329558 19 0.0198216C19 -0.026053 18.9034 0.00269001 18.5324 0.159031Z' fill='%23FD8108'/%3E%3C/svg%3E%0A");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  top: 10px;
  left: 0;
}
#section-consultation .content .text ul li {
  margin: 10px 0;
}
#section-consultation .content .text-bottom {
  color: rgb(253, 129, 8);
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  padding-left: 25px;
  margin-top: 20px;
}
#section-consultation .form {
  border-radius: 12px;
  background: rgb(247, 248, 250);
  padding: 30px;
}
@media (max-width: 1200px) {
  #section-consultation .wrapper {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
  #section-consultation .content .title {
    font-size: 30px;
  }
  #section-consultation .content .text, #section-consultation .content .text * {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
  }
  #section-consultation .content .text-bottom {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
  }
}
#section-video {
  margin: 40px 0;
}
#section-video .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
#section-video .list .item .title {
  display: none;
}
@media (max-width: 600px) {
  #section-video .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
#section-articles {
  margin: 40px 0;
}
#section-articles .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 10px;
}
@media (max-width: 600px) {
  #section-articles .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

#page-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 300px 1fr;
  grid-template-columns: 300px 1fr;
  gap: 35px;
}
#page-wrapper #aside {
  height: fit-content;
}
#page-wrapper #aside ul.menu {
  background: rgb(247, 248, 250);
  border-radius: 12px;
  padding: 10px;
}
#page-wrapper #aside ul.menu li {
  padding: 7px 20px;
  border-radius: 33px;
  margin: 5px 0;
}
#page-wrapper #aside ul.menu li a {
  font-size: 18px;
  font-weight: 500;
}
#page-wrapper #aside ul.menu li.active {
  background: rgba(217, 224, 238, 0.67);
}
#page-wrapper #page-content .page-title:first-child {
  margin-top: 0;
}
@media (max-width: 1000px) {
  #page-wrapper {
    display: block;
  }
  #page-wrapper #aside {
    display: none;
  }
}
#page-main {
  position: relative;
}
#page-main header.fixed .top .logo-white {
  display: none;
}
#page-main header.fixed .top .logo-black {
  display: block;
}
#page-main header:not(.fixed) {
  color: rgb(255, 255, 255);
  background: transparent;
}
/* #page-main header:not(.fixed) a:not(:hover) {
  color: rgb(255, 255, 255);
} */

#page-main header:not(.fixed) .hamburger .hamburger-inner, #page-main header:not(.fixed) .hamburger .hamburger-inner::before, #page-main header:not(.fixed) .hamburger .hamburger-inner::after, #page-main header:not(.fixed) .hamburger.is-active .hamburger-inner, #page-main header:not(.fixed) .hamburger.is-active .hamburger-inner::before, #page-main header:not(.fixed) .hamburger.is-active .hamburger-inner::after {
  background-color: rgb(255, 255, 255);
}
#page-contacts .company-name {
  font-size: 20px;
  margin-bottom: 20px;
}
#page-contacts .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin: 15px 0;
}
#page-contacts .info label {
  display: block;
  min-width: 150px;
  font-size: 18px;
  font-weight: 400;
}
#page-contacts .info a.file {
  font-weight: 400;
}
#page-contacts .info a.file:not(:hover) {
  color: rgb(253, 129, 8);
}
#page-contacts .offices .info .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}
#page-contacts .offices .info .list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px;
}
#page-contacts .offices .info .list .item.with-socials {
  width: 100%;
}
#page-contacts .offices .info.emails a {
  text-decoration: underline;
}
#page-contacts .contacts-bottom {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0 60px;
}
#page-contacts .contacts-bottom .map {
  border-radius: 12px;
  overflow: hidden;
}
#page-contacts .contacts-bottom .map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#page-contacts .contacts-bottom .driving_directions {
  position: relative;
}
#page-contacts .contacts-bottom .driving_directions .image {
  border-radius: 12px;
  overflow: hidden;
}
#page-contacts .contacts-bottom .driving_directions .image * {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#page-contacts .contacts-bottom .driving_directions a {
  color: rgb(218, 0, 5);
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
}
#page-contacts .contacts-bottom .driving_directions a:hover {
  color: rgb(253, 129, 8);
}
@media (max-width: 1200px) {
  #page-contacts .contacts-bottom {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 60px;
  }
  #page-contacts .contacts-bottom .map iframe {
    height: 50vw;
  }
}
@media (max-width: 800px) {
  #page-contacts .info {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-direction: normal;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0;
  }
  #page-contacts .btn-question .text {
    font-size: 22px;
    padding: 0 15px;
    width: calc(100% - 60px);
  }
  #page-contacts .btn-question .icon {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
}
#page-videos .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}
#page-information-blocks .list {
  counter-reset: block;
}
#page-information-blocks .list .block {
  position: relative;
  padding-left: 60px;
  margin-bottom: 20px;
}
#page-information-blocks .list .block:before {
  content: "";
  display: block;
  position: absolute;
  counter-increment: block 1;
  content: counter(block);
  border-radius: 50%;
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  width: 40px;
  height: 40px;
  top: -2px;
  left: 0;
}
#page-information-blocks .list .block .title {
  margin-bottom: 10px;
  font-size: 30px;
}
#page-information-blocks .list .block .images {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin: 40px 0;
}
#page-information-blocks .list .block .images .item .image {
  /* height: 300px; */
}

#page-information-blocks .list .block .images .item .image * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  height: auto;
}
#page-information-blocks .list .block .images .item .title {
  font-size: 22px;
  margin-top: 10px;
}
.kompanii-flex {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.kompanii-flex img{
    width: calc(33% - 14px);
    
}
@media (max-width: 1000px) {
    .kompanii-flex img{
    width: calc(50% - 11px);
    
}
  #page-information-blocks .list .block {
    padding-left: 40px;
  }
  #page-information-blocks .list .block:before {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
  #page-information-blocks .list .block .images {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
  #page-information-blocks .list .block .images .item .image {
    height: auto;
  }
}
#page-articles .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 10px;
}
#page-catalog .category-list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px 15px;
  margin-bottom: 30px;
}
#page-catalog .category-list .item:nth-child(n+9) {
  display: none;
}
#page-catalog .btn.btn-more {
  background: rgb(247, 248, 250);
  color: rgb(0, 0, 0);
  border-radius: 8px;
  display: block;
  width: 60%;
  margin: 20px auto 30px;
  text-align: center;
  font-weight: 500;
}
#page-catalog .btn.btn-more:hover {
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
#page-catalog .products {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px 20px;
  margin-bottom: 30px;
}
#page-catalog .products .category {
  display: none;
  margin: 25px 0 10px;
  font-size: 30px;
}
#page-catalog .page-title {
    margin-bottom: 15px;
}
#page-catalog .products.all {
  -ms-grid-columns: 1fr [1];
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
#page-catalog .products.all .category {
  display: block;
}
@media (max-width: 600px) {
    .kompanii-flex {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.kompanii-flex img{
    width: calc(33% - 14px);
    
}
  #page-catalog .category-list {
    -ms-grid-columns: 1fr [2];
    grid-template-columns: repeat(2, 1fr);
  }
  #page-catalog .products {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
#page-product .description {
  font-size: 30px;
  margin-bottom: 20px;
}
#page-product .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 470px 1fr;
  grid-template-columns: 470px 1fr;
  gap: 30px;
  margin: 30px 0;
}
#page-product .wrapper .image {
  height: fit-content;
}
#page-product .wrapper .image * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 6px;
}
#page-product .wrapper .characteristic {
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
}
#page-product .wrapper .characteristic p:first-child {
  margin-top: 0;
}
#page-product .wrapper .characteristic p:last-child {
  margin-bottom: 0;
}
#page-product .gallery-block {
  margin: 30px 0;
}
#page-product .gallery-block .list {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}
#page-product .gallery-block .list .item {
  border-radius: 6px;
  overflow: hidden;
}
#page-product .gallery-block .list .item img, #page-product .gallery-block .list .item svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1000px) {
  #page-product .description {
    font-size: 20px;
  }
  #page-product .wrapper {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 500px) {
  #page-product .gallery-block .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}
#page-equipment .tabs .btn.btn-more {
  background: rgb(247, 248, 250);
  color: rgb(0, 0, 0);
  border-radius: 8px;
  display: block;
  width: 60%;
  margin: -20px auto 20px;
  text-align: center;
  font-weight: 500;
}
#page-equipment .tabs .btn.btn-more:hover {
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
#page-equipment .tabs .nav {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
  margin: 40px 0;
}
#page-equipment .tabs .nav .item {
  background: rgb(247, 248, 250);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  height: 100%;
}
#page-equipment .tabs .nav .item .title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 15px;
}
#page-equipment .tabs .nav .item .text {
  font-size: 20px;
}
#page-equipment .tabs .nav .item:before {
  display: none;
}
#page-equipment .tabs .nav .item .counter {
  position: absolute;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 20px;
  background: rgb(237, 243, 255);
  border-radius: 50%;
  top: -20px;
  left: -20px;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
#page-equipment .tabs .nav .item:hover {
  background: rgb(160, 170, 194);
}
#page-equipment .tabs .nav .item.active {
  color: rgb(0, 0, 0);
  background: rgba(217, 224, 238, 0.67);
}
#page-equipment .tabs .nav .item.active .counter {
  color: rgb(255, 255, 255);
  background: rgb(253, 129, 8);
}
#page-equipment .tabs .nav .item:nth-child(n+7) {
  display: none;
}
#page-equipment .tabs-content > .item, #page-equipment .tabs-content > .item *:not(.btn) {
  color: rgb(0, 0, 0);
}
#page-equipment .tabs-content > .item .top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40px 1fr;
  grid-template-columns: 40px 1fr;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
#page-equipment .tabs-content > .item .top .counter {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-size: 20px;
  color: rgb(255, 255, 255);
  background: rgb(253, 129, 8);
  border-radius: 50%;
}
#page-equipment .tabs-content > .item .top .title {
  font-size: 25px;
}
#page-equipment .tabs-content > .item .text {
  font-size: 22px;
  padding-left: 55px;
}
#page-equipment .tabs-content > .item .btn-block {
  text-align: center;
  margin: 20px 0;
}
#page-equipment .tabs-content > .item .list {
  text-align: left;
  border-radius: 8px;
  background: rgb(247, 248, 250);
  padding: 20px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 30px;
  margin: 20px 0;
}
@media (max-width: 600px) {
  #page-equipment .tabs .nav {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    padding-right: 15px;
  }
  #page-equipment .tabs-content > .item .list {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
  }
}

html, body {
  font-family: "TildaSans", sans-serif;
  font-size: 20px;
  background: rgb(255, 255, 255);
  color: rgb(0, 0, 0);
}
html a:hover, body a:hover {
  color: rgb(253, 129, 8);
}

body:not(#page-main) {
  padding-top: 246px;
}
body.page-main-bottom {
    padding-top: 185px !important;
}
@media (max-width: 1000px) {
  body:not(#page-main) {
    padding-top: 132px;
  }
}
@media (max-width: 400px) {
  body:not(#page-main) {
    padding-top: 120px;
  }
}

h3 {
  font-size: 30px;
}

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

.form-title {
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
}
.form-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
.form textarea {
  border-radius: 26px;
  min-height: 170px;
}
.form .agree .text, .form .agree .text * {
  color: rgb(140, 140, 140);
}
.form .agree .text a:hover {
  color: rgb(0, 0, 0);
}
.form .btns {
  margin-top: 20px;
}
.form .social-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 15px;
}
.form .social-line span {
  font-size: 18px;
}
.form .social-line .socials a {
  width: 30px;
  height: 30px;
}
.form-control {
  background: rgb(255, 255, 255);
  border-width: 1px;
  border-color: rgb(215, 218, 221);
  padding: 12px 20px;
  border-radius: 40px;
}
.form-control::placeholder {
  color: rgb(163, 163, 163);
}
.form-group-line > * {
  flex: auto;
}

.modal {
  z-index: 10000;
}
.modal .wrapper {
  background: rgb(255, 255, 255);
  box-shadow: 4px 7px 26.8px 0px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding: 30px;
  min-width: 450px;
}
.modal .form {
  width: 100%;
}
.modal .form-title {
  font-size: 30px;
  font-weight: 400;
  line-height: normal;
}
.modal .form-group {
  width: 70%;
  margin: auto;
}
.modal#modal-feedback .wrapper {
  width: 450px;
  min-width: auto;
}
@media (max-width: 1000px) {
  .modal .wrapper {
    max-width: 95%;
  }
  .modal .form-group {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .modal .wrapper {
    min-width: auto;
  }
}

.phone, .email {
  gap: 5px;
}
.phone svg, .email svg {
  margin-bottom: -2px;
}

.social a {
  width: 25px;
  height: 25px;
}

.breadcrumb .item, .breadcrumb .item * {
  font-size: 17px;
}
.breadcrumb .item.home a svg {
  max-height: 20px;
}
.breadcrumb .item.active {
  color: rgb(0, 0, 0);
}

.page-title {
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
  margin: 30px 0;
}
@media (max-width: 1000px) {
  .page-title {
    font-size: 26px;
    margin: 20px 0;
  }
}

.block-title {
  font-size: 35px;
  font-weight: 400;
  line-height: normal;
  margin: 0 0 30px 0;
}
@media (max-width: 1000px) {
  .block-title {
    font-size: 36px;
    font-weight: 500;
    line-height: 38px;
  }
}
.block-text {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: rgb(85, 85, 85);
  margin: 0 0 30px 0;
}

.nav-filter {
  gap: 15px;
}
.nav-filter .item {
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
  border-color: transparent;
  border-radius: 50px;
  background: rgb(253, 129, 8);
}
.nav-filter .item:hover {
  border-color: rgb(253, 129, 8);
  color: rgb(253, 129, 8);
  background: transparent;
}
.nav-filter .item.active {
  background: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.tabs .nav {
  margin-bottom: 20px;
}
.tabs .nav .item {
  font-size: 30px;
  font-weight: 500;
}
.tabs .nav .item:before {
  height: 2px;
  top: calc(100% + 5px);
}
.tabs .nav .item:hover {
  color: rgb(0, 0, 0);
}
.tabs-content > .item, .tabs-content > .item *:not(.btn) {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: rgb(163, 163, 163);
}
.tabs-content > .item ul {
  list-style: disc;
}
.tabs-content > .item ul li::marker {
  color: rgb(253, 129, 8);
}
.tabs-content > .item ul, .tabs-content > .item ol {
  padding-left: 20px;
}
.tabs-content > .item ul li, .tabs-content > .item ol li {
  margin-bottom: 7px;
}
@media (max-width: 1000px) {
  .tabs .nav {
    gap: 20px;
  }
  .tabs .nav .item {
    font-size: 22px;
  }
  .tabs-content .item, .tabs-content .item * {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
  }
}

.btn.btn-with-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 15px;
  padding: 6px 20px 6px 1px;
  background: #F7F8FA;
  color: #000;
  border: none;
  font-size: 18px;
}
.btn.btn-with-icon .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  color: rgb(253, 129, 8);
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
.btn.btn-with-icon .icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.btn.btn-with-icon:hover .icon {
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}
.btn.btn-grey {
  background: rgb(247, 248, 250);
  border-color: rgb(247, 248, 250);
  color: rgb(0, 0, 0);
}
.btn.btn-grey:hover {
  border-color: rgb(253, 129, 8);
  background: rgb(253, 129, 8);
  color: rgb(255, 255, 255);
}

.video-wrapper {
  border-radius: 10px;
}

.fancybox__slide.has-iframe .fancybox__content {
  padding: 0;
}

.content-text, .content-text p, .content-text b, .content-text strong {
  font-size: 20px;
  line-height: 30px;
}
.content-text table *, .content-text p table *, .content-text b table *, .content-text strong table * {
  line-height: normal;
}
.content-text h1, .content-text h2, .content-text h3, .content-text h4, .content-text h5, .content-text h6 {
  font-weight: 400;
}
.content-text a {
  text-decoration: underline;
}
.content-text ul {
  list-style: disc;
  padding-left: 25px;
}
.content-text p:first-child {
  margin-top: 0;
}
.content-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1000px) {
  .content-text {
    max-width: 100%;
    overflow: hidden;
  }
  .content-text, .content-text *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-size: 18px !important;
    line-height: 32px;
  }
  .content-text img {
    max-width: 100%;
    height: auto !important;
  }
}

.breadcrumbs-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  background: rgb(255, 255, 255);
  z-index: 10;
  top: 182px;
}
@media (max-width: 1000px) {
  .breadcrumbs-wrapper {
    top: 81px;
  }
}
@media (max-width: 400px) {
  .breadcrumbs-wrapper {
    top: 70px;
  }
}

header {
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgb(255, 255, 255);
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  -ms-transition: all 0.25s ease 0s;
  -o-transition: all 0.25s ease 0s;
  transition: all 0.25s ease 0s;
}
header .wrapper {
  position: relative;
}
header .btn-sticky-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  border-radius: 12px;
}
header .top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
  grid-template-columns: 320px 1fr;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.logo.no-hover {
    max-width: 300px;
}
header .top .logo-white {
  display: none;
}
body#page-main header .top .logo-black {
  display: none;
}
body#page-main header .top .logo-white {
  display: block;
}
header .top .logo svg, header .top .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
header .top .right {
  margin: auto 0 10px auto;
}
header .top .contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: -webkit-min-content [2];
  grid-template-columns: repeat(2, -webkit-min-content);
  -ms-grid-columns: min-content [2];
  grid-template-columns: repeat(2, min-content);
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  gap: 10px 20px;
}
header .top .contacts * {
  white-space: nowrap;
}
header .top .contacts .item .title {
  color: rgb(140, 140, 140);
  font-size: 14px;
  padding-left: 25px;
  margin-bottom: 2px;
}
header .top .contacts .item .phone a {
  font-size: 18px;
  font-weight: 400;
}
header .top .contacts .item.email a {
  font-size: 18px;
  text-decoration: underline;
}
header .top .contacts .item.phone-main {
  margin-top: -20px;
}
header .top .contacts .item.phone-main .phone a {
  font-size: 26px;
  font-weight: 400;
}
header .top .btn {
  display: none;
}
header .bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
header .bottom ul.menu {
  background: #F7F8FA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-radius: 36px;
  padding: 0 12px;
}
header .bottom ul.menu li {
  padding: 12px;
}
header .bottom ul.menu a {
    font-size: 18px;
  color: #000;
}
header .bottom ul.menu a:hover {
  color: rgb(253, 129, 8);
}
@media (max-width: 1300px) {
  header .btn-sticky-link {
    left: auto;
    right: 500px;
  }
}
@media (max-width: 1000px) {
  header {
    padding: 10px 0;
  }
  header .btn-sticky-link {
    display: none;
  }
  header .top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    gap: 15px;
  }
  header .top .logo {
    display: block;
    width: 50%;
  }
  header .top .logo * {
    max-width: 250px;
    max-height: 80px;
  }
  header .top .right {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    gap: 20px;
  }
  header .top .contacts {
    display: none;
  }
  header .top .btn {
    display: block;
    padding: 2px;
  }
  header .bottom {
    display: none;
  }
}
@media (max-width: 400px) {
  header {
    height: 70px;
  }
}

.hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
  background-color: rgb(0, 0, 0);
}
@media (max-width: 1000px) {
  .hamburger {
    display: block;
    z-index: auto;
  }
}

.mobile-menu {
  background: rgb(255, 255, 255);
}
.mobile-menu ul.menu {
  border-bottom: 1px solid rgb(238, 238, 238);
  padding-bottom: 7px;
  margin-bottom: 7px;
}
.mobile-menu ul.menu li {
  margin: 10px 0;
}
.mobile-menu .contacts {
  margin-top: 10px;
}
.mobile-menu .contacts .item {
  margin: 10px 0;
}
.mobile-menu .contacts .item .title {
  color: rgb(140, 140, 140);
  font-size: 12px;
  padding-left: 25px;
  margin-bottom: 5px;
}
.mobile-menu .hamburger {
  position: absolute;
  top: 10px;
  right: 5px;
}
.mobile-menu .hamburger .hamburger-box, .mobile-menu .hamburger .hamburger-inner, .mobile-menu .hamburger .hamburger-inner:before, .mobile-menu .hamburger .hamburger-inner:after {
  width: 30px;
}
.mobile-menu .hamburger .hamburger-inner, .mobile-menu .hamburger .hamburger-inner:before, .mobile-menu .hamburger .hamburger-inner:after {
  height: 3px;
}
@media (max-width: 1000px) {
  .mobile-menu {
    display: block;
  }
}

footer {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.74) 0 100%), var(--background);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px 0 10px;
  color: rgb(255, 255, 255);
}
footer a {
  color: rgb(255, 255, 255);
}
footer a:hover {
  color: rgb(253, 129, 8);
}
footer .wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1fr;
  grid-template-columns: 40% 1fr;
  gap: 40px;
}
footer .info .logo {
  max-width: 250px;
  display: block;
  margin-bottom: 20px;
}
footer .info .logo * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .info .company-name, footer .info .company-info, footer .info .address {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
footer .info .text {
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  margin: 20px 0;
}
footer .info .links a {
  text-decoration: underline;
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
}
footer .info .links a:before {
  display: none;
}
footer .info .copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 10px 0;
}
footer .navigate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 40px;
}
footer .navigate .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
footer .navigate ul.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -moz-box-direction: normal;
  -moz-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;
}
footer .navigate ul.menu a {
  font-size: 15px;
}
footer .navigate .contacts .item {
  margin-bottom: 10px;
}
footer .navigate .contacts .item .title {
  color: rgb(140, 140, 140);
  font-size: 14px;
  padding-left: 25px;
  margin-bottom: 10px;
}
footer .navigate .contacts .item .phone a, footer .navigate .contacts .item .email a {
  font-size: 16px;
  font-weight: 400;
}
footer .navigate .worktime {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding-left: 25px;
}
footer .vladweb {
  color: rgb(140, 140, 140);
}
footer .vladweb svg {
  fill: rgb(140, 140, 140);
}
@media (max-width: 800px) {
  footer .wrapper {
    -ms-grid-columns: 1fr [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    position: relative;
  }
  footer .info {
    display: contents;
  }
  footer .info .logo {
    order: 1;
    max-height: 70px;
    max-width: unset;
    margin: 0;
  }
  footer .info .company-block-content {
    order: 4;
  }
  footer .navigate {
    display: contents;
  }
  footer .navigate .left {
    order: 2;
  }
  footer .navigate .right {
    display: contents;
  }
  footer .navigate .right .top {
    order: 3;
  }
  footer .vladweb {
    order: 5;
  }
}

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