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

:root {
  --main-color: #31708F;
  --accent-color: #5085A5;
  --accent-color2: #FF7C4C;
  --accent-middle: #10292E;
  --dark-color: #10292E;
  --check-color: #FF7C4C;
  --header-bg-color: #10292E;
  --header-bright: 0.25;
  --header-blur: 10px;
  --callback-bg-color: #10292E;
  --callback-bright: 0.25;
  --fixed-menu-bg-color: #0000002f;
  --fixed-menu-bg-color-scroll: #000000d9;
  --mob-header-color: #10292E;
  --mob-footer-color: #10292E;
  --woocommerce-ratio: 800 / 800;
  --index-services-ratio: 800 / 800;
}

@media(max-width: 768px) {
  :root {
    --check-color: #FF7C4C;
  }
}

input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent!important; 
}

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,
button,
input {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: 'Inter', sans-serif;
  vertical-align: baseline
}

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

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 {
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
  font-family: 'Inter', 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 .25s ease-out;
}

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

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

strong,
b {
  font-weight: bold;
}

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

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

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





.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;
}

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

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

.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: 'Manrope', serif;
  font-weight: 700;
}

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

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

.social-links {
  text-align: center;
}

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

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #222f16;
  font-weight: 500;
  transition: all .25s ease-out;
  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 .25s ease-out;
}

.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;
  backdrop-filter: blur(8px);
}

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

.phone a {
  color: #fff;
  font-size: 18px;
  font-family: 'Manrope', serif;
}
.phone a:hover {
  color: var(--accent-color);
}

.phone-dropdown {
  position: relative;
  display: inline-block;
}
.phone-dropdown-content {
  position: absolute;
  left: 0;
  background-color: #555;
  min-width: 200px;
  padding: 8px;
  z-index: 1;
  border-radius: 10px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all .25s ease-out;
}
.phone-dropdown.open .phone-dropdown-content {
  opacity: 1;
  transform: scaleY(1);
}
.phone-main {
  color: #000;
  text-decoration: none;
}
.phone-secondary {
  display: block;
  color: #666;
  text-decoration: none;
}
.phone-main::after {
  content: "\25BE";
  margin-left: 4px;
}

.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: #ebebeb;
}

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

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

.main-title {
  font-size: 38px;
}

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

.fkcart-custom-menu-link {
  opacity: 0;
  transition: all .25s ease-out;
}
.fkcart-custom-menu-link.show {
  opacity: 1;
}

.main-features-wrap {
  color: #000;
  display: flex;
  justify-content: center;
  padding: 30px 0 40px;
  border-radius: 10px;
  opacity: 0;
  transition: all .25s ease-out;
}
.main-features-wrap.show {
  opacity: 1;
}

.main-features-wrap .item {
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  color: #ebebeb;
  font-family: 'Manrope', serif;
}

.main-features-wrap .item svg {
  display: block;
  width: 100px;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto
}

.block_title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 700;
  font-family: 'Manrope', serif;
  text-transform: uppercase;
}

.calc_totals {
  box-shadow: 0 0 25px 0 rgb(255 255 255 / 5%);
  padding: 30px;
  border-radius: 25px;
  position: relative;
  color: #ebebeb;
  backdrop-filter: blur(8px);
  min-height: 334px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.calc_totals a {
  color: #fff;
}

.calc_totals .title_name {
  color: #ebebeb !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: 10px;
}

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

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

.text-rev-wrap .item-text {
  position: relative;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  background: #f7f7f7;
  border-radius: 10px;
  padding: 15px;
  color: #000;
}

.text-rev-wrap .item-text:before {
  content: '';
  position: absolute;
  top: -10px;
  left: calc(50% + 40px);
  width: 20px;
  height: 20px;
  background-color: #f7f7f7;
  transform: rotate(45deg);
}

.text-rev-wrap .item-stars {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 24px;
}

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

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

.phone-input {
  background: #f7f7ff;
  border-radius: 10px;
  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;
  font-family: 'Inter', sans-serif;
}

.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
}

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

.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 {
  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: 60px 0 25px;
  background-color: var(--dark-color);
  color: #fff;
  font-size: 18px;
  position: absolute;
  width: 100%;
}

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

.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;
}

.visible-mob {
  display: none
}

.form_from_main {
  min-height: 82px;
}

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

.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: 50%;
  transform: translateX(-50%);
  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%;
}

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

.footer .iconsList {
  margin-bottom: 15px;
}

.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: #0000002f;
  transition: background-color .25s ease-out;
  backdrop-filter: blur(8px);
  max-width: 1360px;
  margin: auto;
  border-radius: 10px;
}

.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;
}

article.category-goroda {
  background: #f5f5f5;
}

article table td {
  padding: 3px 5px;
  text-align: center;
  border: 1px solid #eee;
}

.woocommerce .site-main .product {
  margin-top: 20px;
}

