/* HEADER */

.headerr {
  /* #8dbf44; VERDE DE CIINSEV */

  /* #17a2b8 azul
#007bff;
2C719B
  */

  background-color: white;
  width: 90%;
  height: 10%;
}

.logo {
  position: relative;
  border-left: 100%;
  float: left;
  margin: 0;
}

.texto2 {
  font-size: 100%;
  font-style: normal;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: #355c8a;
  font-weight: bold;
}

.texto3 {
  font-family: MaisonNeue-Bold, Helvetica, sans-serif;
  font-size: 100%;
  font-weight: normal;
  font-style: normal;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: black;
}
.site-header {
  padding: 25px 15px 25px 30px;
  position: relative;
  width: 100%;
  z-index: 35;
  color: #040e1d;
  color: var(--color-text);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.texto4 {
  display: inline-block;
  position: relative;
  font-size: 100%;
  text-indent: 0;
}

.texto4::after {
  content: "";
  font-size: 100%;
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffc107;
  
  /* Color del subrayado #0087ca */

  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.texto4:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.center::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: black;
  transform-origin: left right;
  transition: transform 0.25s ease-out;
}

.center:hover::after {
  transform: scaleX(0.5);
  transform-origin: right left;
}

/* END HEADER */

/* BLOG */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman",
    serif /*rtl:Amiri, Georgia, "Times New Roman", serif*/;
}

.display-4 {
  font-size: 2.5rem;
}

@media (min-width: 768px) {
  .display-4 {
    font-size: 3rem;
  }
}

.flex-auto {
  flex: 0 0 auto;
}

.h-250 {
  height: 250px;
}

@media (min-width: 768px) {
  .h-md-250 {
    height: 250px;
  }
}

/* Pagination */
.blog-pagination {
  margin-bottom: 4rem;
}

/*
 * Blog posts
 */

.blog-post {
  margin-bottom: 4rem;
}

.blog-post-title {
  font-size: 2.5rem;
}

.blog-post-meta {
  margin-bottom: 1.25rem;
  color: #727272;
}

/* END BLOG */

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -0.125em;
  fill: currentcolor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* ZOOM */
.zoom {
  transition: 1.5s ease;
  -moz-transition: 1.5s ease;
  -webkit-transition: 1.5s ease;
  -o-transition: 1.5s ease;
}

.zoom:hover {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}

/*
* Footer
*/

.blog-footer--grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-areas: "enlaces contactanos frmcontacto";
}

.blog-footer--enlaces {
  grid-area: enlaces;
}

.blog-footer--contactanos {
  grid-area: contactanos;
}

.blog-footer--frmcontacto {
  grid-area: frmcontacto;
}

@media (max-width: 767.98px) {
  .blog-footer--grid {
    grid-template-columns: 1fr;
    grid-template-areas: "frmcontacto" "enlaces" "contactanos";
  }

  .blog-footer--frmcontacto form>button {
    width: 100%;
  }
}

.indexaciones {
  width: 10%;
  border-spacing: 20px;
  margin: 10px;
}

.container-footer {
  width: 100%;
}

.blog-footer {
  padding: 2.5rem 1.5rem;
  text-align: left;
  width: 100%;
  background-color: #0a1338;
  border-top: 0.05rem solid #e5e5e5;
  color: white;
}

.blog-footer p:last-child {
  margin-bottom: 0;
}

.second-footer {
  background-color: white;
  color: black;
}

.text-justify {
  text-align: justify;
}