.photo-carousel {
  margin-bottom: 0px;
  position: relative;
}

.photo-carousel-slider {
  overflow: hidden;
}

.photo-carousel-track {
  display: flex;
  gap: 10px;
  transition: transform 0.3s ease;
}

.photo-carousel-item {
  flex: 0 0 calc((100% - 50px) / 6);
  text-align: center;
}


.photo-carousel-item a img{
	border-radius: 0px;
    width: 100%;
	aspect-ratio: 1 / 1;
    object-fit: cover;

}

.photo-carousel-item .name{
    margin-top: .5rem;
    text-align: left;
	color: #e1320e;
    text-decoration: none;
    background-color: transparent;
	font-family: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    font-size: 1rem;
    line-height: 1.5;
	font-weight:bold;

}

.arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(255,255,255,0.8);
  border: none;
  cursor: pointer;
  z-index: 1;
}

.corsor-arrow-left {
    left: -37px;
    background: #e1320e;
    border-radius: 50%;
    font-size: 22px;
    padding: 10px 20px;
    color: white;
}

.corsor-arrow-right {
    right: -37px;
    background: #e1320e;
    border-radius: 50%;
    font-size: 22px;
    padding: 10px 20px;
    color: white;
}

@media (max-width: 768px) {
  .photo-carousel-item {
    flex: 0 0 calc((100% - 30px) / 3);
  }
.corsor-arrow-right {
    right: 0;
	}
.corsor-arrow-left {
    left: 0;
	}
}

@media (max-width: 500px) {
  .photo-carousel-item {
    flex: 0 0 calc((100% - 20px) / 2);
  }

.corsor-arrow-right {
    right: 0;
    background: #e1320e;
    border-radius: 50%;
    font-size: 22px;
    padding: 5px 15px;
    color: white;
}
.corsor-arrow-left {
    left: 0;
    background: #e1320e;
    border-radius: 50%;
    font-size: 22px;
    padding: 5px 15px;
    color: white;
}
}