.main__hero__downbar {
  position: static;
  top: 0px;
}
.main__hero_downbar__text {
  width: 70%;
}
.header {
  position: static;
}
.footer {
  margin-top: 0px !important;
}

.main__hero_downbar__text {
  padding-right: 40px;
  background-color: #F5F3F1;

  & h2 {

    color: #545859;
    font-family: Fjalla One;
    font-size: 33.734px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: end;
  }
}

.main__hero_downbar__title {
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background: none;

  & span {
    text-align: start;
    color: #fff;
    font-family: Raleway;
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  & p {
    text-align: start;
    color: #fff;
    font-family: Raleway;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 19.8px;
    letter-spacing: 4px;
    text-transform: uppercase;
  }
}


blog-hero-image {
  display: inline-block;
  min-height: 300px;
  width: 100%;
  position: relative;
  top: 5px;

  background-image: url('{{URL_BLOB_RESOURCES}}assets/images/blog/blog.hero-1.png');
  filter: brightness(.5);
  background-position-x: center;
  background-position-y: center;
  background-size: cover;
}

blog-tab-selector {
  background-color: #545859;
  display: inline-block;
  width: 100%;
  min-height: 50px;
}

blog-tab-selector > ul {
  display: flex;
  flex-wrap: wrap;
  min-height: 40px;
  background-color: #545859;
  justify-content: space-evenly;

  width: 90%;
  max-width: 700px;
  margin: 0 auto;  
}
blog-tab-selector  > ul > li {
  list-style: none;
  color: #FFF;
  font-family: Barlow Condensed;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 263.158% */
  letter-spacing: 1px;

  padding: 0px 5px;
  
  height: 45px;
  padding-top: 5px;
}
blog-tab-selector > ul > li:nth-child(odd) {
  cursor: pointer;
}
blog-tab-selector > ul > li.selected {
  border-bottom: 1px solid #FFF;
  font-weight: bold;
}

blog-tag-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #F5F3F1;
  padding-bottom: 40px;
  opacity: 1;
  transition: all .2s;
}

.recientes-content {
  display: inline-block;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0px;

  & span {
    color: #53575A;
    font-family: Fjalla One;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 156.25% */
    letter-spacing: 1px;
    text-transform: uppercase;

  }
}

blog-recent-grid {
  display: grid;
  margin: 40px auto;
  width: 100%;
  min-height: 300px;

  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  column-gap: 40px;

}

