.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}

.center {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}
.container,
.container.with-xlarge{
    width: 100%;
    max-width: 1200px;
}

/* top usps */
.site-corporate{
  background: #ececec;
  height: 50px;
  border: none;
  padding: 0;
}

.usp-item{
  font-family: "Rubik", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 11px;
  color: #242424;
  letter-spacing: .6px;
  text-transform: uppercase;
  height: 50px;
  padding: 0 15px;
}

.usp-item img{
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 10px 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.usp-item span{
  line-height: 1.2;
}

#usps-list{
  display: none;
}

@media(min-width: 1294px){
  #usps-slider{
    display: none!important;
  }

  #usps-list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  #usps-list .usp-item{
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.site-header{
  position: relative;
  padding: 15px 0;
}

.site-header .container{
  position: relative;
}

.header-right .nav {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-right .nav > li {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-right .nav > li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #52c7a5;
  margin: 0 4px;
}

.header-right .nav > li{
    padding: 0;
}

.header-right .nav > li > a {
  font-family: "Rubik", sans-serif;
  color: #242424;
  text-transform: none;
  display: block;
  font-weight: 400;
  font-size: 16px;
  padding: 26px 10px;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-right .nav > li > a:hover,
.header-right .nav > li:hover > a,
.header-right .nav > li.current-menu-item > a,
.header-right .nav > li.current-menu-parent > a,
.header-right .nav > li.current-menu-ancestor > a {
  color: #000;
  text-decoration: none;
}

.header-right .nav > li > ul {
  visibility: hidden;
  opacity: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.92);
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 28px 36px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  min-width: 200px;
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  -o-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  border-bottom: 0;
  margin: 0;
  column-count: 4;
}

.header-right .nav > li:hover > ul {
  opacity: 1;
  visibility: visible;
}

.header-right .nav > li > ul > li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  padding: 0 20px 22px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.header-right .nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-right .nav ul li a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header-right .nav ul li a:hover {
  color: #fff;
}

.header-right .nav > li > ul > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
  padding: 0 0 0 14px;
}

.header-right .nav > li > ul > li > a::before {
  content: "\f054";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 12px;
  color: #fff;
}

.header-right .nav > li > ul > li > ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 14px;
}

.header-right .nav > li > ul > li > ul li {
  margin: 0;
  padding: 0;
}

.header-right .nav > li > ul > li > ul li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
  padding: 4px 0;
}

.header-right .nav > li > ul > li > ul li a:hover {
  color: #fff;
}

.header-right .nav > li > ul > li.current-menu-item > a,
.header-right .nav > li > ul > li.current-menu-parent > a,
.header-right .nav > li > ul > li.current-menu-ancestor > a,
.header-right .nav > li > ul > li > ul li.current-menu-item > a,
.header-right .nav > li > ul > li > ul li.current-menu-parent > a,
.header-right .nav > li > ul > li > ul li.current-menu-ancestor > a {
  color: #fff;
}

/* logo */
.logo img{
  max-width: 130px;
}
/* cart */
.m-quick-cart{
  position: relative;
}
.cart-products-count-btn{
    display: inline-block;
    text-align: center;
    line-height: 15px;
    border-radius: 30px;
    min-width: 16px;
    height: 16px;
    font-size: 0.8rem;
    position: absolute;
    top: -4px;
    right: 2px;
    padding: 1px 5px;
    background: #00b679;
    color: #fff;
} 
/* search */
.top-search-form {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    z-index: 1;
    padding: 0 10px;
}

.top-search-form label{
  width: 100%;
}

.top-search-form .form-input.input-group-main {
    width: 100%;
    height: 36px;
    padding: 0 33px 0 11px;
    border: 1px solid #eae9e7;
    border-radius: 5px;
    background: #fff;
    font-size: 13px;
    font-style: italic;
    color: #000;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.top-search-form .form-input.input-group-main::-webkit-input-placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.top-search-form .form-input.input-group-main::-moz-placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.top-search-form .form-input.input-group-main:-ms-input-placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.top-search-form .form-input.input-group-main::-ms-input-placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.top-search-form .form-input.input-group-main::placeholder {
    color: #b9b9b9;
    opacity: 1;
}

