/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 20px 0;
}
header nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header nav > ul > li {
  margin-right: 45px;
}
header nav > ul > li:last-child {
  margin-right: 0;
}
header nav > ul > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
}
header nav > ul > li > a:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 1px;
  width: 0;
  background: #fff;
  transition: all 0.3s ease;
}
header nav > ul > li > a:hover {
  color: #fff;
}
header nav > ul > li > a:hover:before {
  width: 100%;
}
header nav > ul > li > ul.sub-menu {
  position: absolute;
  top: 40px;
  left: 0;
  width: 250px;
  background: rgba(0, 0, 0, 0.3);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}
header nav > ul > li > ul.sub-menu > li > a {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding: 8px 10px;
  display: block;
}
header nav > ul > li > ul.sub-menu > li > a:hover {
  color: #708f7c;
}
header nav > ul > li.menu-item-has-children {
  position: relative;
  padding-right: 20px;
}
header nav > ul > li.menu-item-has-children:after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pg0KPCEtLSBVcGxvYWRlZCB0bzogU1ZHIFJlcG8sIHd3dy5zdmdyZXBvLmNvbSwgR2VuZXJhdG9yOiBTVkcgUmVwbyBNaXhlciBUb29scyAtLT4NCjxzdmcgZmlsbD0iI2ZmZiIgaGVpZ2h0PSI4MDBweCIgd2lkdGg9IjgwMHB4IiB2ZXJzaW9uPSIxLjEiIGlkPSJDYXBhXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiDQoJIHZpZXdCb3g9IjAgMCAyMC42MzMgMjAuNjMzIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0xMC43OSwxNS42MTdsOS42NDgtOS42NDZjMC4xMzMtMC4xMzEsMC4xOTUtMC4zMDEsMC4xOTUtMC40NzNzLTAuMDYyLTAuMzQ0LTAuMTk1LTAuNDczbC0wLjAxMi0wLjAxMg0KCQljLTAuMTI1LTAuMTI3LTAuMjk1LTAuMTk1LTAuNDcyLTAuMTk1aC00LjY4MmMtMC4xOCwwLTAuMzQ4LDAuMDY4LTAuNDczLDAuMTk1bC00LjQ4LDQuNDc5bC00LjQ4LTQuNDc5DQoJCUM1LjcxMSw0Ljg4Niw1LjU0LDQuODE4LDUuMzY2LDQuODE4SDAuNjg0Yy0wLjE4MiwwLTAuMzQ5LDAuMDY4LTAuNDc1LDAuMTk1TDAuMTk2LDUuMDI1QzAuMDY4LDUuMTQ4LDAsNS4zMjIsMCw1LjQ5OA0KCQljMCwwLjE3NiwwLjA2OCwwLjM0OCwwLjE5NiwwLjQ3M2w5LjY0OCw5LjY0NkMxMC4xMDgsMTUuODgsMTAuNTMsMTUuODgsMTAuNzksMTUuNjE3eiIvPg0KCTxnPg0KCTwvZz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KCTxnPg0KCTwvZz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KCTxnPg0KCTwvZz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KCTxnPg0KCTwvZz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KCTxnPg0KCTwvZz4NCgk8Zz4NCgk8L2c+DQoJPGc+DQoJPC9nPg0KPC9nPg0KPC9zdmc+);
  width: 14px;
  height: 12px;
  background-size: 100%;
  position: absolute;
  right: 0;
  top: 4px;
}
header nav > ul > li.menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  width: 100%;
  height: 20px;
}
header nav > ul > li.menu-item-has-children:hover > a {
  color: #fff;
}
header nav > ul > li.menu-item-has-children:hover > a:before {
  width: 100%;
}
header nav > ul > li.menu-item-has-children:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
}
header .logo-header {
  max-width: 220px;
}
@media (max-width: 1024px) {
  header .logo-header {
    width: 170px;
  }
}
@media (max-width: 1024px) {
  .phone {
    margin-right: 80px;
    display: none;
  }
}
.phone a {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1024px) {
  .phone a {
    font-size: 16px;
  }
}
.phone svg {
  margin-right: 10px;
}
.top-block-big {
  position: relative;
}
.top-block-big::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
.top-block-big .row {
  min-height: 1000px;
  align-items: flex-end;
  padding: 100px 0 100px;
}
@media (max-width: 1920px) {
  .top-block-big .row {
    min-height: 100vh;
  }
}
@media (max-width: 1024px) {
  .top-block-big .row {
    min-height: 400px;
    padding: 140px 0 100px;
  }
}
.top-block-big .row div * {
  color: #fff;
}
.top-block-big .row div h1 {
  font-weight: 700;
}
.top-block-big .row div p {
  color: #666;
}
@media (max-width: 1024px) {
  .top-block-big .row div p {
    color: #fff;
  }
}
.top-block-mini {
  position: relative;
}
.top-block-mini::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4);
}
.top-block-mini .row {
  min-height: 434px;
  align-items: center;
  padding: 100px 0 100px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .top-block-mini .row {
    min-height: 200px;
    padding: 100px 0 40px;
  }
}
.top-block-mini .row div * {
  color: #fff;
}
.top-block-mini .row div h1 {
  font-weight: 700;
}
.top-block-mini .row div p {
  color: #666;
}
.top-block-big .phone {
  display: none;
}
@media (max-width: 1024px) {
  .top-block-big .phone {
    margin-right: 0;
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
.top-block-mini .phone {
  display: none;
}
@media (max-width: 1024px) {
  .top-block-mini .phone {
    margin-right: 0;
    display: block;
    position: absolute;
    bottom: 10px;
    right: 10px;
  }
}
/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
.simple-wysiwyg {
  text-align: center;
  margin: 113px 0 141px;
}
@media (max-width: 1440px) {
  .simple-wysiwyg {
    margin: 65px 0;
  }
}
@media (max-width: 1024px) {
  .simple-wysiwyg {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .simple-wysiwyg {
    margin: 35px 0;
  }
}
.simple-wysiwyg p {
  font-family: "Playfair Display";
  font-size: 22px;
  line-height: 177%;
  text-align: center;
  padding-bottom: 0;
}
.btn-arrow {
  font-weight: 600;
  font-size: 18px;
  color: #283c09;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  gap: 12px;
}
.btn-arrow:hover {
  color: #75b11b;
}
.btn-arrow:hover:before {
  color: #75b11b;
}
.btn-arrow:before {
  position: relative;
  content: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='39' height='39' rx='19.5' stroke='%23283C09'/%3E%3Cpath d='M15.4038 24.7886L24.461 15.7314M24.714 24.6707L24.5962 15.5962L15.5216 15.4784' stroke='%23283C09' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.services {
  margin: 113px 0 145px;
}
@media (max-width: 1024px) {
  .services {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .services {
    margin: 35px 0;
  }
}
.services .top-title {
  padding-bottom: 62px;
}
@media (max-width: 1024px) {
  .services .top-title {
    padding-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .services .top-title {
    padding-bottom: 25px;
  }
}
.services .top-title h2 {
  font-weight: 700;
  padding-bottom: 38px;
}
@media (max-width: 1024px) {
  .services .top-title h2 {
    padding-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .services .top-title h2 {
    padding-bottom: 15px;
  }
}
.services .top-title p {
  padding-bottom: 0;
}
.services .cards {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 51px;
}
@media (max-width: 1440px) {
  .services .cards {
    gap: 30px;
  }
}
@media (max-width: 1024px) {
  .services .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .services .cards {
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .services .cards {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    gap: 15px;
  }
}
.services .cards .card:nth-child(2) {
  grid-row-start: 1;
  grid-row-end: 3;
  grid-column-start: 2;
}
@media (max-width: 1024px) {
  .services .cards .card:nth-child(2) {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 2;
    grid-column-end: 3;
  }
}
@media (max-width: 480px) {
  .services .cards .card:nth-child(2) {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
  }
}
.services .cards .card .image {
  margin-bottom: 26px;
  opacity: 1;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .services .cards .card .image {
    aspect-ratio: 1.7443181818;
  }
}
.services .cards .card .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.services .cards .card .card-text h4 {
  font-family: "Playfair Display";
  font-size: 22px;
  padding-bottom: 9px;
  text-align: center;
}
.services .cards .card .card-text p {
  font-size: 16px;
  line-height: 162%;
  text-align: center;
  color: #666;
  padding-bottom: 0;
}
.services .cards a.card:hover .image {
  opacity: 0.6;
}
.contact .form-section .block-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 143px;
  padding-top: 101px;
}
@media (max-width: 1440px) {
  .contact .form-section .block-wrapper {
    padding-top: 60px;
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .contact .form-section .block-wrapper {
    gap: 45px;
    padding-top: 45px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .contact .form-section .block-wrapper {
    padding-top: 35px;
    gap: 35px;
  }
}
.contact .form-section .block-wrapper .form-wrapper {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.contact .form-section .block-wrapper .form-wrapper > h2 {
  padding-bottom: 0;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form {
  padding-top: 53px;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form input {
  border: 1px solid #c6c6c6;
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #111;
  font-family: "Raleway";
  height: 50px;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #111;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form select {
  height: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #111;
  font-family: "Raleway";
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form textarea {
  font-family: "Raleway";
  color: #000;
  padding: 10px 21px;
  max-height: 100px;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #111;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form .button-wrapper {
  margin-top: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  gap: 15px;
  position: relative;
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form .button-wrapper:before {
  position: relative;
  content: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='57' height='57' rx='28.5' fill='%23A4BC85' fill-opacity='0.2' stroke='%2349700E'/%3E%3Cpath d='M23.2159 34.9073L34.3947 23.7285M34.5958 34.6506L34.5616 23.5616L23.4726 23.5274' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.contact .form-section .block-wrapper .form-wrapper .wpcf7-form .button-wrapper input[type="submit"] {
  background-color: transparent;
  font-family: "Raleway";
  font-weight: 600;
  font-size: 20px;
  color: #49700e;
  padding: 0;
  border: none;
}
.contact .form-section .block-wrapper .card {
  position: relative;
  padding: 69px 50px 77px;
  -webkit-flex-basis: 39.3%;
  -moz-flex-basis: 39.3%;
  -ms-flex-preferred-size: 39.3%;
  flex-basis: 39.3%;
}
@media (max-width: 1440px) {
  .contact .form-section .block-wrapper .card {
    -webkit-flex-basis: 45.3%;
    -moz-flex-basis: 45.3%;
    -ms-flex-preferred-size: 45.3%;
    flex-basis: 45.3%;
    padding: 50px 45px;
  }
}
@media (max-width: 1024px) {
  .contact .form-section .block-wrapper .card {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .contact .form-section .block-wrapper .card {
    padding: 20px;
  }
}
.contact .form-section .block-wrapper .card .image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact .form-section .block-wrapper .card .image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: #111;
}
.contact .form-section .block-wrapper .card .card-text {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact .form-section .block-wrapper .card .card-text h3, .contact .form-section .block-wrapper .card .card-text h5, .contact .form-section .block-wrapper .card .card-text p {
  color: #fff;
}
.contact .form-section .block-wrapper .card .card-text h3 {
  padding-bottom: 38px;
}
@media (max-width: 1024px) {
  .contact .form-section .block-wrapper .card .card-text h3 {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .contact .form-section .block-wrapper .card .card-text h3 {
    padding-bottom: 10px;
  }
}
.contact .form-section .block-wrapper .card .card-text h5 {
  padding: 63px 0 45px;
}
@media (max-width: 1024px) {
  .contact .form-section .block-wrapper .card .card-text h5 {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .contact .form-section .block-wrapper .card .card-text h5 {
    padding: 10px 0;
  }
}
.contact .form-section .block-wrapper .card .card-text p {
  font-size: 16px;
  line-height: 162%;
  padding-bottom: 0;
}
.contact .form-section .block-wrapper .card .card-text .btn {
  background-color: rgba(255, 255, 255, 1);
  border-radius: 50vw;
  text-transform: capitalize;
  margin: 0;
  padding: 20px 63px;
  color: #000;
}
.contact .form-section .block-wrapper .card .card-text .btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
.contact .form-section .flex {
  gap: 11px 2%;
}
.contact .form-section .flex .col-6 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 49%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 49%;
  -ms-flex: 1 1 49%;
  flex: 1 1 49%;
}
.contact .form-section .flex .col-12 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (max-width: 1024px) {
  .contact .form-section .flex .md-12 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .contact .form-section .flex .sm-12 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.contact .left-right {
  margin: 128px 0 145px;
}
@media (max-width: 1440px) {
  .contact .left-right {
    margin: 80px 0 60px;
  }
}
@media (max-width: 1024px) {
  .contact .left-right {
    margin: 45px 0;
  }
}
.contact .left-right .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 29px;
}
@media (max-width: 1024px) {
  .contact .left-right .wrapper {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.contact .left-right .wrapper .contact-text .item {
  margin-bottom: 44px;
}
@media (max-width: 1440px) {
  .contact .left-right .wrapper .contact-text .item {
    margin-bottom: 24px;
  }
}
@media (max-width: 1024px) {
  .contact .left-right .wrapper .contact-text .item {
    margin-bottom: 14px;
  }
}
.contact .left-right .wrapper .contact-text .item h5 {
  font-weight: 700;
  font-size: 24px;
  padding-bottom: 5px;
}
.contact .left-right .wrapper .contact-text .item p {
  padding-bottom: 0;
  font-size: 20px;
  color: #666;
}
.contact .left-right .wrapper .contact-text .item p a {
  color: #666;
  word-break: break-all;
}
.contact .left-right .wrapper .contact-text .item p a:hover {
  color: #999;
}
.served-area {
  position: relative;
  align-self: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-basis: 66.18%;
  -moz-flex-basis: 66.18%;
  -ms-flex-preferred-size: 66.18%;
  flex-basis: 66.18%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (max-width: 480px) {
  .served-area {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.served-area .image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.served-area .image:before {
  position: absolute;
  content: "";
  background: linear-gradient(90deg, rgba(236, 236, 236, 0.1) 0%, #f7f7f7 100%);
  inset: 0;
}
@media (max-width: 480px) {
  .served-area .image:before {
    background: linear-gradient(90deg, rgba(236, 236, 236, 0.1) 0%, rgba(247, 247, 247, 0.563) 100%);
  }
}
.served-area .image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.served-area .left-card-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 25px 0 25px 75px;
}
@media (max-width: 1440px) {
  .served-area .left-card-text {
    padding: 45px 0 45px 45px;
  }
}
@media (max-width: 1024px) {
  .served-area .left-card-text {
    padding: 25px 0 25px 25px;
  }
}
@media (max-width: 480px) {
  .served-area .left-card-text {
    padding: 25px;
  }
}
.served-area .left-card-text h2, .served-area .left-card-text p {
  padding-bottom: 0;
}
.served-area .left-card-text h2 {
  font-weight: 700;
  font-size: clamp(25px, 4vw, 62px);
  line-height: 119%;
  letter-spacing: 0.02em;
  color: #fff;
  padding-bottom: 31px;
}
@media (max-width: 1440px) {
  .served-area .left-card-text h2 {
    padding-bottom: 15px;
  }
}
.served-area .left-card-text p {
  font-size: 18px;
  line-height: 167%;
  color: #fff;
}
.served-area .picture-flower {
  -webkit-flex-basis: 43%;
  -moz-flex-basis: 43%;
  -ms-flex-preferred-size: 43%;
  flex-basis: 43%;
  margin: -93px 0 -37px;
}
@media (max-width: 1440px) {
  .served-area .picture-flower {
    margin: -59px 0 -37px;
  }
}
.portfolio {
  padding: 127px 0 150px;
}
@media (max-width: 1440px) {
  .portfolio {
    padding: 80px 0;
  }
}
@media (max-width: 1024px) {
  .portfolio {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .portfolio {
    padding: 35px 0;
  }
}
.portfolio .wrapper .wrapper-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 410px);
  margin-bottom: 96px;
  gap: 55px;
}
@media (max-width: 1440px) {
  .portfolio .wrapper .wrapper-image {
    margin-bottom: 60px;
    gap: 40px;
    grid-template-rows: repeat(2, 310px);
  }
}
@media (max-width: 1024px) {
  .portfolio .wrapper .wrapper-image {
    margin-bottom: 35px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .portfolio .wrapper .wrapper-image {
    grid-template-rows: repeat(2, 210px);
  }
}
@media (max-width: 600px) {
  .portfolio .wrapper .wrapper-image {
    margin-bottom: 25px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}
.portfolio .wrapper .wrapper-image:nth-child(odd) .image:first-child {
  grid-row-start: 1;
  grid-row-end: 3;
  max-height: 876px;
}
@media (max-width: 600px) {
  .portfolio .wrapper .wrapper-image:nth-child(odd) .image:first-child {
    grid-row-start: 1;
    grid-row-end: 2;
    max-height: auto;
  }
}
.portfolio .wrapper .wrapper-image:nth-child(even) .image:last-child {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
  max-height: 876px;
}
@media (max-width: 600px) {
  .portfolio .wrapper .wrapper-image:nth-child(even) .image:last-child {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
  }
}
@media (max-width: 600px) {
  .portfolio .wrapper .wrapper-image .image {
    height: 350px;
  }
}
.portfolio .wrapper .wrapper-image .image img {
  height: 100%;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.text-with-right-image {
  position: relative;
  padding: 86px 0 122px;
}
@media (max-width: 1440px) {
  .text-with-right-image {
    padding: 60px 0 120px;
  }
}
@media (max-width: 1024px) {
  .text-with-right-image {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .text-with-right-image {
    padding: 35px 0;
  }
}
.text-with-right-image:before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(248, 248, 248, 0) 0%, #fafafa 100%);
  width: 100%;
}
.text-with-right-image .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 88px;
}
@media (max-width: 1440px) {
  .text-with-right-image .wrapper {
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
  }
}
@media (max-width: 1024px) {
  .text-with-right-image .wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.text-with-right-image .wrapper .left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.text-with-right-image .wrapper .left ul li {
  padding-left: 40px;
  margin-bottom: 20px;
  line-height: 189%;
  color: #666;
}
@media (max-width: 768px) {
  .text-with-right-image .wrapper .left ul li {
    margin-bottom: 10px;
  }
}
.text-with-right-image .wrapper .left ul li:before {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg width='23' height='21' viewBox='0 0 23 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.2039 0.522489C17.4186 4.51523 9.02344 13.2319 8.96122 13.2319C8.91974 13.2319 7.03744 12.3711 4.7818 11.3133C2.05948 10.0377 0.628312 9.39468 0.519419 9.39468C0.400155 9.39468 0.301633 9.44134 0.19274 9.55024C0.0527344 9.69024 0.0371782 9.73691 0.0631051 9.9184C0.0786613 10.0584 0.151257 10.1932 0.286077 10.3436C0.39497 10.4629 2.42764 12.677 4.80773 15.2645C7.55598 18.2513 9.18419 19.9832 9.27234 20.0143C9.47457 20.0869 9.66125 20.0351 9.81162 19.8795C9.9257 19.7603 21.7017 1.76179 22.1684 0.994358C22.381 0.652123 22.3862 0.486191 22.2099 0.273591C22.0958 0.138771 22.0388 0.112844 21.8365 0.112844C21.598 0.112844 21.5824 0.123214 21.2039 0.522489Z' fill='%2349700E'/%3E%3C/svg%3E");
  left: 0;
}
.text-with-right-image .wrapper .right {
  position: relative;
  -webkit-flex-basis: 49.3%;
  -moz-flex-basis: 49.3%;
  -ms-flex-preferred-size: 49.3%;
  flex-basis: 49.3%;
  text-align: end;
  padding-left: 87px;
}
@media (max-width: 1024px) {
  .text-with-right-image .wrapper .right {
    margin-bottom: 139px;
    padding-left: 47px;
  }
}
@media (max-width: 1024px) {
  .text-with-right-image .wrapper .right {
    margin-bottom: 100px;
    padding-left: 47px;
  }
}
@media (max-width: 480px) {
  .text-with-right-image .wrapper .right {
    margin-bottom: 60px;
  }
}
.text-with-right-image .wrapper .right .big-image {
  aspect-ratio: 1.3255319149;
}
.text-with-right-image .wrapper .right .big-image img {
  border-radius: 5px;
}
.text-with-right-image .wrapper .right .small-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 52%;
  aspect-ratio: 1.3940520446;
  z-index: 1;
  box-shadow: 25px -25px 0px 0px #fff;
  border-radius: 5px;
}
.text-with-right-image .wrapper .right .small-image img {
  border-radius: 5px;
}
@media (max-width: 1440px) {
  .text-with-right-image .wrapper .right .small-image {
    bottom: -139px;
  }
}
@media (max-width: 1024px) {
  .text-with-right-image .wrapper .right .small-image {
    bottom: -100px;
    box-shadow: 15px -15px 0px 0px #fff;
  }
}
@media (max-width: 480px) {
  .text-with-right-image .wrapper .right .small-image {
    bottom: -60px;
  }
}
.page-id-195 .simple-wysiwyg {
  margin-bottom: 0;
}
.two-image-with-text {
  margin: 129px 0 150px;
}
@media (max-width: 1440px) {
  .two-image-with-text {
    margin: 65px 0;
  }
}
@media (max-width: 1024px) {
  .two-image-with-text {
    margin: 45px 0;
  }
}
@media (max-width: 768px) {
  .two-image-with-text {
    margin: 35px 0;
  }
}
.two-image-with-text.reverse .wrapper {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .two-image-with-text.reverse .wrapper {
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.two-image-with-text.reverse .wrapper .images {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.two-image-with-text .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  gap: 97px;
}
@media (max-width: 1440px) {
  .two-image-with-text .wrapper {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .two-image-with-text .wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .two-image-with-text .wrapper {
    gap: 10px;
  }
}
.two-image-with-text .wrapper .images {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-flex-basis: 61.1%;
  -moz-flex-basis: 61.1%;
  -ms-flex-preferred-size: 61.1%;
  flex-basis: 61.1%;
  gap: 60px;
}
.two-image-with-text .wrapper .images.small-image-top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  align-items: start;
}
.two-image-with-text .wrapper .images.small-image-top .small {
  margin-top: -50px;
}
@media (max-width: 1024px) {
  .two-image-with-text .wrapper .images.small-image-top .small {
    margin: auto 0;
  }
}
@media (max-width: 1440px) {
  .two-image-with-text .wrapper .images {
    -webkit-flex-basis: 50.1%;
    -moz-flex-basis: 50.1%;
    -ms-flex-preferred-size: 50.1%;
    flex-basis: 50.1%;
  }
}
@media (max-width: 1440px) {
  .two-image-with-text .wrapper .images {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .two-image-with-text .wrapper .images {
    text-align: center;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .two-image-with-text .wrapper .images {
    gap: 10px;
  }
}
.two-image-with-text .wrapper .images .image {
  height: auto;
}
.two-image-with-text .wrapper .images .image img {
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.two-image-with-text .wrapper .images .small {
  -webkit-flex-basis: 35%;
  -moz-flex-basis: 35%;
  -ms-flex-preferred-size: 35%;
  flex-basis: 35%;
  aspect-ratio: 0.8430851064;
}
.two-image-with-text .wrapper .images .big {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.two-image-with-text .wrapper .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.block-with-flex-container {
  margin: 45px 0;
}
@media (max-width: 1024px) {
  .block-with-flex-container.text-context .wrapper {
    gap: 25px;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.block-with-flex-container.reverse .wrapper {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .block-with-flex-container.reverse .wrapper {
    gap: 25px;
    -webkit-box-direction: reverse;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.block-with-flex-container.reverse .wrapper .text {
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 0px;
  padding-left: 100px;
}
@media (max-width: 1440px) {
  .block-with-flex-container.reverse .wrapper .text {
    padding-left: 0px;
  }
}
.block-with-flex-container .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 152px;
}
@media (max-width: 1440px) {
  .block-with-flex-container .wrapper {
    gap: 70px;
  }
}
@media (max-width: 1024px) {
  .block-with-flex-container .wrapper {
    gap: 35px;
  }
}
@media (max-width: 768px) {
  .block-with-flex-container .wrapper {
    gap: 25px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.block-with-flex-container .wrapper .flexible-content {
  -webkit-flex-basis: 28%;
  -moz-flex-basis: 28%;
  -ms-flex-preferred-size: 28%;
  flex-basis: 28%;
}
.block-with-flex-container .wrapper .flexible-content .image {
  height: 100%;
}
.block-with-flex-container .wrapper .flexible-content .image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.block-with-flex-container .wrapper .text {
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 100px;
}
@media (max-width: 1440px) {
  .block-with-flex-container .wrapper .text {
    padding-right: 0px;
  }
}
.block-with-flex-container .wrapper .text p:last-child {
  padding-bottom: 0;
}
.block-with-flex-container .wrapper .text h5 {
  line-height: 177%;
  text-align: center;
  color: #111;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .block-with-flex-container .wrapper .text h5 {
    font-size: 18px;
  }
}
.image-with-background {
  position: relative;
  margin: 91px 0 150px;
}
@media (max-width: 1440px) {
  .image-with-background {
    margin: 60px 0;
  }
}
@media (max-width: 1024px) {
  .image-with-background {
    margin: 35px 0;
  }
}
@media (max-width: 768px) {
  .image-with-background {
    margin: 25px 0;
  }
}
.image-with-background .image {
  position: relative;
}
.image-with-background .image:before {
  position: absolute;
  content: "";
  inset: 0 0 4px;
  background: #000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
}
@media (max-width: 768px) {
  .image-with-background .image {
    height: 300px;
  }
}
.image-with-background .image img {
  object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .image-with-background .image img {
    height: 100%;
  }
}
.image-with-background .container {
  padding: 77px 101px 80px;
  margin-top: -128px;
  background-color: #fff;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #fff;
  border-radius: 5px;
}
@media (max-width: 1440px) {
  .image-with-background .container {
    padding: 77px;
    margin-top: -60px;
  }
}
@media (max-width: 1024px) {
  .image-with-background .container {
    padding: 40px;
    margin-top: -30px;
  }
}
@media (max-width: 768px) {
  .image-with-background .container {
    padding: 20px;
    margin-top: -128px;
  }
}
.image-with-background .container h5 {
  padding-bottom: 0;
  line-height: 177%;
}
@media (max-width: 768px) {
  .image-with-background .container h5 {
    font-size: 18px;
  }
}
.contact-block {
  margin-bottom: 151px;
}
@media (max-width: 1024px) {
  .contact-block {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .contact-block {
    margin-bottom: 40px;
  }
}
.contact-block .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 111px;
}
@media (max-width: 1440px) {
  .contact-block .container {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .contact-block .container {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0px;
  }
}
.contact-block .container .background-image {
  z-index: -1;
  position: absolute;
  inset: 0;
}
.contact-block .container .background-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.contact-block .container .form-text {
  -webkit-flex-basis: 46.8%;
  -moz-flex-basis: 46.8%;
  -ms-flex-preferred-size: 46.8%;
  flex-basis: 46.8%;
  padding: 51px 0 58px 83px;
}
@media (max-width: 1440px) {
  .contact-block .container .form-text {
    padding: 51px 0 58px 50px;
  }
}
@media (max-width: 1024px) {
  .contact-block .container .form-text {
    padding: 20px;
  }
}
.contact-block .container .form-text h2 {
  color: #fff;
}
.contact-block .container .image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  bottom: -82px;
  position: relative;
  margin: auto 0 0;
}
@media (max-width: 1024px) {
  .contact-block .container .image {
    display: none;
  }
}
.contact-block .container .wpcf7-form input {
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #fff;
  font-family: "Raleway";
  height: 50px;
}
.contact-block .container .wpcf7-form input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #fff;
}
.contact-block .container .wpcf7-form select {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #fff;
  font-family: "Raleway";
}
.contact-block .container .wpcf7-form textarea {
  font-family: "Raleway";
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 21px;
  max-height: 100px;
}
.contact-block .container .wpcf7-form textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 181%;
  color: #fff;
}
.contact-block .container .wpcf7-form .button-wrapper {
  margin-top: 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  gap: 15px;
  position: relative;
}
.contact-block .container .wpcf7-form .button-wrapper:before {
  position: relative;
  content: url("data:image/svg+xml,%3Csvg width='58' height='58' viewBox='0 0 58 58' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect opacity='0.3' width='58' height='58' rx='29' fill='white'/%3E%3Cpath d='M23.2159 34.9073L34.3947 23.7285M34.5958 34.6506L34.5616 23.5616L23.4726 23.5274' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.contact-block .container .wpcf7-form .button-wrapper input[type="submit"] {
  background-color: transparent;
  font-family: "Raleway";
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  padding: 0;
  border: none;
}
.contact-block .container .flex {
  gap: 11px 2%;
}
.contact-block .container .flex .col-6 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 49%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 49%;
  -ms-flex: 1 1 49%;
  flex: 1 1 49%;
}
.contact-block .container .flex .col-12 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 100%;
  -moz-box-flex: 1;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}
@media (max-width: 1024px) {
  .contact-block .container .flex .md-12 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
@media (max-width: 768px) {
  .contact-block .container .flex .sm-12 {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -moz-box-flex: 1;
    -moz-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
}
.container-above-footer {
  margin-bottom: -80px;
}
@media (max-width: 1024px) {
  .container-above-footer {
    margin-bottom: -60px;
  }
}
.container-above-footer .container {
  position: relative;
  background: #393939;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  gap: 20px;
  padding: 27px 0 27px 49px;
}
@media (max-width: 1440px) {
  .container-above-footer .container {
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .container-above-footer .container {
    padding: 15px;
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}
.container-above-footer .container p:last-child {
  padding-bottom: 0;
}
.container-above-footer .container .title {
  font-family: "Playfair Display";
  letter-spacing: 0.02em;
  color: #fff;
  -webkit-flex-basis: 29%;
  -moz-flex-basis: 29%;
  -ms-flex-preferred-size: 29%;
  flex-basis: 29%;
  font-size: 32px;
}
@media (max-width: 1024px) {
  .container-above-footer .container .title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .container-above-footer .container .title {
    font-size: 24px;
  }
}
.container-above-footer .container .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.container-above-footer .container .text p {
  color: #dfdfdf;
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
}
.container-above-footer .container .button-wrapper {
  -webkit-flex-basis: 290px;
  -moz-flex-basis: 290px;
  -ms-flex-preferred-size: 290px;
  flex-basis: 290px;
}
@media (max-width: 1024px) {
  .container-above-footer .container .button-wrapper {
    -webkit-flex-basis: auto;
    -moz-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    position: relative;
    width: 100%;
    padding: 10px;
  }
}
@media (max-width: 768px) {
}
.container-above-footer .container .button-wrapper:before {
  position: absolute;
  content: "";
  height: 100%;
  top: 0;
  width: 100%;
  background: #3c6728;
  border-radius: 5px;
  z-index: 0;
  right: 0;
  width: 290px;
}
@media (max-width: 1024px) {
  .container-above-footer .container .button-wrapper:before {
    width: 100%;
  }
}
@media (max-width: 768px) {
}
.container-above-footer .container .button-wrapper a.btn-cus {
  position: relative;
  z-index: 1;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  gap: 16px;
  font-family: "Raleway";
  font-weight: 600;
  font-size: 20px;
  color: #fff;
  padding: 0;
  border: none;
}
.container-above-footer .container .button-wrapper a.btn-cus:before {
  position: relative;
  content: url("data:image/svg+xml,%3Csvg width='55' height='55' viewBox='0 0 55 55' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='53.1464' height='53.4331' rx='26.5732' stroke='white'/%3E%3Cpath d='M21.2159 32.9073L32.3947 21.7285M32.5958 32.6506L32.5616 21.5616L21.4726 21.5274' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
footer {
  background: #1b1b1b;
  padding: 137px 0 66px;
}
@media (max-width: 1024px) {
  footer {
    padding: 80px 0 40px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 80px 0 30px;
  }
}
footer .wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 124px;
}
@media (max-width: 1440px) {
  footer .wrapper {
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  footer .wrapper {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  footer .wrapper {
    text-align: center;
  }
}
footer .wrapper .logo-with-text {
  -webkit-flex-basis: 36.87%;
  -moz-flex-basis: 36.87%;
  -ms-flex-preferred-size: 36.87%;
  flex-basis: 36.87%;
}
footer .wrapper .logo-with-text .logo_foot {
  max-width: 220px;
  display: inline-block;
}
@media (max-width: 768px) {
  footer .wrapper .logo-with-text .logo_foot img {
    margin: 0 auto;
  }
}
footer .wrapper .logo-with-text .text-below-logo {
  margin-top: 20px;
}
footer .wrapper .logo-with-text .text-below-logo p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #898989;
}
footer .wrapper .logo-with-text .text-below-logo p:last-child {
  padding-bottom: 0;
}
footer .wrapper .navigation {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 74px;
}
@media (max-width: 1440px) {
  footer .wrapper .navigation {
    gap: 44px;
  }
}
@media (max-width: 1024px) {
  footer .wrapper .navigation {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  footer .wrapper .navigation {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
footer .wrapper .navigation .level_a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 74px;
}
footer .wrapper .navigation .level_a > li em {
  display: none;
}
@media (max-width: 1440px) {
  footer .wrapper .navigation .level_a {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  footer .wrapper .navigation .level_a {
    -webkit-box-direction: normal;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    gap: 10px;
  }
}
footer .wrapper .navigation .level_a > .menu-item > a {
  display: inline-block;
  margin-bottom: 21px;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: rgba(255, 255, 255, 1);
}
@media (max-width: 1024px) {
  footer .wrapper .navigation .level_a > .menu-item > a {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  footer .wrapper .navigation .level_a > .menu-item > a {
    margin-bottom: 2px;
  }
}
footer .wrapper .navigation .level_a > .menu-item > a:hover {
  color: rgba(255, 255, 255, 0.8);
}
footer .wrapper .navigation .level_a > .menu-item .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 13px;
}
@media (max-width: 1024px) {
  footer .wrapper .navigation .level_a > .menu-item .sub-menu .menu-item:not(:last-child) {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  footer .wrapper .navigation .level_a > .menu-item .sub-menu .menu-item:not(:last-child) {
    margin-bottom: 2px;
  }
}
footer .wrapper .navigation .level_a > .menu-item .sub-menu .menu-item > a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: rgba(172, 172, 172, 1);
}
footer .wrapper .navigation .level_a > .menu-item .sub-menu .menu-item > a:hover {
  color: rgba(172, 172, 172, 0.6);
}
footer .wrapper .navigation .contact-links .title-contact {
  display: inline-block;
  margin-bottom: 21px;
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #fff;
}
@media (max-width: 1024px) {
  footer .wrapper .navigation .contact-links .title-contact {
    margin-bottom: 6px;
  }
}
@media (max-width: 768px) {
  footer .wrapper .navigation .contact-links .title-contact {
    margin-bottom: 2px;
  }
}
footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items {
  position: relative;
}
footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items i {
  position: absolute;
  left: -26px;
  top: 7px;
  color: #acbc97;
  font-size: 20px;
}
footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items i.fa-phone {
  transform: rotateY(180deg);
}
@media (max-width: 768px) {
  footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items i {
    display: none;
  }
}
footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items .title {
  font-weight: 500;
  font-size: 16px;
  line-height: 200%;
  color: #fff;
}
footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items a {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  word-break: break-all;
  color: rgba(172, 172, 172, 1);
}
footer .wrapper .navigation .contact-links .contact-link-wrapper .contact-link-items a:hover {
  color: rgba(172, 172, 172, 0.6);
}
/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
.quality-block .quality-block-info {
  margin-bottom: 100px;
}
@media (max-width: 1366px) {
  .quality-block .quality-block-info {
    margin-bottom: 60px;
  }
}
@media (max-width: 1024px) {
  .quality-block .quality-block-info {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .quality-block .quality-block-info {
    margin-bottom: 30px;
  }
}
.quality-block .quality-block-item {
  border-right: 1px solid rgba(164, 188, 133, 1);
  padding-right: 45px;
  -webkit-flex-basis: 30.7%;
  -moz-flex-basis: 30.7%;
  -ms-flex-preferred-size: 30.7%;
  flex-basis: 30.7%;
  margin-bottom: 40px;
}
@media (max-width: 1366px) {
  .quality-block .quality-block-item {
    padding-right: 25px;
    -webkit-flex-basis: 31.5%;
    -moz-flex-basis: 31.5%;
    -ms-flex-preferred-size: 31.5%;
    flex-basis: 31.5%;
  }
}
@media (max-width: 1024px) {
  .quality-block .quality-block-item {
    margin-bottom: 30px;
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-preferred-size: 48.5%;
    flex-basis: 48.5%;
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 768px) {
  .quality-block .quality-block-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(164, 188, 133, 1);
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .quality-block .quality-block-item {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .quality-block .quality-block-item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.quality-block .quality-block-item:nth-child(3n) {
  padding-right: 0;
  border-right: none;
}
@media (max-width: 1024px) {
  .quality-block .quality-block-item:nth-child(3n) {
    border-right: 1px solid rgba(164, 188, 133, 1);
    padding-right: 25px;
  }
}
@media (max-width: 768px) {
  .quality-block .quality-block-item:nth-child(3n) {
    padding-right: 0;
    border-right: none;
  }
}
@media (max-width: 1024px) {
  .quality-block .quality-block-item:nth-child(odd) {
    border-right: 1px solid rgba(164, 188, 133, 1);
    padding-right: 25px;
  }
}
@media (max-width: 768px) {
  .quality-block .quality-block-item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
}
.quality-block .quality-block-item .quality-block-item-top {
  margin-bottom: 15px;
}
.quality-block .quality-block-item-icon {
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width: 480px) {
  .quality-block .quality-block-item-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0 auto 12px;
  }
}
.quality-block .quality-block-item-icon img {
  max-height: 100%;
  object-fit: contain;
  height: 50px;
  width: auto;
}
.quality-block .quality-block-item-title-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  min-height: 65px;
}
@media (max-width: 1024px) {
  .quality-block .quality-block-item-title-box {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .quality-block .quality-block-item-title-box {
    text-align: center;
    display: block;
  }
}
.quality-block .quality-block-item-title {
  font-weight: 700;
  line-height: 31px;
  padding: 0;
}
.last-no-spacing > *:last-child:not(.btn) {
  margin-bottom: 0;
  padding-bottom: 0;
}
.space-p {
  padding: 100px 0;
}
@media (max-width: 1366px) {
  .space-p {
    padding: 60px 0;
  }
}
@media (max-width: 1024px) {
  .space-p {
    padding: 40px 0;
  }
}
@media (max-width: 480px) {
  .space-p {
    padding: 30px 0;
  }
}
.space-m {
  margin: 100px auto;
}
@media (max-width: 1366px) {
  .space-m {
    margin: 60px auto;
  }
}
@media (max-width: 1024px) {
  .space-m {
    margin: 40px auto;
  }
}
@media (max-width: 480px) {
  .space-m {
    margin: 30px auto;
  }
}
.choose-block {
  position: relative;
  padding: 100px 0 0;
  margin-bottom: 75px;
}
@media (max-width: 1366px) {
  .choose-block {
    padding: 60px 0 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .choose-block {
    padding: 40px 0 0;
    margin-bottom: 35px;
  }
}
@media (max-width: 480px) {
  .choose-block {
    padding: 30px 0 0;
    margin-bottom: 30px;
  }
}
.choose-block .choose-block-bg {
  position: absolute;
  z-index: 0;
  left: 0;
  height: 465px;
  width: 100%;
  max-height: 100%;
  top: 0;
}
.choose-block .choose-block-bg:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background: linear-gradient(0deg, rgba(40, 60, 9, 0.3), rgba(40, 60, 9, 0.3)), linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}
.choose-block .choose-block-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.choose-block .choose-block-info {
  margin-bottom: 50px;
}
@media (max-width: 1024px) {
  .choose-block .choose-block-info {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .choose-block .choose-block-info {
    margin-bottom: 30px;
  }
}
.choose-block .choose-block-item {
  flex: 1;
  margin-bottom: 40px;
  background: #fff;
  padding: 62px 35px 64px 42px;
  border: 1px solid #fff;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.05);
}
@media (max-width: 1366px) {
  .choose-block .choose-block-item {
    padding: 35px 30px;
  }
}
@media (max-width: 1024px) {
  .choose-block .choose-block-item {
    margin-bottom: 35px;
    padding: 30px 20px;
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}
@media (max-width: 768px) {
  .choose-block .choose-block-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 30px;
    padding: 30px 15px;
    border-radius: 5px;
  }
}
@media (max-width: 480px) {
  .choose-block .choose-block-item {
    text-align: center;
    padding: 25px 12px;
  }
}
@media (max-width: 768px) {
  .choose-block .choose-block-item:last-child {
    margin-bottom: 0;
  }
}
.choose-block .choose-block-item .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #666;
}
.choose-block .choose-block-item .choose-block-item-top {
  margin-bottom: 15px;
}
.choose-block .choose-block-item-icon {
  margin-bottom: 35px;
  width: 50px;
  height: 50px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}
@media (max-width: 1366px) {
  .choose-block .choose-block-item-icon {
    -webkit-flex-basis: 33.33%;
    -moz-flex-basis: 33.33%;
    -ms-flex-preferred-size: 33.33%;
    flex-basis: 33.33%;
    margin-bottom: 25px;
  }
}
@media (max-width: 1024px) {
  .choose-block .choose-block-item-icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .choose-block .choose-block-item-icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    margin: 0 auto 15px;
  }
}
.choose-block .choose-block-item-icon img {
  max-height: 100%;
  object-fit: contain;
  height: 50px;
  width: auto;
}
.choose-block .choose-block-item-title-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  min-height: 65px;
}
@media (max-width: 1024px) {
  .choose-block .choose-block-item-title-box {
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .choose-block .choose-block-item-title-box {
    text-align: center;
    display: block;
  }
}
.choose-block .choose-block-item-title {
  font-weight: 700;
  line-height: 32px;
  padding: 0;
  font-size: 24px;
  max-width: 230px;
}
@media (max-width: 1024px) {
  .choose-block .choose-block-item-title {
    font-size: 19px;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .choose-block .choose-block-item-title {
    font-size: 18px;
    line-height: 1.2;
  }
}
@media (max-width: 576px) {
  .choose-block .choose-block-item-title {
    font-size: 17px;
  }
}
.choose-block .choose-block-items {
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .choose-block .choose-block-items {
    border-radius: 0;
    overflow: inherit;
  }
}
.white-color {
  color: #fff;
}
.white-color h1, .white-color h2, .white-color h3, .white-color h4, .white-color h5, .white-color h6, .white-color li, .white-color p {
  color: #fff;
}
.white-color a:not(.btn) {
  text-decoration: none;
  color: #fff;
}
.white-color a:not(.btn):hover {
  color: #09212f;
}
.plant-design-block {
  margin-top: 100px;
}
@media (max-width: 1366px) {
  .plant-design-block {
    margin-top: 60px;
  }
}
@media (max-width: 1024px) {
  .plant-design-block {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .plant-design-block {
    margin-top: 30px;
  }
}
.plant-design-block .plant-design-block-info {
  margin-bottom: 60px;
}
@media (max-width: 1366px) {
  .plant-design-block .plant-design-block-info {
    margin-bottom: 50px;
  }
}
@media (max-width: 1024px) {
  .plant-design-block .plant-design-block-info {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .plant-design-block .plant-design-block-info {
    margin-bottom: 30px;
  }
}
.plant-design-block .plant-design-block-item {
  -webkit-flex-basis: 31%;
  -moz-flex-basis: 31%;
  -ms-flex-preferred-size: 31%;
  flex-basis: 31%;
  margin-bottom: 97px;
}
@media (max-width: 1366px) {
  .plant-design-block .plant-design-block-item {
    -webkit-flex-basis: 31.5%;
    -moz-flex-basis: 31.5%;
    -ms-flex-preferred-size: 31.5%;
    flex-basis: 31.5%;
    margin-bottom: 50px;
  }
}
@media (max-width: 1240px) {
  .plant-design-block .plant-design-block-item {
    -webkit-flex-basis: 48.5%;
    -moz-flex-basis: 48.5%;
    -ms-flex-preferred-size: 48.5%;
    flex-basis: 48.5%;
  }
}
@media (max-width: 1024px) {
  .plant-design-block .plant-design-block-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .plant-design-block .plant-design-block-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .plant-design-block .plant-design-block-item {
    text-align: center;
  }
}
.plant-design-block .plant-design-block-item .text h5 {
  padding-bottom: 8px;
}
.plant-design-block .plant-design-block-item .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #666;
}
.plant-design-block .plant-design-item-image {
  border-radius: 5px;
  display: block;
  overflow: hidden;
  margin-bottom: 25px;
  line-height: 0;
  height: 257px;
}
@media (max-width: 768px) {
  .plant-design-block .plant-design-item-image {
    margin-bottom: 15px;
  }
}
.plant-design-block .plant-design-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.served-area-box {
  -webkit-flex-basis: 66%;
  -moz-flex-basis: 66%;
  -ms-flex-preferred-size: 66%;
  flex-basis: 66%;
  margin-bottom: 97px;
  padding-left: 90px;
  position: relative;
  border-radius: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (max-width: 1366px) {
  .served-area-box {
    margin-bottom: 50px;
    padding-left: 30px;
  }
}
@media (max-width: 1240px) {
  .served-area-box {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
@media (max-width: 1024px) {
  .served-area-box {
    margin-bottom: 30px;
    padding-left: 25px;
  }
}
@media (max-width: 768px) {
  .served-area-box {
    margin-bottom: 20px;
    padding-left: 20px;
  }
}
@media (max-width: 600px) {
  .served-area-box {
    padding: 0 15px;
  }
}
.served-area-box:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 5px;
  top: 0;
  background: linear-gradient(90deg, rgba(236, 236, 236, 0.1) 0.94%, #f7f7f7 100%), #1d3910;
}
@media (max-width: 600px) {
  .served-area-box:before {
    background: linear-gradient(90deg, rgba(236, 236, 236, 0.1) 100%, #f7f7f7 100%), #1d3910;
  }
}
.served-area-box .text {
  -webkit-flex-basis: 47%;
  -moz-flex-basis: 47%;
  -ms-flex-preferred-size: 47%;
  flex-basis: 47%;
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
@media (max-width: 1366px) {
  .served-area-box .text {
    padding: 60px 0;
  }
}
@media (max-width: 1240px) {
  .served-area-box .text {
    padding: 50px 0;
  }
}
@media (max-width: 1024px) {
  .served-area-box .text {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .served-area-box .text {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .served-area-box .text {
    padding: 30px 0 15px;
  }
}
.served-area-box .text p {
  line-height: 167%;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
.served-area-box .text h2 {
  font-size: 62px;
  line-height: 119%;
  letter-spacing: 0.02em;
  padding-bottom: 40px;
}
@media (max-width: 1366px) {
  .served-area-box .text h2 {
    font-size: 45px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .served-area-box .text h2 {
    font-size: 43px;
    padding-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .served-area-box .text h2 {
    font-size: 35px;
  }
}
.served-area-box .served-area-image {
  -webkit-flex-basis: 50%;
  -moz-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  position: relative;
  z-index: 1;
  display: block;
}
@media (max-width: 1240px) {
  .served-area-box .served-area-image {
    -webkit-flex-basis: 40%;
    -moz-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }
}
@media (max-width: 600px) {
  .served-area-box .served-area-image {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    height: 320px;
  }
}
.served-area-box .served-area-image img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1366px) {
  .served-area-box .served-area-image img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    padding: 15px 0;
    transform: none;
    position: static;
  }
}
.served-area-box .served-area-bg {
  line-height: 0;
  position: absolute;
  z-index: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 15%;
  top: 0;
  border-radius: 5px;
}
.served-area-box .served-area-bg img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.our-clients-block .our-clients-info {
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(158, 158, 158, 0.5);
}
@media (max-width: 1366px) {
  .our-clients-block .our-clients-info {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .our-clients-block .our-clients-info {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .our-clients-block .our-clients-info {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.our-clients-block .our-clients-item {
  background: #fff;
  border: 1px solid #efefef;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  -webkit-flex-basis: 32.5%;
  -moz-flex-basis: 32.5%;
  -ms-flex-preferred-size: 32.5%;
  flex-basis: 32.5%;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 56px 38px 57px 49px;
}
@media (max-width: 1366px) {
  .our-clients-block .our-clients-item {
    padding: 36px 28px 37px 29px;
  }
}
@media (max-width: 1024px) {
  .our-clients-block .our-clients-item {
    margin-bottom: 25px;
    padding: 30px 20px;
    -webkit-flex-basis: 49%;
    -moz-flex-basis: 49%;
    -ms-flex-preferred-size: 49%;
    flex-basis: 49%;
  }
}
@media (max-width: 768px) {
  .our-clients-block .our-clients-item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    padding: 30px 15px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .our-clients-block .our-clients-item:last-child {
    margin-bottom: 0;
  }
}
.our-clients-block .our-clients-item .text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #666;
}
.our-clients-block .our-clients-item-top {
  margin-bottom: 50px;
}
@media (max-width: 1366px) {
  .our-clients-block .our-clients-item-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 1024px) {
  .our-clients-block .our-clients-item-top {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .our-clients-block .our-clients-item-top {
    margin-bottom: 20px;
  }
}
.our-clients-block .fill-star {
  color: #ffb21c;
}
.our-clients-block .rate {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .our-clients-block .rate {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .our-clients-block .rate {
    margin-bottom: 15px;
  }
}
.our-clients-block .rate .star {
  width: 25px;
  height: 25px;
}
.our-clients-block .rate .star:last-child {
  margin-right: 0;
}
.our-clients-block .our-clients-item-bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}
.our-clients-block .our-clients-item-bottom svg {
  margin-right: 16px;
}
@media (max-width: 1024px) {
  .our-clients-block .our-clients-item-bottom svg {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
}
@media (max-width: 480px) {
  .our-clients-block .our-clients-item-bottom svg {
    width: 50px;
    height: 50px;
  }
}
.our-clients-block .our-clients-item-bottom .our-clients-item-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #222;
  margin-bottom: 5px;
  display: block;
}
.our-clients-block .our-clients-item-bottom .our-clients-item-position {
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #777;
}
.served-area-block {
  position: relative;
}
@media (max-width: 1024px) {
  .served-area-block {
    padding-bottom: 20px;
  }
}
.served-area-block:before {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  top: 0;
  background: #1d3910;
}
.served-area-block .served-area-bg {
  opacity: 15%;
  position: absolute;
  line-height: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.served-area-block .served-area-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.served-area-block .row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .served-area-block .row {
    display: block;
  }
}
.served-area-block .served-area-left {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 65px 0;
  margin-right: 70px;
}
@media (max-width: 1366px) {
  .served-area-block .served-area-left {
    padding: 60px 0;
  }
}
@media (max-width: 1024px) {
  .served-area-block .served-area-left {
    padding: 40px 0;
    display: block;
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .served-area-block .served-area-left {
    padding: 30px 0;
  }
}
.served-area-block .served-area-title {
  -webkit-flex-basis: 345px;
  -moz-flex-basis: 345px;
  -ms-flex-preferred-size: 345px;
  flex-basis: 345px;
  margin-right: 4%;
  padding: 0;
  font-size: 70px;
  line-height: 106%;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  color: #fff;
}
@media (max-width: 1024px) {
  .served-area-block .served-area-title {
    font-size: 45px;
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .served-area-block .served-area-title {
    font-size: 43px;
  }
}
@media (max-width: 576px) {
  .served-area-block .served-area-title {
    font-size: 35px;
  }
}
.served-area-block .served-area-title strong {
  letter-spacing: normal;
}
.served-area-block .served-area-info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 7%;
}
@media (max-width: 1024px) {
  .served-area-block .served-area-info {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}
.served-area-block .served-area-image {
  margin-top: -25px;
  height: 100%;
  -webkit-flex-basis: 293px;
  -moz-flex-basis: 293px;
  -ms-flex-preferred-size: 293px;
  flex-basis: 293px;
}
@media (max-width: 1024px) {
  .served-area-block .served-area-image {
    margin-top: 0px;
    width: 200px;
    margin: 0 auto;
  }
}
.served-area-block .served-area-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
/*
 Flexbox grid @mixin
 EXAMPLE
 .flexbox {
 @include boxGrid(5, 4%);
 }
 */
.our-process {
  padding: 80px 0;
  background: #fff;
}
@media (max-width: 1024px) {
  .our-process {
    padding: 45px 0;
  }
}
@media (max-width: 768px) {
  .our-process {
    padding: 35px 0;
  }
}
.our-process .items {
  counter-reset: section;
  border-top: 1px solid #c7c7c7;
  padding-top: 50px;
}
.our-process .items .item {
  margin-bottom: 55px;
  border-bottom: 1px solid #c7c7c7;
  transition: all 0.3s ease;
}
.our-process .items .item.active {
  padding-bottom: 50px;
}
.our-process .items .item.active .image {
  height: auto;
}
.our-process .items .item.active .image img {
  filter: grayscale(0);
  opacity: 1;
}
.our-process .items .item.active .info .sub-title .arrow:before {
  rotate: -90deg;
}
.our-process .items .item:nth-child(n+10) .info .sub-title:before {
  content: counter(section);
}
.our-process .items .item .image {
  height: 126px;
  -webkit-flex-basis: 36%;
  -moz-flex-basis: 36%;
  -ms-flex-preferred-size: 36%;
  flex-basis: 36%;
}
@media (max-width: 768px) {
  .our-process .items .item .image {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 25px;
  }
}
.our-process .items .item .image img {
  height: 100%;
  border-radius: 5px;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  object-fit: cover;
  width: 100%;
  object-position: top;
  opacity: 0.6;
}
.our-process .items .item .info {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 55px;
}
@media (max-width: 1024px) {
  .our-process .items .item .info {
    margin-left: 20px;
  }
}
@media (max-width: 768px) {
  .our-process .items .item .info {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-left: 0;
  }
}
.our-process .items .item .info .sub-title {
  margin-bottom: 23px;
  padding-bottom: 0;
  font-size: 36px;
  position: relative;
  padding-left: 88px;
  cursor: pointer;
  padding-right: 120px;
}
@media (max-width: 1024px) {
  .our-process .items .item .info .sub-title {
    padding-right: 60px;
    font-size: 28px;
    padding-left: 55px;
  }
}
@media (max-width: 480px) {
  .our-process .items .item .info .sub-title {
    padding-right: 40px;
    font-size: 22px;
    padding-left: 45px;
  }
}
.our-process .items .item .info .sub-title:before {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 50px;
  color: #49700e;
  font-weight: 700;
  font-family: 'Playfair Display';
  counter-increment: section;
  content: "0" counter(section);
  line-height: 0.8;
}
@media (max-width: 1024px) {
  .our-process .items .item .info .sub-title:before {
    font-size: 38px;
  }
}
@media (max-width: 480px) {
  .our-process .items .item .info .sub-title:before {
    font-size: 28px;
  }
}
.our-process .items .item .info .sub-title .arrow {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid #283c09;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .our-process .items .item .info .sub-title .arrow {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 480px) {
  .our-process .items .item .info .sub-title .arrow {
    width: 30px;
    height: 30px;
  }
}
.our-process .items .item .info .sub-title .arrow:before {
  position: absolute;
  background-image: url('../img/arrow.png');
  content: '';
  width: 31px;
  height: 25px;
  background-size: cover;
  font-size: 0;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .our-process .items .item .info .sub-title .arrow:before {
    width: 18px;
    height: 15px;
  }
}
@media (max-width: 480px) {
  .our-process .items .item .info .sub-title .arrow:before {
    width: 12px;
    height: 10px;
  }
}
.our-process .items .item .info .text {
  display: none;
  max-width: 507px;
  margin-right: 120px;
}
@media (max-width: 1024px) {
  .our-process .items .item .info .text {
    margin-right: 60px;
  }
}
@media (max-width: 1024px) {
  .our-process .items .item .info .text {
    margin-right: 40px;
  }
}
.our-process .items .item .info .text p {
  font-size: 16px;
}
.gallery-block {
  position: relative;
  padding-top: 90px;
}
@media (max-width: 1024px) {
  .gallery-block {
    padding-top: 45px;
  }
}
@media (max-width: 768px) {
  .gallery-block {
    padding-top: 35px;
  }
}
.gallery-block .bg-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 64%;
}
.gallery-block .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-block .title-link {
  padding-bottom: 35px;
}
@media (max-width: 1024px) {
  .gallery-block .title-link {
    padding-bottom: 25px;
  }
}
.gallery-block .title-link .title {
  color: #fff;
  padding-bottom: 0;
}
.gallery-block .title-link .link {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
@media (max-width: 480px) {
  .gallery-block .title-link .link {
    font-size: 16px;
  }
}
.gallery-block .title-link .link:hover {
  color: #49700e;
}
.gallery-block .title-link .link .arrow {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 12px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}
@media (max-width: 1024px) {
  .gallery-block .title-link .link .arrow {
    width: 30px;
    height: 30px;
    margin-right: 8px;
  }
}
.gallery-block .title-link .link .arrow:before {
  position: absolute;
  background-image: url('../img/arrow.png');
  content: '';
  width: 15px;
  height: 12px;
  background-size: cover;
  font-size: 0;
  transition: all 0.3s ease;
  rotate: -90deg;
}
.gallery-block .slider-gallery {
  padding: 70px 55px;
  background: #fff;
  position: relative;
}
@media (max-width: 1024px) {
  .gallery-block .slider-gallery {
    padding: 30px;
  }
}
.gallery-block .slider-gallery .btn-group .swiper-button {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 105px;
  height: 105px;
  background: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  margin-top: 0;
}
@media (max-width: 1024px) {
  .gallery-block .slider-gallery .btn-group .swiper-button {
    width: 60px;
    height: 60px;
  }
}
.gallery-block .slider-gallery .btn-group .swiper-button:hover {
  opacity: 0.7;
}
.gallery-block .slider-gallery .btn-group .swiper-button:after {
  content: url('../img/arrow-slider.png');
  font-size: 0;
}
.gallery-block .slider-gallery .btn-group .swiper-button.swiper-button-next {
  right: 0;
}
.gallery-block .slider-gallery .btn-group .swiper-button.swiper-button-next:after {
  rotate: 180deg;
}
.gallery-block .slider-gallery .btn-group .swiper-button.swiper-button-prev {
  left: 0;
}
.gallery-block .swiper .swiper-slide {
  aspect-ratio: 1.43;
}
.gallery-block .swiper .swiper-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
  border-radius: 5px;
}
