/*
Author: mirti (mirti.de.vednis.1@gmail.com)
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# General
  - Restyle
	- Elements
  - Modals
  - Forms
  - Misc
# Header
# Footer
# Main page
# Main page v2
# Product page
# Product catalog
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

/* Restyle
--------------------------------------------- */
.responsive .container {
  max-width: 1700px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}
.site_main * {
  margin: 0;
  padding: 0;
}

/* Elements
--------------------------------------------- */
:root {
  --accent_green: #00AF50;
  --dark_blue: #0E374F;
  --darker_blue: #0A263A;
  --darkest_blue: #091C27;
  --brown: #323232;
  --middle_brown: #C8CAD3;
  --light_brown: #D9D9D9;
  --dark_gray: #858C9F;
  --middle_gray: #A2B1BD;
  --light_gray: #F3F4F6;
  --green_category: #EBF9F0;
  --yellow_category: #F9F8EB;
  --blue_category: #EBF6F9;
  --violet_category: #EBECF9;
  --transition_default: all .3s;
}
body {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  color: var(--dark_gray);
}
.flex_elem {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--brown);
  font-weight: 700;
}
h1 {
  font-size: 24px;
}
h2 {
  font-size: 36px;
  line-height: .9;
}
h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 24px;
}
h1 span, h2 span, h3 span {
  color: var(--accent_green);
}
.btn {
  background: var(--dark_blue) !important;
  color: #fff !important;
  text-decoration: none !important;
  padding: 15px 18px;
  border-radius: 40px;
  position: relative;
  height: 60px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition_default);
}
.btn img {
  padding-left: 10px;
  width: 20px;
  height: 10px;
}
.btn:hover {
  background: var(--darker_blue) !important;
}
.btn:active {
  background: var(--darkest_blue) !important;
}
.btn:disabled {
  background: var(--dark_gray) !important;
}
.btn.bg_cover {
  overflow: hidden;
}
.btn.bg_cover::after {
  content: '';
  position: absolute;
  left: -5px;
  top: 0;
  background: url('/wp-content/themes/enfold-child/images/btn_cover.png') no-repeat;
  background-position: center;
  background-size: contain;
  width: 60px;
  height: 30px;
  opacity: .3;
  z-index: 0;
}
a {
  color: var(--dark_blue) !important;
  text-decoration: none !important;
}
#wpadminbar a {
  color: #eee !important;
}
#wpadminbar a:hover {
  color: #fff !important;
}


@media(min-width: 360px) {
  .btn {
    padding: 15px 28px;
  }
}

@media(min-width: 576px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 30px;
  }
}

@media(min-width: 768px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 40px;
  }
}

@media(min-width: 992px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 80px;
  }
  h3 {
    font-size: 50px;
  }
}

/* Modals
--------------------------------------------- */
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
}
.modal .modal_container {
  background: rgba(0, 0, 0, 0.55);
  position: fixed;
  width: 100%;
  height: 100%;
}
.modal .modal_content_wrapper {
  position: relative;
  padding: 50px 20px 30px;
  top: 20px;
  left: 10px;
  right: 10px;
  width: calc(100% - 20px);
  box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  background: #fff;
  height: auto;
  max-height: calc(100vh - 40px);
  overflow: auto;
}
.modal_content_title {
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 30px;
  text-align: center;
  color: #000;
}
.modal_close {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 20px;
  border-radius: 100%;
  width: 30px;
  height: 30px;
}
.modal_close svg {
  width: 100%;
}
.modal_close svg * {
  fill: var(--dark_blue);
}
.modal_close:hover svg * {
  fill: var(--accent_green);
}
.forms_modal .form_submit {
  margin: 20px auto 0;
  display: block;
}
.forms_modal .wpcf7-spinner {
  display: none;
}
.forms_modal .wpcf7 form .wpcf7-response-output {
  margin: 10px auto 0 !important;
}

@media (min-width: 576px) {
  .modal .modal_content_wrapper {
    left: 0;
    right: 0;
    width: 400px;
    margin: 0 auto;
  }
}

/* Forms
--------------------------------------------- */
.wpcf7-form div.hidden {
  display: none;
}
.form_fields {
  border: 1px solid var(--light_brown) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  color: var(--dark_blue) !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 19px !important;
  background: var(--light_gray) !important;
}
.form_fields.hidden {
  display: none;
}
.form_fields:focus {
  border: 1px solid var(--accent_green) !important;
}
.form_fields.wpcf7-not-valid {
  border: 1px solid red !important;
}
.form_fields::placeholder {
  color: var(--middle_gray) !important;
}
textarea.form_fields {
  height: 140px;
  min-height: 140px !important;
  max-height: 500px;
  max-width: 100%;
  min-width: 100%;
}
select.form_fields {
  width: 100% !important;
  color: var(--middle_gray) !important;
  position: relative;
  cursor: pointer;
  margin-bottom: 20px !important;
}
.select_wrapper {
  position: relative;
  cursor: pointer;
}
.select_wrapper::after {
  content: '';
  position: absolute;
  top: 25px;
  right: 25px;
  background: url('images/arrow_right_dark.svg') no-repeat;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
  transition: var(--transition_default);
}
.select_wrapper:hover::after {
  transform: rotate(90deg) scale(1.3);
}
select.form_fields.active {
  color: var(--dark_blue) !important;
}
.form_submit {
  border-radius: 40px !important;
  margin: 40px auto 0;
  width: 100%;
  max-width: 380px;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  padding: 15px 18px !important;
}
.wpcf7 .ajax-loader {
  display: none !important;
}
.wpcf7-acceptance label {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
}
.form_accept + span {
  font-weight: 400 !important;
  font-size: 12px !important;
  line-height: 15px !important;
  color: var(--middle_gray) !important;
  padding-left: 10px;
  text-align: left;
}
.wpcf7-not-valid-tip {
  position: absolute;
  bottom: 0;
  padding-left: 20px;
  color: red !important;
  white-space: nowrap;
}
.wpcf7-acceptance + .wpcf7-not-valid-tip {
  position: static;
  font-size: 12px;
  line-height: 1.2;
  margin-top: 5px;
}
.wpcf7-response-output {
  line-height: 1.2;
  font-size: 14px;
}

/* Misc
--------------------------------------------- */
/* slick */
.slick_arrow {
  position: absolute;
  bottom: -90px;
  left: 0;
  width: 60px;
  height: 60px;
  background: rgba(128, 132, 97, 0.7);
  backdrop-filter: blur(3px);
  border-radius: 12px;
  cursor: pointer;
}
.slick_arrow::after {
  content: '';
  position: absolute;
  top: calc(50% - 16px);
  left: calc(50% - 8px);
  background: url('images/arrow_right.svg') no-repeat center;
  background-size: 100%;
  width: 16px;
  height: 32px;
}
.slick_arrow:hover::after {
  filter: invert(1);
}
.slick_prev::after {
  transform: scale(-1);
}
.slick_next {
  left: 78px;
}
.slick_arrow_white {
  background: #fff;
  border: 1px solid var(--light_brown);
}
.slick_arrow_white::after {
  background: url('images/arrow_right_dark.svg') no-repeat center;
}

/* cookie */
.cc-window.cc-floating {
  margin: 0 32px 32px !important;
  max-width: 100% !important;
  background: #fff !important;
  border-radius: 24px !important;
  color: var(--dark_gray) !important;
  border: 1px solid var(--light_gray);
}
.cc-message a {
  text-decoration: underline !important;
  color: #000 !important;
}
.cc-btn {
  background: #fff !important;
  color: var(--brown) !important;
  text-decoration: none !important;
  padding: 15px 18px;
  border-radius: 40px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition_default);
  border: 1px solid var(--light_brown) !important;
}
.cc-allow {
  background: var(--dark_blue) !important;
  color: #fff !important;
  border: 1px solid var(--dark_blue) !important;
  margin-left: 20px !important;
}

