/* Colores */
/* Fuertes */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #4C4C4C;
}
/* body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #222;
} */
#cCarousel .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;
  background: #00000072;
  cursor: pointer;
}
#cCarousel #prev {
  left: 0px;
}
#cCarousel #next {
  right: 0px;
}
.cCarousel-item img {
  width: 100%;
  object-fit: cover;
  min-height: 300px;
}
.cCarousel-item .infos button {
  background: #222;
  padding: 10px 30px;
  border-radius: 15px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}
#cCarousel {
  position: relative;
  max-width: 900px;
  margin: auto;
}
#cCarousel #carousel-vp {
  width: 770px;
  height: 500px;
  display: flex;
  align-items: center;
  position: relative;
  margin: auto;
  overflow: hidden;
}
#cCarousel #carousel-vp #cCarousel-inner {
  display: flex;
  position: absolute;
  transition: 0.3s ease-in-out;
  gap: 10px;
  left: 0px;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item {
  background-image: url(../img/01-EdCont.png);
  width: 250px;
  height: 300px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-end;
  align-items: center;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item .infos {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: center;
  margin-bottom: -50%;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item .infos .boton {
  width: auto;
  background-color: #E3173E;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item .infos .boton a {
  font-family: 'Montserrat', sans-serif;
  width: auto;
  color: #fff !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 25px;
  font-weight: 600;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item .infos .boton:hover {
  background-color: #9d122b;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item .infos h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  margin-top: 0.65em;
  text-align: center;
  color: #fff;
  font-size: 1em;
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item:nth-child(2) {
  background-image: url(../img/02-mba.png);
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item:nth-child(3) {
  background-image: url(../img/03-BusLaw.png);
}
#cCarousel #carousel-vp #cCarousel-inner .cCarousel-item:nth-child(4) {
  background-image: url(../img/04-Maestrias.png);
}
@media screen and (max-width: 770px) {
  #cCarousel #carousel-vp {
    width: 510px;
  }
}
@media screen and (max-width: 600px) {
  #cCarousel #carousel-vp {
    width: 250px;
  }
}
