:root{
  --ppal-color: #7595a0;
  --gray-color: #383838;
}

  /* ---------------------DESTINATIONS ------------------- */
  .ulDestinations{
    margin: 1rem;
    text-align: justify;
    list-style-type: none;
    margin: auto;
  }
  .ulDestinations li::before{
    content: "✅";
    margin-right: 0.5rem;
  }
  
  .ulDestinations li{
    margin-bottom: 10px
  }

  /* IMAGE GROUP 2 */
  .image-group2 div{
    margin-bottom: 10px;
    padding: 0 5px;
  } 
  .image-group2 div img{
    border-radius: 10px;
  } 
  .image-group2 div:hover{
    transform: scale(1.5);
    transition: all 1.2s ease-in-out;
    z-index: 1;
  }

/* -------------------- GENERAL STYLES ---------------------------- */
  .text-justify{
    text-align: justify;
  }
  .text-left{
    text-align: left;
  }
  .text-black{
    color: black;
  }
  .text-center{
    text-align: center;
  }
  .text-uppercase{
    text-transform: uppercase;
  }
  .mb-10{
    margin-bottom: 10px;
  }
  .mb-20{
    margin-bottom: 20px;
  }
  .mb-30{
    margin-bottom: 30px;
  }
  .mb-40{
    margin-bottom: 40px;
  }
  .mb-50{
    margin-bottom: 50px;
  }
  .mt-10{
    margin-top: 10px;
  }
  .mt-20{
    margin-top: 20px;
  }
  .mt-30{
    margin-top: 30px;
  }
  .mt-40{
    margin-top: 40px;
  }
  .mt-50{
    margin-top: 50px;
  }


  /* ----------------CARD EVENTS--------------*/

  .card-events {
    width:23em;
    background: #07182E;
    position: relative;
    display: flex;
    place-content: center;
    place-items: center;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 20px;
  }
  
  .card-events h2, .card-events ul li {
    z-index: 1;
    color: white;
    font-size: 2em;
  }

  .card-events h2 ul li h4 {
    color: white;

  }
  
  .card-events::before {
    content: '';
    position: absolute;
    width: 100px;
    background-image: linear-gradient(180deg, #eeb136, #3519ec);
    height: 130%;
    animation: rotBGimg 5s linear infinite;
    transition: all 0.2s linear;
  }
  
  @keyframes rotBGimg {
    from {
      transform: rotate(0deg);
    }
  
    to {
      transform: rotate(360deg);
    }
  }
  
  .card-events::after {
    content: '';
    position: absolute;
    background: #07182E;
    ;
    inset: 5px;
    border-radius: 15px;
  }  
  /* .card-events:hover:before {
    background-image: linear-gradient(180deg, rgb(81, 255, 0), purple);
    animation: rotBGimg 3.5s linear infinite;
  } */


/* -------------- SEPARADOR FANCY ---------------- */
   .style-eight {
    overflow: visible;
    padding: 0;
    border: none;
    border-top: medium double var(--ppal-color);
    color: var(--ppal-color);
    text-align: center;
    margin: auto;
}
.style-eight:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: white;
}

@media (min-width:992px) and (max-width: 1199px) {
  .md-middle {
    margin-top:145px;
  }
}
@media (max-width: 991px) {
  .md-middle {
    display: block;
    margin: auto
  }
}