.top-search-form .input-group-button {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
    width: 22px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.top-search-form .input-group-button .button {
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    min-width: auto;
}

.top-search-form .input-group-button .button svg {
    width: 20px;
    height: 20px;
    display: block;
}

.header-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-end;
    gap: 12px;
}
.header-icons img+span,
.header-icons svg+span {
    margin-top: auto;
    line-height: 1;
    margin-bottom: 10px;
    font-size: 12px;
}

.header-search-toggle {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    cursor: pointer;
}

.header-search-toggle svg {
    height: 28px;
    display: block;
}

.headerBtn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-left: 5px;
    flex-direction: column;
    text-transform: uppercase;
}

.headerBtn img{
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
}

.headerBtn svg{
  width: 38px;
}

.mm-navbar__title{
	color: #000000!important;
	font-weight: 700!important;
  background: #ececec!important;
  border-bottom: 1px solid rgba(0,0,0,.1) !important;
  padding-bottom: 9px;
}

.mm-navbar{
  background: #ececec!important;
}

.mm-slideout { 
    z-index: 0; 
}
.mm-menu_offcanvas {
    z-index: 9;
}

/* slider */
.site-slider .hero-slider-theme { 
   margin: 0; 
   line-height: 0;
} 
.site-slider .hero-slider-theme img { 
   width: 100%!important; 
   min-height: 250px;
   -o-object-fit: cover;
      object-fit: cover;
} 
.site-slider .hero-slider-theme .placeholder-wrapper {
   max-width: 100% !important;
   min-height: 250px;
}

.w-slider-caption.item-caption{
  
    background: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    left: 0;
    right: 0;
    bottom: auto;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    text-align: left;
}

.w-slider-caption-wrapper{
  max-width: 275px;
  padding-left: 10px;
}
.w-slider-caption.item-caption .h2 {
  margin-bottom: 10px;
}
.site-slider .w-slider-caption.item-caption .h2 {
  font-family: "Rubik", sans-serif;
    font-size: 19px;
    line-height: 19px;
    font-weight: 900;
    margin-bottom: 10px;
}

.w-slider-caption.item-caption .h4{
  font-family: "Rubik", sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-style: italic;
    margin-bottom: 20px;
}

.w-slider-caption .item-link,
.article__button {
  font-family: "Rubik", sans-serif;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 40px;
    padding: 5px 40px;
    font-size: 13px;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.06em;
    color: #fff;
    background: #00b679;
    border: 0;
    border-radius: 4px;
    -webkit-transition: background 0.2s ease, opacity 0.2s ease;
    -o-transition: background 0.2s ease, opacity 0.2s ease;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.w-slider-caption .item-link:hover,
.article__button:hover {
  opacity: .9;
}

/* Service boxes */
.serviceBoxes {
    background: #000;
    padding: 30px 0;
}

.serviceBoxes__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  background: #000;
  padding: 0 15px;
  text-align: center;
}

.serviceBoxes__col{
  margin-bottom: 40px;
}

.serviceBoxes__col:last-child{
  margin-bottom: 0;
}

.serviceBoxes__iconWrap {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 84px;
            flex: 0 0 84px;
    width: 84px;
}