blog-recent-item {
  width: 100%;
  /* 
  width: 320px; */
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

blog-recent-item > img {
  height: 180px;
  width: 100%;
}
blog-recent-item > div {
  height: 120px;
  width: 100%;
  background-color: #EAE9E8;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
blog-recent-item::after {
  content: '';
  /* width: 60px; */
  width: 20%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  transition: all .3s;
}
blog-recent-item:hover::after {

  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}
/* blog-recent-item > div:hover {
  
  & :after {
    content: '';
    width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  }
} */


blog-recent-item > div > p {
  padding: 5px 10px;
  color: #53575A;
  font-family: Barlow Condensed;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18.57px; /* 132.643% */
  letter-spacing: 1px; 
}
blog-recent-item > div > small  {
  padding: 5px 10px;
  color: #d7282f;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.57px; /* 154.75% */
  letter-spacing: 1px;
}


blog-featured {
  display: inline-block;
  width: 90%;
  /* height: 600px; */
  max-width: 1200px;
  margin: 40px auto 0px;

  position: relative;

  & span {
    color: #53575A;
    font-family: Fjalla One;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px; /* 156.25% */
    letter-spacing: 1px;
    text-transform: uppercase;

  }
}
blog-featured-grid {
  display: grid;
  margin: 40px auto;
  width: 100%;
  min-height: 300px;

  grid-template-columns: repeat(2, 1fr);
  
  grid-column-gap: 40px;

  justify-content: space-between;
  align-items: center;

}

blog-featured-grid-item {
  height: 300px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
blog-featured-grid-item::after {
  content: '';
  /* width: 60px; */
  width: 20%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}
blog-featured-grid-item:hover::after {

  transition: all .3s;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}

/* 
blog-featured-grid-item:nth-child(1) { grid-area: 1 / 1 / 2 / 4; }
blog-featured-grid-item:nth-child(2) { grid-area: 1 / 4 / 2 / 7; } */


blog-featured-grid-item > img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}
blog-featured-grid-item > div {
  height: 120px;
  width: 100%;
  background-color: #EAE9E8;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  padding: 10px 20px;
}

blog-featured-grid-item > div > p {
  color: #53575A;
  font-family: Barlow Condensed;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18.57px; /* 132.643% */
  letter-spacing: 1px; 
}
blog-featured-grid-item > div > small  {
  color: #d7282f;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.57px; /* 154.75% */
  letter-spacing: 1px;
}



blog-featured-grid-arrows {
  position: absolute;
  left: -3%;
  display: flex;
  width: 106%;
  justify-content: space-between;
  align-items: center;
  height: 1px;
}
blog-featured-grid-arrows > svg {
  cursor: pointer;
}
blog-featured-grid-arrows > svg:hover {
  transform: scale(1.2);
}



blog-posts-carousel {
  display: inline-block;
  width: 90%;
  max-width: 1200px;
  margin: 40px auto 0px;

  /* & span {
    color: #53575A;
    font-family: Fjalla One;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
  } */

  /* Synnfusion Pager*/

}
& #Pager {
  border: none;
  background-color: #F5F3F1;
  display: flex;
  justify-content: end;
  width: 90%;
  max-width: 1200px;
  margin: 10px auto;
}
& .e-parentmsgbar {
  display: none !important;
}
& .e-pager .e-pagercontainer {
  background: #F5F3F1 !important;
  font-family: 'Barlow Condensed';
  font-size: 18px;
  font-weight: 500;
  color: #000 !important;
}
& .e-pager .e-currentitem {
    background-color: #F5F3F1 !important;
    color: #d7282f !important; 
}
& .e-pager .e-pager-default:hover {
  background-color: #F5F3F1 !important;
}
& .e-pager .e-numericitem {
  background-color: #F5F3F1 !important; 
}
& .e-pager .e-prevpage, .e-pager .e-nextpage  {
  background-color: #F5F3F1 !important;
}

blog-posts-carousel-grid {
  display: grid;
  margin: 40px auto 0px;
  width: 100%;
  min-height: 300px;

  grid-template-columns: repeat(3, 1fr);
  justify-content: space-between;
  column-gap: 40px;

}

blog-posts-carousel-grid-item {
  width: 100%;
  /* 
  width: 320px; */
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

blog-posts-carousel-grid-item > img {
  height: 180px;
  width: 100%;
}
blog-posts-carousel-grid-item > div {
  height: 120px;
  width: 100%;
  background-color: #EAE9E8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
blog-posts-carousel-grid-item::after {
  content: '';
  /* width: 60px; */
  width: 20%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}
blog-posts-carousel-grid-item:hover::after {

  transition: all .3s;
  content: '';
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
}
/* blog-recent-item > div:hover {
  
  & :after {
    content: '';
    width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  bottom: 0;
  }
} */


blog-posts-carousel-grid-item > div > p {
  padding: 10px 20px;
  color: #53575A;
  font-family: Barlow Condensed;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 18.57px; /* 132.643% */
  letter-spacing: 1px; 
}
blog-posts-carousel-grid-item > div > small  {
  padding: 10px 20px;
  color: #d7282f;
  font-family: Raleway;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.57px; /* 154.75% */
  letter-spacing: 1px;
}
blog-posts-selectors {
  display: inline-flex;
  width: 100%;
  justify-content: end;
  margin-bottom:  40px;
  margin-top: 20px;
}
blog-posts-selectors > ul {
  display: flex;
}
blog-posts-selectors > ul > li {
  list-style: none;
  color: #97928A;
  text-align: center;
  font-family: Barlow Condensed;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 14.29px;
  letter-spacing: 1px;
  text-transform: uppercase;
  
  margin-left: 10px;
  cursor: pointer;
}
blog-posts-selectors > ul > .first,blog-posts-selectors > ul > .last {

  color: #d7282f !important;

}

#blog-tabs-content--2 {
  background-color: #EFEFED;
  padding-bottom: 40px;
}

blog-gallery-title {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
  margin-bottom: 40px;
}
blog-gallery-title > h3 {
  color: #53575A;
  font-family: Fjalla One;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 156.25% */
  letter-spacing: 1px;
}

blog-gallery-grid {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
blog-gallery-grid > #current-img {
  height: 550px;
  width: 100%;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-user-drag: none;
  transition: all .2s;
  object-fit: cover;
}
blog-gallery-grid > #current-img:hover {
  box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
}

blog-gallery-selector {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
blog-gallery-selector-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}
blog-gallery-selector-imgs > img {
  width: 100%;
  cursor: pointer;
  height: 200px;
  -webkit-user-drag: none;  
}
blog-gallery-selector-imgs > img:hover {
  transition: all .2s;
  box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
}

blog-gallery-selector-selectors {
  margin: 0 auto;
  display: flex;
  height: 80px;
  width: 70%;
  justify-content: space-between;
  align-items: center;
}
blog-gallery-selector-selectors > div > i {
  font-size: 25px;
  color: #53575A;
}
blog-gallery-selector-selectors > div > i:hover {
  font-size: 30px;
  cursor: pointer;
}
blog-gallery-selector-selectors > div > span {
  font-family: 'Barlow Condensed';
  font-size: 20px;
  margin: 0px 20px;
  letter-spacing: 1px;
  cursor: pointer;
}

/* ✅ NUEVO: Mejoras responsive para controles de galería */
@media (max-width: 768px) {
  /* Ocultar texto descriptivo en móvil, mantener solo flechas */
  blog-gallery-selector-selectors > div > span {
    display: none;
  }
  
  /* Ajustar contenedor para mejor distribución en móvil */
  blog-gallery-selector-selectors {
    width: 90%;
    justify-content: space-around;
    padding: 0 20px;
  }
  
  /* Mejorar área de toque para las flechas en móvil */
  blog-gallery-selector-selectors > div {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  /* Hover/touch effects para móvil */
  blog-gallery-selector-selectors > div:hover,
  blog-gallery-selector-selectors > div:active {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
  }
  
  /* Ajustar tamaño de flechas para mejor visibilidad en móvil */
  blog-gallery-selector-selectors > div > i {
    font-size: 28px !important;
    color: #53575A;
  }
  
  blog-gallery-selector-selectors > div > i:hover {
    font-size: 28px !important; /* Mantener tamaño consistente en móvil */
  }
}

@media (max-width: 480px) {
  /* Ajustes adicionales para pantallas muy pequeñas */
  blog-gallery-selector-selectors {
    width: 95%;
    height: 70px;
  }
  
  blog-gallery-selector-selectors > div {
    min-width: 50px;
    min-height: 50px;
  }
  
  blog-gallery-selector-selectors > div > i {
    font-size: 24px !important;
  }
}

/* ✅ NUEVO: Mejoras responsive para imágenes de galería - Solo móvil */
@media (max-width: 768px) {
  /* Imagen principal - hacer cuadrada y proporcional en móvil */
  blog-gallery-grid > #current-img {
    height: 300px !important; /* Reducir altura para hacer más cuadrada */
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px; /* Agregar bordes redondeados para mejor estética */
  }
  
  /* Miniaturas - mantener proporciones correctas */
  blog-gallery-selector-imgs > img {
    height: 120px !important; /* Altura fija más pequeña para móvil */
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
  }
  
  /* Ajustar grid de miniaturas para mejor distribución en móvil */
  blog-gallery-selector-imgs {
    column-gap: 15px; /* Reducir espacio entre miniaturas */
    padding: 0 10px; /* Agregar padding lateral */
  }
}

@media (max-width: 480px) {
  /* Ajustes adicionales para pantallas muy pequeñas */
  
  /* Imagen principal aún más cuadrada en móviles pequeños */
  blog-gallery-grid > #current-img {
    height: 250px !important;
    border-radius: 6px;
  }
  
  /* Miniaturas más pequeñas para pantallas muy pequeñas */
  blog-gallery-selector-imgs > img {
    height: 80px !important;
    border-radius: 4px;
  }
  
  /* Grid de miniaturas con menos espacio */
  blog-gallery-selector-imgs {
    column-gap: 10px;
    padding: 0 5px;
  }
  
  /* Contenedor de galería con mejor padding */
  blog-gallery-grid {
    padding: 0 15px;
  }
}

