
.about-us__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-us__grid__item {
  min-width: 0;
}

.about-us__grid__icon {
  max-width: 100%;
}

.about-us__grid__icon svg {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-us__grid .about-us__grid__item,
.about-us__grid .about-us__grid__item svg path {
  transition:
    background-color 0.5s,
    fill 0.5s;
  cursor: pointer;
}

.about-us__grid .about-us__grid__item.active {
  background-color: var(--color-main-primary);
  color: #fff;
}

.about-us__grid .about-us__grid__item.active svg path {
  fill: #fff !important;
}

.about-us__grid .about-us__grid__item:hover {
  background-color: var(--color-main-primary);
  color: #fff;
}
.about-us__grid .about-us__grid__item:hover svg path {
  fill: #fff !important;
}

.about-icon__route::before {
  content: "";
  position: absolute;
  background-color: white;
  width: 2px;
  height: 10px;
}

.about-icon__route::after {
  content: "";
  position: absolute;
  background-color: white;
  width: 8px;
  height: 8px;
  border-radius: 50px;
  box-shadow:
    0 0 0 2px rgba(0, 0, 0, 0.9),
    0 0 0 3px white;

  z-index: 1;
}

.about-icon__route::before {
  left: 50px;
  bottom: -20px;
  height: 20px;
}

.about-icon__route::after {
  left: 47px;
  bottom: -26px;
}

.service-grid {
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid__card {
  min-width: 0;
}

.service-grid__icon {
  max-width: 100%;
}

.service-grid__icon svg {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1279px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 639px) {
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-us__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
