* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::-webkit-input-placeholder,
*:-moz-placeholder,
*::-moz-placeholder,
*:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}
a {
  text-decoration: none;
}
:root {
  --container-width: 1208px;
  --color-main: #000;
  --color-secondary: #ccc;
  --font-main: "Montserrat", sans-serif;
  --font-secondary: "";
}
.container {
  max-width: var(--container-width);
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container.--fluid {
  max-width: 90%;
}
.clear-list {
  list-style: none;
}
body {
  font-family: var(--font-main);
  font-size: 14px;
  overflow-x: hidden;
}
.--center {
  text-align: center;
}
button,
input,
textarea {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  box-shadow: none;
  font-family: var(--font-main);
}
header {
  padding: 50px 0 0;
}
.header__toggle {
  /* display: none; */
  cursor: pointer;
}
.header-toggle .toggle.is-openned {
  display: none;
}
.header-toggle.is-active .toggle.is-openned {
  display: block;
}
.header-toggle.is-active .toggle.is-closed {
  display: none;
}

#main {
  height: 100vh;
  height: var(--app-height);
  max-height: 780px;
}
#main.--blocks {
  max-height: 535px;
}
#main.--project {
  max-height: 305px;
  padding-bottom: 50px;
}
.section {
  position: relative;
  padding: 40px 0;
}
.section.--gray {
  background: #eaeaea;
}
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}
section .container {
  position: relative;
  z-index: 1;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section.--main {
  border-bottom: 11px solid #ff5e14;
}

h1 {
  color: #fff;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
h1.--size-small {
  font-size: 40px;
}
h1.--size-default {
  font-size: 50px;
}
h1.--size-big {
  font-size: 96px;
}
#main {
  padding-bottom: 92px;
}
#main .container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* padding-bottom: 92px; */
  height: 100%;
  width: 100%;
}
.main-hero {
  text-align: center;
}
.main-hero .button {
  margin-top: 51px;
}
.button {
  display: inline-block;
  text-align: center;
  width: 370px;
  padding: 27px 40px;
  background: #46484a;
  border: 1px solid #46484a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  cursor: pointer;
}
.button:hover {
  background: #ff5e14;
  border-color: #ff5e14;
}
.button.--invert {
  background: #ff5e14;
  border-color: #ff5e14;
}
.button.--invert:hover {
  background: #46484a;
  border-color: #46484a;
}
.button.--full {
  width: 100%;
}
.button.--white {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
.button.--white:hover {
  background-color: #ff5e14;
  border-color: #ff5e14;
  color: #fff;
}
.button.--outline {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header__menu ul {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
}
.header__menu ul a {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s;
}
.header__menu ul a:hover {
  color: #ff5e14;
}
.section-title {
  color: #575757;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
}

.main-projects__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 23px;
}

.project-card__img {
  height: 278px;
  position: relative;
  /* overflow: hidden; */
}

.project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  bottom: 0;
  position: absolute;
  transition: height 0.3s;
}
.project-card:hover .project-card__img img {
  height: 110%;
}

.project-card__title {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  margin-top: 25px;
  transition: color 0.3s;
}

.project-card:hover .project-card__title {
  color: #ff5e14;
}

.project-card__category {
  color: #636363;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  margin-top: 13px;
}

.project-card__except {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  margin-top: 10px;
}
.project-card__link {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%; /* 32.4px */
  text-decoration-line: underline;
  margin-top: 14px;
  transition: color 0.3s;
}
.project-card__link:hover {
  color: #ff5e14;
}
#main-projects .project-card__link {
  display: none;
}

.main-projects__button {
  margin-top: 51px;
  text-align: center;
}
.section-subtitle {
  margin-top: 20px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}

.main-vision__cards {
  margin-top: 41px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 22px;
}
.main-vision-card {
  aspect-ratio: 378/288;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-vision-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}

.main-vision-card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  z-index: 0;
}
.main-vision-card__content {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 5.7px;
}

.main-vision__button {
  margin-top: 50px;
  text-align: center;
}

.review-item__text {
  color: #fff;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.review-item__author {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-style: italic;
  font-weight: 500;
}

