html {
  font-size: 10px;
}

body {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.entry-content a {
  color: #000;
}

@media screen and (min-width: 750px) {
  .page-width--narrow {
    padding: 0 9rem;
  }
}

@media screen and (min-width: 990px) {
  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .site-content {
    padding: 0 20px;
  }
}

section.rich-text {
  padding-top: 30px;
  padding-bottom: 0px;
}

@media screen and (min-width: 750px) {
  section.rich-text {
    padding-top: 40px;
    padding-bottom: 0px;
  }
}

section.rich-text .rich-text__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 750px) {
  section.rich-text .rich-text__wrapper {
    width: 100%;
  }
}

section.rich-text .rich-text__wrapper .rich-text__blocks {
  width: 100%;
  text-align: center;
}

section.rich-text .rich-text__wrapper .rich-text__blocks > * + * {
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  section.rich-text .rich-text__wrapper .rich-text__blocks {
    max-width: 50rem;
  }
}

@media screen and (min-width: 990px) {
  section.rich-text .rich-text__wrapper .rich-text__blocks {
    max-width: 78rem;
  }
}

section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__heading {
  font-size: calc(1.1 * 3rem);
}

@media only screen and (min-width: 750px) {
  section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__heading {
    font-size: calc(1.1 * 4rem);
  }
}

section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__text {
  font-size: 1.5rem;
}

@media screen and (min-width: 750px) {
  section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__text {
    font-size: 1.6rem;
  }
}

section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__buttons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 45rem;
  word-break: break-word;
}

section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__buttons .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0;
  padding: 0 3rem;
  cursor: pointer;
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: -webkit-box-shadow 0.1s ease;
  transition: -webkit-box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease;
  transition: box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #7bcbbe;
  border-radius: 40px;
  min-width: 120px;
  min-height: 45px;
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

section.rich-text .rich-text__wrapper .rich-text__blocks .rich-text__buttons .button:hover {
  -webkit-box-shadow: 0 0 1px 1px #7bcbbe;
          box-shadow: 0 0 1px 1px #7bcbbe;
}

section.main-blog {
  padding-top: 0px;
  padding-bottom: 27px;
}

@media screen and (min-width: 750px) {
  section.main-blog {
    padding-top: 0px;
    padding-bottom: 36px;
  }
}

section.main-blog .main-blog__wrapper .main-blog__title {
  font-size: calc(1.1 * 3rem);
  margin: 4rem 0;
}

@media only screen and (min-width: 750px) {
  section.main-blog .main-blog__wrapper .main-blog__title {
    font-size: calc(1.1 * 4rem);
    margin: 2rem 0;
  }
}

