@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
/*==================================MIXINS=====================================*/
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap");
* {
  box-sizing: border-box;
}
*:focus {
  outline: none;
}

body {
  font-size: 14px;
  line-height: 30px;
  font-family: "Cairo", sans-serif;
  background: white;
  color: #00805e;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  color: #034738;
}

h2 {
  font-size: 40px;
  line-height: 1.5;
  font-weight: 500;
  color: #034738;
}

strong {
  font-weight: 700;
}

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

.text-right {
  text-align: right;
}

.button {
  height: 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  text-decoration: none;
  color: white;
  padding: 0 24px;
  background: #00805e;
  justify-content: center;
  border: 1px solid #00805e;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 13px;
  line-height: 17px;
  text-transform: uppercase;
  border-radius: 3px;
}
.button:hover {
  background: #009a71;
}
.button.flat {
  width: 100%;
}
.button svg:last-child, .button i:last-child {
  margin-left: 8px;
}
.button svg:first-child, .button i:first-child {
  margin-right: 8px;
}
.button.ghost {
  background: transparent;
}
.button.ghost:hover {
  background: #ad9178;
}
.button.button-sm {
  padding: 0 12px;
  height: 32px;
}
.button.header-button {
  background: #D6DAE7;
  border-color: #D6DAE7;
  color: #ad9178;
  text-transform: none;
}
.button.header-button:hover {
  color: white;
  background: #ad9178;
}
.button.product-button {
  margin-top: 20px;
}

.link, section.about .text a, section.zig-zag .text a {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 16px;
  color: #ad9178;
  text-decoration: none;
}
.link:before, section.about .text a:before, section.zig-zag .text a:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #ad9178;
  margin-right: 8px;
  position: relative;
  top: -2px;
  transition: all 0.2s;
}
.link:hover, section.about .text a:hover, section.zig-zag .text a:hover {
  text-decoration: underline;
}
.link:hover:before, section.about .text a:hover:before, section.zig-zag .text a:hover:before {
  left: -2px;
}

svg {
  display: inline-block;
  font-size: inherit;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
  width: 1em;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.mfp-bg {
  background: rgba(0, 128, 94, 0.9);
}

.mfp-arrow {
  opacity: 1;
}

.mfp-arrow-right:before {
  border-left: 27px solid white;
}

.mfp-arrow-right:after {
  border-left: 17px solid white;
}

.mfp-arrow-left:before {
  border-right: 27px solid white;
}

.mfp-arrow-left:after {
  border-right: 17px solid white;
}

.mfp-wrap .white-popup-block {
  margin: 30px auto;
  max-width: 570px;
  border-radius: 8px;
  background-color: #f0e8de;
  padding: 50px;
  position: relative;
}
.mfp-wrap .white-popup-block h2 {
  text-align: center;
}
.mfp-wrap .mfp-close {
  background: white;
  opacity: 1;
  right: 20px;
  top: 0;
  transform: translateY(-50%);
  font-size: 40px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: #ad9178;
  padding: 0;
  text-align: center;
  border-radius: 4px;
}

img.mfp-img {
  padding-top: 0;
}

.mfp-content {
  margin: 20px auto 0;
}

.pricing-form form {
  display: none;
}

.default-form .item-wrap {
  padding: 12px 0;
}
.default-form input, .default-form textarea {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  background-color: white;
  color: #00805e;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  padding: 0 16px;
  border: none;
}
.default-form textarea {
  height: auto;
  padding: 16px;
}
.default-form .checkbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}
.default-form .checkbox label {
  font-size: 13px;
  line-height: 16px;
}
.default-form input[type=checkbox] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 17px;
}
.default-form input[type=file] {
  padding: 10px;
  overflow: hidden;
}
.default-form label {
  color: #00805e;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}
.default-form select {
  width: 100%;
  height: 40px;
  border-radius: 3px;
  color: #00805e;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  padding: 0 16px;
  border: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../img/caret-down.png) 96% center no-repeat white;
}
.default-form select:-ms-expand {
  display: none;
}

.responsive-button-wrap {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: white;
  font-weight: 600;
  margin-left: 30px;
}
.responsive-button-wrap .responsive-button {
  width: 30px;
  height: 20px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  margin-left: 10px;
}
.responsive-button-wrap .responsive-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.responsive-button-wrap .responsive-button span:nth-child(1) {
  top: 0px;
}
.responsive-button-wrap .responsive-button span:nth-child(2), .responsive-button-wrap .responsive-button span:nth-child(3) {
  top: 9px;
}
.responsive-button-wrap .responsive-button span:nth-child(4) {
  top: 17px;
}
.responsive-button-wrap.open .responsive-button span:nth-child(1) {
  top: 9px;
  width: 0%;
  left: 50%;
}
.responsive-button-wrap.open .responsive-button span:nth-child(2) {
  transform: rotate(45deg);
}
.responsive-button-wrap.open .responsive-button span:nth-child(3) {
  transform: rotate(-45deg);
}
.responsive-button-wrap.open .responsive-button span:nth-child(4) {
  top: 9px;
  width: 0%;
  left: 50%;
}

