/**
Blog pages styles
*/
.blog-grid-block.articles-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid-block.articles-wrapper article {
  display: flex;
  flex-direction: column;
}
.blog-grid-block.articles-wrapper article .blog-img-link {
  display: block;
  height: 240px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}
.blog-grid-block.articles-wrapper article .blog-img-link .blog-img {
  height: 240px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  transform: scale(1.2);
}
.blog-grid-block.articles-wrapper article .blog-img-link .blog-img:hover {
  transform: scale(1);
}
.blog-grid-block.articles-wrapper article .entry-title {
  margin-bottom: 8px;
}
.blog-grid-block.articles-wrapper article .entry-title a {
  color: #76B00A;
  font-family: "Century Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}
.blog-grid-block.articles-wrapper article .entry-excerpt {
  color: #475467;
  font-family: "Century Gothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: stretch;
  flex: 1;
  margin-bottom: 16px;
}
.blog-grid-block.articles-wrapper article .read-more {
  display: block;
  align-self: flex-start;
}

@media screen and (max-width: 540px) {
  .blog-grid-block.articles-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}
.cf7-calc-modal {
  display: flex;
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  color: #101828;
  font-family: "Century Gothic";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}
.cf7-calc-modal .cf7-calc-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 650px;
  position: relative;
  animation: fadeIn 0.3s ease;
}
.cf7-calc-modal .cf7-calc-modal-content .modal-header {
  margin-bottom: 24px;
}
.cf7-calc-modal .cf7-calc-modal-content .modal-header .header-title {
  font-weight: 400;
  font-size: 20px;
  line-height: normal;
}
.cf7-calc-modal .cf7-calc-modal-content .modal-header .cf7-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.cf7-calc-modal .cf7-calc-modal-content label {
  margin-bottom: 18px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  line-height: 1.6;
}
.cf7-calc-modal .cf7-calc-modal-content label input,
.cf7-calc-modal .cf7-calc-modal-content label textarea {
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #D0D5DD;
  background: #FFF;
  /* Shadow/xs */
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.cf7-calc-modal .cf7-calc-modal-content label textarea {
  max-height: 130px;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group br {
  display: none;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group-icon {
  display: flex;
  flex-direction: row;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group-icon .wpcf7-form-control-icon-wrap {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #D0D5DD;
  background-color: #FFF;
  flex: 1 0 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  padding-right: 8px;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group-icon .wpcf7-form-control-icon-wrap i {
  width: 24px;
  height: 21px;
  display: block;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group-icon .wpcf7-form-control-wrap {
  width: 100%;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group-icon .wpcf7-form-control-wrap input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  padding-left: 8px;
}
.cf7-calc-modal .cf7-calc-modal-content .input-group-icon .wpcf7-form-control-wrap input:focus-visible, .cf7-calc-modal .cf7-calc-modal-content .input-group-icon .wpcf7-form-control-wrap input:focus {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.cf7-calc-modal .cf7-calc-modal-content .submit-button-wrapper p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.cf7-calc-modal .cf7-calc-modal-content .submit-button-wrapper p input[type=submit] {
  width: 240px;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: #76B00A;
  /* Shadows/shadow-xs */
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border-color: transparent;
  color: #FFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.cf7-calc-modal .cf7-calc-modal-content .submit-button-wrapper p input[type=submit]:hover {
  cursor: pointer;
  background-color: rgba(118, 176, 10, 0.8);
}
.cf7-calc-modal .cf7-calc-modal-content .wpcf7-response-output {
  margin: 5px 0;
}

.home-calculate-order-block {
  padding: 100px 0;
}
.home-calculate-order-block .block-header .block-title {
  color: #101828;
  font-family: "Century Gothic";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.home-calculate-order-block .block-header .block-subtitle {
  text-overflow: ellipsis;
  overflow: hidden;
  color: #344054;
  font-family: "Century Gothic";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  margin-bottom: 24px;
}

@media screen and (max-width: 540px) {
  .home-calculate-order-block {
    padding: 40px 0;
    text-align: center;
  }
  .home-calculate-order-block .block-header .block-title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .home-calculate-order-block .block-header .block-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.home-seo-text-block {
  padding-top: 70px;
  padding-bottom: 70px;
}
.home-seo-text-block .block-header {
  padding-bottom: 8px;
}
.home-seo-text-block .block-header .block-subtitle {
  color: #76B00A;
  font-family: "Century Gothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.home-seo-text-block .block-header .block-title {
  color: #101828;
  font-family: "Century Gothic";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  /* 140% */
}
.home-seo-text-block .seo-text-wrapper {
  display: flex;
  flex-direction: row;
  gap: 30px;
}
.home-seo-text-block .seo-text-wrapper .single-seo-text {
  flex: 1;
  color: #475467;
  font-family: "Century Gothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.home-seo-text-block .seo-text-wrapper .single-seo-text ul {
  margin-left: 15px;
}

@media screen and (max-width: 540px) {
  .home-seo-text-block .seo-text-wrapper {
    flex-direction: column;
  }
}
.blog-wrapper .navigation.posts-navigation {
  margin: 45px 0;
}
.blog-wrapper .navigation.posts-navigation .nav-links {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 15px;
}
.blog-wrapper .navigation.posts-navigation .nav-links .nav-next,
.blog-wrapper .navigation.posts-navigation .nav-links .nav-previous {
  display: inline-flex;
}
.blog-wrapper .navigation.posts-navigation .nav-links .nav-next a,
.blog-wrapper .navigation.posts-navigation .nav-links .nav-previous a {
  text-decoration: none;
  font-family: "Century Gothic";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #fff;
  background-color: #76AF0A;
}
.blog-wrapper .navigation.posts-navigation .nav-links .nav-next a:hover,
.blog-wrapper .navigation.posts-navigation .nav-links .nav-previous a:hover {
  background-color: rgba(118, 175, 10, 0.8);
}
.blog-wrapper .navigation.posts-navigation .nav-links .nav-next {
  margin-left: auto;
}
.blog-wrapper .navigation.posts-navigation .nav-links .nav-previous {
  margin-right: auto;
}
/*# sourceMappingURL=blog-page.css.map */