.woocommerce-cart-form__contents td,
.woocommerce-checkout-review-order-table td {
  border: none;
}

.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: 10px;
  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;
  font-family: 'Inter', sans-serif;
}

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

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

.toTop:hover {
  opacity: 1;
}

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

.cityList-item {
  width: 20%;
  text-align: left;
  font-size: 18px;
  background-image: url(../img/house-icon.svg);
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding: 5px 5px 5px 29px;
  margin-bottom: 5px;
  box-sizing: border-box;
  background-position: left center;
  display: flex;
  align-items: center;
}

.moreBtn {
  font-weight: bold;
  max-width: 300px;
  color: #fff;
  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;
  background-color: var(--accent-color);
}

.callback_wrap .infoBlock {
  display: none;
}

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

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

.form_ansText {
  font-size: 16px;
  text-align: center;
}
.footer_form .form_ansText {
  color: #fff;
  display: block;
}

.added_to_cart.wc-forward {
  text-align: center;
  width: 100%;
  color: var(--main-color);
  padding: 5px;
}

.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: 14px;
  padding: 0 12px;
  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.mega-menu-flyout ul.mega-sub-menu {
  background: none;
}

ul.mega-sub-menu li:last-child > a {
  border-radius: 0 0 10px 10px!important;
}
ul.mega-sub-menu li.mega-toggle-on:last-child > a {
  border-radius: 0!important;
}
ul.mega-sub-menu li.mega-toggle-on > a {
  font-weight: bold!important;
}

#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: 15px;
  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;
  background: var(--main-color);
  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: 28px;
}

.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: 10px;
  line-height: 1.8;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment,
.woocommerce table.shop_table,
#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
  border-radius: 10px;
}

.cart_totals.calculated_shipping h2 {
  display: none;
}

.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: 10px;
}

.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: 10px;
  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 10px 10px 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

.pageSection .container {
  padding: 30px;
}

.pageSection.portfolio .container {
  padding-top: 0;
}

.pageSection.readyProject_section {
  background: #f5f5f5;
  padding-top: 0;
  padding-bottom: 20px;
}

.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;
}

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

.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 .cart_item:nth-child(even) {
  background-color: #F5F5F5;
}

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

.woocommerce-checkout-review-order-table td.product-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.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 th.product-total {
  text-align: center;
}

.woocommerce-order-details__title,
.woocommerce-column__title {
  margin-bottom: 15px;
}

.order_details td {
  border: none;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  line-height: 1.4;
}

.woocommerce table.shop_table .product-remove a {
  border-radius: 10px;
  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;
}

#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: 10px;
}

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

.search-back {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  height: 46px;
  width: 240px;
  margin-top: 30px;
}
.search-back i {
  margin-right: 5px;
}
.search-back:hover {
  color: #fff;
}

.breadcrumbs {
  padding: 20px 0 0;
  font-weight: 400;
  width: 100%;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.breadcrumbs a {
  color: var(--main-color);
  text-decoration: none;
}

.breadcrumbs.show {
  opacity: 1;
}

.breadcrumbs .sep {
  color: #DDD;
  margin: 0 5px;
}

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

.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: 10px;
}

#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-wrap-topHeader-menu #mega-menu-topHeader-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
  background: #555;
  color: #fff;
}

#mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-topHeader-menu #mega-menu-topHeader-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;
}

.reviews .swiper {
  width: 100%;
}

.reviews .swiper-wrapper {
  padding-bottom: 20px;
  cursor: grab;
}
.reviews .swiper-wrapper:active {
  cursor: grabbing;
}

body .reviews .swiper-button-next,
body .reviews .swiper-button-prev {
  color: var(--main-color);
  transition: all .25s ease-out;
}

body .reviews .swiper-button-next.swiper-button-disabled, body .reviews .swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

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

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

.section.reviews {
  margin-top: 10px;
  margin-bottom: 10px;
}

.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;
}
.variations_form .variations tr:last-child td {
  margin-bottom: 0;
}

.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;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button {
  margin: 10px!important;
}

.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: 10px;
}

.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 .block_title a {
  font-family: 'Manrope', serif;
}

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

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

.post-category .post p {
  margin-bottom: 0;
}

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

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

.about img {
  border-radius: 10px;
}

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

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

.post-text-wrapper .entry-date {
  color: #666;
}

.post-image-wrapper img {
  border-radius: 10px;
  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(45deg, var(--accent-color) 0%, var(--accent-color2) 100%);
}

.shapes-gallery {
  background: #F5F5F5;
  position: relative;
  padding: 20px 0;
}

.div-holder {
  background: #F5F5F5;
  position: relative;
  height: 50px;
}

.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="%23f5f5f5"/><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="%23f5f5f5"/><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="%23f5f5f5"/></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>');
}

.shapedivider4 {
  overflow: hidden;
}

.shapedivider4::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% 40px;
  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>');
}