.load-more-button {
  padding-top: 40px;
  text-align: center;
}

section.not-found h1 {
  font-size: 100px;
}
section.not-found .wrap {
  padding: 100px 0;
}

.custom-container {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.custom-container .col-custom {
  width: 50%;
  padding: 0 25px;
  flex-shrink: 0;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
}
.custom-container .col-full {
  width: 100%;
}
.custom-container .offset-left {
  padding-left: calc((100% - 1170px) / 2);
}
.custom-container .offset-right {
  padding-right: calc((100% - 1170px) / 2);
}
.custom-container .no-offset-left {
  padding-left: 0;
}
.custom-container .no-offset-right {
  padding-right: 0;
}
.custom-container:not(.reversed) .col-custom:first-child {
  padding-left: 0;
}
.custom-container:not(.reversed) .col-custom.cont:first-of-type {
  padding-left: calc((100% - 1170px) / 2);
}
.custom-container:not(.reversed) .col-custom.cont:last-of-type {
  padding-right: calc((100% - 1170px) / 2);
}
.custom-container.reversed {
  flex-direction: row-reverse;
}
.custom-container.reversed .col-custom:last-child {
  padding-left: 70px;
}
.custom-container.reversed .col-custom.cont:first-child {
  padding-right: calc((100% - 1170px) / 2);
}
.custom-container.reversed .col-custom.cont:last-child {
  padding-left: calc((100% - 1170px) / 2);
}

@media (max-width: 1199px) {
  .custom-container .offset-left {
    padding-left: calc((100% - 930px) / 2);
  }
  .custom-container .offset-right {
    padding-right: calc((100% - 930px) / 2);
  }
  .custom-container:not(.reversed) .col-custom.cont:first-child {
    padding-left: calc((100% - 930px) / 2);
  }
  .custom-container:not(.reversed) .col-custom.cont:last-child {
    padding-right: calc((100% - 930px) / 2);
  }
  .custom-container.reversed .col-custom.cont:first-child {
    padding-right: calc((100% - 930px) / 2);
  }
  .custom-container.reversed .col-custom.cont:last-child {
    padding-left: calc((100% - 930px) / 2);
  }
}
@media (max-width: 991px) {
  .custom-container {
    padding: 0;
  }
  .custom-container .col-custom {
    width: 100%;
  }
  .custom-container .col-custom.cont {
    padding-left: calc((100% - 690px) / 2) !important;
    padding-right: calc((100% - 690px) / 2) !important;
  }
  .custom-container .col-custom:not(.cont) {
    padding: 0 !important;
  }
  .custom-container.reversed {
    flex-direction: row;
  }
}
@media (max-width: 767px) {
  .custom-container .col-custom.cont {
    padding-left: calc((100% - 510px) / 2) !important;
    padding-right: calc((100% - 510px) / 2) !important;
  }
}
@media (max-width: 567px) {
  .custom-container .col-custom.cont {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/*==================================DISPLAY SETTINGS======================================*/
@media (max-width: 543px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media (max-width: 1199px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media (min-width: 544px) {
  .hidden-xs-up {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg-up {
    display: none !important;
  }
}
.honey {
  display: none;
}

header .topbar {
  font-size: 13px;
  line-height: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  background-color: rgba(3, 71, 56, 0.2);
  color: #00805e;
}
header .topbar a {
  color: #00805e;
  text-decoration: none;
}
header .topbar a:hover {
  color: #ad9178;
}
header .topbar .login-responsive {
  margin-left: 20px;
}
header .topbar.warning-info {
  background-color: #ad9178;
}
header .topbar.warning-info .content {
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
  width: 100%;
}
header .topbar.warning-info p {
  color: white;
}
header .social {
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 15px;
}
header .social a:first-child {
  margin-right: 8px;
}
header .open-hours {
  background: white;
  padding-left: 30px;
  position: relative;
  height: 100%;
}
header .open-hours:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 48px 60px 0 0;
  border-color: white transparent transparent transparent;
  position: absolute;
  left: 100%;
  top: 0;
}
header .actions {
  padding-right: 30px;
  display: flex;
  align-items: center;
}
header .actions .button {
  color: white !important;
  background-color: #00805e !important;
  margin-left: 30px;
  font-weight: 700;
}
header .actions .button:hover {
  background-color: #00674b !important;
}
header nav {
  background: #034738;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.1);
}
header nav .logos {
  position: relative;
  background: white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 30px;
  flex-shrink: 0;
  margin-right: 110px;
}
header nav .logos:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 110px 0 0;
  border-color: white transparent transparent transparent;
  position: absolute;
  left: 100%;
  top: 0;
}
header nav .logos a {
  display: flex;
  align-items: center;
}
header nav .logos a img {
  height: 44px;
  display: block;
}
header nav .logos a svg {
  height: 64px;
  width: 210px;
}
header nav ul.main {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
}
header nav ul.main li {
  display: inline-block;
}
header nav ul.main li a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: block;
}
header nav ul.main li a:hover {
  color: #ad9178;
}
header nav ul.main li.active a {
  color: #ad9178;
}
header nav .buttons {
  padding-right: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
header nav .buttons a {
  margin-left: 16px;
  text-transform: none;
}
header nav .buttons a:first-child:hover {
  background-color: #00805e !important;
}
header nav .buttons a:last-child {
  color: #00805e !important;
  background-color: white !important;
  border-color: white !important;
}
header nav .buttons a svg {
  font-size: 20px;
}

section.promo {
  position: relative;
}
section.promo:before {
  content: "";
  display: block;
  background: linear-gradient(270deg, rgba(39, 44, 127, 0) 0%, #034738 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 100px;
  opacity: 0.1;
}
section.promo .slick-dots {
  display: block;
  position: absolute;
  left: 10%;
  margin: 0;
  padding: 0;
  list-style: none;
  bottom: 40px;
}
section.promo .slick-dots li {
  height: 8px;
  width: 8px;
  opacity: 0.3;
  background-color: #00805e;
  border-radius: 50%;
  display: inline-block;
  margin: 4px;
  transition: all 0.2s;
}
section.promo .slick-dots li.slick-active {
  background: #ad9178;
  opacity: 1;
}
section.promo .slick-arrow {
  position: absolute;
  bottom: 50px;
  width: 110px;
  height: 60px;
  background: #00805e;
  color: white;
  left: 45%;
  border: none;
  border-radius: 18px 18px 0 0;
  transform: skewX(-50deg);
  box-shadow: 0 0 30px rgba(0, 128, 94, 0.6);
  cursor: pointer;
}
section.promo .slick-arrow i {
  transform: skewX(50deg);
  opacity: 0.5;
  transition: all 0.2s;
}
section.promo .slick-arrow.left {
  bottom: -10px;
  border-radius: 0 0 18px 18px;
  left: calc(45% - 71px);
}
section.promo .slick-arrow:hover i {
  opacity: 1;
}
section.promo img {
  display: block;
}
section.promo img.triangle {
  position: absolute;
}
section.promo img.triangle-small-left {
  left: 0;
  top: 0;
}
section.promo img.triangle-small-right {
  right: 0;
  top: 0;
}
section.promo .content {
  padding: 120px 30% 220px 7%;
  width: 100%;
  position: relative;
  max-width: 1300px;
}
section.promo .content:before {
  content: "";
  display: block;
  background: rgba(240, 232, 222, 0.05);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform: skewX(-55deg);
  transform-origin: top left;
}
section.promo .content .text {
  position: relative;
  z-index: 1;
}
section.promo .content .text h2 {
  margin-bottom: 30px;
}
@media (min-width: 1400px) {
  section.promo .content .text h2 {
    font-size: 56px;
    line-height: 60px;
  }
}
@media (max-width: 1399px) {
  section.promo .content {
    max-width: 1000px;
    padding: 60px 30% 160px 10%;
  }
}
section.promo .slider {
  position: absolute;
  right: 0;
  top: 70px;
  width: 50%;
  padding-right: 30px;
  padding-left: 120px;
  bottom: -40px;
}
section.promo .slider img {
  max-height: 100%;
  margin-left: auto;
}

section.benefits {
  text-align: center;
  padding: 120px 0;
}
section.benefits .item {
  width: 170px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #ad9178;
}
section.benefits .item .icon {
  font-size: 64px;
}
section.benefits .item p {
  color: #00805e;
}

section.about {
  padding: 120px 0;
  font-size: 16px;
  line-height: 30px;
  position: relative;
  background: rgba(0, 128, 94, 0.05);
  margin: 100px 0 80px;
}
section.about:before {
  content: "";
  display: block;
  left: 0;
  top: 0;
  background: linear-gradient(to right bottom, white 50%, transparent 50%);
  width: 30%;
  height: 100%;
  position: absolute;
}
section.about .triangle-right {
  position: absolute;
  right: 0;
  top: -100px;
  width: 44%;
}
section.about .right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 50%;
}
section.about .right img {
  display: block;
}
section.about .right .text {
  backdrop-filter: blur(5px);
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px;
  position: absolute;
  left: 4px;
  right: calc(50% + 2px);
  bottom: 4px;
  text-decoration: none;
  transition: all 0.2s;
}
section.about .right .text:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
section.about .right .text:last-child {
  left: calc(50% + 2px);
  right: 4px;
}
section.about .right .text h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: white;
}
section.about .right .text .link {
  color: white;
}
section.about .right .text .link:before {
  background: white;
}

section.product-listing {
  padding: 80px 0;
}
section.product-listing h2.title {
  margin-bottom: 40px;
}
section.product-listing .product-slider .slick-dots {
  display: block;
  position: absolute;
  right: 170px;
  margin: 0;
  padding: 0;
  list-style: none;
  top: calc(100% + 18px);
}
section.product-listing .product-slider .slick-dots li {
  height: 8px;
  width: 8px;
  opacity: 0.3;
  background-color: #00805e;
  border-radius: 50%;
  display: inline-block;
  margin: 4px;
  transition: all 0.2s;
}
section.product-listing .product-slider .slick-dots li.slick-active {
  background: #ad9178;
  opacity: 1;
}
section.product-listing .product-slider .slick-arrow {
  position: absolute;
  top: calc(100% + 20px);
  width: 110px;
  height: 60px;
  background: #ad9178;
  color: white;
  right: 15px;
  border: none;
  border-radius: 18px 18px 0 0;
  transform: skewX(-50deg);
  box-shadow: 0 0 30px rgba(121, 182, 4, 0.6);
  cursor: pointer;
}
section.product-listing .product-slider .slick-arrow i {
  transform: skewX(50deg);
  opacity: 0.5;
  transition: all 0.2s;
}
section.product-listing .product-slider .slick-arrow.left {
  top: calc(100% + 80px);
  border-radius: 0 0 18px 18px;
  right: 86px;
}
section.product-listing .product-slider .slick-arrow:hover i {
  opacity: 1;
}
section.product-listing .product-slider .slick-list {
  margin: 0 -15px;
}
section.product-listing .product-slider .item {
  width: 100%;
  transition: all 0.2s;
}
section.product-listing .product-slider .item .read-more {
  background: white;
}
section.product-listing .product-slider .item .read-more .icon {
  background: #f0e8de;
  color: rgba(0, 128, 94, 0.3);
}
section.product-listing .item {
  width: 25%;
  padding: 0 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  text-decoration: none;
  transition: all 0.2s;
}
section.product-listing .item .image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
section.product-listing .item .image-wrap:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s;
  z-index: 1;
}
section.product-listing .item .image-wrap:after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 66%;
}
section.product-listing .item .image-wrap img {
  position: absolute;
  object-fit: cover;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}
section.product-listing .item:hover .image-wrap:before {
  background: rgba(0, 128, 94, 0.6);
}
section.product-listing .item img {
  display: block;
  width: 100%;
}
section.product-listing .item .read-more {
  height: 82px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  background: #f0e8de;
  text-decoration: none;
  color: #00805e;
  font-weight: 500;
  width: 100%;
}
section.product-listing .item .icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: rgba(0, 128, 94, 0.3);
  font-size: 13px;
}
section.product-listing .item .last-item {
  background-color: #034738;
  width: 100%;
  height: 100%;
  color: white;
  padding: 25px;
  text-decoration: none;
  transition: all 0.2s;
}
section.product-listing .item .last-item:hover {
  box-shadow: 12px 24px 32px 0 rgba(3, 71, 56, 0.48);
}
section.product-listing .item .last-item h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  color: inherit;
}
section.product-listing .item .last-item p {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
section.product-listing .item .last-item .icon {
  margin-left: auto;
}

section.realizations {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-end;
  padding: 80px 0;
  position: relative;
}
section.realizations .realizations-slider {
  position: absolute;
  left: 7%;
  bottom: 80px;
  width: 100%;
  max-width: 29%;
}
section.realizations .realizations-slider .slick-dots {
  display: block;
  margin: 50px 0 0 36px;
  padding: 0;
  list-style: none;
}
section.realizations .realizations-slider .slick-dots li {
  height: 8px;
  width: 8px;
  opacity: 0.3;
  background-color: #00805e;
  border-radius: 50%;
  display: inline-block;
  margin: 4px;
  transition: all 0.2s;
}
section.realizations .realizations-slider .slick-dots li.slick-active {
  background: #ad9178;
  opacity: 1;
}
section.realizations .realizations-slider .slick-arrow {
  position: absolute;
  bottom: 20px;
  width: 110px;
  height: 60px;
  background: #00805e;
  color: white;
  right: -40px;
  border: none;
  border-radius: 18px 18px 0 0;
  transform: skewX(-50deg);
  box-shadow: 0 0 30px rgba(0, 128, 94, 0.6);
  cursor: pointer;
}
section.realizations .realizations-slider .slick-arrow i {
  transform: skewX(50deg);
  opacity: 0.5;
  transition: all 0.2s;
}
section.realizations .realizations-slider .slick-arrow.left {
  bottom: -40px;
  border-radius: 0 0 18px 18px;
  right: 31px;
}
section.realizations .realizations-slider .slick-arrow:hover i {
  opacity: 1;
}
section.realizations .realizations-slider .slide-wrap {
  position: relative;
  padding-left: 38px;
  font-style: italic;
}
section.realizations .realizations-slider .slide-wrap:before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../img/quote.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
section.realizations .wrapper-wrap {
  width: 100%;
}
section.realizations .button-contact {
  background: #ad9178;
  color: white;
  transform: rotate(90deg);
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  padding: 75px 30px;
  writing-mode: vertical-rl;
  transform: scale(-1);
  flex-shrink: 0;
}
section.realizations .wrap {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
section.realizations .item {
  width: 20%;
  flex-shrink: 0;
  border: 1px solid white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5%;
  position: relative;
}
section.realizations .item .number {
  font-size: 88px;
  font-weight: 300;
  line-height: 107px;
  color: #ad9178;
  margin-bottom: 30px;
}
section.realizations .item h3 {
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  color: #00805e;
  margin-bottom: 8px;
}
section.realizations .item span.badge {
  height: 24px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  align-items: center;
  position: absolute;
  color: white;
  right: 6%;
  bottom: 6%;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
}
section.realizations .item p {
  color: #00805e;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  margin: 0;
}
section.realizations .item.first {
  background: #034738;
}
section.realizations .item.first h2 {
  color: white;
  font-size: 32px;
  line-height: 40px;
}
section.realizations .item img {
  width: 100%;
  display: block;
}
section.realizations a.item {
  padding: 0;
}
section.realizations a.item:before {
  content: "";
  display: block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  background: rgba(0, 128, 94, 0.6);
  transition: all 0.2s;
}
section.realizations a.item:hover:before {
  background: rgba(173, 145, 120, 0.6);
}

section.services {
  padding: 80px 0;
}
section.services h2 {
  margin-bottom: 64px;
  color: #034738;
}
section.services .item {
  text-decoration: none;
  color: #034738;
  border-radius: 8px;
  border: 1px solid #034738;
  background-color: white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 16px;
  padding-right: 65px;
  position: relative;
  margin-bottom: 30px;
  transition: all 0.2s;
  min-height: 88px;
}
section.services .item:hover {
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}
section.services .item .image-icon {
  flex-shrink: 0;
  font-size: 64px;
  margin-right: 10px;
}
section.services .item h3 {
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}
section.services .item .icon {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: rgba(3, 71, 56, 0.3);
  font-size: 13px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

section.news-listing {
  padding: 80px 0;
}
section.news-listing .link {
  margin: 0 10px;
  color: #00805e;
}
section.news-listing .link:before {
  background: #00805e;
}
section.news-listing .link.active {
  color: #ad9178;
}
section.news-listing .link.active:before {
  background: #ad9178;
}
section.news-listing .wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
section.news-listing article {
  width: 25%;
  border: 1px solid transparent;
  margin: 15px 0;
}
section.news-listing article img {
  display: block;
}
section.news-listing article a {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
}
section.news-listing article a:before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.25);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.2s;
}
section.news-listing article a:hover {
  transform: translateY(-10px);
  box-shadow: 0px 54px 84px rgba(0, 0, 0, 0.39);
}
section.news-listing article a:hover:before {
  background-color: rgba(173, 145, 120, 0.25);
}
section.news-listing article .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 2;
  backdrop-filter: blur(5px);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.35);
}
section.news-listing article .text h3 {
  color: #f0e8de;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
section.news-listing article .text time {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: white;
}

section.logos {
  padding: 80px 0;
}
section.logos .logos-slider .item {
  border: 1px solid white;
  background: #f0e8de;
  position: relative;
}
section.logos .logos-slider .item:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%;
}
section.logos .logos-slider .item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

