@charset "UTF-8";
@import url("/wp-content/themes/salut/font/stylesheet.css")


.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 9999;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
  width: auto;
  height: auto;
  overflow: inherit;
}

.lightbox.opacity_0 {
  position: inherit;
  opacity: 0;
  width: 0;
  height: 0;
  overflow: hidden;
}

.lightbox.opacity_0 * {
  display: none;
}

.lightbox_block {
  width: 100vw;
  z-index: 1;
}

.lightbox_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 90vh;
}

.lightbox_body .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.lightbox_body .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.lightbox_body .swiper-slide img {
  max-height: 70vh;
  max-width: 90vw;
}

.lightbox_body .swiper-slide iframe, .lightbox_body .swiper-slide video {
  display: block;
  height: 500px;
  width: 100%;
  max-height: 70vh;
  max-width: 900px;
}

.lightbox_body .swiper-pagination {
  bottom: 5vh;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.lightbox_bg {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 23, 33, 0.8);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.lightbox-button {
  position: absolute;
  width: 60px;
  height: 60px;
  z-index: 1;
  cursor: pointer;
}

.lightbox-button:hover {
  opacity: .9;
}

.lightbox-button.swiper-button-disabled {
  display: none;
}

.lightbox-button_prev {
  -webkit-transform: scale(-1);
          transform: scale(-1);
  left: 30px;
}

.lightbox-button_next {
  right: 30px;
}

.no_scroll_lightbox {
  overflow: hidden;
}

.burger_lightbox_container {
  width: 100%;
  text-align: center;
}

.burger_lightbox_circle {
  position: fixed;
  top: 20px;
  right: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 50px;
  height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100%;
  -webkit-box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
          box-shadow: 0px 2px 4px rgba(109, 119, 131, 0.3);
  background: #fff;
  cursor: pointer;
}

.burger_lightbox_circle:hover .burger_lightbox {
  -webkit-transform: rotate(135deg) translate(1px, -1px);
          transform: rotate(135deg) translate(1px, -1px);
  -webkit-transition: .25s ease-in;
  transition: .25s ease-in;
}

.burger_lightbox {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger_lightbox::before, .burger_lightbox::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 30px;
  background: #000;
}

.burger_lightbox--active::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  top: 50%;
}

.burger_lightbox--active::after {
  top: 50%;
}

@media screen and (max-width: 780px) {
  .lightbox_body .swiper-slide iframe, .lightbox_body .swiper-slide video {
    max-width: 90vw;
    height: 300px;
  }
  .lightbox-button {
    width: 45px;
    height: 45px;
  }
  .lightbox-button_next {
    right: 14px;
  }
  .lightbox-button_prev {
    left: 14px;
  }
}

#toast {
  position: fixed;
  right: 5px;
  bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-width: 300px;
  max-height: 350px;
  z-index: 10000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  overflow-y: auto;
  overflow-x: hidden;
}

#toast div {
  position: relative;
  padding: 10px 20px;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  -webkit-animation: StartToast .5s ease-in-out;
          animation: StartToast .5s ease-in-out;
}

#toast div:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-animation: WidthTimeOut 6s linear;
          animation: WidthTimeOut 6s linear;
}

#toast .t-ok {
  background-color: #4caf50;
}

#toast .t-error {
  background-color: #f44336;
}

#toast .t-danger {
  color: #000;
  background-color: #ff9800;
}

#toast .t-info {
  background-color: #03a9f4;
}

