/* page content container*/
.container.page_content_container {
  padding-top: 80px;
  padding-bottom: 25px;
}

/* All images */
.page_content img {
  border-radius: 15px;
}

/* Featured image */
.page_content .featured_image img {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

/* Unordered lists */
.page_content ul {
  padding-left: 25px;
  margin-top: -25px;
  padding-bottom: 25px;
}

/* Links */
.page_content a {
  color: var(--purple1);
  text-decoration: underline;
}

/* Visited links */
.page_content a:visited {
  color: var(--purple2);
}

/* All text in page content */
.page_content.body1 {
  color: var(--grey1);
}

/* h1 to h5 tags */
.page_content h1,
.page_content h2,
.page_content h3,
.page_content h4,
.page_content h5 {
  color: black;
  margin-bottom: 10px;
}

/* h1 */
.page_content h1 {
  font-size: 34px;
  line-height: 45px;
  font-weight: 500;
}

/* h2 */
.page_content h2 {
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
}

/* h3 */
.page_content h3 {
  font-size: 18px;
  line-height: 20px;
  font-weight: 600;
}

/* h4 */
.page_content h4 {
  font-size: 22px;
  line-height: 29px;
  font-weight: 400;
}

/* h5 */
.page_content h5 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

/* paragraphs */
.page_content p {
  padding-bottom: 25px;
}

.wp-block-image {
  margin-bottom: 25px;
}

@media screen and (max-width: 1100px) {
  /* page content container*/
  .container.page_content_container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media screen and (max-width: 769px) {
  /* page content container*/
  .container.page_content_container {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  /* h1 */
  .page_content h1 {
    font-size: 22px;
    line-height: 29px;
    font-weight: 400;
  }

  /* h2 */
  .page_content h2 {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
  }

  /* h3 and h4 */
  .page_content h3,
  .page_content h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
  }

  /* Page content text */
  .page_content.body1 {
    font-size: 14px;
    line-height: 21px;
    font-weight: 300;
  }
}