.shapedivider5 {
  overflow: hidden;
}

.shapedivider5::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="%23F5F5F5"><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>');
}

.main-row {
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.main-row.show {
  opacity: 1;
}

.first-screen .section-bg {
  background-color: var(--header-bg-color);
}

.first-screen .section-bg img {
  filter: opacity(var(--header-bright)) blur(var(--header-blur));
}

.callback .section-bg {
  background-color: var(--callback-bg-color);
}

.callback .section-bg img {
  filter: opacity(var(--callback-bright));
}

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

.search-results .callback,
.search-results .pagination {
  clear: both;
}

.search-results .products.columns-4 {
  display: flex;
  flex-wrap: wrap;
}

.search-results .products.columns-4 li {
  align-self: flex-start;
}

.comment-reply-title {
  font-family: 'Manrope', serif;
}

.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: 10px;
  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%;
  padding: 15px;
}

.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: 10px;
}

.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;
}

.woocommerce .woocommerce-product-rating {
  display: flex;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
}

.star-rating {
  color: var(--main-color);
}

.custom-rating {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--main-color);
  position: relative;
}
.custom-rating::before {
  font-family: WooCommerce;
  content: "S";
  margin-right: 4px;
  position: relative;
  bottom: 1px;
}
.products .custom-rating {
  color: #F8FF2B;
  font-weight: bold;
  line-height: 30px;
}
.star-rating-wrap {
  opacity: 0;
}
.entry-summary .custom-rating {
  margin-right: 6px;
}
.comment-text .star-rating-wrap {
  opacity: 1;
}

.woocommerce .products .star-rating {
  margin: auto;
  color: #ff0;
  margin-top: 10px;
}

/* blocks plugin's css */
.editBlockLink {
  position: absolute;
  left: calc(50% - 51px);
  top: 0px;
  background-color: #EC411C;
  color: #fff;
  font-size: 16px;
  padding: 4px 10px;
  display: inline-block;
  z-index: 9;
  border-radius: 10px;
  text-decoration: none;
}

.editBlockLink::before {
  content: "\f040";
  font-family: "FontAwesome";
  display: inline-block;
  margin-right: 5px;
}

.editBlockLink:hover {
  filter: brightness(0.8);
  color: #fff;
}

.pageSection {
  padding: 20px 0;
  position: relative;
}

.block_title {
  margin-bottom: 15px;
  text-align: center;
}

.wfl_submit {
  padding: 4px 6px;
  font-size: 16px;
  margin: 0 15px 10px;
}

.popup_form .wfl_submit {
  margin-left: 0;
}

.gallery_item {
  display: inline-block;
  width: calc(25% - 20px);
  max-width: 300px;
  height: 250px;
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}

.gallery_img {
  object-fit: cover;
  border-radius: 10px;
}

.gallery,
.hidden-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery a,
.post-thumbnail a {
	overflow: hidden;
	border-radius: 10px;
}
.gallery a img,
.post-thumbnail a img {
	transition: all 0.7s ease-out;
	display: block;
	width: 100%;
	height: auto;
}
.services-section .post-thumbnail a img,
.services-category .items img {
  object-fit: cover;
  aspect-ratio: var(--index-services-ratio);
}
.gallery a:hover img,
.post-thumbnail a:hover img {
	transform: scale(1.1);
}
.post-image-wrapper .fancybox,
.wp-block-image a {
  display: inline-block;
  position: relative;
}
.gallery a,
.wcgs-slider-lightbox,
.wp-block-gallery a {
  position: relative;
}
.gallery a::before,
.wcgs-slider-lightbox::before,
.fancybox::before,
.wp-block-gallery a::before,
.wp-block-image a::before {
  content: '';
  background: url(/wp-content/themes/enixpro/img/plus.svg) no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  background-position: center;
  background-size: 60px;
  opacity: 0;
  transition: all .3s ease-out;
}
.gallery a:hover::before,
.wcgs-slider-lightbox:hover::before,
.fancybox:hover::before,
.wp-block-gallery a:hover::before,
.wp-block-image a:hover::before {
  content: '';
  background: url(/wp-content/themes/enixpro/img/plus.svg) no-repeat;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 9;
  background-position: center;
  background-size: 80px;
  opacity: 1;
  transition: all .3s ease-out;
}
.fancybox.toModal::before {
  display: none!important;
}

/* blocks plugin's css end */

.popupWind {
  display: none;
  padding: 20px;
}

body .fancybox__content,
body .fancybox-image {
  border-radius: 25px;
}

.fancybox__content .popupWind,
.modal .popupWind {
  display: block;
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
  backdrop-filter: blur(8px);
}

.popupWind form {
  display: flex;
  flex-direction: column;
  font-size: 21px;
}

.popupWind>.text {
  margin: 15px 0;
  padding: 10px;
  font-size: 16px;
}