section.stores {
  padding: 80px 0;
}
section.stores h2 {
  margin-bottom: 80px;
}
section.stores .item {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
section.stores .item:before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  transition: all 0.2s;
}
section.stores .item img {
  width: 100%;
  display: block;
}
section.stores .item .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  z-index: 2;
  backdrop-filter: blur(5px);
  border-radius: 2px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}
section.stores .item .text h3 {
  color: #ad9178;
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}
section.stores .item .text .link {
  color: white;
}

article.detail {
  padding: 60px 0;
}
article.detail.product header {
  padding-bottom: 60px;
}
article.detail header .actions {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.article-text.with-offset {
  padding: 80px 0 40px;
}
.article-text h2 {
  margin: 25px 0;
  font-weight: 400;
}
@media (min-width: 992px) {
  .article-text h2 {
    font-size: 32px;
    line-height: 46px;
  }
}
.article-text p {
  font-size: 14px;
  line-height: 2;
  margin: 25px 0;
}
.article-text p a {
  color: #ad9178;
}
.article-image {
  padding: 25px 0;
  position: relative;
}
.article-image img {
  display: block;
  margin: 0 auto;
}
.article-image.video .video-icon {
  font-size: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7vw;
  width: 7vw;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: white;
  padding-left: 0.5vw;
  animation: ripple 0.7s linear infinite;
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15), 0 0 0 0.5em rgba(0, 0, 0, 0.15);
  }
  100% {
    box-shadow: 0 0 0 0.5em rgba(0, 0, 0, 0.15), 0 0 0 1em rgba(0, 0, 0, 0);
  }
}
.row-reverse {
  flex-direction: row-reverse;
}

