body {
  background-color: #2B2D38;
  width: 80%;
  margin: 16px;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFFFFF;
}

header.container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
}
header.container figure {
  margin: 0;
}
header.container figcaption {
  display: none;
}

nav ul li a {
  text-decoration: none;
  color: #ABABAB;
  position: relative;
}
nav ul li a:hover::after {
  content: "";
  position: absolute;
  bottom: -10px; /* debajo del texto */
  left: 0;
  width: 50%; /* solo hasta la mitad */
  height: 3px; /* grosor */
  background: #DB2A6B;
}
nav ul li a:hover {
  color: #FFFFFF;
}

nav ul {
  display: flex;
  gap: 50px;
  list-style: none;
  padding-right: 100px;
}

section.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 20px;
  height: 80vh;
}

.hero-izq h1.title {
  font-family: "Merriweather", sans-serif;
  font-size: 65px;
  width: 90%;
  margin: 0px;
}
.hero-izq p.description {
  opacity: 0.5;
  width: 80%;
  font-size: 20px;
  font-weight: lighter;
}
.hero-izq div.buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 60px;
}
.hero-izq div.buttons p {
  align-items: center;
  padding: 12px 45px;
  gap: 5px;
  border: 2px solid transparent;
}
.hero-izq div.buttons p.button-primary {
  display: flex;
  background-color: #DB2A6B;
  border-radius: 15px 15px 15px 0;
}
.hero-izq div.buttons p.button-primary:hover {
  background-color: #2B2D38;
  border: 2px solid #DB2A6B;
}
.hero-izq div.buttons p.button-secondary {
  display: flex;
  text-decoration: underline;
}
.hero-izq div.buttons p.button-secondary:hover {
  border: 2px solid #DB2A6B;
  border-radius: 15px 15px 15px 0px;
}
.hero-izq div.items {
  display: flex;
}
.hero-izq div.items article.item {
  display: flex;
  gap: 15px;
  margin-right: 40px;
}
.hero-izq div.items article.item img {
  width: 60px;
}
.hero-izq div.items article.item h3 {
  font-size: 15px;
  font-weight: normal;
}

.hero-der {
  background-image: url("../img/icon/ellipse-1.png"), url("../img/icon/ellipse.png");
  background-position: bottom right, bottom right;
  background-repeat: no-repeat, no-repeat;
  background-size: 500px, 660px;
  padding-bottom: 80px;
}
.hero-der .gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 80%;
}
.hero-der .gallery .card {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 60px;
}
.hero-der .gallery .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-der .gallery .card1 {
  grid-column: 1/2;
  grid-row: 1/3;
  background: #6E1FED;
}
.hero-der .gallery .card2 {
  grid-column: 1/2;
  grid-row: 3/4;
  background: #DB2A6B;
}
.hero-der .gallery .card3 {
  grid-column: 2/3;
  grid-row: 1/2;
  background: #60D3D9;
}
.hero-der .gallery .card4 {
  grid-column: 2/3;
  grid-row: 2/4;
  background: #FF7E29;
}
.hero-der .gallery .card5 {
  grid-column: 3/4;
  grid-row: 1/4;
  background: #F4B840;
}/*# sourceMappingURL=styles.css.map */