* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #EFEFEF;
	color: #363639;
    font-family: 'Work Sans', sans-serif;
}


/* ? ----- Cuenta Regresiva ----- */
#cuenta {
	display: flex;
	justify-content: center;
	margin-bottom: 10px;
}

.simply-section {
	background: #fff;
	width: 100px;
	height: 100px;
	margin: 0 20px;
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.simply-amount {
	display: block;
	font-size: 40px;
	font-weight: 500;
}

.simply-word {
	font-weight: 200;
	font-size: 20px;
}


/* ? ---------------------------- */
.carrusel {
	height: 27vh;

  }
  
  .carrusel-items {
	display: flex;
	overflow-x: hidden;
	overflow-y: hidden;
	padding: 30px 0px;
  }
  
  .carrusel-item {
	min-width: 300px;
	max-width: 300px;
	height: 200px;
	/*outline: 2px solid black;*/
	cursor: pointer;
  }
  
  .carrusel-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .carrusel-item:hover {
	transform: scale(1.2);
  }
  h5 {
	-webkit-text-stroke: 1px black;
  }
  