section.zig-zag {
  padding: 40px 0;
}
section.zig-zag .image-icon {
  font-size: 64px;
}
section.zig-zag img {
  border-radius: 8px;
  display: block;
  width: 100%;
}

section.checks {
  padding: 40px 0;
}
section.checks h2 {
  margin-bottom: 60px;
}
section.checks .icon {
  font-size: 32px;
  color: #ad9178;
}
section.checks .item {
  padding: 25px 0;
}
section.checks h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
  padding: 8px 0;
}
section.checks p {
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

footer {
  background: rgba(240, 232, 222, 0.25);
  padding: 80px 0;
}
footer .logos a {
  display: block;
}
footer .logos a img {
  height: 34px;
  display: block;
}
footer .logos a svg {
  height: 64px;
  width: 100%;
}
footer .social a {
  font-size: 24px;
  letter-spacing: 0;
  line-height: 40px;
  color: #ad9178;
  margin: 0 6px;
}
footer h2 {
  opacity: 0.5;
  color: #00805e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 15px;
  text-transform: uppercase;
  margin: 10px 0;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer ul li {
  position: relative;
  padding-left: 20px;
}
footer ul li:before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: #ad9178;
  position: absolute;
  top: 18px;
  left: 0;
}
footer ul a {
  color: #00805e;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none;
  transition: all 0.2s;
}
footer ul a:hover {
  color: #ad9178;
}
footer .develop {
  text-align: center;
  padding-top: 25px;
  font-size: 12px;
  font-weight: bold;
  color: #00805e;
}
footer .develop img {
  vertical-align: middle;
  width: 80px;
  margin-left: 4px;
}

section.contact {
  padding: 80px 0;
}
section.contact .text h3 {
  font-size: 16px;
  font-weight: 700;
}
section.contact .text p {
  margin: 0;
  font-size: 14px;
  line-height: 26px;
}
section.contact .contact-form {
  padding: 60px 80px;
  border-radius: 8px;
  background-color: #f0e8de;
}

section.map {
  color: white;
  font-size: 14px;
  line-height: 26px;
  padding: 60px 0;
}
section.map .with-background {
  background: #00805e;
}
section.map .text {
  padding: 30px 0;
}
section.map .image-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}
section.map img {
  display: block;
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
section.map p {
  margin: 0;
}
section.map p a {
  color: white;
  text-decoration: none;
}
section.map p a:hover {
  color: #ad9178;
}

section.team {
  padding: 60px 0 30px;
}
section.team h2 {
  margin-bottom: 40px;
}
section.team .item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 30px 0;
}
section.team .item .photo {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  margin-right: 24px;
}
section.team .item .photo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
section.team .item .text {
  font-size: 16px;
  line-height: 24px;
}
section.team .item .name {
  font-weight: 700;
}
section.team .item .role {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 16px;
}
section.team .item .email a {
  color: #ad9178;
}
section.team .item .tel a {
  color: #00805e;
  text-decoration: none;
  font-weight: 600;
}

