
.carrousel{
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #DEE1E9, white);
}

.conteCarrousel{
    height:550px;
/*	background-color:#eee; */
	width: 1000px;
    text-align: center;
    overflow: hidden;
}

.conteCarrousel > a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: #43AAA1;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
  color:white;
}
.conteCarrousel > a {
  top: 1px;
   background: black;
}
.conteCarrousel > a:active {
  top: 1px;
   background: #000;
}
.conteCarrousel > a:focus {
  background: #000;
  
}

.itemCarrousel{
    position: relative;
    width: 100%;
    height: 100%;
  display: flex;
  
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.itemCarrousel::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.itemCarrousel::-webkit-scrollbar-thumb {
  background:#43AAA1;
  border-radius: 10px;
}
.itemCarrousel::-webkit-scrollbar-track {
  background: transparent;
}

.itemCarrousel > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: 530px;
  border-radius: 10px;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  align-items: center;
  font-size: 20px;
} 


.itemCarrousel > div:target {
/*   transform: scale(0.8); */
}

.itemCarrousel img {
  object-fit: scale-down;
}

.itemCarrouselTarjeta{
    width: 100%;
    height: 100%;
}

.itemCarrouselArrows{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px; 
	
}
.itemCarrouselArrows  i {
    color:black;
	font-size:25px;
}
.itemCarrouselArrows i:hover {
    cursor: pointer;
	color:#43AAA1;
}

.conteCarrouselController{
    width: 100%;
    text-align:center;
	background-color:white;
	
}

.conteCarrouselController a{
   display: inline-flex;
  width: 2.1rem;
  height: 0.3rem;
  background: #43AAA1;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 10%;
  margin: 0 0 1.5rem 0;
  position: relative;
  color:white;
   margin-right:3px;
}

.conteCarrouselController a {
  top: 1px;
   background: black;
}

.conteCarrouselController a:active {
   background: #BFBDBD;
}
.conteCarrouselController a:focus {
  background: #BFBDBD;
}
.conteCarrouselController a:hover {
  background: #BFBDBD;
}
.conteCarrouselController a:first-child{
   background: #43AAA1;
}

.alto{
	height:100%;
}

.grueso{
	width:100%;
}

@supports (scroll-snap-type) {
  .itemCarrouselArrows > a {
    display: none;
  }
}