@-webkit-keyframes StartToast {
  0% {
    opacity: 0;
    border-radius: 100% 5px 5px 100%;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  10% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    border-radius: 5px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes StartToast {
  0% {
    opacity: 0;
    border-radius: 100% 5px 5px 100%;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  10% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    border-radius: 5px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  70% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes swing {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  50% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  70% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@-webkit-keyframes infinitiOpacityTransform {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes infinitiOpacityTransform {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes widthNone {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

@keyframes widthNone {
  0%, 100% {
    width: 0;
  }
  50% {
    width: 100%;
  }
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
*::before,
*::after {
  line-height: 130%;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-appearance: none;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

body {
  font-family: 'Lato', sans-serif, -apple-system, BlinkMacSystemFont;
  color: #151416;
  overflow-anchor: none;
  scroll-behavior: smooth;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.btn {
  font-family: 'Lato', sans-serif, -apple-system, BlinkMacSystemFont;
  font-weight: 600;
  line-height: 120%;
}

input[type=text]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=text]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

textarea,
input,
select,
option {
  font-family: 'Lato', sans-serif, -apple-system, BlinkMacSystemFont;
  font-size: 1rem;
  border: 2px solid #D9D9D9;
  -webkit-appearance: none;
}

textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
option::-webkit-input-placeholder {
  color: #5A7486;
}

textarea:-ms-input-placeholder,
input:-ms-input-placeholder,
select:-ms-input-placeholder,
option:-ms-input-placeholder {
  color: #5A7486;
}

textarea::-ms-input-placeholder,
input::-ms-input-placeholder,
select::-ms-input-placeholder,
option::-ms-input-placeholder {
  color: #5A7486;
}

textarea::placeholder,
input::placeholder,
select::placeholder,
option::placeholder {
  color: #5A7486;
}

textarea:focus,
input:focus,
select:focus,
option:focus {
  border-color: #012945;
  outline: none;
}

textarea.error-input,
input.error-input,
select.error-input,
option.error-input {
  border-color: #E73434;
}

[type="text"],
[type="password"],
[type="search"],
[type="email"],
[type="number"],
select,
textarea {
  width: 100%;
  padding: 0.625rem 0.8125rem;
  border-radius: 5px;
}

select {
  background: url("../img/svg/arrow-down.svg") no-repeat right 13px center/8px 8px, #fff;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.btn-reset {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

select {
  cursor: pointer;
}

option {
  font-family: Arial, Helvetica, sans-serif;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

table {
  width: 100%;
  font-size: 0.875rem;
  color: #666;
  background: #eaebec;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px #d1d1d1;
          box-shadow: 0 1px 2px #d1d1d1;
  border-collapse: separate;
}

th {
  padding: 21px 25px 22px 25px;
  font-weight: bold;
  text-align: center;
  background: #ededed;
  border-bottom: 1px solid #e0e0e0;
}

th:first-child {
  padding-left: 20px;
  text-align: left;
}

tr:first-child th:first-child {
  border-top-left-radius: 3px;
}

tr:first-child th:last-child {
  border-top-right-radius: 3px;
}

tr {
  padding-left: 20px;
  text-align: center;
}

tr td:first-child {
  padding-left: 20px;
  text-align: left;
  border-left: 0;
}

tr td {
  padding: 18px;
  background: #e5e8ed;
  border-left: 1px solid #e0e0e0;
}

tr:nth-child(even) td {
  background: #f3f4fa;
}

tr:last-child td {
  border-bottom: 0;
}

tr:last-child td:first-child {
  border-bottom-left-radius: 3px;
}

tr:last-child td:last-child {
  border-bottom-right-radius: 3px;
}

tr:hover td {
  background: #d8dbe1;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

body {
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}

.lib-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  z-index: 1011;
}

@media screen and (max-width: 768px) {
  .lib-modal {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

.lib-modal[data-modal-open] {
  max-height: inherit;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.lib-modal[data-modal-open] .lib-modal__content {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .lib-modal[data-modal-open] .lib-modal__content {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}

.lib-modal[data-modal-open="close"] .lib-modal__content {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .lib-modal[data-modal-open="open"] .lib-modal__content {
    -webkit-transition: none;
    transition: none;
    position: fixed;
    bottom: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .lib-modal[data-modal-open="close"] .lib-modal__content {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}

@media screen and (min-width: 769px) {
  .lib-modal.modal-right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .lib-modal.modal-right .lib-modal-close {
    top: 0;
    right: auto;
    left: calc(-46px - 10px);
  }
  .lib-modal.modal-right .lib-modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 10px;
    padding: 20px;
    height: 100%;
    max-height: calc(100vh - 20px);
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.lib-modal .lib-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.lib-modal .lib-modal-close {
  width: 46px;
  height: 46px;
  position: absolute;
  top: calc(46px / -3);
  right: calc(46px / -3);
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #000;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal-close {
    display: none;
  }
}

.lib-modal .lib-modal-close::before, .lib-modal .lib-modal-close::after {
  content: "";
  position: absolute;
  left: 22%;
  width: 60%;
  height: 2px;
  background-color: currentColor;
  border-radius: 30px;
}

.lib-modal .lib-modal-close::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  top: 49%;
}

.lib-modal .lib-modal-close::after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 49%;
}

.lib-modal .lib-modal-close:hover {
  background-color: #fafafa;
  color: #6A7A81;
}

.lib-modal .lib-modal__content-header {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content-header {
    padding-top: 0;
  }
}

.lib-modal .lib-modal__content-header-title {
  display: block;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content-header-title {
    font-size: 24px;
  }
}

.lib-modal .lib-modal__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 500px;
  width: 100%;
  margin: 30px;
  padding: 0 20px 40px;
  border-radius: 10px;
  background-color: #fff;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content {
    display: block;
    margin: 0;
    margin-top: 20px;
    max-height: 90%;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.lib-modal .lib-modal__content-scroll {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  width: 100%;
  height: 100%;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.lib-modal.modal-right .lib-modal__content-scroll {
  max-height: inherit;
}

@media screen and (max-width: 768px) {
  .lib-modal.modal-right .lib-modal__content-scroll {
    max-height: 70vh;
    padding-bottom: 20px;
  }
}

.lib-modal .lib-modal__container {
  max-height: inherit;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__container {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}

.lib-modal .lib-modal__content-header-line {
  display: none;
}

@media screen and (max-width: 768px) {
  .lib-modal .lib-modal__content-header-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0;
  }
  .lib-modal .lib-modal__content-header-line::before {
    content: "";
    display: block;
    width: 10%;
    height: 5px;
    border-radius: 10px;
    background-color: #444;
  }
}

#toast {
  position: fixed;
  right: 5px;
  bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  max-width: 300px;
  max-height: 350px;
  z-index: 10000;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  overflow-y: auto;
  overflow-x: hidden;
}

#toast div {
  position: relative;
  padding: 10px 20px;
  padding-bottom: 15px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  border-radius: 5px;
  -webkit-animation: StartToast .5s ease-in-out;
          animation: StartToast .5s ease-in-out;
}

#toast div:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-animation: WidthTimeOut 6s linear;
          animation: WidthTimeOut 6s linear;
}

#toast .t-ok {
  background-color: #4caf50;
}

#toast .t-error {
  background-color: #f44336;
}

#toast .t-danger {
  color: #000;
  background-color: #ff9800;
}

#toast .t-info {
  background-color: #03a9f4;
}

@keyframes StartToast {
  0% {
    opacity: 0;
    border-radius: 100% 5px 5px 100%;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  10% {
    opacity: 0;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
  }
  100% {
    opacity: 1;
    border-radius: 5px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes WidthTimeOut {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

.btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 120%;
  background-color: #FFB636;
  border: none;
  border-radius: 10px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media screen and (max-width: 768px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

.btn:hover {

  -webkit-transform: scale(0.97);
          transform: scale(0.97);
}

.btn:hover .arrow {
  -webkit-transform: rotate(-90deg) translate(0rem, 0rem);
          transform: rotate(-90deg) translate(0rem, 0rem);
}

.btn:hover.btn-no-hover {
  background-color: #FFB636;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: default;
}

.btn .arrow {
  width: 0.5rem;
  height: 0.5rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn .arrow img,
.btn .arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn svg,
.btn path {
  fill: #FFF;
}

.btn img,
.btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

.btn.btn-small {
  padding: 0.4375rem 0.625rem;
  font-size: 0.875rem;
}

.btn.btn-small img,
.btn.btn-small svg {
  width: 0.75rem;
  height: 0.75rem;
}

.btn.btn-big {
  padding: 0.9375rem 2.5rem;
}

.btn.btn-bg-none {
  color: #151416;
  background: rgba(223, 227, 229, 0);
}

.btn.btn-bg-none:hover {
  background: #DFE3E5;
}

.btn.btn-bg-none:hover.btn-no-hover {
  background-color: rgba(223, 227, 229, 0);
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: default;
}

.btn.btn-bg-none svg,
.btn.btn-bg-none path {
  fill: #151416;
}

.btn.btn-bg-black {
  background: #151416;
}

.btn.btn-bg-black:hover {
  background: #222023;
}

.btn.btn-bg-black:hover.btn-no-hover {
  background-color: #151416;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: default;
}

.btn.btn-border {
  -webkit-box-shadow: 0 0 0 2px #BABABA;
          box-shadow: 0 0 0 2px #BABABA;
}

.btn.btn-circle {
  padding: 0.9375rem;
  border-radius: 12.5rem;
}

.btn.btn-circle img,
.btn.btn-circle svg {
  position: absolute;
  width: 1.125rem;
  height: 1.125rem;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

.btn-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.8125rem;
  border-radius: 100%;
  background-color: #012945;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 30px rgba(1, 41, 69, 0.4), 0px 0px 30px rgba(1, 41, 69, 0);
          box-shadow: 0px 0px 30px rgba(1, 41, 69, 0.4), 0px 0px 30px rgba(1, 41, 69, 0);
}

.btn-arrow img {
  width: 1.5rem;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.btn-arrow:hover {
  background-color: #024777;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 30px rgba(1, 41, 69, 0), 0px 0px 30px rgba(1, 41, 69, 0.4);
          box-shadow: 0px 0px 30px rgba(1, 41, 69, 0), 0px 0px 30px rgba(1, 41, 69, 0.4);
}

@media screen and (max-width: 768px) {
  .btn-arrow {
    padding: 0.625rem;
  }
  .btn-arrow img {
    width: 1.1875rem;
    height: 1.1875rem;
  }
}

.btn-arrow.btn-arrow--white {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15), 0px 0px 16px rgba(0, 0, 0, 0);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15), 0px 0px 16px rgba(0, 0, 0, 0);
}

.btn-arrow.btn-arrow--white:hover {
  background-color: #f7f7f7;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0), 0px 0px 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0), 0px 0px 16px rgba(0, 0, 0, 0.1);
}

.btn-arrow.btn-arrow--size2 {
  padding: 0.625rem;
}

.btn-arrow.btn-arrow--size2 img {
  width: 1.1875rem;
  height: 1.1875rem;
}

.btn-arrow.btn-arrow--size3 {
  padding: 0.4375rem;
}

.btn-arrow.btn-arrow--size3 img {
  width: 1.1875rem;
  height: 1.1875rem;
}

@media screen and (max-width: 768px) {
  .btn-arrow.btn-arrow--size3 {
    padding: 0.3125rem;
  }
  .btn-arrow.btn-arrow--size3 img {
    width: 0.875rem;
    height: 0.875rem;
  }
}

.btn-arrow.btn-arrow--left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.btn-arrow.btn-arrow--left:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

/*
	?----HTML-----?

	<label class="form-label">
		<span>Название поля</span>
		<input type="text" name="Имя" data-require="">
	</label>
*/
.form-label {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.form-label [type="radio"],
.form-label [type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.form-label input {
  height: 100%;
  line-height: 100%;
}

.form-label span {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-label div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.form-label div span {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 500;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form-label div:hover .form-label-checkbox,
.form-label div:hover .form-label-radio {
  border-color: #BABABA;
}

.form-label div:hover .form-label-checkbox span,
.form-label div:hover .form-label-radio span {
  border-color: #BABABA;
}

.form-label div:hover .form-label-radio span {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #BABABA;
}

.form-label .form-label-checkbox,
.form-label .form-label-radio {
  /*
		?----HTML-----?

		* Checkbox *
		<label class="form-label">
			<div>
				<input type="checkbox" name="check" data-require="" checked="">
				<span class="form-label-checkbox">
					<span></span>
				</span>
				<span>Checkbox</span>
			</div>
		</label>

		* Radio *
		<label class="form-label">
			<div>
				<input type="radio" name="radio" data-require="">
				<span class="form-label-radio">
					<span></span>
				</span>
				<span>Radio</span>
			</div>
		</label>
		*/
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.25rem;
  border: 2px solid #BABABA;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-label .form-label-checkbox span,
.form-label .form-label-radio span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 0.5625rem;
  height: 0.375rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-label .form-label-checkbox span {
  width: 0.625rem;
  height: 0.4375rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  border-left: 3px solid rgba(255, 255, 255, 0);
  border-radius: 2px;
  -webkit-transform: rotate(-45deg) translate(1px, -1px);
          transform: rotate(-45deg) translate(1px, -1px);
}

.form-label .form-label-radio span {
  border-radius: 50%;
}

.form-label input:checked + .form-label-radio {
  background: #FFB636;
  border-color: #FFB636;
}

.form-label input:checked + .form-label-radio span {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #FFF;
}

.form-label input:checked + .form-label-checkbox {
  background: #FFB636;
  border-color: #FFB636;
}

.form-label input:checked + .form-label-checkbox span {
  border-color: #FFF;
}

.form-label .form-label-checkbox {
  border-radius: 5px;
}

.form-label .form-label-radio {
  border-radius: 50%;
}

.form-label label {
  display: block;
  margin-bottom: 0.125rem;
}

.form-label .error-message {
  color: #E73434;
}

.form-label .btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.form-label .input-minus-plus {
  /*
		?----HTML-----?

		<div class="form-label">
			<span>Кол-во</span>
			<div class="input-minus-plus">
				<div class="btn btn-bg-black btn-minus">
				<img src="/img/svg/minus.svg" loading="lazy" width="22" hieght="22" alt="Минус 1">
				</div>
				<input type="number" name="+-" min="0" value="0" data-require="">
				<div class="btn btn-bg-black btn-plus">
					<img src="/img/svg/plus.svg" loading="lazy" width="22" hieght="22" alt="Плюс 1">
				</div>
			</div>
		</div>
		*/
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 200px;
}

.form-label .input-minus-plus img,
.form-label .input-minus-plus svg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
}

.form-label .input-minus-plus .btn {
  padding: 5px;
}

.form-label .input-minus-plus .btn:hover {
  opacity: .95;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.form-label .input-minus-plus input[type="number"] {
  min-width: 80px;
  text-align: center;
}

.form-label .input-minus-plus input[type="number"]::-webkit-inner-spin-button,
.form-label .input-minus-plus input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

label {
  cursor: pointer;
}

.input-img {
  /*
	?----HTML-----?

	<label class="form-label">
		<span>Телефон</span>
		<div class="input-img">
			<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
				<path d="M21.72 19.42C21.55 19.78 21.33 20.12 21.04 20.44C20.55 20.98 20.01 21.37 19.4 21.62C18.8 21.87 18.15 22 17.45 22C16.43 22 15.34 21.76 14.19 21.27C13.04 20.78 11.89 20.12 10.75 19.29C9.6 18.45 8.51 17.52 7.47 16.49C6.44 15.45 5.51 14.36 4.68 13.22C3.86 12.08 3.2 10.94 2.72 9.81C2.24 8.67 2 7.58 2 6.54C2 5.86 2.12 5.21 2.36 4.61C2.6 4 2.98 3.44 3.51 2.94C4.15 2.31 4.85 2 5.59 2C5.87 2 6.15 2.06 6.4 2.18C6.66 2.3 6.89 2.48 7.07 2.74L9.39 6.01C9.57 6.26 9.7 6.49 9.79 6.71C9.88 6.92 9.93 7.13 9.93 7.32C9.93 7.56 9.86 7.8 9.72 8.03C9.59 8.26 9.4 8.5 9.16 8.74L8.4 9.53C8.29 9.64 8.24 9.77 8.24 9.93C8.24 10.01 8.25 10.08 8.27 10.16C8.3 10.24 8.33 10.3 8.35 10.36C8.53 10.69 8.84 11.12 9.28 11.64C9.73 12.16 10.21 12.69 10.73 13.22C11.27 13.75 11.79 14.24 12.32 14.69C12.84 15.13 13.27 15.43 13.61 15.61C13.66 15.63 13.72 15.66 13.79 15.69C13.87 15.72 13.95 15.73 14.04 15.73C14.21 15.73 14.34 15.67 14.45 15.56L15.21 14.81C15.46 14.56 15.7 14.37 15.93 14.25C16.16 14.11 16.39 14.04 16.64 14.04C16.83 14.04 17.03 14.08 17.25 14.17C17.47 14.26 17.7 14.39 17.95 14.56L21.26 16.91C21.52 17.09 21.7 17.3 21.81 17.55C21.91 17.8 21.97 18.05 21.97 18.33C21.97 18.69 21.89 19.06 21.72 19.42Z" stroke="#9C9C9C" stroke-width="2"></path>
			</svg>
			<input type="text" name="Телефон" placeholder="+7 (___) ___-__-__" data-slots="_" data-require="">
		</div>
	</label>
	*/
  position: relative;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.input-img > img,
.input-img > svg {
  position: absolute;
  top: 50%;
  left: 13px;
  width: to;
  height: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.input-img button {
  position: absolute;
  top: 50%;
  left: 0;
  width: calc(28px + 13px);
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.input-img button img,
.input-img button svg {
  display: inline-block;
  width: 18px;
  height: 18px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -o-object-fit: contain;
     object-fit: contain;
}

.input-img button:hover img,
.input-img button:hover svg {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.input-img input {
  padding-left: 40px;
  line-height: normal;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

.tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 0.3125rem 0.625rem;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 10px;
}

.tag.tag-gray {
  background: #DFE3E5;
}

.tag.tag-dark {
  background: rgba(57, 76, 86, 0.5);
}

.tag.tag-price {
  color: #FFF;
  background: #394C56;
  border-radius: 5px;
}

.tag.tag-category {
    background: #151416ad;
    padding: 5px 10px;
    color:#fff;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

.swiper {
  overflow: hidden;
}

.swiper-pagination {
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper-pagination .swiper-pagination-bullet {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 0 3px;
}

.swiper-slide__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.swiper-slide__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  background-color: #D6E4F6;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #FFB636;
}

.swiper-slide .text-color-default div, .swiper-slide .text-color-default p {
  color: #012945 !important;
}

.swiper-slide .text-white div, .swiper-slide .text-white p {
  color: #fff !important;
}

.swiper-btn-prev {
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .swiper-btn-prev {
    left: 6px;
  }
}

.swiper-btn-next {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  .swiper-btn-next {
    right: 6px;
  }
}

.swiper-button-disabled {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

/*
<!-- Слайдер -->
<div class="swiper-big" style="overflow-x: hidden; max-width: 600px;">
	<div class="swiper-wrapper">
		<a href="#" class="swiper-slide text-white">
			<div class="swiper-slide__img">
				<img src="/wp-content/uploads/2023/02/slider1.jpg" alt="">
			</div>
			<div class="swiper-slide__content">
				<div class="text-4xl sm:text-7xl font-bold my-2 sm:my-4">30%</div>
				<div class="text-xl sm:text-3xl my-2 sm:my-4 font-semibold">на ручки<br>при заказе дверей</div>
			</div>
		</a>
		<div class="swiper-slide text-color-default">
			<div class="swiper-slide__img">
				<img src="/wp-content/uploads/2022/11/nord-3-v-interere.jpg" alt="">
			</div>
			<div class="swiper-slide__content">
				<div class="text-2xl sm:text-4xl my-2 sm:my-4 font-semibold">Выбрать салон</div>
				<div class="swiper-slide__text my-2 sm:my-4">
					<p>Фирменные салоны дверей «Азимут»</p>
				</div>
				<div class="swiper-slide__btn my-3 sm:my-5">
					<button class="btn">Выбрать</button>
				</div>
			</div>
		</div>
		<div class="swiper-slide">
			<div class="swiper-slide__img">
				<img src="/wp-content/uploads/2023/02/bez-bank.jpg" alt="">
			</div>
		</div>
	</div>
	<div class="swiper-pagination swiper-pagination--big"></div>
	<div class="swiper-btn-prev">
		<span class="btn-arrow btn-arrow--white btn-arrow--left btn-arrow-size3">
			<img src="<?php echo get_stylesheet_directory_uri() . '/img/svg/arrow-right.svg'; ?>" alt="">
		</span>
	</div>
	<div class="swiper-btn-next">
		<span class=" btn-arrow btn-arrow--white btn-arrow-size3">
			<img src="<?php echo get_stylesheet_directory_uri() . '/img/svg/arrow-right.svg'; ?>" alt="">
		</span>
	</div>
</div>
<!-- Слайдер конец -->
*/
.swiper-big {
  position: relative;
  overflow: hidden;
}

.swiper-big .swiper-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 410px;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .swiper-big .swiper-slide {
    height: 300px;
  }
}

.swiper-big .swiper-slide__content {
  position: relative;
  z-index: 1;
  padding: 40px 90px;
}

@media screen and (max-width: 768px) {
  .swiper-big .swiper-slide__content {
    padding: 30px 54px;
  }
}

.swiper-big img {
  border-radius: 10px;
}

.swiper-pagination--big .swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .swiper-pagination--big .swiper-pagination-bullet {
    width: 0.625rem;
    height: 0.625rem;
  }
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}


.product-features {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 400px 1fr;
      grid-template-rows: 400px 1fr;
  background: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .product-features {
    -ms-grid-rows: 300px 1fr;
        grid-template-rows: 300px 1fr;
  }
}

@media screen and (max-width: 768px) {
  .product-features {
    -ms-grid-rows: 280px 1fr;
        grid-template-rows: 280px 1fr;
  }
}

.product-features .price-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-features .price {
  font-size: 16px;
  font-weight: bold;
  color: #012945;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .product-features .price {
    font-size: 14px;
  }
}

.product-features .price-old {
  font-size: 16px;
  font-weight: bold;
  color: #5A7486;
  text-decoration: line-through;
  margin-left: 6px;
  white-space: nowrap;
}

@media screen and (max-width: 1024px) {
  .product-features .price-old {
    font-size: 14px;
  }
}

.product-features .product-features-info {
  display: -ms-grid;
  display: grid;
  grid-auto-rows: 1fr auto;
  gap: 5px;
  padding: 13px;
  padding-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .product-features .product-features-info {
    gap: 3px;
  }
}

.product-features .product-features-info a {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #012945;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@media screen and (max-width: 1024px) {
  .product-features .product-features-info a {
    font-size: 16px;
  }
}

.product-features .product-features-info a:hover {
  color: #FFB636;
}

.product-features .btn-cart {
  position: absolute;
  right: -0.3125rem;
  bottom: -0.625rem;
}

.product-image-hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10px;
  padding-bottom: 0;
}

.product-image-hover:hover .product-image-hover--images {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.product-image-hover img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 5px;
}

.product-image-hover img.no-img {
  -o-object-fit: cover;
     object-fit: cover;
}

.product-image-hover .product-image {
  opacity: 1;
}

.product-image-hover .product-image.product-hidden {
  opacity: 0;
  width: 0;
  content-visibility: hidden;
  overflow: hidden;
}

.product-image-hover .product-image-hover--images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.product-image--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  z-index: 1;
}

.product-image--pagination .pagination-item {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D6E4F6;
  margin: 2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.product-image--pagination .pagination-item.pagination-item--active {
  background: #FFB636;
}

.product-image-hover--pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .product-image-hover--pagination {
    display: none;
  }
}

.product-image-hover--pagination .pagination-item {
  width: 100%;
  height: 100%;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

.accordion_block {
  display: -ms-grid;
  display: grid;
  gap: 14px;
}

.accordion-item {
    border: 1px solid #ffb636;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 0 4px #DFE3E5;
    box-shadow: inset 0 0 0 2px #ffb636;
    overflow: hidden;
}

.accordion-item.accordion--open .accordion-title {
    background: #ffb636;
    border-bottom: 1px solid #ffb636;
    border-radius: 10px 10px 0 0;
}

.accordion-item.accordion--open .accordion-title:hover {
  background-color: #ffb636;
}

.accordion-item.accordion--open .accordion-title .accordion-arrow img {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.accordion-item.accordion--open .accordion-body {
  max-height: inherit;
  padding: 5px 20px;
}

.accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  color: #151416;
  background: #ffb636;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .accordion-title {
    font-size: 1rem;
    font-weight: 500;
  }
}

.accordion-title:hover {
  background-color: #ffb636;
}

.accordion-text {
  padding: 12px 15px;
}

.accordion-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 55px;
}

.accordion-arrow img {
  width: 2rem;
  height: 2rem;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accordion-body {
  height: 100%;
  max-height: 0;
  padding: 0 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 0;
}

.accordion-gallery .accordion-gallery-item {
  display: inline-block;
  width: 100px;
  height: 100px;
  margin: 5px;
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .accordion-gallery .accordion-gallery-item {
    width: 70px;
    height: 70px;
  }
}

.accordion-gallery .accordion-gallery-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.accordion-gallery .accordion-gallery-item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
}

input::-webkit-input-placeholder {
  color: #BABABA;
}

input:-ms-input-placeholder {
  color: #BABABA;
}

input::-ms-input-placeholder {
  color: #BABABA;
}

input::placeholder {
  color: #BABABA;
}

.review {
  padding: 38px 17px;
  border-radius: 15px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .review {
    border-radius: 10px;
  }
}

.review-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
     flex-direction: column;
    gap: 20px;
}
.review-head_center{
        display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
  .review-head {
    display: block;
  }
  .review-head .stars {
    margin-top: 10px;
  }
}

.review-head .review-head_left {
  margin-right: 10px;
}

.review-name {
  font-size: 17px;
  font-weight: bold;
}

.review-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  margin-top: 8px;
  font-size: 22px;
  font-weight: 300;
  line-height: 28px;
}

.review-date img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.review-body {
    margin-top: 20px;
    color: #000;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

.review-body a {
  font-size: 16px;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #FFB636;
  font-size: 20px;
    font-weight: 300;
    line-height: 30px;
}

.review-item .review-name {
    color: #000;
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
}

a.review-item:hover {
  opacity: .9;
}

a.review-item:hover .review-name {
  text-decoration: underline;
}

.stars {
  display: -ms-inline-grid;
  display: inline-grid;
  -ms-grid-columns: (1fr)[5];
      grid-template-columns: repeat(5, 1fr);
}

.stars .star {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 20px;
  height: 20px;
  background: url(../img/review/star2.svg) no-repeat center/contain;
}

.stars .star.active {
  background: url(../img/review/star.svg) no-repeat center/contain;
}

.grid_col-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(320px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .grid_col-3 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.grid_col-4 {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .grid_col-4 {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.w-100 {
  width: 100%;
}

.small_container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 768px) {
  .small_container {
    padding: 0 15px;
  }
}

body {
  line-height: 120%;
  /* has to be scroll, not auto */
  background: #FFF;
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 1rem;
}

h1,
.h1 {
  font-size: 4rem;
  font-weight: 500;
}

@media screen and (max-width: 1363px) {
  h1,
  .h1 {
    font-size: 2.625rem;
  }
}

@media screen and (max-width: 768px) {
  h1,
  .h1 {
    font-size: 2.25rem;
  }
}

h2,
.h2 {
  font-size: 2.875rem;
}

@media screen and (max-width: 1363px) {
  h2,
  .h2 {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 768px) {
  h2,
  .h2 {
    font-size: 2rem;
  }
}

h3,
.h3 {
  font-size: 1.625rem;
}

h4,
.h4 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1024px) {
  h4,
  .h4 {
    font-size: 1.125rem;
  }
}

.text-color-default {
  color: #394C56;
}

.text-color-red {
  color: #E73434;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
  overflow-x: auto;
      text-align: center;
    margin: 30px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs {
    margin: 20px 0;
  }
}

.breadcrumbs span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
  color:#151414;
}

.breadcrumbs a:hover {
  color: #FFB636;
  
}

.breadcrumbs .breadcrumb_last {
  font-weight: normal;
  color: #a1a1a1;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.burger {
  position: relative;
  width: 30px;
  height: 21px;
  color: #000;
  cursor: pointer;
}

@media (min-width: 1201px) {
  .burger:hover::before {
    top: 25%;
    -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
  .burger:hover .burger__line {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .burger:hover::after {
    top: 75%;
    -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
}

.burger__line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  border-radius: 3px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger::before, .burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  border-radius: 3px;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - 3px);
}

.burger--no-active:hover::before, .burger--no-active:hover::after {
  left: 0;
}

.burger--no-active:hover::before {
  top: 0;
}

.burger--no-active:hover::after {
  top: calc(100% - 3px);
}

.burger--no-active:hover .burger__line {
  opacity: 1;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger--active .burger__line {
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.burger--active::before {
  top: 50%;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.burger--active::after {
  top: 50%;
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.burger--active:hover::before {
  top: 50%;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

.burger--active:hover::after {
  top: 50%;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0 0;
}

@media screen and (max-width: 768px) {
  .pagination {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin: 40px 0 0;
    overflow-x: auto;
  }
}

.pagination_container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #FFF;
  border: 2px solid #ffb636;
  border-radius: 10px;
}

.pagination_container > span,
.pagination_container > a {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 10px 15px;
  font-size: 16px;
  font-weight: 700;
}

.pagination_container > span {
  background: #ffb636;
  border-radius: 2px;
}

.pagination_container > a {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.pagination_container > a:hover {
  background: #ffb636;
}

.map-iframe {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .map-iframe {
    height: 300px;
  }
}

.map-iframe iframe {
  background: url(../img/svg/spiner.svg) no-repeat center center/50px, #DFE3E5;
}

.map-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
      grid-template-columns: 320px 1fr;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .map-blocks {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.text-block h1,
.text-block h2,
.text-block h3,
.text-block h4,
.text-block h5,
.text-block h6,
.text-block .h1,
.text-block .h2,
.text-block .h3,
.text-block .h4,
.text-block .h5,
.text-block .h6 {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.text-block h1,
.text-block .h1 {
  font-size: 2.25rem;
  font-weight: 600;
}

.text-block h2,
.text-block .h2 {
  font-size: 2rem;
  font-weight: 600;
}

.text-block p,
.text-block b,
.text-block strong,
.text-block i,
.text-block em,
.text-block small,
.text-block mark,
.text-block del,
.text-block ins,
.text-block sub,
.text-block sup {
  line-height: 1.3;
}

.text-block p {
  margin-bottom: 20px;
  color: #394C56;
}

.text-block a {
  font-weight: 500;
  color: #FFB636;
}

.text-block a:hover {
  text-decoration: underline;
}

.text-block ul,
.text-block ol {
  margin: 20px 0;
  padding-left: 20px;
  list-style: inherit;
}

.text-block ol {
  list-style: auto;
}

.text-block li {
  margin: 22px 0;
}

.tab-head-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
}

.tab-title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 10px;
  padding: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #FFF;
  background-color: #FFB636;
  border-radius: 5px;
  cursor: pointer;
}

.tab-title.tab-title--active {
  color: #151416;
  background-color: #DFE3E5;
}

.tab-title.tab-title--active:hover {
  color: #151416;
  background-color: #DFE3E5;
}

.tab-title:hover {
  background-color: #c85d02;
}

.tab-body {
  display: none;
}

.tab-body.tab-body--active {
  display: block;
}

.tab-block {
  margin-top: 20px;
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  -webkit-box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
          box-shadow: 0px 10px 40px rgba(1, 41, 69, 0.1);
}

.specifications_container li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .specifications_container li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.specifications_container li .specification_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 600;
  color: #151416;
}

@media screen and (min-width: 1025px) {
  .specifications_container li .specification_name::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    margin-top: 6px;
    margin-right: 15px;
    background: #151416;
    border-radius: 50%;
  }
}

.specifications_container li .specification_value {
  margin-left: 5px;
}

@media screen and (max-width: 1024px) {
  .specifications_container li .specification_value {
    margin-left: 0;
    font-size: 0.875rem;
  }
}

.container-block {
  width: 100%;
  max-width: 1530px;
  margin-right: auto;
  margin-left: auto;
}

.container-block.container-block--middle {
  max-width: 1340px;
}

.container-block.container-block--small {
  max-width: 1000px;
}

.bg-color {
  background-color: #151416;
}

.bg-color .pagination {
  margin-bottom: 0;
}

.aligncenter{
    margin:0 auto;
}
.btn-contact {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 5.625rem;
  height: 5.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #151416;
  background: #FFF;
  border-radius: calc(100% + 1px);
  -webkit-box-shadow: 0px 2px 10px 0px rgba(57, 76, 86, 0.25);
          box-shadow: 0px 2px 10px 0px rgba(57, 76, 86, 0.25);
}

.btn-contact:hover {
  background: #FFF;
  -webkit-box-shadow: 0px 10px 30px 0px rgba(57, 76, 86, 0.3);
          box-shadow: 0px 10px 30px 0px rgba(57, 76, 86, 0.3);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.phone-block {
  display: -ms-grid;
  display: grid;
  gap: 0.3125rem;
}

.phone-block.phone-header {
  gap: 0;
  justify-items: end;
  -ms-flex-line-pack: center;
      align-content: center;
}

.phone-block.phone-header .phone {
  color: #151416;
}

@media screen and (max-width: 1024px) {
  .phone-block.phone-header .phone {
    font-size: 1.125rem;
  }
}

.phone-block .phone {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1rem 1fr;
      grid-template-columns: 1rem 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFB636;
  text-wrap: nowrap;
}

.phone-block .phone:hover {
  color: #d26102;
}

.phone-block .phone:hover img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.phone-block .phone span {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.phone-block .phone img,
.phone-block .phone svg {
  width: 1rem;
  height: 1rem;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -o-object-fit: contain;
     object-fit: contain;
}

.phone-block .phone svg {
  fill: #FFB636;
}

.phone-block b {
  font-weight: 600;
}

.phone-block small {
  font-size: 0.75rem;
  font-weight: 700;
  color: #394C56;
}

.single-link {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 5px;
  background: #FFF;
  border-radius: 10px;
}

.single-link:hover .single-link__img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-link:hover .single-link__content-title {
  color: #394C56;
}

.single-link:hover .single-link__arrow-img {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.single-link__img {
  border-radius: 5px;
  overflow: hidden;
}

.single-link__img.no-bg {
  background: #DFE3E5;
}

.single-link__img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-link__content {
  padding-top: 20px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.single-link__content-title {
  font-weight: 600;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.single-link__arrow-img {
  position: absolute;
  right: 15px;
  bottom: 5px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(21, 20, 22, 0.5);
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.block-img-text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.block-img-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(49 49 49 / 56%) 0%, rgb(49 49 49 / 34%) 3%, rgba(49, 49, 49, 1) 39%);
    z-index: 1;
    border-radius: 10px;
}

@media screen and (max-width: 1024px) {
  .block-img-text {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .block-img-text {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.block-img-text .text-block {
  min-height: 540px;
  padding: 20px;
  background: #313131;
      display: flex;
    align-items: center;
    z-index: 9;
}
.block-img-text .text-block p{
    color:#fff;

    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.block-img-text .open-gallery{
    background-position: center;
    background-size: cover;
}
@media screen and (max-width: 768px) {
  .block-img-text .text-block {
    min-height: auto;
  }
}

.card-link {
  position: relative;
  min-height: 200px;
  background: #DFE3E5;
  border-radius: 10px;
  overflow: hidden;
}

.card-link:hover > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.card-link > img {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.card-info {
  position: absolute;
  right: 0;
  bottom: 0;
  display: -ms-grid;
  display: grid;
  z-index: 1;
  justify-items: end;
}

.card-info.card-info_text {
  right: 10px;
  bottom: 10px;
  left: 10px;
  justify-items: start;
}
.card-info_text-last{
    font-size: 19.03px;
    font-weight: 700;
    line-height: 28.55px;
    color:#fff;
}
.card-info.card-info_text div {
  font-weight: 400;

}

.card-info.card-info_text div.card-info_text-last {
  width: 100%;
}

.card-info div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;

}

.card-info div img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.card-info div.card-info_text-last {
  
}

.price-list {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1.3fr;
      grid-template-columns: 1fr 1fr 1.3fr;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 10px 20px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 0 2px #394C56;
          box-shadow: 0 0 0 2px #394C56;
}

@media screen and (max-width: 1024px) {
  .price-list {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    gap: 20px;
  }
  .price-list .btn {
    color: #FFF;
    background: #151416;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .price-list .btn:hover {
    background: #222023;
  }
}

@media screen and (max-width: 768px) {
  .price-list .btn {
    width: 100%;
  }
}

.price-list .hit {
  position: absolute;
  top: -10px;
  left: -9px;
}

.price-list .price-list__right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .price-list .price-list__right-block {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border: 3px solid #394C56;
  border-radius: 20px;
}

.price-block .number {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  background: #DFE3E5;
  border-radius: 100%;
}

.price-block .number span {
  position: absolute;
  font-family: 'Lato', sans-serif, -apple-system, BlinkMacSystemFont;
  font-size: 2rem;
  font-weight: bold;
}

.price-block ul,
.price-block .h3 {
  margin: 0;
}

.price-block li {
  margin-bottom: 5px;
  font-weight: 500;
}

.price-block li:last-child {
  margin-bottom: 0;
}

.price-block .price-block__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.price-block .price-block__btn .btn {
  width: calc(100% - 4px);
}

.price-block.price-block__dark {
  color: #FFF;
  background: #151416;
}

.price-block.price-block__dark .number {
  color: #FFF;
  background: #394C56;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
}


.menu-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: 52px;
  padding: 5px;
  background: #FFF;
  border-radius: 10px;
}

.menu-block .logo {
  position: absolute;
  left: 50%;
  -webkit-transform: scale(1) translateX(-50%);
          transform: scale(1) translateX(-50%);
}

.menu-block a.logo:hover {
  -webkit-transform: scale(0.95) translateX(-50%);
          transform: scale(0.95) translateX(-50%);
}

a.logo {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

a.logo:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.menu-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

@media screen and (max-width: 1363px) {
  .menu-links {
    display: none;
  }
}

.menu-links a,
.menu-links span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-links a img,
.menu-links span img {
  width: 7px;
  height: 7px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.menu-links span.btn-bg-black {
  cursor: inherit;
}

.menu-links span.btn-bg-black:hover {
  background: #151416;
  -webkit-transform: none;
          transform: none;
}

.menu-links span.btn-bg-black > img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

.menu-links li {
  position: relative;
}

.menu-links ul {
  position: absolute;
  top: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  min-width: 100%;
  max-width: 600px;
  max-height: 0;
  background: #FFF;
  border-radius: 10px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease, max-height 0.26s ease 0.26s, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, max-height 0.26s ease 0.26s, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.26s ease 0.26s;
  transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.26s ease 0.26s, -webkit-transform 0.25s ease;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  overflow-y: hidden;
}

.menu-links ul li {
  padding: 0 5px;
}

.menu-links ul .btn {
  padding: 10px;
}

.menu-links .menu-links__parent:hover > .btn > .arrow {
  -webkit-transform: rotate(-90deg) translate(0rem, 0rem);
          transform: rotate(-90deg) translate(0rem, 0rem);
}

.menu-links .menu-links__parent:hover > ul {
  max-height: 300px;
  -webkit-box-shadow: 0 0 0 2px #DFE3E5;
          box-shadow: 0 0 0 2px #DFE3E5;
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0.1s, -webkit-transform 0.25s ease 0.1s;
  transition: opacity 0.25s ease 0.1s, -webkit-transform 0.25s ease 0.1s;
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s, -webkit-transform 0.25s ease 0.1s;
  overflow-y: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}



@media screen and (max-width: 1363px) {
  .menu-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;

    cursor: pointer;
  }
}

.menu-burger .menu-burger__text {
  font-family: 'Lato', sans-serif, -apple-system, BlinkMacSystemFont;
  font-weight: 600;
}

.menu-block__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
}

.header-fixed {
  position: relative;
}

.header-fixed .header-fixed__container {
  top: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0);
  z-index: 90;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header-fixed .header-fixed__indent {
  height: 52px;
}

.header-fixed.header-fixed__scroll .menu-block {
  padding-right: 35px;
  padding-left: 35px;
}

.header-fixed.header-fixed__scroll .header-fixed__indent {
  height: 52px;
}

.header-fixed.header-fixed__scroll .header-fixed__container {
  position: fixed;
  background: white;
}

.header-fixed.header-fixed__pc {
  display: block;
}

@media screen and (max-width: 1024px) {
  .header-fixed.header-fixed__pc {
    display: none;
  }
}

.header-fixed.header-fixed__mobile {
  display: none;

}

@media screen and (max-width: 1024px) {
  .header-fixed.header-fixed__mobile {
    display: block;
  }
}

.header-fixed.header-fixed__mobile .header-fixed__container {
  background: #FFF;
}

@-webkit-keyframes header-fixed {
  0% {
    -webkit-transform: translateY(-52px);
            transform: translateY(-52px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header-fixed {
  0% {
    -webkit-transform: translateY(-52px);
            transform: translateY(-52px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.modal-header-nav-link,
.modal-header-nav-link__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 20px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #151416;
  line-height: normal;
}

@media screen and (max-width: 1024px) {
  .modal-header-nav-link,
  .modal-header-nav-link__sub {
    padding: 10px 5px;
  }
}

.modal-header-nav-links {
  display: -ms-grid;
  display: grid;
  margin-top: 40px;
}

.modal-header-nav-links a {
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #DFE3E5;
}

.modal-header-nav-links a:hover {
  opacity: 0.7;
}

.modal-header-nav-item[data-modal-menu-nav] {
  position: relative;
}

.modal-header-nav-item[data-modal-menu-nav]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 20px;
  display: block;
  width: 18px;
  height: 100%;
  background: url(../img/svg/arrow-right.svg) no-repeat center center/contain;
}

@media screen and (max-width: 768px) {
  .modal-header-nav-item[data-modal-menu-nav]::after {
    display: none;
  }
}

.modal-header-nav-item,
.modal-header-nav-item__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;

}

@media screen and (max-width: 1024px) {
  .modal-header-nav-item,
  .modal-header-nav-item__sub {
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .modal-header-nav-item,
  .modal-header-nav-item__sub {
    padding: 0;
    padding-left: 20px;
  }
}



.modal-header-nav-item span,
.modal-header-nav-item__sub span {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px;
  background: #DFE3E5;
  border-radius: 5px 0 0 5px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal-header-nav-item span,
  .modal-header-nav-item__sub span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.modal-header-nav-item span img,
.modal-header-nav-item__sub span img {
  width: 20px;
  height: 20px;
}

.modal-header-nav-item__sub {
  border-radius: 5px;
}

#modal-header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

@media screen and (max-width: 1363px) {
  #modal-header {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  #modal-header .link-img {
    padding: 10px;
  }
}

@media screen and (max-width: 1024px) {
  #modal-header {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

#modal-header.modal-header-active {
  z-index: 998;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#modal-header.modal-header-active .bg {
  opacity: 1;
  -webkit-transition: all 0.5s 0.3s ease;
  transition: all 0.5s 0.3s ease;
  visibility: visible;
}

#modal-header .modal-header-left {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  gap: 30px;
  width: 360px;
  background: #FFF;
  -webkit-box-shadow: 0px 10px 30px rgba(19, 46, 67, 0.05);
          box-shadow: 0px 10px 30px rgba(19, 46, 67, 0.05);
  z-index: 3;
}

@media screen and (max-width: 1024px) {
  #modal-header .modal-header-left {
    width: 100%;
  }
}

#modal-header .modal-header-left .modal-header-content {
  height: 100%;
  overflow-y: auto;
}

#modal-header .modal-header-right {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 360px;
  display: none;
  min-width: 360px;
  background: #FFF;
  z-index: 2;
}

@media screen and (max-width: 1024px) {
  #modal-header .modal-header-right {
    right: 0;
    left: 0;
    display: block;
    z-index: 3;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

#modal-header .modal-header-right.modal-menu-active {
  display: block;
}

@media screen and (max-width: 1024px) {
  #modal-header .modal-header-right.modal-menu-active {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

#modal-header .modal-header-right .modal-header-content {
  height: 100%;
  padding: 30px;
  overflow-y: auto;
}

#modal-header .modal-header-right .modal-header-items__container {
  display: none;
}

#modal-header .modal-header-right .modal-header-items__container.modal-menu-active {
  display: -ms-grid;
  display: grid;
}

#modal-header .modal-header-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0 5px;
  border-bottom: 2px solid #E9E9E9;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  #modal-header .modal-header-close {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}

#modal-header .modal-header-close img {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#modal-header .modal-header-close:hover {
  background: #F5F5F5;
}

#modal-header .bg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}

.header-block {
  position: relative;
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px 80px;
  padding-top: 30px;
}

@media screen and (max-width: 1024px) {
  .header-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 30px;
  }
}

.header-container .bg-img {
  border-radius: 20px;
  overflow: hidden;
}

.header-container .bg-img .bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(21, 20, 22, 0.5)), to(rgba(21, 20, 22, 0.2)));
  background: linear-gradient(0deg, rgba(21, 20, 22, 0.5) 0%, rgba(21, 20, 22, 0.2) 100%);
  z-index: 1;
}

.img-paralax {
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 110px;
  max-width: 920px;
}

@media screen and (max-width: 1024px) {
  .header-left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 60px;
  }
  .header-left .tag {
    color: #151416;
    background: #DFE3E5;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  max-width: 300px;
}

@media screen and (max-width: 1363px) {
  .header-right {
    max-width: 350px;
  }
}

@media screen and (max-width: 1024px) {
  .header-right {
    -webkit-box-flex: initial;
        -ms-flex: initial;
            flex: initial;
    max-width: 100%;
  }
}

.header-right__down {
  position: relative;
}

.header-right__down .btn-contact {
  position: absolute;
  bottom: -45px;
  left: -110px;
}

@media screen and (max-width: 1363px) {
  .header-right__down .btn-contact {
    right: -15px;
    bottom: -70px;
    left: auto;
  }
}

@media screen and (max-width: 768px) {
  .header-right__down .btn-contact {
    display: none;
  }
}

.entry-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    color: #151414;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
  overflow-x: auto;
}

@media screen and (max-width: 1024px) {
  .breadcrumbs {
    margin: 20px 0;
  }
}

.breadcrumbs span {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;

}



.breadcrumbs a:hover {
  color: #FFB636;
}

.breadcrumbs .breadcrumb_last {
  font-weight: normal;
}

.header-bg {
  position: relative;
  margin-top: 15px;
  padding-top: 15px;
  padding-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .header-bg {
    padding-top: 30px;
  }
}

.header-bg__contant {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 40px;
  text-align: center;
  justify-items: center;
}

@media screen and (max-width: 768px) {
  .header-bg__contant {
    margin-top: 0;
    text-align: left;
    justify-items: flex-start;
  }
}

.header-bg .bg-img .bg {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(21, 20, 22, 0.7)), to(rgba(21, 20, 22, 0.2)));
  background: linear-gradient(0deg, rgba(21, 20, 22, 0.7) 0%, rgba(21, 20, 22, 0.2) 100%);
}

.header-bg.no-bg .tag {
  color: #151416;
  background: #FFF;
}



.header-bg .breadcrumbs {
  margin: 0;
  color: #FFF;
}



.header-bg .breadcrumbs a:hover {
  color: #FFF;
  opacity: 0.7;
}

.link-img {
  position: relative;
  display: block;
  height: 100%;
  min-height: 140px;
  padding: 1rem;
  font-weight: 600;
  background: -webkit-gradient(linear, left top, left bottom, from(#151416), to(rgba(21, 20, 22, 0)));
  background: linear-gradient(180deg, #151416 0%, rgba(21, 20, 22, 0) 100%);
  border-radius: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .link-img {
    min-height: 80px;
  }
}

.link-img:hover {
  background-color: #151416;
}

.link-img.link-img--full-bg {
  background: linear-gradient(100.74deg, #151416 0%, rgba(21, 20, 22, 0.4) 100.09%);
}

.link-img.link-img--full-bg:hover {
  background-color: #151416;
}

.bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}



.copy {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: #151414;
    margin-bottom:60px;
}

.copy a {
  text-decoration: underline;
}

.copy a:hover {
  color: #FFF;
}

.links-card,
.info-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
  gap: 20px;
}

.form-delivery {
    position: relative;
    background-image: url(/wp-content/uploads/2024/07/form.webp);
    background-size: cover;
    background-position: center;
    padding:  60px 0 ;
}

@media screen and (max-width: 1024px) {
  .form-delivery {
    margin-bottom: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .form-delivery .video-modal {
    margin-top: 30px;
  }
}

.form-delivery__desctiption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

@media screen and (max-width: 1024px) {
  .form-delivery__desctiption {
    max-width: initial;
  }
}

.form-delivery__form {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2fr;
      grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 10px;
  background: #FFF;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(21, 20, 22, 0.25);
          box-shadow: 0px 2px 10px 0px rgba(21, 20, 22, 0.25);
}



.form-delivery__form .form-label p {
  max-width: 280px;
  margin-top: 5px;
  font-size: 13px;
}

.form-delivery__form-img {
  height: 100%;
  border-radius: 10px;
}



.form-delivery__form-inputs {
  display: -ms-grid;
  display: grid;
  gap: 30px;
      padding: 40px 0;
      max-width: 500px;
}

.form-delivery__form-inputs .form-label {
  margin-bottom: 0;
}

.form-delivery__form-inputs-row {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.form-delivery__form-inputs-row .h2{
        font-size: 32px;
    font-weight: 700;
    line-height: 48px;
}
.form-delivery__form-inputs-row-btns {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}


.form-delivery__form-inputs-row-btns p {
  font-weight: 500;
}

.form-delivery__form-inputs-send {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr auto;
      grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 600px;
}


.form-delivery__form-inputs-send .btn {
  position: relative;
  top: 17px;
  padding: 13px 20px;
}



.video-item {
  position: relative;
  background: #151416;
  border-radius: 10px;
  overflow: hidden;
}

.video-item.video-item--big {
  -webkit-box-shadow: 0px 2px 10px 0px rgba(21, 20, 22, 0.25);
          box-shadow: 0px 2px 10px 0px rgba(21, 20, 22, 0.25);
}

.video-item.video-item--big a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 500px;
}

@media screen and (max-width: 768px) {
  .video-item.video-item--big a {
    max-height: 280px;
  }
}

.video-item.video-item--big .bg_video img {
  width: 20%;
  height: 20%;
}

.video-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.video-item .bg_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(21, 20, 22, 0.4);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.video-item .bg_video img {
  width: 30%;
  height: 30%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -o-object-fit: contain;
     object-fit: contain;
}

.video-item:hover .bg_video {
  background: rgba(21, 20, 22, 0.6);
}

.video-item:hover .bg_video img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.formblock {
  border-radius: 20px;
}

.price-block_form .formblock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.price-block_form .formblock .form-label {
  margin-bottom: 0;
}

.price-block_form .form-delivery__form-inputs-send {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

.price-block_form .form-delivery__form-inputs-send .btn {
  top: 0;
  width: 100%;
}

.maps-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
      grid-template-columns: 320px 1fr;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .maps-blocks {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.content-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}

.a-link {
  color: #FFB636;
  text-decoration: underline;
}

.a-link:hover {
  text-decoration: none;
}

.maps-iframe {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .maps-iframe {
    height: 300px;
  }
}

.maps-iframe iframe {
  background: url(../img/svg/spiner.svg) no-repeat center center/50px, #DFE3E5;
}

.contacts__item__title {
  font-weight: 600;
}

.bg-default-black {
  background: #151416;
}

.lg-sub-html {
  display: none;
}

.works_container a {
  border-radius: 10px;
  overflow: hidden;
}

.works_container a img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  -o-object-fit: cover;
     object-fit: cover;
}

.works_container a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.content-page {
  min-height: 70vh;
}

.link-post-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.border-effects-block,
.border-effects-block__down {
  background: #151416;
  height: 30px;
}

.border-effects-block::after,
.border-effects-block__down::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0 0 30px 30px;
  background: #FFF;
}

.border-effects-block {
  position: absolute;
  top: -30px;
  width: 100%;
}

.border-effects-block__down {
  position: absolute;
  bottom: -30px;
  width: 100%;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}
/*# sourceMappingURL=main.css.map */




/*-----------------------------------------------------------------------salut-----------------------------------*/


.header-content{
    display: flex;
    justify-content: space-between;
}
.header-fixed{
    box-shadow: 0 0 12px #c9c9c9;
    padding: 15px 0;
    margin-bottom:60px;
}
.header_left{
    display: flex;
    flex-direction: row;
    gap: 30px;
  
}
.logo .logo-img {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
}
a.logo{
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.logo .logo-text{
    font-size: 20px!important;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}
.logo-href{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}
.header-menu{
    transition: all 0.25s ease;   
}
.header-menu:hover {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  transition: all 0.25s ease;
}
.slogan-text{
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    text-align: left;
    max-width: 88px;
    border-left: 1px solid;
    padding-left: 10px;
}
.menu-burger{
    cursor: pointer;
    display: flex;
    background: #FFB636;
    padding: 10px 30px;
    border-radius: 10px;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
    align-items: center;
}
.phone span{
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
    text-align: left;
}

.phone-block {
    position: relative;
    display: inline-block;
}

.phone-dropdown {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    border: 2px solid #FFB636;
    padding: 11.5px 58px 11.5px 17px!important;
    border-radius: 10px;
}

.dropdown-toggle {
    cursor: pointer;
    font-size: 16px;
    margin-left: 31px;
    background: #ffb636;
    height: 47px;
    width: 43px;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
      transition: all 0.25s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 160px;
    z-index: 1;
    margin-top: 37px;
    left: 0px;
    background: #fff;
    color: #fff;
    width: 100%;
    border-radius: 10px;
    border: 2px solid #ffb636;
      transition: all 0.25s ease;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.phone-dropdown{
    border: 2px solid #FFB636;
    padding: 11.5px 17px;
    border-radius: 10px;
}
.dropdown-toggle{
    background: #ffb636;
    height: 43px;
    width: 47px;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.modal-header-center {
    position: fixed;
    top: 76px;
    width: 100%;
    background: #fff;
    z-index: 3;
    padding: 33px 0;
    box-shadow: 0 0 12px #c9c9c9;
}

.category-menu{
    max-width: 750px;
}
.category-list{
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}
.category-item{
    width: 230px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 25px 8px 25px 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden; 
    max-height: 100px;
}
.category-item a{
    color: #fff;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
    text-align: left;
    position: relative;
    z-index: 2;
    transition: all 0.25s ease;
}
.category-item a:hover{
    transform: scale(0.95);
    transition: all 0.25s ease;
}
.category-item a span{
    font-size: 14px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    text-transform: none;
}


.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 58%); 
    z-index: 1; 
}


.modal-header-content{
    display:flex;
    gap:30px;
    align-items: flex-start;
}

#modal-header .bg {
    background: rgb(0 0 0 / 0%);
}

.header-fixed.header-fixed__pc, .header-fixed.header-fixed__mobile {
    position: fixed;
    width: 100%;
    background: #fff;
    top: 0;
    z-index: 999;
}
.content-page{
    margin-top:100px;
}
.admin-bar .content-page{
    margin-top:133px;
}
.admin-bar .header-fixed.header-fixed__pc, 
.admin-bar .header-fixed.header-fixed__mobile{
    top: 33px;
}
.admin-bar .modal-header-center {
    position: fixed;
    top: 76px;
    width: 100%;
    background: #fff;
    z-index: 3;
    padding: 57px 0 33px  0;
}
#searchform{
    margin-bottom:30px;
}

#searchform button{
    right: 0;
    width: 45px;
    background: #ffb636;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
#searchform input{
    border: 2px solid #ffb636;
    border-radius: 10px!important;
}

textarea:focus, #searchform  input:focus, select:focus, option:focus {
    border-color: #ffb636;
    outline: none;
}


.title-contact-menu{
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
}
.contact-menu-block{
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 330px;
    margin-right: 20px;
}

.desc-contact-menu{
        font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.contact-menu-block .phone-block a span{
    font-size: 20px;
    font-weight: 600;
    line-height: 30px; 
}
.time-worck{
    max-width: 229px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.modal-header-content .phone-number img{
    width: 20px;
    height: 20px;
    max-width: max-content;
}
.modal-header-content .phone-number{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px;
    margin-top: 5px;
}
.modal-header-content .phone-number.a1 img{
    width:100%;
    height:100%;
    max-width:26px;
    margin-left: -3px;
}
.mts img{
        margin-right: 4px;
    margin-left: 3px;
}
.drop-menu{
    MAX-WIDTH: 172PX;
    BORDER-RADIUS: 15PX;
}
.global-menu{
    border-left: 2px solid #ffb636;
    padding-left: 20px;
}
.modal-header-nav-item a{
        font-size: 16px;
    font-weight: 400;
    line-height: 15px;  
        transition: all 0.25s ease;  
}
.modal-header-nav-item a:hover{
     color:#ffb636;
         transition: all 0.25s ease; 
}
.modal-header-nav-title{
        padding: 10px 20px;
}
.line {
    width: 65px;
    height: 3px;
    background-color: #FFB636;
    }
    
.h2.text-center{
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom:60px;
}

.review-item{
    border-radius: 10px;
    box-shadow: 0px 3px 10px 0px #00000026;
}
#footer .phone-block a{
    display:flex;
    gap:10px;
}
.footer-contact{
    display: flex;
    gap: 30px;
}

.footer-contact-block{
        grid-template-columns: 1fr 1fr;
    display: grid;
    gap: 30px;
}
#footer .container-block>div{
    box-shadow: 0px 4px 15px 0px #2C273A26;
    border-radius: 15px;
    padding: 30px;
    
}
.delivery-pay .block-img-text{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 25px 113px;
    position: relative;
    gap: 15px;
    background-position: left top;
    background-size: 703px;

}

.text-block-delivery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 379px;
    z-index:99;
}
.text-block-delivery li, .w-text, .w-text p{
    color:#fff;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}
.delivery-pay .block-img-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(49 49 49 / 56%) 0%, rgb(49 49 49 / 34%) 3%, rgba(49, 49, 49, 1) 39%);
    z-index: 1;
    border-radius: 10px;
}
.o-title{
    color:#ffb636;
    font-size: 22px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 20px;
}
.text-block-delivery{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.second-block-delivery .mts img{
    margin-left: 5px;
}
.second-block-delivery .phone-number{
    display: flex;
    align-items: center;
    min-width: 182px;
    justify-content: flex-start;
    margin-top: 4px;
}
.text-block-delivery ol{
        list-style: auto;
    margin: 0px 29px;
    padding: 0;
}
.o-left{
    border-left: 3px solid #FFB636;
    padding-left: 15px;
}
.reviews_block .btn {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    text-align: left;
    border-radius: 15px;
    padding: 10px 25px;
    margin-top:30px;
}

.title-page{
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;  
}

.category-page_block{
    display: grid;
    grid-template-columns: 4fr 1fr;
    gap:30px;
}
.product-item{
    max-width: 230px;
    box-shadow: 0px 4px 31px 0px #15141426;
    border-radius: 15px;
    padding: 9px 11px;
    position: relative;
    display:grid;
}
.product-item h2{
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    min-height: 48px;
     transition: all 0.25s ease;
}
.product-item h2:hover{
    color:#ffb636;
    transform: scale(0.95);
    transition: all 0.25s ease;
}
.product-item h2 a{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;

}
.product-colors {
    display: flex;
    gap: 7px;
    margin-top: 10px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    min-height:15px;
}
.product-color{
    background: rgb(221, 51, 51);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #fff;
    box-shadow: 0 0 3px #000;
    position: absolute;
    left: -28px;
    font-size: 0;
    top: 0;
}
.color-circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #F2F2F2;
    box-shadow: 2px 2px 6px 0px #15141426;
}
.product-item .product-img{
    width: 150px;
    height: 150px;
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0 auto; 
    transition: all 0.25s ease;
}
.product-item .product-img:hover{
    transform: scale(0.95);
    transition: all 0.25s ease;
}
.specification-item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.specification-item span{
    font-size: 12px;
    font-weight: 400;
    line-height: 18px; 
    white-space: nowrap; 
}
.products-list{
    gap:30px
}
.products-sidebar {
    width:491px;
    gap:20px;
    flex-direction:column;
}
.product-specifications{
    gap:0px 30px;
    min-height: 36px;
}
.products-sidebar ul.grid{
    gap:10px;
    box-shadow: 0px 2px 13px 0px #15141426;
    padding: 30px;
    border-radius: 15px;
}
.products-sidebar .category-item{
    width:auto;
    padding: 15px 20px;
}
.products-sidebar  .category-item a{
    display:block;
       
}
.products-sidebar .category-item a span{
   margin-left: 7px; 
}
.products-sidebar .title-sidebar{
    
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}
.product-label-new{
    position: absolute;
    right: 0;
    z-index: 9;
    background: #076ff5;
    padding: 5px 22px;
    top: 0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    font-weight: 600;
}
.product-label-hit{
    position: absolute;
    left: 0;
    z-index: 9;
    background: #F42522;
    padding: 5px 22px;
    top: 0;
    border-bottom-right-radius: 15px;
    border-top-left-radius: 15px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    font-weight: 600;
}
.product-item .price{
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
    width: 100%;
    margin: 10px auto 10px;
}

.buy-button {
    width: 100%;
    font-size: 11px;
    font-weight: 600;
    line-height: 13.2px;
    text-align: center;
    text-transform: uppercase;
}
.product-buttons{
    display: grid;
    gap: 10px;
    text-align: center;
}
.product-buttons span{
    color: #9d9d9d;
}
.video-button{
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    border: 1px solid red;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    text-transform: uppercase;
    color: #F42522;
    padding: 10px;
    transition: all 0.25s ease;
}
.video-button:hover{
    transform: scale(0.95);
    transition: all 0.25s ease; 
}
.category-page_block{
    margin-top:-60px;
}

.video-modal-pop .lib-modal__content{
    max-width: 603px;
}
.phone-number{
    transition: all 0.25s ease; 
}
.phone-img{
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-header .phone-img{
    width: 30px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.phone-number:hover{
    transition: all 0.25s ease; 
    color:#ffb636;
}
.search-button{
    cursor: pointer;
}

.category-description{
    margin-top: 60px;
    margin-bottom: 60px;
}
.category-description p{ 
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
        margin-bottom: 20px;
}
.title-category-decs{
    font-size: 32px;
    font-weight: 600;
    line-height: 36px;
    margin-bottom: 40px;
}
.f-cat{
    background:#313131;
    
}
.f-center{
    max-width: 810px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.f-center-text .text-3xl{
    font-size: 28px;
    font-weight: 500;
    line-height: 36px;
    color: #ffb636;
        margin-bottom: 5px;

}

.archive.category  #content, .post-type-archive-reviews #content, .single-reviews #content{
    gap:20px
}


.lg\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
}


/*----------checbox------*/
.custom-checkbox {
    position: relative;
    margin-bottom: 16px;
    margin-left: 37px;
    padding-top: 5px;
    flex-basis: 100%;
    font-weight: 600;
}
.custom-checkbox input[type="checkbox"] {
 
    display: none;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}
.checkmark {
    position: absolute;
    top: 0;
    left: -35px;
    width: 30px;
    height: 30px;
    border: 1px solid #dfe3e5;
    border-radius: 5px;
    background: #dfe3e5;
}
.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #dfe3e5;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.checkmark:after {
    left: 10px;
    top: 5px;
    width: 10px;
    height: 14px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

textarea:focus, input:focus, select:focus, option:focus {
    border-color: #ffb636;
    outline: none;
}

.form-delivery__form-inputs-send .form-label span {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
}

/*gallery*/
.gallery-product{
    flex-basis:50%;
    position: sticky;
    top: 10px;
}
.product-gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-bottom: 30px;
    width: 316px;
    margin: 0 auto;
}
.main-image {
    width: 100%;
    max-width: 277px;
    margin-bottom: 20px;
}


.main-image a {
    width: 277px;
    height: 277px;
    display: block;
}
.main-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
}
.gallery-product .thumbnail a{
    width: 50px;
    height: 50px;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}
.gallery-product .thumbnail a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-scrollbar{
    display:none;
}

.thumbnail-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.thumbnail {
    flex: 0 1 calc(20% - 10px); /* 5 �������� � ��� */
    box-sizing: border-box;
}

.home-gallery .thumbnail-images{
    display: none;
}

/*prodict*/

.product-single{
    display:flex;
    flex-direction: row; 
    gap: 30px;
}
.product-info {
    display: flex;
    gap: 30px;
    flex-direction:column;
    padding: 10px;
    border-radius: 10px;
    justify-content: flex-start;
}
.products-sidebar ul.grid{
    width: 491px;
}
.product-top-block{
        display: flex;
    gap: 30px;
}

.product-right-block{
    gap: 30px;
    display: flex;
    flex-direction: column;
}
.gallery-product, .product-video-block,.product-price-block, .specifications-block{
    box-shadow: 0px 4px 10px 0px #15141426;
    border-radius: 15px;
}
.product-price-block, .specifications-block{
    position: relative;
    padding: 30px;
}


.product-single .swiper-button-next, .product-single .swiper-button-prev{
    display:none;
}
.product-single .gallery-product{
    padding:30px;
}
.product-single .product-gallery{
    padding-bottom:0;
}
.product-availability{
    position: absolute;
    right: 0;
    z-index: 9;
   
    padding: 5px 22px;
    top: 0;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 15px;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 18px;
    color: #fff;
    font-weight: 600;
}
.in-stock{
     background: #37B44A;   
}
.out-of-stock{
    background: #ff0000
}
.to-order{
    background:#878787 ;
}

.original-price-service:after, .price-product .original-price:after, .action-price:after, .product-info .price:after {
    content: ' BYN';
}
.product-single .price-product span{
    font-size: 32px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
}
.product-single{
    display: flex;
    gap: 30px;
    margin-top: 13px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.product-price-block .product-colors{
        justify-content: flex-start;
}
.product-right-block .product-buttons{
    display: flex;
    gap: 30px;
}
.buy-one-clik{
    background: #fff;
    border: 2px solid #ffb636;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.product-right-block .product-buttons .buy-button{
    width: 144px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.spec-name{
    font-weight:600;
}
.single-products .content-page{
    gap:0px!important;
}
.single-products .specification-product{
   display: grid;
    gap: 10px; 
}
.product-description h2{
        font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    margin-bottom: 20px;
}

.video-product{
    width: 297px;
    display: inherit;
    height: 165px;
    overflow: hidden;
    border-radius: 15px;
    position:relative;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.video-img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.video-product:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(49 49 49 / 56%) 0%, rgb(49 49 49 / 34%) 3%, rgba(49, 49, 49, 1) 39%);
    z-index: 1;
    border-radius: 10px;
    background: #00000080;
}
.play-img{
    position: absolute;
    top: 37%;
    left: 44%;
    z-index:9;
}
.video-product:hover{
    transform: scale(0.97);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.product-video-block{
    padding: 30px;
}
.video-grid{
    gap:30px;
}
.related-product, .view-product{
    margin-top:30px;
}
.fancybox__container{
    z-index: 999999!important;
}



/* basket*/
#basket{
    position: relative;
    display: flex;
    cursor: pointer;
    justify-content: flex-start;
}
.mini-cart .lib-modal__content {
    position: absolute;
    right: 0;
    top: 53px;
    max-width: 480px;
}
#basket_form ul li .brakets_image {
    width: 102px;
    min-width: 102px;
    border-radius: 10px;
    min-height: 100%;
    margin-left: 25px;
}
.brakets_image a{
    width: 100%;
    height: 100%;
    display: block;
}
.basket_product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: auto;
    position: relative;
}

#basket_form ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: normal;
    gap: 20px;
    margin-top: 10px;
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 7px;
}
.basket_heading {
    width: 98%;
    margin-bottom: 6px;
}
.basket_heading, .brakets_image, .breadcrumbs a{
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    
}
.basket_heading:hover,.brakets_image:hover, .breadcrumbs a:hover{
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
    color: #FFB636;
    
}
.basket_price .original-price {
    font-size: 12px;
}
.basket_price{
    display: flex;
    justify-content: center;
    align-items: center;
}
.basket_price .price {
    font-weight: 600;
}
#basket_form ul li input {
    width: 43px;
    padding: 0;
    text-align: center;
    margin-right: 0px;
    margin-left: 0px;
    cursor: context-menu;
}
.price:after, .original:after{
    content: ' BYN';
}

#basket span{
    position: absolute;
    right: -24px;
    top: 14px;
    border-radius: 50%;
    background: #ffb636;
    width: 19px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}
#basket_products .quantity{
    BORDER: 1px solid #ffb636;
    margin-right: 30px;
    padding: 5px 10px;
    border-radius: 10px;
}

#basket_products .original-price{
    display:none;
}

.productQuantityInput{
    border:0px;
}
.deleteItem{
        position: absolute;
    top: 18px;
    z-index: 9;
    cursor: pointer;   
}

.clear-btn{
    float: right;
    color: #727272;
    padding: 10px;
}

#formBasket{
    margin-top:20px;
}
.order-button{
    width: 100%;
}
.order-button a{
    margin-top: 20px;
    width: 100%;
}
#formBasket p{
    font-size:21px;
}
.search-results .content-page{
    gap:10px
}

.d-hidden{
    display:none;
}
.map-contact{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 20px;  
}
#cartPay, #cartPayOne{
    display: grid;
    gap: 10px;
}
.usePaymend{
    display: flex;
    flex-direction: column;
    gap: 7px;

}
.usePaymend input[type="radio"] {
    border-color: #ffffff !important;
    outline: 1px solid #a4a4a4 !important;
    background: #ffffff !important;
    -webkit-outline: 1px solid #eb6d02 !important;
    border-radius: 40px;
    width: 10px;
    height: 10px;
}
.usePaymend input[type="radio"]:checked {
    border-color: #ffffff !important;
    outline: 1px solid #eb6d02 !important;
    background: #eb6d02 !important;
    -webkit-outline: 1px solid #eb6d02 !important;
    border-radius: 40px;
    width: 10px;
    height: 10px;
}
.form-block .tab-block{
    margin-top: 0;
    padding: 5px;
    background: #FFF;
    border-radius: 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-price-block .price-product .original-price {
    font-size: 17px;
    color: #959595;
}
.action-price-block{
    display: flex;
    flex-direction: row-reverse; 
}
.action{
    text-align: center;
    text-decoration: line-through;
    font-weight: 500;
    color: #FF5A36;
    width: 90%;
    font-size: 12px;
    padding-top:10px;
}
.product-item .action-price{
    white-space: nowrap;
}
.action:after{
    content: ' BYN';
}

#order-send:disabled, #checkout-button:disabled,
#order-send-one-click:disabled {
    background-color: grey;
    cursor: not-allowed;
}
#order-send, #checkout-button, #order-send-one-click {
    width: 100%;
    margin-top: 20px;
}
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px 10px;
}
.sity-link{
    width: 188px;
    height: 65px;
    background: #ffb636;
    border-radius: 23px;
    font-size: 26.22px;
    font-weight: 600;
    line-height: 34.54px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;  
}

.page-template-default .breadcrumbs{
    margin-bottom:-30px;
}
.page-id-387 .breadcrumbs{
    margin-bottom: 30px!important;
}





::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
    display: none;
}



.color-circle{
    font-size: 0px;
}


.lib-modal.color-form-modal .color-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lib-modal.color-form-modal .color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.lib-modal.color-form-modal .color-circle:hover, .lib-modal.color-form-modal input[name="selectedColors"]:checked + .color-circle {
    border-color: #000;
    border: 1px solid #fff;
    box-shadow: 0 0 4px 1px #00000091;
    scale: 1.15;
}

.color-selection input{
        border: 0px solid #D9D9D9;
}

.error404 .container-block--small.entry-content{
        text-align: center;
}
.error404 #content{
    gap:30px
}
/*--------------------------------------------------------------------------MEDIA------------------------------------------------*/

@media screen and (max-width: 1560px) {
    .header-fixed{
        padding: 15px 56px 15px 15px;
    }
    .content-page{
        padding:0 15px;
    }
    .modal-header-center, .admin-bar .modal-header-center {
        padding: 57px 15px 33px 15px;
    }
    .modal-header-center {
        padding: 32px 15px 33px 15px;
    }
    .category-menu .category-item {
        width: 29%;
    }
    .modal-header-nav-item a, .modal-header-content .phone-number{
        white-space: nowrap;
    }
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    #footer{
        padding:0 15px;
    }
    #footer iframe{
        width:100%;
    }
    .products-sidebar{
        width:390px;
    }
    .products-sidebar ul.grid {
        width: 390px;
    }
    .video-product{
        width:auto;
    }
    .product-buttons{
        flex-wrap: wrap;
        gap: 10px;
    }
    .form-delivery{
        margin-left: -15px;
        margin-right: -15px;  
    }
    .product-item {
         max-width: 100%;
    }
    .home-gallery .main-image a {
        width: auto;
        height: 270px;
        display: block;
    }
    .product-top-block {
    
        align-items: flex-start;
    }

}
@media screen and (max-width: 1360px){
    .content-products .products-list, .related-product .products-list, .view-product .products-list{
        grid-template-columns: repeat(3, minmax(0, 1fr));     
    }
    .home .content-products  .products-list{
       grid-template-columns: repeat(4, minmax(0, 1fr)); 
    }
    .product-colors{
            margin-bottom: 22px;
    }
    .viewed-products .products-list .product-item:last-child{
        display: none; 
    }
    .related-products .products-list .product-item:nth-child(7),
    .related-products .products-list .product-item:nth-child(8){
        display:none;
    }
    .home-gallery .swiper-button-prev {
        left: auto;
        right: 52px;
    }
    .product-item {
         max-width: 100%;
    }
    


}
@media screen and (max-width: 1160px){
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .container-category .banner{
        grid-column: span 6;
         grid-row: span 2;
    }
    .container-category .home-gallery .main-image a{
        width:100%;
    }
    .container-category .home-gallery .main-image {
         max-width: 100%;
    }
    .category-item-page{
        grid-column: span 2;
        grid-row: span 1;
    }
    .product-top-block{
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }
    .product-top-block>div{
        flex-basis:100%;
    }
    .video-product {
        height: auto;
    }
    #footer .container-block>div{
            flex-wrap: wrap;
    }
    #footer .global-menu {
        border-left: 0px solid #ffb636;
        padding-left: 0px;
        border-top: 2px solid #ffb636;
        padding-top: 15px;
        width: 100%;
    
    }
    #footer .modal-header-nav{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .footer-map .map-block{
        height:80%;
    }
    .footer-map iframe{
        height:100%;
    }
    .product-item{
        max-width:100%;
    }
    .product-specifications {
        min-height: 36px;
        max-width: 184px;
        margin: 0 auto;
    }
    .delivery-pay .block-img-text{
            grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .delivery-pay .open-gallery{
        display: none;
    }
    .delivery-pay .block-img-text::before{
        background: linear-gradient(90deg, rgb(49 49 49 / 58%) 0%, rgb(49 49 49 / 62%) 1%, rgba(49, 49, 49, 1) 39%);
    }
    .block-img-text{
        grid-template-columns: 1fr;
    }
    .block-img-text .text-block{
            padding: 70px 20px;
            background:none;
            min-height:auto;
    }
    .open-gallery{
        position:absolute;
    }
    .f-center{
        max-width:92%;
    }
    .container-block.container-block--small {
        max-width: 754px;
    }
    .gallery-product {
    
        position: relative;

    }

}

