.about__title {
  font-family: "Inter";
  font-weight: 700;
  font-size: 40rem;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 38rem;
}
.about__bg {
  padding-top: 66rem;
  padding-bottom: 81rem;
  background: rgba(35, 114, 132, 0.1);
}
.about-gallery {
  display: flex;
  gap: 24rem;
  margin-bottom: 85rem;
}
.about-gallery__one {
  display: grid;
  grid-template-columns: repeat(2, 414rem);
  gap: 24rem;
}
.about-gallery__one .about-gallery__item:nth-child(2) {
  grid-row: 2;
}
.about-gallery__one .about-gallery__item:nth-child(3) {
  grid-row: span 2;
}
.about-gallery__two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24rem;
}
.about-gallery__two .about-gallery__item:nth-child(2) {
  grid-row: 1/3;
  grid-column: 2/4;
}
.about-gallery__two .about-gallery__item:nth-child(3) {
  grid-row: 2/4;
}
.about-gallery__item {
  overflow: hidden;
  border-radius: 30rem;
}
.about-gallery img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.about__descr {
  font-family: "Inter";
  font-weight: 700;
  font-size: 20rem;
  line-height: 1.2;
  text-align: center;
  color: #237284;
  margin-bottom: 0;
}
.about__text {
  max-width: 1437rem;
  font-family: "Inter";
  font-weight: 400;
  font-size: 20rem;
  line-height: 1.2;
  text-align: center;
  margin: 0 auto 45rem;
}
.about__info {
  padding: 71rem 0 126rem;
}
.about__advantages {
  display: flex;
  flex-wrap: wrap;
  gap: 25rem;
  row-gap: 32rem;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
}
.about__advantages-title {
  margin-bottom: 30rem;
}
.about__advantages p {
  max-width: 557rem;
  font-family: "Inter";
  font-weight: 500;
  font-size: 20rem;
  line-height: 1.2;
  margin: 0;
}
.about__advantage {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50rem;
  flex: 1 0 850rem;
  min-height: 140rem;
  box-shadow: 0rem 2rem 10rem rgba(0, 0, 0, 0.25);
  border-radius: 20rem;
  padding: 30rem 30rem 25rem 30rem;
}
.about__advantage::before {
  position: relative;
  left: 0;
  content: "";
  display: block;
  width: 90rem;
  height: 90rem;
  background-repeat: no-repeat;
  background-size: contain;
}
.about__advantage:nth-child(1)::before {
  background-image: url(images/advantages/1.svg);
}
.about__advantage:nth-child(2)::before {
  background-image: url(images/advantages/2.svg);
}
.about__advantage:nth-child(3)::before {
  background-image: url(images/advantages/3.svg);
}
.about__advantage:nth-child(4)::before {
  background-image: url(images/advantages/4.svg);
}
@media (max-width: 768px) {
  .about__bg {
    padding-top: 10rem;
    padding-bottom: 35rem;
  }
  .about__text {
    font-size: 12rem;
    margin-bottom: 20rem;
  }
  .about-gallery {
    margin-bottom: 50rem;
    flex-wrap: wrap;
  }
  .about-gallery__one {
    grid-template-columns: repeat(2, 1fr);
    gap: 10rem;
  }
  .about-gallery__two {
    gap: 10rem;
  }
  .about-gallery__item {
    border-radius: 10rem;
  }
  .about__descr {
    font-size: 14rem;
  }
  .about__info {
    padding: 35rem 0 50rem;
  }
  .about__title {
    font-size: 20rem;
  }
  .about__advantages-title {
    margin-top: 50rem;
    margin-bottom: 30rem;
  }
  .about__advantage {
    flex: auto;
    gap: 10rem;
    padding: 5rem 20rem;
    min-height: 80rem;
  }
  .about__advantage::before {
    flex: 0 0 35rem;
    height: 38rem;
  }
  .about__advantages {
    row-gap: 20rem;
  }
  .about__advantages p {
    font-size: 12rem;
  }
}