section.gallery {
  padding: 60px 0;
}
section.gallery .item {
  display: block;
  margin-bottom: 30px;
}
section.gallery .item img {
  display: block;
  width: 100%;
}

section.certificates {
  padding: 120px 0 60px;
}
section.certificates .wrap {
  display: flex;
  background: #00805e;
  color: white;
  align-items: center;
  border-radius: 8px;
}
section.certificates .wrap h2 {
  color: white;
  font-weight: 700;
}
section.certificates .wrap .text {
  padding: 0 60px;
}
section.certificates .wrap .text a {
  color: white;
}
section.certificates .wrap .icon {
  flex-shrink: 0;
  margin-top: -20px;
  position: relative;
}
section.certificates .wrap .icon .icon-image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-60%, -50%);
}
section.certificates .wrap .icon img {
  display: block;
}

section.certificates-listing {
  background: #00805e;
  padding: 120px 0 60px;
  color: white;
  margin: 60px 0;
}
section.certificates-listing .item {
  display: block;
  text-align: center;
  color: #ad9178;
  text-decoration: none;
  font-weight: 700;
  padding: 20px 0;
}
section.certificates-listing .item p {
  color: #f0e8de;
  margin: 0;
}
section.certificates-listing .item-wrap {
  position: relative;
  display: block;
  width: 80px;
  font-size: 35px;
  margin: 0 auto 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
}
section.certificates-listing .item-wrap:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 133%;
}
section.certificates-listing .item-wrap:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 20px 20px 0;
  border-style: solid;
  border-color: rgba(216, 216, 216, 0.2) #00805e;
}
section.certificates-listing .item-wrap svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
section.certificates-listing h2 {
  color: white;
}
section.certificates-listing .certificates-items {
  position: relative;
}
section.certificates-listing .certificates-items:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 150px;
  background: -moz-linear-gradient(top, rgba(0, 128, 94, 0) 0%, #00805e 100%);
  background: -webkit-linear-gradient(top, rgba(0, 128, 94, 0) 0%, #00805e 100%);
  background: linear-gradient(to bottom, rgba(0, 128, 94, 0) 0%, #00805e 100%);
  z-index: 1;
}
section.certificates-listing .certificates-items.full:before {
  display: none;
}
section.certificates-listing .certificates-items .item {
  width: 16.6666666667%;
}
section.certificates-listing .certificates-items .item.hidden {
  display: none !important;
}
section.certificates-listing .certificates-items .expand-certificates {
  position: absolute;
  bottom: -20px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.certificates-listing .filter-items {
  padding-bottom: 60px;
  padding-top: 10px;
}
section.certificates-listing .filter-items a {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
  text-decoration: none;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  padding: 6px 8px;
}
section.certificates-listing .filter-items a.active {
  background: white;
  color: #00805e;
}

#infoPopup {
  text-align: center;
}
@media (max-width: 567px) {
  #infoPopup h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
#infoPopup h2 {
  font-size: 25px;
  line-height: 1.2;
}
#infoPopup p {
  margin-bottom: 35px;
}

section.newsletter {
  background: #00805E;
  width: 100%;
  position: relative;
  padding: 60px 0 80px;
}
section.newsletter .row {
  align-items: center;
}
section.newsletter .text-wrap,
section.newsletter form {
  position: relative;
  z-index: 2;
}
section.newsletter img.corner {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
}
section.newsletter img.icon {
  display: block;
  margin-bottom: 5px;
}
section.newsletter p.title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 35px;
  margin-top: 0;
  margin-bottom: 5px;
}
section.newsletter p.text {
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  margin: 0;
}
section.newsletter form .input-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
section.newsletter form .input-wrap input[type=email] {
  width: 382px;
  height: 55px;
  border-radius: 6px;
  order: 1;
  padding-left: 16px;
  margin-right: 10px;
}
section.newsletter form .input-wrap input[type=email]::placeholder {
  color: #919EA6;
  font-size: 16px;
}
section.newsletter form .input-wrap .button {
  width: auto;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  order: 2;
  background: #AD9178;
  border-radius: 6px;
  height: 55px;
  line-height: 1;
  border: none;
  padding: 0 11px;
  text-transform: initial;
}
section.newsletter form .input-wrap .checkbox {
  width: 100%;
  order: 3;
  margin-top: 12px;
  align-items: center;
}
section.newsletter form .input-wrap .checkbox input {
  margin-right: 5px;
}
section.newsletter form .input-wrap .checkbox label {
  font-size: 14px;
  color: #fff;
}
section.newsletter form .input-wrap .checkbox label a {
  color: #fff;
  text-decoration: underline;
}
section.newsletter form .input-wrap .checkbox label a:hover, section.newsletter form .input-wrap .checkbox label a:focus {
  text-decoration: none;
}

