@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;family=Roboto+Slab:wght@100..900&amp;display=swap");
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  font-feature-settings: "clig" off, "liga" off;
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.2;
}

div, span, a {
  font-size: 1.75rem;
}

h1, h2 {
  font-size: 4.75rem;
  color: #434343;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  h1, h2 {
    font-size: 3.5rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 0.5556vw;
  line-height: normal;
  font-weight: 400;
  overflow-x: hidden;
  color: #2C2C2C;
}
/* html::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
*/
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5vw;
  }
}

body {
  position: relative;
  margin: 0;
  background: #F7F7F7;
}
/* body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
} */

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: none;
}

main {
  -webkit-overflow-scrolling: touch;
  min-height: 60vh;
}
@media screen and (max-width: 767px) {
  main {
    position: relative;
    z-index: 9;
    overflow: hidden;
  }
}

canvas {
  display: block;
}

div, a, button, pre {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  color: #2C2C2C;
}

button {
  background: none;
  padding: 0;
}

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

button {
  margin: 0;
  border: none;
}

pre {
  margin: 0;
}

.overflow {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
@media screen and (max-width: 560px) {
  .wrapper {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.row {
  display: flex;
}

.justify-sb {
  justify-content: space-between;
}

.justify-sa {
    justify-content: space-around;
}

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

.align-center {
  align-items: center;
}

.align-end {
  align-items: end;
}

.column {
  flex-direction: column;
}

.flex-auto {
  flex: 1 1 auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1.25rem !important;
    grid-row-gap: 2.5rem !important;
  }
}

.btn {
  padding: 1.75rem 2.75rem;
  background: #FFF;
  border-radius: 0.625rem;
  font-weight: 500;
  cursor: pointer;
  width: max-content;
  text-transform: uppercase;
  transition: all 0.4s;
  text-align: center;
}
.btn:hover {
  color: #e8181c;
  background: #E6E6E6;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 100%;
  }
}

.btn-white {
  background: #FFF;
}
@media screen and (max-width: 767px) {
  .btn-white:hover {
    color: #2C2C2C;
    background: #FFF;
  }
}

.btn-green {
  background: #e8181c;
  color: #F7F7F7;
}
@media screen and (max-width: 767px) {
  .btn-green:hover {
    background: #e8181c;
    color: #F7F7F7;
  }
}

input {
  padding: 1.875rem 2.5rem;
  border-radius: 0.5rem;
  background: #FFF;
  color: #434343;
  font-size: 2rem;
  line-height: 1.2;
  outline: none;
  transition: all 0.4s;
  border: 0.125rem solid #FFF;
}
input:hover, input:focus {
  border: 0.125rem solid #e8181c;
}
@media screen and (max-width: 767px) {
  input {
    font-size: 1.75rem;
  }
  input:hover, input:focus {
    border: 0.125rem solid #e8181c;
  }
}

label {
  color: #434343;
  font-size: 2rem;
  line-height: 1.2;
  position: absolute;
  top: 1.875rem;
  left: 2.375rem;
  transition: all 0.4s;
}
label.focused {
  font-size: 1rem;
  transform: translateY(-1rem);
}

.input-wrapp {
  position: relative;
}
.input-wrapp.checkbox-wrapp input[type=checkbox] {
  display: none;
}
.input-wrapp.checkbox-wrapp label span {
  padding-left: 3.5rem;
}
.input-wrapp.checkbox-wrapp label:before {
  content: " ";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 1.875rem;
  height: 1.875rem;
  background: #FFF;
  border: 0.125rem solid #434343;
  margin-right: 1.25rem;
  cursor: pointer;
  transition: all 0.4s;
  color: #FFF;
}
.input-wrapp.checkbox-wrapp input:checked + label:before {
  content: "✓";
  background: #e8181c;
  border: 0.125rem solid #e8181c;
}

input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 0.25rem;
  background: #434343;
}
input[type=range]::-webkit-slider-thumb {
  width: 3rem;
  height: 3rem;
  background: #FFF;
  border-radius: 50%;
  border: 0.125rem solid #434343;
  -webkit-appearance: none;
  top: -1.25rem;
  position: relative;
}

.modal-wrap {
  opacity: 0;
  will-change: opacity;
  position: relative;
  z-index: -1;
  display: none;
}
.modal-wrap.modal-show {
  opacity: 1;
  transition: opacity 0.5s;
  will-change: opacity;
  z-index: 10000;
  position: relative;
  display: block;
}
.modal-wrap .modal-shadow {
  background: rgba(26, 26, 24, 0.5);
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
}
.modal-wrap .modal {
  position: fixed;
  top: 50%;
  z-index: 100;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  background: #fff;
  border-radius: 0px;
  padding: 0;
}
.modal-wrap .modal-cross {
  position: absolute;
  top: -60px;
  right: 0;
  z-index: 10;
}