/* ✅ NUEVO: Mejoras responsive para proporciones de imágenes de galería */
@media (max-width: 768px) {
  /* Imagen principal - hacer cuadrada y proporcional */
  blog-gallery-grid > #current-img {
    height: auto;
    aspect-ratio: 1 / 1; /* Hacer cuadrada */
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    max-height: 400px; /* Limitar altura máxima en móvil */
  }
  
  /* Ajustar contenedor de imagen principal */
  blog-gallery-grid {
    width: 95%;
    padding: 0 10px;
  }
  
  /* Miniaturas del carrusel - mantener proporciones */
  blog-gallery-selector-imgs {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px; /* Reducir espacio entre miniaturas */
    margin: 20px 0;
  }
  
  blog-gallery-selector-imgs > img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3; /* Proporción rectangular para miniaturas */
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    transition: all 0.3s ease;
  }
  
  /* Mejorar hover en miniaturas para móvil */
  blog-gallery-selector-imgs > img:hover {
    transform: scale(1.05);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
  }
}

@media (max-width: 480px) {
  /* Ajustes adicionales para pantallas muy pequeñas */
  blog-gallery-grid > #current-img {
    max-height: 300px; /* Altura más pequeña en móviles pequeños */
    border-radius: 6px;
  }
  
  /* Miniaturas más pequeñas en móviles pequeños */
  blog-gallery-selector-imgs {
    column-gap: 10px;
    margin: 15px 0;
  }
  
  blog-gallery-selector-imgs > img {
    border-radius: 3px;
    aspect-ratio: 3 / 2; /* Proporción ligeramente diferente para pantallas muy pequeñas */
  }
  
  /* Reducir efectos hover en pantallas muy pequeñas */
  blog-gallery-selector-imgs > img:hover {
    transform: scale(1.02);
  }
}


