.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.nosotros {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  padding: 100px 0;
}
.nosotros .nosotros__fondo {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  width: 100%;
}
.nosotros .nosotros__fondo img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.nosotros .contenedor {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 40rem minmax(0, 1fr);
  gap: 80px;
}
@media (max-width: 1024px) {
  .nosotros .contenedor {
    grid-template-columns: minmax(0, 1fr);
  }
}
.nosotros .contenedor .nosotros__galeria {
  height: auto;
  aspect-ratio: 16/10.5;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  height: 100%;
  width: 100%;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid .nosotros__item {
  overflow: hidden;
  border-radius: 0.5rem;
  height: 100%;
  width: 100%;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid .nosotros__item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="1"] .nosotros__item:nth-child(1) {
  grid-column: 1;
  grid-row: 1/3;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="1"] .nosotros__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="1"] .nosotros__item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="2"] .nosotros__item:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="2"] .nosotros__item:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="2"] .nosotros__item:nth-child(3) {
  grid-column: 1;
  grid-row: 1/3;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="3"] .nosotros__item:nth-child(3) {
  grid-column: 2;
  grid-row: 1;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="3"] .nosotros__item:nth-child(1) {
  grid-column: 2;
  grid-row: 2;
}
.nosotros .contenedor .nosotros__galeria .nosotros__grid[data-grid="3"] .nosotros__item:nth-child(2) {
  grid-column: 1;
  grid-row: 1/3;
}
.nosotros .contenedor .nosotros__contenido {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nosotros .contenedor .nosotros__contenido .nosotros__etiqueta {
  padding: 4px 5px;
  border-radius: 4px;
  color: #216a93;
  background: rgba(33, 106, 147, 0.1);
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.nosotros .contenedor .nosotros__contenido .nosotros__texto {
  margin-bottom: 30px;
}
.nosotros .contenedor .nosotros__contenido .nosotros__texto h2 {
  font-weight: bold;
  font-size: 30px;
  line-height: 35px;
  color: #216a93;
  margin-bottom: 10px;
}
.nosotros .contenedor .nosotros__contenido .nosotros__texto h3 {
  margin: 10px 0;
  color: #216a93;
  font-size: 20px;
  line-height: 27px;
  font-weight: bold;
}
.nosotros .contenedor .nosotros__contenido .nosotros__texto p {
  font-size: 16px;
}
.nosotros .contenedor .nosotros__contenido .nosotros__texto strong {
  font-weight: bold;
  font-size: 16px;
}/*# sourceMappingURL=index.css.map */