.card .img img {
  width: 160px;
  height: 140px;
  object-fit: contain;
}

.wrap-carousel .carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 3));
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: 0;
  text-align: center;
  scroll-behavior: smooth;
}
.carousel::-webkit-scrollbar{
  display: none;
}

.carousel.no-transition{
  scroll-behavior: auto;
}
.carousel.dragging {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.wrap-carousel {
  margin: 0px auto;
  max-width: 1100px;
  width: 100%;
  position: relative;
}

.container_uslugi{
  align-items: baseline;
}

.wrap-carousel i {
  height: 50px;
  width: 50px;
  background-color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  top: 50%;
  font-size: 1.25rem;
  transform: translateY(-50%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 23%);
}

#left.fa-angle-left {
	left: -25px;
}
#right.fa-angle-right {
	right: -25px;
}

.carousel .usluga {
/*  height: 160px;*/
  width: 280px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-content: center;
  justify-content: center;
  flex-direction: column;
  scroll-snap-align: start;
}

.carousel.dragging .usluga {
  cursor: grab;
  user-select: none;
}


@media screen and (max-width: 900px) {
  .wrap-carousel .carousel {
    grid-auto-columns: calc((100% / 2));
  }
}



@media screen and (max-width: 600px) {
  .wrap-carousel .carousel {
    grid-auto-columns: 100%;
  }
  #left.fa-angle-left {
	  left: 4px;
	}
  #right.fa-angle-right {
	  right: 4px;
	} 
}

.krug {
    border-radius: 3000px;
    background-color: #5a36b1;
    background-position: center center;
    border-color: transparent;
    border-style: solid;
    
    /* Размеры элемента (добавьте нужные) */
    width: 100px;
    height: 100px;
    display: block;
    
    /* Анимации */
    transition: background-color 0.3s ease-in-out,
                color 0.3s ease-in-out,
                border-color 0.3s ease-in-out,
                box-shadow 0.2s ease-in-out;
}

/* Ховер-эффект (опционально) */
.krug:hover {
    background-color: #4a2a9a;
    box-shadow: 0 4px 12px rgba(90, 54, 177, 0.3);
    transform: scale(1.05);
}
<<<<<<< HEAD
=======


>>>>>>> 88d8bd0696b21aec7c9da1106178426358e9e8e9
