@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;700&family=Roboto:wght@400;600;700&display=swap');

:root {
  --main-color: #778E34;
  --accent-color: #97B33C;
  --dark-color: #10292E;
  --header-bg-color: #31708F;
  --header-bright: 0.5;
  --callback-bg-color: #31708F;
  --callback-bright: 0.5;
}

html,
body,
div,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block
}

ul {
  list-style: disc;
  padding-left: 20px;
}

ol {
  list-style: decimal;
  padding-left: 20px;
}

blockquote,
q {
  quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

*,
:before,
:after {
  box-sizing: border-box
}

:hover,
:active,
:focus {
  outline: none
}

html {
  font-size: 62.5%
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400
}

.clear:before,
.clear:after {
  content: ' ';
  display: table
}

.clear:after {
  clear: both
}

.clear {
  *zoom: 1
}

img {
  max-width: 100%;
  vertical-align: bottom
}

a {
  color: #444;
  text-decoration: none;
  transition: all .15s ease-out;
}

a:hover {
  color: #444;
  opacity: .9;
}

a:focus,
a:hover,
a:active,
input:focus {
  outline: 0
}

strong,
b {
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Slab', serif;
  font-weight: 700
}

.wrapper {
  position: relative;
}

.container {
  width: 100%;
  padding: 0 15px;
  position: relative;
  margin-right: auto;
  margin-left: auto
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 10
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 11px;
}

footer .header-wrap {
  padding-bottom: 0;
}

.header-wrap .text,
.header-wrap .phone {
  text-align: center;
}

.header-wrap .text {
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 70px;
}

header .logo {
  align-items: flex-end;
  cursor: pointer;
}

header .logo.front {
  cursor: default;
}

header .logo .thumb img {
  height: 120px;
  width: auto;
}

.logo .thumb {
  margin-right: 15px
}

.logo .thumb img {
  height: 70px;
  width: auto;
}

.logo .text span:first-child {
  display: block;
  font-size: 24px;
  line-height: 24px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  margin-bottom: 15px
}

.logo .text span:last-child {
  line-height: 13px;
  font-size: 15px;
}

.logo a {
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.social-links a svg {
  width: 37px;
  height: 37px;
  fill: #fff
}

.social-links a+a {
  margin-left: 15px
}

.social-links a:hover {
  opacity: .75
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: #222f16;
  font-weight: 500;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 0;
  cursor: pointer
}

.btn--green {
  background-color: transparent;
  box-shadow: 0 8px 15px 0 rgba(47, 46, 33, 0.2)
}

.btn--green:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: -moz-linear-gradient(0deg, var(--main-color) 0%, var(--main-color) 100%);
  background-image: -webkit-linear-gradient(0deg, var(--main-color) 0%, var(--main-color) 100%);
  background-image: -ms-linear-gradient(0deg, var(--main-color) 0%, var(--main-color) 100%);
  transition: all .25s ease-out
}

.btn--green:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: var(--main-color);
  transition: opacity .3s ease
}

.btn--green:hover:after {
  filter: brightness(90%);
}

.btn--border {
  color: #fff;
  border-width: 1px;
  border-color: #f7f7ff;
  border-style: solid
}

.btn--border:hover {
  background: #fff;
  color: #222f16
}

.header-btns .btn {
  height: 38px;
  width: 195px;
  background-color: #4444448f;
}

.header-btns .btn+.btn {
  margin-left: 20px
}

.phone a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  text-shadow: 0px 0px 11px #000;
}

.phone a:hover {
  text-decoration: underline
}

.section {
  position: relative
}

.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1
}

.section-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.first-screen {
  min-height: 720px;
  text-align: center;
  padding-top: 211px;
  color: #fff;
}

.home .first-screen {
  padding-bottom: 80px;
}

.main-row {
  padding: 34px 0 8px;
  display: flex;
  align-items: center;
}

.main-title {
  font-size: 44px
}

.main-title-desc {
  font-size: 28px;
  font-weight: 700;
  margin-top: 20px
}

.main-features-wrap {
  color: #000;
  display: flex;
  justify-content: center;
  padding: 30px 0;
  border-radius: 5px;
}

.main-features-wrap .item {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  color: #fff;
}

.main-features-wrap .item:before {
  content: url(../img/fs_check.svg);
  display: block;
  width: 100px;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto
}

.block_title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 34px;
  font-family: 'Roboto Slab', serif;
}

.calc_totals {
  box-shadow: 0 0px 45px 0 rgb(39 39 27);
  padding: 30px;
  border-radius: 5px;
  position: relative;
  color: #fff;
}

.calc_totals a {
  color: #fff;
}

.calc_totals .title_name {
  color: #fff !important;
}

.calc_totals:before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  width: 220px;
  height: 308px;
  left: -140px;
  top: 10px;
  background-repeat: no-repeat
}