@media(min-width: 768px) {
  .cc-window.cc-floating {
    flex-direction: row !important;
  }
  .cc-message {
    padding-right: 50px;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.av-burger-overlay {
  overflow: visible !important;
}
#header_main {
  border: 0;
  padding-bottom: 55px;
  background: #fff;
  box-shadow: 0 0 5px rgba(100, 100, 100, 0.3);
}
#header_main .inner-container {
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.header_logo {
  width: 152px;
  height: 58px;
  margin-top: 15px;
}
.header_logo img {
  width: 152px;
  height: 58px;
}
#header_main_menu {
  width: 100%;
}
#header_main_menu li a {
  color: var(--dark_gray);
}
#header_main_menu li a:hover {
  color: var(--dark_blue);
}
#header_main_menu .main_menu {
  position: static;
}
#header_main_menu .sub-menu li a {
  border: 0;
}
.av-hamburger-inner, .av-hamburger-inner::before, .av-hamburger-inner::after {
  height: 4px;
}
.header_btns {
  position: absolute;
  right: 0;
  top: 65px;
  justify-content: flex-end;
  align-items: flex-start;
}
.header_btns .btn {
  padding: 5px 10px;
  height: 40px;
  margin-top: 15px;
}
.header_lang_switcher {
  border: 1px solid var(--light_brown) !important;
  border-radius: 53px;
  padding: 5px 10px;
  margin: 15px 5px 0 0;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  height: 40px;
  width: 104px;
  cursor: pointer;
  background: #fff;
}
.header_lang_switcher:hover {
  border: 1px solid var(--middle_gray) !important;
  height: auto;
  border-radius: 23px;
}
.header_lang_switcher:active {
  border: 1px solid var(--brown) !important;
}
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.header_lang_switcher::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  background: url('images/lang_ico.png') no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
}
.header_lang_switcher.loading::before {
  left: auto;
  right: auto;
  margin: 0 auto;
  animation: spinner 3s infinite;
}
.header_lang_switcher::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 14px;
  background: url('images/arrow_down.svg') no-repeat;
  background-size: 10px 10px;
  width: 10px;
  height: 10px;
}
.header_lang_switcher a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: none;
  position: relative;
  top: 6px;
  margin-top: 10px;
  width: 100%;
  text-align: center;
}
.header_lang_switcher:hover a {
  display: block;
}
.header_lang_switcher a:nth-child(1) {
  display: block;
  margin-top: 0;
}
.header_lang_switcher a:nth-last-child(1) {
  margin-bottom: 10px;
}
.header_lang_switcher.loading {
  height: 40px;
}
.header_lang_switcher.loading a,
.header_lang_switcher span {
  display: none;
}
.header__search {
  display: none;
  position: relative;
  left: 27px;
  top: 10px;
  width: auto;
  opacity: 0;
  transition: opacity 1s;
}
.header__search.scrolled {
  opacity: 1;
}
.header__search .product-search-field {
  background: var(--light_gray) !important;
  border-radius: 55px !important;
  padding: 20px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  color: var(--middle_gray) !important;
  height: 60px !important;
  border: 0 !important;
}
.header__search .product-search-field::placeholder {
  color: var(--middle_gray) !important;
}
.header__search button {
  background: var(--brown) !important;
  top: 16px !important;
  right: 10px !important;
  width: 29px !important;
  height: 29px !important;
  border-radius: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.header__search button::after {
  content: '';
  position: absolute;
  background: url('images/search_ico.svg') no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.header__search div.product-search-form span.product-search-field-clear:after {
  right: 30px;
  top: -43px;
}
.header__search div.product-search-results-content {
  margin-top: 15px;
  min-width: 500px;
}
.header__search div.product-search-results-content .product-info span.title {
  line-height: 1.2 !important;
}
.product-search-results table.search-results tr td,
.entry-content .product-search-results table.search-results tr td {
  vertical-align: middle !important;
}
/* fixed header on mob */
.fixed_mobile_header {
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px;
  width: 100%;
  position: fixed;
  top: -100px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: top 1s;
  box-shadow: 0 0 5px rgba(100, 100, 100, 0.3);
}
.fixed_mobile_header.active {
  top: 0;
}
.fixed_header__search {
  position: relative;
  width: 100%;
}
.fixed_header__search .product-search-field {
  background: var(--light_gray) !important;
  border-radius: 55px !important;
  padding: 10px !important;
  font-size: 14px !important;
  line-height: 1 !important;
  color: var(--middle_gray) !important;
  height: 40px !important;
  border: 0 !important;
}
.fixed_header__search .product-search-field::placeholder {
  color: var(--middle_gray) !important;
}
.fixed_header__search button {
  background: var(--brown) !important;
  top: 6px !important;
  right: 6px !important;
  width: 29px !important;
  height: 29px !important;
  border-radius: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.fixed_header__search button::after {
  content: '';
  position: absolute;
  background: url('images/search_ico.svg') no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.fixed_header__search div.product-search-form span.product-search-field-clear:after {
  right: 30px;
}
.fixed_header__search div.product-search-results-content {
  margin-top: 15px;
}
/*.fixed_header__menu .av-hamburger-inner,
.fixed_header__menu .av-hamburger-inner::before,
.fixed_header__menu .av-hamburger-inner::after {
  background: var(--accent_green);
}*/

@media(min-width: 340px) {
  .header_lang_switcher {
    padding: 5px 20px;
    width: 124px;
  }
  .header_lang_switcher a {
    font-size: 18px;
  }
  .header_lang_switcher::before {
    left: 18px;
  }
}

@media(min-width: 360px) {
  .header_btns .btn {
    padding: 5px 18px;
  }
}

@media(min-width: 375px) {
  .header_lang_switcher {
    margin-right: 10px;
    padding: 5px 30px;
    width: 134px;
  }
  .header_lang_switcher a {
    font-size: 18px;
  }
}

@media(min-width: 640px) {
  #header_main {
    padding-bottom: 20px;
  }
  .header_btns {
    top: 0;
    right: 60px;
  }
  .header_btns .btn,
  .header_lang_switcher {
    padding-top: 15px;
    padding-bottom: 15px;
    height: 60px;
  }
  .header_lang_switcher.loading {
    height: 60px;
  }
  .header_lang_switcher:hover {
    border-radius: 30px;
  }
  .header_lang_switcher::before {
    top: 20px;
  }
  .header_lang_switcher::after {
    top: 24px;
  }
}

@media(min-width: 768px) {
  #header_main {
    height: 150px;
  }
  .html_header_top .header_color .main_menu ul:first-child>li>ul,
  .html_header_top #top .header_color .avia_mega_div>.sub-menu {
    border-top: none !important;
  }
  #header_main_menu #avia-menu > li {
    position: static !important;
  }
  #header_main_menu #avia-menu > li > a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--dark_blue) !important;
    padding: 0 !important;
    margin-right: 40px !important;
  }
  #header_main_menu #avia-menu > li > a:hover {
    color: var(--accent_green) !important;
  }
  #header_main_menu #avia-menu > li:nth-last-child(2) > a {
    margin-right: 0 !important;
  }
  #header_main_menu .avia-menu-fx {
    opacity: 0 !important;
  }
  #header_main_menu .sub-menu {
    box-shadow: none !important;
    top: 78px !important;
    width: 100% !important;
  }
  #header_main_menu .sub-menu li a {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: var(--dark_gray) !important;
    margin: 10px 0 !important;
    padding: 8px 0 !important;
    transition: all .3s !important;
  }
  #header_main_menu .sub-menu li:nth-child(1) a {
    margin-top: 30px !important;
  }
  #header_main_menu .sub-menu li:nth-last-child(1) a {
    color: var(--dark_blue) !important;
    margin: 20px 0 40px !important;
  }
  #header_main_menu .sub-menu li a:hover {
    background: none !important;
    color: var(--accent_green) !important;
  }
  #header_main_menu .sub-menu::before {
    content: '';
    position: absolute;
    left: -9999px;
    width: 20000px;
    height: 100%;
    background: #fff;
    z-index: 0;
    box-shadow: 0 8px 15px rgba(0,0,0,.1);
  }
  .header_btns {
    right: 0;
  }
  .header_lang_switcher {
    margin-right: 24px;
  }
  .header__search {
    display: block;
  }
  /* fixed header on mob */
  .fixed_mobile_header {
    display: none !important;
  }
  .fixed_mobile_header.active {
    top: -1000px !important;
  }
}

@media(min-width: 768px) and (max-height: 768px) {
  #header_main_menu .sub-menu li a {
    margin: 0 !important;
  }
}

@media(min-width: 992px) {
  .header__search button {
    top: 10px !important;
    width: 40px !important;
    height: 40px !important;
  }
  .header__search button::after {
    width: 24px;
    height: 24px;
  }
  .header__search div.product-search-form span.product-search-field-clear:after {
    right: 50px;
  }
}

@media(min-width: 1280px) {
  #header_main {
    height: auto;
    padding-bottom: 0;
  }
  .header_logo {
    margin-top: 0;
  }
  #header_main_menu {
    width: auto;
    order: 2;
  }
  #header_main_menu .main_menu {
    margin-left: 60px;
  }
  #header_main_menu #avia-menu > li > a {
    margin-right: 50px !important;
  }
  #header_main_menu #avia-menu > li:nth-last-child(2) > a {
    margin-right: 30px !important;
  }
  #header_main_menu .sub-menu {
    box-shadow: none !important;
    top: 88px !important;
  }
  /*#header_main.scrolled #header_main_menu #avia-menu > li > a {
    margin-right: 15px !important;
  }*/
  .header__search {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    justify-content: flex-end;
    width: auto;
    order: 3;
    top: 15px;
    left: auto;
    position: absolute;
  }
  .header__search div.product-search {
    width: 100%;
  }
  .header__search .product-search-field {
    font-size: 16px !important;
  }
}

@media(min-width: 1400px) {
  #header_main_menu .main_menu {
    margin-left: 50px;
  }
  .header__search div.product-search {
    width: calc(100% - 20px);
  }
}

@media(min-width: 1600px) {
  .header__search .product-search-field {
    font-size: 20px !important;
    padding: 25px 40px !important;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--dark_blue);
  padding: 0;
  font-size: 14px !important;
  line-height: 1.5;
}
.footer_cols {
  justify-content: flex-start;
  align-items: flex-start;
  color: var(--middle_gray);
  padding: 64px 0;
}
.footer_cols strong {
  color: var(--accent_green) !important;
}
.footer_cols a {
  color: var(--middle_gray) !important;
  transition: var(--transition_default);
}
.footer_cols a:hover {
  color: var(--accent_green) !important;
}
.footer_col {
  width: 100%;
  padding-right: 10px;
  margin: 20px 0;
}
.footer_col > p:nth-of-type(1) {
  margin-top: 0;
}
.footer_col5 {
  width: 100% !important;
  justify-content: flex-start;
  align-items: center;
}
.footer_col5 a {
  display: inline-block;
  margin: 0 15px 10px 0;
}
.footer_menu {
  margin: 0;
  padding: 0;
}
.footer_menu li {
  margin-bottom: 10px;
}
.google_badge * {
  color: #fff !important;
}
.google_badge .Main__Container-sc-1n4ud0o-0 > a {
  display: none !important;
}
.google_badge .LayoutSidebar__Inner-sc-oejpsz-1 {
  justify-content: flex-start;
}
.google_badge .BadgeContainer__Inner-sc-pa6z2-0 {
  margin: 20px 0 0 !important;
  padding: 0 !important;
}