.popupWind_title {
  margin-bottom: 15px;
  font-size: 21px;
  text-align: center;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"],
.politBlock label input[type="checkbox"] {
    display: inline-block!important;
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    border: 2px solid #afafaf;
    border-radius: 50%;
    background-color: #fff;
    vertical-align: middle;
    margin-right: 4px!important;
    margin-bottom: 2px!important;
    position: relative;
    cursor: pointer;
    transition: background-color 0.25s, border-color 0.25s;
}
.woocommerce-form__label-for-checkbox input[type="checkbox"]:checked,
.politBlock label input[type="checkbox"]:checked {
    border-color: #28a745;
    background-color: #28a745;
}
.woocommerce-form__label-for-checkbox a,
.politBlock label a {
    margin-left: 0.15em;
}

#cb_popup2 .popupWind_product_img {
  text-align: center;
}
#cb_popup2 .popupWind_product_img img {
  width: 100px;
  height: auto;
  border-radius: 10px;
}
#cb_popup2 .popupWind_title {
  text-transform: lowercase;
  font-size: 16px;
}
.popupWind_product_title h2 {
  text-align: center;
  margin-top: 10px;
}

.woocommerce-page .product .fastorder {
  flex: 0 0 228px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.woocommerce-page .product .fastorder i {
  line-height: 1;
}

.popup_form {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.swiper-button-next,
.swiper-button-prev {
  top: 40px!important;
}

.woocommerce.custom ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.woocommerce.custom ul.products::before {
  display: none;
}
.woocommerce.custom ul.products li.product {
  width: auto;
  margin: 0;
  box-shadow: none;
  background: none;
  flex-basis: calc(20% - 30px);
}

p.title {
  font-family: 'Manrope', serif;
  color: #666;
  font-weight: bold;
}
.woocommerce.columns-4 .star-rating-wrap,
.products.columns-4 .star-rating-wrap {
  display: inline-block;
  background-color:  var(--main-color);
  position: absolute;
  top: -7px;
  left: -7px;
  padding: 0 10px;
  border-radius: 10px;
}

.toplevel_page_Site-general-settings {
  margin-bottom: 20px;
}

.posts-section-block article {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.posts-section-block article .post-thumbnail {
  flex-shrink: 0;
}

.posts-section-block article .post-thumbnail img {
  border-radius: 10px;
  max-width: 300px;
  aspect-ratio: 800 / 800;
  object-fit: cover;
}

.posts-section-block article .entry-content {
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0 0;
}

.posts-section-block article .block_title {
  text-align: left;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}
.posts-section-block article .block_title a {
  font-family: 'Manrope', serif;
}

.posts-section-block .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 20px;
}

.posts-section-block .entry-date {
  color: #666;
}

.post-content .sep, .content-wrapper .sep {
  color: #DDD;
  margin: 0 10px;
}

.read-all-news {
  text-align: center;
  margin-bottom: 40px;
}

.read-all-news-button {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  height: 46px;
  width: 240px;
}
.read-all-news-button:hover {
  color: #fff;
}

.read-more-button {
  font-weight: bold;
  color: var(--main-color);
  display: inline;
}
.read-more-button:hover {
  color: var(--main-color);
  opacity: .9;
}

.post-navigation .nav-links {
  margin-top: 40px;
  padding: 0 20px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.post-navigation .nav-links a {
  font-weight: bold;
  color: var(--main-color);
}

.with-tags {
  display: flex;
}

.with-tags .entry-tags {
  font-weight: bold;
}

.with-tags .entry-tags a {
  color: var(--main-color);
}

.services-category {
  padding-bottom: 20px;
}

.services-section {
  background: #F5F5F5;
}
.services-section.posts-section-block .block_content,
.services-category .items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.services-section.posts-section-block article,
.services-category article {
  flex-direction: column;
  flex: 0 0 calc(25% - 15px);
}
.services-section.posts-section-block article:nth-child(even) {
  flex-direction: column;
}
.services-section.posts-section-block .read-all-news {
  flex: 0 0 100%;
}
.services-section.posts-section-block .content-wrapper {
  padding: 0 10px 10px 10px;
  height: 100%;
  justify-content: space-between;
  gap: 10px;
}
.services-category .content-wrapper {
  padding: 10px;
}
.services-section.posts-section-block article .block_title,
.post-category.services-category .items>article .block_title {
  font-size: 20px;
}
.services-section.posts-section-block .price,
.services-category .price {
  font-size: 16px;
}

body .qib-container {
  display: flex!important;
  align-items: center;
  justify-content: center;
  margin: 10px;
}
body .qib-container .minus.qib-button {
  padding: 2px 5px 5px 5px!important;
  cursor: pointer;
  font-size: 20px!important;
  line-height: 5px!important;
  border-radius: 10px!important;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-weight: bold;
  transition: all .25s ease-out!important;
}
body .qib-container .input-text.qty.text {
  font-family: 'Inter', sans-serif;
  font-size: 20px!important;
  font-weight: bold!important;
  border: none!important;
}
body .qib-container .plus.qib-button {
  cursor: pointer;
  font-size: 20px!important;
  border-radius: 10px!important;
  border: none;
  background: var(--accent-color);
  color: #fff;
  font-weight: bold;
  transition: all .25s ease-out!important;
}
body .qib-container .minus.qib-button:hover,
body .qib-container .plus.qib-button:hover {
  filter: brightness(90%);
}
form.cart button[type='submit']:focus:not(#qib_id):not(#qib_id) {
  outline: none!important;
}
.products.columns-4 .qib-container {
  display: none!important;
}

.custom-services .qib-container {
  display: none!important;
}

.woocommerce-checkout .woocommerce-checkout-payment .back-to-cart {
  margin-top: 30px;
  margin-right: 5px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-cart {
  display: none;
}

.mainimg {
  overflow: hidden;
  position: relative;
}
.mainimg > div {
  display: none;
  background: url('/wp-content/themes/enixpro/img/loading.svg') no-repeat center center;
  background-size: 50px;
  transition: all 0.25s ease-out;
  border-radius: 10px 10px 0 0;
  aspect-ratio: var(--woocommerce-ratio);
}
.wcgs-gallery-preloader {
  background-image: url(/wp-content/themes/enixpro/img/loading.svg)!important;
  background-size: 50px;
}
.lazy-hidden, .entry img.lazy-hidden, img.thumbnail.lazy-hidden {
  background-image: url(/wp-content/themes/enixpro/img/loading.svg)!important;
  background-size: 50px;
}
.fa.fa-spinner.lmp_rotate::before {
  display: none!important;
}
.fa.fa-spinner.lmp_rotate {
  animation: initial!important;
  background: url(/wp-content/themes/enixpro/img/loading.svg) no-repeat center center;
}
.nxp-svg-color {
  fill: var(--accent-color2)!important;
}
.mainimg > div:first-child {
  display: block;
}
.mainimg > div.indicators-container {
  background: none;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0 0 0;
  border-radius: 0;
  height: 10px;
  aspect-ratio: auto;
  position: absolute;
  bottom: 5px;
}
.mainimg > div img {
  object-fit: cover!important;
  object-position: center!important;
  width: 100%!important;
  height: 100%!important;
}
.indicator {
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background-color: #ddd;
  margin: 0 4px;
  cursor: pointer;
  transition: all .25s ease-out;
}
.indicator.active {
  background-color: var(--accent-color);
  transform: scale(1.3);
}

.woocommerce-checkout-review-order-table .product-item-thumbnail {
  width: 80px;
}

iframe {
  border-radius: 10px;
}

li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
  border-top-left-radius: 0!important;
  border-top-right-radius: 0!important;
}

#mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner, #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner::before, #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-inner::after {
  background-color: #fff;
}

.featured-products .woocommerce-result-count,
.featured-products .woocommerce-ordering {
  display: none;
}

.featured-products {
  margin-bottom: 2.992em;
}

.load-more .woocommerce-pagination {
  opacity: 0;
}

.hidden {
  opacity: 0;
}

#wp-admin-bar-theme-settings .dashicons-admin-settings,
#wp-admin-bar-contacts .dashicons-email-alt {
  position: relative;
  top: 2px;
}

#fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-item-misc {
  white-space: nowrap;
}
.fkcart-select-options {
  display: none;
}
.headerMenuWrap .fkcart-shortcode-container svg {
  fill: #fff;
}
.headerMenuWrap .fkcart-shortcode-container .fkcart-shortcode-count {
  background-color: var(--accent-color);
}
body #fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-remove-item span {
  background: var(--accent-color);
}
body #fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-loading::after {
  animation: initial!important;
  border-bottom: initial!important;
  border-left: initial!important;
  background: url(/wp-content/themes/enixpro/img/loading.svg) no-repeat center center;
  background-size: 20px;
}
body #fkcart-modal .fkcart-item-wrap .fkcart--item .fkcart-remove-item svg path {
  fill: #fff;
}
body #fkcart-modal .fkcart-checkout-wrap #fkcart-checkout-button,
body #fkcart-modal .fkcart-zero-state .fkcart-shop-button {
  border-radius: 10px;
  background-color: var(--accent-color);
}

