html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*::before,
*:after {
  box-sizing: inherit;
}
body {
  font-family: "Hind Siliguri", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  background: #000000;
  color: aliceblue;
}
h1 {
  font-size: 3.8rem;
  color: #fff;
}
h2 {
  font-size: 3.4rem;
  color: #fff;
}
h3 {
  font-size: 3rem;
  color: #fff;
}
h4 {
  font-size: 2.6rem;
  color: #fff;
}
p {
  color: #fff;
}
a {
  text-decoration: none;
}
.seccion {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.fw-bold {
  font-weight: bold;
}
.centrar-texto {
  text-align: center;
}
img {
  max-width: 100%;
}
.site-header {
  background-color: #d22b21;
  padding: 1rem 0 3rem 0;
}
.site-header.inicio {
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url(../img/header.jpg);
  background-position: center center;
  background-size: cover;
  min-height: 60rem;
}
.contenedor {
  width: 95%;
  max-width: 120rem;
  margin: 0 auto;
}
.contenedor.seccion {
  min-height: 60rem;
}
.contenido-centrado {
    max-width: 800px;
}
.contenido-header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
@media (min-width: 768px) {
    .contenido-header {
        text-align: left;
    }

}
.contenido-header h1 {
  text-align: center;
  color: #fff;
  font-size: 76px;
  line-height: 1.2;
  font-weight: 700;
  padding-top: 100px;
}
@media (max-width: 768px) {
    .contenido-header h1 {
        text-align: center;
        color: #fff;
        font-size: 30px;
        line-height: 1.2;
        font-weight: 700;
        padding-top: 100px;
      }
}
.contenedor-footer {
  padding: 3rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .contenedor-footer {
    display: flex;
    justify-content: space-between;
  }
}
.site-footer nav {
  display: none;
}
@media (min-width: 768px) {
  .site-footer nav {
    display: block;
  }
}
.barra {
  padding-top: 1rem;
}
.barra p{
    font-size: 2rem;
}
@media (min-width: 768px) {
  .barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.navegacion a {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  display: block;
}
@media (min-width: 768px) {
  .navegacion a {
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 2rem;
  }
  .navegacion a:last-of-type {
    margin: 0;
  }
}
.navegacion a:hover {
  color: #a3c6ee;
}
.mobile-menu img {
  width: 5rem;
}
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}
.navegacion:target {
  display: block;
}
.navegacion {
  display: none;
}
@media (min-width: 768px) {
  .navegacion {
    display: block;
  }
}
.site-footer {
  background: #333;
  margin: 0;
}
@media (min-width: 768px) {
  .column-section {
    display: flex;
    padding-top: 2rem;
  }
}
.column-img {
  width: 30%;
}
@media(max-width:768px){
    .column-img{
        display: none;
    }
}
.column-text {
  flex: 1;
  text-align: justify;
  padding-left: 3rem;
}
entrada-blog {
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .entrada-blog {
        display: flex;
        justify-content: space-between;
    }
}
.entrada-blog:last-of-type{
    margin-bottom: 0;
}
@media (min-width: 768px) {
    .entrada-blog .imagen {
        flex-basis: 40%;
    }
    .entrada-blog .texto-entrada {
        flex-basis: calc(60% - 3rem);
    }
}
.texto-entrada a {
    color: #000;
    text-decoration: none;
}
.texto-entrada h4 {
    margin: 0;
    line-height: 1.4;
}
.texto-entrada h4::after {
    content: '';
    display: block;
    width: 15rem;
    height: .5rem;
    background: #a3c6ee;
}
.texto-entrada span {
    color: #a3c6ee;
}