@media(min-width: 576px) {
  .footer_col {
    width: 50%;
  }
}

@media(min-width: 768px) {
  .footer_cols {
    padding-bottom: 0;
  }
  .footer_col {
    width: calc(100% / 3);
  }
}

@media(min-width: 1200px) {
  .footer_cols {
    justify-content: space-between;
  }
  .footer_col {
    width: auto;
  }
}

/*--------------------------------------------------------------
# Main page
--------------------------------------------------------------*/
.main_page_sections {
  padding-top: 140px;
  position: relative;
  z-index: 1;
}

@media(min-width: 768px) {
  .main_page_sections {
    padding-top: 280px;
  }
}

/* main_page_section_1
--------------------------------------------- */
.main_page_section_1 {
  position: fixed;
  top: 60px;
  left: auto;
  right: auto;
  margin: 0 auto;
  width: 100%;
  z-index: 3;
}
.main_page_section_1.scrolled {
  position: relative;
  top: -10px;
}
.main_page_section_1.hidden {
  opacity: 0;
}
/* titles */
.sec1_pre_title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark_gray);
  text-align: center;
}
.sec1_title {
  max-width: 360px;
  margin: 20px auto 0;
  text-align: center;
}
/* search */
.sec1_search_form {
  position: relative;
  margin: 40px auto 80px;
}
.sec1_search_form .product-search-field {
  background: var(--light_gray) !important;
  border-radius: 55px !important;
  padding: 25px !important;
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--middle_gray) !important;
  height: 80px !important;
  border: 0 !important;
}
.sec1_search_form .product-search-field::placeholder {
  color: var(--middle_gray) !important;
}
.sec1_search_form button {
  background: var(--brown) !important;
  top: 90px !important;
  right: 0 !important;
  left: 0 !important;
  margin: 0 auto !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.sec1_search_form button::after {
  content: '';
  position: absolute;
  background: url('images/search_ico.svg') no-repeat;
  background-size: 100%;
  width: 32px;
  height: 32px;
}
div.product-search-form span.product-search-field-clear:after {
  position: absolute;
  top: -15px;
  right: 10px;
}
div.product-search-results-content {
  border: 2px solid var(--light_gray) !important;
  box-shadow: 0px 3px 2px rgba(14, 51, 79, 0.05), 0px 10px 20px rgba(14, 51, 79, 0.1);
  border-radius: 12px;
  padding: 15px 20px !important;
}
table.search-results tr:hover {
  background: var(--light_gray);
  border-radius: 8px !important;
}

@media(min-width: 576px) {
  .sec1_title {
    max-width: 1200px;
  }
  .sec1_search_form button {
    top: 10px !important;
    right: 10px !important;
    left: auto !important;
    margin: 0 !important;
  }
  div.product-search-form span.product-search-field-clear:after {
    right: 70px;
  }
}

@media(min-width: 640px) {
  .main_page_section_1.scrolled {
    top: 35px;
  }
}

@media(min-width: 768px) {
  .main_page_section_1 {
    top: 100px;
    padding-top: 140px;
  }
  .main_page_section_1.scrolled {
    top: -10px;
    padding-top: 240px;
  }
  .sec1_pre_title {
    font-size: 24px;
    line-height: 29px;
  }
  .sec1_search_form {
    margin: 80px auto;
  }
  .main_page_section_1.scrolled .sec1_search_form {
    margin-bottom: 0;
  }
  .sec1_search_form .product-search-field {
    font-size: 20px !important;
    line-height: 30px !important;
    padding: 25px 40px !important;
  }
  .sec1_search_form .product-search-results {
    width: 100%;
    max-width: 820px;
    margin: 15px auto 0;
  }
}

@media(min-width: 992px) {
  .main_page_section_1.scrolled {
    top: -25px;
  }
}

@media(min-width: 1280px) {
  .main_page_section_1 {
    top: 60px;
  }
  .main_page_section_1.scrolled {
    top: 30px;
    padding-top: 140px;
  }
}

/* main_page_section_2
--------------------------------------------- */
.main_page_section_2 {
  background-image: url('images/sec1_bg6.jpg');
  background-repeat: no-repeat;
  background-position: center top 20px;
  background-size: cover;
  padding: 280px 0 160px;
  margin-top: 280px;
  border-radius: 0 0 60px 60px;
  z-index: 2;
}
.main_page_section_2.scrolled {
  margin-top: -185px;
}
@keyframes main_page_section_2 {
  0% {
    background-position: center top 20px;
  }
  100% {
    background-position: center top;
  }
}
.main_page_section_2.moved {
  animation: main_page_section_2 1.5s;
  background-position: center top;
  transition: background-position 1.5s;
}
/* slider */
@keyframes sec2_slider {
  0% {
    top: 0;
  }
  100% {
    top: 50px;
  }
}
.sec2_slider {
  position: relative;
  top: 0;
  padding-bottom: 0;
  transition: top 1.5s;
}
.main_page_section_2.moved .sec2_slider {
  animation: sec2_slider 1.5s;
  top: 50px;
  transition: top 1.5s;
}
.sec2_slide {
  background: rgba(128, 132, 97, 0.9);
  border-radius: 30px 0 0 30px;
  margin-right: 52px;
  padding: 40px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.sec2_slide::before {
  content: '';
  position: absolute;
  right: -52px;
  top: 40px;
  width: 52px;
  height: calc(100% - 40px);
  background: rgba(128, 132, 97, 0.9);
  z-index: 1;
  border-radius: 0 20px 30px 0;
}
.sec2_slide::after {
  content: '';
  position: absolute;
  background: url('images/sec2_slide.png') no-repeat;
  background-size: contain;
  right: -52px;
  top: 0;
  width: 52px;
  height: 52px;
  z-index: 2;
}
.sec2_slide__title {
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.sec2_slide__text {
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
  line-height: 24px;
  color: var(--light_gray);
}

@media(min-width: 576px) {
  .sec2_slide__title {
    font-size: 32px;
    line-height: 39px;
  }
  .sec2_slide__text {
    font-size: 20px;
  }
}

@media(min-width: 768px) {
  .main_page_section_2 {
    padding: 360px 0 220px;
    margin-top: 280px;
  }
  .main_page_section_2.scrolled {
    margin-top: -270px;
  }
  .sec2_slide__title {
    font-size: 24px;
  }
  .sec2_slide__text {
    font-size: 16px;
    line-height: 24px;
  }
  .sec2_slide {
    margin-right: 72px;
  }
  .sec2_slide__inner {
    min-height: 260px;
  }
  .sec2_slide__title {
    min-height: 130px;
  }
}

@media(min-width: 992px) {
  .main_page_section_2.scrolled {
    margin-top: -290px;
  }
}

@media(min-width: 1200px) {
  .sec2_slider {
    width: 900px;
  }
  .slick-list {
    overflow: visible !important;
  }
  .sec2_slide {
    opacity: 0 !important;
    transition: opacity 1s;
  }
  .sec2_slide.slick-active,
  .sec2_slide.slick-active + .sec2_slide {
    opacity: 1 !important;
  }
  .sec2_slide__inner {
    min-height: 200px;
  }
  .sec2_slide__title {
    min-height: 100px;
  }
}

@media(min-width: 1280px) {
  .main_page_section_2.scrolled {
    margin-top: -200px;
  }
}

@media(min-width: 1400px) {
  .sec2_slider {
    width: 1200px;
  }
  .sec2_slide__title {
    font-size: 32px;
    line-height: 39px;
  }
  .sec2_slide__text {
    font-size: 20px;
  }
  .sec2_slide__inner {
    min-height: 260px;
  }
  .sec2_slide__title {
    min-height: 130px;
  }
}

@media(min-width: 2000px) {
  .sec2_slider {
    width: 1700px;
  }
}

/* main_page_section_3
--------------------------------------------- */
.main_page_section_3 {
  padding: 200px 0 90px;
  margin-top: -60px;
  background: var(--light_gray);
  border-radius: 0 0 60px 60px;
  z-index: 1;
}
.main_page_section_3 .container {
  justify-content: space-between;
  align-items: flex-start;
}
.sec3_info, .sec3_list {
  width: 100%;
}
.sec3_text,
.sec3_list {
  margin-top: 80px;
}
.sec3_text {
  max-width: 530px;
}
.sec3_list__elem {
  margin-bottom: 44px;
}
.sec3_list__elem:nth-last-child(1) {
  margin-bottom: 0;
}
.sec3_list__title {
  color: var(--dark_blue);
  font-size: 24px;
  line-height: 29px;
}
.sec3_list__text {
  margin-top: 20px;
  max-width: 500px;
}

@media(min-width: 768px) {
  .main_page_section_3 {
    padding: 200px 0 190px;
  }
  .sec3_info, .sec3_list {
    width: 50%;
  }
  .sec3_text {
    padding-right: 30px;
  }
  .sec3_list {
    margin-top: 120px;
  }
}

@media(min-width: 992px) {
  .sec3_list {
    margin-top: 150px;
  }
}

/* main_page_section_4
--------------------------------------------- */
.main_page_section_4 {
  z-index: 5;
  background: #fff;
}
.sec4_cats {
  margin-top: 60px;
  justify-content: flex-start;
  align-items: flex-start;
}
.sec4_cat {
  background: var(--light_gray);
  border-radius: 12px;
  padding: 8px 12px;
  color: var(--dark_gray);
  font-size: 14px;
  line-height: 16px;
  margin: 0 10px 10px 0;
  cursor: pointer;
  transition: var(--transition_default);
}
.sec4_cat:hover {
  background: var(--light_brown);
  color: var(--dark_blue);
}
.sec4_cat.active {
  background: var(--accent_green);
  color: #fff;
}
.sec4_slider {
  height: 0 !important;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: opacity 1s;
}
.sec4_slider.active {
  height: auto !important;
  overflow: visible;
  margin: 20px 0 100px;
  opacity: 1;
}
.sec4_slider .slick_arrow {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.sec4_slider .slick_prev {
  left: -70px;
}
.sec4_slider .slick_next {
  right: -70px;
}
.sec4_slide_inner {
  border-radius: 25px;
  border: 1px solid var(--light_brown);
  overflow: hidden;
}
.sec4_slide_inner > a > img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}
.sec4_slide__info {
  padding: 24px 32px 40px;
}
.sec4_slide__info .btn {
  margin-top: 30px;
  width: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  padding-left: 28px;
  padding-right: 28px;
}
.sec4_slide__title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: var(--dark_blue);
  margin: 0;
  padding: 0;
  word-break: break-word;
}
.sec4_slide__descr {
  margin: 20px 0 0;
  height: 90px;
  overflow: hidden;
}
.sec4_slide__descr h2,
.sec4_slide__descr h3,
.sec4_slide__descr h4 {
  font-size: 16px !important;
  line-height: 1.4;
}
.sec4_cat_btn {
  width: 100%;
  max-width: 350px;
  margin: 20px auto 0;
}

@media(min-width: 768px) {
  .sec4_cat {
    padding: 12px 16px;
    font-size: 18px;
    line-height: 22px;
    margin: 0 15px 15px 0;
  }
  .sec4_slider .slick_arrow {
    margin: 0;
    left: auto;
    bottom: -110px;
  }
  .sec4_slider .slick_prev {
    right: 70px;
  }
  .sec4_slider .slick_next {
    right: 0;
  }
  .slick-list {
    overflow: visible !important;
  }
  .sec4_slide {
    opacity: 0 !important;
    transition: opacity 1s;
  }
  .sec4_slide.slick-active,
  .sec4_slide.slick-active + .sec4_slide {
    opacity: 1 !important;
  }
  .sec4_slide_inner {
    margin: 0 28px 0 0;
    min-height: 630px;
  }
  .sec4_slide__title {
    min-height: 90px;
  }
  .sec4_slide__descr {
    font-size: 20px;
    line-height: 30px;
    height: 90px;
  }
  .sec4_slide__info .btn {
    position: absolute;
    margin-top: 0;
    bottom: 40px;
  }
  .sec4_cat_btn {
    margin-top: -50px;
  }
}

@media(min-width: 2400px) {
  .sec4_slide__title {
    min-height: 110px;
  }
}

/* main_page_section_5
--------------------------------------------- */
.sec5_subtitle {
  margin-top: 16px;
}
.sec5_team {
  justify-content: flex-start;
  align-items: flex-start;
}
.sec5_team__elem {
  margin-top: 44px;
  width: 100%;
  height: 90vw;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.sec5_team__elem::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, .15) 30%, rgba(0, 0, 0, 0) 70%);
}
.sec5_team__elem img {
  position: absolute;
  width: 100%;
  height: 90vw;
  object-fit: cover;
  object-position: bottom;
}
.sec5_team__info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  color: #fff;
  padding: 0 20px 30px;
}
.sec5_team__name {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 5px;
  text-shadow: 0 0 10px #000;
  white-space: nowrap;
}
.sec5_team__position {
  font-size: 16px;
  line-height: 1.2;
  text-shadow: 0 0 5px #000;
}
.sec5_btn {
  width: 100%;
  max-width: 380px;
  margin: 60px auto 0;
}