.hidden-images {
  width: 100%;
}

.wcgs-slider-lightbox {
  position: absolute;
  z-index: 99;
  width: 100%;
  height: 100%;
}

#wpgs-gallery .wcgs-thumb.swiper-slide img {
  border-radius: 10px;
}
body #wpgs-gallery .wcgs-thumb.spswiper-slide img {
  border-radius: 10px;
}
body #wpgs-gallery .wcgs-thumb.spswiper-slide-thumb-active.wcgs-thumb img {
  border: 1px solid var(--accent-color);
}

#calc-button::before, .callback_wrap button::before,
#calc-button::after, .callback_wrap button::after {
  background: linear-gradient(-45deg, var(--main-color), var(--accent-color), var(--accent-middle), var(--accent-color2));
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th,
.cfvsw-swatches-container {
  justify-content: center;
}

.category-description p {
  margin-bottom: 15px;
}

.single-service {
  padding-bottom: 40px;
}
.single-service .post-content {
  justify-content: flex-start;
  gap: 30px;
}
.single-service .post-text-wrapper .entry-date {
  flex-direction: column;
}
.single-service .callback-main {
  margin-top: 25px;
  display: inline-flex;
  padding: 5px 25px;
  background: var(--main-color);
  color: #fff;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
  transition: opacity .3s ease;
  border-radius: 10px;
  min-height: 46px;
  transition: all 0.2s ease-out;
  font-size: 19px;
  font-weight: bold;
}
.single-service .price {
  font-size: 18px;
  padding-bottom: 0;
}
.single-service .entry-button {
  margin-bottom: 25px;
}
.single-service .with-tags.sibling-pic {
  margin-top: 20px;
  flex-direction: column;
  text-align: center;
}
.single-service .sticky {
  position: sticky;
  top: 100px;
}
.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 28px!important;
}