#blog-tabs-content--3 {
  background-color: #EFEFED;
  padding-bottom: 40px;
}

blog-videos-title {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
  margin-bottom: 40px;
}
blog-videos-title > h4 {
  color: #53575A;
  font-family: Barlow Condensed;
  font-size: 19px;
  font-style: normal;
  font-weight: bold;
  line-height: 50px; /* 263.158% */
  letter-spacing: 1px;
  text-transform: uppercase;
}

blog-videos-grid {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
blog-videos-grid > iframe {
  max-height: 550px;
  width: 100%;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-user-drag: none;
}
blog-videos-grid > #current-img:hover {
  transition: all .2s;
  box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
}

blog-videos-selector {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
blog-videos-selector-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}
blog-videos-selector-imgs > iframe {
  width: 100%;
  height: 200px;
  cursor: pointer;
  -webkit-user-drag: none;  
}
blog-videos-selector-imgs > iframe:hover {
  transition: all .2s;
  box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
}

blog-videos-selector-selectors {
  margin: 0 auto;
  display: flex;
  height: 80px;
  width: 70%;
  justify-content: space-between;
  align-items: center;
}

blog-videos-selector-selectors > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
blog-videos-selector-selectors > div > i {
  font-size: 25px;
  color: #53575A;
}
blog-videos-selector-selectors > div > i:hover {
  font-size: 30px;
  cursor: pointer;
}

blog-videos-selector-selectors > div > span {
  font-family: 'Barlow Condensed';
  font-size: 20px;
  margin: 0px 20px;
  letter-spacing: 1px;
  cursor: pointer;
}


#blog-tabs-content--4 {
  background-color: #EFEFED;
  padding-bottom: 40px;
}

blog-journal-title {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 40px;
  margin-bottom: 40px;
}
blog-journal-title > h4 {
  color: #53575A;
  font-family: Barlow Condensed;
  font-size: 19px;
  font-style: normal;
  font-weight: bold;
  line-height: 50px; /* 263.158% */
  letter-spacing: 1px;
  text-transform: uppercase;
}

blog-journal-grid {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
blog-journal-grid > #current-img {
  max-height: 680px;
  width: 100%;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-user-drag: none;
}
blog-journal-grid > #current-img:hover {
  transition: all .2s;
  box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
}

blog-journal-selector {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
blog-journal-selector-imgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
}
blog-journal-selector-imgs > img {
  width: 100%;
  cursor: pointer;
  -webkit-user-drag: none;  
}
blog-journal-selector-imgs > img:hover {
  transition: all .2s;
  box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -webkit-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
  -moz-box-shadow: 0px -1px 6px 0px rgba(0,0,0,1);
}

blog-journal-selector-selectors {
  margin: 0 auto;
  display: flex;
  height: 80px;
  width: 70%;
  justify-content: space-between;
  align-items: center;
}
blog-journal-selector-selectors > i {
  font-size: 25px;
  color: #53575A;
}
blog-journal-selector-selectors > i:hover {
  font-size: 30px;
  cursor: pointer;
}

