/*!***********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/pages/blog.scss ***!
  \***********************************************************************************************************************************************/

/*** LTR websites ***/

body .projectCard {
  height: 100%;
}

.formPopup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 20px;
}

.formPopup_wrapper {
  width: 100%;
  max-width: 1200px;
  position: relative;
}

.formPopup_wrapper-active {
  animation: 0.3s forwards show_from_bottom;
}

.formPopup_wrapper-disable {
  animation: 0.3s forwards hide_from_bottom;
}

.formPopup_wrapper-x {
  position: absolute;
  z-index: 2;
  top: -45px;
  right: 0;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border: none;
  background: 0 0;
}

.formPopup_wrapper-x::after,
.formPopup_wrapper-x::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #fff;
  border-radius: 5px;
  margin-top: -6px;
}

.formPopup_wrapper-x::after {
  transform: rotate(-45deg);
}

.formPopup_wrapper-x::before {
  transform: rotate(45deg);
}

.formPopup_wrapper-title {
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}

.formPopup_wrapper-title span {
  color: #5d9b12;
}

.formPopup_wrapper-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.1) 0%, rgba(217, 217, 217, 0) 86.14%);
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.formPopup_wrapper-form > * {
  position: relative;
  z-index: 1;
}

.formPopup_wrapper-form:before {
  content: "";
  width: 200px;
  height: 1px;
  position: absolute;
  top: 0;
  left: -200px;
  background-color: #fff;
  opacity: 0.3;
  animation: moveTop 2s infinite linear;
}

.formPopup_wrapper-form::after {
  content: "";
  height: 200px;
  width: 1px;
  position: absolute;
  top: -200px;
  right: 0;
  background-color: #fff;
  opacity: 0.3;
  animation: moveRight 2s infinite linear;
}

.formPopup_wrapper-form .border {
  position: static !important;
}

.formPopup_wrapper-form .border:before {
  content: "";
  width: 200px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: -200px;
  background-color: #fff;
  opacity: 0.3;
  animation: moveBottom 2s infinite linear;
}

.formPopup_wrapper-form .border::after {
  content: "";
  height: 200px;
  width: 1px;
  position: absolute;
  top: -200px;
  left: 0;
  background-color: #fff;
  opacity: 0.3;
  animation: moveLeft 2s infinite linear;
}

.formPopup_wrapper-form .gfield--input-type-textarea {
  flex-basis: 100% !important;
}

.formPopup_wrapper-form .gfield--input-type-textarea textarea {
  border: 1px solid hsla(0, 0%, 100%, 0.5);
}

.formPopup_wrapper-form .gfield--type-image_hopper .gfield_label {
  top: -15px !important;
  transform: unset !important;
}

.formPopup_wrapper-form .gfield--type-image_hopper input {
  font-size: 14px !important;
  width: 100%;
  padding: 8px !important;
}

.formPopup_wrapper-form .gform_confirmation_message {
  font-size: 20px;
}

.formPopup_wrapper-form .gform_validation_errors {
  display: none;
}

.formPopup_wrapper-form .validation_message {
  padding: 0 !important;
  background: unset !important;
  border: unset !important;
  text-align: left !important;
}

.formPopup_wrapper-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../../.././assets/images/faq_select.svg);
  background-repeat: no-repeat;
  background-position: 100%;
  background-size: 20px;
}

.formPopup_wrapper-form .gform_wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.formPopup_wrapper-form .gform_fields {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
}

.formPopup_wrapper-form .gform_fields .gfield {
  flex-basis: 100%;
  position: relative;
  flex-basis: calc(50% - 16px) !important;
  margin: 0 4px;
  width: calc(50% - 16px) !important;
  flex-grow: 1;
}

.formPopup_wrapper-form .gform_fields select {
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 0 !important;
}

@media (max-width: 992px) {
  .formPopup_wrapper-form .gform_fields select {
    line-height: 1 !important;
    margin-bottom: 5px !important;
  }
}

