@font-face {
  font-family: "Nunito Sans", sans-serif;
  src: url(../fonts/NunitoSans-Regular.ttf), url(../fonts/NunitoSans-Regular.woff) format("woff"), url(../fonts/NunitoSans-Regular.woff2) format("woff2");
  font-weight: 400;
}
* {
  margin: 0;
  box-sizing: border-box;
  list-style: none;
}

html {
  height: 100%;
}

body {
  font-size: 20px;
  line-height: 1.3;
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
}
body a {
  text-decoration: none;
  display: block;
}

img {
  width: 100%;
  height: auto;
}

.main {
  flex-grow: 1;
}
.main-padding {
  padding-top: 75px;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.text-page {
    padding: 100px 0;
}
.text-page h1 {
    margin-bottom: 30px;
}
.btn,
.clickBuyButton,
#buyoneclick_form_order .button {
  background: #E31E24 !important;
  color: #fff !important;
  padding: 20px 35px !important;
  text-decoration: none !important;
  border-radius: 56px !important;
  text-align: center !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.5s !important;
}
.btn:hover,
.clickBuyButton:hover,
#buyoneclick_form_order .button:hover {
  background: #2B2B2B !important;
}

.title {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 48px;
  margin-bottom: 30px;
}

.logo{
	width: 74px;
    height: 54px;
}
.logo img {
  width: 100%;
  height: 100%;
}

.main__title {
  font-family: "Nunito Sans", sans-serif;
  color: #000;
  font-size: 64px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.header {
  border-bottom: 1px solid #EAEAEA;
  background: #FFF;
  -webkit-backdrop-filter: blur(11px);
          backdrop-filter: blur(11px);
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  z-index: 50;
  font-size: 16px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header__nav-list li a {
  padding: 25px 0;
  color: #000;
  position: relative;
  transition: all 0.3s;
}
.header__nav-list li a.menu-link--active, .header__nav-list li a:hover {
  color: #E31E24;
}
.header__nav-list li a.menu-link--active::after, .header__nav-list li a:hover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E31E24;
}
.header__nav-list li {
  position: relative;
}
.header__nav-list li.menu-item-has-children:hover .sub-menu {
  height: 175px;
}
.header__nav-list .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  width: 180px;
  padding: 0;
  font-size: 14px;
  overflow: hidden;
  height: 0;
  transition: all 0.5s;
}
.header__nav-list .sub-menu li {
  padding: 10px;
}
.header__nav-list .sub-menu a {
  padding: 10px 0;
}

