/*NAVBAR*/
.navbar {
    background-color: #0C0D05 !important;
  }
  
  #link-items {
    padding-left: 40rem;
  }
  
  .nav-item:hover {
    background-color: #1768B5;
  }
  
/*HEADER SECTION*/
.header-section{
    
    background-repeat: no-repeat;
}

.container-heading{
    visibility: hidden;
}

/*ARTICLE SECTION*/
.article-date{
    color: #747474;
}

#main-content {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 9px;
    min-height: 90%;
}
.content-wrapper {
    width: 100%;
    height: auto;
    z-index: 2;
}
.row {
    max-width: 80rem;
}
img {
    margin: 10px;
}
img.float-left {
    margin-left: 0;
}
.float-right {
    float: right;
}
.float-left {
    float: left;
}

/*FOOTER*/

.footer-home{
    background: #131313;
    margin-top: 50px;
    width: 100%;
    height: 60vh;
    padding-top: 45px;
}
  
  .footer-home .footer-about,
  .footer-home .footer-link,
  .footer-home .footer-contact {
    margin-bottom: 45px;
    color: #dddddd;
  }
  
  .footer-home .footer-about h3,
  .footer-home .footer-link h3,
  .footer-home .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
  }
  
  .footer-home .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #dddddd;
    transition: .3s;
    text-decoration: none;
  }
  
  .footer-home .footer-link a::before {
    font-weight: 900;
    margin-right: 10px;
  }
  
  .footer-home .footer-link a:hover {
    color: #0085ff;
    letter-spacing: 1px;
  }
  
  .footer-home .footer-contact p i {
    width: 25px;
  }
  
  .footer-home .footer-social {
    margin-top: 20px;
  }
  
  .footer-home .footer-social a {
    display: inline-block;
  }
  
  .footer-home .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #fff;
  }
  
  .footer-home .footer-social a:last-child i {
    margin: 0;
  }
  
  .footer-home .footer-social a:hover i {
    color: #dddddd;
  }
  
  .footer-home .footer-menu .f-menu {
    padding: 10px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  
  .footer-home .footer-menu .f-menu a {
    color: #dddddd;
    font-size: 16px;
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .3);
  }
  
  .footer-home .footer-menu .f-menu a:hover {
    color: #0085ff;
  }
  
  .footer-home .footer-menu .f-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }
  
  
  /*MEDIAS QUERIES*/
  @media (min-width:200px) and (max-width: 400px) {
    #link-items {
      padding-left: 0;
    }
  }
  
  @media (min-width:400px) and (max-width: 700px) {
    #link-items {
      padding-left: 0;
    }
  }
  
  @media (min-width: 700px) and (max-width: 900px) {
    #link-items {
      padding-left: 0;
    }
  }
  
  @media (min-width:900px) and (max-width: 1200px) {
    #link-items {
      padding-left: 0;
    }
  }
  
  /* Ejemplo de ajuste de altura en dispositivos pequeños */
  @media (max-width: 767px) {
    .footer-home {
      height: auto;
      /* Cambia a altura automática en dispositivos pequeños */
      padding-top: 30px;
      /* Ajusta el padding según necesidades */
      margin-top: 150px;
      /* Ajusta el margen superior según necesidades */
    }
  
    #link-items {
      padding-left: 0;
    }
  
  
    .opcion {
      margin-right: 0px;
      display: flex;
      justify-content: center;
    }
  
    .footer-home .footer-about,
    .footer-home .footer-link,
    .footer-home .footer-contact {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  }
    /* Otros ajustes según necesidades específicas de tu diseño responsivo */
    @media (min-width: 768px) and (max-width: 991px) {
  
      /* Ajustes para tablets u otros dispositivos medianos */
      .footer-home {
        height: 100vh;
        padding-top: 30px;
        /* Ajusta el padding según necesidades */
        margin-top: 150px;
        /* Ajusta el margen superior según necesidades */
      }
  
      #link-items {
        padding-left: 0;
      }
    }