#blog-tabs-content--5 {
  display: flex;
  justify-content: center;
  flex-direction: row;
  padding-bottom: 40px;
}
blog-post {
  /* display: flex; */
  width: 75%;
  max-width: 1000px;
  padding-right: 40px;
  padding-top: 40px;
  padding-left: 40px;
}
blog-post > blog-post-title > h1 {
  color: #53575A;
  font-family: "Fjalla One";
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 156.25% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
blog-post > blog-post-title > span {
  color: #53575A;
  font-family: 'Barlow Condensed';
  font-size: 19px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px; /* 263.158% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
blog-post > blog-post-img {
  display: flex;
  background-color: #545859;
  height: 500px;
  width: 100%;
  margin-bottom: 40px;
}
blog-post > blog-post-img {
  display: flex;
  background-color: #545859;
  height: 37vw;
  max-height: 500px;
  width: 100%;
  margin-bottom: 40px;
}
blog-post > blog-post-img > img {
  width: 100%;
  object-fit: cover;
}
blog-post > blog-post-text > p {
  color: #53575A;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 166.667% */
  letter-spacing: 1px;
  margin-bottom: 10px;
}
blog-post > blog-post-text > p > a {
  color: #0096A9;
}
blog-post > blog-post-text > p > a:visited {
  color: #0096A9;
}

blog-post > blog-post-text > span {
  color: #53575A;
  font-family: Raleway;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
  line-height: 30px; /* 166.667% */
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
blog-post > blog-post-text > h3 {
  color: #53575A;
  font-family: Raleway;
  font-size: 24px;
  font-style: normal;
  font-weight: bold;
  line-height: 30px; /* 166.667% */
  letter-spacing: 1px;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}



recent-posts {
  /* display: flex; */
  width: 25%;
  border-left: solid 1px #53575A;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
recent-posts > span {
  color: #53575A;
  font-family: 'Barlow Condensed';
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 157.895% */
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
recent-posts > a {
  color: #53575A;
  font-family: Raleway;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px; /* 187.5% */
  letter-spacing: 1px;
  margin-bottom: 10px;
}
recent-posts > a:hover{
  color: #0096A9;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 1000px) {

  blog-recent-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    justify-items: center;
  }

  blog-featured {
    width: 85%;
  }

  blog-recent-item {
    width: 320px;
  }
  blog-posts-carousel-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
    justify-items: center;
  }

  blog-posts-carousel-grid-item {
    width: 320px;
  }

}
@media (max-width: 750px) {

  blog-recent-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    justify-items: center;
  }

  blog-recent-item {
    width: 320px;

  }

  blog-featured-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    justify-items: center;
  }

  blog-featured-grid-item {
    width: 320px;
  }


  blog-posts-carousel-grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
    justify-items: center;
  }

  blog-posts-carousel-grid-item {
    width: 320px;
  }




}


back-to-top {
  position: fixed;
  bottom: 80px;
  right: 80px;
  height: 80px;
  width: 80px;
}
back-to-top > button {
  height: 80px;
  width: 80px;
  background-color: #0096A9; 
  cursor: pointer;
  border: none;
  border-radius: 15px;
  transition: .3s all;
  opacity: 0;
}
back-to-top > button:hover {
  background-color: #0b8191; 
}
back-to-top > button > i {
  color: #FFF !important;
}
back-to-top > button > i::before {
  font-size: 1em;
}

blog-journal-list {
  max-width: 800px;
  width: 90%;
  margin: 40px auto;
}
blog-journal-list-item {
  display: flex;
  width: 100%;
  height: 200px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid black;
}
blog-journal-list-item-img {
  display: flex;
  width: 300px;
  height: 100%;
  background-color: #D9D9D9;
  margin-right: 20px;
}
blog-journal-list-item-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
blog-journal-list-item-text > h3 {
  font-family: Raleway;
  font-size: 18px;
  letter-spacing: 1px;
  color: #BE4D00;  
}
blog-journal-list-item-text > p {
  font-family: 'Barlow Condensed';
  font-size: 14px;
  letter-spacing: 1px;
  color: #53575A;

}
blog-journal-list-item-text > a {
  height: 30px;
  width: 180px;
  border: 1px solid gray;
  color: #97928A;
  background-color: #D9D9D9;
  transition: all .2s;
  cursor: pointer;
  align-self: flex-end;

  text-decoration: none;
  font-family: Raleway;
  display: flex;
  justify-content: center;
  align-items: center;
}
blog-journal-list-item-text > a:visited {
  color: gray;
}
blog-journal-list-item-text > a:hover,blog-journal-list-item-text > a:visited:hover {
  border: 1px solid #BE4D00;
  color: #BE4D00;
}


.screen {
  position: absolute;
  height: 2000px;
  width: 100vw;
  background-color: #FFF;
  z-index: 10001;
  opacity: 1;

  transition: all .3s;

  & div {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.screen-loaded {
  opacity: 0;
}