@import url("https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.section-1 {
  display: block;
  background-color: hsl(263, 55%, 52%) !important;
  grid-area: 1/1/1/span 2;
  background: url("/images/bg-pattern-quotation.svg") no-repeat top right;
}
.section-1 blockquote {
  color: hsl(0, 0%, 81%);
}

.section-2 {
  grid-area: 1/3/1/span 1;
  background-color: hsl(217, 19%, 35%);
  color: hsl(0, 0%, 81%);
}
.section-2 blockquote {
  color: hsl(0, 0%, 81%);
}

.section-3 {
  grid-area: 2/1/3/span 1;
  background-color: hsl(0, 0%, 100%);
}

.section-4 {
  grid-area: 2/2/3/span 2;
  color: hsl(0, 0%, 100%);
  background-color: hsl(219, 29%, 14%);
}

.section-5 {
  grid-area: 1/4/-3/span 1;
  background-color: hsl(0, 0%, 100%);
}

main {
  max-width: 70vw !important;
  min-height: 80vh !important;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 4rem;
  align-items: start;
  justify-content: space-evenly;
  padding: 1rem 4rem;
  transition: all 0.3s ease-in-out;
}

figcaption {
  display: none;
}

section {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0px 0px 25px 3px hsl(0, 0%, 81%);
}
section header:nth-child(1) {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 !important;
}
section header:nth-child(1) span {
  display: block !important;
}
section header:nth-child(1) span:nth-child(1) {
  font-weight: 600;
  font-size: 0.85rem;
  color: hsl(210, 46%, 95%);
}
section header:nth-child(1) span:nth-child(2) {
  color: hsl(0, 0%, 81%);
  font-size: 0.75rem;
}
section header:nth-child(1) figure {
  width: 30px;
  border-radius: 50%;
  border: 2px solid hsl(0, 0%, 81%);
}
section header:nth-child(1) figure img {
  display: block;
  width: 100%;
  border-radius: 50%;
}
section header:nth-child(2), section header:nth-child(2), section header:nth-child(5) {
  font-size: 1rem;
  color: hsl(0, 0%, 81%);
  font-weight: 400;
}
section blockquote {
  color: hsl(217, 19%, 35%);
  padding: 0 !important;
  margin: 0 !important;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.1rem;
}

@media screen and (max-width: 1000px) {
  main {
    width: 50vw !important;
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    grid-template-rows: auto;
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 600px) {
  main {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: hsl(210, 46%, 95%);
  font-family: "Barlow Semi Condensed", serif;
  font-style: normal;
}/*# sourceMappingURL=index.css.map */