.present {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  margin: 40px 0px;
}
.present__title {
  max-width: 805px;
  color: var(--card);
  margin-bottom: 20px;
}
.present__subtitle {
  margin-bottom: 60px;
}
.present__contacts {
  display: flex;
  align-items: center;
  gap: 60px;
}
.present__reviews {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-25%, 60%);
  background: var(--card);
  padding: 15px;
  border-radius: 15px;
  max-width: -moz-fit-content;
  max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 15px;
  left: 60%;
}
.present__reviews-title {
  color: var(--head);
  display: flex;
  align-items: center;
  gap: 10px;
}
.present__reviews-title svg {
  margin-bottom: 5px;
}
.present__reviews-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
}
.present__faces {
  width: 220px;
  height: 60px;
  position: relative;
}
.present__faces img {
  max-width: 60px;
  max-height: 60px;
  position: absolute;
}
.present__faces img:nth-child(1) {
  z-index: 1;
}
.present__faces img:nth-child(2) {
  left: 40px;
  z-index: 2;
}
.present__faces img:nth-child(3) {
  left: 80px;
  z-index: 3;
}
.present__faces img:nth-child(4) {
  left: 120px;
  z-index: 4;
}
.present__faces img:nth-child(5) {
  left: 160px;
  z-index: 5;
}
.present__faces-text {
  color: var(--mainText);
  max-width: 110px;
}
.present__faces-text span {
  font-family: var(--fontFamily);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: left;
  color: var(--head);
}
.present .btn-arrow {
  gap: 10px;
}
.present .soc-holder {
  display: flex;
  align-items: center;
  gap: 10px;
}
.present .soc-holder .p2 {
  margin-right: 10px;
  color: var(--stroke);
}

@media (max-width: 1260px) {
  .present__reviews {
    margin-top: 30px;
    position: static;
    transform: none;
  }
}

@media (max-width: 1240px) {
  .present {
    background-position: left;
  }
}
@media (max-width: 1025px) {
  .present {
    padding: 80px 0;
  }
}
@media (max-width: 996px) {
  .present {
    margin: 30px 0px !important;
  }
}

@media (max-width: 769px) {
  .present {
    padding: 80px 0;
  }
}
@media (max-width: 666px) {
  .present__contacts {
    flex-direction: column;
    gap: 15px;
    align-items: start;
  }
}
@media (max-width: 400px) {
  .present__reviews-bottom {
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 375px) {
  .present .soc-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    gap: 10px;
  }
  .present .soc-holder .p2 {
    grid-area: 1/1/2/4;
  }
  .present .soc-holder a:nth-child(1) {
    grid-area: 2/1/3/2;
  }
  .present .soc-holder a:nth-child(2) {
    grid-area: 2/2/3/3;
  }
  .present .soc-holder a:nth-child(3) {
    grid-area: 2/3/3/4;
  }
}/*# sourceMappingURL=block.css.map */