.wrapProjectHome,
.wrapLettersHome {
  width: 100%;
  background: #002846;
  color: #fff;
}


.projectCard--address {
  margin-bottom: 30px;
}

.renderLoadData-project {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 50px;
}

.projectCard--img {
  width: 100%;
  overflow: hidden;
  padding-top: 69.412%;
  position: relative;
  display: block;
  filter: grayscale(1);
  transition: all 1s ease;
}

.wrapProjectHome .projectCard--img {
  filter: grayscale(0);
}

.projectCard--img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
}

.projectCard:hover .projectCard--img {
  filter: grayscale(0);
  transition: all 1s ease;
}

.projectCard--name {
  margin: 15px 0 10px;
  font-family: msr-m;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.projectCard--bottom {
  display: flex;
  width: 100%;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: auto !important;
}

.projectCard--bottom>a {
  color: #00ABE6
}

.projectCard--name a:hover,
.projectCard--bottom>a:hover {
  color: #00bfff
}

.projectCard--properties span {
  display: inline-block;
  margin-right: 20px;
}

.projectCard--properties span {
  padding-left: 20px;
  font-family: inter-r;
  color: rgba(255, 255, 255, 0.9);
}

.projectCard--properties span.area {
  background: url(../images/icon_project_area.svg) no-repeat left center;
}

.projectCard--properties span.postition {
  background: url(../images/icon_project_postition.svg) no-repeat left center;
}

.projectCard--properties span.year {
  background: url(../images/icon_project_year.svg) no-repeat left center;
}

.wrapPartnerHome {
  width: 100%;
}

.wrapPartnerHome--title-slogan {
  color: rgba(35, 35, 35, 0.7) !important;
}

.gridPartnerHome {
  width: 100%;
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px 110px;
}

.partnerHomeCard {
  transition: all .3s ease;
  transform: scale(0.95);
}

.partnerHomeCard img {
  max-width: 250px;
  max-height: 150px;
}

.partnerHomeCard:hover {
  transform: scale(1);
  transition: all .3s ease;
}

/* hoverSang2Animation */
.hoverSang2Animation {
  position: relative;
  overflow: hidden;
}

.hoverSang2Animation:after {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10;
  display: block;
  content: '';
  width: 100%;
  height: 50%;
  /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  z-index: 1;
}

.hoverSang2Animation:before {
  position: absolute;
  bottom: -100%;
  left: 0;
  z-index: 10;
  display: block;
  content: '';
  width: 100%;
  height: 50%;
  /* background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%); */
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  z-index: 1;
}

.hoverSang2Animation:before {
  animation: hoverSang2Animation 5s linear infinite;
  animation-delay: var(--anmt-delay);
}

.hoverSang2Animation:after {
  animation: hoverSang2Animation_rv 5s linear infinite;
  animation-delay: var(--anmt-delay);
}

@keyframes hoverSang2Animation {
  0% {
    bottom: -100%;
  }

  50% {
    bottom: 100%;
  }

  100% {
    bottom: 100%;
  }
}

@keyframes hoverSang2Animation_rv {
  0% {
    top: -100%;
  }

  50% {
    top: 100%;
  }

  100% {
    top: 100%;
  }
}


.wrapLettersHome--title.themesTitleBoxType--2 {
  color: #fff;
  margin-bottom: 0;
}


.slideLeters {
  margin: 40px -20px 30px;
  width: calc(100% + 40px);
  max-width: calc(100% + 40px);
}

.lettersHomeCard {
  margin: 0 20px;
  border-radius: 12px;
  overflow: hidden;
  height: fit-content;
}

.lettersHomeCard img {
  width: 100%;
}

.projectCard {
  display: flex;
  flex-direction: column;
}