.top {
  height: 100vh;
  background-image: url(../images/top-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
  transition: background-image 0.8s ease;
}
.top__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top__text {
  color: #000;
  margin-bottom: 30px;
  max-width: 650px;
}
.top .btn {
  width: 265px !important;
}

.info {
  background: linear-gradient(135deg, #545454 0%, #292929 100%);
  color: #fff;
  overflow: hidden;
}
.info__inner {
  display: flex;
}
.info__content {
  padding: 40px 0;
  width: 70%;
}
.info__content-text {
  margin-bottom: 40px;
  max-width: 805px;
  font-size: 19px;
}
.info__content-text span {
  color: #E31E24;
}
input:hover{
	border-color: #E31E24 ;
}
.catalog .info__img{
  animation: none;
}
.info__img img {
  width: 100%;
  height: auto;
}
.info.catalog .info__img {
  display: flex;
  align-items: flex-end;
  margin-right: -240px;
}
.info.catalog .info__img img {
  width: auto;
  height: 100%;
}
.info.about-company .info__inner {
  align-items: center;
}
.info .btn:hover {
  background: #fff !important;
  color: #E31E24 !important;
}

.products {
  padding: 60px 0;
}
.products__row {
  display: flex;
  gap: 20px;
}
.products__item {
  width: 33.33%;
  border-radius: 5px;
  border: 1px solid #E7E7E7;
  background: #FFF;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.5s;
}
.products__item:hover {
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.25);
}
.products__item:hover .products__item-btn {
  color: #fff;
  background: #E31E24;
}
.products__item:nth-child(2) .products__item-img {
  max-height: 275px;
  display: flex;
  justify-content: center;
}
.products__item:nth-child(2) .products__item-img img {
  height: 100%;
  width: auto;
}
.products__item-btn {
  color: #E31E24;
  padding: 20px 0;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.5s;
}
.products__item-title {
  font-size: 32px;
  max-width: 220px;
  margin: 25px auto 20px;
  text-align: center;
  font-weight: 400;
}

.pros {
  position: relative;
  overflow: hidden;
}
.pros::before, .pros::after {
  content: "";
  position: absolute;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 600px;
  height: 100%;
  background-image: url(../images/pros/pros-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pros::after {
  right: auto;
  left: -300px;
}
.pros__inner {
  display: flex;
  align-items: center;
  padding: 110px 0;
  gap: 5%;
  position: relative;
  z-index: 5;
}
.pros__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 60%;
}
.pros__content {
  width: 40%;
}
.pros__tab-content {
  display: none;
}
.pros__tab-content.active {
  display: block;
  height: 190px;
  opacity: 0;
  animation: ani 1.5s forwards;
}
@keyframes ani {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.pros__content-title {
  color: #E31E24;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  font-family: "Nunito Sans", sans-serif;
}
.pros__content-text {
  font-size: 20px;
  color: #616161;
}
.pros__tab {
  border-radius: 8px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 15px;
  color: #9A9A9A;
  cursor: pointer;
}
.pros__tab.active {
  background: #E31E24;
  color: #fff;
}
.pros__tab.active img {
  mix-blend-mode: normal;
  opacity: 1;
}
.pros__tab img {
  max-width: 50px;
  mix-blend-mode: difference;
  opacity: 0.23;
}

.callback {
  padding: 45px 0;
  background-color: #F5F5F5;
  position: relative;
}
.callback::after, .callback::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 635px;
  background-image: url(../images/form-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
.callback__inner {
  position: relative;
  z-index: 5;
}
.callback::after {
  transform: scale(-1, 1);
  left: auto;
  right: 0;
}
.callback .title {
  text-align: center;
}
.callback__form p {
  max-width: 795px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.callback__form p .wpcf7-form-control-wrap {
  width: 100%;
}
.callback__form p .wpcf7-form-control-wrap:nth-child(-n+2) {
  width: 49%;
}
.callback__form p .wpcf7-form-control-wrap[data-name=input-email] {
  width: 100%;
}
.callback__form p .btn {
  width: 305px !important;
  margin: 15px auto 0;
  outline: none;
  border: none;
  font-size: 20px;
  font-family: "Montserrat";
}
.callback__input {
  border-radius: 35px;
  border: 1px solid #D6D6D6;
  background: #FFF;
  outline: none;
  padding: 15px 20px;
  font-size: 16px;
  font-family: "Montserrat";
  width: 100%;
}
.callback__input::-moz-placeholder {
  color: #7C7C7C;
  font-family: "Montserrat";
}
.callback__input::placeholder {
  color: #7C7C7C;
  font-family: "Montserrat";
}
.callback__input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  background-color: transparent;
}
.callback .wpcf7-spinner {
  display: none;
}

.footer {
  padding: 30px 0 40px;
  font-size: 16px;
}
.footer .container {
  position: relative;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
.footer .logo {
  width: 102px;
  height: 100%;
}
.footer .logo img {
  height: 75px;
  max-height: initial;
}
.footer .callback__form {
  max-width: 385px;
  margin: 0;
  position: relative;
}
.footer .callback__form .wpcf7-form-control-wrap {
  width: 100% !important;
}
.footer .callback__form .btn {
  padding: 13px 35px !important;
  margin: 20px auto 0;
  font-size: 16px;
  width: 100% !important;
}
.footer__title {
  color: #BABABA;
  margin-bottom: 10px;
}
.footer__social {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer ul {
  padding: 0;
}
.footer ul li:not(:last-child) {
  margin-bottom: 5px;
}
.footer ul a {
  color: #000;
  transition: all 0.5s;
}
.footer ul a:hover {
  color: #E31E24;
}
.footer__copyright {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 40%;
  width: 100%;
  font-size: 14px;
  color: #BABABA;
}
.footer__copyright p {
  text-transform: uppercase;
}
.footer__copyright .mkey {
  display: flex;
  gap: 10px;
  text-transform: initial;
  color: #BABABA;
  transition: all .3s;
}
.footer__copyright .mkey:hover {
  color: #E31E24; 
}

.about {
  position: relative;
  overflow: hidden;
  padding: 60px 0 180px;
}
.about::before, .about::after {
  content: "";
  position: absolute;
  top: 0;
  right: -300px;
  bottom: 0;
  width: 600px;
  height: 100%;
  background-image: url(../images/pros/pros-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about::after {
  right: auto;
  left: -300px;
}

.expir {
  background: linear-gradient(135deg, #525252 0%, #292929 100%);
  margin-bottom: 115px;
  color: #fff;
}
.expir__inner {
  display: flex;
  position: relative;
}
.expir__img {
  position: absolute;
  left: 0;
  top: -50%;
  max-width: 475px;
  border-radius: 50%;
}
.expir__img  {
  transform: translatey(-30%);
  animation: content 1s forwards;
}

.expir__content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 60%;
  margin-left: auto;
  padding: 55px 0;
}

.expir__content  {
  transform: translatey(30%);
  animation: content 1s forwards;
}

@keyframes content {
  0% {transform: translatey(30%);}
  100% {transform: translateY(0);}
}

.expir__years {
  font-size: 96px;
  font-weight: 600;
  flex-shrink: 0;
}
.expir__text {
  font-size: 32px;
  max-width: 230px;
}

.expertise {
  text-align: center;
  padding-bottom: 60px;
}
.expertise__text {
  font-size: 24px;
  margin-bottom: 30px;
}
.expertise__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.expertise__item {
  max-width: 230px;
  transition: all 0.5s;
}

.partners {
  padding-bottom: 200px;
  background-image: url(../images/partners-bg.png);
  background-repeat: no-repeat;
  background-size: 1465px 940px;
  background-position: top center;
  height: fit-content;
  min-height: 940px;
}
.partners .title {
  text-align: center;
}
.partners__text {
  font-size: 24px;
  text-align: center;
  margin-bottom: 60px;
}
.partners__info-title {
  color: #E31E24;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-family: "Nunito Sans";
  font-weight: 400;
  margin-bottom: 20px;
}
.partners__tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
}
.partners__tab {
  font-family: "Nunito Sans";
  font-weight: 400;
  cursor: pointer;
  width: 16.66%;
}
.partners__tab:not(:first-child) {
  text-align: center;
}
.partners__tab:last-child {
  text-align: right;
}
.partners__tab.active span {
  border-bottom: 2px solid #000;
	font-weight: 600;
}
.partners__tab-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  display: none;
}
.partners__tab-content.active {
  display: flex;
}
.partners__country {
  padding: 0 10px;
  width: 33.33%;
}
.partners__country-address, .partners__country-phone, .partners__country-email {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #111;
}
.partners__country-address {
  font-size: 16px;
  color: #3E3E3E;
}
.partners__country-box {
  background: rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(13.5px);
          backdrop-filter: blur(13.5px);
  border-radius: 5px;
  margin-bottom: 20px;
  float: left;
	width: 100%;
}
.partners__country-title {
  background: rgba(0, 0, 0, 0.1);
  color: #000;
  font-size: 24px;
  height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}
.partners__country-title.active {
  background: #E31E24;
  color: #fff;
}
.partners__country-infowrapp {
  overflow: hidden;
  height: 0;
  transition: height 0.4s;
}
.partners__country-infowrapp.open-tab {
  height: auto;
}
.partners__country-info {
  padding: 20px 20px 40px;
  border-radius: 0 0 5px 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
div.partners__country > div > div > div > p{
	font-size: 16px;
    color: #3E3E3E;
}
div.partners__country > div > div > div > a{
	font-size: 16px;
    color: #3E3E3E;
}
div.partners__country > div > div > div > div > a{
	font-size: 16px;
    color: #3E3E3E;
}
.partners__country-info img {
  max-width: 20px;
  display: block;
}
.partners__country-title {
  font-size: 20px;
  text-transform: uppercase;
}

.news {
  padding: 60px 0;
}
.news .title {
  text-align: center;
  margin-bottom: 30px;
}
.news__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.news__posts article {
  border-radius: 5px;
}
.news__posts article.post img {
	border-radius: 5px;
	transition: all .3s;
}
.news__posts article a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.news__posts article h4 {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  flex-grow: 1;
  transition: all .3s;
}
.news__posts article .post-thumbnail {
  max-height: 460px;
  font-size: 0;
}
.news__posts article .post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
}
.news__posts article .post__date {
  font-size: 14px;
  color: #3E3E3E;
  transition: all .3s;
}
.news__posts article.post:hover img {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}
.news__posts article.post:hover h4,
.news__posts article.post:hover .post__date {
	color: #E31E24;
}
.news .blog__link {
  width: 305px !important;
  margin: 44px auto 0;
}

.blog__inner {
  padding: 60px 0;
}
.blog__title {
  margin-bottom: 40px;
  text-align: center;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  padding: 0 7px;
  color: #000;
}
.wp-pagenavi .page:not(:first-child), .wp-pagenavi span[aria-current=page]:not(:first-child) {
  border-left: 1px solid #000;
}
.wp-pagenavi span[aria-current=page] {
  text-shadow: 1px 0 0 #000;
}

.category__product-wrapp li.product img {
  border: 1px solid #E7E7E7;
}

.category__product-wrapp,
.related {
  padding: 60px 0;
}
.category__product-wrapp .products,
.related .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category__product-wrapp .products li,
.related .products li {
  width: 100% !important;
}
.category__product-wrapp .products li.product img,
.related .products li.product img {
  max-height: 430px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  border-radius: 5px;
	transition: all .3s;
}
.category__product-wrapp .products li h2,
.related .products li h2 {
  color: #000;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 10px;
}
.category__product-wrapp .products li span.button,
.related .products li span.button {
  color: #E31E24;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 20px;
  transition: all .3s;
  user-select: none;
}
.added_to_cart.wc-forward {
	display: none;
}
.category__product-wrapp .products li.product:hover img,
.related .products li.product:hover img {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}
.category__product-wrapp .products li:hover span.button,
.related .products li:hover span.button {
	text-shadow: 1px 0 0 #E31E24;
}
.category__product-wrapp .products li span.button::after,
.related .products li span.button::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  border-right: 1px solid;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
  right: 6px;
  top: 5px;
}

.category__page .category__img {
  max-height: 450px;
}
.category__page .category__img img {
  max-height: 450px;
  width: auto;
  padding: 50px 40px 0 50px;
}
.category__page .woocommerce-products-header {
  color: #fff;
  background: linear-gradient(135deg, #525252 0%, #2A2A2A 100%);
}
.category__page .woocommerce-products-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.category__page .category__img {
  background-image: url(../images/logo-big.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.category__page .category__info {
  padding: 30px 0;
}
.category__page .category__info h1 {
  font-family: "Nunito Sans";
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.category__page .term-description {
  font-size: 24px;
}

.category__main .title {
  text-align: center;
  margin-bottom: 60px;
}

.term-16 .category__pros {
  background-image: url(../images/cat-img2-pros.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 656px auto;
}

.term-17 .category__pros {
  background-image: url(../images/cat-img1-pros.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 656px auto;
}

.term-18 .category__product-wrapp .products {
  display: flex;
  justify-content: center;
}
.term-18 .category__product-wrapp .products .product {
  width: 33.33% !important;
  margin: 0 !important;
}
.term-18 .category__pros {
  background-image: url(../images/cat-img3-pros.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 427px auto;
}
.term-18 .category__pros .category__pros-item {
  max-width: 558px !important;
  border-radius: 115px;
}
.term-18 .category__pros .category__pros-row:nth-child(1) .category__pros-item:before {
  height: 95px !important;
}
.term-18 .category__pros .category__pros-row:nth-child(1) .category__pros-item::after {
  top: calc(100% + 95px) !important;
  width: 210px !important;
  z-index: 1;
}
.term-18 .category__pros .category__pros-row:nth-child(1) .category__pros-item:nth-child(2):before {
  height: 120px !important;
}
.term-18 .category__pros .category__pros-row:nth-child(1) .category__pros-item:nth-child(2)::after {
  top: calc(100% + 120px) !important;
  width: 120px !important;
  height: 2px;
  right: calc(60% - 2px);
  z-index: 1;
}
.term-18 .category__pros .category__pros-row:nth-child(2) .category__pros-item:before {
  height: 95px !important;
  top: auto !important;
  bottom: 100%;
}
.term-18 .category__pros .category__pros-row:nth-child(2) .category__pros-item::after {
  top: auto !important;
  bottom: calc(100% + 95px) !important;
  width: 300px !important;
  z-index: 1;
}
.term-18 .category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(2):before {
  height: 120px !important;
  right: calc(60% - 2px);
}
.term-18 .category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(2)::after {
  top: auto !important;
  bottom: calc(100% + 120px) !important;
  width: 120px !important;
  height: 2px;
  right: calc(60% - 2px);
  z-index: 1;
}

.category__pros {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 736px;
}
.category__pros-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.category__pros-item {
  color: #000;
  text-align: center;
  font-family: "Montserrat";
  font-size: 20px;
  padding: 20px;
  border-radius: 70px;
  background: #F8F8F8;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.category__pros-item::before, .category__pros-item::after {
  position: absolute;
  content: "";
  background: #EAEAEA;
  width: 2px;
  z-index: -1;
}
.category__pros .category__pros-row:nth-child(1) {
  gap: 100px;
  justify-content: center;
}
.category__pros .category__pros-row:nth-child(1) .category__pros-item {
  max-width: 440px;
}
.category__pros .category__pros-row:nth-child(1) .category__pros-item::before, .category__pros .category__pros-row:nth-child(1) .category__pros-item::after {
  top: 100%;
}
.category__pros .category__pros-row:nth-child(1) .category__pros-item:nth-child(1)::before {
  height: 210px;
  left: 60%;
}
.category__pros .category__pros-row:nth-child(1) .category__pros-item:nth-child(1)::after {
  height: 2px;
  width: 50px;
  left: 60%;
  top: calc(100% + 210px);
}
.category__pros .category__pros-row:nth-child(1) .category__pros-item:nth-child(2)::before {
  height: 200px;
  left: 40%;
}
.category__pros .category__pros-row:nth-child(2) .category__pros-item {
  max-width: 323px;
}
.category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(2) {
  max-width: 283px;
}
.category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(2)::before {
  top: 100%;
  right: 50%;
  height: 60px;
}
.category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(2)::after {
  top: calc(100% + 60px);
  width: 200px;
  right: 50%;
  height: 2px;
}
.category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(1):before {
  top: 100%;
  left: 30%;
  height: 60px;
}
.category__pros .category__pros-row:nth-child(2) .category__pros-item:nth-child(1)::after {
  top: calc(100% + 60px);
  left: 30%;
  height: 2px;
  width: 300px;
}
.category__pros .category__pros-row:nth-child(3) .category__pros-item {
  max-width: 255px;
}
.category__pros .category__pros-row:nth-child(3) .category__pros-item:nth-child(1)::before {
  bottom: 100%;
  left: 40%;
  height: 40px;
}
.category__pros .category__pros-row:nth-child(3) .category__pros-item:nth-child(1)::after {
  bottom: calc(100% + 40px);
  left: 40%;
  height: 2px;
  width: 250px;
}
.category__pros .category__pros-row:nth-child(3) .category__pros-item:nth-child(2)::before {
  bottom: 100%;
  right: 40%;
  height: 40px;
}
.category__pros .category__pros-row:nth-child(3) .category__pros-item:nth-child(2)::after {
  bottom: calc(100% + 40px);
  right: 40%;
  height: 2px;
  width: 250px;
}
.category__pros .category__pros-row:nth-child(4) {
  gap: 75px;
  justify-content: center;
}
.category__pros .category__pros-row:nth-child(4) .category__pros-item {
  max-width: 485px;
}
.category__pros .category__pros-row:nth-child(4) .category__pros-item:nth-child(1)::before {
  bottom: 100%;
  left: 50%;
  height: 200px;
}
.category__pros .category__pros-row:nth-child(4) .category__pros-item:nth-child(1)::after {
  bottom: calc(100% + 200px);
  left: 50%;
  height: 2px;
  width: 100px;
}
.category__pros .category__pros-row:nth-child(4) .category__pros-item:nth-child(2)::before {
  bottom: 100%;
  right: 50%;
  height: 220px;
}
.category__pros .category__pros-row:nth-child(4) .category__pros-item:nth-child(2)::after {
  bottom: calc(100% + 220px);
  right: 50%;
  height: 2px;
  width: 100px;
}

.category__main-other {
  padding: 100px 0;
}
.category__main-other .title {
  -moz-text-align-last: left;
       text-align-last: left;
}
.category__main-other .category__main-links {
  display: flex;
  gap: 20px;
}
.category__main-other .category__main-links a {
  width: 49%;
  color: #000;
}
.category__main-other .category__main-links .products__item-title {
  max-width: 100%;
  margin: 20px auto 0;
}
.category__main-other .category__main-links .products__item-img {
  max-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category__main-other .category__main-links .products__item-img img {
  height: 100%;
  width: auto;
}
.category__main-other .category__main-links .products__item-btn {
  font-size: 16px;
}

.contacts {
  padding: 60px 0;
}
.contacts__title {
  text-align: center;
}
.contacts__info {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 30px;
  max-width: 970px;
  margin: 0 auto 45px;
}
.contacts__info-title {
  color: #BABABA;
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
}
.contacts__info-link {
  color: #000;
  font-size: 14px;
  transition: all .3s;
}
.contacts__info-link:hover {
	color: #E31E24;
}
.contacts__form p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 785px;
  margin: 0 auto;
  gap: 10px;
}
.contacts__form p .wpcf7-form-control-wrap {
  width: 100%;
}
.contacts__form p .wpcf7-form-control-wrap:nth-child(-n+2) {
  width: 49%;
}
.contacts__form p .input-name, .contacts__form p .input-phone {
  width: 100%;
}
.contacts__form p .input-mail, .contacts__form p .input-comment {
  width: 100%;
}
.contacts__form p .input-comment {
  resize: none;
  border-radius: 15px;
  height: 150px;
}
.contacts__form p .btn {
  width: 385px !important;
  margin: 0 auto;
  outline: none;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
}

.product__breadcrumbs {
  margin: 15px 0;
  color: #B3B3B3;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-weight: 400;
}
.product__breadcrumbs-title {
  color: #2B2B2B;
}

.single-product .woocommerce-message {
  display: none;
}
.single-product__info {
  display: grid;
  grid-template-columns: 690px auto;
  gap: 15px;
  margin-left: -5px;
}
.single-product__info .wpgs-for img {
  height: 612px;
}
.single-product__info .wpgs-nav img {
  height: 145px;
}
.single-product__info .wpgs-lightbox-icon {
  padding: 0 5px;
}
.single-product__info .woocommerce-product-gallery img {
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #E7E7E7;
}
.single-product__inner .entry-summary {
  border: 1px solid #A1A1A1;
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.single-product__inner .entry-summary .cart {
  order: 2;
	margin-top: 20px;
}
.single-product__inner .entry-summary .quantity {
  display: none;
}
.single-product__inner .entry-summary .product_title {
  line-height: 1;
  font-family: "Nunito Sans";
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.single-product__inner .entry-summary .woocommerce-product-details__short-description, .single-product__inner .entry-summary .product__recommend {
  font-size: 16px;
  margin-bottom: 30px;
}
.single-product__inner .entry-summary .product__recommend {
  margin-bottom: 0;
}
.single-product__inner .entry-summary .product__recommend p {
  margin-bottom: 15px;
}
.single-product__inner .entry-summary .callback_tip {
  color: #A0A0A0;
  font-size: 16px;
  margin-bottom: 10px;
}
.single-product__inner .entry-summary .btn {
  display: none;
}
.single-product__inner .entry-summary .clickBuyButton {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 500;
}
.single-product__inner .entry-summary .product__for {
  margin-bottom: auto;
}
.single-product__inner .entry-summary .product__for-title {
  font-size: 32px;
  margin-bottom: 20px;
}
.single-product__inner .entry-summary .product__for-list {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single-product__inner .entry-summary .product__for-list li {
  font-size: 16px;
  color: #E31E24;
  position: relative;
  padding-left: 20px;
}
.single-product__inner .entry-summary .product__for-list li::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 12px;
  background-image: url(../images/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#formOrderOneClick .popup {
  width: 488px !important;
  height: 766px !important;
  display: inline-flex !important;
  padding: 77px 50px !important;
  background-color: #F5F5F5 !important;
  top: 50% !important;
  border-radius: 0 !important;
  border: none !important;
  background-image: url(../images/popup-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
}
#formOrderOneClick #buyoneclick_form_order h2 {
  color: #000;
  font-family: "Montserrat";
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
}
#formOrderOneClick #buyoneclick_form_order input {
  border-radius: 35px;
  border: 1px solid #D6D6D6;
  padding: 15px 20px;
  margin: 0 0 10px;
  outline: none;
  height: auto;
  box-shadow: none;
  text-shadow: none;
  width: 100%;
}
#formOrderOneClick #buyoneclick_form_order input::-moz-placeholder {
  font-family: "Montserrat";
  color: #7C7C7C;
  text-shadow: none;
}
#formOrderOneClick #buyoneclick_form_order input::placeholder {
  font-family: "Montserrat";
  color: #7C7C7C;
  text-shadow: none;
}
#formOrderOneClick #buyoneclick_form_order input:-webkit-autofill {
  -webkit-box-shadow: inset 0 0 0 50px #fff;
  -webkit-text-fill-color: #000;
}
#formOrderOneClick #buyoneclick_form_order .button {
  margin: 30px 0 0 !important;
  box-shadow: none;
  font-size: 16px;
  font-family: "Montserrat";
  width: 100% !important;
  text-shadow: none;
}
#formOrderOneClick .close_order {
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  color: #000 !important;
  top: 0 !important;
  right: 0 !important;
}

.single-post__inner {
  padding: 60px 0;
}
.single-post__inner h1 {
  margin-bottom: 30px;
}
.single-post__inner .entry-content {
  margin-bottom: 50px;
}
.single-post__inner .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 30px;
}
.single-post__inner .nav-links .nav-previous, .single-post__inner .nav-links .nav-next {
  position: absolute;
  top: 0;
  left: 0;
}
.single-post__inner .nav-links .nav-previous a, .single-post__inner .nav-links .nav-next a {
  color: #E31E24;
}
.single-post__inner .nav-links .nav-next {
  left: auto;
  right: 0;
}

.menu__burger {
  cursor: pointer;
  width: 24px;
  height: 16px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 30px;
}
.menu__burger span {
  height: 2px;
  background: #000;
}

.scroll-lock {
  height: 100vh;
  overflow: hidden;
}

/*  extra*/
.wpcf7-not-valid-tip {
  font-size: 10px;
  line-height: 1;
  position: absolute;
  left: 23px;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0;
  padding: 0;
  border: none;
  max-width: 795px;
  text-align: center;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.wpcf7-spinner {
  display: none;
}

.footer .wpcf7-response-output {
  max-width: 385px !important;
  transform: translateX(0%) !important;
  left: 0 !important;
  font-size: 10px !important;
}

/*  lang*/
.trp_language_switcher_shortcode a {
	color: #000 !important;
}
.trp-language-switcher .trp-ls-shortcode-current-language,
.trp-language-switcher > div{
    /*width: 55px !important;
	background-position: calc(100% - 8px) calc(1em + -2px), calc(100% - 3px) calc(1em + -2px);*/
    
        width: 61px !important;
    background-position: right center;
}
.trp-language-switcher {
    margin: 0 !important;
	text-transform: lowercase;
    width: fit-content !important;
}
.trp-language-switcher:focus .trp-ls-shortcode-language, .trp-language-switcher:hover .trp-ls-shortcode-language {
    width: 55px !important;
}
.trp-language-switcher > div {
    border: none !important;
}
.trp-language-switcher > div > a{
    padding-left: 0 !important;
}


/* anima */


.scrollItem h1 {
  transform: translatey(30%);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.3s;
}
h1.scrollItem {
  transform: translatey(30%);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.scrollItem h3 {
  transform: translatey(30%);
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.scrollItem p {
  transform: scale(0);
  transition: 0.7s;
}

.scrollItem .first {
  transform: translatey(-20%);
  opacity: 0;
}
.scrollItem .second {
  transform: translatey(20%);
  opacity: 0;
}
.scrollItem .third {
  transform: translatey(-20%);
  opacity: 0;
}


.activeAnimation h3 {
  transform: translatey(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.3s;
}
h1.activeAnimation {
  transform: translatey(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.activeAnimation h1 {
  transform: translatey(0px);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.activeAnimation p {
  transform: scale(1);
  transition: 1s;
}
.activeAnimation .first {
  transform: translatey(0px);
  opacity: 1;
}
.activeAnimation .second {
  transform: translatey(0px);
  opacity: 1;
}
.activeAnimation .third {
  transform: translatey(0px);
  opacity: 1;
}

/*
.activeAnimation .link1,
.activeAnimation .link2,
.activeAnimation .link3,
.activeAnimation .link4{
  animation-duration: 1s;
  animation-name: appearance;
  z-index: -1;  
}

@keyframes appearance {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
*/
#page > main > div > section > p > a{
	display: inline-block;
}
#page > main > div > section{
	    line-height: 30px;
}
#page > main > div > section > p{
	text-indent: 30px;
    margin-top: 20px;
}



.category__pros-row{
	z-index: -1;
}
@media screen and (max-width: 432px){
.info__img{
	animation: none;
}
}





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