body{
  background-color: #F8F8F8;
}


.carousel-wrapper {
  width: 100%;
  margin: 0 auto;
  height: 600px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  perspective: 1200px;
  overflow: hidden;
  padding-left: 60px;
  margin-bottom: 70px;
}

.carousel {
  position: relative;
  width: 745px;
  height: 500px;
}

.carousel .card {
  position: absolute;
  width: 280px;
  height: 500px;
  border-radius: 30px;
  font-size: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition:
transform 1200ms cubic-bezier(0.76, -0.01, 0.27, 1.01),
opacity 1200ms cubic-bezier(0.76, -0.01, 0.27, 1.01),
filter 1200ms cubic-bezier(0.76, -0.01, 0.27, 1.01);
  cursor: pointer;
}

/* POSICIONES DINÁMICAS */

.carousel-wrapper .center {
  transform: translateX(260px) scale(0.85) rotateY(-25deg);
  opacity: 1;
  z-index: 3;
}

.left {
  opacity: 1;
  transform: translateX(0px) scale(1) rotateY(0deg);
  z-index: 5;
}

.right {
  opacity: 1;
  transform: translateX(520px) scale(0.85) rotateY(0);
  z-index: 2;
}

.hidden-right {
  opacity: 0;
 transform: translateX(520px) scale(0.85) rotateY(0);
  z-index: 1;
}

.hidden-left {
  opacity: 0;
  transform: translateX(-260px) scale(1) rotateY(25deg);
  filter: blur(2px);
  z-index: 1;
}

.fade-out-left {
  opacity: 0;
  z-index: 10;
  transition: opacity 1200ms cubic-bezier(0.76, -0.01, 0.27, 1.01);
}

.fade-out {
  opacity: 0;
  transform: translateX(0) scale(1) rotateY(0deg);
  transition: opacity 0.4s ease;
  z-index: 6;
}

.fade-out-left-only {
  opacity: 0;
  z-index: 10;
}

.title-slide{
  color: #000;
  text-align: center;
  font-family: Lato;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.type-title{
  color: var(--hover);
  text-align: center;
  font-family: Rubik;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}


.title-studio{
    color: var(--primary);
    font-family: Rubik;
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-align: center;
    margin: 62px auto;
}

.subtitle-mano-mano{
    color: var(--primary);
    font-family: Rubik;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    margin-bottom: 20px;
}

.subtitle-especialistas{
   color: var(--hover);
    font-family: Lato;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 20px;
}

.title-list li{
    color: #000;
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.title-list{
    padding-left: 20px;
}

.producciones h2{
    color: var(--primary);
    font-family: Rubik;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.producciones h3{
    color: var(--primary);
    text-align: center;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.title-ciclos{
    color: #000;
    font-family: Rubik;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.block-producciones{
    display: flex;
    justify-content: center;
    padding: 0 10px;
    margin: 100px auto 20px auto;
}

.imgProduccionesMobile{
  display: none;
}


.mapeo{
  position: relative;
}


.links-group{
  position: absolute;
  height: 100%;
  width: 100%;
}

.links-group a{
 position: absolute;
}

.link1{
  width: 30%;
  height: 53%;
  top: 18%;
}

.link2{
  width: 70%;
  left: 30%;
  height: 53%;
  top: 0;
}

.link3{
  width: 70%;
  left: 30%;
  height: 43%;
  bottom: 0;
}

.carousel-controls {
  position: absolute;
  bottom: 0;
  width: 11%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  right: 133px;
}

.arrow {
  pointer-events: all;
  background:transparent;
  color: var(--hover);
  border: none;
  padding: 10px 25px;
  cursor: pointer;
}

@media (max-width: 768px)  {
.carousel-controls{
  display: none;
}

  .imgProduccionesMobile{
    display: block;
    margin-bottom: 70px;
    max-width: 320px;
    height: auto;
  }

  .imgProduccionesDesktop{
    display: none;
  }

  .title-studio{
    font-size: 28px;
  }
  
  .titlesStudio{
    margin-bottom: 30px;
  }

  .producciones h2{
    font-size: 28px;
    margin: 30px auto;
  }

  .subtitle-mano-mano{
    font-size: 21px;
  }

  .carousel-wrapper{
    display: block;
    height: initial;
    padding: 10px;
  }

  .block-producciones{
    display: block;
    padding: 0;
  }

  .block-producciones img{
    width: 100%;
    height: auto;
  }

  .title-ciclos{
    font-size: 21px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .title-ciclos br{
    display: none;
  }
}