.text-rev-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px
}

.text-rev-wrap .item {
  margin-bottom: 50px;
  text-align: justify;
}


.text-rev-wrap .item-head {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
  gap: 20px;
}

.text-rev-wrap .item-head .thumb {
  min-width: 80px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 5px;
}

.text-rev-wrap .item-head .name {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  margin-bottom: 5px
}

.text-rev-wrap .item-head .desc {
  color: #515151
}

.text-rev-wrap .item-text {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.block_title.small {
  font-size: 28px;
  margin-bottom: 30px
}

.block_title.big {
  margin: 60px 0 20px
}

.phone-input {
  background: #f7f7ff;
  border-radius: 5px;
  max-width: 240px;
  width: 100%;
  height: 46px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  vertical-align: top;
}

.first-screen .phone-input {
  max-width: 270px;
}

.phone-input::-webkit-input-placeholder {
  color: #9c9898
}

.phone-input::-moz-placeholder {
  color: #9c9898
}

.phone-input:-ms-input-placeholder {
  color: #9c9898
}

.phone-input:-moz-placeholder {
  color: #9c9898
}

.form-row .btn--green {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  height: 46px;
  width: 240px
}

.form-row .acceptance {
  display: flex;
  max-width: 250px;
  margin-left: auto;
  margin-right: 100px;
  color: #8b8787;
  font-size: 12px;
  margin-top: 15px;
  padding-left: 15px
}

.form-row .acceptance input {
  margin-right: 10px
}

.form-row .acceptance a {
  color: #8b8787;
  text-decoration: underline
}

.faq .block_title {
  text-align: left
}

.faq_wrap {
  padding-left: 30px;
  position: relative
}

.acc-btn {
  width: 100%;
  margin: 0 auto;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--main-color);
  position: relative
}

.acc-btn:before,
.acc-btn:after {
  content: '';
  display: block;
  position: absolute;
  top: 5px;
  left: -30px;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: 100%;
  background-size: 100%
}

.acc-btn:before {
  background-image: url(../img/faq_plus.svg);
  opacity: 1
}

.acc-btn:after {
  background-image: url(../img/faq_minus.svg);
  opacity: 0
}

.acc-btn.selected:before {
  opacity: 0
}

.acc-btn.selected:after {
  opacity: 1
}

.acc-btn.selected {
  color: #241e1e
}

.acc-content {
  height: 0;
  width: 100%;
  margin: 0 auto 20px;
  overflow: hidden
}

.acc-content-inner {
  padding: 15px 0 0;
  font-size: 15px;
  color: #6c6c6c
}

.acc-content-inner ul {
  margin: 15px 0
}

.acc-content-inner ul li {
  display: block;
  position: relative;
  margin-bottom: 5px;
  padding-left: 15px
}

.acc-content-inner ul li:before {
  content: '-';
  display: block;
  position: absolute;
  left: 0;
  top: 0
}

.callback.section {
  min-height: 438px;
  display: flex;
  align-items: center;
}

.callback.section .phone-input {
  margin-right: 15px;
}

.callback_wrap .form_title {
  text-align: center;
  font-size: 34px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 15px
}

.callback_wrap .form_desc {
  font-size: 22px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px
}

.callback_wrap .form-row {
  text-align: center
}

.callback_wrap .acceptance {
  width: 540px;
  max-width: 100%;
  color: #dcd0d0;
  margin-right: auto;
  text-align: left
}

.callback_wrap .acceptance a {
  color: #dcd0d0
}

.footer {
  padding: 25px 0 25px
}

.footer .btn--border {
  color: #6c6c6c;
  border-color: #6c6c6c
}

.footer .btn--border:hover {
  color: #fff;
  background-color: #6c6c6c
}

.footer .phone a {
  color: #ffffff;
}

.footer .social-links a img {
  display: inline-block;
  box-shadow: 0 8px 15px 0 rgba(47, 46, 33, 0.2)
}

.visible-mob {
  display: none
}

.form_from_main input[type="text"] {
  background: #f7f7ff;
  border-radius: 5px;
  height: 46px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  margin-right: 0;
  width: 100%;
  max-width: 270px;
  margin-bottom: 20px
}

.form_from_main.form-row .btn--green {
  width: 100%;
  max-width: 270px;
}

p.title_name {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px
}

.price {
  color: var(--accent-color);
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 5px;
}

.calc_totals .price {
  padding-bottom: 20px;
}

.fixed {
  position: fixed;
  top: 50px;
  width: 100%;
}

.headerMenuWrap.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.hide {
  display: none
}

.cityList,
.hiddenCitys {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}

.hiddenCitys {
  display: none;
}

.hiddenCitys.active {
  display: flex;
  width: 100%;
}