.cards {
  padding-bottom: 9.75rem;
}
@media screen and (max-width: 767px) {
  .cards {
    padding-bottom: 6.25rem;
  }
}
.cards .cards-wrapper {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .cards .cards-wrapper {
    gap: 1.25rem;
    flex-direction: column;
  }
}
.cards .cards-wrapper .card {
  padding: 2.5rem 2.625rem;
  background: #E6E6E6;
  border-radius: 0.625rem;
  gap: 2.125rem;
}
.cards .cards-wrapper .card span:first-child {
  width: 20.875rem;
  font-size: 2.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cards .cards-wrapper .card span:first-child {
    width: 100%;
    font-size: 2rem;
  }
}
.cards .cards-wrapper .card span:last-child {
  width: 35.375rem;
}
@media screen and (max-width: 767px) {
  .cards .cards-wrapper .card span:last-child {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .catalog-slider {
    width: 100%;
    gap: 3.75rem;
  }
}

.catalog-container {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .catalog-container {
    gap: 0;
  }
}
.catalog-container .card {
  width: 40.625rem;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .catalog-container .card {
    gap: 0.625rem;
    width: 18.875rem;
  }
  .catalog-container .card:nth-child(3), .catalog-container .card:last-child {
    top: -1.1rem;
  }
}
@media screen and (max-width: 767px) {
  .catalog-container .card .name {
    font-size: 1.5rem;
  }
}
.catalog-container .card .img-wrapp {
  position: relative;
}
@media screen and (max-width: 767px) {
  .catalog-container .card .img-wrapp {
    height: 25.5rem;
  }
}
.catalog-container .card .img-wrapp img {
  width: 40.625rem;
  height: 48.875rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .catalog-container .card .img-wrapp img {
    width: 100%;
    height: 25.5rem;
  }
}
.discount {
  width: auto;
  height: 3.625rem;
  background: #e8181c;
  border-radius: 0.625rem;
  padding: 0 1rem;
  color: #F7F7F7;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1.875rem;
  left: 1.875rem;
	z-index: 2;
}
.catalog-container .card .desc {
  font-size: 2.25rem;
  font-weight: 500;
  height: 100%;
}
.catalog-container .card
{
  height: auto;
}
@media screen and (max-width: 767px) {
  .catalog-container .card .desc {
    font-size: 1.75rem;
  }
}

.price {
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .price {
    flex-direction: column;
    gap: 0;
    align-items: start;
  }
}
.price > * {
  font-size: 2.25rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .price > * {
    font-size: 1.75rem;
  }
}
.price span {
  color: #434343;
}
.price span.price-discount {
  opacity: 0.6;
  text-decoration: line-through;
  color: #2C2C2C;
}

.parameters .parameters-wrapp {
  padding: 1.25rem 0;
  border-bottom: 0.125rem solid #434343;
}
.parameters .parameters-wrapp span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .parameters .parameters-wrapp span:first-child {
    width: 20.875rem;
  }
}
@media screen and (max-width: 767px) {
  .parameters .parameters-wrapp span:last-child {
    text-align: end;
    flex: 1;
  }
}

.accordion-item {
  width: 100%;
}
.accordion-item .accordion-content {
  border-bottom: 0.125rem solid #434343;
}
.accordion-item .accordion-content .accordion-title {
  padding: 2.5rem 0;
  cursor: pointer;
  font-weight: 500;
}
.accordion-item .accordion-content .accordion-title .icon {
  width: 1.875rem;
  height: 1.875rem;
}
.accordion-item .accordion-content .accordion-title .icon.rotate svg {
  transform: rotate(-180deg);
}
.accordion-item .accordion-content .accordion-title .icon svg {
  transition: all 0.4s;
  transform: rotate(0deg);
}
.accordion-item .accordion-content .accordion-includes {
  display: none;
  margin: 0 1.25rem 1.25rem 1.25rem;
}
.accordion-item .accordion-content .accordion-includes.active {
  display: block;
}
.accordion-item .accordion-content .accordion-includes .desc-acc {
  color: #434343;
}
.accordion-item .accordion-content .accordion-includes .desc-acc .input-wrapp {
  padding: 1.25rem 0;
  gap: 1.25rem;
}
.accordion-item .accordion-content .accordion-includes .desc-acc .input-wrapp input {
  cursor: pointer;
}
.accordion-item .accordion-content .accordion-includes .desc-acc .input-wrapp label {
  position: initial;
  transform: none !important;
  font-size: 1.75rem !important;
  cursor: pointer;
}
.accordion-item .accordion-content .facetwp-checkbox {
  background: url("../../static/img/chekbox.svg") 0 50% no-repeat;
}
.accordion-item .accordion-content .facetwp-checkbox.checked {
  background: url("../../static/img/chekbox-check.svg") 0 50% no-repeat;
}

.facetwp-slider-wrap {
  padding-bottom: 3.25rem !important;
}

.noUi-horizontal {
  height: 0.125rem !important;
}

.noUi-target {
  border-radius: 0 !important;
  border: none !important;
  background: #434343 !important;
}

.noUi-connect {
  background: #434343 !important;
}

.noUi-horizontal .noUi-handle {
  width: 3rem !important;
  height: 3rem !important;
  right: -1.25rem !important;
  top: -1.5rem !important;
}

.noUi-handle {
  border-radius: 50% !important;
  border: 0.125rem solid #434343 !important;
  color: #F7F7F7 !important;
}