@media(min-width: 576px) {
  .sec5_team__info {
    padding: 0 40px 60px;
  }
  .sec5_team__name {
    font-size: 24px;
  }
  .sec5_team__position {
    font-size: 20px;
  }
}

@media(min-width: 768px) {
  .sec5_team__elem {
    width: calc(50% - 14px);
    height: 45vw;
  }
  .sec5_team__elem:nth-child(even) {
    left: 28px;
  }
  .sec5_team__info {
    padding: 0 20px 30px;
  }
  .sec5_team__elem img {
    height: 45vw;
  }
}

@media(min-width: 992px) {
  .sec5_team__elem {
    width: calc(100% / 3 - 14px);
    height: 30vw;
  }
  .sec5_team__elem:nth-child(even) {
    left: 0;
  }
  .sec5_team__elem:nth-child(3n-1) {
    left: 21px;
  }
  .sec5_team__elem:nth-child(3n) {
    left: 42px;
  }
  .sec5_team__elem img {
    height: 30vw;
  }
}

@media(min-width: 1400px) {
  .sec5_team__elem {
    height: 400px;
  }
  .sec5_team__elem img {
    height: 400px;
  }
  .sec5_team__name {
    font-size: 28px;
  }
  .sec5_team__position {
    font-size: 24px;
  }
}

/* main_page_section_6
--------------------------------------------- */
.home_section67_wrapper {
  position: relative;
  margin-top: 50px;
}
.main_page_section_6 {
  padding-bottom: 100px;
  z-index: 6;
}
.sec6_title {
  max-width: 800px;
}
.sec6_text {
  margin-top: 40px;
  color: var(--brown);
  max-width: 540px;
}

@media(min-width: 768px) {
  .home_section67_wrapper {
    margin-top: 0;
  }
  .main_page_section_6 {
    padding-bottom: 180px;
  }
}

@media(min-width: 1200px) {
  .sec6_title,
  .sec6_text {
    margin-left: 10vw;
  }
}

/* main_page_section_7
--------------------------------------------- */
.main_page_section_7 {
  border-radius: 0 0 60px 60px;
  padding: 0 0 120px;
  text-align: center;
  z-index: 5;
}
.main_page_section_7 .container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  padding: 0 !important;
}
.main_page_section_7 .container::before {
  content: '';
  position: absolute;
  background: url('images/sec2_slide.png') no-repeat;
  background-size: contain;
  margin: 0 auto;
  left: calc(100% - 52px);
  right: 0;
  top: 0;
  width: 52px;
  height: 52px;
  z-index: 2;
}
.sec7_content {
  border-radius: 30px 0 0 30px;
  background: rgba(200, 200, 200, 0.8);
  padding: 80px 0 80px 52px;
  margin-right: 52px;
  position: relative;
}
.sec7_content::after {
  content: '';
  position: absolute;
  right: -52px;
  top: 40px;
  width: 52px;
  height: calc(100% - 40px);
  background: rgba(200, 200, 200, 0.8);
  z-index: 1;
  border-radius: 0 20px 30px 0;
}
.sec7_pic {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  height: calc(100% - 170px);
  object-fit: cover;
  object-position: center top;
  border-radius: 60px;
}
.sec7_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
.sec7_subtitle {
  margin-top: 12px;
  line-height: 1.4;
  color: var(--dark_blue);
}
.sec7_form {
  width: 100%;
  margin: 60px auto 0;
}
.sec7_form .wpcf7-acceptance label {
  margin-top: 20px;
}
.sec7_form .form_accept + span {
  color: var(--dark_blue) !important;
}
.sec7_form .wpcf7-response-output {
  color: var(--dark_blue);
}

@media(min-width: 768px) {
  .main_page_section_7 {
    padding-bottom: 180px;
  }
  .sec7_content {
    padding-left: 80px;
    padding-right: 28px;
  }
  .sec7_pic {
    height: calc(100% - 330px);
  }
  .sec7_title {
    font-size: 32px;
    line-height: 39px;
  }
}

@media(min-width: 992px) {
  .main_page_section_7 {
    padding-bottom: 250px;
  }
  .sec7_pic {
    height: calc(100% - 345px);
  }
}

/* main_page_section_8
--------------------------------------------- */
.main_page_section_8 {
  padding-bottom: 20px;
  z-index: 5;
  background: #fff;
}
.main_page_section_8 .container {
  justify-content: space-between;
  align-items: flex-start;
}
.sec8_info {
  width: 100%;
}
.sec8_contacts {
  justify-content: space-between;
  align-items: flex-start;
}
.sec8_contact {
  margin-top: 40px;
  width: 100%;
}
.sec8_contact__title {
  font-size: 24px;
  line-height: 29px;
  color: var(--dark_blue);
}
.sec8_contact__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 30px;
}
.sec8_contact__text hr {
  border-style: dashed;
  border-color: #bbb;
}
.sec8_contact__text p {
  margin-bottom: 10px;
}
.sec8_contact__text hr + p {
  margin-top: 10px;
}
.sec8_contact__text p:nth-last-of-type(1) {
  margin-bottom: 0;
}
.sec8_contact__text a {
  position: relative;
  color: var(--dark_gray) !important;
}
.sec8_contact__text a:hover::after {
  background: transparent;
}
.sec8_contact__text a:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: -6px;
  left: 0;
  background: var(--middle_gray);
  transition: var(--transition_default);
}
.sec8_contact__text a.contacts_soc {
  display: inline-block;
}
.sec8_contact__text a.contacts_soc::after {
  display: none !important;
}
.sec8_map {
  margin-top: 60px;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
}
.sec8_map iframe {
  position: relative;
  top: -60px;
  border-radius: 25px;
}

