.project {
  margin-top: 80px;
}
.project__container {
  display: grid;
  grid-template-areas: "images . about";
  grid-template-columns: 7fr 1fr 4fr;
  grid-gap: 40px;
}
.project__about {
  grid-area: about;
  display: flex;
  flex-direction: column;
}
.project__about-inner {
  background: #F5F4EA;
  border: 1px solid #DCDCDC;
  box-shadow: 0px 5px 30px rgba(209, 214, 203, 0.3);
  border-radius: 8px 8px 0px 0px;
  box-sizing: border-box;
  padding: 30px 40px 50px 40px;
}
.project__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 40px;
  color: #518154;
  text-transform: lowercase;
  margin-bottom: 10px;
}
.project__description-text, .project__description-text * {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #898C89;
  text-align: justify;
}
.project__description-text a, .project__description-text * a {
  color: #518154;
  text-decoration: underline;
  cursor: pointer;
}
.project__description-text p, .project__description-text * p {
  display: block;
}
.project__description-text p::before, .project__description-text * p::before {
  content: "";
  clear: both;
  display: inline-block;
  width: 20px;
}
.project__description-text ul, .project__description-text * ul {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  row-gap: 2.5px;
}
.project__description-text ul li, .project__description-text * ul li {
  display: grid;
  justify-content: flex-start;
  grid-template-columns: auto 1fr;
  grid-column-gap: 10px;
}
.project__description-text ul li::before, .project__description-text * ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: grey;
  margin-top: 11px;
  border-radius: 50%;
}
.project__read-more {
  color: #518154;
  text-transform: lowercase;
  display: block;
  margin-top: 5px;
  cursor: pointer;
  text-decoration: underline;
}
.project__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.project__tags:not(.project__tags--show) {
  display: none;
}
.project__tag {
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #47774A;
  padding: 4px 10px;
  box-sizing: border-box;
  background: rgba(159, 180, 132, 0.2);
  border: 1px solid #9FB484;
  border-radius: 100px;
  cursor: pointer;
}
.project__social-medias {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.project__social-medias:not(.project__social-medias--show) {
  display: none;
}
.project__social-media-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #898C89;
}
.project__social-media {
  display: flex;
  align-items: center;
}
.project__social-media:not(.project__social-media--show) {
  display: none;
}
.project__social-icon {
  height: 16px;
  width: auto;
}
.project__owners {
  background: #9FB484;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 0px 0px 8px 8px;
}
.project__owners-items {
  display: flex;
  flex-direction: column;
}
.project__owners-tab {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-column-gap: 10px;
  cursor: pointer;
  padding: 10px 0;
  box-sizing: border-box;
}
.project__owners-tab--opened + .project__owner {
  display: block;
}
.project__owners-tab--opened .project__owners-tab-icon {
  transform: rotate(90deg);
}
.project__owners-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.project__person-name {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #FFFFFF;
}
.project__owners-tab-icon {
  width: 8px;
  height: 16px;
  transform: rotate(0);
  transition: transform 0.2s;
}
.project__owner {
  display: none;
  padding-bottom: 10px;
}
.project__owner-text {
  line-height: 22px;
  color: #FFFFFF;
}
.project__owner-text a {
  text-decoration: underline;
  color: #525652;
  cursor: pointer;
}
.project__support-btn {
  margin-top: 20px;
}
.project__images {
  grid-area: images;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.project__image {
  width: 100%;
  height: auto;
  min-height: 100px !important;
  max-height: 650px !important;
  position: initial;
  z-index: 1;
  display: none;
}
.project__image:not(iframe) {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.project__image--current {
  display: block;
}
.project__image-wp {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: auto;
  position: relative;
}
.project__slider {
  height: 120px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.project__slider-polosa {
  height: 100%;
  width: auto;
  min-width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(25% - 7.5px);
  grid-column-gap: 10px;
  position: relative;
  left: 0;
}
.project__slider-polosa--animation {
  transition: left 0.25s;
}
.project__slide {
  display: flex;
  opacity: 0.5;
  box-sizing: border-box;
  transition: all 0.15s ease-in-out;
  border: 0px solid transparent;
  cursor: pointer;
}
.project__slide--active {
  opacity: 1;
  border: 4px solid transparent;
  cursor: auto;
}
.project__slide--active .project__slide-image {
  box-shadow: 0 0 0 4px rgb(159, 180, 132);
}
.project__slider-switch {
  width: auto;
  height: 100%;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 2;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: linear-gradient(90deg, #FFFFFF, rgba(255, 255, 255, 0.5));
  box-shadow: 0 0 60px 70px rgba(255, 255, 255, 0.5);
}
.project__slider-switch--left {
  left: 0;
}
.project__slider-switch--right {
  right: 0;
  background: linear-gradient(270deg, #FFFFFF, rgba(255, 255, 255, 0.5));
}
.project__slider-switch--disabled {
  cursor: auto;
}
.project__slider-switch--disabled .project__slider-switch-icon {
  opacity: 0.55;
}
.project__slider-switch-icon {
  width: 30px;
  height: 30px;
  background: #525652;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project__slider-switch-arrow {
  width: 6px;
  height: 12px;
}
.project__slide-image {
  width: 100%;
  height: 0;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  box-shadow: 0 0 0 0px rgb(159, 180, 132);
  transition: all 0.15s ease-in-out;
}

.projects {
  margin-top: 80px;
  margin-bottom: 100px;
}
.projects__title {
  text-align: center;
  text-transform: lowercase;
  font-size: 28px;
  font-weight: 600;
  line-height: 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1200px) {
  .project__container {
    grid-template-areas: "images about";
    grid-template-columns: 7fr 5fr;
  }
  .project__slider {
    height: 90px;
  }
}
@media screen and (max-width: 960px) {
  .project__container {
    grid-template-areas: "images about";
    grid-template-columns: 7fr 5fr;
  }
  .project__title {
    font-size: 27px;
  }
  .project__image {
    max-height: 550px !important;
  }
}
@media screen and (max-width: 768px) {
  .project__container {
    grid-template-areas: "images" "about";
    grid-template-columns: 100%;
  }
  .project__image {
    max-height: 650px !important;
  }
}
@media screen and (max-width: 576px) {
  .project__image {
    max-height: 500px !important;
  }
}
@media screen and (max-width: 460px) {
  .project__title {
    font-size: 26px;
  }
  .project__image {
    max-height: 450px !important;
  }
  .project__slider {
    height: 95px;
  }
  .project__slider-polosa {
    grid-auto-columns: calc(50% - 5px);
  }
}