/*==================================RESPONSIVE=====================================*/
@media (max-width: 1199px) {
  header nav {
    position: relative;
  }
  header nav ul.main {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    z-index: 1;
    max-width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  }
  header nav ul.main li {
    display: block;
    padding: 10px 0;
    text-align: center;
  }
  header nav ul.main li a {
    color: #00805e;
  }

  section.realizations {
    flex-wrap: wrap;
  }
  section.realizations .realizations-slider {
    position: static;
    width: 100%;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 15px;
  }
  section.realizations .button-contact {
    display: none;
  }
  section.realizations .item.first h2 {
    font-size: 20px;
    line-height: 26px;
    text-align: center;
  }
  section.realizations .item .number {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 0;
  }

  section.newsletter form .input-wrap input[type=email] {
    width: 282px;
  }
  section.newsletter form .input-wrap .checkbox {
    align-items: flex-start;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 30px;
  }

  header nav {
    flex-wrap: wrap;
    height: auto;
  }
  header nav .buttons {
    padding: 10px 30px;
  }
  header nav .logos {
    width: 100%;
    padding: 10px 30px;
  }
  header nav .logos::before {
    display: none;
  }
  header nav .logos a {
    display: flex;
  }
  header nav .logos a img {
    display: block;
  }

  section.promo:before {
    bottom: 0;
  }
  section.promo .slick-dots {
    position: static;
    padding-top: 20px;
  }
  section.promo .content {
    text-align: center;
    padding: 60px 15px 0;
    min-width: 1px;
    width: 100%;
  }
  section.promo .content:before {
    display: none;
  }
  section.promo .slider {
    position: static;
    padding: 20px 0 40px;
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
  section.promo .slider img {
    margin: 0 auto;
  }

  section.about {
    margin: 0;
    padding: 60px 0;
  }
  section.about:before {
    width: 75%;
  }
  section.about .right {
    position: relative;
    max-width: 600px;
    margin: 40px auto 0;
    transform: none;
  }
  section.about .triangle-right {
    display: none;
  }

  section.product-listing {
    padding: 60px 0;
  }
  section.product-listing .product-slider .slick-dots {
    right: 0;
    top: 100%;
  }
  section.product-listing .product-slider .item {
    width: 100% !important;
  }
  section.product-listing .item {
    width: 33%;
  }
  section.product-listing .item .read-more {
    padding: 0 15px;
  }
  section.product-listing .item .read-more .icon {
    flex-shrink: 0;
  }
  section.product-listing .item:last-child {
    width: 66%;
  }

  section.realizations {
    padding: 40px 0;
  }
  section.realizations .wrapper-wrap {
    display: flex;
    flex-wrap: wrap;
  }
  section.realizations .wrap:nth-child(1) .item {
    width: 50%;
  }
  section.realizations .wrap:nth-child(1) .item.first {
    width: 100%;
  }
  section.realizations .wrap:nth-child(3) {
    width: 66.6666666667%;
  }
  section.realizations .wrap:nth-child(3) .item {
    width: 50%;
  }
  section.realizations .wrap:nth-child(4) {
    width: 33.3333333333%;
  }
  section.realizations .wrap:nth-child(4) .item {
    width: 100%;
  }
  section.realizations .wrap .item {
    width: 33.3333333333%;
  }
  section.realizations .wrap .item.with-number {
    display: none;
  }

  section.news-listing {
    padding: 40px 0;
  }
  section.news-listing .wrap {
    margin-top: 20px;
  }
  section.news-listing article {
    width: 50%;
  }

  section.contact .contact-form {
    margin-top: 40px;
  }

  section.logos {
    padding: 40px 0;
  }

  section.map {
    padding: 15px 0;
  }
  section.map img {
    position: static;
    transform: none;
  }

  section.certificates .wrap .icon {
    display: none;
  }
  section.certificates .wrap .text {
    padding: 25px 35px;
  }

  section.zig-zag img {
    margin-top: 40px;
  }

  section.benefits {
    padding: 60px 0;
  }

  section.services {
    padding: 40px 0 20px;
  }

  section.stores {
    padding: 40px 0;
  }
  section.stores h2 {
    margin-bottom: 30px;
  }

  .article-text.with-offset {
    padding: 0;
  }
  .article-text.with-offset h1 {
    padding-top: 40px;
  }

  section.checks h2 {
    margin-bottom: 20px;
  }

  section.certificates-listing {
    margin: 20px 0;
    padding: 40px 0;
  }
  section.certificates-listing .filter-items {
    padding-bottom: 10px;
  }

  article.detail {
    padding: 40px 0;
  }
  article.detail.product header {
    padding-bottom: 20px;
  }

  section.contact {
    padding: 40px 0;
  }

  section.gallery {
    padding: 40px 0;
  }

  section.certificates {
    padding: 60px 0 20px;
  }

  section.zig-zag {
    padding: 20px 0;
  }

  section.newsletter form {
    margin-top: 30px;
  }
  section.newsletter form .input-wrap {
    justify-content: flex-start;
  }
  section.newsletter form .input-wrap input[type=email] {
    width: 300px;
  }
}
@media (max-width: 767px) {
  section.product-listing .item {
    width: 50%;
  }
  section.product-listing .item:last-child {
    width: 50%;
  }

  section.stores .item {
    margin: 15px 0;
  }

  section.certificates-listing .certificates-items .item {
    width: 33.3333333333%;
  }

  section.team .item {
    flex-direction: column;
    text-align: center;
  }
  section.team .item .photo {
    margin: 0 auto 10px;
  }

  section.ads {
    display: none;
  }
}
@media (max-width: 575px) {
  header .topbar {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    text-align: center;
  }
  header .social {
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
  }
  header .open-hours, header .actions {
    padding: 0 15px;
    justify-content: center;
  }
  header .open-hours:before, header .actions:before {
    display: none;
  }
  header nav .logos {
    padding: 10px 100px 10px 15px;
  }
  header nav .logos a:not(:last-child) {
    margin-right: 10px;
  }
  header nav .logos a:not(:last-child):after {
    display: none;
  }
  header nav .logos a img, header nav .logos a svg {
    height: 30px;
  }
  header nav .buttons {
    width: 100%;
    padding: 10px 15px;
    justify-content: center;
  }
  header nav .buttons a {
    margin: 0 3px;
    font-size: 10px;
    padding: 0 18px;
  }

  .responsive-button-wrap {
    position: absolute;
    right: 15px;
    top: 16px;
    color: #00805e;
  }
  .responsive-button-wrap .responsive-button span {
    background: #00805e;
  }

  section.promo img.triangle {
    width: 50%;
  }

  section.product-listing .item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  section.product-listing .item:last-child {
    width: 100%;
  }

  section.realizations .wrap {
    width: 100% !important;
  }
  section.realizations .wrap .item {
    width: 100% !important;
  }

  section.news-listing article {
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  section.certificates-listing .certificates-items .item {
    width: 50%;
  }

  section.contact .contact-form {
    padding: 25px;
  }

  section.team .item {
    text-align: center;
    padding: 15px 0;
  }

  section.certificates .wrap .text {
    padding: 15px 25px;
  }

  section.about .right .text {
    position: static;
    border-radius: 0;
    display: block;
  }

  footer {
    text-align: center;
  }
  footer .logos a img {
    margin: 0 auto 20px;
  }
  footer ul li {
    padding-left: 0;
  }
  footer ul li:before {
    display: none;
  }

  section.newsletter img.corner {
    display: none;
  }
  section.newsletter form .input-wrap input[type=email] {
    width: 100%;
    margin-right: 0;
    margin-bottom: 8px;
    order: 1;
  }
  section.newsletter form .input-wrap .checkbox {
    order: 2;
  }
  section.newsletter form .input-wrap .button {
    width: 100%;
    order: 3;
    margin-top: 20px;
  }
}

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