.about-banner-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 0;
}
.about-banner-block .about-banner-content {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 518px;
  padding: 60px;
  gap: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--background);
}
.about-banner-block .about-banner-content .title {
  margin: 0;
  width: 50%;
  max-width: 690px;
  z-index: 2;
}
.about-banner-block .about-banner-content .desc {
  width: 50%;
  max-width: 690px;
  z-index: 2;
}
.about-banner-block .about-banner-content .img-filter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #FFFFFF 61.63%, rgba(255, 255, 255, 0) 87.08%);
  z-index: 1;
}
.about-banner-block .about-banner-content .img-holder {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: fit-content;
  max-width: 70%;
}
.about-banner-block .about-banner-content .img-holder img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-banner-block .ints {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  gap: 30px;
}
.about-banner-block .int-item {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: auto;
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  background: var(--background);
}
.about-banner-block .int-item__title {
  color: var(--primary);
}

@media (max-width: 1500px) {
  .about-banner-block .about-banner-content {
    padding: 40px;
  }
}
@media (max-width: 1420px) {
  .about-banner-block .about-banner-content {
    min-height: 400px;
  }
  .about-banner-block .about-banner-content .img-filter {
    width: 90%;
  }

}
@media (max-width: 1320px) {
  .about-banner-block .ints {
    gap: 20px;
  }
}
@media (max-width: 1100px) {
  .about-banner-block {
    gap: 20px;
  }
  .about-banner-block .ints {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .about-banner-block .int-item {
    width: calc((100% - 20px) / 3);
  }
}
@media (max-width: 768px) {
  .about-banner-block .about-banner-content {
    padding: 20px;
  }
  .about-banner-block .int-item {
    width: calc((100% - 10px) / 2);
  }
}
@media (max-width: 620px) {
  .about-banner-block .about-banner-content {
    min-height: auto;
  }
  .about-banner-block .about-banner-content .title,
  .about-banner-block .about-banner-content .desc {
    width: 100%;
  }
  .about-banner-block .about-banner-content .img-holder {
/*     opacity: 0.2;
    max-width: 100%; */
	display: none;
  }
  .about-banner-block .about-banner-content .img-filter {
    display: none;
  }
}
@media (max-width: 480px) {
  .about-banner-block .int-item {
    width: 100%;
  }
}
