@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto+Slab:wght@100..900&family=Roboto:wght@400;700;900&display=swap');

body {
      font-family: "Roboto Mono", monospace;
      margin: 0;
      padding: 0;
}

a {
      text-decoration: none;
      display: inline;
      color: black;
}

.home-body {
      position: fixed;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
}

.grid-container {
      max-width: 1500px;
      margin: auto;
}

/******* HEADER *********/

header .header-icons-container {
      width: 100%;
      height: 50px;
      display: grid;
      background-color: #921c1a;
      /* background-color: #013253; */
}

header .header-icons-container .icons {
      width: 300px;
      height: auto;
      display: flex;
      justify-items: flex-end;
      align-items: center;
      justify-content: space-between;
      justify-self: end;
      margin-right: 50px;
}

header .icons span {
      color: white;
}

nav {
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 90px;      
      background-color: #013253;
      margin-bottom: 12px;
      box-shadow: 0px 12px 0px #921c1a;
}

nav .nav-logo-container {
      margin-left: 50px;
}

nav .nav-logo-container img {
      width: 220px;    
      margin-top: 5px;
}

nav .profile-link {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-right: 50px;
}

nav .profile-link a {
      color: white;
      /* border-bottom: 2px solid black; */
      padding-right: 50px;
}

/******** MAIN *********/

.home-main {
      display: grid;
      grid-template-columns: 1fr 4fr 1fr;
      /* height: calc(100vh - 140px); */
      height: 100%;
      /* height: 100vh; */
      /* background-image: url('../assets/img/cover.jpg'); */
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/img/cover.jpg');
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
}

.home-main section {
      display: grid;
      grid-column: 2;
      justify-items: center;
      height: 350px;
      margin-top: 140px;
}

.home-main-text {
      font-size: 30px;
      font-weight: 700;
      letter-spacing: 10px;      
      text-align: center;
      color: white;
}

.home-main-button {
      width: 110px;
      height: 50px;
      background: #013253;
      display: grid;
      align-items: center;
      border-radius: 50px;
      border: none;
      /* text-shadow: 2px 2px 4px #000000;
      box-shadow: -11px 13px 36px -12px rgba(0,0,0,1); */
}

.home-main-button a {
      font-weight: 700;
      font-size: 18px;
      color: white;      
}

.home-main-button:hover {
      background-color: #921c1a;
      transform: scale(1.1);
      border: none;
      transition: all 0.1s ease;
}


/**** CATALOGO ****/

.blogs-main {
      display: block;
}

.blogs-news-container {
      background-color: #e6e9ed;
      /* padding: 0px 50px 40px; */
      padding: 50px 50px;
      height: auto; /* esto lo puse porque deja un cuadro en blanco*/
}

/* Videos */
iframe {
      padding-top: 50px;
      /* padding-bottom: 10px; */
}

.blogs-main-new {
      display: block;
      /* grid-template-columns: 2fr 1fr;
      grid-template-rows: 2fr; */
}

.blogs-news-img-container {
      grid-column: 1;
}

.blogs-news-img-container img {
      width: 75%;
}

/* imagen para cada clave */
.catalogo-img-container img {
      width: 100%;
}

/** esto lo puse solo para nosotros**/
/* .nosotros-img-container img {
      width: 100%;
      height: 100%;
      margin-top: 20px;
} */

.blogs-news-info-container {
      grid-column: 2;
}

.blogs-news-info-container p {
      margin-bottom: 35px;
      /* font-size: 24px; */
}

.blogs-button {
      border: 1px solid #921c1a;
      padding: 10px 15px;
      font-size: 12px;
}

.blogs-button:hover {
      background-color: #921c1a;
      color: white;
      transition: all 0.3s ease;
}

.grid-container h1 {
      border-bottom: 1px solid #cdd2da;
      padding-bottom: 20px;
      text-align: center;
}

.blogs-posts-container {      
      background-color: #e6e9ed;
      padding: 0 50px 40px;
      padding: 24px 24px;
      text-align: center;
}

.blogs-posts-container h3 {
      border-bottom: 1px solid #cdd2da;
      padding-bottom: 20px;
      text-align: center;
}

/**** ARTICLE *****/

.blogs-posts-container .post-container {
      display: inline-block;
      padding-left: 10px;
      max-width: 100%;
      margin-bottom: 50px;
      /* text-align: left; */
}

.blog-posts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      grid-gap: 30px;
      margin-top: 20px;
      /* border-top: 1px solid #ccd1d9; */
      padding-top: 30px;
}

.blog-item-img {
      position: relative;
      margin-bottom: 1rem;
      display: block;
}

.blog-item-img img {
      display: block;
}

.img-fluid {
      width: 100%;
      height: auto;
  }

.blogs-posts-container .post-container p {
      margin-bottom: 35px;      
}

.blogs-posts-container .post-container img {
      width: 100%;
}


/****** FOOTER ********/


footer {
      width: 100%;
      height: 80px;
      background-color: #013253;
      border-top: 12px solid #921c1a;
      text-align: center;
}

footer p {
      color: #cdd2da;
      margin-top: 30px;
}