* {
  margin: 0;
  padding: 0;
}

/* ------- Header background --------*/

.container-fondo {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.fondo {
  background-image: url("/files/site/news/background-home-news.png");
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}


/* ------- Main --------*/

.container-news{
    overflow: hidden;
}


.button {
    font-size: 16px;
    color: #114074;
    background: transparent;
    border: 2px solid #114074;
    width: 100px !important;
    padding: 5px 10px;
    font-weight: 800;
    float: right;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-around;
    align-items: baseline;
  }
  
  .button:hover {
    background: #114074;
    color: white;
    border: 2px solid #114074;
  }
  
  .button img {
    transition: 0.5s all ease-in-out;
    position: relative;
    top: 1px;
  }
  
  .button:hover img {
    filter: brightness(0) invert(1);
  }


  /* ------- Section --------*/

  section{
      width: 90%;
      margin: 100px auto;
  }

  .slick-track{
      display: flex;
      gap: 20px;
  }

  .container-card{
    border-radius: 12px;
    background: #F7FBF3;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .container-img-card img{
      width: 100%;
  }

  .container-text-card{
      padding: 20px;
  }

  .container-card  h4{
    font-family: "RF Dewi Bold";
      font-size: 20px;
      color: #114074;
      font-weight: 900;
      line-height: 24px;
  }

  .container-card p{
    font-size: 16px;
    color: #114074 !important;
    font-weight: 600;
    line-height: 20px;
  }

  .container-cards .slick-dots li button {
    width: 20px;
    height: 20px;
    background: #ededed;
    color: #ededed;
    border-radius: 20px;
  }
  
  .container-cards .slick-dots li button:before {
    width: 20px;
    height: 20px;
    background: #114074;
    color: #114074;
    border-radius: 20px;
  }

  .slick-dots{
    bottom: -60px !important;
  }



@media screen and (max-width: 768px) {
    /* ------- Header background --------*/
  
    .container-fondo {
      height: 65vh;
    }
  
    .fondo {
      background-image: url(/files/site/news/background-home-responsive-news.png);
      height: 100%;
      background-repeat: no-repeat;
      background-size: cover;
    }

      /* ------- Section --------*/

      .autoplay{
          display: unset;
      }
}