
#cCarousel, #cCarousel2 {
  position: relative;
  max-width: 1250px;
  margin: auto;
  padding:0;
  padding-top: 20px;
}


#cCarousel .arrow, #cCarousel2 .arrow, #cCarousel3 .arrow {
  position: absolute;
  top: 50%;
  display: flex;
  width: 45px;
  height: 45px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  z-index: 1;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

#cCarousel #prev, #cCarousel2 #prev2 {
  left: 0px;
}

#cCarousel #next, #cCarousel2 #next2 {
  right: 0px;
}



#cCarousel .arrow:hover, #cCarousel2 .arrow:hover, #cCarousel3 .arrow:hover{
	transform: scale(1.1);
}

#carousel-vp, #carousel-vp2 {
  width: 90%;
  height: 450px;
  display: flex;
  position: relative;
  overflow: hidden;
  margin: auto;
  align-items: center;
}



#cCarousel #cCarousel-inner, #cCarousel2 #cCarousel-inner2, #cCarousel3 #cCarousel-inner3 {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
}

.cCarousel-item, .cCarousel-item2 {
  width: 365px;
  height: 380px;
	padding: 0 20px;
	position: relative;
}

@media only screen and (min-width:0px) and (max-width:800px){
	
.cCarousel-item, .cCarousel-item2 {
  width: 80vw;
  height: 380px;
  padding: 0 20px;
}
	
}


@media only screen and (min-width:801px) and (max-width:1023px){
	
.cCarousel-item, .cCarousel-item2 {
  width: 44vw;
  height: 380px;
  padding: 0 20px;
}
	
}


@media only screen and (min-width:1024px) and (max-width:1250px){
	
#cCarousel, #cCarousel2 {
  position: relative;
  max-width: 1250px;
	width: 95%;
  margin: auto;
  padding:0;
  padding-top: 20px;
}
	
.cCarousel-item, .cCarousel-item2 {
  width: 27.5vw;
  height: 380px;
	padding: 0 20px;
}	
	
}