.cityList-item {
  width: 20%;
  text-align: center;
  min-width: 200px;
  margin-bottom: 5px;
  font-size: 20px;
}

.iconsList {
  justify-content: space-around;
  width: 100%;
  display: flex;
}

.iconsList a {
  color: #ffffff;
  margin: 0 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.iconsList a[title="Написать в Whatsapp"] {
  width: 43px;
}

.iconsList img {
  width: 40px;
  height: 40px;
}

.headerMenuWrap {
  background-color: #0000008f;
}

.headerMenuWrap .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 10px 0;
}

.headerMenuWrap .menu .menu-item {
  display: inline-block;
}

.headerMenuWrap .menu a {
  color: #fff;
  text-decoration: none;
  font-size: 21px;
  padding: 5px 20px;
}

.first-screen.page-top-block {
  min-height: 211px;
}

article.post {
  width: 100%;
  float: inherit;
}

.right_top_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.priceBlock {
  font-size: 36px;
  text-align: center;
  margin: 30px 0;
}

.entry-content {
  margin: 50px 0;
  font-size: 21px;
}

.order-btn {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  height: 46px;
  width: 240px;
}

.popup_form input[type=number],
.popup_form input[type=text],
.popup_form input[type=tel],
.popup_form input[type=submit],
.popup_form textarea {
  background: #ebf2f6;
  border-radius: 5px;
  height: 46px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  margin-right: 0;
  width: 100%;
  max-width: 270px;
  margin-bottom: 20px;
  appearance: none;
  -webkit-appearance: none;
}

.popup_form input[type=submit] {
  color: #fff;
  background: #1f2242;
  margin-bottom: 10px;
  background-color: var(--main-color);
  cursor: pointer;
}

.toTop {
  display: none;
  position: fixed;
  width: 40px;
  bottom: 10px;
  left: 10px;
  height: 40px;
  z-index: 800;
  background-color: var(--main-color);
  padding: 6px;
  cursor: pointer;
  border-radius: 5px;
}

.toTop svg {
  width: 100%;
  height: 100%;
}

.cityList-item {
  min-width: inherit;
  text-align: left;
  font-size: 18px;
  background-image: url(../img/house-svgrepo-com.svg);
  background-repeat: no-repeat;
  padding-left: 24px;
  background-size: 20px 20px;
  padding: 9px 5px 5px 29px;
  box-sizing: border-box;
  background-position: left center;
  display: flex;
  align-items: center;
}

.moreBtn {
  width: 100%;
  max-width: 300px;
  color: #fff;
  font-size: 22px;
  display: block;
  margin: 20px auto;
  text-align: center;
  padding: 10px 30px;
}

.moreBtn.hidden {
  display: none;
}

.moreBtn:hover {
  filter: brightness(90%);
}

.wp-block-gallery {
  margin: 30px 0;
}

.mob-features {
  display: none;
}
.mob-features .main-features-wrap .item {
  color: #000;
}

.header .header-btns .btn span.mob {
  display: none
}

#footer .btn--border,
.header-btns .btn {
  color: #ffffff;
  border-color: #ffffff;
}

.header-btns .btn:hover {
  color: #ffffff;
  filter: brightness(90%);
}

.callback_wrap .infoBlock {
  display: none;
}

.callback_wrap .politBlock,
.callback_wrap .politBlock a {
  color: #fff;
}

.politBlock {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}

.callback_wrap form[name=form] {
  text-align: center;
  color: #fff;
}

.added_to_cart.wc-forward {
  text-align: center;
  width: 100%;
  color: #fff;
}

.form-row.form-row-wide.address-field.update_totals_on_change {
  display: none;
}

#mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu {
  text-align: right;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#top-header-menu #mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu li>a {
  font-size: 16px;
  padding: 0 18px;
  box-sizing: content-box;
}

#mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu>li.mega-menu-flyout ul.mega-sub-menu {
  right: 0;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu li.jqli+li:not(.jqli) {
  margin-top: 20px;
}

#mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu {
  padding: 10px 0;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item>a.mega-menu-link {
  font-size: 18px;
  height: 40px;
  text-align: center;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.woocommerce-shipping-destination {
  display: none;
}

.woocommerce ul.products li.product .price {
  font-size: 18px;
  color: #fff;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 44px;
}

.woocommerce div.product p.price {
  color: var(--main-color);
  font-size: 32px;
}

.pagination, .woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
  border-right: 0;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  line-height: 1.8;
}