.facetwp-facet {
  margin-bottom: 3.75rem !important;
}

.select2-selection__arrow {
  display: none;
}
.select2-selection__arrow b {
  border: none !important;
  margin: 0 !important;
  position: relative !important;
}

.select2-container {
  width: max-content !important;
}

.select2-selection__rendered {
  padding: 0 !important;
}

.select2-selection {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: max-content !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  display: flex !important;
  padding: 0 1.25rem !important;
  gap: 0.625rem;
  align-items: center;
}
.select2-selection span {
  color: #060606 !important;
  transition: all 0.4s;
}

.select2-selection__rendered {
  font-size: 1.75rem !important;
  font-weight: 500 !important;
}

.select-arrow {
  width: 1.875rem;
  height: 1.875rem;
  transition: all 0.4s;
}
.select-arrow.rotate {
  transform: rotate(-180deg);
}

.select2-container--open .select2-selection span {
  color: #434343 !important;
}
.select2-container--open .select2-selection__arrow {
  transform: rotate(-180deg);
}

.select2-dropdown {
  width: 35.625rem !important;
  border-radius: 0 !important;
  border: none !important;
  border-bottom: 0.125rem solid #434343 !important;
  left: -10rem !important;
}
@media screen and (max-width: 767px) {
  .select2-dropdown {
    left: 0 !important;
  }
}
.select2-dropdown .select2-results__option--selected {
  background-color: #FFF !important;
}
.select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #FFF !important;
}
.select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable span {
  color: #434343;
}
.select2-dropdown .select2-results__option {
  padding: 1.25rem !important;
  display: flex;
}
.select2-dropdown .select2-results__option span {
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
}

.select-filter {
  align-items: center;
  height: max-content;
  width: 35.25rem;
  padding: 1.25rem;
  border-bottom: 0.125rem solid #434343;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .select-filter {
    width: 100%;
    order: 1;
  }
}
.select-filter .facetwp-facet {
  margin-bottom: 0 !important;
}
.select-filter select {
  border: none;
  background: transparent;
  font-size: 1.75rem;
  font-weight: 500;
  color: #434343;
  outline: none;
}

.select2-results__option span {
  font-family: "Montserrat", sans-serif;
}

.swiper-button-next,
.swiper-button-prev {
  position: initial !important;
  margin-top: 0 !important;
  width: 4rem !important;
  height: 5rem !important;
}
@media screen and (max-width: 767px) {
  .swiper-button-next:hover svg path,
  .swiper-button-prev:hover svg path {
    fill: #E6E6E6 !important;
  }
  .swiper-button-next:hover svg circle,
  .swiper-button-prev:hover svg circle {
    fill: #e8181c !important;
  }
}
.swiper-button-next:hover svg path,
.swiper-button-prev:hover svg path {
  fill: #e8181c;
}
.swiper-button-next:hover svg circle,
.swiper-button-prev:hover svg circle {
  fill: #E6E6E6;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 4rem !important;
  height: 5rem !important;
}
.swiper-button-next svg path,
.swiper-button-next svg circle,
.swiper-button-prev svg path,
.swiper-button-prev svg circle {
  transition: all 0.4s;
}
.swiper-button-next:before, .swiper-button-next:after,
.swiper-button-prev:before,
.swiper-button-prev:after {
  content: none !important;
}

.swiper-pagination {
  position: initial !important;
  padding: 1.25rem 0;
  color: #e8181c;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    position: absolute !important;
    bottom: 0;
  }
}
.swiper-pagination .swiper-pagination-current,
.swiper-pagination .swiper-pagination-total {
  padding: 0 1.25rem;
  color: #434343;
}

.header .header-wrapp {
  padding: 1.875rem 0;
}
@media screen and (max-width: 767px) {
  .header .header-wrapp {
    padding: 1rem 0 1rem 0rem;
  }
}
.header .header-wrapp .logo {
  width: 23.125rem;
  /*height: 5.75rem;*/
}

@media screen and (max-width: 991px) {
    .header .header-wrapp .logo {
        width: 20rem;
    }

    .header .header-wrapp .logo_m {
        width: 22rem;
    }
}

@media (max-width: 767px) {
  .header .header-wrapp .logo {
    width: 22rem;
  }
    .header .header-wrapp .logo_m {
        width: 26rem;
    }
}
@media (max-width: 560px) {
    .header .header-wrapp .logo {
        width: 14rem;
    }
    .header .header-wrapp .logo_m {
        width: 16rem;
    }
}
@media (max-width: 490px) {
    .header .header-wrapp .logo {
        width: 16rem;
    }

    .header .header-wrapp .logo_m {
        width: 20rem;
    }
}
.header .header-wrapp .logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header .header-wrapp nav {
    display: none;
  }
}
.header .header-wrapp nav ul {
  gap: 6rem;
}
.header .header-wrapp nav ul li a {
  transition: all 0.4s;
  font-size:2.1rem
}
.header .header-wrapp nav ul li a:hover {
  color: #e8181c;
}
.header .header-wrapp .tel {
  color: #e8181c;
  font-weight: 500;
  transition: all 0.4s;
}
.header .header-wrapp .tel_number {
    color: #e8181c;
    font-weight: 500;
    font-size: 2.5rem;
    transition: all 0.4s;
}
@media screen and (max-width: 767px) {
    .header .header-wrapp .tel {
        display: none;
        font-size: 3.5rem;
    }
}