section.main-blog .main-blog__wrapper .main-blog-articles {
  display: -ms-grid;
  display: grid;
  grid-gap: 1rem;
  -webkit-column-gap: 4px;
          column-gap: 4px;
  row-gap: 14px;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  position: relative;
  -webkit-box-shadow: #0303030d 0 0 20px;
          box-shadow: #0303030d 0 0 20px;
  border: 0.1rem solid rgba(53, 53, 53, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__image-wrapper {
  width: 100%;
  height: 100%;
  max-height: 307px;
  overflow: hidden;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__content .article__heading {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: calc(1.1 * 2rem);
  font-size: calc(1.1 * 2.4rem);
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__content .article__heading a {
  text-decoration: none;
  color: black;
  display: block;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__content .article__heading a::after {
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  border-radius: 8px;
  outline-offset: 0.3rem;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__content .article__date {
  color: #333;
  padding-top: 0.4rem;
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / var(--font-body-scale));
  text-transform: uppercase;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card .article__content .article__excerpt {
  max-width: 82rem;
  margin: 0 auto 2rem;
  width: 100%;
  margin-top: 1.2rem;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card:hover {
  cursor: pointer;
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card:hover .article__image-wrapper img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

section.main-blog .main-blog__wrapper .main-blog-articles .main-blog-articles__article .main-blog-articles__article-card:hover .article__heading {
  text-decoration: underline;
}

@media screen and (min-width: 750px) {
  section.main-blog .main-blog__wrapper .main-blog-articles {
    -ms-grid-columns: 50% calc(50% - 70px);
        grid-template-columns: 50% calc(50% - 70px);
    -webkit-column-gap: 8px;
            column-gap: 8px;
    row-gap: 28px;
    -webkit-column-gap: 70px;
            column-gap: 70px;
  }
  section.main-blog .main-blog__wrapper .main-blog-articles > *:nth-child(3n + 1),
  section.main-blog .main-blog__wrapper .main-blog-articles > *:nth-child(3n + 1):last-child {
    grid-column: span 2;
    text-align: center;
  }
  section.main-blog .main-blog__wrapper .main-blog-articles > *:nth-child(3n + 1) .main-blog-articles__article-card .article__image-wrapper,
  section.main-blog .main-blog__wrapper .main-blog-articles > *:nth-child(3n + 1):last-child .main-blog-articles__article-card .article__image-wrapper {
    max-height: 450px;
  }
}

@media screen and (min-width: 1024px) {
  section.main-blog .main-blog__wrapper .main-blog-articles {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    -ms-grid-columns: 50% calc(50% - 20px);
        grid-template-columns: 50% calc(50% - 20px);
  }
}

.post {
  max-width: 725px;
  margin: 0 auto;
}

.post header {
  margin-top: 4.4rem;
  margin-bottom: 2rem;
  line-height: calc(0.8 / 1);
}

@media screen and (min-width: 750px) {
  .post header {
    margin-top: 5rem;
  }
}

.post header .entry-title {
  margin: 0;
  font-size: calc(1.1 * 3rem);
  letter-spacing: calc(1.1 * 0.06rem);
  color: #121212;
  line-height: calc(1 + 0.3 / max(1, 1.1));
  word-break: break-word;
  text-align: left;
}

@media only screen and (min-width: 750px) {
  .post header .entry-title {
    font-size: calc(1.1 * 4rem);
  }
}

.post header .entry-title:not(:only-child) {
  margin-bottom: 1rem;
}

.post .date {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: calc(1 + 0.2 / 1);
  text-transform: uppercase;
  margin-bottom: 15px;
}

.post .post-image {
  max-width: 72.5rem;
  margin: 0 auto;
}

.post .post-image .wp-post-image {
  display: block;
  max-width: 100%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  -webkit-transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post .article-template__social-sharing {
  margin-top: 3rem;
}

.post .article-template__social-sharing + .article-template__content {
  margin-top: 1.5rem;
}

.post .article-template__social-sharing .share-button {
  display: block;
  position: relative;
}

.post .article-template__social-sharing .share-button .share-button__button,
.post .article-template__social-sharing .share-button .share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.post .article-template__social-sharing .share-button .share-button__button {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 2.4rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #333;
  margin-left: 0;
  padding-left: 0;
}

.post .article-template__social-sharing .share-button .share-button__button .icon-share {
  height: 1.2rem;
  margin-right: 1rem;
  width: 1.3rem;
}

.post .entry-content {
  position: relative;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.post .entry-content > p:first-child {
  margin-top: 0;
}

.post .entry-content .pdf-wrap {
  position: absolute;
  top: 15px;
  left: 60px;
}

.post .entry-content form {
  text-align: left !important;
  padding-bottom: 10px;
}

.post .entry-content h3 {
  font-size: calc(1.1 * 1.7rem);
}

@media only screen and (min-width: 750px) {
  .post .entry-content h3 {
    font-size: calc(1.1 * 1.8rem);
  }
}

.post .entry-content iframe {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 750px) {
  .post > *:first-child:not(.article-template__hero-container) {
    margin-top: calc(5rem + 0rem);
  }
}

.post > *:first-child:not(.article-template__hero-container) {
  margin-top: 5rem;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin: 50px auto;
}

.pagination .page-numbers {
  padding: 0 4px;
}

.pagination .page-numbers.current, .pagination .page-numbers:hover {
  border-bottom: 1px solid #333;
}

.more-wrap {
  padding: 0 0 40px;
}

.more-wrap .btn {
  padding: 0 2rem;
  cursor: pointer;
  font-size: 15px;
  text-decoration: none;
  color: white;
  background-color: #7bcbbe;
  border-radius: 40px;
  min-height: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.article-template__back {
  text-align: center;
  padding: 0 0 60px;
}

.article-template__back .article-template__link {
  font-size: 1.8rem;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #333;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
}

.article-template__back .article-template__link .icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 1rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.article-template__back .article-template__link .icon-wrap .icon-arrow {
  width: 1.5rem;
}

.comment-form-comment textarea {
  border-color: #666666;
}

.form-submit input[type=submit] {
  font-size: 15px;
  padding: 15px 30px;
  background: #7bcbbe !important;
  border-radius: 40px;
  color: white !important;
}

.comment-section {
  background: rgba(18, 18, 18, 0.04);
  padding: 36px 0;
}

@media screen and (max-width: 767px) {
  .comment-section {
    margin-left: -20px;
    margin-right: -20px;
    padding: 20px;
  }
}

#comments {
  max-width: 725px;
  margin: 0 auto;
}
/*# sourceMappingURL=blog.css.map */