.woocommerce nav.woocommerce-pagination ul li a:focus, .woocommerce nav.woocommerce-pagination ul li a:hover, .woocommerce nav.woocommerce-pagination ul li span.current {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.pagination a:hover {
  background-color: #f2f2f2;
}

.pagination .current {
  background-color: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.gray {
  color: #666;
}

.search-products ul li:nth-child(4n) {
  margin-right: 0 !important;
}

.woocommerce.search-products ul.products li {
  clear: none;
}

.searchform {
  position: relative;
  margin-right: 15px;
  padding-right: 15px;
}

.searchform input {
  border: none;
  padding: 2px 35px 2px 15px;
  border-radius: 5px;
  font: inherit;
  width: 200px;
}

#searchsubmit {
  position: absolute;
  right: 0;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  height: 28px;
  width: 32px;
  border-radius: 0 5px 5px 0;
  font-family: 'FontAwesome';
  appearance: none;
  -webkit-appearance: none;
}

.pageSection.readyProject_section {
  padding-top: 0;
  padding-bottom: 0;
}

.input-text.qty::-webkit-inner-spin-button,
.input-text.qty::-webkit-outer-spin-button {
  transform: scale(2.5);
  margin: 0 15px 0 0;
  cursor: pointer;
}

.wcmenucart-contents {
  height: 40px;
  position: relative;
}

.wcmenucart-contents>.woocommerce-Price-amount {
  margin-left: 20px;
}

.db-cost {
  position: absolute;
  font-size: 12px;
  line-height: 20px;
  background: var(--main-color);
  padding: 0 6px;
  border-radius: 5px;
  left: 30px;
  transition: all .2s ease-out;
}

.wcmenucart-contents:hover .db-cost {
  background: #0000008f;
}

.woocommerce table.cart img,
.woocommerce-page #content table.cart img,
.woocommerce-page table.cart img {
  min-width: 80px;
  max-width: 100px;
}

.woocommerce table.shop_table td {
  line-height: 20px;
}

.woocommerce table.shop_table td a {
  font-size: 15px;
  font-weight: bold;
}

.woocommerce table.shop_table th {
  font-size: 15px;
  font-weight: bold;
}

.woocommerce table.shop_table .product-remove a {
  display: inline-block !important;
  font-size: 30px;
  height: 30px;
  width: 30px;
  margin: auto;
}

.woocommerce-shipping-methods {
  font-size: 15px;
}

#order_review_heading {
  margin-top: 25px;
  padding: 0 15px;
}

.woocommerce-checkout-review-order {
  margin-top: 15px;
}

#mega-menu-wrap-main-menu .mega-menu-toggle {
  height: 56px;
  line-height: 56px;
}

#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-1 {
  display: none;
}

#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
  margin-left: 0;
}

.woocommerce ul.products[class*=columns-] li.product-category {
  box-shadow: 0 8px 15px 0 rgb(47 46 33 / 20%);
}

#mega-menu-wrap-main-menu .mega-menu-toggle+#mega-menu-main-menu {
  padding: 15px 0;
}

.col2-set .col-1,
.col2-set .col-2 {
  padding-right: 0;
  padding-left: 0;
}

.gallery_item {
  border-radius: 5px;
}

.search-results .products.columns-4::before,
.search-results .products.columns-4::after {
  display: none;
}

.breadcrumbs {
  opacity: 0;
  transition: opacity 0.15s ease-out;
}

.breadcrumbs.show {
  opacity: 1;
}

#wpgs-gallery .slick-slider .slick-list * {
  border-radius: 5px;
}

.page .type-page .entry-content>* {
  font-size: 16px;
  margin-bottom: 12px;
}

.page .type-page .entry-content ul {
  padding-left: 25px;
  list-style: initial;
}

.page .type-page .entry-content ol {
  padding-left: 25px;
  list-style: decimal;
}

.page .type-page .entry-content img {
  width: initial;
  border-radius: 5px;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  display: flex;
  justify-content: space-between;
  line-height: 21px;
  padding: 7px 10px;
  background: #555;
  color: #fff;
}

#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover,
#mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
  background: #777;
  color: #fff;
}

#mega-menu-main-menu>li:nth-last-child(2)>ul,
#mega-menu-main-menu>li:last-child>ul {
  right: 0 !important;
}

.swiper-wrapper {
  padding-bottom: 20px;
}

body .swiper-button-next,
body .swiper-button-prev {
  color: var(--main-color);
}

body .swiper-pagination-bullet-active {
  background: var(--main-color);
}

body .swiper-pagination {
  margin-top: 20px;
}

.section.reviews {
  margin-bottom: 30px;
}

#woof_svg_load_container {
  width: 50px;
}

.woof_sid_flat_grey {
  margin-top: 0;
}

.woof_redraw_zone {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
}

.woof_auto_2_columns .woof_container {
  width: 50%;
  padding-left: 25px;
  padding-right: 25px;
}

.woof_submit_search_form_container {
  flex: 0 0 100%;
}

.woof_reset_search_form,
.woof_submit_search_form {
  background-color: var(--main-color) !important;
  color: #fff !important;
  border-radius: 5px !important;
  font-weight: normal !important;
  font-size: 20px !important;
  transition: all 0.15s ease-out;
}

