.carousel {
    width: 100%;
    height: 650px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2); */
  }
  .carousel:hover .controls {
    opacity: 1;
  }
  .carousel .controls {
    opacity: 0;
    display: flex;
    position: absolute;
    top: 50%;
    left: 0;
    justify-content: space-between;
    width: 100%;
    z-index: 99999;
    transition: all ease 0.5s;
  }
  .carousel .controls .control {
    margin: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    opacity: 0.5;
    transition: ease 0.3s;
    cursor: pointer;
  }
  .carousel .controls .control:hover {
    opacity: 1;
  }
  .carousel .slides {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    width: 100%;
    transition: 1s ease-in-out all;
  }
  .carousel .slides .slide {
    min-width: 100%;
    min-height: 250px;
    height: auto;
  }

/* CSS styling for the slide */    
.post-caption {
    color: #fff;
    margin-top: 20px;
    margin-left: 70px;
    margin-right: 70px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    font-family: "Syne",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    line-height: 1.2;
}

@media (max-width: 479px) {
  .post-caption {
      font-size: 18px;
  }
 
  .carousel {
      height: 450px;
  }
}

.wrap-slide-tips{
    background-color: #1C1C1A; 
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    align-self: stretch;
}