@media (max-width: 560px) {
    .header .header-wrapp .tel {
        display: none;
        font-size: 2.25rem;
    }
}
.header .header-wrapp .tel:hover {
  color: #434343;
}
.header .header-wrapp .burger {
  display: none;
  transition: all 0.4s;
}
.header .header-wrapp .burger.rotate {
  transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .header .header-wrapp .burger {
    display: block;
  }
}
.header .header-wrapp .mob-menu {
  display: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 6rem;
  gap: 5.625rem;
  padding: 5.625rem 0 0 3.625rem;
  background: #F7F7F7;
}
.header .header-wrapp .mob-menu.show {
  display: flex;
}
.header .header-wrapp .mob-menu nav,
.header .header-wrapp .mob-menu .tel {
  display: block;
}
.header .header-wrapp .mob-menu nav {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .header .header-wrapp .mob-menu nav ul li a:hover {
    color: #434343;
  }
}
@media screen and (max-width: 767px) {
  .header .header-wrapp .mob-menu .tel:hover {
    color: #e8181c;
  }
}

.footer {
    background: #393c4b;
}
.footer .footer-wrapper {
  padding: 4.375rem 0 4.75rem 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper {
    padding: 3.125rem 0 3.75rem 0;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top {
    flex-direction: column;
  }
}
.footer .footer-wrapper .top .left {
  gap: 4.5rem;
  margin-right: 60rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top .left {
    margin-right: 0;
    padding: 0 3.75rem;
    margin-bottom: 3.75rem;
  }
}
.footer .footer-wrapper .top .left img {
  width: 14.375rem;
  height: 4.25rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top .left img {
    width: 12.625rem;
    height: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top .btn {
    display: none;
  }
}
.footer .footer-wrapper .top nav {
  margin-right: 30.125rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top nav {
    margin-right: 0;
    padding: 0 3.75rem;
    margin-bottom: 5.8125rem;
  }
}
.footer .footer-wrapper .top nav ul {
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top nav ul {
    gap: 2.5rem;
  }
}
.footer .footer-wrapper .top nav ul li a {
  color: #F7F7F7;
  transition: all 0.4s;
}
.footer .footer-wrapper .top nav ul li a:hover {
  color: #e8181c;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top nav ul li a:hover {
    color: #F7F7F7;
  }
}
.footer .footer-wrapper .top .contacts {
  gap: 2rem;
  width: 25.75rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top .contacts {
    padding: 0 3.75rem;
    width: 100%;
    gap: 1.25rem;
    margin-bottom: 5.5rem;
  }
}
.footer .footer-wrapper .top .contacts > * {
  color: #F7F7F7;
}
.footer .footer-wrapper .top .contacts a {
  transition: all 0.4s;
}
.footer .footer-wrapper .top .contacts a:hover {
  color: #e8181c;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top .contacts a:hover {
    color: #F7F7F7;
  }
}
.footer .footer-wrapper .top .mob-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .top .mob-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.footer .footer-wrapper .bottom {
  padding-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .bottom {
    padding: 3.75rem 2.375rem 0 3.625rem;
  }
}
.footer .footer-wrapper .bottom .left {
  gap: 0.5rem;
}
.footer .footer-wrapper .bottom .left > * {
  color: #F7F7F7;
  font-size: 1.25rem;
  line-height: 1.1;
}
.footer .footer-wrapper .bottom .left a {
  transition: all 0.4s;
}
.footer .footer-wrapper .bottom .left a:hover {
  color: #e8181c;
}
@media screen and (max-width: 767px) {
  .footer .footer-wrapper .bottom .left a:hover {
    color: #F7F7F7;
  }
}
.footer .footer-wrapper .bottom .social {
  gap: 1.875rem;
  margin-left: 3rem;
}
.footer .footer-wrapper .bottom .social a svg {
  width: 3.5rem;
  height: 3.5rem;
}
.footer .footer-wrapper .bottom .social a svg path {
  transition: all 0.4s;
}
.footer .footer-wrapper .bottom .social a:hover svg path {
  fill: #e8181c;
}