.review-item {
  max-width: 956px;
  margin-left: auto;
  margin-right: auto;
}
.swiper-button {
  background: none !important;
  width: 60px;
  height: 60px;
  margin-top: -30px !important;
  transition: transform 0.3s;
}
.review-item hr {
  width: min(426px, 100%);
  height: 4px;
  display: block;
  background-color: #fff;
  margin: 20px auto;
}

#main-reviews {
  padding-top: 63px;
}
#main-reviews .section-overlay {
  background: rgba(255, 94, 20, 0.74);
}
.swiper-button-next:hover {
  transform: translateX(3px);
}
.swiper-button-prev:hover {
  transform: translateX(-3px);
}

.main-divisions__videos {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
}
.video-item__title {
  margin-top: 20px;
  color: var(--Black-main, #070808);
  font-size: 23px;
  font-weight: 700;
  transition: color 0.3s;
}
.video-item:hover .video-item__title {
  color: var(--Orange-main, #ff5e14);
}
.video-item__img {
  aspect-ratio: 378/248;
  position: relative;
}
.--full .video-item__img{
  aspect-ratio: 378 / 188;
  position: relative;
  max-width: 80%;
  margin-left: 10%;
}
.video-item__img:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  z-index: 0;
  top: 0;
}
.video-item__img:after {
  content: "";
  display: block;
  width: 83px;
  height: 83px;
  background: center / cover
    url("data:image/svg+xml,%3Csvg width='83' height='83' viewBox='0 0 83 83' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.3' d='M41.5 83C64.4198 83 83 64.4198 83 41.5C83 18.5802 64.4198 0 41.5 0C18.5802 0 0 18.5802 0 41.5C0 64.4198 18.5802 83 41.5 83Z' fill='white'/%3E%3Cpath d='M61.4239 41.5058L30.0859 20.9688C30.0859 52.0025 30.0859 36.7899 30.0859 62.1949L61.4239 41.5058Z' fill='white'/%3E%3C/svg%3E%0A");
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.video-item__img:hover:after {
  transform: translate(-50%, -50%) scale(1.1);
}
.video-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: -1;
}
.main-association__logos {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px 170px;
  text-align: center;
}
.main-association__logos img{
  max-width: 100%;
}
#main-association {
  padding-bottom: 56px;
}
footer {
  padding: 69px 0;
  background: url("../img/footer-bg.jpg") center / cover no-repeat;
  position: relative;
}
footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}
footer .container {
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: flex;
  /* align-items: center; */
  gap: 83px;
}
.footer-socials {
  display: flex;
  gap: 27px;
}
.footer-socials a {
  display: block;
  transition: transform 0.3s;
}

.footer-socials a:hover {
  transform: translateY(-2px);
}
.footer-address,
.footer-col a {
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 130.371%; /* 19.556px */
  margin-top: 21px;
  display: block;
}
.footer-col a:hover {
  color: var(--Orange-main, #ff5e14);
}

.footer-col a {
  margin-bottom: 16px;
}
#main-projects {
  padding-top: 66px;
}
.footer-socials a {
  margin: 0 !important;
}
.footer-menu ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0 75px;
}
.footer-menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 195px;
  margin-bottom: 0;
}

.mobile-header {
  position: absolute;
  top: -300vh;
  left: 0;
  width: 100%;
  padding-top: 163px;
  padding-bottom: 50px;
  background: rgba(87, 87, 87, 0.86);
  transition: top 0.3s;
  z-index: 7;
}

.mobile-header.is-active {
  top: 0;
}
.mobile-header * {
  list-style: none;
}
.mobile-header__inner #menu-main-menu {
  border-top: 5px solid #717171;
  padding-top: 35px;
}

.mobile-header__inner #menu-main-menu {
  display: flex;
  justify-content: space-between;
}
.mobile-header__col-title,
.menu-item-has-children > a {
  color: #ff5e14;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  transition: color 0.3s;
}
.menu-item-has-children > a:hover {
  color: #fff;
}

.mobile-header__list li,
.sub-menu li {
  margin-bottom: 15px;
  list-style-type: none;
}
.mobile-header__list li a,
.sub-menu li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  /* text-decoration-line: underline; */
}

.mobile-header__list li a:hover,
.sub-menu li a:hover {
  color: #ff5e14;
}
.main-hero__subtitle {
  color: #fff;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.48px;
  margin-top: 44px;
}