.formPopup_wrapper-form .gform_fields select option {
  background-color: #000000;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox {
  flex-basis: 100%;
  margin: 0 !important;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .ginput_container_checkbox {
  display: flex;
  width: 100%;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .gfield_checkbox {
  width: 100%;
  display: flex;
  position: relative;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .gfield_checkbox > div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: fit-content;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .gfield_checkbox > div label {
  position: relative;
  margin-left: 25px;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .gfield_checkbox > div label::after {
  content: "";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  border-radius: 1px;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .gfield_checkbox > div input:checked ~ label::after {
  background-repeat: no-repeat;
  background-size: 70% 70%;
  background-position: center;
  background-image: url(../../.././assets/images/check-mark.svg);
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox .gfield_checkbox > div input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
}

.formPopup_wrapper-form .gform_fields .gfield--type-checkbox label {
  text-align: left;
  font-size: 12px !important;
  max-width: 100% !important;
}

.formPopup_wrapper-form .gform_fields .gfield_label {
  font-size: 14px !important;
  font-weight: 400 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  pointer-events: none;
  margin-bottom: 0 !important;
  transition: 0.3s;
}

.formPopup_wrapper-form .gform_fields .gfield_required {
  display: none !important;
}

.formPopup_wrapper-form .gform_fields .ginput_container {
  width: 100%;
}

.formPopup_wrapper-form .gform_fields .ginput_container input {
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
  .formPopup_wrapper-form .gform_fields .ginput_container input {
    line-height: 1 !important;
    margin-bottom: 5px !important;
  }
}

.formPopup_wrapper-form .gform_footer {
  font-family: "Anton", sans-serif;
  background: linear-gradient(to right, #78b52e, #528f07, #78b52e, #528f07);
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 160px;
  padding: 8px 40px;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto !important;
  margin-top: 20px !important;
  padding: 0 !important;
}

.formPopup_wrapper-form .gform_footer:hover {
  padding: 4px 36px;
}

.formPopup_wrapper-form .gform_footer input {
  padding: 10px 20px !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
}

.loaderCard {
  display: block;
  width: 215px;
  height: 220px;
  background: linear-gradient(0.25turn, transparent, #000, transparent), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524);
  background-color: #000;
  background-repeat: no-repeat;
  background-size: 215px 220px, 215px 130px, 100px 15px, 150px 15px;
  background-position: -215px 0, 0 0, 15px 150px, 15px 180px;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  to {
    background-position: 215px 0, 0 0, 15px 150px, 15px 180px;
  }
}

.loaderProduct {
  display: block;
  width: 215px;
  height: 220px;
  background: linear-gradient(0.25turn, transparent, #000, transparent), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524);
  background-color: #111111;
  background-repeat: no-repeat;
  background-size: 215px 220px, 215px 130px, 100px 15px, 0 0px;
  background-position: -215px 0, 0 0, 60px 150px, 15px;
  animation: loading 1.5s infinite;
  border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
}

.loaderProduct.hidden {
  display: none;
}

.loaderPhone {
  display: block;
  width: 20px;
  min-height: 20px;
  background: linear-gradient(0.25turn, transparent, #000, transparent), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524);
  background-color: #111111;
  background-repeat: no-repeat;
  background-size: 215px 220px, 215px 130px, 100px 15px, 0 0px;
  background-position: -215px 0, 0 0, 60px 150px, 15px;
  animation: loading 1.5s infinite;
}

.loaderPhone.hidden {
  display: none;
}

@keyframes loading {
  to {
    background-position: 215px 0, 0 0, 60px 150px, 15px 180px;
  }
}

.postCard {
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
}

.postCard_img {
  max-width: 100%;
  height: 250px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 12px;
}

.postCard_img img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.postCard_title {
  margin-bottom: 12px;
  text-decoration: underline;
  text-decoration-color: #78b52e;
}

.projectCard {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 220px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  height: auto;
  color: #fff;
  overflow: hidden;
}

.projectCard::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  background-image: radial-gradient(at center, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4) 60%, transparent);
}

.projectCard .wrapper {
  position: relative;
  z-index: 1;
}

.projectCard::after {
  transition: 0.3s;
  opacity: 1;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7) 59%) !important;
}

@media (max-width: 992px) {
  .projectCard::after {
    opacity: 1;
    background-image: unset !important;
    background: rgba(0, 0, 0, 0.6);
  }
}

.projectCard:hover::after {
  opacity: 1;
  bottom: unset;
  top: 50%;
  transform: scale(5) translateY(-50%);
}

.projectCard:hover .projectCard_background {
  transform: scale(1.2);
}

.projectCard:hover .projectCard-title::after {
  transform-origin: left;
  transform: scaleX(1);
}

.projectCard_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.2s;
}

.projectCard-hide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 80px;
  max-width: 65%;
  opacity: 0;
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .projectCard-hide {
    opacity: 1;
  }
}

.projectCard-hide svg {
  width: 23px;
  margin-bottom: 10px;
}

.projectCard-hide svg g {
  opacity: 1;
}

.projectCard-quote {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.projectCard-link {
  font-family: "Anton", sans-serif;
  background: linear-gradient(90deg, #78b52e 0%, #528f07 100%);
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 160px;
  padding: 8px 40px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.15);
}

.projectCard-link:hover {
  padding: 4px 36px;
}

.projectCard-link:hover {
  border: 4px solid #fff;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.35);
}

.projectCard-content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #fff;
}

.projectCard-title {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 2px;
  color: #fff;
  position: relative;
  width: fit-content;
}

.projectCard-title::after {
  animation: gradient 2000ms linear infinite both;
  background: #5d9b12;
  background-size: 200% 200%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: right;
  transform: scaleX(0);
}

.projectCard-title:hover::after {
  transform-origin: left;
  transform: scaleX(1);
}

.projectCard-type {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.projectCard-locations {
  font-size: 14px;
  font-weight: 400;
}

.loaderCard {
  display: block;
  width: 215px;
  height: 220px;
  background: linear-gradient(0.25turn, transparent, #000, transparent), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524), linear-gradient(#242524, #242524);
  background-color: #000;
  background-repeat: no-repeat;
  background-size: 215px 220px, 215px 130px, 100px 15px, 150px 15px;
  background-position: -215px 0, 0 0, 15px 150px, 15px 180px;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  to {
    background-position: 215px 0, 0 0, 15px 150px, 15px 180px;
  }
}

.search {
  padding-bottom: 40px;
  position: relative;
}

.search > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  transform: translateY(-500px);
  opacity: 0.3;
  z-index: 0;
}

.search .wrapper {
  position: relative;
  z-index: 1;
}

.search_search {
  border-radius: 8px;
  background: #111;
  padding: 10px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 30px;
  position: relative;
}

.search_search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  pointer-events: none;
}

.search_search .twitter-typeahead,
.search_search .tt-menu {
  width: 100%;
}

.search_search .tt-dataset {
  width: 100%;
}

.search_search .tt-suggestion {
  font-size: 16px;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s;
  background-color: #000000;
}

.search_search .tt-suggestion:hover {
  background-color: #111;
}

.search_search input {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  color: #fff;
}

.search_search input::placeholder {
  opacity: 1;
  color: #fff;
}

.search_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: -4px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.search_btns-btn {
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  border-radius: 100px;
  border: 1px solid #fff;
  background-color: #101010;
  margin: 8px;
  transition: 0.3s;
}

.search_btns-btn:hover {
  background-color: #fff;
  border: 1px solid #000000;
  color: #000000;
}

.search_btns-active {
  background-color: #fff;
  border: 1px solid #000000;
  color: #000000;
}

.search .post {
  margin-top: -10px;
}

.search .post .search_all-posts,
.search .post .search_all-loader {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: -10px;
  margin-left: -10px;
}

.search .post .search_all-posts > *,
.search .post .search_all-loader > * {
  margin-bottom: 20px;
  flex-basis: calc(100% / 1 - 20px);
  margin: 10px;
  flex-grow: 0;
}

.search .project {
  margin-top: -3px;
}

.search .project .search_all-posts,
.search .project .search_all-loader {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-right: -6px;
  margin-left: -6px;
}

.search .project .search_all-posts > *,
.search .project .search_all-loader > * {
  margin-bottom: 12px;
  flex-basis: calc(100% / 1 - 12px);
  margin: 6px;
  flex-grow: 0;
}

.search_all-load {
  margin: 60px auto 0;
  font-family: "Anton", sans-serif;
  background: linear-gradient(90deg, #78b52e 0%, #528f07 100%);
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 160px;
  padding: 8px 40px;
  text-transform: uppercase;
  width: fit-content;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.15);
}

.search_all-load:hover {
  padding: 4px 36px;
}

.search_all-load:hover {
  border: 4px solid #fff;
  box-shadow: 0px 6px 6px 0px rgba(120, 181, 46, 0.35);
}

.search_all-paginate {
  display: flex;
  flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  column-gap: 0;
  row-gap: 10px;
  display: none;
  margin-top: 60px;
}

.search_all-paginate .next,
.search_all-paginate .prev {
  display: none;
}

.search_all-paginate a,
.search_all-paginate span {
  background: #0d0d0d;
  display: flex;
  flex-direction: row;
  justify-content: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  padding: 12px;
  align-self: stretch;
  width: 63px;
  height: 43px;
  color: #525252;
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.search_all-paginate a.active,
.search_all-paginate a:active,
.search_all-paginate a:focus,
.search_all-paginate a:hover,
.search_all-paginate span.active,
.search_all-paginate span:active,
.search_all-paginate span:focus,
.search_all-paginate span:hover {
  color: #fff;
}

.search_all-paginate a.active::after,
.search_all-paginate a:active::after,
.search_all-paginate a:focus::after,
.search_all-paginate a:hover::after,
.search_all-paginate span.active::after,
.search_all-paginate span:active::after,
.search_all-paginate span:focus::after,
.search_all-paginate span:hover::after {
  content: "";
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #78b52e 59%, #78b52e 30%, rgba(0, 0, 0, 0));
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.search_all-paginate span {
  color: #fff;
}

.search_all-paginate span::after {
  content: "";
  background: linear-gradient(to left, rgba(0, 0, 0, 0), #78b52e 59%, #78b52e 30%, rgba(0, 0, 0, 0));
  height: 4px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.search .gform_wrapper {
  color: #fff;
  background: linear-gradient(209deg, #000 -41.6%, #232323 92.2%), #fff;
  padding: 20px;
}

.search .gform_wrapper .gform_confirmation_message {
  font-size: 20px;
}

.search .gform_wrapper .gform_validation_errors {
  display: none;
}

.search .gform_wrapper .validation_message {
  padding: 0 !important;
  background: unset !important;
  border: unset !important;
  text-align: left !important;
}

.search .gform_wrapper .gform_title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.search .gform_wrapper .gform_confirmation_message {
  color: #fff;
}

.search .gform_wrapper .gform_footer {
  font-family: "Anton", sans-serif;
  background: linear-gradient(to right, #78b52e, #528f07, #78b52e, #528f07);
  border-radius: 100px;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 40px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1;
  min-width: 160px;
  padding: 8px 40px;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto !important;
  margin-top: 20px !important;
  padding: 0 !important;
  width: 100%;
}

.search .gform_wrapper .gform_footer:hover {
  padding: 4px 36px;
}

.search .gform_wrapper .gform_footer input {
  padding: 10px 20px !important;
  margin: 0 !important;
  width: 100%;
  height: 100%;
}

.search .gform_wrapper .gform_description {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 30px;
}

.search .gform_wrapper .gform_fields {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  align-items: flex-end;
}

.search .gform_wrapper .gform_fields .gfield {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  flex-basis: 100%;
}

.search .gform_wrapper .gform_fields .gfield_label {
  font-size: 14px !important;
  font-weight: 400 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  pointer-events: none;
  margin-bottom: 0 !important;
  transition: 0.3s;
}

.search .gform_wrapper .gform_fields .gfield_required {
  display: none !important;
}

.search .gform_wrapper .gform_fields .ginput_container {
  width: 100%;
}

.search .gform_wrapper .gform_fields .ginput_container input {
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.topBanner {
  padding: 40px 0;
  text-align: center;
}

.topBanner br {
  display: none;
}

.topBanner_title {
  margin-bottom: 15px;
  color: #fff;
}

.topBanner_description {
  color: #fff;
}