@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@media (max-width: 768px) {
  .example-respond-down {
    background-color: lightblue;
  }
}

@media (min-width: 992px) {
  .example-respond-up {
    background-color: lightgreen;
  }
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100vh;
  font-family: "Bebas Neue", sans-serif;
  background-color: #394b9b;
  background-image: url(../img/portada-informe-gestion07.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  
}



.item2 img{
  display: none;
}

.cover {
  width: 100%;
  height: 100vh;
  display: grid;
  grid-template-columns: 25% 75%;
  grid-template-areas: "left right";
}

@media (max-width: 768px) {
  /* Ajusta el tamaño según tus necesidades */
  .cover {
    grid-template-columns: 1fr;
    /* Una columna en dispositivos móviles */
    grid-template-rows: auto auto;
    /* Dos filas para los elementos */
    grid-template-areas: "right" "left";
    /* Invertir el orden de los divs */
    margin-bottom: 20rem;
  }

  

  body{
    background-color: #3a4b9b;
    
  }

  .item2 img{
    display: block;
  }

  
}

@media (max-width: 992px){
  
  body{
    background-color: #394b9b;
    background-image: none;
    
  }
}
.item {
  grid-area: left;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item1 {
  bottom: unset;
}

.item2 {
  grid-area: right;
  display: flex;
  align-items: center;
  justify-content: center;
}
.item2 img {
  width: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media (max-width: 768px) {
  .item2 img {
    width: 111%;
  }
}

.section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 0 5%;
  background: #394b9b;
}
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    margin: 20% 0;
    height: auto;
  }
}
.section-left {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .section-left {
    width: 100%;
  }
}
.section-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px;
  gap: 20px;
}
@media (max-width: 768px) {
  .section-right {
    width: 100%;
    align-items: center;
    justify-content: center;
    height: auto;
  }
}
.section-img {
  position: relative;
  z-index: 5;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
@media (max-width: 768px) {
  .section-img {
    width: 80%;
  }
}
.section-title {
  color: #fff;
  text-align: right;
  font-size: 35px;
  line-height: 38px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 28px !important;
    line-height: 30px !important;
  }
}


.section::before {
  top: 18%;
}
@media (min-width: 1200px) {
  .section::before {
    top: 16%;
  }
}
@media (max-width: 768px) {
  .section::before {
    top: 0%;
  }
}

.section::after {
  bottom: 18%;
  /* Línea en la parte inferior */
}
@media (min-width: 1200px) {
  .section::after {
    bottom: 16%;
  }
}
@media (max-width: 768px) {
  .section::after {
    height: 0;
  }
}

@media (max-width: 768px) {
  .example-respond-down {
    background-color: lightblue;
  }
}

@media (min-width: 992px) {
  .example-respond-up {
    background-color: lightgreen;
  }
}

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* background: #3a4b9b;
  border: 9px solid #3a4b9b; */
  border-radius: 6px;
  margin-bottom: 8.5rem;
}

@media (max-width: 768px) {
  .buttons {
    flex-wrap: wrap;
    flex-direction: row;
    background: #3a4b9b;
    
   
  }
}

.btn {
  display: inline-block;
  border: none;
  padding: 10px;
  text-align: left;
  text-decoration: none;
  font-family: "Bebas Neue", sans-serif;
  font-size: 15px;
  font-weight: normal;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
  border: 1px solid #fff;
}

.btn-primary {
  color: #fff;
  background-color: #2D499D;
  border: 1px solid #2D499D;
}
.btn-primary:hover {
  background-color: #223775;
}

.btn-primary-o {
  color: #2D499D;
  background-color: transparent;
  border: 1px solid #fff;
}
.btn-primary-o:hover {
  background-color: rgba(45, 73, 157, 0.09);
}

.btn-secondary {
  color: #fff;
  background-color: #D52B1E;
  border: 1px solid #D52B1E;
}
.btn-secondary:hover {
  background-color: #a82218;
}

.btn-secondary-c02 {
  color: #fff;
  background-color: #8caec6;
  border: 1px solid #8caec6;
}
.btn-secondary-c02:hover {
  background-color: #155f94;
}

.btn-secondary-c03 {
  color: #fff;
  background-color: #f18c76;
  border: 1px solid #f18c76;
}
.btn-secondary-c03:hover {
  background-color: #92311b;
}

.btn-secondary-c04 {
  color: #fff;
  background-color: #a292c6;
  border: 1px solid #a292c6;
}
.btn-secondary-c04:hover {
  background-color: #3c1b8a;
}

.btn-secondary-c05 {
  color: #fff;
  background-color: #15af97;
  border: 1px solid #15af97;
}
.btn-secondary-c05:hover {
  background-color: #198c7b;
}

.btn-secondary-c06 {
  color: #fff;
  background-color: #5dc2d9;
  border: 1px solid #5dc2d9;
}
.btn-secondary-c06:hover {
  background-color: #21778b;
}

.btn-secondary-c07 {
  color: #fff;
  background-color: #de2116;
  border: 1px solid #de2116;
}
.btn-secondary-c07:hover {
  background-color: #a82218;;
}


.btn-secondary-o {
  color: #D52B1E;
  background-color: transparent;
  border: 1px solid #fff;
}
.btn-secondary-o:hover {
  background-color: rgba(213, 43, 30, 0.09);
}

.btn-light {
  color: #fff;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light:hover {
  background-color: #e6e6e6;
}

.btn-light-o {
  color: #394b9b;
  background-color: #fff;
  border: 1px solid #fff;
}
.btn-light-o:hover {
  background-color: #5362a3;
  color: #fff;
}

.list-link {
  list-style: none;
  font-family: "Montserrat", sans-serif;
}
.list-link li {
  margin: 5px 0;
}
.list-link li a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  text-decoration: underline;
  color: #fff;
  transition: 0.5s ease;
}
.list-link li a span {
  font-weight: 600;
}
.list-link li a p {
  width: 100%;
  display: flex;
  justify-content: end;
  text-align: right;
}
.list-link li a:hover {
  color: #009FE3;
  transition: 0.5s ease;
}

@media (max-width: 500px) {
  .list-link li {
    margin: 10px 0;
  }
  .list-link li a {
    display: flex;
    justify-content: end;
    gap: 20px;
    width: 100%;
    text-decoration: underline;
  }
  .list-link li a span {
    font-weight: 600;
  }
  .list-link li a p {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 27px;
  }
  .list-link li a:hover {
    color: #009FE3;
    transition: 0.5s ease;
  }
}/*# sourceMappingURL=styles.css.map */