
#cCarousel {
  position: relative;
  margin: auto;
	padding: 0px 0;
}

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

#cCarousel #prev {
  left: 0px;
}

#cCarousel #next {
  right: 3px;
}

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

#carousel-vp {
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin: auto;
}


#cCarousel #cCarousel-inner {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 0px;
  left: 0px;
}

.cCarousel-item {
  width: 22vw;
  height: 550px;
	background: #002d5b;
	padding: 0 0px;
	position: relative;
}

.cCarousel-item a img {
  width: 100%;
	object-fit: cover;
	height: 100%;
	object-position: top center;
}


@media only screen and (min-width:0px) and (max-width:550px){
	
	#cCarousel {
	padding: 0px 0;
}
	
.cCarousel-item {
  width: 100vw;
  height: 450px;
}
	
	#carousel-vp {
  width: 100%;
  height: 450px;
}
	

}

@media only screen and (min-width:551px) and (max-width:767px){
	
	#cCarousel {
	padding: 0px 0;
}
	
.cCarousel-item {
  width: 50vw;
  height: 450px;
}
	
	#carousel-vp {
  width: 100%;
  height: 450px;
}
	
	
}

@media only screen and (min-width:768px) and (max-width:1023px){
		.cCarousel-item {
  width: 33.3vw;
  height: 550px;
	padding: 0 0px;
}
	
	#carousel-vp {
  height: 550px;
}
}


@media only screen and (min-width:1024px) and (max-width:1300px){
	.cCarousel-item {
  width: 33vw;
  height: 550px;
	padding: 0 0px;
}
	
	#carousel-vp {
  height: 550px;
}
	
}

