.wrapper {
	border:0px solid #cc0000;
	margin:2rem 0 auto 0;
	max-width: 1600px;
	width: 100%;
	padding: 0;
	position: relative;
}

.wrapper i {
  color: #A90032;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.23rem;
  height: 50px;
  width: 50px;
  background: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 50%;
  cursor: pointer;
  line-height: 50px;
  text-align: center;
  transition: 0.3s ease;
  z-index: 999;
}

.wrapper i:first-child {
  left: -12px;
}

.wrapper i:last-child {
  right: -12px;
}

.wrapper i:active {
  transform: translateY(-50%) scale(0.85);
}

.wrapper .carousel {
	border:0px solid #3366cc;
	display: grid;
	grid-auto-flow: column;
	/*grid-auto-columns: calc((100% / 3) - 12px);*/
	grid-auto-columns: calc((100% / 4) - 16px);
	gap: 16px;
	/*border-radius: 8px;*/
	border-radius:0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	scroll-behavior: smooth;
}

.wrapper .carousel.no-transition {
  scroll-behavior: auto;
}

.wrapper .carousel::-webkit-scrollbar {
  display: none;
}

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

.wrapper .carousel .card {
  /*border:2px solid #D6C6EB;*/
  /*border-radius: 6%;*/
  scroll-snap-align: start;
  /*height: 342px;*/
  /*height: 442px;*/
  height: 390px;
  background: #fff;
  /*border-radius: 8px;*/
  border-radius: 0.8rem;
  /*padding-bottom: 15px;*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

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

.wrapper .carousel .card .img {
  border:0;
  /*border-radius: 6%;*/
  border-radius: 0.6rem;
  /*height: 148px;*/
  /*width: 148px;*/
  height: 100%;
  width: 100%;
  /*background: #8b53ff;*/
  background: #E9E0F4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrapper .carousel .card .img img {
  border: 0px solid #d4b15e;
  /*border-radius: 6%;*/
  border-radius: 0.6rem;
  /*height: 140px;*/
  /*width: 140px;*/
  height: 100%;
  width: 100%;
  object-fit: cover;  
}

.wrapper .carousel .card h2 {
  font-size: 1.52rem;
  font-weight: 500;
  margin: 30px 0 5px;
}

.wrapper .carousel .card span {
  color: #6a6d78;
  font-size: 1.31rem;
}



/*Mediaqueries*/
@media screen and (max-width: 1280px)
{ 
	.wrapper .carousel { grid-auto-columns: calc((100% / 3) - 12px); }
}
@media screen and (max-width: 1023px)
{ 
	.wrapper .carousel .card { height: 300px; }
}
@media screen and (max-width: 767px)
{ 
	.carou__mainwrap { /*width:96%;*/ }
	.wrapper .carousel { grid-auto-columns: calc((100% / 2) - 9px); }
	.wrapper .carousel .card { height: 340px; }
}
@media screen and (max-width: 649px)
{ 
    .wrapper .carousel .card { border-radius:10%; height: 300px; }
    .wrapper .carousel .card .img { border-radius:10%; }
    .wrapper .carousel .card .img img { border-radius:10%; }
}
@media screen and (max-width: 564px)
{ 
    .wrapper .carousel .card { border-radius:8%; height: 240px; }
    .wrapper .carousel .card .img { border-radius:8%; }
    .wrapper .carousel .card .img img { border-radius:8%; }
}
@media screen and (max-width: 479px)
{ 
	.wrapper .carousel { gap: 10px; }
	.wrapper .carousel .card { height: 230px; width:100%; }
}
@media screen and (max-width: 370px)
{ 
	
}
@media screen and (max-width: 320px)
{ 
	
}
@media screen and (max-width: 269px)
{ 
	
}

/*
@media (max-width: 900px) {
  .wrapper .carousel {
    grid-auto-columns: calc((100% / 2) - 9px);
  }
}

@media (max-width: 600px) {
  .wrapper .carousel {
    grid-auto-columns: 100%;
  }
}*/