#wpgs-gallery img {
  border-radius: 15px;
}

.child-categories {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.child-categories li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 calc(25% - 15px);
}
.child-categories li a {
  font-family: 'Manrope', serif;
  color: #000;
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease-out;
  border-radius: 10px;
}
.child-categories li a img {
  border-radius: 10px;
  height: 200px;
  object-fit: cover;
}
.child-categories li a span {
  padding: 10px;
  text-align: center;
}
.lmp_products_loading {
  margin-top: 2.992em;
}
.preorder:hover::before {
  display: none;
}
body a.rds_hl_nofollow {
  text-decoration: none!important;
}

:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after {
  top: calc(50% - 10px)!important;
  animation: initial;
  background: url(/wp-content/themes/enixpro/img/loading.svg) no-repeat center center;
  background-size: 20px;
  width: 20px;
  height: 20px;
  content: '';
}

.woocommerce-ordering select.orderby {
  padding: 10px 40px 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  color: #444;
  background-image: url('data:image/svg+xml;utf8,<svg fill="gray" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* стили для нового фильтра */

.custom-filter-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.custom-filter-panel.open {
  max-height: 1000px; /* задать максимум с запасом */
}

.custom-filter-toggle button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--main-color);;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 25px;
  transition: all .25s ease-out;

}
.custom-filter-toggle button:hover {
  filter: brightness(90%);
}

.wpfMainWrapper {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  margin-bottom: 30px;
  font-size: 15px;
  color: #333;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.wpfMainWrapper > div {
  flex: 1 1 200px;
  min-width: 150px;
}

.wpfMainWrapper h3 {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 700;
  color: #222;
  border-bottom: 2px solid var(--main-color);;
  padding-bottom: 6px;
}

body .wpfMainWrapper label {
  display: flex!important;
  align-items: center;
  margin-bottom: 2px;
  cursor: pointer;
}

.wpfMainWrapper input[type="checkbox"],
.wpfMainWrapper input[type="radio"] {
  margin-right: 2px;
  vertical-align: middle;
}

.wpfMainWrapper .wpf-filter-reset {
  width: 100%;
  margin-top: 15px;
  background: var(--main-color);
  color: #fff;
  padding: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  user-select: none;
  transition: all .25s ease-out;
}

.wpfMainWrapper .wpf-filter-reset:hover {
  filter: brightness(90%);
}

body .wpfFilterButtons {
  flex: 0 0 100%;
}

.wpfClearButton.wpfButton {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  user-select: none;
  transition: background-color 0.3s ease;
  width: auto !important;
  max-width: 200px;
  text-align: center;
  transition: all .25s ease-out;
}

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

body .ui-slider.ui-widget-content .ui-slider-handle {
  border-radius: 50%;
  top: -6px;
}

.la-spinner, .wpfIconPreview .spinner, .wpfLoaderIconTemplate .spinner, .woobewoo-filter-loader.spinner {
  background: url(/wp-content/themes/enixpro/img/loading.svg) no-repeat center center!important;
  background-size: 60px!important;
  animation: none!important;
}

body .fkcart-loading::after {
  background: url(/wp-content/themes/enixpro/img/loading.svg) no-repeat center center !important;
  animation: none;
  border-bottom: 0;
  border-left: 0;
}

body .ui-slider.ui-widget-content .ui-slider-handle,
body .ui-slider.ui-widget-content:not(.iris-slider-offset) {
  border: 1px solid var(--main-color) !important;
  transition: background .25s ease-out;
}

body .ui-slider.ui-widget-content .ui-slider-handle:hover,
body .ui-slider.ui-widget-content:not(.iris-slider-offset):hover {
  border: 1px solid var(--main-color) !important;
  background: var(--main-color) !important;
}