.section.--pd-60 {
  padding: 60px 0;
}
.blocksy-title,
h2 {
  color: #000;
  font-size: 50px;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 70px;
}
h2 {
  font-size: 35px;
  margin-bottom: 30px;
}

.blocksy-title:after {
  content: "";
  background: #ff5e14;
  width: 177px;
  height: 7px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -17px;
}

.blocksy-b {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 120px;
}
.text-content p,
.text-content li,
.blocksy-b__text,
.blocksy-b__text p {
  font-size: 17px;
  font-weight: 500;
  line-height: 180%; /* 30.6px */
}
.blocksy-b__text p,
.text-content p {
  margin: 1em 0;
}
.blocksy-b__text li + br {
  display: none;
}
.text-content li {
  margin: 0.7em 0;
}

.blocksy-b__button {
  margin-top: 20px;
}
.blocksy-b__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.blocksy-b__right {
  width: 100%;
  height: 100%;
}
.blocksy-b__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blocksy-b.--align-left .blocksy-b__right {
  order: -1;
}
.blocksy-subtitle {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}
.blocksy-texts__item {
  margin-top: 60px;
  position: relative;
  padding: 40px 0;
}
.blocksy-texts__item:nth-child(even):before {
  content: "";
  position: absolute;
  left: calc((100vw - 100%) / 2 * -1);
  top: 0;
  width: 100vw;
  height: 100%;
  background: #eaeaea;
  z-index: -1;
}
.blocksy-b__title {
  color: #000;
  font-size: 23px;
  font-weight: 700;
  position: relative;
}

.blocksy-b__title:after {
  content: "";
  position: absolute;
  width: 185px;
  height: 5px;
  background: #ff5e14;
  top: calc(100% + 9px);
  left: 0;
}
.blocksy-b__text {
  margin-top: 40px;
}
.text-content ul,
.text-content ol {
  padding-left: 20px;
}

.contact-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-gap: 35px;
}
.contact-cols__title {
  font-size: 23px;
  font-weight: 700;
}

.contact-cols__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  margin-top: 20px;
}
.contact-cols__text a {
  text-decoration: underline;
  color: #000;
}
#contact-text {
  padding-top: 93px;
  padding-bottom: 0;
}
.contact-cols {
  padding-bottom: 110px;
  border-bottom: 1px solid #d9d9d9;
}
.contact-cols__col:first-child {
  padding-right: 80px;
}
#contact-form {
  padding-top: 53px;
  padding-bottom: 87px;
}
#contact-form .container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  grid-gap: 120px;
}
#contact-form iframe {
  width: 100%;
  height: 409px;
}
.contact-form__title {
  font-size: 20px;
  font-weight: 700;
}
.contact-form__text {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}
.contact-form {
  margin-top: 16px;
}
.input-wrap {
  margin: 14px 0;
}
.input-wrap.--double {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 14px;
}
.input-text {
  border: 1px solid #595959;
  padding: 10px 12px;
  width: 100%;
  outline: none;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.15px;
}

textarea.input-text {
  resize: none;
  height: 60px;
}