.woof_reset_search_form:hover,
.woof_submit_search_form:hover {
  filter: brightness(90%);
}

.woof_submit_search_form_container {
  justify-content: flex-start;
  gap: 15px;
  padding: 0 25px;
}

.woof_husky_txt-input {
  padding: 12px;
  font-size: 16px;
  margin-top: 18px;
}

.woof_text_search_container {
  display: flex;
}

.woof_show_auto_form,
.woof_hide_auto_form {
  padding-left: 35px;
  background-size: contain;
}

.woof_text_search_go,
.woof_husky_txt-cross {
  display: none !important;
}

.plainoverlay {
  height: 100vh !important;
}

.woof_checkbox_label {
  font-size: 15px;
}

.woof_list_checkbox li div {
  margin-top: 0;
}

.woof_sid_flat_grey {
  border-radius: 5px;
  padding: 30px 12px;
}

.woof_sid_flat_grey .woof_container h4 {
  padding: 4px 7px;
  font-size: 1.0em !important;
}

.woof_list_label .woof_label_term {
  height: 34px;
}

.woof_label_count {
  right: -5px;
  top: -5px;
}

.woof_btn_default {
  color: var(--main-color);
}

.woof_auto_show {
  opacity: 1 !important;
  transition: all .15s ease-out;
}

.woof_auto_show.woof_overflow_hidden {
  opacity: 0 !important;
  transition: all .15s ease-out;
}

.woof_reset_search_form {
  order: 2;
}

.woof_sid_flat_grey .woof_list_label li .woof_label_term:hover,
.woof_sid_flat_grey .woof_list_label li .woof_label_term.checked {
  background-color: var(--main-color);
}

span.woof_label_term {
  border-radius: 5px;
}

body .woof_term_60 {
  display: none !important;
}

.page-id-2 .entry-content i.fa,
.page-id-2 .entry-content i.fa::before {
  display: inline-block;
  width: 20px;
  text-align: center;
  margin-right: 8px;
}

.variations_form * {
  line-height: 1.5;
}

.variations_form .variations tr td {
  margin-bottom: 15px;
}

.cfvsw-label-stacked table.variations th,
.cfvsw-label-stacked table.variations td {
  display: flex;
  flex-wrap: wrap;
}

.cfvsw-swatches-container.cfvsw-product-container {
  width: 100%;
}

.reset_variations {
  margin-top: 15px;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 3px;
  padding: 4px 6px;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.container.fullwide {
  width: 100%;
  max-width: 100%;
}

#cart-details {
  display: none;
}

.post-category .container.fullwide {
  display: flex;
  gap: 20px;
}

.post-category .post-thumbnail {
  flex-shrink: 0;
}

.post-category .post-thumbnail img {
  border-radius: 5px;
}