.single-post .pageSection.readyProject_section {
  background: #fff;
}

#footer-menu ul {
  padding-left: 0;
}
#footer-menu li {
  list-style: none;
}
#footer-menu li a {
  font-size: 14px;
  color: #9AA0A6;
}

.nxp-marquee {
  margin-bottom: 20px;
}
.nxp-marquee svg {
  max-height: 100px;
}




















/* media */

@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;
  }

  .services-section .sep,
  .services-category .sep {
    display: none;
  }

}

@media screen and (max-width: 991px) and (min-width: 768px) {
  .header-wrap .phone {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
  }

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

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

}

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

  .woocommerce.custom ul.products::after {
    display: none;
  }

}

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

  body {
    min-width: 320px
  }

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

  header .logo .thumb img {
    height: 70px;
  }

  .header-wrap .text {
    height: 70px;
  }

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

  .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 svg {
    width: 30px;
    height: 30px
  }

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

  .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;
  }

  .reviews .swiper-slide,
  .reviews .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 a {
    font-size: 14px;
  }

  .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.custom ul.products[class*=columns-] li.product {
    width: 40%;
  }

  .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;
  }

  .woocommerce.custom ul.products {
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
  .woocommerce.custom ul.products::after {
    content: "";
    min-width: 2px;
    display: block;
  }

  .archive_all .categories-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    background: url('/wp-content/themes/enixpro/img/hand-swipe.png') no-repeat top center;
    background-size: contain;
  }

  .woocommerce.custom ul.products li {
    flex: 0 0 150px;
  }

  .services-section.posts-section-block .block_content,
  .services-category .items {
    gap: 15px;
    justify-content: space-between;
  }
  .services-section.posts-section-block article .block_title,
  .post-category.services-category .items>article .block_title {
    font-size: 16px;
    line-height: 1.4;
  }
  .services-section.posts-section-block .entry-date,
  .services-category .items .entry-date {
    font-size: 15px;
  }

  .single-service .entry-title.block_title,
  .single-service .entry-price,
  .single-service .entry-button {
    text-align: center;
  }

  .single-service .post-image-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .woocommerce.custom ul.products li.product {
    flex-basis: initial;
  }

  .post-category .content-wrapper,
  .services-section.posts-section-block article .block_title,
  .post-category.services-category .items>article .block_title {
    text-align: center;
  }

  .child-categories li a img {
    height: 120px;
  }
  .child-categories li a {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }

  .toTop {
    display: none!important;
  }

}












@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 .25s ease-out;
  }

  .menu-item-search input[type="text"] {
    width: 0;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    transition: all 0.25s 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: 10px;
    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: 5s;
    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.25s ease-out;
    transition-delay: 5s;
  }

  .headerMenuWrap {
    display: flex;
    align-items: center;
    height: 70px;
  }

  .phone-dropdown-content {
    left: -24px;
  }

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

  .db-cost {
    right: calc(50% - 24px);
  }

  .posts-section-block article:nth-child(even) {
    flex-direction: row-reverse;
  }

  .posts-section-block article:nth-child(even) .content-wrapper {
    text-align: right;
  }

  .posts-section-block article:nth-child(even) .block_title {
    text-align: right;
  }

  .services-section.posts-section-block article:nth-child(even) .content-wrapper {
    text-align: left;
  }
  .services-section.posts-section-block article:nth-child(even) .block_title {
    text-align: left;
  }

  body .woocommerce ul.products.columns-4 li:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
  .lmp_load_more_button {
    margin-top: 2.992em;
    margin-bottom: 0.992em;
  }
  #catalog > .container {
    padding-bottom: 0;
  }

}

