.two-columns-text {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.two-columns-text__col {
}
.two-columns-text__col:first-child {
  padding-right: 44px;
  border-right: 5px solid #d9d9d9;
}
.two-columns-text__col:last-child {
  padding-left: 44px;
}

.text-content {
}
.text-content p {
  font-size: 17px;
  font-weight: 500;
  line-height: 180%;
  margin: 1.8em 0;
}
.text-content p:first-child {
  margin-top: 0;
}
.text-content p:last-child {
  margin-bottom: 0;
}
.text-content li {
}
.text-content ul,
.text-content ol {
}

.two-columns-text__button {
  margin-top: 63px;
  text-align: center;
}
.our-people__img img {
  max-width: 977px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.our-people__text {
  margin-top: 31px;
}
.our-people__gallery {
  margin-top: 51px;
  /* display: grid; */
  /* grid-template-columns: repeat(6, 1fr); */
  /* grid-gap: 22px; */
}

.our-people__gallery img {
  display: block;
  width: 100%;
}
.community__list {
  /* display: grid; */
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  align-items: center;
}

.community__list a {
  display: block;
}
.community__list img {
  display: block;
  max-width: 100%;
}
.breadcrumbs {
  overflow-x: auto;
}
.breadcrumbs__inner {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  /* text-decoration-line: underline; */
}

.breadcrumbs a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 180%;

  text-decoration-line: underline;
}

.breadcrumbs__item:last-child {
  font-weight: 700;
}
.swiper-project-gallery .gallery-item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.swiper-project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.swiper-project-gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.project-content__gallery {
  margin-top: 40px;
}
.project-details {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 33% 67%;
  /* grid-gap: 129px; */
}
.project-details__subhead {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 44px;
  position: relative;
}

.project-details__subhead:after {
  content: "";
  display: block;
  width: 209px;
  height: 5px;
  background-color: #ff5e14;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.project-details__text {
  color: #000;
  font-size: 20px;
  font-weight: 500;

  line-height: 180%; /* 30.6px */
}

.project-details__description {
  padding-left: 129px;
}
.projects-top__title {
  font-size: 23px;
  font-weight: 700;
  position: relative;
}
.projects-top__title:after {
  content: "";
  display: block;
  width: 187px;
  height: 5px;
  background-color: #ff5e14;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.projects-top__text {
  margin-top: 42px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}
.projects-top {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-gap: 116px;
  align-items: flex-end;
}
.projects-tabs {
  margin-top: 36px;
  padding: 34px 0;
  border-top: 2px solid #d9d9d9;
  border-bottom: 2px solid #d9d9d9;
}
.projects-tabs__inner {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.projects-tabs__item {
  color: #717171;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 1.2px;
  position: relative;
  text-transform: uppercase;
}
.projects-tabs__item.--active {
  color: #000;
}
.projects-tabs__item.--active:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #ff5e14;
  position: absolute;
  bottom: -4px;
  left: 0;
}
#taxonomy-project_cat-list {
  padding-top: 0;
  padding-bottom: 70px;
}

.input-search {
  height: 73px;
  padding: 20px 70px 20px 24px;
}
.input-search-wrapper {
  position: relative;
}
.input-search-wrapper__icon {
  content: "";
  display: block;
  width: 27px;
  height: 27px;
  background: center / cover
    url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 26.586L20.448 19.034C22.2628 16.8553 23.1678 14.0608 22.9747 11.2319C22.7816 8.40296 21.5052 5.75738 19.4112 3.84551C17.3172 1.93363 14.5667 0.902668 11.732 0.96708C8.89717 1.03149 6.19635 2.18632 4.19133 4.19133C2.18632 6.19635 1.03149 8.89717 0.96708 11.732C0.902668 14.5667 1.93363 17.3172 3.84551 19.4112C5.75738 21.5052 8.40296 22.7816 11.2319 22.9747C14.0608 23.1678 16.8553 22.2628 19.034 20.448L26.586 28L28 26.586ZM2.99999 12C2.99999 10.22 3.52783 8.4799 4.51677 6.99986C5.5057 5.51982 6.91131 4.36627 8.55584 3.68508C10.2004 3.00389 12.01 2.82566 13.7558 3.17293C15.5016 3.52019 17.1053 4.37736 18.364 5.63603C19.6226 6.89471 20.4798 8.49835 20.8271 10.2442C21.1743 11.99 20.9961 13.7996 20.3149 15.4441C19.6337 17.0887 18.4802 18.4943 17.0001 19.4832C15.5201 20.4722 13.78 21 12 21C9.61386 20.9973 7.32621 20.0483 5.63896 18.361C3.9517 16.6738 3.00264 14.3861 2.99999 12Z' fill='%23575757'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.mobile-header__inner .only-mob {
  display: none;
}
.wpcf7-not-valid-tip {
  margin-top: 5px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: #47b450;
  color: #fff;
  padding: 15px;
  margin: 0;
  font-weight: 500;
  text-align: center;
}

.section--text-with-image:last-child {
  padding-bottom: 0;
}
.swiper-community .swiper-button svg {
  filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.55));
}
.swiper-community .swiper-slide {
  display: flex;
  height: auto !important;
  align-items: center;
  justify-content: center;
  width: auto;
}
.swiper-community .swiper-button-prev {
  left: 30px;
}
.swiper-community .swiper-button-next {
  right: 30px;
}
.our-people__gallery-item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.our-people__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