.form-questions {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .form-questions {
    padding-bottom: 8.75rem;
  }
}
.form-questions .wpcf7-form-control {
  width: 27.375rem;
}
@media screen and (max-width: 767px) {
  .form-questions .wpcf7-form-control {
    width: 100%;
  }
}
.form-questions .wpcf7-submit {
  width: 100%;
  background: #e8181c;
  color: #FFF;
}
.form-questions .policy p br {
  display: none;
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp {
    flex-direction: column;
    gap: 3.75rem;
  }
}
.form-questions .form-questions-wrapp .left {
  gap: 2.5rem;
  width: 51.875rem;
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp .left {
    padding: 0 3.75rem;
    width: 100%;
  }
}
.wpcf7-not-valid
{
  border-color: #FF3B3B;
}
.wpcf7-not-valid-tip
{
  display: none;
}
.wpcf7 form .wpcf7-response-output
{
  margin: 0;
  margin-top: 2rem;
}
.form-questions .form-questions-wrapp .right .form-wrapp, .form-questions .wpcf7-response-output {
  gap: 0.75rem;
  width: 83.75rem;
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp .right .form-wrapp, .form-questions .wpcf7-response-output{
    width: 100%;
  }
}
.form-questions .form-questions-wrapp .right .form-wrapp .form-top {
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp .right .form-wrapp .form-top {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp .right .form-wrapp .form-top .input-wrapp {
    width: 100%;
  }
  .form-questions .form-questions-wrapp .right .form-wrapp .form-top .input-wrapp input {
    width: 100%;
  }
}
.form-questions .form-questions-wrapp .right .form-wrapp button {
  width: 100%;
}
.form-questions .form-questions-wrapp .right .form-wrapp .policy {
  text-align: center;
}
.form-questions .form-questions-wrapp .right .form-wrapp .policy > * {
  font-size: 1.5rem;
  color: #434343;
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp .right .form-wrapp .policy > * {
    font-size: 1.25rem;
  }
}
.form-questions .form-questions-wrapp .right .form-wrapp .policy a {
  color: #e8181c;
  transition: all 0.4s;
}
.form-questions .form-questions-wrapp .right .form-wrapp .policy a:hover {
  color: #434343;
}
@media screen and (max-width: 767px) {
  .form-questions .form-questions-wrapp .right .form-wrapp .policy a:hover {
    color: #e8181c;
  }
}

.breadcrumbs {
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .breadcrumbs {
    display: block;
  }
}
.breadcrumbs .breadcrumbs-wrapp {
  gap: 0.625rem;
}
.breadcrumbs .breadcrumbs-wrapp > * {
  font-size: 1.5rem;
}
.breadcrumbs .breadcrumbs-wrapp a {
  transition: all 0.4s;
}
.breadcrumbs .breadcrumbs-wrapp a:hover {
  color: #e8181c;
}

.front-page .banner {
  padding: 3.75rem 0 13.25rem 0;
}
@media screen and (max-width: 767px) {
  .front-page .banner {
    padding: 0 0 10rem 0;
  }
}
@media screen and (max-width: 767px) {
  .front-page .banner .banner-wrapp {
    flex-direction: column;
    gap: 3.25rem;
  }
}
.front-page .banner .banner-wrapp .left {
  gap: 2.5rem;
  width: 65.875rem;
}
@media screen and (max-width: 767px) {
  .front-page .banner .banner-wrapp .left {
    order: 2;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .front-page .banner .banner-wrapp .left h1 {
    padding: 0 3.75rem;
  }
}
.front-page .banner .banner-wrapp .left p {
  margin-bottom: 2.5rem;
  width: 44.5rem;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .front-page .banner .banner-wrapp .left p {
    width: 100%;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    padding: 0 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .front-page .banner .banner-wrapp .left a {
    width: 100%;
  }
}
.front-page .banner .banner-wrapp img {
  border-radius: 0.625rem;
  width: 83.75rem;
  height: 79rem;
}
@media screen and (max-width: 767px) {
  .front-page .banner .banner-wrapp img {
    order: 1;
    width: 100%;
    height: 23.5rem;
    object-fit: cover;
  }
}
.front-page .catalog-elements.section-3 {
  padding-bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-3 {
    padding-bottom: 20.25rem;
  }
}
.front-page .catalog-elements.section-3 .wrapper {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-3 .wrapper {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-3 .content {
    padding: 0 0.5rem;
  }
}
.front-page .catalog-elements.section-3 .catalog-elements-wrapp .img-wrapp .lianer-gradient {
  background: linear-gradient(90deg, rgba(126, 175, 16, 0) 1.76%, rgba(126, 175, 16, 0.6) 99.6%);
  height: 41.125rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-3 .catalog-elements-wrapp .img-wrapp .lianer-gradient {
    transform: rotate(180deg);
  }
}
.front-page .catalog-elements.section-3 .catalog-elements-wrapp .img-wrapp img {
  width: 61.75rem;
  height: 54.25rem;
  top: -7rem;
  left: 22rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-3 .catalog-elements-wrapp .img-wrapp img {
    width: 25.75rem;
    height: 29.5rem;
    left: -3rem;
    object-fit: contain;
  }
}
.front-page .catalog-elements.section-4 {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-4 {
    padding-bottom: 8.5rem;
  }
}
.front-page .catalog-elements.section-4 .wrapper {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-4 .wrapper {
    padding-right: 0;
  }
}
.front-page .catalog-elements.section-4 .catalog-elements-wrapp .img-wrapp .lianer-gradient {
  background: linear-gradient(-450deg, rgba(126, 175, 16, 0) 1.76%, rgba(126, 175, 16, 0.6) 99.6%);
  height: 45.625rem;
}
.front-page .catalog-elements.section-4 .catalog-elements-wrapp .img-wrapp img {
  width: 47.25rem;
  height: 55.25rem;
  top: -7rem;
  left: 17rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements.section-4 .catalog-elements-wrapp .img-wrapp img {
    width: 22.5rem;
    height: 26.125rem;
    left: 4rem;
    object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements .catalog-elements-wrapp {
    flex-direction: column;
    gap: 3.75rem;
  }
}
.front-page .catalog-elements .catalog-elements-wrapp .content {
  gap: 3.75rem;
  width: 66.125rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements .catalog-elements-wrapp .content {
    width: 100%;
    order: 2;
    gap: 1.875rem;
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements .catalog-elements-wrapp .content h2 {
    padding: 0 3.75rem;
  }
}
.front-page .catalog-elements .catalog-elements-wrapp .content p {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements .catalog-elements-wrapp .content p {
    margin-bottom: 3.125rem;
    padding: 0 3.75rem;
  }
}
.front-page .catalog-elements .catalog-elements-wrapp .img-wrapp {
  position: relative;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements .catalog-elements-wrapp .img-wrapp {
    order: 1;
  }
}
.front-page .catalog-elements .catalog-elements-wrapp .img-wrapp .lianer-gradient {
  width: 91.375rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog-elements .catalog-elements-wrapp .img-wrapp .lianer-gradient {
    width: 36.875rem;
    height: 16.375rem !important;
    margin-right: 4rem;
  }
}
.front-page .catalog-elements .catalog-elements-wrapp .img-wrapp img {
  position: absolute;
}
.front-page .catalog {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog {
    padding-bottom: 10rem;
  }
}
.front-page .catalog .navigation {
  padding: 1.5rem 2.5rem;
  display: none;
}
@media screen and (max-width: 767px) {
  .front-page .catalog .navigation {
    display: flex;
  }
}
.front-page .catalog .navigation svg {
  width: 4rem;
  height: 4rem;
}
.front-page .catalog .catalog-wrapp {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .front-page .catalog .catalog-wrapp {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .front-page .catalog .catalog-wrapp .title {
    padding-left: 3.75rem;
  }
}
.front-page .catalog .catalog-wrapp .title a {
  font-size: 2.5rem;
  color: #434343;
  transition: all 0.4s;
}
.front-page .catalog .catalog-wrapp .title a:hover {
  color: #e8181c;
}
@media screen and (max-width: 767px) {
  .front-page .catalog .catalog-wrapp .title a {
    display: none;
  }
}
.front-page .catalog .mob-button {
  display: none;
}
@media screen and (max-width: 767px) {
  .front-page .catalog .mob-button {
    display: block;
    margin-top: 0.6875rem;
    background: #E6E6E6;
  }
  .front-page .catalog .mob-button:hover {
    color: #2C2C2C;
  }
}
.front-page .distributor {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .front-page .distributor {
    padding-bottom: 7.5rem;
  }
}
.front-page .distributor .distributor-wrapp {
  gap: 8.375rem;
}
@media screen and (max-width: 767px) {
  .front-page .distributor .distributor-wrapp {
    flex-direction: column;
    gap: 1.25rem;
  }
}
.front-page .distributor .distributor-wrapp .left {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .front-page .distributor .distributor-wrapp .left {
    padding: 0 3.75rem;
    gap: 2.5rem;
  }
}
.front-page .distributor .distributor-wrapp .right {
  gap: 1.75rem;
}
@media screen and (max-width: 767px) {
  .front-page .distributor .distributor-wrapp .right {
    gap: 1rem;
  }
}
.front-page .distributor .distributor-wrapp .right img {
  width: 41rem;
  height: 37.25rem;
}
@media screen and (max-width: 767px) {
  .front-page .distributor .distributor-wrapp .right img {
    width: 18.875rem;
    height: 19.5rem;
  }
}
.front-page .services {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .front-page .services {
    padding-bottom: 7.5rem;
  }
}
.front-page .services .services-wrapp {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .front-page .services .services-wrapp {
    gap: 2.5rem;
  }
}
.front-page .services .services-wrapp h2 {
  width: 71.875rem;
}
@media screen and (max-width: 767px) {
  .front-page .services .services-wrapp h2 {
    width: 100%;
    padding: 0 3.75rem;
  }
}
.front-page .services .services-wrapp .cards {
  padding-bottom: 0;
}
.front-page .services .services-wrapp .cards .cards-wrapper .card span:first-child {
  width: 35.875rem;
}
@media screen and (max-width: 767px) {
  .front-page .services .services-wrapp .cards .cards-wrapper .card span:first-child {
    width: 100%;
  }
}
.front-page .map iframe {
  width: 100% !important;
  height: 55.5rem !important;
}

.catalog-page .catalog-filter {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter {
    padding-bottom: 10rem;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter {
  width: 40.625rem;
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter {
    gap: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter h1 {
    padding: 0 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-mob-wrapp {
    display: none;
  }
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-mob-wrapp.show {
    display: flex;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .title-filter {
  padding-bottom: 1.25rem;
  border-bottom: 0.125rem solid #434343;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .title-filter.justify {
    justify-content: space-between;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .title-filter span {
  font-size: 2.5rem;
  font-weight: 500;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .title-filter svg {
  display: none;
  width: 1.3125rem;
  height: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .title-filter svg.show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .title-filter {
    padding: 1.75rem 2.75rem;
    border: none;
    background: #FFF;
    border-radius: 0.625rem;
    justify-content: center;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .range-wrapp {
  border-bottom: 0.125rem solid #434343;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .range-wrapp input {
  cursor: pointer;
  padding: 0;
  margin-top: 0;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .range-wrapp .range-title {
  font-weight: 500;
  padding: 2.5rem 0;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .range-wrapp .size-range {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .range-wrapp .range-value {
  margin-bottom: 2.5rem;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .button-wrapp {
  gap: 1.25rem;
  margin-top: 3.75rem;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .filter .filter-wrapp .button-wrapp .btn {
  width: 100%;
  text-align: center;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards {
  gap: 2.5rem;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp {
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards {
  flex-wrap: wrap;
  gap: 1.875rem;
  width: 91.375rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards {
    width: 100%;
    order: 2;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards .filter-card {
  padding: 2.125rem 1.875rem;
  border-radius: 3.375rem;
  background: #e8181c;
  width: max-content;
  gap: 1.25rem;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards .filter-card span {
  color: #E6E6E6;
  font-size: 2rem;
  line-height: 1.2;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards .filter-card .close {
  cursor: pointer;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards .filter-card .close svg {
  width: 1.3125rem;
  height: 1.3125rem;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .filter-catalog-wrapp .filter-cards .reset-filter {
  padding: 2.125rem 1.875rem;
  border-radius: 3.375rem;
  background: #e8181c;
  width: max-content;
  background: #E6E6E6;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1.2;
  color: #2C2C2C;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .pagination {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .pagination {
    margin-top: 2.5rem;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .pagination .pagination-wrapp {
  width: 40.625rem;
  padding: 1.5rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .pagination .pagination-wrapp {
    width: 100%;
    justify-content: center;
  }
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .pagination .pagination-wrapp .button-nav {
  width: 4rem;
  height: 4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.catalog-page .catalog-filter .catalog-filter-wrapp .catalog-cards .pagination .pagination-wrapp .pag-num span {
  padding: 1.25rem;
  color: #434343;
}
.catalog-page .catalog-desc {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-desc {
    padding-bottom: 10rem;
  }
}
.catalog-page .catalog-desc .catalog-desc-wrapp {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-desc .catalog-desc-wrapp {
    flex-direction: column;
    padding: 0 3.25rem;
  }
}
.catalog-page .catalog-desc .catalog-desc-wrapp .content {
  gap: 5rem;
}
.catalog-page .catalog-desc .catalog-desc-wrapp .content .col {
  gap: 2.5rem;
}
.catalog-page .catalog-desc .catalog-desc-wrapp .content .col > * {
  color: #000;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-desc .catalog-desc-wrapp .content .col {
    font-size: 1.5rem;
  }
}
.catalog-page .catalog-desc .catalog-desc-wrapp .content .col span {
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-desc .catalog-desc-wrapp .content .col span {
    font-size: 1.75rem;
  }
}
.catalog-page .catalog-desc .catalog-desc-wrapp .content .col ul {
  list-style-type: disc;
  margin-left: 2.5rem;
}
.catalog-page .catalog-desc .catalog-desc-wrapp .content .col ul li {
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .catalog-page .catalog-desc .catalog-desc-wrapp .content .col ul li {
    font-size: 1.5rem;
  }
}

.card-page .info-product {
  padding-bottom: 10rem;
}
.card-page .info-product .info-product-wrapp {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp {
    flex-direction: column;
  }
}
.card-page .info-product .info-product-wrapp .left {
  background: #FFF;
	position: relative;
}
.card-page .info-product .info-product-wrapp .left .img-wrapp {
  width: 83.75rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .left .img-wrapp {
    width: 100%;
  }
}
.card-page .info-product .info-product-wrapp .left .mainSwiperTumb .swiper-slide {
  width: 83.75rem !important;
  height: 100.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .left .mainSwiperTumb .swiper-slide {
    width: 100% !important;
    height: 47.5rem;
  }
}
.card-page .info-product .info-product-wrapp .left .mainSwiperTumb .swiper-slide img {
/*   width: 50.75rem; */
width: 100%
	height: 88.25rem;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .left .mainSwiperTumb .swiper-slide img {
    width: 25.25rem;
    height: 43.75rem;
  }
}
.card-page .info-product .info-product-wrapp .left .swiperTumb2 .swiper-slide {
  width: 21rem !important;
  height: 25.5rem;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .left .swiperTumb2 .swiper-slide {
    width: 9.75rem !important;
    height: 11.875rem;
  }
}
.card-page .info-product .info-product-wrapp .left .swiperTumb2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-page .info-product .info-product-wrapp .right {
  gap: 2.5rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .right {
    gap: 3.75rem;
  }
}
.card-page .info-product .info-product-wrapp .right h1 {
  font-weight: 500;
}
.card-page .info-product .info-product-wrapp .right .top {
  gap: 1.25rem;
}
.card-page .info-product .info-product-wrapp .right .top .title {
  font-size: 2rem;
}
.card-page .info-product .info-product-wrapp .right .btn {
  width: 100%;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .right .btn {
    margin-top: 0;
  }
}
.card-page .info-product .info-product-wrapp .right .price {
  flex-direction: row;
}
@media screen and (max-width: 767px) {
  .card-page .info-product .info-product-wrapp .right .price {
    gap: 1.875rem;
  }
}
.card-page .info-product .info-product-wrapp .right .price span:first-child {
  font-weight: 700;
}
.card-page .product-desc {
}
@media screen and (max-width: 767px) {
  .card-page .product-desc {
  }
}
.card-page .product-desc .product-desc-wrapp {
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp {
    flex-direction: column;
    gap: 5rem;
  }
}
.card-page .product-desc .product-desc-wrapp .left {
  gap: 2.75rem;
  justify-content:center;
  width: 50%;
}
.card-page .product-desc .product-desc-wrapp .right-content {
    width: 50%;
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp .left {
    width: 100%;
    gap: 3rem;
  }
    .card-page .product-desc .product-desc-wrapp .right-content {
        width: 100%;
    }
}
.card-page .product-desc .product-desc-wrapp .left .parameters {
  margin-top: 1.25rem;
}
.card-page .product-desc .product-desc-wrapp .right {
  gap: 0.875rem;
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp .right {
    width: 100%;
    flex-direction: column;
  }
}
.card-page .product-desc .product-desc-wrapp .right .mySwiper {
  width: 83.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp .right .mySwiper {
    width: 100%;
  }
}
.card-page .product-desc .product-desc-wrapp .right .mySwiper .swiper-slide {
  height: 63.75rem;
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp .right .mySwiper .swiper-slide {
    height: 50rem;
  }
}
.card-page .product-desc .product-desc-wrapp .right .mySwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  border-radius:2rem;
  object-fit: cover;
}
.card-page .product-desc .product-desc-wrapp .right .navigation-card-mob {
  display: none;
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp .right .navigation-card-mob {
    display: none;
    width: 100%;
    padding: 0 3.25rem;
    z-index: 99;
  }
  .card-page .product-desc .product-desc-wrapp .right .navigation-card-mob .card-item-prev,
  .card-page .product-desc .product-desc-wrapp .right .navigation-card-mob .card-item-next {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .card-page .product-desc .product-desc-wrapp .right .card-item-prev,
  .card-page .product-desc .product-desc-wrapp .right .card-item-next {
    display: none;
  }
}
.card-page .catalog {
  padding-bottom: 15rem;
}
@media screen and (max-width: 767px) {
  .card-page .catalog {
    padding-bottom: 10rem;
  }
}
.card-page .catalog .catalog-wrapp {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .card-page .catalog .catalog-wrapp {
    gap: 2.5rem;
  }
}
.card-page .catalog .catalog-wrapp .title a {
  font-size: 2.5rem;
  transition: all 0.4s;
}
.card-page .catalog .catalog-wrapp .title a:hover {
  color: #e8181c;
}
@media screen and (max-width: 767px) {
  .card-page .catalog .catalog-wrapp .title {
    padding: 0 3.25rem;
  }
  .card-page .catalog .catalog-wrapp .title a {
    display: none;
  }
}
.card-page .catalog .catalog-wrapp .navigation {
  display: none;
}
@media screen and (max-width: 767px) {
  .card-page .catalog .catalog-wrapp .navigation {
    display: flex;
    padding: 0 3.25rem;
  }
}

.policy-page .policy-main {
  padding-bottom: 10rem;
  overflow: hidden;
}
.policy-page .policy-main .policy-main-wrapp h1 {
  margin-bottom: 3rem;
}
.policy-page .policy-main .policy-main-wrapp h2 {
  margin-bottom: 3rem;
  margin-top: 3rem;
  font-size: 2.25rem;
}
.policy-page .policy-main .policy-main-wrapp ol {
  margin-top: 2.25rem;
  padding-left: 3.75rem;
}
.policy-page .policy-main .policy-main-wrapp ol li {
  margin-bottom: 2.25rem;
}
.policy-page .policy-main .policy-main-wrapp ul {
  list-style-type: disc;
  padding-left: 3.75rem;
}
.policy-page .policy-main .policy-main-wrapp ul li {
  list-style-type: disc;
}
.wpcf7-spinner
{
	display: none;
}
.solo-coffee .form-questions .btn
{
	border: none;
}
.solo-coffee .form-questions .form-questions-wrapp .right .form-wrapp .policy{justify-content:flex-start!important;} 
.solo-coffee .form-questions .form-questions-wrapp .right .form-wrapp .policy span, .solo-coffee .form-questions .form-questions-wrapp .right .form-wrapp .policy a
{
	font-size: 1.4rem
}
.solo-coffee .form-questions .form-questions-wrapp .right .form-wrapp .policy p {
	width: 100%;
	text-align: center
}
.solo-coffee .form-questions .form-questions-wrapp .right .form-wrapp .policy p a
{
	display: inline
}
.solo-coffee .form-questions .wpcf7-response-output{color:#fff}
/*# sourceMappingURL=main.css.map */