@media screen and (max-width: 1060px){
    .category-page_block {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }    
    .products-sidebar ul.grid {
        width: 100%;
    }
    .products-sidebar {
        width: 100%;
    }
    .product-single{
            flex-direction: column;
    }
    .video-grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .category-menu .category-item {
        width: 46%;
    }

    .header-fixed__mobile .header-content{
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .header-fixed__mobile .header_left{
        justify-content: space-between;
    }
    .header_right form{
        width:100%;
    }
    .header-fixed {
        padding: 15px 15px 15px 15px;
    }
    .header-fixed  #searchform {
        margin-bottom: 0px;
    }
    .admin-bar .content-page {
        margin-top: 153px;
    }
    .modal-header-center #searchform{
        display:none;
    }
    .modal-header-center, .admin-bar .modal-header-center {
        padding: 118px 15px 33px 15px;
    }
    .modal-header-center {
        padding: 88px 15px 33px 15px;
    }
    .content-page {
        margin-top: 164px;
    }
    .grid-cols-5{
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px 10px;   
    }
    .sity-link {
        width: auto;
        height: 65px;
        background: #ffb636;
        border-radius: 23px;
        font-size: 23.22px;
    }
    .home .content-products  .products-list{
       grid-template-columns: repeat(3, minmax(0, 1fr)); 
    }
    #basket{
        padding-right:20px;
    }
    #basket span {

        right: -2px;

    }
    .phone-dropdown{
        width: 244px;
        align-items: flex-start;  
    }
    
}
@media screen and (max-width: 960px){
    .modal-header-content{
        flex-wrap:wrap;
    }
    .modal-header .modal-header-center{
        overflow-y: scroll;
        max-height: 840px;
    }
   .modal-header   .category-menu {
        max-width: 100%;
    }
    .action{
            max-width: 72px;
    }
    
}

