@charset "UTF-8";
@font-face {
  font-family: Century Gothic;
  font-display: swap;
  src: url("../fonts/centurygothic.ttf") format("truetype"), url("../fonts/CenturyGothic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Century Gothic;
  font-display: swap;
  src: url("../fonts/centurygothic_bold.ttf") format("truetype"), url("../fonts/CenturyGothic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-family: "Century Gothic", Arial, sans-serif;
}
@font-face {
  font-family: Century Gothic;
  font-display: swap;
  src: url("../fonts/centurygothic.ttf") format("truetype"), url("../fonts/CenturyGothic-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Century Gothic;
  font-display: swap;
  src: url("../fonts/centurygothic_bold.ttf") format("truetype"), url("../fonts/CenturyGothic-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-family: "Century Gothic", Arial, sans-serif;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img,
svg {
  vertical-align: top;
}

button {
  cursor: pointer;
  border: none;
}

* {
  position: relative;
}

html {
  font-size: 10px;
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  font-family: Century Gothic, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #262626;
}
body.menu-open {
  overflow: hidden;
  height: 100vh;
}
body.scroll-disable {
  height: 100vh;
  overflow: hidden;
}
section {
  overflow: hidden;
  z-index: 1;
  padding: 12rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  section {
    padding: 8rem 0 0 0;
  }
}
section:last-child {
  padding-bottom: 6rem;
}
@media only screen and (max-width: 768px) {
  section:last-child {
    padding-bottom: 4rem;
  }
}

main {
  flex: 1;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1260px;
  padding: 0 10px;
}
@media only screen and (max-width: 666px) {
  .container {
    padding: 0 16px;
  }
}

.tac {
  text-align: center;
  margin: 0 auto;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.img-maxw {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
h5,
p,
span,
div,
a,
li,
textarea,
input,
button,
input::placeholder,
textarea::placeholder {
  font-size: 1.6rem;
  font-style: normal;
  line-height: 120%;
  color: inherit;
}

span {
  font-size: inherit;
}

h1 {
  font-size: 3.2rem;
  line-height: 1.1;
}
@media only screen and (min-width: 576px) {
  h1 {
    font-size: calc(3.2rem + 8 * (100vw - 375px) / 625);
  }
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 5.6rem;
  }
}

h2 {
  font-size: 2.8rem;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) {
  h2 {
    font-size: calc(2.8rem + 8 * (100vw - 375px) / 625);
  }
}
@media only screen and (min-width: 992px) {
  h2 {
    font-size: 3.2rem;
  }
}

h3 {
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (min-width: 576px) {
  h3 {
    font-size: calc(2rem + 4 * (100vw - 375px) / 625);
  }
}
@media only screen and (min-width: 992px) {
  h3 {
    font-size: 2.4rem;
  }
}

h4 {
  font-size: 2rem;
  line-height: 1.4;
}
@media only screen and (min-width: 576px) {
  h4 {
    font-size: calc(2rem + 4 * (100vw - 375px) / 625);
  }
}
@media only screen and (min-width: 992px) {
  h4 {
    font-size: 2.4rem;
  }
}

p {
  font-size: 1.6rem;
  line-height: 1.75;
}
@media only screen and (min-width: 992px) {
  p {
    font-size: 1.8rem;
  }
}

form label {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #080520;
  text-align: left;
}

.wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
  background: #fff;
  border: 1px solid rgba(93, 95, 239, 0.2);
  border-radius: 1.6rem;
  padding: 2rem 1.8rem;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  color: #080520;
}

*[data-popup] {
  cursor: pointer;
}

.bttn {
  width: 190px;
  background: none;
  display: flex;
  border: none;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  transition: all 0.3s linear;
  color: #000000;
  min-width: 190px;
  padding-bottom: 18.5px;
}
.bttn svg {
  transition: all 0.3s linear;
}
.bttn:hover {
  color: #535353;
  border-bottom: 1px solid #535353;
}
.bttn:hover svg {
  transform: rotate(-30deg);
}
.bttn:hover svg path {
  fill: #535353;
}
.bttn__text {
  font-family: Manrope;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  letter-spacing: -0.02em;
}

.bttn-loading,
.wpcf7 .wpcf7-form.submitting .wpcf7-submit {
  background-image: url(../img/general/spinner.svg);
  background-repeat: no-repeat !important;
  background-position: center !important;
  text-shadow: none;
  color: transparent;
}

.bttn--small {
  padding: 1rem 2rem;
  border-radius: 1.2rem;
}

.bttn--big {
  font-size: 1.8rem;
  padding: 2.4rem 4rem;
  border-radius: 2.2rem;
}

.bttn-apply {
  font-family: Manrope;
  cursor: pointer;
  text-transform: none !important;
  background-color: #E20404;
  border-radius: 10rem;
  max-width: 38.6rem;
  width: 100%;
  margin-top: 2rem;
  padding: 2.4rem 2rem !important;
}

.bttn-apply-small {
  max-width: 14rem;
  padding: 1.3rem 3rem !important;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

body {
  background-color: #FFFFFF;
}

@keyframes header-anim {
  0% {
    transform: translateY(-40%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.header {
  width: 100%;
  z-index: 12;
  transition: 0.3s linear;
  transition: all 0.3s linear;
  position: fixed;
  animation: header-anim 0.5s linear forwards;
  opacity: 0;
  background-color: #fff;
  height: 49.6px;
}
.header .container {
  padding-right: 0;
}
@media only screen and (max-width: 1097px) {
  .header .container {
    padding-right: 15px;
  }
}
@media only screen and (max-width: 992px) {
  .header {
    transition: all 0.3s linear;
  }
}
.header.header--scrolled {
  background: #FFF;
  box-shadow: 0 16px 30px 0 rgba(0, 0, 0, 0.05);
}
.header__wrapper {
  display: flex;
  align-items: center;
  transition: all 1s linear;
  gap: 186px;
}
@media only screen and (min-width: 1450px) {
  .header__wrapper {
    justify-content: space-between;
    gap: initial;
  }
}
@media only screen and (max-width: 1240px) {
  .header__wrapper {
    justify-content: space-between;
    gap: initial;
  }
}
@media only screen and (max-width: 600px) {
  .header__wrapper a {
    transition: all 0.4s linear;
  }
}
.header__links {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
@media only screen and (max-width: 1097px) {
  .header__links {
    display: none;
  }
}
.header__link {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #1E1E1E;
  transition: all 0.3s linear;
}
.header__link:hover {
  color: #000;
}
.header__button {
  width: 290px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s linear;
}
@media only screen and (min-width: 1450px) {
  .header__button {
    position: relative;
  }
}
@media only screen and (max-width: 1240px) {
  .header__button {
    position: relative;
  }
}
@media only screen and (max-width: 1097px) {
  .header__button {
    display: none;
  }
}
.header__button:hover {
  color: #000;
}
@media only screen and (max-width: 500px) {
  .header__button {
    font-family: Century Gothic;
    font-size: 15px;
    font-weight: 700;
    line-height: 19.5px;
    letter-spacing: -0.02em;
    text-align: left;
  }
}
@media only screen and (max-width: 500px) {
  .header__logo svg {
    width: 113px;
  }
}
.header__burger {
  display: block;
  width: 3.2rem;
  height: 1.5rem;
  z-index: 11;
}
@media only screen and (min-width: 1098px) {
  .header__burger {
    display: none;
  }
}
.header__burger:before,
.header__burger span, .header__burger:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  left: 50%;
  background-color: #090909;
  transform: translateX(-50%);
  transition: top 0.15s linear 0.15s, transform 0.15s linear, background 0.3s linear, -webkit-transform 0.15s linear, opacity 0.3s linear;
}
.header__burger span {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header__burger:before {
  top: 0;
}
.header__burger:after {
  top: 100%;
  transform: translate(-50%, -100%);
  transition: all 0.3s linear;
}
.header__burger.active span {
  transform: translate(-50%, -100%);
  width: 0;
}
.header__burger.active:before {
  top: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header__burger.active:after {
  top: 100%;
  transform: rotate(-45deg) translate(-2px, -14px);
}

body.menu-open .header__wrapper a {
  left: 0;
  transform: translateX(0);
}

.burger__wrapper {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0;
  backdrop-filter: blur(3px);
  display: none;
  background: #FFFFFF;
}
.burger__main {
  height: 100%;
  display: flex;
  color: #E5DBC6;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.burger__first-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.burger__button {
  width: 100%;
  max-width: 343px;
  text-align: center;
  margin: 0 auto;
}
.burger__menu-links {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1E1E1E;
  width: 190px;
  transition: color 0.3s linear;
  display: block;
}
.burger__menu-links:hover {
  color: #074F2B;
}

.button-main {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  background: #074F2B;
  color: #fff;
  text-align: center;
  padding: 16px 24px;
}

.banner {
  padding-top: 0;
}
@media only screen and (max-width: 700px) {
  .banner {
    margin: 0;
  }
}
.banner__container {
  margin-top: 93px;
  height: 100%;
}
.banner__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 700px) {
  .banner__content {
    flex-direction: column;
  }
}
.banner__first {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 46px;
}
.banner__header {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 52px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #074F2B;
  max-width: 925px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 700px) {
  .banner__header {
    font-family: Century Gothic;
    font-weight: 700;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0%;
  }
}
.banner__text {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #000C0D;
  margin-bottom: 32px;
}
@media only screen and (max-width: 700px) {
  .banner__text {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0%;
  }
}
.banner__btn {
  height: fit-content;
  width: 210px;
}
@media only screen and (max-width: 500px) {
  .banner__btn {
    margin-bottom: 0;
    max-width: 400px;
    width: 100%;
  }
}
.banner__second {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
  overflow: hidden;
}
@media only screen and (max-width: 700px) {
  .banner__second {
    flex-direction: column;
    gap: 8px;
  }
}
.banner__second .banner-img-left,
.banner__second .banner-img-right {
  width: 50%;
  transition: width 0.5s ease;
  cursor: pointer;
  height: 476px;
}
.banner__second .banner-img-left img,
.banner__second .banner-img-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 700px) {
  .banner__second .banner-img-left,
  .banner__second .banner-img-right {
    height: initial;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.banner__second .banner-img-left {
  opacity: 0;
  transform: translateX(-50px);
}
.banner__second .banner-img-left::after {
  content: "До";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  color: #074F2B;
  padding: 19px;
  font-size: 26px;
}
.banner__second .banner-img-right {
  opacity: 0;
  transform: translateX(50px);
}
.banner__second .banner-img-right::after {
  content: "Після";
  position: absolute;
  bottom: 0;
  right: 0;
  background: #074F2B;
  color: #fff;
  padding: 19px;
  font-size: 26px;
}
@media only screen and (max-width: 700px) {
  .banner__second .banner-img-right::after {
    left: 0;
    right: initial;
  }
}
.second {
  padding-bottom: 40px;
}
@media only screen and (max-width: 700px) {
  .second {
    margin: 0;
  }
}
.second__wrapper {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
}
@media only screen and (max-width: 1100px) {
  .second__wrapper {
    flex-direction: column;
  }
}
@media only screen and (max-width: 700px) {
  .second__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.second__left {
  max-width: 610px;
}
@media only screen and (max-width: 1100px) {
  .second__left {
    max-width: 100%;
  }
}
@media only screen and (max-width: 700px) {
  .second__left {
    width: 100%;
  }
}
.second__header {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #074F2B;
  margin-bottom: 32px;
}
@media only screen and (max-width: 700px) {
  .second__header {
    font-family: Century Gothic;
    font-size: 32px;
    font-weight: 700;
    line-height: 41.6px;
    letter-spacing: -0.02em;
    text-align: center;
  }
}
.second__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 46px;
  max-width: 505px;
}
@media only screen and (max-width: 1190px) {
  .second__text {
    max-width: 100%;
    flex-direction: row;
    gap: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .second__text {
    flex-direction: column;
    gap: 16px;
  }
}
.second__text p {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #3e3e3e;
  opacity: 0;
}
@media only screen and (max-width: 700px) {
  .second__text p {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
  }
}
.second__stats {
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 1190px) {
  .second__stats {
    gap: 50px;
  }
}
@media only screen and (max-width: 700px) {
  .second__stats {
    justify-content: space-between;
    gap: 30px;
  }
}
.second__stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 160px;
}
@media only screen and (max-width: 1190px) {
  .second__stat-item {
    width: initial;
  }
}
.second__stat-number {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #074F2B;
}
@media only screen and (max-width: 700px) {
  .second__stat-number {
    font-family: Century Gothic;
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: 0%;
  }
}
.second__stat-text {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #074F2B;
}
@media only screen and (max-width: 700px) {
  .second__stat-text {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
  }
}
.second__right {
  max-width: 610px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (max-width: 1100px) {
  .second__right {
    max-width: 100%;
  }
}
@media only screen and (max-width: 770px) {
  .second__right {
    flex-direction: column;
  }
}
.second__right img {
  width: 295px;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 1100px) {
  .second__right img {
    width: calc(50% - 10px);
  }
}
@media only screen and (max-width: 770px) {
  .second__right img {
    width: 100%;
  }
}
.second__right img:first-child {
  height: 280px;
  object-position: left;
}
@media only screen and (max-width: 1100px) {
  .second__right img:first-child {
    height: auto;
  }
}
@media only screen and (max-width: 770px) {
  .second__right img:first-child {
    height: 326px;
  }
}
.second__right img:last-child {
  height: 510px;
  object-position: right;
}
@media only screen and (max-width: 1100px) {
  .second__right img:last-child {
    height: auto;
  }
}
@media only screen and (max-width: 770px) {
  .second__right img:last-child {
    height: 407px;
  }
}

.values {
  padding-bottom: 40px;
}
.values__subheader {
  font-family: Century Gothic;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #262626;
  text-transform: uppercase;
  max-width: 715px;
  margin-bottom: 46px;
}
@media only screen and (max-width: 700px) {
  .values__subheader {
    font-family: Century Gothic;
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    letter-spacing: -0.02em;
    text-align: left;
    margin-bottom: 48px;
  }
}
.values__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
@media only screen and (max-width: 970px) {
  .values__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .values__wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 49px;
  }
}
.values__item {
  display: flex;
  flex-direction: column;
}
.values__item:not(:last-child) {
  padding-right: 35px;
  border-right: solid 1px #EAEAEA;
}
@media only screen and (max-width: 970px) {
  .values__item:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }
}
.values__img {
  margin-bottom: 24px;
}
.values__title {
  font-family: Century Gothic;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #262626;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.values__text {
  font-family: Century Gothic;
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  text-align: left;
  color: #7A7A7A;
}
.services {
  padding-bottom: 40px;
  background: #002F19;
}
.services__header {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 32px;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media only screen and (max-width: 970px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.services__item {
  overflow: hidden;
  transition: scale 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.services__item:hover {
  box-shadow: 9px 10px 5px 0px rgb(11, 18, 13);
  scale: 1.05 !important;
}
.services__content {
  padding: 32px;
  border: 1px solid #074F2B;
  height: 249px;
  background: #023D21;
  overflow: hidden;
}
.services__content img {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 700px) {
  .services__content img {
    height: 58%;
  }
}
@media only screen and (max-width: 700px) {
  .services__content {
    padding: 24px;
    height: 343px;
  }
}
.services__title {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 700px) {
  .services__title {
    font-family: Century Gothic;
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0%;
  }
}
.services__link {
  display: inline-block;
  padding: 16px 24px;
  background: #074F2B;
  color: #FFFFFF;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: none;
  border: 1px solid #074F2B;
  transition: all 0.3s ease;
  display: none;
}
.services__link:hover {
  background-color: #032012;
}

.projects__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.projects__button {
  height: fit-content;
  padding: 16px 41px;
}
.projects__header {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #074F2B;
}
@media only screen and (max-width: 700px) {
  .projects__header {
    font-family: Century Gothic;
    font-weight: 700;
    font-size: 32px;
    line-height: 110%;
    letter-spacing: 0%;
    margin-bottom: 32px;
  }
}
.projects__wrapper {
  position: relative;
}
.projects__item {
  position: relative;
  overflow: hidden;
  height: 573px;
}
@media only screen and (max-width: 700px) {
  .projects__item {
    height: 343px;
  }
}
.projects__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.projects__item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
}
.projects__item svg path {
  fill: #fff;
}
.projects__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.projects__item img:hover {
  transform: scale(1.02);
}
.projects .swiper-buttons {
  display: flex;
  flex-direction: row;
  position: absolute;
  right: 0;
  bottom: -1px;
  z-index: 1;
}
@media only screen and (max-width: 500px) {
  .projects .swiper-buttons {
    position: relative;
    bottom: initial;
    right: initial;
  }
}
.projects .swiper-button-prev, .projects .swiper-button-next {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  width: 190px;
  padding: 16px 24px;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #fff;
  background: #074F2B;
}
.projects .swiper-button-prev svg path, .projects .swiper-button-next svg path {
  fill: #fff;
}
@media only screen and (max-width: 500px) {
  .projects .swiper-button-prev, .projects .swiper-button-next {
    width: 100%;
  }
}
.projects .swiper-button-prev {
  background: #fff;
  color: #074F2B;
}
.projects .swiper-button-prev svg path {
  fill: #074F2B;
}

.fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.fullscreen-modal.active {
  display: flex;
}
.fullscreen-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fullscreen-modal__close {
  position: absolute;
  top: 40px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 36px;
  cursor: pointer;
  z-index: 1010;
}
.fullscreen-modal .fullscreen-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.fullscreen-modal .fullscreen-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: default;
}
.fullscreen-modal .fullscreen-swiper .swiper-slide img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
.fullscreen-modal .fullscreen-swiper .swiper-button-prev,
.fullscreen-modal .fullscreen-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1010;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.fullscreen-modal .fullscreen-swiper .swiper-button-prev:hover,
.fullscreen-modal .fullscreen-swiper .swiper-button-next:hover {
  opacity: 1;
}
.fullscreen-modal .fullscreen-swiper .swiper-button-prev::after,
.fullscreen-modal .fullscreen-swiper .swiper-button-next::after {
  font-size: 60px;
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  line-height: 1;
  text-transform: none;
  letter-spacing: 0;
  text-rendering: auto;
  display: block;
}
.fullscreen-modal .fullscreen-swiper .swiper-button-prev {
  left: 30px;
}
.fullscreen-modal .fullscreen-swiper .swiper-button-prev::after {
  content: "prev";
}
@media only screen and (max-width: 500px) {
  .fullscreen-modal .fullscreen-swiper .swiper-button-prev {
    left: 10px;
    width: 40px;
    height: 40px;
  }
}
.fullscreen-modal .fullscreen-swiper .swiper-button-next {
  right: 30px;
}
.fullscreen-modal .fullscreen-swiper .swiper-button-next::after {
  content: "next";
}
@media only screen and (max-width: 500px) {
  .fullscreen-modal .fullscreen-swiper .swiper-button-next {
    right: 10px;
    width: 40px;
    height: 40px;
  }
}

.etaps__subheader {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #074F2B;
  margin-bottom: 40px;
}
.etaps__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  column-gap: 127px;
  row-gap: 64px;
  max-width: calc(100% - 100px);
  flex-wrap: wrap;
  justify-content: center;
}
@media only screen and (max-width: 1270px) {
  .etaps__wrapper {
    max-width: 100%;
    column-gap: 30px;
  }
}
.etaps__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 295px;
}
@media only screen and (max-width: 700px) {
  .etaps__item {
    max-width: 100%;
    width: 100%;
  }
}
.etaps__img {
  padding: 14px;
  background: #074F2B;
  margin-bottom: 24px;
}
.etaps__title {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #002F19;
  margin-bottom: 16px;
}
.etaps__text {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #3e3e3e;
}

.form {
  padding-bottom: 0;
}
.form__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 700px) {
  .form__container {
    flex-direction: column;
  }
}
.form__left {
  width: 40%;
}
@media only screen and (max-width: 700px) {
  .form__left {
    width: 100%;
  }
}
.form__right {
  width: 60%;
  left: 100px;
}
@media only screen and (max-width: 700px) {
  .form__right {
    width: 114%;
    height: 535px;
    left: -16px;
    right: -15px;
  }
}
.form__right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 700px) {
  .form__right img {
    object-fit: cover;
  }
}
.form__header {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 34px;
  line-height: 110%;
  letter-spacing: 0%;
  color: #074F2B;
  margin-bottom: 24px;
  max-width: 505px;
}
.form__subheader {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #002F19;
  margin-bottom: 32px;
  max-width: 505px;
}
.form__social {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 46px;
  flex-wrap: wrap;
  gap: 46px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1144px) {
  .form__social {
    justify-content: space-between;
    gap: 16px;
  }
}
.form__social a {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #3E3E3E;
}
@media only screen and (max-width: 700px) {
  .form__social a {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0%;
    gap: 8px;
  }
}

.wpcf7-form {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wpcf7-form input {
  background: none;
  border-radius: initial;
  padding: 16px 24px;
  border: 1px solid #E4E4E4;
  width: 398px;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #3E3E3E;
}
@media only screen and (max-width: 1200px) {
  .wpcf7-form input {
    width: 100%;
  }
}
@media only screen and (max-width: 770px) {
  .wpcf7-form input {
    width: 100%;
    gap: 24px;
  }
}
.wpcf7-form input:hover, .wpcf7-form input:focus-within {
  border-bottom: 1px solid #979797;
}
.wpcf7-form .form__btn {
  padding: 16px 24px;
  transition: all 0.3s linear;
  cursor: pointer;
  color: #fff;
  background-color: #074F2B;
  transition: all 0.3s linear;
  max-width: 210px;
  border: 1px solid transparent;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
}
.wpcf7-form .form__btn:hover, .wpcf7-form .form__btn:focus-within {
  color: #262626;
  background: #FFFFFF;
  border: 1px solid #262626;
}
@media only screen and (max-width: 700px) {
  .wpcf7-form .form__btn {
    margin-top: 32px;
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #262626;
}
.wpcf7-form .wpcf7-response-output {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  color: #262626;
  display: none;
}
.screen-reader-response {
  display: none;
}

.popup-bg {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 13;
  overflow: auto;
  justify-content: center;
  backdrop-filter: blur(12px);
  background: rgba(52, 117, 67, 0.4);
  transition: opacity 0.3s linear;
  display: none;
}
.popup-bg.show {
  display: flex;
  animation: fade-in 0.3s linear forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1030px;
  width: 100%;
  max-height: 100vh;
  transition: all 0.3s linear;
  display: none;
  opacity: 0;
}
@media only screen and (max-width: 600px) {
  .popup {
    overflow-y: auto;
  }
}
.popup.show {
  display: block;
  opacity: 1;
}
.popup__button {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: 0%;
  margin: 0 auto;
  padding: 16px 24px;
  background: #074F2B;
  color: #fff;
  text-align: center;
  width: 315px;
}
@media only screen and (max-width: 700px) {
  .popup__button {
    width: 100%;
    max-width: 400px;
  }
}
.popup__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  gap: 32px;
  padding: 60px 46px;
  margin: 36px 16px;
  height: 626px;
  justify-content: center;
  overflow: hidden;
  background-image: url(../img/general/grass.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}
@media only screen and (max-width: 700px) {
  .popup__wrapper {
    padding: 46px 16px;
    height: 100vh;
    margin: 0;
    background-size: auto;
  }
}
.popup__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  z-index: 10;
}
@media only screen and (max-width: 1000px) {
  .popup__close {
    top: 20px;
    right: 20px;
  }
}
.popup__img {
  height: 100%;
  width: 50%;
}
@media only screen and (max-width: 1000px) {
  .popup__img {
    width: 100%;
    height: 406px;
  }
}
.popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup__content {
  display: flex;
  flex-direction: column;
}
.popup__title {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 34px;
  line-height: 130%;
  letter-spacing: -2%;
  text-align: center;
  margin-bottom: 24px;
  color: #262626;
}
@media only screen and (max-width: 700px) {
  .popup__title {
    font-family: Century Gothic;
    font-weight: 700;
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 16px;
  }
}
.popup__deskr {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: -2%;
  text-align: center;
  color: #808080;
  max-width: 505px;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1000px) {
  .popup__deskr {
    font-family: Century Gothic;
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: -2%;
    text-align: center;
    margin-bottom: 27px;
  }
}

.popup__inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 636px;
  margin: 0 auto 24px;
}
.popup__inputs input {
  padding-bottom: 16px;
  border: none;
  border-bottom: 1px solid #D3D3D3;
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -2%;
  color: #D3D3D3;
  text-transform: uppercase;
}

.popup__last-fields {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
  letter-spacing: 0%;
  max-width: 636px;
  margin: 0 auto 32px;
  color: #7a7a7a;
}
.popup__last-fields a {
  font-weight: 700;
  text-decoration: underline;
}

.popup__submit {
  font-family: Century Gothic;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.02em;
  text-align: left;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
  padding: 16px 90.5px;
  border-radius: 8px;
  background: #262626;
  height: fit-content;
  display: flex;
}
@media only screen and (max-width: 863px) {
  .popup__submit {
    margin-bottom: 0;
    max-width: 500px;
    display: flex;
    justify-content: center;
  }
}

div[id^=bwg_container] * {
  position: initial;
}

.bwg-a.bwg_load_btn_0.bwg_load_btn {
  background-color: #074F2B !important;
  font-family: Century Gothic !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 110% !important;
  letter-spacing: 0% !important;
  color: #fff !important;
  padding: 16px 37.5px !important;
  display: block;
  width: fit-content;
  margin: 0 auto !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg_mosaic_thumb_0 {
  opacity: 1 !important;
}

#bwg_container1_0 #bwg_container2_0 .bwg_mosaic_thumb_spun_0 img {
  transition: transform 0.3s linear;
}

#bwg_container1_0 #bwg_container2_0 .bwg_mosaic_thumb_spun_0:hover {
  transform: rotate(0deg) !important;
  -webkit-transform: rotate(0deg) !important;
}
#bwg_container1_0 #bwg_container2_0 .bwg_mosaic_thumb_spun_0:hover img {
  transform: scale(1.1);
}

.spider_popup_wrap {
  background-color: rgba(255, 255, 255, 0.6745098039) !important;
  backdrop-filter: blur(7px);
}

#spider_popup_left {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  align-items: center !important;
  width: 190px !important;
  padding: 16px 24px !important;
  font-family: Century Gothic !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 110% !important;
  letter-spacing: 0% !important;
  color: #074F2B !important;
  background: #fff !important;
  height: fit-content !important;
  bottom: 0 !important;
}

#spider_popup_right {
  display: flex !important;
  justify-content: center !important;
  gap: 10px !important;
  align-items: center !important;
  width: 190px !important;
  padding: 16px 24px !important;
  font-family: Century Gothic !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 110% !important;
  letter-spacing: 0% !important;
  color: #fff !important;
  background: #074F2B !important;
  height: fit-content !important;
  bottom: 0 !important;
}

.breadcrams {
  display: flex;
  flex-direction: row;
  margin-bottom: 16px;
  margin-right: auto;
  gap: 8px;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #149043;
}
.breadcrams a {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #3E3E3E;
}
.breadcrams p {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #149043;
}

.gallery {
  padding-top: 0;
}

.page-template-projects .banner__first {
  margin-bottom: 36px;
}
.page-template-projects .banner__header {
  margin-bottom: 0;
}

.bwg_thumbnail.bwg_container {
  margin-top: 0 !important;
}

.bwg_loading_div_1.bwg-hidden {
  display: none !important;
}

#spider_popup_wrap {
  min-height: fit-content !important;
  min-width: initial !important;
}

.bwg_popup_image.bwg_popup_watermark {
  max-height: calc(100vh - 20px) !important;
  min-width: 10vw !important;
  width: fit-content !important;
  max-width: 100vw !important;
  width: 100%;
}
@media only screen and (max-width: 800px) {
  .bwg_popup_image.bwg_popup_watermark {
    min-width: 100% !important;
  }
}

.bwg_popup_image_second_spun {
  position: initial !important;
}

.bwg_slider {
  height: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
}

.bwg_slide_container {
  display: flex !important;
  position: initial !important;
  vertical-align: middle !important;
  width: 100% !important;
  height: 100% !important;
  min-width: fit-content !important;
  min-height: fit-content !important;
  max-height: 100% !important;
  max-height: 100% !important;
}

.bwg_btn_container {
  position: initial !important;
}

.bwg_image_container {
  position: initial !important;
  width: 100% !important;
  height: 100% !important;
}

.bwg_image_wrap {
  position: initial !important;
  width: fit-content !important;
}

.spider_popup_wrap {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: fit-content !important;
  height: fit-content !important;
  max-height: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.bwg_popup_image_spun {
  position: initial !important;
}

.spider_popup_close_fullscreen {
  top: 20px !important;
}

.spider_popup_close, .spider_popup_close_fullscreen {
  top: 20px !important;
  right: 20px !important;
  background-color: transparent !important;
  color: #fff !important;
}
.spider_popup_close .bwg_close_btn, .spider_popup_close_fullscreen .bwg_close_btn {
  opacity: 1 !important;
}
.spider_popup_close .bwg-icon-times-sm:before, .spider_popup_close_fullscreen .bwg-icon-times-sm:before {
  display: block;
  content: "\e93b";
  font-size: 27px;
}

.background-blur {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.4901960784);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  z-index: 14;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s linear;
}

footer {
  background: #074F2B;
  padding: 38.5px 0 32px;
}
footer .container {
  max-width: 1240px;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 1000px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-items: center;
  }
}
@media only screen and (max-width: 600px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    justify-items: center;
  }
}
.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__left-top {
  display: flex;
  flex-direction: row;
  gap: 150px;
}
.footer__left-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 1000px) {
  .footer__left-right {
    padding-right: 0;
    border-right: none;
  }
}
.footer__left-right p {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
  text-align: left;
}
@media only screen and (max-width: 1000px) {
  .footer__left-right p {
    text-align: center;
  }
}
.footer__left-right a {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .footer__left-right a {
    text-align: center;
  }
}
.footer__center {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (max-width: 1000px) {
  .footer__center {
    padding-right: 0;
    border-right: none;
  }
}
.footer__center p {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .footer__center p {
    text-align: center;
  }
}
.footer__center a {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .footer__center a {
    text-align: center;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__right-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__right-top p {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .footer__right-top p {
    text-align: center;
  }
}
.footer__right-top a {
  font-family: Century Gothic;
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #fff;
}
@media only screen and (max-width: 1000px) {
  .footer__right-top a {
    text-align: center;
  }
}
.footer__right-top div {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer__right-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__right-bottom a {
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0%;
  color: #7a7a7a;
}
@media only screen and (max-width: 1000px) {
  .footer__right-bottom a {
    text-align: center;
  }
}
.footer__bottom {
  margin-top: 38.6px;
  text-align: center;
  font-family: Century Gothic;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  color: #149043;
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 1000px) {
  .footer__copy {
    display: none;
  }
}