@media(min-width: 576px) {
  .sec8_contacts {
    margin-top: 80px;
  }
  .sec8_contact {
    width: calc(50% - 10px);
  }
  .sec8_map {
    margin-top: 120px;
  }
}

@media(min-width: 768px) {
  .main_page_section_8 {
    padding-bottom: 200px;
  }
  .sec8_contact {
    width: calc(100% / 3 - 10px);
  }
}

@media(min-width: 1200px) {
  .main_page_section_8 .container {
    align-items: center;
  }
  .sec8_info {
    margin-top: 0;
    width: 60%;
  }
  .sec8_map {

    width: 40%;
  }
}

@media(min-width: 1400px) {
  .sec8_info,
  .sec8_map {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Main page v2
--------------------------------------------------------------*/
.main_page_sections_v2 {
  z-index: 1;
  position: relative;
  padding: 60px 0;
}
.main_page_sections_v2 h2,
.main_page_sections_v2 h3 {
  color: #000;
}
.main_page_sections_v2 h2 {
  line-height: 1.2;
}
.btn.no_radius {
  border-radius: 0;
}
.btn.ib_display {
  display: inline-block;
}
.alter_btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: #eee !important;
}

@media(min-width: 992px) {
  .main_page_sections_v2 {
    padding: 100px 0;
  }
  .main_page_sections_v2 h2 {
    font-size: 72px;
  }
}

/* main_page_v2_top
--------------------------------------------- */
.main_page_v2_top {
  background-image: url('/wp-content/themes/enfold-child/images/home_v2/home_v2_top_bg.jpg');
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 70px 0 120px;
}
.home_top_pre_title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  opacity: .8;
}
.main_page_v2_top h1 {
  margin-top: 30px;
  line-height: 1.4;
  color: #fff;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.3);
}
.home_top_btn {
  margin-top: 40px;
  transition: all .3s !important;
}
.home_top_pre_search {
  font-family: 'Montserrat', sans-serif;
  display: block;
  margin-top: 40px;
  font-weight: 300;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  opacity: .8;
  text-transform: uppercase;
}
.home_top_search_form {
  margin: 40px auto 0;
}
.sec1_search_form .product-search-field {
  color: #333 !important;
}
.home_top_search_form .product-search-field::placeholder {
  color: #aaa !important;
}
.home_top_search_form button {
  background: var(--dark_blue) !important;
  transition: all .3s;
}
.home_top_search_form button:hover {
  background: var(--darkest_blue) !important;
}
.home_top_search_form button::after {
  transform: scaleX(-1);
}

@media(min-width: 576px) {
  .main_page_v2_top {
    padding: 80px 0;
  }
  .home_top_pre_title {
    font-size: 20px;
  }
}

@media(min-width: 768px) {
  .main_page_v2_top {
    padding: 120px 0;
  }
}

@media(min-width: 992px) {
  .main_page_v2_top {
    background-position: center top;
  }
}

@media(min-width: 1200px) {
  .home_top_pre_title {
    font-size: 22px;
  }
  .home_top_pre_search {
    font-size: 18px;
  }
}

@media(min-width: 1280px) {
  .main_page_v2_top {
    margin-top: -30px;
  }
}


/* main_page_v2_advantages
--------------------------------------------- */
.advantages_text {
  margin-top: 30px;
  color: #333;
}
.advantages_text > * {
  margin-top: 15px;
}
.advantages_list {
  margin-top: 15px;
  justify-content: space-between;
  align-items: flex-start;
}
.advantages_list__elem {
  margin-top: 30px;
  padding: 0 10px;
  width: 100%;
}
.advantages_list__elem img {
  display: block;
  object-fit: contain;
  object-position: center;
  width: auto;
  height: 64px;
  margin: 0 auto;
  pointer-events: none;
}
.advantages_list__elem p {
  text-align: center;
  width: 100%;
  color: #333;
  margin-top: 15px;
  padding-bottom: 30px;
  position: relative;
}
.advantages_list__elem p::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -5px;
  height: 5px;
  width: 30%;
  background: var(--accent_green);
}

@media(min-width: 576px) {
  .advantages_list__elem {
    width: 50%;
  }
}

@media(min-width: 768px) {
  .advantages_list {
    justify-content: flex-start;
  }
  .advantages_list__elem {
    width: 33%;
  }
}

@media(min-width: 992px) {
  .advantages_text {
    margin-top: 45px;
  }
  .advantages_list {
    margin-top: 30px;
  }
  .advantages_list__elem {
    width: 20%;
  }
}

/* main_page_v2_categories
--------------------------------------------- */
.main_page_v2_categories {
  background: #F3F4F6;
}
.home_categories_list {
  margin-top: 20px;
  justify-content: space-between;
  align-items: stretch;
}
.home_categories_list a {
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--dark_blue);
  margin-top: 20px;
  padding: 20px 30px;
  border-radius: 20px;
  transition: all .3s !important;
}
.home_categories_list a:hover {
  top: -5px;
  background: var(--darkest_blue);
}
.home_categories_list a span {
  color: #fff;
  line-height: 1.4;
  word-break: break-word;
  padding-right: 20px;
}
.home_categories_list a img {
  width: 15px;
  display: block;
}
a.home_categories_more {
  display: inline-block;
  margin-top: 40px;
  color: var(--accent_green) !important;
  text-decoration: underline !important;
  font-weight: 300;
}
a.home_categories_more:hover {
  text-decoration: none !important;
}


@media(min-width: 576px) {
  .home_categories_list a {
    width: calc(50% - 10px);
  }
}

@media(min-width: 768px) {
  .home_categories_list {
    margin-top: 40px;
  }
}

@media(min-width: 992px) {
  .home_categories_list {
    justify-content: flex-start;
  }
  .home_categories_list a {
    width: calc(100% / 3 - 10px);
  }
  .home_categories_list a:nth-child(3n - 1) {
    left: 15px;
  }
  .home_categories_list a:nth-child(3n) {
    left: 30px;
  }
  .home_categories_list a span {
    font-size: 20px;
  }
  a.home_categories_more {
    font-size: 20px;
  }
}

@media(min-width: 1200px) {
  .home_categories_list a span {
    font-size: 28px;
  }
  a.home_categories_more {
    margin-top: 60px;
    font-size: 24px;
  }
}

/* main_page_v2_products (depends on main_page_section_4)
--------------------------------------------- */
.main_page_v2_products {}

/* main_page_v2_serts
--------------------------------------------- */
.main_page_v2_serts {
  padding-top: 0;
}
.home_serts_list {
  justify-content: center;
  align-items: center;
}
.home_serts_list img {
  display: block;
  width: 100px;
  height: auto;
  margin: 10px;
  pointer-events: none;
}

@media(min-width: 1200px) {
  .home_serts_list img {
    width: 128px;
  }
}

/* main_page_v2_contacts_with_pic
--------------------------------------------- */
.main_page_v2_contacts_with_pic {
  background: #F3F4F6;
}
.contacts_with_pic__pic {
  width: 100%;
}
.contacts_with_pic__pic img {
  display: block;
  width: 100%;
}
.contacts_with_pic__content {
  margin-top: 30px;
}
.contacts_with_pic__content ul {
  margin-top: 50px;
}
.contacts_with_pic__content ul li {
  margin-top: 10px;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.contacts_with_pic__content ul li img {
  width: 24px;
  height: auto;
  display: block;
  position: relative;
  top: 3px;
}
.contacts_with_pic__content ul li a {
  padding-left: 15px;
  color: #000 !important;
  transition: all .3s;
}
.contacts_with_pic__content ul li a:hover {
  color: var(--accent_green) !important;
}
.contacts_with_pic__content a.btn {
  margin-top: 50px;
  padding-left: 50px;
  padding-right: 50px;
  transition: all .3s !important;
}

@media(min-width: 768px) {
  .contacts_with_pic__pic {
    width: 400px;
  }
  .contacts_with_pic__content {
    width: calc(100% - 400px);
    margin-top: 0;
    padding-left: 50px;
  }
  .contacts_with_pic__content h2 {
    font-size: 32px;
  }
}

@media(min-width: 992px) {
  .contacts_with_pic__content h2 {
    font-size: 50px;
  }
}

/* main_page_v2_clients
--------------------------------------------- */
.main_page_v2_clients {
  padding-top: 0;
}
.home_clients_list {
  margin-top: 30px;
  justify-content: space-between;
  align-items: center;
}
.home_clients_list img {
  display: block;
  width: calc(50% - 10px);
  margin-top: 30px;
  height: auto;
  pointer-events: none;
}

@media(min-width: 420px) {
  .home_clients_list img {
    width: 40%;
  }
}

@media(min-width: 576px) {
  .home_clients_list {
    justify-content: flex-start;
  }
  .home_clients_list img {
    width: calc(100% / 3 - 10px);
    position: relative;
  }
  .home_clients_list img:nth-child(3n-1) {
    left: 15px;
  }
  .home_clients_list img:nth-child(3n) {
    left: 30px;
  }
}

@media(min-width: 768px) {
  .home_clients_list img {
    padding: 0 20px;
  }
}

@media(min-width: 992px) {
  .home_clients_list img {
    width: calc(25% - 10px);
  }
  .home_clients_list img:nth-child(3n-1) {
    left: 0;
  }
  .home_clients_list img:nth-child(3n) {
    left: 0;
  }
  .home_clients_list img:nth-child(4n-2) {
    left: 13.3px;
  }
  .home_clients_list img:nth-child(4n-1) {
    left: 26.6px;
  }
  .home_clients_list img:nth-child(4n) {
    left: 40px;
  }
}

/* main_page_v2_about (depends on main_page_section_3)
--------------------------------------------- */
.main_page_v2_about {
  background: var(--light_gray);
}
.main_page_v2_about .container {
  justify-content: space-between;
  align-items: flex-start;
}


/* main_page_v2_callback (depends on main_page_section_7)
--------------------------------------------- */
.main_page_v2_callback {
  text-align: center;
  position: relative;
  padding-bottom: 120px;
}
.main_page_v2_callback .container {
  width: 100%;
  max-width: 680px !important;
  margin: 0 auto;
  position: relative;
  padding: 0 !important;
  z-index: 1;
}
.main_page_v2_callback .container::before {
  content: '';
  position: absolute;
  background: url('images/sec2_slide.png') no-repeat;
  background-size: contain;
  margin: 0 auto;
  left: calc(100% - 52px);
  right: 0;
  top: 0;
  width: 52px;
  height: 52px;
  z-index: 2;
}
.main_page_v2_callback .sec7_title {
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
}
.home_callback_pic {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  pointer-events: none;
}

@media(min-width: 768px) {
  .main_page_v2_callback {
    padding-bottom: 180px;
  }
  .main_page_v2_callback .sec7_title {
    font-size: 32px;
    line-height: 39px;
  }
}

@media(min-width: 992px) {
  .main_page_v2_callback {
    padding-bottom: 240px;
  }
}

/* main_page_v2_contacts_with_map (depends on main_page_section_8)
--------------------------------------------- */
.main_page_v2_contacts_with_map .container {
  justify-content: space-between;
  align-items: flex-start;
}

@media(min-width: 1200px) {
  .main_page_v2_contacts_with_map .container {
    align-items: center;
  }
}

/*--------------------------------------------------------------
# Product page
--------------------------------------------------------------*/
.single-product h2 {
  color: #000 !important;
}
.product_after_titles {
  color: var(--brown) !important;
}
.product_after_titles span {
  color: var(--accent_green) !important;
}
.single .product_column {
  margin: 0 !important;
}
/* hide old btn
TODO: remove old btn */
.single-product .product_title + a {
  display: none !important;
}
/* first container */
.single-product .template-shop .container:nth-of-type(1) {
  padding-bottom: 60px;
}
/* products nav */
.avia-post-nav {
  color: #fff !important;
}
/* before product */
.before_product_block {
  margin-top: 60px !important;
  align-items: flex-start;
}
/* bread */
.product_bread li.home_bread img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  pointer-events: none;
  position: relative;
  top: -3px;
}
.product_bread {
  color: var(--dark_gray);
  width: 100%;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}