@media screen and (max-width: 768px){
    .header_left{
        flex-wrap:wrap;
    }
    .phone-header{
        flex-basis:100%
    }
    .admin-bar .content-page {
        margin-top: 215px;
    }
    .modal-header-center, .admin-bar .modal-header-center {
        padding: 190px 15px 33px 15px;
    }
    .modal-header-center {
        padding: 138px 15px 33px 15px;
    }
    .content-page {
        margin-top: 225px;
    }
    .dropdown-content a{
        
        max-width: 235px;
         margin: 0 auto;
    }
    .delivery-pay .block-img-text {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .o-left {
         border-top: 3px solid #FFB636;
         border-left: none;
         padding-left: 0px;
        padding-top: 15px;
    }
    .delivery-pay .block-img-text{
        padding: 45px 96px;
    }
    .text-block-delivery{
        max-width: 512px;
    }
    .content-products .products-list, .related-product .products-list, .view-product .products-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-colors{
            margin-bottom: 22px;
    }
    .viewed-products .products-list .product-item:last-child{
        display: block; 
    }
    .related-products .products-list .product-item:nth-child(7),
    .related-products .products-list .product-item:nth-child(8){
        display:block;
    }
    .footer-contact-block {
        grid-template-columns: 1fr;
        display: grid;
        gap: 30px;
    }
    .contact-menu-block{
        max-width:100%
    }
    .modal-header .modal-header-center{
        overflow-y: scroll;
        max-height: 840px;
    }
    .footer-map .map-block {
        height: auto;
    }
    .grid-cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 10px;
        
    }
    .sity-link{
        font-size:20px;
        height:auto;
    }
    .form-delivery__form  {
        display: flex;
        flex-direction: column;
                width: 90%;
        margin: 20px auto;
    }
    .form-delivery__form-img {
        height: 400px;
        border-radius: 10px;
    }
    .form-delivery__form-inputs{
            margin: 0 auto;
    }
    .form-delivery__form-inputs-row .h2, .form-delivery__desctiption{
        text-align: center;
            align-items: center;
    }
    .modal-header-content {
        flex-wrap: wrap;
        padding-bottom: 150px;
    }
    .home .content-products  .products-list{
       grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .phone-dropdown{
        width: 100%;
       
    }
    .h2.text-center {
        display: flex;
        align-items: center;
        gap: 17px;
        justify-content: center;
        font-size: 24px;
        font-weight: 600;
        line-height: 36px;
        margin-bottom: 60px;
    }
    
}
    
@media screen and (max-width: 600px){
    .content-products .products-list, .related-product .products-list, .view-product .products-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    } 
    .header-menu{
        flex-basis: 104px;
    }
    .menu-burger{
        padding: 10px 13px;
    }
    #basket{
        position: absolute;
        right: 51px;
       top: 18px;
    }
    #basket span{
       top:3px;
    }
    .logo-href{
        flex-basis: 100%;
    }
    .phone-block.phone-header{
        flex-basis: 68%;
    }
    .header_left{
        gap:10px;
    }
    .category-menu .category-item {
        width: 100%;
    }
    .category-item a{
        flex-direction:row;
        gap:10px;
    }
    .container-category .category-item-page.large,.category-item-page {
        grid-column: span 6;
        grid-row: span 1;
    }
    .category-item-page br{
        display:none;
    }
    .category-item-page a span{
        padding-left: 10px;
    }
    .video-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .video-product {
        height: 166px;
    }
    .banner .banner-desc{
            width: auto;
    }
    .delivery-pay .block-img-text {
        padding: 20px;
    }
    .block-img-text .text-block {
        padding: 20px;
    }

    .d-hidden{
        display:flex;
    }
    .m-hidden{
        display:none;
    }
    .products-list .product-item{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, auto);
        display: grid;
        gap: 0 10px;
    }
    .products-list  .img-block{
        grid-column: span 1;
        grid-row: span 5;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .products-list .product-item h2{
        text-align: left;
    }
    .products-list .info-prod-cat{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .products-list .product-colors {
        justify-content: flex-start;
    }
    .products-list .product-specifications{
           grid-template-columns: repeat(2, minmax(0, 1fr)); 
    }
    .products-list .product-item .price {
        font-size: 26px;
        text-align: left;

    }
    .product-label-new {
        left: 62px;
        right: auto;
    }
    .formblock .f-center {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: baseline;
        gap: 20px;
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }
    .sity-link{
        font-size:16px;
    }
    .form-delivery__form-img {
        height: 250px;
        border-radius: 10px;
    }
    .form-delivery__form-inputs-row-btns{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .form-delivery__form-inputs-row .h2 {
        font-size: 19px;
        font-weight: 700;
        line-height: 22px;
    }
    .form-delivery__form-inputs-row {
        display: -ms-grid;
        display: grid;
        gap: 11px;
    }
    .custom-checkbox {
        position: relative;
        margin-bottom: 16px;
        margin-left: 37px;
        padding-top: 5px;
        flex-basis: 100%;
        font-weight: 600;
        font-size: 15px;
    }
    #video-iframe{
        width:100%;
    }
    .home .content-products  .products-list{
       grid-template-columns: repeat(1, minmax(0, 1fr)); 
    }
    .action-price-block {
        display: flex;
        flex-direction: column;
        margin-top: 12px;
    }
    .price.action-price{
        margin: 0px auto 10px;
    }
    .action{
        padding-top:0px;
    }
    .product-right-block .buy-button, .product-right-block .buy-one-clik{
        width:110%
    }

}

@media screen and (max-width: 390px){
    .header_left .phone-block.phone-header{
        position: absolute;
        bottom: 0;
        right: 0;
        min-width: 236px;
        width: 67%;
    }
    .header-fixed__mobile .header_left {
        justify-content: space-between;
        position: relative;
    }
    .header-menu{
            flex-basis: 104px;
    }
    .phone-dropdown{
        align-items: baseline;
    }  
    .phone-dropdown{
        padding: 11.5px 58px 11.5px 5px !important;    
    }
    #basket{

       top: 10px;
    }
    .products-list .product-specifications {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
        .products-list .product-item .price {
        font-size: 19px;
        text-align: left;
    }
    .grid-cols-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 10px;
    }
    #footer .modal-header-nav {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

}
@media screen and (max-width: 360px){
     .container-category .banner h2 {
        margin: 0;
        font-size: 18px;
        color: #ffb636;
    }   
    .header_left .phone-block.phone-header {
        position: absolute;
        bottom: 0;
        right: 0;
        min-width: 196px;
        width: 63%;
    }
    .phone-dropdown{
        padding: 11.5px 30px 11.5px 17px !important;
    }
    .dropdown-toggle {

        width: 24px;
    }
    .product-item .product-img {
        width: 128px;

    }
    .product-label-new{
        display:none;
    }
    .main-image a {
        width: 232px;
    
    }
    .thumbnail-images {
       width: 232px;  
    }
}



