@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
body {
  font-family: "roboto", Helvetica, Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  color: #2d3f66;
}

.wrapper {
  padding-top: 2rem;
  padding-left: 2rem;
  text-align: left;
  height: 40vh;
  width: 100vw;
  background: white no-repeat center center fixed;
  background-size: cover;
}
.wrapper h1 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 3px;
  color: #2d3f66;
  transition: all 0.4s ease;
}
.wrapper mark {
  background-color: white;
  padding: 0px 3px;
  color: #2d3f66;
  transition: all 0.4s ease;
}

.articleText * {
  transition: all 0.4s ease;
}
.articleText {
  margin: 30px 0;
}
.articleText h1,
.articleText h2,
.articleText h3,
.articleText h4,
.articleText h5,
.articleText h6,
.articleText blockquote,
.articleText p,
.articleText .introduction {
  display: block;
  margin: auto;
  width: 90%;
  max-width: 460px;
  margin-bottom: 10px;
}
.articleText h2 {
  font-size: 18px;
  margin: 20px auto 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
.articleText h3 {
  font-size: 16px;
  margin: 20px auto 5px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
.articleText strong {
  font-weight: 600;
}
.articleText .introduction {
  font-size: 18px;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}
.articleText .introduction p {
  width: 100%;
}
.articleText .introduction::after {
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background-color: #2d3f66;
  margin-top: 2px;
}
.articleText blockquote {
  font-size: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  border-left: solid 2px;
  font-style: italic;
  padding-left: 20px;
}
.articleText blockquote p {
  display: block;
  margin: 0;
}
.articleText blockquote p::before {
  content: '"';
  font-weight: 600;
}
.articleText blockquote p::after {
  content: '"';
  font-weight: 600;
}
.articleText blockquote cite {
  margin-top: 5px;
  display: block;
  font-size: 14px;
}

figure {
  width: 100vw;
  height: 40rem;
  position: relative;
  background-color: orange;
  overflow: hidden;
  margin-bottom: 3rem;
}
figure img {
  position: absolute;
  left: -1000%;
  right: -1000%;
  top: -1000%;
  bottom: -1000%;
  margin: auto;
  min-height: 100%;
  min-width: 100%;
}
figure figcaption {
  position: absolute;
  background-color: white;
  margin: auto;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
  width: 100%;
  bottom: 0;
  padding: 5px 20px;
}

.carousel {
  width: 100%;
  background-color: transparent;
}
.carousel figure {
  margin: 0;
}
.carousel img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.pdf {
  width: 100%;
  height: 30rem;
}

/*Tablet breakpoint*/
@media only screen and (min-width: 40rem) {
  .wrapper {
    padding: calc(10vw + 30px);
    margin: 0 0 15 0;
  }
  .articleText h1,
  .articleText h2,
  .articleText h3,
  .articleText h4,
  .articleText h5,
  .articleText h6,
  .articleText blockquote,
  .articleText p,
  .articleText .introduction {
    width: 80%;
    max-width: 500px;
  }
  .articleText figure {
    width: 80%;
    margin: 0 10%;
    max-width: 800px;
  }
  .carousel {
    width: 90%;
    margin: auto;
    max-width: 800px;
  }
  .carousel figure {
    width: 100%;
    margin: 0;
  }
  .pdf {
    width: 500px;
    margin: 0 10%;
    max-width: 800px;
  }
}
/*Desktop breakpoint*/
@media only screen and (min-width: 60rem) {
  .introduction {
    margin-top: -4rem;
    margin-left: calc(10vw + 30px);
    background: rgba(255, 255, 255, 0.9);
  }
  .articleText {
    margin-left: 4rem;
    width: 60%;
    padding-bottom: 4rem;
  }
  .articleText figure {
    height: 45rem;
    margin-left: 4rem;
    width: 120%;
    max-width: 800px;
  }
  .articleText figure figcaption {
    width: 120%;
    text-align: center;
    max-width: 800px;
  }
  .articleText .carousel {
    margin-left: 4rem;
    width: 120%;
    max-width: 800px;
  }
  .articleText .carousel figure {
    margin-left: 0;
  }
}/*# sourceMappingURL=article.css.map */