@media(max-width: 768px) {

  .gallery_item {
    min-width: auto;
    width: 100%;
    flex: 0 0 calc(50% - 10px);
    height: 160px;
  }

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

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

  .headerMenuWrap {
    background-color: #222;
  }

  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
    font-weight: normal;
  }

  .calc_totals {
    margin-top: 15px;
    padding: 5px;
    min-height: 270px;
  }

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

  .header {
    position: relative;
    background-position: center;
  }

  .header-wrap {
    padding: 4px 0 0;
    display: flex;
    justify-content: center;
    gap: 15px;
  }

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

  .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 .25s ease-out;
  }

  .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: 10px;
    font-size: 16px;
  }

  #searchsubmit {
    height: 100%;
    width: 40px;
  }

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

  .phone-input {
    width: 100%;
  }

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

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

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

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

  .pageSection.about {
    padding: 20px 0;
  }

  .nxp-about-block {
    flex-direction: column-reverse;
  }
  .about img {
    max-width: 50%;
    display: block;
    margin: auto;
    margin-bottom: 20px;
  }

  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;
  }

  .mob-features .main-features-wrap {
    padding: 10px 0;
  }

  .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 {
    background: #f5f5f5;
    display: block;
    padding-top: 15px;
  }

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

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

  .main-row {
    padding: 0;
  }

  .gallery_img {
    width: 300px;
  }

  .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;
    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,
  .woocommerce-cart-form__cart-item.cart_item .product-price,
  .woocommerce-cart-form__cart-item.cart_item .product-subtotal {
    text-align-last: center !important;
    text-align: center !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 {
    padding: 0;
  }

  .pageSection .container {
    padding: 10px 15px;
  }

  .read-all-news {
    margin-bottom: 20px;
  }

  .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;
  }

  .pageSection.about p:last-child {
    margin-bottom: 0;
  }

  .footer {
    padding: 85px 0;
  }

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

  #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;
    padding-bottom: 5px;
    overflow: auto;
    white-space: nowrap;
  }

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

  .searchform {
    padding-right: 0;
  }

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

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

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

  .woocommerce ul.products li.product a img.tp-image-hover {
    display: none;
  }

  .posts-section-block article {
    flex-direction: column;
  }

  .posts-section-block article .block_title {
    font-size: 18px;
  }

  .read-all-news-button {
    font-size: 18px;
  }

  .posts-section-block article .entry-content {
    margin: 10px 0 0;
  }

  .post .post-content {
    gap: 20px;
  }

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

  .post-category .items {
    margin-top: 30px;
  }

  .post-category .content-wrapper {
    padding: 10px;
  }

  #mega-menu-wrap-main-menu .mega-menu-toggle .mega-toggle-block-2 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
    width: 32px;
  }

  .woocommerce-checkout .woocommerce-checkout-payment .back-to-cart {
    width: 100%;
    text-align: center;
    margin-top: 0;
  }

  body #fkcart-floating-toggler[data-position=bottom-left] {
    left: 20px;
    bottom: 20px;
  }
  body #fkcart-floating-toggler .fkcart-floating-icon {
    background-color: var(--accent-color);
  }
  body #fkcart-floating-toggler .fkcart-floating-icon svg path {
    fill: #fff;
  }
  body #fkcart-floating-toggler .fkcart-item-count {
    background: #333;
  }
  body .fkcart-custom-menu-link {
    display: flex;
  }

  .header {
    background-color: var(--mob-header-color);
  }
  .footer {
    background-color: var(--mob-footer-color);
  }

  .services-section.posts-section-block article,
  .services-category article {
    flex-direction: column;
    flex: 0 0 calc(50% - 10px);
  }

  .single-service .post-content {
    gap: 10px;
  }

  .child-categories li {
    flex: 0 0 calc(50% - 15px);
  }
  .child-categories li a img {
    height: 140px;
  }

  body .woocommerce ul.products.columns-4 li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .lmp_load_more_button {
    margin-top: 1.992em;
  }

  .gallery a::before, .wcgs-slider-lightbox::before, .fancybox::before, .wp-block-gallery a::before, .wp-block-image a::before,
  .gallery a:hover::before, .wcgs-slider-lightbox:hover::before, .fancybox:hover::before, .wp-block-gallery a:hover::before, .wp-block-image a:hover::before {
    display: none;
  }

  #footer-menu ul {
    text-align: center;
  }

}
















@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 .logo.front {
    width: 100%;
    justify-content: center;
  }

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

  .header-wrap .phone br {
    display: none;
  }

}







@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
  }
}






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

  .container {
    width: 100%;
    max-width: 1320px;
  }

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

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

  #wpgs-gallery {
    max-width: 38%!important;
  }

}








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

  #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link:focus,
  #mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu > li.mega-menu-item > a.mega-menu-link:focus,
  #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,
  #mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-topHeader-menu #mega-menu-topHeader-menu>li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
    background: var(--accent-color);
  }

  #fkcart-floating-toggler {
    display: none;
  }

  #mega-menu-main-menu > li > .mega-menu-link,
  #mega-menu-topHeader-menu > li > .mega-menu-link {
    background: 
        linear-gradient(var(--accent-color) 0 0) 
        var(--p, 0) 100% /var(--d, 0) 2px 
        no-repeat!important;
    transition: 0.3s, background-position 0s 0.3s!important;
    border-radius: 0!important;
  }
  #mega-menu-main-menu > li.mega-menu-item-has-children > .mega-menu-link,
  #mega-menu-topHeader-menu > li.mega-menu-item-has-children > .mega-menu-link {
    background: none!important;
    transition: 0.3s, background-position 0s 0.3s!important;
    border-radius: 0!important;
  }
  #mega-menu-main-menu > li > .mega-menu-link:hover,
  #mega-menu-topHeader-menu > li > .mega-menu-link:hover {
    --d: 100%!important;
    --p: 100%!important;
  }
  li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
    border-top-left-radius: 10px!important;
    border-top-right-radius: 10px!important;
  }

}