.product_bread ul {
  margin: 0;
  padding: 0;
}
.product_bread li {
  margin-right: 40px;
  position: relative;
}
.product_bread li:after {
  content: '';
  position: absolute;
  right: -20px;
  top: 5px;
  background: url('images/bread.svg') no-repeat center;
  background-size: 100%;
  width: 8px;
  height: 8px;
}
.product_bread li:nth-last-child(1)::after {
  display: none;
}
.product_bread a {
  color: var(--brown) !important;
  text-decoration: underline !important;
  transition: all .3s;
  text-underline-position: under;
  text-decoration-skip-ink: none;
}
.product_bread a:hover {
  color: var(--accent_green) !important;
  text-decoration: none !important;
}
/* search form */
.product_search_form {
  position: relative;
  margin: 20px 0 0 !important;
  width: 100%;
}
.product_search_form form {
  margin: 0 !important;
}
.product_search_form .product-search-field {
  background: var(--light_gray) !important;
  border-radius: 55px !important;
  padding: 11px 25px !important;
  font-size: 12px !important;
  line-height: 15px !important;
  color: var(--middle_gray) !important;
  height: 37px !important;
  border: 0 !important;
}
.product_search_form .product-search-field::placeholder {
  color: var(--middle_gray) !important;
}
.product_search_form button {
  background: var(--brown) !important;
  top: 4px !important;
  right: 4px !important;
  width: 29px !important;
  height: 29px !important;
  border-radius: 100%;
  position: relative;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.product_search_form button::after {
  content: '';
  position: absolute;
  background: url('images/search_ico.svg') no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
}
.product_search_form div.product-search-form span.product-search-field-clear:after {
  right: 30px;
}
.product_search_form div.product-search-results-content {
  margin-top: 15px;
}
.single-product-summary {
  box-shadow: 0 0 15px rgba(100, 100, 100, 0.3);
  border-radius: 25px;
  padding: 20px;
}
/* title */
h1.product_title.entry-title {
  color: #000;
}
/* categories */
.single_product_cats {
  margin-bottom: 40px;
  display: none;
}
.single_product_cats a {
  margin-right: 10px;
  display: inline-block;
  border-radius: 8px;
  font-size: 12px;
  line-height: 15px;
  padding: 4px 8px;
  background: #EBF9F0;
  color: #00AF50 !important;
  transition: var(--transition_default);
}
.single_product_cats a:nth-child(2),
.single_product_cats a:nth-child(6),
.single_product_cats a:nth-child(10) {
  background: #F9F8EB;
  color: #D29929 !important;
}
.single_product_cats a:nth-child(3),
.single_product_cats a:nth-child(7),
.single_product_cats a:nth-child(11) {
  background: #EBF6F9;
  color: #5798C9 !important;
}
.single_product_cats a:nth-child(4),
.single_product_cats a:nth-child(8),
.single_product_cats a:nth-child(12) {
  background: #EBECF9;
  color: #A234D6 !important;
}
.single_product_cats a:hover {
  background: #D6F7E1;
}
.single_product_cats a:nth-child(2):hover,
.single_product_cats a:nth-child(6):hover,
.single_product_cats a:nth-child(10):hover {
  background: #F9F8D7;
}
.single_product_cats a:nth-child(3):hover,
.single_product_cats a:nth-child(7):hover,
.single_product_cats a:nth-child(11):hover {
  background: #DCEFF4;
}
.single_product_cats a:nth-child(4):hover,
.single_product_cats a:nth-child(8):hover,
.single_product_cats a:nth-child(12):hover {
  background: #EBDDF9;
}
.single_product_cats a:active {
  background: #C1EFD2;
}
.single_product_cats a:nth-child(2):active,
.single_product_cats a:nth-child(6):active,
.single_product_cats a:nth-child(10):active {
  background: #F9F8B2;
}
.single_product_cats a:nth-child(3):active,
.single_product_cats a:nth-child(7):active,
.single_product_cats a:nth-child(11):active {
  background: #B5E6F2;
}
.single_product_cats a:nth-child(4):active,
.single_product_cats a:nth-child(8):active,
.single_product_cats a:nth-child(12):active {
  background: #DFC8F7;
}
/* top params */
.single_product_top_params {
  justify-content: flex-start;
  align-items: center;
}
.single_product_top_params > p {
  width: 100%;
  margin: 0;
  color: var(--darkest_blue);
}
.single_product_top_params > div {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-right: 25px;
  color: var(--darkest_blue);
  font-size: 18px;
  line-height: 22px;
  margin-top: 10px;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 2px solid var(--light_gray) !important;
}
.single_product_top_params > div:nth-last-of-type(1) {
  border-bottom: none !important;
}
.single_product_top_params > div > * {
  width: 100%;
  text-align: left;
}
.single_product_top_params > div strong {
  font-weight: 500;
  color: var(--dark_gray);
  margin-bottom: 5px;
}
/* top descr */
.woocommerce-product-details__short-description {
  margin-top: 30px;
  color: var(--dark_gray);
}
.woocommerce-product-details__short-description strong {
  color: var(--dark_blue);
}
.woocommerce-product-details__short-description p:nth-last-of-type(1) {
  margin-bottom: 0;
}
/* pics */
.attachment-shop_single,
.single-product .woocommerce-product-gallery__image--placeholder img {
  padding: 0 !important;
  border-radius: 25px;
  display: block;
}
.single-product .woocommerce-product-gallery__wrapper {
  margin-bottom: 0 !important;
}
.single-product-main-image a {
  padding: 0 !important;
}
.responsive .single-product-main-image {
  padding-bottom: 0 !important;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(100, 100, 100, 0.3);
  border-radius: 25px;
}
#top .single-product-main-image .thumbnails {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
#top .single-product-main-image .thumbnails a {
  padding: 0 !important;
  border: 1px solid #F3F4F6 !important;
  border-radius: 25px;
  overflow: hidden;
  margin-right: 17px;
  width: calc(100% / 3 - 20px);
  display: none !important;
}
#top .single-product-main-image .thumbnails a:nth-last-child(1) {
  margin-right: 0;
}
/* hide old search under pics block
TODO: remove this search in functions
*/
.single-product .widget_woocommerce_product_search_widget {
  display: none !important;
}
.single_product_info_list {
  margin-top: 30px;
}
.product_card_price_text {
  width: 100%;
  margin: 0;
  color: var(--darkest_blue);
  font-style: italic;
}
.single_product_info_list ul {
  margin-top: 40px;
}
.single_product_info_list li {
  margin-top: 15px;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
}
.single_product_info_list li img {
  width: 40px;
  height: auto;
  display: block;
  pointer-events: none;
  position: relative;
  top: -3px;
}
.single_product_info_list li span {
  display: block;
  padding-left: 20px;
  line-height: 1.2;
}
.single_product_info_list li span b {
  color: var(--dark_blue);
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.btn_modal_offer__after_price {
  width: 100%;
  max-width: 400px;
  text-align: center;
  margin-top: 20px !important;
  height: auto;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.product_calc_btn_after {
  font-size: 14px;
  color: #888;
}
/* product tabs */
.woocommerce-tabs {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  background: var(--light_gray);
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}
.woocommerce-tabs::before {
  content: '';
  position: absolute;
  top: 0;
  height: 100px;
  width: 100%;
  border-radius: 0 0 60px 60px;
  background: #fff;
  display: none !important;
}
h2.product_tabs_title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 24px !important;
  text-align: center;
  color: #000 !important;
  margin-bottom: 30px;
}

.wc-tabs,
.woocommerce-Tabs-panel {
  margin: 0 32px !important;
  width: 85%;
  max-width: 1120px;
}
.wc-tabs {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.wc-tabs li {
  border-radius: 16px !important;
  background: #fff !important;
  border: 0 !important;
  margin: 5px !important;
  font-size: 20px;
  line-height: 30px;
  width: 100%;
}
.wc-tabs li a {
  border: 0 !important;
  color: var(--middle_brown) !important;
  padding: 15px 30px !important;
  width: 100%;
  text-align: center;
}
.wc-tabs li.active a {
  color: var(--accent_green) !important;
  font-weight: 500 !important;
}
.woocommerce-Tabs-panel {
  margin-top: 30px !important;
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}
#top div.product .woocommerce-tabs {
  padding-top: 30px;
  color: var(--dark_gray);
}
#top div.product .woocommerce-tabs h2,
#top div.product .woocommerce-tabs h3 {
  color: var(--dark_gray);
}
.pricing-table li {
  text-align: left !important;
  color: var(--dark_gray) !important;
  background-color: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--light_gray) !important;
}
.main_color .pricing-table li.avia-heading-row, .main_color .pricing-table li.avia-heading-row .pricing-extra {
  color: var(--dark_blue) !important;
}
.pricing-table li:nth-last-child(1) {
  border-bottom: none !important;
}
/* product tab links */
.custom_tab_link {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light_gray) !important;
}
.custom_tab_link:nth-last-of-type(1) {
  border-bottom: none !important;
}
.custom_tab_link a {
  font-weight: 400;
  text-decoration: underline !important;
  transition: all .3s;
  text-underline-position: under;
  text-decoration-skip-ink: none;
  white-space: nowrap;
  background-image: url('/wp-content/themes/enfold-child/images/download.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 20px;
  padding-right: 30px;
}
.custom_tab_link a:hover {
  color: var(--accent_green) !important;
  text-decoration: none !important;
}
/* start price */
.single_product_start_price {
  margin-top: 60px;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-end;
}
.single_product_start_price p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--dark_blue);
}
p.product_start_price {
  font-family: 'Montserrat';
  margin-left: 8px;
  color: var(--accent_green);
  font-weight: 600;
  font-size: 32px;
  line-height: 39px;
  position: relative;
}
.product_price_measure {
  font-family: 'Inter';
  position: absolute;
  left: 72%;
  top: -30px;
  background: #5798C9;
  border-radius: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  padding: 4px 8px;
  color: #fff;
  white-space: nowrap;
  z-index: 1;
}
.product_price_measure::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 15px;
  width: 8px;
  height: 8px;
  background: #5798C9;
  z-index: 0;
  transform: rotate(45deg);
}
/* presentation btn */
.btn_modal_offer__after_price {
  margin-top: 40px;
  display: inline-block;
  font-size: 12px;
  padding-left: 30px;
  padding-right: 30px;
}
/* calculation btn */
.btn_modal_calc {
  margin-top: 45px;
  font-size: 12px;
  padding-left: 30px;
  padding-right: 30px;
}
/* advantages */
.product_advantages_container {
  margin-top: 100px !important;
}
.product_advantages {
  margin-top: 44px;
  justify-content: space-between;
  align-items: flex-start;
}
.product_advantage {
  width: 100%;
  height: 465px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
  margin-top: 28px;
}
.product_advantage img {
  width: 100%;
  height: 465px;
  object-fit: cover;
  position: relative;
  z-index: 0;
  transition: var(--transition_default);
}
.product_advantage:hover img {
  filter: saturate(150%);
}
.product_advantage__info {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: calc(100% - 48px);
  left: 24px;
  bottom: 24px;
  background: rgba(128, 132, 97, 0.9);
  border-radius: 12px;
  padding: 24px;
  min-height: 180px;
  transition: var(--transition_default);
}
.product_advantage:hover .product_advantage__info {
  bottom: 48px;
}
.product_advantage__title {
  font-size: 24px;
  line-height: 29px;
  color: #fff;
  margin: 0;
}
.product_advantage__text {
  font-size: 16px;
  line-height: 30px;
  color: var(--light_brown);
  margin: 20px 0 0;
}
/* related */
.single-product #av_section_1 {
  border: 0 !important;
}
.related_products_slider {
  margin: 60px 0 120px;
}
.related_products_slider .sec4_slide__descr {
  color: var(--dark_gray);
}
/* upsells */
.up-sells {
  display: none !important;
}
/* after product form */
/*.product_after_form_block {
  position: relative;
  padding-top: 160px;
}
.product_after_form_block::before {
  content: '';
  position: absolute;
  top: 0;
  height: 60px;
  width: 100%;
  background: #fff;
  border-radius: 0 0 60px 60px;
  z-index: 3;
}
.product_after_form_block .main_page_section_7 {
  padding-left: 32px;
  padding-right: 32px;
}
.product_after_form_pic {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 1;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}*/
.single-product .main_page_v2_callback {
  padding-left: 32px;
  padding-right: 32px;
}

