.popup {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    overflow-y: auto;
    background-color: rgba(0,0,0,.3);
    z-index: 9999;
}
.popup .contenido {
    width: 95%;
    max-width: 620px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0,0,0,.3);
    position: relative;
    padding: 20px 15px;
    transition: .5s;

}
.popup #cerrar {
    position: absolute;
    right: -15px;
    top: -15px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    background-color: black;
    color: white;
    border-radius: 50%;
    font-weight: 900;
    cursor: pointer;
}

.popup .pop:hover{
    transform: scale3d(1.1, 1.1, 0.3);
  }
  

  .ejemplo{
      display: none;
  }

  .btn-ejemplo{
    background: #eb9089;
    padding: 10px;
    width: 100%;
    display: block;
    text-align: center;
    color: #fff !important;
    transition: .5s;
  }
  
  .btn-ejemplo:hover{
    background: #e0584e;
    transform: translateY(-8px);
  }

  
  .carousel-control-next-icon,
.carousel-control-prev-icon {
 width:55px !important;
 height:40px !important;
}