.post-category .items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.post-category .content-wrapper {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-category .items>article .block_title {
  text-align: left;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

.post-category .items>article .entry-date {
  color: #666;
}

.post-category .items>article .entry-content {
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0;
}

.about {
  font-size: 16px;
  line-height: 160%;
}

.about p,
.about ul,
.about ol {
  margin-bottom: 15px;
}

.post-thumbnail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-text-wrapper {
  padding: 0 20px;
}

.post-image-wrapper img {
  position: sticky;
  top: 20px;
}

.post p {
  margin-bottom: 15px;
}

.post .post-content {
  display: flex;
  justify-content: center;
}

.post .post-image-wrapper {
  flex-shrink: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 100%;
}

.cfvsw-swatches-container .cfvsw-swatches-option {
  width: 35px !important;
  height: 35px !important;
}

.cfvsw-swatches-container .cfvsw-swatches-option.cfvsw-label-option {
  width: auto !important;
  height: auto !important;
}

#calc-button::before,
.callback_wrap button::before {
  background-color: var(--accent-color);
}

#calc-button::after,
.callback_wrap button::after {
  background-image: -webkit-linear-gradient(0deg, var(--accent-color) 0%, var(--accent-color) 100%);
}

.shapes-about {
  background: #F5F5F5;
  position: relative;
}

.shapedivider {
  overflow: hidden;
}

.shapedivider::before {
  content: '';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-size: 100% 100px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23ffffff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23ffffff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23ffffff"/></svg>');
}

.shapedivider2 {
  overflow: hidden;
}

.shapedivider2::before {
  content: '';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-size: 100% 50px;
  background-position: 50% 0%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 381 77.25" preserveAspectRatio="none"><g fill="%23ffffff"><path d="M381 8.47L0 42.33V0h381z"/><path d="M381 33.87L0 59.27V0h381z" opacity=".33"/><path d="M381 59.27L0 77.25V0h381z" opacity=".33"/></g></svg>');
}

.shapedivider3 {
  overflow: hidden;
}

.shapedivider3::before {
  content: '';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  background-size: 100% 50px;
  background-position: 50% 100%;
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 381 77.25" preserveAspectRatio="none"><g fill="%23ffffff"><path d="M0 68.78l381-33.86v42.33H0z"/><path d="M0 43.38l381-25.4v59.27H0z" opacity=".33"/><path d="M0 17.98L381 0v77.25H0z" opacity=".33"/></g></svg>');
}

.first-screen .section-bg {
  background-color: #122e0f;
}
.first-screen .section-bg img {
  filter: opacity(var(--header-bright));
}
.callback .section-bg {
  background-color: #122e0f;
}
.callback .section-bg img {
  filter: opacity(var(--callback-bright));
}

.citySection {
  padding-bottom: 140px;
}
.citySection a {
  font-size: 16px;
}

.search-results .callback, .search-results .pagination {
  clear: both;
}
.search-results .products.columns-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.search-results .products.columns-4 li {
  align-self:flex-start;
}

.comment-form input[type=number], .comment-form input[type=text], .comment-form input[type=email], .comment-form input[type=submit], .comment-form textarea {
  background: #ebf2f6;
  border-radius: 5px;
  height: 46px;
  padding: 0 20px;
  font-size: 16px;
  border: none;
  margin-right: 0;
  width: 100%;
  max-width: 270px;
  margin-bottom: 20px;
  appearance: none;
  -webkit-appearance: none;
  display: block;
}
.comment-form textarea {
  max-width: 600px;
  min-width: 270px;
  min-height: 150px;
  width: 100%;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit {
  background-color: var(--main-color);
  color: #fff;
  transition: all 0.25s ease-out;
  border-radius: 5px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover {
  background-color: var(--main-color);
  color: #fff;
  filter: brightness(90%);
}
.woocommerce #reviews #comments ol.commentlist li img.avatar {
  display: none;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0;
}
.woocommerce #reviews #comments ol.commentlist {
  padding-left: 0;
}
.star-rating {
  color: var(--main-color);
}
.woocommerce .products .star-rating {
  margin: auto;
  color: #ff0;
  margin-top: 10px;
}

.logo .text span:last-child {
  display: none!important;
}
.logo .text span:first-child {
  margin-bottom: 0!important;
}
.text-rev-wrap .item {
  min-width: 320px;
}
.centered {
  display: block;
  max-width: 450px;
  margin: auto;
}
.centered img {
  border-radius: 5px;
}

.second-description .wp-block-table {
  margin-bottom: 30px;
}
.second-description .wp-block-table th,
.second-description .wp-block-table td {
  vertical-align: middle;
  text-align: center;
}











/* media */

@media screen and (min-width: 1200px) {
  .container {
    width: 1320px;
    max-width: 100%;
  }

  .main-features-wrap .item {
    margin-right: 30px;
    margin-left: 30px;
  }

  .gallery_item {
    max-width: 315px;
    height: 315px;
  }

}

@media screen and (max-width: 1199px) {
  .header-wrap {
    flex-wrap: wrap
  }

  .header-wrap {
    padding-bottom: 0;
  }

  .first-screen.page-top-block {
    min-height: 215px;
  }

  .header-wrap>div {
    margin-bottom: 15px
  }

  .header-btns {
    width: auto
  }

  .first-screen {
    padding-top: 215px;
  }

  .woocommerce div.product .product_title {
    font-size: 36px;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item>a.mega-menu-link {
    font-size: 16px;
  }

  .header-wrap .phone {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
  }

}

@media screen and (max-width: 991px) and (min-width: 768px) {

  .section.first-screen .container .col-md-8.col-xs-12 {
    margin: auto;
  }

  .first-screen {
    padding-top: 264px;
  }

}

@media screen and (max-width: 991px) {

  body {
    min-width: 320px
  }

  .header .logo .thumb {
    min-width: 40px;
    min-width: initial;
  }

  .header .logo .text span:first-child {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .header .logo .text span:last-child {
    font-size: 12px;
    line-height: 15px;
    min-height: initial;
    display: inline-block;
  }

  .header .logo .text span:last-child br {
    display: none
  }

  .header .header-btns .btn--green {
    display: none
  }

  .header .header-btns .btn+.btn {
    margin-left: 0
  }

  .header .header-btns .btn span {
    display: none
  }

  .header .header-btns .btn span.mob {
    display: block;
    padding: 0 6px;
    font-size: 14px;
  }

  .header .header-btns .btn {
    width: auto;
    height: 35px;
  }

  .searchform {
    z-index: 99;
  }

  .social-links a+a {
    margin-left: 10px
  }

  .social-links a svg {
    width: 30px;
    height: 30px
  }

  .main-title {
    font-size: 40px
  }

  .main-title-desc {
    font-size: 14px;
    margin-top: 0;
  }

  .main-features-wrap .item:before {
    margin-bottom: 0
  }

  .block_title {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px
  }

  .reviews .block_title {
    font-size: 24px
  }

  .calc_totals .form-row .btn--green {
    width: 270px;
    max-width: 100%;
  }

  .callback_wrap .btn--green {
    margin-top: 20px;
  }

  .form-row .acceptance {
    margin-right: auto;
    margin-left: 0
  }

  .callback_wrap .form_title {
    font-size: 30px
  }

  .callback_wrap .form_desc {
    font-size: 16px
  }

  .callback_wrap .form-row {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .callback_wrap .form-row .phone-input {
    margin-right: 0
  }

  .visible-mob {
    display: block
  }

  .hidden-mob {
    display: none
  }

  .footer .header-btns {
    width: auto
  }

  .footer .header-btns.visible-mob .btn {
    width: 140px
  }

  .carousel {
    width: 100% !important;
  }

  .logo .thumb img {
    max-width: 100%;
  }

  .price {
    padding-bottom: 0;
  }

  .woocommerce div.product .product_title {
    margin-top: 0;
  }

  .swiper-slide,
  .swiper {
    width: 100% !important;
  }

  .post .post-content {
    flex-direction: column;
  }

  .post-image-wrapper {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .callback.section {
    min-height: 468px;
  }

  .citySection {
    padding-bottom: 180px;
  }
  .citySection a {
    font-size: 15px;
  }
  .cityList-item {
    width: 33%;
  }

  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 48%;
    float: left;
    clear: both;
    margin: 0 0 2.992em;
  }
  .woocommerce ul.products[class*=columns-] li.product:nth-child(2n), .woocommerce-page ul.products[class*=columns-] li.product:nth-child(2n) {
    float: right;
    clear: none!important;
  }

	.table.overflow {
		display: block;
		overflow-x: auto;
	}
	
}

@media only screen and (max-width: 850px) and (min-width: 450px) {
  .slider-wrapper {
    border-radius: 0
  }
}

@media screen and (min-width: 768px) {

  /* стили для поиска в шапке */
  .searchform {
    margin-right: 0;
  }

  .menu-item-search {
    position: relative;
  }

  .menu-item-search * {
    transition: all .15s ease-out;
  }

  .menu-item-search input[type="text"] {
    width: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    transition: all 0.15s ease-out;
  }

  .menu-item-search input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .menu-item-search:hover input[type="text"] {
    width: 100%;
    padding: 0 5px 0 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height: 40px;
  }

  .menu-item-search:hover input[type="submit"] {
    background-color: transparent;
  }

  .menu-item-search:not(:hover) input[type="text"] {
    background: #fff;
    opacity: 0;
    transition-delay: 1s;
    height: 40px;
  }

  #searchsubmit {
    height: 24px;
    padding: 0 15px 0 20px;
    line-height: 0;
    right: 20px;
    top: 6px;
    transform: scale(1.5);
    padding-right: 25px;
  }

  .menu-item-search:hover #searchsubmit {
    color: #000;
    top: 6px;
  }

  .menu-item-search:not(:hover) #searchsubmit {
    color: #fff;
    transition: all 0.15s ease-out;
    transition-delay: 1s;
  }

  .woof_sid_flat_grey .woof_container h4 {
    text-align: left;
    font-size: 16px !important;
    color: var(--main-color);
  }

}

@media(max-width: 768px) {

  .gallery_item {
		min-width: auto;
		width: 100%;
		flex: 0 0 50%;
		height: 200px;
	}

	footer {
		position: relative;
		padding-top: 20px;
	}

  .cityList-item {
    width: 50%;
    min-width: inherit;
    text-align: left;
  }

  .headerMenuWrap {
    background-color: #222;

  }

  .calc_totals {
    margin-top: 15px;
    padding: 10px;
  }

  .header .logo {
    max-width: 100%;
    height: auto;
    align-items: center;
  }

  .header {
    position: relative;
    background-position: center;
    background-color: var(--dark-color);
  }

  .header-wrap {
    padding: 4px 0 0;
    display: flex;
    justify-content: center;
    column-gap: 10px;
    row-gap: 5px;
  }

  .header-wrap .phone {
    text-align: center;
    flex-direction: column;
    gap: 5px;
  }

  .logo .thumb {
    width: auto;
  }

  header .logo .thumb img {
    height: 80px;
    width: auto;
  }

  .header-wrap .text {
    height: auto;
  }

  .headerMenuWrap {
    z-index: 800;
    padding: 0px;
    top: 0;
    transition: all 0.2s ease-in 0s;
  }

  .headerMenuWrap.active {
    right: initial;
    left: 0px;
    padding-top: 50px;
  }

  .headerMenuWrap .menu {
    flex-direction: column;
    color: #222;
    z-index: 9899;
    position: relative;
    text-align: left;
    border-top: 0px;
  }

  .headerMenuWrap .menu a {
    padding: 15px 30px;
    display: block;
    text-align: center;
    border-bottom: 1px solid #454545;
  }

  .header-wrap>div {
    margin-bottom: 10px;
  }

  .searchform {
    margin-top: 10px;
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .searchform input[type=text] {
    width: 100%;
    padding: 4px 10px;
    font-size: 16px;
  }

  #searchsubmit {
    height: 35px;
    width: 40px;
  }

  .iconsList a {
    width: 35px;
    height: 35px;
  }

  .phone-input {
    width: 100%;
  }

  .home .first-screen {
    padding-top: 5px;
    min-height: auto;
    padding-bottom: 100px;
  }

  .citySection {
    padding-bottom: 10px;
  }

  .header .social-links {
    align-self: initial;
  }

  .main-title {
    font-size: 30px;
    margin-top: 10px;
  }

  .form_from_main input[type="text"],
  .first-screen .phone-input,
  .form_from_main.form-row .btn--green {
    max-width: 240px;
  }

  p.title_name {
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .form-row .btn--green {
    font-size: 16px;
  }

  .block_title {
    font-size: 21px;
  }

  .main-features-wrap {
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: none;
  }

  .main-features-wrap .item {
    flex: 0 0 45%;
    margin: 0;
  }

  .pc-features {
    display: none;
  }

  .mob-features {
    display: block;
    margin-top: 15px;
  }

  .mob-features .item {
    text-align: center;
  }

  .first-screen.page-top-block {
    min-height: auto;
    padding: 0;
  }

  .main-row {
    padding: 0;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: .75em;
  }

  .woocommerce div.product .product_title,
  #tab-description h2 {
    font-size: 26px;
  }

  #tab-description h2 {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 5px;
  }

  #top-header-menu {
    display: none;
  }

  .db-cost {
    top: 1px;
    left: 25px;
    padding: 0 6px;
  }

  .woocommerce table.shop_table .product-remove a {
    display: initial;
  }

  .woocommerce-cart-form__cart-item.cart_item .product-thumbnail,
  .woocommerce-cart-form__cart-item.cart_item .product-name {
    text-align-last: left !important;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    display: none;
  }

  .woocommerce table.cart .product-thumbnail,
  .woocommerce-page #content table.cart .product-thumbnail,
  .woocommerce-page table.cart .product-thumbnail {
    display: block;
  }

  .pageSection .container {
    padding: 15px;
  }

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    margin: 0 0 1.992em;
  }

  .moreBtn {
    max-width: 240px;
    font-size: 18px;
    display: block;
    padding: 5px 15px;
  }

  .footer {
    padding: 25px 0 35px;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu>li.mega-menu-item>a.mega-menu-link {
    padding: 0 5px;
    border-radius: 5px;
  }

  #mega-menu-wrap-main-menu .mega-menu-toggle+#mega-menu-main-menu {
    padding: 0 0 15px;
  }

  .search-results .products.columns-4 {
    justify-content: space-between;
  }

  .col2-set .col-2 {
    margin-top: 25px;
  }

  .breadcrumbs {
    font-size: 16px;
  }

  .entry-content {
    margin: 30px 0;
  }

  .wcmenucart-contents i {
    position: relative;
    top: 5px;
  }

  .wcmenucart-contents>.woocommerce-Price-amount {
    margin-left: 10px;
  }

  .woof_auto_2_columns .woof_container {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .woof_auto_2_columns .woof_container.woof_price_filter {
    padding-left: 25px;
    padding-right: 25px;
  }

  .woof_submit_search_form_container {
    padding: 0 5px;
  }

  .searchform {
    padding-right: 0;
  }

  .iconsList a[title="Написать в Whatsapp"] {
    width: 38px;
  }

  .post-category .container.fullwide {
    flex-direction: column;
  }

  .dgwt-wcas-preloader {
    right: 55px!important;
  }

}

@media (max-width: 576px) {

  .main-features-wrap .item {
    width: 100%;
    margin-bottom: 25px;
    font-size: 15px;
  }

  .main-title {
    margin-top: 10px;
  }

  .callback.section {
    padding-top: 60px;
    padding-bottom: 75px;
    min-height: auto;
  }

  .header-wrap .phone {
    width: 100%;
  }

}

@media (max-width: 420px) {
  .main-title {
    font-size: 20px;
    margin-top: 0;
  }

  .form-row .btn--green {
    font-size: 20px;
  }
}

@media (max-width: 360px) {
  .main-title {
    margin-top: 0;
  }

  .block_title {
    font-size: 20px;
  }

  .main-title-desc {
    font-size: 14px
  }

  .phone a {
    font-size: 16px
  }
}