@media(min-width: 360px) {
  /* presentation btn */
  .btn_modal_offer__after_price {
    font-size: 14px;
  }
}

@media(min-width: 576px) {
  .single_product_top_params > div strong {
    margin-bottom: 0;
  }
  .single_product_top_params > div > * {
    width: 50%;
  }
  /* title */
  h1.product_title.entry-title {
    font-size: 24px;
  }
  /* product tabs */
  h2.product_tabs_title {
    font-size: 24px !important;
  }
  .wc-tabs li {
    width: calc(50% - 10px);
  }
  .woocommerce-Tabs-panel {
    padding: 30px;
  }
  /* presentation btn */
  .btn_modal_offer__after_price {
    font-size: 16px;
    padding-left: 50px;
    padding-right: 50px;
  }
  /* calculation btn */
  .btn_modal_calc {
    font-size: 16px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media(min-width: 768px) {
  /* before product */
  .before_product_block {
    margin-top: 60px !important;
    align-items: flex-end;
  }
  /* bread */
  .product_bread {
    /*width: 33%;
    margin-right: 50px;*/
  }
  .product_bread li {
    margin-top: 3px;
  }
  /* search form */
  .product_search_form {
    margin-top: 0;
    width: calc(67% - 50px);
    max-width: 540px;
  }
  #top .single-product-main-image {
    padding-bottom: 0;
  }
  .single-product .sidebar_sidebar_right {
    display: none !important;
  }
  .single-product-main-image {
    width: 100%;
  }
  /* product tabs */
  .wc-tabs li {
    width: calc(33% - 10px);
  }
  .woocommerce-Tabs-panel {
    padding: 40px 66px;
  }
  /* advantages */
  .product_advantage {
    width: calc(50% - 14px);
  }
}

@media(min-width: 992px) {
  /* bread */
  .product_bread {
    font-size: 16px;
    line-height: 19px;
  }
  .product_bread li.home_bread img {
    width: 26px;
    height: 26px;
    top: -5px;
  }
  .product_bread li {
    margin-right: 27px;
  }
  .product_bread li:after {
    right: -17px;
  }
  .single-product-main-image {
    width: 45%;
    margin-right: 20px !important;
  }
  /* title */
  h1.product_title.entry-title {
    font-size: 32px;
  }
  a.btn_modal_offer__after_price {
    font-size: 18px;
  }
  /* product tabs */
  h2.product_tabs_title {
    font-size: 32px !important;
  }
  .woocommerce-Tabs-panel {
    padding: 60px 80px;
  }
  /* product tab links */
  .custom_tab_link {
    -webkit-flex-flow: row nowrap;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .custom_tab_link a {
    padding-left: 15px;
  }
  /* presentation btn */
  .btn_modal_offer__after_price {
    font-size: 20px;
    padding-left: 90px;
    padding-right: 90px;
  }
  /* calculation btn */
  .btn_modal_calc {
    font-size: 20px;
    padding-left: 90px;
    padding-right: 90px;
  }
  /* advantages */
  .product_advantages_container {
    margin-top: 200px !important;
  }
  /* related */
  .single-product #av_section_1 {
    position: relative;
  }
  /* after product form */
  .product_after_form_block {
    padding-top: 260px;
    position: relative;
  }
}

@media(min-width: 1200px) {
  /* product tabs */
  .wc-tabs {
    max-width: 900px;
  }
  .wc-tabs li {
    width: calc(25% - 20px);
    margin: 5px 10px !important;
  }
  /* advantages */
  .product_advantages {
    justify-content: flex-start;
  }
  .product_advantage {
    width: calc(100% / 3 - 14px);
    position: relative;
  }
  .product_advantage:nth-child(3n-1) {
    left: 21px;
  }
  .product_advantage:nth-child(3n) {
    left: 42px;
  }
  .product_advantage__info {
    min-height: 220px;
  }
}

@media(min-width: 1280px) {
  /* before product */
  .before_product_block {
    margin-top: 0 !important;
  }
  .single-product-summary {
    padding: 30px;
  }
  .single-product-main-image {
    width: 33%;
  }
  /* title */
  h1.product_title.entry-title {
    font-size: 32px;
    width: 100%;
    margin-bottom: 20px;
  }
  .single-product-summary .entry-summary {
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .single_product_top_params {
    width: 50%;
  }
  .single_product_info_list {
    width: 50%;
    margin-top: 0;
  }
}

@media(min-width: 1400px) {
  /* advantages */
  .product_advantage__info {
    min-height: 190px;
  }
}

/*--------------------------------------------------------------
# Product catalog
--------------------------------------------------------------*/
/* page top */
.archive main.template-shop {
  margin-bottom: 140px;
}
.catalog_top_block {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.catalog_top_block .pagination {
  display: none !important;
}
.catalog_top_block .woocommerce-notices-wrapper {
  width: 100%;
  order: 1;
}
/* woo_catalog_top_title */
.woo_catalog_top_title {
  width: 100%;
  order: 2;
}
.woo_catalog_top_title h1 {
  color: var(--brown);
  margin: 0;
}
/* product-sorting */
.catalog_top_block .product-sorting {
  margin-top: 30px;
  width: 100%;
  order: 4;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.catalog_top_block .product-sorting ul {
  margin: 0 5px 0 0;
}
.catalog_top_block .product-sorting ul:nth-last-of-type(1),
.catalog_top_block .product-sorting li {
  margin: 0;
}
.catalog_top_block .product-sorting li span.currently-selected {
  background: var(--light_gray);
  border-radius: 12px;
  padding: 0 10px;
  color: var(--dark_gray);
  font-size: 12px;
}
/* search form */
.catalog_top_block .product_search_form {
  width: 100% !important;
  max-width: 100% !important;
  margin: 30px 0 0 !important;
  order: 3;
  position: relative;
}
.catalog_top_block .widget_product_search {
  display: none !important;
}
.product_search_form .product-search-field {
  padding: 11px 15px !important;
}
.catalog_top_block .product_search_form form,
.catalog_top_block .product_search_form .product-search-results-content {
  width: 100% !important;
}
.catalog_top_block .product_search_form .product-search-results-content {
  top: 0 !important;
}
/* woo_catalog_top_cats */
.woo_catalog_top_cats {
  width: 100%;
  order: 5;
}
.woo_catalog_top_cats {
  justify-content: flex-start;
  align-items: flex-start;
}
.catalog_cat {
  background: var(--light_gray);
  border-radius: 12px;
  padding: 6px 10px;
  color: var(--dark_gray) !important;
  font-size: 12px;
  line-height: 16px;
  margin: 0 5px 5px 0;
  cursor: pointer;
  transition: var(--transition_default);
}
.catalog_cat:hover {
  background: var(--light_brown);
  color: var(--dark_blue) !important;
}
.catalog_cat.active {
  background: var(--accent_green);
  color: #fff !important;
}
/* page loop */
.catalog_product_loop ul {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
/* page loop grid view */
li.catalog_product {
  width: 100% !important;
  margin: 28px 0 0 !important;
  padding: 0 !important;
  border-radius: 25px;
  border: 1px solid var(--light_brown);
  overflow: hidden;
}
li.catalog_product img {
  margin: 0 !important;
}
.catalog_product_inner > a > img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover;
  object-position: center;
}
.catalog_product__info {
  padding: 24px 12px;
}
.catalog_product__info .btn {
  margin-top: 30px;
  width: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  padding-left: 28px;
  padding-right: 28px;
}
.catalog_product__title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark_blue);
  margin: 0;
  word-break: break-all;
}
.catalog_product__descr {
  font-size: 16px;
  line-height: 1.4;
  margin: 20px 0 0;
  height: 65px;
  overflow: hidden;
}
.catalog_product__descr h2,
.catalog_product__descr h3,
.catalog_product__descr h4 {
  font-size: 16px !important;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
/* page loop list view */
li.catalog_product__list {
  width: 100% !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  border-radius: 25px;
  border: 1px solid var(--light_brown);
  overflow: hidden;
  transition: all .3s;
  position: relative;
}
li.catalog_product__list:hover {
  border: 1px solid var(--accent_green);
  transition: all .3s;
  background: var(--light_gray);
}
li.catalog_product__list > a {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
}
.catalog_product__list_info {
  padding: 16px 25px;
  justify-content: flex-start;
  align-items: flex-start;
}
.catalog_product__list_text {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.catalog_product__list_title {
  font-family: 'Montserrat';
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  color: var(--dark_blue);
  margin: 0;
  word-break: break-all;
  width: 100%;
}
.catalog_product__list_descr {
  margin-top: 10px;
  width: 100%;
}
.catalog_product__list_descr * {
  line-height: 1.4;
}
.catalog_product__list_descr > div {
  margin: 5px 30px 5px 0;
}
.catalog_product__list_descr div strong {
  padding-right: 5px;
}
.catalog_product__list_info .btn {
  margin-top: 10px;
  width: auto;
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
  padding-left: 28px;
  padding-right: 28px;
  left: 0;
  transition: left .3s;
  white-space: nowrap;
}
.catalog_product__list_info .btn img {
  margin: 0 !important;
}
/* page bottom */
.archive .pagination {
  padding-top: 45px;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.archive .pagination-meta {
  display: none;
}
.archive .pagination a,
.archive .pagination span.current {
  float: none !important;
  color: var(--dark_gray) !important;
  height: auto !important;
  width: auto !important;
  line-height: 1 !important;
  border-radius: 0 !important;
  margin: 0 10px !important;
  box-shadow: none !important;
  background: none !important;
  font-size: 16px;
}
.archive .pagination a:hover {
  color: var(--accent_green) !important;
}
.archive .pagination span.current {
  font-weight: 500 !important;
  color: var(--dark_blue) !important;
}


@media(min-width: 360px) {
  /* page bottom */
  .archive .pagination a,
  .archive .pagination span.current {
    font-size: 20px;
  }
}

@media(min-width: 375px) {
  /* search form */
  .product_search_form .product-search-field {
    padding: 11px 25px !important;
  }
}

@media(min-width: 576px) {
  /* page loop grid view */
  li.catalog_product {
    width: calc(50% - 10px) !important;
    min-height: 560px;
  }
  .catalog_product__title {
    min-height: 90px;
  }
  .catalog_product__info .btn {
    position: absolute;
    margin-top: 0;
    bottom: 24px;
  }
  .catalog_product__descr {
    margin-top: 5px;
  }
  /* page loop list view */
  .catalog_product__list_info {
    align-items: center;
    justify-content: space-between;
  }
  .catalog_product__list_text {
    width: calc(100% - 200px);
    padding-right: 20px;
  }
  .catalog_product__list_info .btn {
    margin-top: 0;
    max-width: 200px;
  }
  li.catalog_product__list:hover .btn {
    left: -10px;
  }
}

@media(min-width: 768px) {
  /* search form */
  .catalog_top_block .product_search_form {
    margin-top: 0 !important;
    width: 60% !important;
    max-width: 60% !important;
  }
  /* product-sorting */
  .catalog_top_block .product-sorting {
    width: 40%;
    justify-content: flex-end;
  }
  .catalog_top_block .product-sorting ul {
    margin-left: 10px !important;
    margin-right: 0;
  }
  .catalog_top_block .product-sorting li span.currently-selected {
    padding: 6px 16px;
    font-size: 14px;
  }
  /* woo_catalog_top_cats */
  .catalog_cat {
    padding: 12px 16px;
    font-size: 14px;
    line-height: 16px;
    margin: 0 10px 10px 0;
  }
  /* page loop grid view */
  li.catalog_product {
    min-height: 580px;
  }
}

@media(min-width: 840px) {
  /* page loop grid view */
  li.catalog_product {
    width: calc(50% - 14px) !important;
  }
  .catalog_product__title {
    font-size: 20px;
  }
}

@media(min-width: 992px) {
  /* page loop grid view */
  li.catalog_product {
    min-height: 620px;
  }
  .catalog_product__title {
    font-size: 24px;
  }
  .catalog_product__descr {
    margin-top: 20px;
    font-size: 20px;
    height: 82px;
  }
  .catalog_product__descr h2,
  .catalog_product__descr h3,
  .catalog_product__descr h4 {
    font-size: 20px !important;
  }
  /* page loop list view */
  .catalog_product__list_text {
    align-items: center;
  }
  .catalog_product__list_title {
    margin: 0;
    width: 50%;
    padding-right: 30px;
  }
  .catalog_product__list_descr {
    align-items: center;
    margin: 0;
    width: 50%;
  }
  .catalog_product__list_descr > div {
    margin: 0;
  }
  .catalog_product__list_descr .biolla-cas {
    width: 45%;
    padding-right: 30px;
  }
  .catalog_product__list_descr .biolla-formula {
    width: 55%;
  }
}

@media(min-width: 1200px) {
  /* page loop grid view */
  li.catalog_product {
    width: calc(100% / 3 - 14px) !important;
  }
  .catalog_product__info {
    padding: 24px 32px;
  }
  .catalog_product__info .btn {
    bottom: 40px;
  }
  /* page loop list view */
  .catalog_product__list_text {
    justify-content: space-between;
  }
  .catalog_product__list_title {
    word-break: normal;
  }
}

@media(min-width: 1480px) {
  /* page loop grid view */
  li.catalog_product {
    width: calc(25% - 14px) !important;
  }
}

@media(min-width: 1800px) {
  /* product-sorting */
  .catalog_top_block .product-sorting ul {
    margin-left: 15px !important;
  }
  /* woo_catalog_top_cats */
  .catalog_cat {
    font-size: 18px;
    line-height: 22px;
    margin: 0 15px 15px 0;
  }
}

/* the end */
