.abouts {
  padding: 50px 0 80px;
}

.abouts .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.abouts bold img.emoji {
  margin: 0 auto !important;
  display: block;
  filter: brightness(0) invert(1);
}
.abouts strong {
  font-size: 18px;
  color: #d41022;
  margin: 0;
  padding-bottom: 5px;
}

.abouts p img {
  width: 24px;
  height: auto;
  position: relative;
  top: 6px;
}

.abouts .img {
  position: relative;
}

.abouts .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.abouts .img::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  background: #1b3054;
  display: block;
}

@media (max-width: 991px) {
  .abouts .wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .abouts .img {
    aspect-ratio: 16/9;
  }

  .abouts .img::after {
    left: -10px;
    bottom: -10px;
  }
}

/* Services */

.services-about {
  position: relative;
  padding: 50px 0 80px;
}

.services-about .wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.services-about .img {
  position: relative;
  aspect-ratio: 16 / 9;
}

.services-about .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-about .img::after {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: 150px;
  height: 150px;
  background: #1b3054;
  display: block;
}

.services-about h3 {
  text-transform: none;
  line-height: 1.56;
  color: #1b3054;
}

@media (max-width: 991px) {
  .services-about {
    padding: 50px 0 30px;
  }

  .services-about .wrap {
    grid-template-columns: 1fr;
  }

  .services-about .img::after {
    left: -10px;
    bottom: -10px;
  }
}