.serviceBoxes__icon {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.serviceBoxes__icon img {
    display: block;
    margin: 0;
}

.serviceBoxes__title {
    margin: 0 0 5px;
    color: #00b679;
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.serviceBoxes__text {
    margin: 0 0 10px;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.serviceBoxes__buttonWrap {
    line-height: 1;
}

.serviceBoxes__button {
    display: inline-block;
    padding: 7px 12px;
    background: #00b679;
    color: #fff!important;
    font-size: 11px;
    line-height: 1.2em;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
}

.serviceBoxes__button:hover {
  opacity: .9;
}

/* frontpageProducts */
.frontpageProducts h2{
  font-size: 31px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.frontpageProducts .frontpage-content{
  padding-top: 50px;
}

/* badges */
.m-product .splash, .m-productlist .splash{
  right: 1em;
}
.productContent .m-productlist-image-hover {
  opacity: 0;
  transition: opacity .2s ease-in;
}
.productContent .image:hover .m-productlist-image-hover {
  opacity: 1;
}
.saleBadge {
    width: 64px;
    height: 64px;
    background: url("/upload_dir/pics/Star-yellow-new.png") center center no-repeat;
    background-size: contain;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #000;
    text-align: center;
    line-height: 1;
    padding: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-left: auto;
}

.saleTitle {
    display: block;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

.salePercent {
    display: block;
    font-size: 18px;
    line-height: 17px;
    font-weight: 800;
}

.productItem .type-col{
  border: none;
}

.h5.m-productlist-title{
  font-size: 15px;
  font-weight: 600;
}

.m-productlist-brand{
  font-size: 14px;
  color: #00b679;
}

.m-productlist-itemNumber{
  font-size: 11px;
  letter-spacing: .8px;
  color: #8e8e8e;
}

.productItem .type-col .product-transaction{
  border-top: none;
  background: #fff;
}

.content.product-transaction.m-productlist-transactions{
  padding-top: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.variantContainer .select2-choice {
  height: 33px;
  line-height: 33px;
  border: 0;
  border-radius: 4px;
  background: #ededed!important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container .select2-choice .select2-arrow b{
  background-position: 0 4px;
}
.m-productlist-item.has-variants .prices{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.m-productlist-discount{
  margin-bottom: 0;
  margin-left: 0;
}
.m-productlist-price-before-discount{
  font-size: 12px;
  color: #8a8888;
}

.m-productlist-price.h5{
  font-size: 18px;
  font-weight: 700;
  color: #121212;
}

.m-productlist-item.has-variants .prices .m-productlist-price.h5{
  margin-top: auto;
}

.productActions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 10px;
}

.m-productlist-amount {
    margin: 0 10px 0 0;
}

.m-productlist-amount .form-input{
    width: 33px;
    min-width: 33px;
    height: 33px;
    padding: 0;
    border: 1px solid #d7d7d7;
    background: #fff;
    color: #242424;
    font-size: 14px;
    line-height: 33px;
    text-align: center;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 4px;
}

.m-productlist-tractions-button{
  width: 100%;
}

.m-productlist-tractions-button .button-primary{
  border: none;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
   border-radius: 4px;
   height: 33px;
}

/* single product */
.m-breadcrumb,
.m-print {
    margin: 1.5em auto;
}

.m-product-warnings,
.m-product-information .panel-success.m-product-instock,
.m-product-additional-info .nav-tabs li.active>a,
.m-product-additional-info .t-panel-clean>.pane,
.m-product-variants .panel-warning,
.m-product-variants .panel-success,
.w-notification .panel-success,
.panel-warning,
.panel-danger.m-product-stock.m-product-soldout {
    background: none;
}
.m-product-additional-info-content p,
.m-product-additional-info-content td,
.m-description-short-wrap,
.category-description {
  font-size: 15px;
  line-height: 18px;
}

.w-notification .panel-success{
  border-color: #00b679;
  color: #00b679;
}

.panel-success a{
  color: #00b679;
}

.panel-warning{
  border-color: #000;
    color: #000;
}

.variantInfoPanel .panel{
  border: none;
  color: #000;
}

.selected-priceLine,
.variantInfoPanel .panel-body{
  padding: 0;
  color: #000;
}

.variantInfoPanel .price{
  font-size: 23px;
  color: #000;
}

.m-product-transaction-amount{
  max-width: 120px;
  margin-right: 10px;
}

.m-product-transaction-amount .input-group,
.m-product-transaction-amount input{
  height: 100%;
}

.m-product-transaction-amount input{
  border-radius: 4px;
}

.input-group-addon.m-product-transaction-unittitle{
  border-radius:0 4px 4px 0 ;
}

.m-product-transaction-button{
  width: 100%;
  max-width: 209px;
}

.m-product-transaction-button .button-primary{
  display: inline-block;
  padding: 7px 12px;
  background: #00b679;
  color: #fff!important;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: none;
  height: 100%;
  width: 100%;
}

.nav-tabs li a{
  font-size: 16px;
  font-weight: 700;
}
.m-cart-row {
    padding: 1em 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 1em;
}
.modules.m-cart-content .panel-heading{
  background: #ececec;
}
.stepColumn > div {
    background: #fff;
}
.stepHeader .title{
  background: #ececec;
  padding: 10px;
}
/* faq */
.faqSection {
    padding: 50px 0;
}

.faqSection__heading {
    margin: 0 0 30px;
    color: #242424;
    font-size: 31px;
    line-height: 1;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.faqSection__list {
    display: block;
}

.faqSection__item {
    margin-bottom: 10px;
}

.faqSection__item:last-child {
    margin-bottom: 0;
}

.faqSection__trigger {
    width: 100%;
    padding: 16px 20px;
    border: 0;
    border-radius: 10px;
    background: #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 20px;
    text-align: left;
    cursor: pointer;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.faqSection__question {
    color: #121212;
    font-size: 17px;
    line-height: 1;
    font-weight: 400;
}

.faqSection__icon {
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14px;
            flex: 0 0 14px;
    width: 14px;
    height: 14px;
}

.faqSection__icon:before,
.faqSection__icon:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #333;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    -o-transition: transform .2s ease, opacity .2s ease;
    transition: transform .2s ease, opacity .2s ease;
    transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
}

.faqSection__icon:before {
    width: 14px;
    height: 2px;
}

.faqSection__icon:after {
    width: 2px;
    height: 14px;
}

.faqSection__item.is-active .faqSection__icon:after {
    opacity: 0;
}

.faqSection__content {
    display: none;
    padding: 0 20px;
}

.faqSection__contentInner {
    padding: 18px 0 8px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.faqSection__contentInner p:first-child {
    margin-top: 0;
}

.faqSection__contentInner p:last-child {
    margin-bottom: 0;
}

/* info section */
.infoSection {
    background: #000;
    padding: 40px 0;
}

.infoSection__row {
    margin: 0;
}

.infoSection .col-s-4,
.infoSection .col-m-6,
.infoSection .col-l-6,
.infoSection .col-xl-12 {
    padding: 0;
}

.infoSection__col{
  margin-bottom: 40px;
}

.infoSection__colWrapper {
    position: relative;
    min-height: 100%;
    padding: 0 10px;
}

.infoSection__title {
    margin: 0 0 30px;
    color: #00b679;
    font-size: 30px;
    line-height: 27px;
    font-weight: 800;
    text-transform: uppercase;
}

.infoSection__text {
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

.infoSection__text p {
    margin: 0 0 18px;
}

.infoSection__text p:last-child {
    margin-bottom: 0;
}

.infoSection__buttonWrap {
    margin-top: 30px;
}

.btnMain {
    display: inline-block;
    padding: 10px 18px;
    background: #00b679;
    color: #fff!important;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    -webkit-transition: opacity .2s ease, -webkit-transform .2s ease;
    transition: opacity .2s ease, -webkit-transform .2s ease;
    -o-transition: transform .2s ease, opacity .2s ease;
    transition: transform .2s ease, opacity .2s ease;
    transition: transform .2s ease, opacity .2s ease, -webkit-transform .2s ease;
}

.btnMain:hover{
  opacity: .9;
}

.infoSection .btnMain{
  min-width: 130px;
}

.button-primary{
  border: none;
  border-radius: 4px;
}

.button{
    border-radius: 4px;
}

/* map */
.mapSection {
    background: url("/upload_dir/pics/map.jpg") center center no-repeat;
    background-size: cover;
        padding: 40px 0;
        text-align: center;
}

.mapSection__text p {
    margin: 0;
    color: #121212;
    font-size: 39px;
    font-weight: 800;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.mapSection__text a {
    margin-left: 20px;
    color: #00b679;
    font-size: 29px;
    font-weight: 600;
    text-decoration: none;
}

.mapSection__text a:hover {
  text-decoration: none;
}

/* footer */
.site-footer {
    border: none;
    background: #00b679;

}

.site-footer p,
.site-footer span,
.site-footer li,
.site-footer a {
    font-size: 15px;
    line-height: 18px;
    color: #ffffff;
}

.site-footer a:hover {
    text-decoration: underline;
}

.site-footer .f-title {
    color: #121212;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-menu{
  margin-bottom: 20px;
}

.footer-menu .dropdown:hover>.dropdown-menu {
    display: none !important;
}

.footer-menu li {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
.cards {
    padding: 25px 0;
    background: #0d0d0d;
}

.cards ul {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.cards img{
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.w-newsletter-signup .form-group {
    margin: 0 0 8px;
}

.w-newsletter-signup .form-input {
    width: 100%;
    height: 33px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-style: italic;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.w-newsletter-signup .form-input::-webkit-input-placeholder {
    color: #9a9a9a;
    font-size: 13px;
    opacity: 1;
}

.w-newsletter-signup .form-input::-moz-placeholder {
    color: #9a9a9a;
    font-size: 13px;
    opacity: 1;
}

.w-newsletter-signup .form-input:-ms-input-placeholder {
    color: #9a9a9a;
    font-size: 13px;
    opacity: 1;
}

.w-newsletter-signup .form-input::-ms-input-placeholder {
    color: #9a9a9a;
    font-size: 13px;
    opacity: 1;
}

.w-newsletter-signup .form-input::placeholder {
    color: #9a9a9a;
    font-size: 13px;
    opacity: 1;
}

.w-newsletter-type .form-group {
    margin: 0 0 18px;
}

.w-newsletter-type .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
}

.w-newsletter-type .input-group-addon {
    display: block;
    width: 18px;
    height: 18px;
    min-width: 18px;
}

.w-newsletter-type input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.w-newsletter-type .form-label {
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    font-style: italic;
    cursor: pointer;
}

.w-newsletter-type .tooltip {
    display: none;
}

.w-newsletter-signup .form-submit {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100px !important;
    height: 33px;
    padding: 0 10px;
    border: 0;
    border-radius: 4px;
    background: #121212;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.w-newsletter-signup .form-submit:hover {
    background: #fff;
    color: #121212;
}

.footerInfoCol {
    position: relative;
}

.footerSocials {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 32px 8px 32px;
    grid-template-columns: repeat(2, 32px);
    gap: 8px;
}

.footerSocials__link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: #00b679!important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
}

.footerSocials__link i {
    font-size: 20px;
    line-height: 1;
}

.footerSocials__link:hover {
  color: #00b679;
  text-decoration: none!important;
}

.footerSocials__link svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: #00b679;
}

.fCol{
  margin-bottom: 40px;
}

/* categories */
.categorylist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 2em;
}
.category-item {
    margin: 5px 0;
}
.category-item-content {
  background: #0a0a0a;
  height: 100%;
  border-radius: 4px;
}
.category-item-content a {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    width: 100%;
    padding: 1em 5px;
    text-align: center;
    font-size: 16px;
}
@media (max-width: 767px) {
    .serviceBoxes__row {
        display: none !important;
    }

    .serviceBoxes__slider:not(.owl-loaded) > *:not(:first-child) {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .serviceBoxes__slider {
        display: none !important;
    }
}
@media(min-width:360px){
  .logo img {
    max-width: 150px;
  }
}
@media(min-width:1024px){
  .logo img {
    max-width: 200px;
  }
}
  

@media (min-width: 768px) {
  .serviceBoxes__item{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
  .mapSection__text p {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: baseline;
          -ms-flex-align: baseline;
              align-items: baseline;
  }
      .footerInfoCol {
        padding-right: 92px;
    }
        .serviceBoxes__slider {
        display: none !important;
    }
}

@media(min-width:960px){
  .site-slider .w-slider-caption.item-caption .h2 {
      font-size: 27px;
      line-height: 32px;
      font-weight: 900;
      margin-bottom: 15px;
  }
  .w-slider-caption.item-caption .h4 {
    font-size: 22px;
    line-height: 22px;
    font-style: italic;
    margin-bottom: 20px;
  }
  .w-slider-caption-wrapper {
    max-width: 405px;
    padding-left: 20px;
  }
  .serviceBoxes__col{
    margin-bottom: 0;
  }
  .serviceBoxes__col:nth-child(2) .serviceBoxes__item{
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
  }
  .serviceBoxes__col:nth-child(3) .serviceBoxes__item{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .infoSection__col{
    margin-bottom: 0;
  }
  .infoSection__colWrapper{
    padding: 0 80px;
  }
  .footerSocials {
    position: absolute;
    top: 0;
    right: 10px;
  }
}

@media(min-width:1024px){
  .header-right .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  #searchBtn{
    display: none;
  }
  .top-search-form {
      position: relative;
      display: block;
      left: unset;
      top: unset;
      right: unset;
      max-width: 240px;
  }
}

@media(min-width:1140px){
  .header-right .nav > li > a {
    padding: 26px 16px;
  }
}

@media (min-width: 1200px) {
  .infoSection {
    background: #000 var(--bg-image) 43% 100% no-repeat;
    background-size: auto 100%;
    padding: 40px 0;
  }
  .infoSection__col .infoSection__title{
    padding-right: 40px;
  }
  .infoSection__col .infoSection__text{
    padding-right: 120px;
  }

}

@media(min-width:1400px){
  .site-slider .w-slider-caption.item-caption .h2 {
      font-size: 42px;
      line-height: 48px;
  }
  .w-slider-caption.item-caption .h4 {
    margin-bottom: 40px;
  }
  .w-slider-caption-wrapper {
    max-width: 620px;
  }
}




.article {
  text-align: center;
  margin-bottom: 50px;
  font-size: 15px;
  line-height: 1.55;
}
.article__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.article__content {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 50%;
  padding: 55px 0 55px;
}
.article__image-wrapper {
  position: relative;
  z-index: 1;
  width: 50%;
  margin: 50px 0;
}
.article__image, .article__video {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* min-height: 610px; */
  min-height: 450px;
  max-height: 520px;
  margin: 0;
}
.article__text {
  max-width: 970px;
  margin: 0 auto;
}
.article__button {
  margin-top: 60px;
}
.article.article--right-image, .article.article--left-image {
  text-align: left;
}
.article.article--right-image .article__content, .article.article--left-image .article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 46px;
}
.article.article--right-image .article__text, .article.article--left-image .article__text {
  max-width: 545px;
  margin: 0;
}
.article.article--left-image {
  background-color: var(--ih-accent-color-3);
}
.article.article--left-image .article__content {
  padding-left: 70px;
}
.article.article--without-image {
  padding: 40px 0;
  margin: 0;
}
.article.article--without-image .article__content {
  padding: 0;
}
.article.article--without-image + .article.article--left-image,
.article.article--without-image + .article.article--right-image {
  margin-top: 40px;
}
.article.article--slider .article__image-wrapper {
  margin-bottom: 40px;
}
.article.article--slider .article__image + .article__image {
  display: none;
}
.article.article--slider .slick-initialized .article__image + .article__image {
  display: block;
}
.article.article--slider .slick-arrow {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 1;
  transform: translateY(-50%) rotate(45deg);

  font-size: 0;

  width: 40px;
  height: 40px;

  border: none;
  background-color: transparent;
}
.article.article--slider .slick-arrow.slick-prev {
  transform: translateY(-50%) rotate(-135deg);
  left: 20px;
}
.article__slider.article__top-slider .slick-arrow {
  display: none !important;
}

#kontakt1 {
  padding: 50px 0 0;
  text-align: center;
}

.article__content .form-input {
  margin: 0 0 10px;
  height: auto;
  border-radius: 5px;
  padding: 10px;
}
.article__content textarea.form-input {
  min-height: 70px;
}

@media (max-width: 1000px) {
  .article__content {
    padding: 46px 0;
  }
  .article__image, .article__video {
    height: 100%;
  }
  .article.article--right-image .article__content, .article.article--left-image .article__content {
    padding: 46px 16px;
  }
  .article + .article .article__content {
    padding-top: 140px;
  }
}
h1.visually-hidden + .article.article--without-image {
  padding-top: 80px;
}
@media (max-width: 800px) {
  .article {
    text-align: center;
    margin-bottom: 0;
  }
  .article__inner {
    display: block;
  }
  .article__content {
    width: 100%;
  }
  .article__image-wrapper {
    width: auto;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 40px;
  }
  .article.article--right-image .article__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .article.article--right-image, .article.article--left-image {
    text-align: center;
  }
  .article.article--right-image .article__content, .article.article--left-image .article__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .article + .article .article__content {
    padding-top: 40px;
  }
}
@media (max-width: 600px) {
  .article__button {
    margin-top: 40px;
  }
}