/*!
Theme Name: SMY
Theme URI: http://underscores.me/
Author: Aste Helsinki
Author URI: https://astehelsinki.fi/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: smy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Aste is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
---------------------------------------------------------------- */
:root {
  --theme: "/wp-content/themes/pt-smy-theme";
  --block-smy-attention-bg: url("/wp-content/themes/pt-smy-theme/assets/img/placeholder-icon-ball-with-magnifying-glass.svg");
  --test: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg");
}

/*
Typography approach from Chris Coyer: https://css-tricks.com/rems-ems/
- All layout elements with rem units
- Elements (like headings) inside layout elements with em units
- And then pixel to rem/em conversion with sass functions below

NOTE: many html basic element styles are in _wp-blocks.scss, like quote and tables
*/
html {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: #3f403f;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
}

h2, h3 {
  margin: 2em 0 0.65em 0;
}
h2 + p, h3 + p {
  margin-top: 0;
}

h1 {
  font-size: 2rem;
  line-height: 1.25em;
  margin-top: 0;
}
h1:before {
  content: "";
  display: block;
  width: 3.9375rem;
  height: 0.1875rem;
  background: #00aa6e;
  margin: 3.75rem 0 0.875rem 0;
}
@media (min-width: 920px) {
  h1 {
    font-size: 2.75rem;
  }
  h1:before {
    margin: 3.75rem 0 1.25rem 0;
  }
}
h1.big, h1.is-style-big-title {
  font-size: 2.75rem;
  color: #00aa6e;
}
@media (min-width: 920px) {
  h1.big, h1.is-style-big-title {
    font-size: 5rem;
  }
}

h2 {
  font-size: 1.625rem;
}
h2:before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-bottom: 0.75rem;
  background: #00aa6e;
}
@media (min-width: 920px) {
  h2 {
    font-size: 2.25rem;
    clear: both;
  }
}
h2.listing-block-title {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  h2.listing-block-title {
    font-size: 2.75rem;
    margin-bottom: 4.0625rem;
  }
  h2.listing-block-title:before {
    margin-bottom: 1.25rem;
  }
}
h2.materials-title {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (min-width: 920px) {
  h2.materials-title {
    font-size: 1.25rem;
    line-height: 1.875rem;
    padding-bottom: 1.875rem;
    border-bottom: solid thin #cfcfcf;
    margin-bottom: 1.875rem;
  }
}
h2.materials-title:before {
  display: none;
}

.single-post p + h2:before,
.single-post blockquote + h2:before,
.single-post ul + h2:before,
.single-post ol + h2:before,
.single-post figure.wp-block-table + h2:before,
.single-post figure.wp-block-image + h2:before,
.single-post figure.wp-block-gallery + h2:before {
  display: none;
}
@media (min-width: 920px) {
  .single-post p + h2,
  .single-post blockquote + h2,
  .single-post ul + h2,
  .single-post ol + h2,
  .single-post figure.wp-block-table + h2,
  .single-post figure.wp-block-image + h2,
  .single-post figure.wp-block-gallery + h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.25rem;
}
h3.materials-subtitle {
  font-size: 1rem;
  font-weight: 700;
  border-top: solid thin #cfcfcf;
  border-bottom: solid thin #cfcfcf;
  padding: 0.7em 0;
}
h3.materials-subtitle.cat-title {
  font-weight: 400;
  font-size: 0.875rem;
  display: inline-block;
  border-top: none;
  border-bottom: none;
  margin: 0;
}
@media (min-width: 920px) {
  h3.materials-subtitle.cat-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 0.5rem;
  }
}
@media (min-width: 920px) {
  h3.materials-subtitle {
    padding: 1.875rem 0 1.25rem 0;
    border-bottom: none;
    font-size: 1.25rem;
  }
}
@media (min-width: 920px) {
  h3 {
    font-size: 1.875rem;
    clear: both;
  }
}

@media (min-width: 920px) {
  .single-post p + h3 {
    font-size: 1.625rem;
  }
}

h4.material__filtertitle {
  font-weight: 400;
  margin: 2.5rem 0 1.25rem 0;
}

.related-articles h4 {
  font-size: 1.625rem;
}
.related-articles h4:before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-bottom: 1.875rem;
  background: #00aa6e;
}
@media (min-width: 920px) {
  .related-articles h4 {
    font-size: 2.625rem;
    margin-bottom: 4.375rem;
  }
}

h5 {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

p, ul, ol {
  line-height: 1.75rem;
  letter-spacing: 0.2px;
  font-weight: 600;
}

a {
  color: #00aa6e;
}

.entry-content ul, .entry-content ol {
  padding-left: 1em;
  margin-left: 0.1em;
}
.entry-content ul li, .entry-content ol li {
  margin-bottom: 0.5em;
}

button,
a.button,
a.btn,
p.button a,
input[type=submit] {
  text-transform: uppercase;
  text-decoration: none;
}

.arrow-link {
  text-decoration: none;
  text-transform: uppercase;
  color: #00aa6e;
  font-size: 0.875rem;
  line-height: 1.125rem;
  display: flex;
  align-items: center;
  font-weight: 600;
}
@media (min-width: 768px) {
  .arrow-link {
    font-size: 1rem;
  }
}
.arrow-link span {
  margin-left: 0.625rem;
  width: 3.375rem;
  height: 1.125rem;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat center;
  background-size: contain;
}

.site-footer .arrow-link {
  color: #aaffd3;
}
.site-footer .arrow-link span {
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow-light.svg") no-repeat center;
}

.button-curlique {
  display: block;
  width: 8.125rem;
  text-align: center;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/button-curlicue.svg") no-repeat;
  background-size: contain;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: 7.5rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .button-curlique {
    width: 9.375rem;
    line-height: 8.75rem;
    font-size: 1rem;
  }
}

aside.related-articles section {
  max-width: 77.5rem;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
aside.related-articles section footer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  aside.related-articles section footer {
    position: absolute;
    top: 1.875rem;
    right: 0;
    max-width: 50%;
  }
}
@media (min-width: 1240px) {
  aside.related-articles section {
    padding: 0;
  }
}

.share-box {
  display: flex;
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
  clear: both;
}
.share-box h5 {
  display: block;
  margin: 0 0.9375rem 0 0;
  font-size: 1rem;
}
@media (min-width: 920px) {
  .share-box h5 {
    font-size: 1.25rem;
    margin: 0 1.25rem 0 0;
  }
}
.share-box__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.share-box__link {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  text-align: center;
  justify-content: center;
  display: inline-flex;
  align-items: center;
}
.share-box .share-box__link a {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 1.875rem;
  height: 1.875rem;
  margin: 0;
}
.share-box .share-box__link a.icon-facebook {
  background-image: url("/wp-content/themes/pt-smy-theme/assets/img/icon-share-facebook.svg");
}
.share-box .share-box__link a.icon-linkedin {
  background-image: url("/wp-content/themes/pt-smy-theme/assets/img/icon-share-linkedin.svg");
}
.share-box .share-box__link a.icon-twitter {
  background-image: url("/wp-content/themes/pt-smy-theme/assets/img/twitter-x-logo-black.svg");
}
.share-box .share-box__link a.icon-youtube {
  background-image: url("/wp-content/themes/pt-smy-theme/assets/img/icon-share-youtube.svg");
}
.share-box .share-box__link a.icon-email {
  background-image: url("/wp-content/themes/pt-smy-theme/assets/img/icon-share-mail.svg");
}
.share-box .share-box__link a.icon-print {
  background-image: url("/wp-content/themes/pt-smy-theme/assets/img/icon-share-print.svg");
}

html {
  height: 100%;
}

body, html {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  color: #3f403f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  display: block;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

.hidden {
  display: none;
}

.full-width {
  width: 100%;
}

.large-container {
  max-width: 77.5rem;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .large-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .large-container.relative {
    position: relative;
  }
}

.full-vw {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.greybg {
  background: #f5f5f5;
}

.light-grey {
  background: #f9f9f8;
}

.mobile-only {
  display: none;
}
@media (max-width: 576px) {
  .mobile-only {
    display: block;
  }
}

@media (min-width: 920px) {
  .hide-desktop {
    display: none !important;
  }
}
.hide-mobile {
  display: none !important;
}
@media (min-width: 920px) {
  .hide-mobile {
    display: inherit !important;
  }
}

button,
input[type=search],
input[type=text],
input[type=email],
input[type=submit],
textarea {
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
}

input[type=search],
input[type=text],
input[type=email],
input[type=submit] {
  border-radius: 0;
}

.entry-content form input[type=search],
.entry-content form input[type=text],
.entry-content form input[type=email],
.entry-content form input[type=password],
.entry-content form textarea {
  background: #fff;
  border: solid thin #9f9f9f;
  padding: 0.6875rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  letter-spacing: 0.26px;
  margin-right: 0.625rem;
}
.entry-content form input[type=submit] {
  color: #fff;
  background-color: #00aa6e;
  font-size: 1rem;
  text-transform: uppercase;
  padding: 0.9375rem 2.5rem;
  border: 0;
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.26px;
}
.entry-content form.post-password-form label input {
  display: block;
  margin-bottom: 1rem;
}
@media (min-width: 920px) {
  .entry-content form.post-password-form label input {
    display: inline;
    margin-left: 1rem;
  }
}

.center {
  text-align: center;
}

figure {
  margin: 0;
}

.clear {
  clear: both;
}

@media (max-width: 920px) {
  .wp-block-table {
    padding: 12px;
  }
}
.wp-block-table figcaption {
  padding: 12px;
  text-align: center;
  font-style: italic;
}

table {
  border-collapse: collapse;
  font-family: "Raleway", sans-serif;
  border-spacing: 0;
  border: solid thin #d8d8d6;
}
table thead tr {
  color: #fff;
  background: #3f403f;
  font-size: 1rem;
  line-height: 1.25rem;
}
table th {
  padding: 10px 5px;
}
table td {
  font-size: 0.875rem;
  padding: 5px;
  border-right: solid thin #d8d8d6;
  vertical-align: top;
}
table td:last-child {
  border-right: none;
}
table tbody tr:nth-child(odd) {
  background: #f4d49b;
}
table tbody tr:nth-child(even) {
  background: #fff;
}
table tbody tr:nth-child(odd):last-child {
  border-bottom: solid thin #fff;
}

.hyphenate {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.main-container {
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 20px 2.5rem 20px;
}
@media (min-width: 1280px) {
  .main-container {
    padding: 0 0 6.25rem 0;
  }
}

@media (min-width: 920px) {
  .entry-content {
    min-height: 600px;
    max-width: 57.5rem;
    margin: 0 auto;
  }
}
.entry-content.full-width {
  max-width: 100%;
}

.entry-meta {
  font-family: "Raleway", sans-serif;
  margin: 0rem 0 1.875rem 0;
  font-weight: 600;
  color: #00aa6e;
  text-transform: uppercase;
  font-size: 0.75rem;
}
@media (min-width: 920px) {
  .entry-meta {
    margin: 0.9375rem 0 2.375rem 0;
    font-size: 0.875rem;
  }
}
.entry-meta a {
  color: #00aa6e;
  text-decoration: none;
}
.entry-meta a:hover {
  text-decoration: underline;
}
.entry-meta__author {
  color: #898989;
  display: block;
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  text-transform: none;
}

.post-categories {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.post-categories li {
  display: inline-block;
}
.post-categories li:after {
  display: inline-block;
  width: 5px;
  content: ", ";
}
.post-categories li:last-child:after {
  display: none;
}

@media (min-width: 920px) {
  .entry-content .main-image {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 920px) {
  .entry-content .main-image figcaption {
    margin: 1.25rem 0;
  }
}
.entry-content figure.main-image img {
  display: block;
  width: 100%;
  height: auto;
}

.entry-content .blog-credits {
  background: #f5f5f5;
}
.entry-content .blog-credits__cont {
  max-width: 57.5rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .entry-content .blog-credits__cont {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4.347826087%;
    padding: 4.375rem 20px;
  }
}
@media (min-width: 1280px) {
  .entry-content .blog-credits__cont {
    padding: 4.375rem 0;
  }
}
@media (min-width: 768px) {
  .entry-content .blog-credits__image {
    max-width: 27.5rem;
  }
  .entry-content .blog-credits__image img {
    display: block;
    width: 100%;
    height: 17.5rem;
    object-fit: cover;
    object-position: top;
  }
}
.entry-content .blog-credits__info {
  padding: 1.875rem 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9375rem;
}
.entry-content .blog-credits__info .entry-meta__author {
  color: #3f403f;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .entry-content .blog-credits__info {
    align-self: center;
    font-size: 1rem;
    padding: 0;
  }
}
.entry-content .blog-credits__info hr {
  border: 0.25rem solid #00aa6e;
  width: 33%;
  margin: 1rem auto;
}

.entry-content .lead,
.entry-content .is-style-lead-text {
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 600;
}
@media (min-width: 920px) {
  .entry-content .lead,
  .entry-content .is-style-lead-text {
    font-size: 1.25rem;
    line-height: 1.875rem;
    letter-spacing: 0.52px;
    max-width: 57.5rem;
    margin-top: 0;
    margin-bottom: 3.75rem;
  }
}

.single-post .entry-content .lead,
.single-post .entry-content .is-style-lead-text {
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 600;
}
@media (min-width: 920px) {
  .single-post .entry-content .lead,
  .single-post .entry-content .is-style-lead-text {
    font-size: 1.625rem;
    line-height: 2.25rem;
    letter-spacing: 0.52px;
    margin-top: 0;
    margin-bottom: 3.75rem;
  }
}

.share-bar {
  margin: 30px 0;
}
.share-bar a {
  margin-right: 6px;
}

.post-listing .element {
  flex-direction: column;
  display: flex;
  align-items: stretch;
}
.post-listing .container .column-grid {
  grid-gap: 50px;
}
.post-listing .container .column-grid a {
  text-decoration: none;
}
.post-listing .container .column-grid h2 {
  margin-top: 10px;
}
.post-listing .container .title {
  display: flex;
  flex-direction: column;
}
.post-listing .container .title h2 {
  margin: 0;
}
.post-listing .container .title a {
  text-align: end;
}
.post-listing .category {
  width: fit-content;
  position: absolute;
  padding: 10px;
  background-color: green;
  color: white;
}

.pagination {
  text-align: center;
}
.pagination.materials-pagination {
  margin-top: 2.8125rem;
}
.pagination .page-numbers {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  margin-right: 0.3125rem;
  color: #3f403f;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: solid thin #fff;
}
.pagination .page-numbers.current {
  font-weight: bold;
  color: #fff;
  background: #00aa6e;
}
@media (min-width: 768px) {
  .pagination .page-numbers {
    display: inline-block;
  }
}
.pagination a.page-numbers:hover,
.pagination a.page-numbers:focus {
  border: solid thin #3f403f;
}
.pagination a.prev.page-numbers,
.pagination a.next.page-numbers {
  display: inline-block;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/icon-chevron-right.svg") no-repeat center;
  background-size: 0.6875rem;
  overflow: hidden;
  text-indent: -999px;
}
.pagination a.prev.page-numbers {
  transform: rotate(-180deg);
}

@media (min-width: 768px) {
  .column-grid.col-2 {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.125rem;
  }
}
@media (min-width: 768px) {
  .column-grid.col-sm-2 {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.125rem;
  }
}
.column-grid.col-sm-2.materials {
  row-gap: 1.25rem;
}
@media (min-width: 768px) {
  .column-grid.col-sm-2.materials {
    row-gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .column-grid.col-sm-2.files {
    column-gap: 1.5625rem;
    row-gap: 4.375rem;
  }
}
@media (min-width: 768px) {
  .column-grid.col-3 {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.125rem;
  }
}
@media (min-width: 768px) {
  .column-grid.col-sm-3 {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.25rem;
    row-gap: 1.25rem;
  }
}
@media (min-width: 920px) {
  .column-grid.col-sm-3 {
    column-gap: 2.5rem;
    row-gap: 4.375rem;
  }
}
.column-grid.col-sm-3.featured-wysiwyg {
  row-gap: 1.25rem;
}
@media (min-width: 920px) {
  .column-grid.col-md-4 {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.125rem;
  }
}
@media (min-width: 768px) {
  .column-grid.col-sm-4 {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2.5rem;
    row-gap: 1.125rem;
  }
}

.entry-content .card-link {
  text-decoration: none;
  color: #3f403f;
  display: block;
  margin: 0 0 3rem 0;
}
.entry-content .card__bg {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 66.6666666667%;
  width: 100%;
  margin: 0;
  position: relative;
}
.entry-content .card__label {
  background: #00aa6e;
  color: #fff;
  display: block;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.6875rem;
  text-align: center;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
}
.entry-content .card__label a {
  color: #fff;
}
.entry-content .card .entry-meta {
  color: #3f403f;
  margin: 0.875rem 0 0.5rem 0;
}
@media (min-width: 920px) {
  .entry-content .card .entry-meta {
    margin: 1.25rem 0;
  }
}
.entry-content .card .entry-meta__events {
  color: #fff;
  background: #00aa6e;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0 0.875rem;
  margin: 0.875rem 0;
}
@media (min-width: 920px) {
  .entry-content .card .entry-meta__events {
    margin: 1.25rem 0;
  }
}
.entry-content .card .entry-meta__events .event-date {
  height: 3.875rem;
  padding-left: 3.125rem;
  display: flex;
  align-items: center;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-calendar.svg") no-repeat left center;
  background-size: 2.125rem;
}
.entry-content .card .entry-meta__events .event-location {
  height: 3.875rem;
  padding-left: 3.125rem;
  display: flex;
  align-items: center;
  border-top: solid thin #fff;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-location.svg") no-repeat 0.25rem center;
  background-size: 1.5rem;
}
.entry-content .card h5 {
  margin: 0 0 0.625rem 0;
}
.entry-content .card.event-card {
  background-color: #f5f5f5;
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .entry-content .card.event-card {
    margin-bottom: 0;
  }
}
.entry-content .card.event-card footer {
  position: absolute;
  bottom: 1.875rem;
  right: 0.5rem;
}
@media (min-width: 768px) {
  .entry-content .card.event-card footer {
    right: 1.75rem;
  }
}
.entry-content .card.event-card .arrow-link {
  justify-content: flex-end;
}
.entry-content .label-style .card__body-label-events {
  margin-right: 1.25rem;
  margin-left: 1.25rem;
  padding-top: 0;
  position: relative;
  margin-top: -4.813rem;
  padding-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .entry-content .label-style .card__body {
    position: relative;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .entry-content .label-style .card__body-label {
    margin-top: -40px;
    background: #fff;
    width: 100%;
    padding: 30px 35px 0 35px;
  }
  .entry-content .label-style .card__body-label-events {
    padding: 0 20px;
    background: transparent;
    margin-right: 0;
    margin-left: 0;
    margin-top: -5.188rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .entry-content .label-style .card__body-label-events {
    padding: 0 0 1.875rem 0;
  }
}
@media (min-width: 768px) {
  .entry-content .label-style .card .entry-meta {
    margin: 0 0 1.25rem 0;
  }
}
@media (min-width: 768px) {
  .entry-content .label-style .card h5 {
    font-size: 1.625rem;
  }
  .entry-content .label-style .card h5.event-listing-title {
    font-size: 1.25rem;
  }
}
@media (min-width: 920px) {
  .entry-content .label-style .card__body {
    width: calc(100% - 80px);
  }
}

.listing__search {
  margin-bottom: 2.2em;
}
.listing__search a {
  color: #3f403f;
  text-decoration: none;
}
.listing__search .entry-meta {
  margin: 0.6em 0;
  color: #3f403f;
}
.listing__search h3 {
  margin: 0 0 0.4em 0;
  font-size: 1.125rem;
}
@media (min-width: 920px) {
  .listing__search h3 {
    font-size: 1.25rem;
  }
}

.listing__materials {
  background: #fff;
  padding: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .listing__materials {
    padding: 1.5625rem;
  }
}
.listing__materials header {
  display: flex;
  justify-content: space-between;
}
.listing__materials header h4 {
  flex: 1;
  font-size: 1rem;
  padding-right: 0.75rem;
  line-height: 1.3em;
  margin: 0;
}
@media (min-width: 768px) {
  .listing__materials header h4 {
    font-size: 1.25rem;
  }
}
.listing__materials header h4 a {
  color: #3f403f;
  text-decoration: none;
}
.listing__materials header picture {
  width: 6.25rem;
  height: 3.75rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .listing__materials header picture {
    width: 7.5rem;
    height: 5rem;
  }
}
.listing__materials header picture img {
  object-fit: cover;
}
.listing__materials-download {
  display: flex;
  justify-content: space-between;
  border-top: solid thin #cfcfcf;
  border-bottom: solid thin #cfcfcf;
  margin: 1.25rem 0;
  padding: 1.25rem 0;
}
.listing__materials-download .file-count {
  display: inline-block;
  white-space: nowrap;
  padding-right: 0.625rem;
}
.listing__materials footer {
  padding: 1.25rem 0;
}

body.single-materials,
body.tax-materialcategory {
  background: #f9f9f8;
}

.materials__wrapper {
  background: #fff;
  padding: 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 920px) {
  .materials__wrapper {
    padding: 1.875rem;
    margin-bottom: 4.6875rem;
  }
}
@media (min-width: 920px) {
  .materials__wrapper a.order {
    margin-left: 12%;
  }
}
.materials__intro {
  min-height: 7.5rem;
}
@media (min-width: 920px) {
  .materials__intro p, .materials__intro ul, .materials__intro ol {
    max-width: 38.75rem;
  }
}
.materials__intro div {
  padding-right: 0.9375rem;
}
@media (min-width: 920px) {
  .materials__intro div {
    padding-right: 1.875rem;
  }
}
.materials__intro figure {
  width: 33%;
  float: right;
  margin-left: 0.9375rem;
}
@media (min-width: 920px) {
  .materials__intro figure {
    width: 12.1875rem;
    margin-left: 1.875rem;
  }
}
.materials__info, .materials__pricing {
  display: grid;
  grid-template-columns: max-content auto;
}
@media (min-width: 920px) {
  .materials__info, .materials__pricing {
    margin-left: 12%;
  }
}
.materials__info dt, .materials__pricing dt {
  grid-column-start: 1;
  font-weight: 600;
  line-height: 1.8em;
  width: 6.25rem;
}
@media (min-width: 920px) {
  .materials__info dt, .materials__pricing dt {
    width: 7.5rem;
  }
}
.materials__info dd, .materials__pricing dd {
  grid-column-start: 2;
}
.materials__footer {
  border-top: solid thin #cfcfcf;
  border-bottom: solid thin #cfcfcf;
  margin-top: 1.25rem;
}
@media (min-width: 920px) {
  .materials__footer {
    border-bottom: none;
  }
}
.materials__footer a {
  color: #00aa6e;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 920px) {
  .materials__footer a {
    font-size: 1rem;
  }
}

.files ul.files__list {
  list-style: none;
  margin: 0.9375rem 0 0 0;
  padding: 0;
}
@media (min-width: 920px) {
  .files ul.files__list {
    margin: 0 0 4.6875rem 13%;
  }
}
.files ul.files__list li {
  margin-bottom: 1.25rem;
}
@media (min-width: 920px) {
  .files ul.files__list li {
    border-top: solid thin #f0f0f0;
    padding-top: 1.25rem;
  }
}
.files ul.files__list li a {
  display: flex;
  text-decoration: none;
  color: #3f403f;
  font-size: 0.875rem;
}
@media (min-width: 920px) {
  .files ul.files__list li a {
    font-size: 1rem;
  }
  .files ul.files__list li a small {
    font-size: 1rem;
    display: block;
    padding-top: 0.5rem;
  }
}
.files ul.files__list li a .files__list-download {
  width: 33%;
  color: #00aa6e;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
}
@media (min-width: 920px) {
  .files ul.files__list li a .files__list-download {
    font-size: 1.125rem;
    font-weight: 400;
  }
}
@media (min-width: 920px) {
  .files ul.files__list li a .files__list-title {
    width: 100%;
  }
}
.files ul.files__list li a .files__title {
  display: block;
  font-weight: 700;
}

.links ul.links__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.links ul.links__list li {
  padding: 0.9375rem 0;
  border-bottom: solid thin #f0f0f0;
  font-size: 0.875rem;
}
@media (min-width: 920px) {
  .links ul.links__list li {
    padding: 1.25rem 0;
    font-size: 1rem;
  }
}
.links ul.links__list li a {
  color: #00aa6e;
  font-weight: 600;
}

.icon-download {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/icon-smy-download.svg") no-repeat center;
  margin: 0 0 -4px 0.8125rem;
}
@media (min-width: 920px) {
  .icon-download {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.sidebar-right h3 {
  font-size: 1.5rem;
  line-height: 1.25em;
  text-transform: uppercase;
  padding-top: 15px;
  margin: 15px 0 15px 0;
}
.sidebar-right ul {
  list-style: none;
  padding: 0 0 20px 0;
}
@media (min-width: 920px) {
  .sidebar-right ul {
    margin: 0 30px 0 15px;
  }
}
.sidebar-right ul li {
  padding: 15px 0;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.125rem;
}
.sidebar-right ul li:last-child {
  border-bottom: none;
}
.sidebar-right ul li a {
  color: #3f403f;
  text-decoration: none;
  font-family: "Georgia", Serif;
  font-size: 1.3125rem;
  line-height: 1.5rem;
}

/** 
* PAGES
**/
.hero.hero-image {
  height: 10.8125rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 920px) {
  .hero.hero-image {
    height: 30rem;
  }
}
.hero-breadcrumbs {
  display: none;
}
@media (min-width: 920px) {
  .hero-breadcrumbs {
    display: block;
    margin: 0 auto;
    padding: 3.75rem 20px 0 20px;
    max-width: 77.5rem;
    font-size: 0.9375rem;
    letter-spacing: 0.28px;
    font-weight: 600;
  }
  .hero-breadcrumbs a {
    color: #3f403f;
    text-decoration: none;
  }
  .hero-breadcrumbs a:hover {
    color: #3f403f;
    text-decoration: underline;
  }
  .hero-breadcrumbs .breadcrumb_last {
    font-weight: 700;
  }
}
@media (min-width: 1280px) {
  .hero-breadcrumbs {
    padding-left: 0;
  }
}
.hero__pagelinks {
  margin: 0 20px;
}
.hero__pagelinks ul, .hero__pagelinks li {
  list-style: none;
}
.hero__pagelinks ul {
  margin: 0;
  padding: 0;
}
.hero__pagelinks.hero-image ul {
  margin-top: -25px;
}
.hero__pagelinks li {
  color: #fff;
  background: #006e6e;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: solid thin #00aa6e;
  line-height: 2.5rem;
}
.hero__pagelinks li:hover, .hero__pagelinks li:focus {
  background: #00aa6e;
}
.hero__pagelinks li.current {
  background: #00aa6e;
}
.hero__pagelinks li.current a {
  cursor: default;
}
.hero__pagelinks li:last-child {
  border-bottom: none;
}
.hero__pagelinks a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  min-width: 8.75rem;
  padding: 0 0.625rem;
}
@media (min-width: 920px) {
  .hero__pagelinks ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero__pagelinks.hero-image ul {
    margin-top: -35px;
  }
  .hero__pagelinks li {
    font-size: 0.875rem;
    line-height: 3.3125rem;
    margin-right: 0.375rem;
  }
  .hero__pagelinks li:last-child {
    margin-right: 0;
  }
  .hero__pagelinks li.current {
    line-height: 4.75rem;
    position: relative;
  }
  .hero__pagelinks li.current:after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: calc(50% - 20px);
    border-top: 20px solid #00aa6e;
    border-bottom: 20px solid transparent;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
  }
}

/*
*  MATERIALS page template
*/
body.page-template-page-template-materials {
  background: #f9f9f8;
}

.entry-content form.searchform__materials {
  height: 2.8125rem;
  max-width: 27.5rem;
  background: #fff;
  border: solid thin #3f403f;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.entry-content form.searchform__materials input[type=search] {
  font-size: 1rem;
  padding: 0 0 0 0.9375rem;
  width: 80%;
  border: 0;
}
.entry-content form.searchform__materials button {
  width: 3.75rem;
  height: 2.6875rem;
  border: none;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/icon-search.svg") no-repeat center top;
  background-size: 1.25rem;
  background-position: center center;
  overflow: hidden;
  text-indent: -9999px;
}

.entry-content ul.material__categories {
  list-style: none;
  background: #fff;
  border-top: solid 0.125rem #cfcfcf;
  border-bottom: solid 0.125rem #cfcfcf;
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .entry-content ul.material__categories {
    height: 3.75rem;
    padding: 0 0 0 1.5625rem;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .entry-content ul.material__categories li {
    margin: 0 2.5rem 0 0;
    margin-right: 2.5rem;
  }
  .entry-content ul.material__categories li:last-child {
    margin-right: 0;
  }
}
.entry-content ul.material__categories li a {
  color: #3f403f;
  text-decoration: none;
}
.entry-content ul.material__categories li a:hover {
  text-decoration: underline;
  color: #00aa6e;
}
.entry-content ul.material__categories li.active a {
  font-weight: 600;
}

.entry-content .material__sort {
  text-align: right;
  margin: 2.5rem 0 0.9375rem 0;
}
.entry-content .material__sort span {
  display: none;
}
.entry-content .material__sort a {
  margin-left: 1.25rem;
  text-transform: uppercase;
  font-weight: 600;
}
.entry-content .material__sort a.active {
  color: #3f403f;
  text-decoration: none;
}
@media (min-width: 768px) {
  .entry-content .material__sort {
    margin: 3.75rem 0 1.25rem 0;
  }
  .entry-content .material__sort span {
    display: inline;
    font-weight: 600;
  }
}

/*
*  EVENTS page template
*/
h4.event-category-form-title {
  margin: 1.25rem 0 0.625rem 0;
}

.event-sorting-header {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .event-sorting-header {
    display: flex;
    justify-content: space-between;
  }
}

.event-category-selection {
  width: 100%;
  border: solid thin #cfcfcf;
  padding: 0;
}
@media (min-width: 768px) {
  .event-category-selection {
    width: 17.5rem;
  }
}
.event-category-selection select {
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.875rem;
  color: #707070;
  appearance: none;
  padding: 0.25rem 0.9375rem;
  border: none;
  text-indent: 0.1875rem;
  position: relative;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/icon-chevron-down.svg") no-repeat;
  background-size: 12px;
  background-position: 94% center;
}

.entry-content .material__sort.event-sorting {
  display: none;
}
@media (min-width: 768px) {
  .entry-content .material__sort.event-sorting {
    display: block;
    margin: 0;
    padding-top: 1.25rem;
  }
  .entry-content .material__sort.event-sorting span {
    display: inline;
  }
}

/*
*  SEARCH page template
*/
.mobile-search {
  max-width: 31.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1280px) {
  .mobile-search {
    display: none;
  }
}
.mobile-search form {
  display: flex;
  justify-content: space-between;
}
.mobile-search form label {
  width: 100%;
}
.mobile-search form input[type=search] {
  width: 100%;
}
.mobile-search form input[type=submit] {
  margin-left: 0.9375rem;
}

.site-footer {
  background: #145050;
  color: #fff;
  padding: 40px 20px;
  overflow: hidden;
}
.site-footer a:not(.arrow-link) {
  color: #fff;
}
.site-footer a.arrow-link:hover {
  color: #fff;
}
.site-footer__container {
  max-width: 77.5rem;
  margin: 0 auto;
}
.site-footer__logo {
  width: 210px;
}
.site-footer .column-grid div:first-child {
  padding-top: 1.25rem;
}
@media (min-width: 920px) {
  .site-footer .column-grid div:first-child {
    padding-top: 2.5rem;
  }
}
.site-footer__slogan p {
  font-size: 1.25rem;
  font-weight: 400;
  color: #aaffd3;
  text-transform: uppercase;
}
@media (min-width: 920px) {
  .site-footer__slogan p {
    font-size: 2.1875rem;
  }
}
.site-footer h4 {
  font-size: 1.1875rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer ul li {
  text-transform: uppercase;
  margin-bottom: 1.4375rem;
}
.site-footer ul li a {
  text-decoration: none;
}
.site-footer ul li a:hover {
  text-decoration: underline;
}
.site-footer__sitelinks {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
}
.site-footer__sitelinks ul li a {
  text-decoration: underline;
}
.site-footer__sitelinks-buttons {
  display: flex;
}
@media (min-width: 920px) {
  .site-footer__sitelinks-buttons {
    display: block;
  }
  .site-footer__sitelinks-buttons a {
    margin-bottom: 1.1875rem;
  }
}
.site-footer__social h5 {
  margin: 1.2em 0 0.6em 0;
}
.site-footer__social h5:first-child {
  margin-top: 0;
}
.site-footer__social ul li {
  text-transform: none;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 920px) {
  .site-footer {
    padding: 60px 20px;
  }
}
.site-footer a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.6875rem;
  height: 3.3125rem;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #aaffd3;
  color: #122b48;
  padding: 0 1.0625rem;
}
.site-footer a.btn span {
  display: block;
  text-align: center;
}
.site-footer a.btn.btn-metsapaivat {
  background: #153a47;
  color: #fff;
  margin-right: 1.1875rem;
}
.site-footer .social {
  width: 1.5rem;
  height: 1.25rem;
  overflow: hidden;
  text-indent: -9999px;
  background-size: contain;
}
.site-footer .social.facebook, .site-footer .social.Facebook {
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-facebook-white.svg") no-repeat left;
}
.site-footer .social.twitter, .site-footer .social.Twitter {
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-x-white.svg") no-repeat left;
}
.site-footer .social.instagram, .site-footer .social.Instagram {
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-instagram-white.svg") no-repeat left;
}
.site-footer .social.youtube, .site-footer .social.Youtube, .site-footer .social.YouTube {
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-youtube-white.svg") no-repeat left;
}

.site-header {
  position: relative;
  background: #fff;
}
.site-header__container {
  max-width: 98.75rem;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1280px) {
  .site-header__container {
    display: flex;
    justify-content: space-between;
  }
}
.site-header ul, .site-header li {
  list-style: none;
}
.site-header__logo {
  display: block;
  text-decoration: none;
  width: 9.375rem;
  height: 3.75rem;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/logo-smy.svg") no-repeat center;
  background-size: contain;
}
.site-header__logo.sv {
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/logo-smy-sv.svg") no-repeat center;
}
.site-header__logo.en {
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/logo-smy-en.svg") no-repeat center;
}
@media (min-width: 1280px) {
  .site-header__logo {
    width: 13rem;
    height: 8.75rem;
    margin-right: 0.625rem;
  }
}
.site-header__navline-1 {
  position: absolute;
  width: auto;
  height: 3.3125rem;
  top: 0;
  right: 0;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
.site-header__navline-1 .langmenu {
  display: none;
}
@media (min-width: 1280px) {
  .site-header__navline-1 {
    position: static;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
  }
  .site-header__navline-1 .langmenu {
    display: block;
  }
}
.site-header__navline-1 .topnav {
  display: none;
}
@media (min-width: 1280px) {
  .site-header__navline-1 .topnav {
    display: block;
  }
}
.site-header__navline-1 .top-buttons {
  display: flex;
  align-items: center;
}
.site-header__navline-1 a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.3125rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #aaffd3;
  color: #122b48;
  padding: 0 1.0625rem;
}
.site-header__navline-1 a.btn span {
  display: block;
  text-align: center;
}
.site-header__navline-1 a.btn.btn-metsapaivat {
  background: #153a47;
  color: #fff;
  margin-right: 1.1875rem;
}
.site-header__navline-1 form {
  display: none;
}
@media (min-width: 1280px) {
  .site-header__navline-1 form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 45px;
    margin: 0 0 0 0.75rem;
    padding: 0;
    border-bottom: solid 0.125rem #cfcfcf;
    margin-right: 2.0625rem;
  }
  .site-header__navline-1 form input[type=search] {
    width: calc(94% - 15px);
    margin-left: 15px;
    border: 0;
    background: #fff;
  }
  .site-header__navline-1 form input[type=submit] {
    width: 22%;
    min-width: 40px;
    height: 45px;
    overflow: hidden;
    text-indent: -9999px;
    border: 0;
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-search.svg") no-repeat center top;
    background-size: 1.25rem;
    background-position: center center;
  }
}
@media (min-width: 1280px) {
  .site-header__navline-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
  }
}

#comments .comment-body {
  padding: 1.25rem 0;
  border-bottom: solid thin #cfcfcf;
}
#comments .says {
  display: none;
}
#comments .comment-metadata {
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
#comments a.comment-reply-link {
  font-weight: 600;
}

.comment-respond {
  background: #f9f9f8;
  padding: 1.25rem;
  margin: 1.25rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .comment-respond:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -1.188rem;
    background: #00aa6e;
    width: 45%;
    height: 1.1875rem;
    margin-left: 20%;
  }
}
.comment-respond h3 {
  margin-top: 0;
}
@media (min-width: 768px) {
  .comment-respond h3 {
    font-size: 1.25rem;
  }
}
.comment-respond form#commentform input[type=text],
.comment-respond form#commentform input[type=email],
.comment-respond form#commentform textarea {
  width: 100%;
}
.comment-respond form#commentform textarea {
  height: 9.9375rem;
}
@media (min-width: 768px) {
  .comment-respond form#commentform {
    display: flex;
    gap: 2.5rem;
  }
  .comment-respond form#commentform div {
    width: 50%;
  }
  .comment-respond form#commentform #submit {
    float: right;
  }
}
.comment-respond form#commentform label {
  display: block;
  margin-bottom: 0.625rem;
}
.comment-respond .comment-form-cookies-consent {
  display: none;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_response {
  font-size: 20px;
}

.wpProQuiz_questionListItem.wpProQuiz_answerIncorrect label {
  border-color: #000;
}

.page-ryhman-hallinta .main-container.content {
  max-width: 100%;
}
.page-ryhman-hallinta .uo-groups .uo-groups-actions .uo-btn.uo-right:not(:first-child) {
  display: none;
}

input.wpProQuiz_button {
  font-size: 1em !important;
}

#uo-groups-url-button {
  color: white;
  background: #00aa6e;
  padding: 10px;
  border-radius: 20px;
}

.uo-groups.uo-groups-url {
  margin-top: 25px;
}

.group-management-modal.uo-modal div:not(.class) a {
  display: none;
}

#menubutton {
  width: 2.5rem;
  border: solid thin #fff;
  border-radius: 0;
  padding: 0;
  text-align: center;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/icon-menu.svg") no-repeat center top;
  background-position: center 0.5rem;
  background-size: 1.75rem;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin-left: 1.25rem;
  color: #3f403f;
}
#menubutton span {
  font-size: 0.625rem;
  display: inline-block;
  padding-top: 2rem;
  color: #3f403f;
}
@media (min-width: 1280px) {
  #menubutton {
    display: none;
  }
}

/**
* MAIN MENU
**/
#mainmenu {
  background: #145050;
  color: #fff;
  position: absolute;
  top: 3.75rem;
  left: 0;
  width: 100vw;
  height: calc(100vh - 3.75rem);
  z-index: 2;
  display: none;
}
#mainmenu.show {
  display: block;
}
#mainmenu ul#primary-menu {
  margin: 3.75rem 0 0 0;
  padding: 0 0 0 0;
  list-style: none;
}
@media (max-width: 576px) {
  #mainmenu ul#primary-menu {
    background: #145050;
  }
}
#mainmenu ul#primary-menu li {
  font-size: 1rem;
  line-height: 1.375rem;
  font-weight: 600;
  border-bottom: solid thin #205959;
}
#mainmenu ul#primary-menu li a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  width: calc(100% - 3.7rem);
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0 0 0 20px;
  line-height: 3.125rem;
}
#mainmenu ul#primary-menu li button {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  border: 0;
  background: transparent;
}
#mainmenu ul#primary-menu li button:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  margin-left: -8px;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-chevron-down.svg") no-repeat center center;
  background-size: contain;
}
#mainmenu ul#primary-menu li button.active:before {
  transform: rotate(180deg);
}
#mainmenu ul#primary-menu .sub-menu {
  margin: 0;
  padding: 10px 0 15px 0;
  background: #fff;
  display: none;
}
#mainmenu ul#primary-menu .sub-menu li {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.25px;
  margin-bottom: 1.125rem;
  border-bottom: 0;
}
#mainmenu ul#primary-menu .sub-menu li a {
  color: #3f403f;
  display: block;
  text-transform: none;
  font-size: 1rem;
  font-weight: 600;
}
#mainmenu ul#primary-menu .sub-menu li a {
  line-height: 1.5rem;
}

.menu-footer {
  max-width: 25rem;
  margin: 0 auto;
  background: #145050;
  padding-bottom: 0.625rem;
}
.menu-footer a {
  color: #fff;
}
.menu-footer #top-menu {
  display: flex;
  justify-content: space-evenly;
  margin: 0 20px;
  padding: 2.5rem 0 0 0;
  max-width: 25rem;
}
.menu-footer #top-menu li a {
  color: #aaffd3;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}
.menu-footer__bottom {
  margin: 0 20px;
}
.menu-footer__bottom-buttons {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.9375rem;
}
.menu-footer__bottom-buttons a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.3125rem;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  background: #aaffd3;
  color: #122b48;
  padding: 0 0.625rem;
}
.menu-footer__bottom-buttons a.btn span {
  display: block;
  text-align: center;
}
.menu-footer__bottom-buttons a.btn.btn-metsapaivat {
  background: #153a47;
  color: #fff;
}
.menu-footer .langmenu {
  display: flex;
}
.menu-footer .langmenu li {
  width: 33.3333%;
}
.menu-footer .langmenu li a {
  text-decoration: none;
  line-height: 2.5rem;
}
.menu-footer .langmenu li.current-lang a {
  text-decoration: underline;
}
@media (min-width: 1280px) {
  .menu-footer {
    display: none;
  }
}

.site-header__navline-1 .top-buttons {
  display: none;
}
@media (min-width: 920px) {
  .site-header__navline-1 .top-buttons {
    display: flex;
  }
}

@media (min-width: 1280px) {
  #mainmenu {
    display: block;
    background: #fff;
    position: static;
    width: 100%;
    height: auto;
    text-align: left;
    transition: none;
    opacity: 1;
  }
  #mainmenu.hide {
    display: block;
  }
  #mainmenu ul#primary-menu {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  #mainmenu ul#primary-menu li {
    display: inline-block;
    margin-bottom: 0;
    position: relative;
    border-bottom: none;
  }
  #mainmenu ul#primary-menu li:first-child {
    padding-left: 0;
  }
  #mainmenu ul#primary-menu li a {
    color: #3f403f;
    width: auto;
    display: inline-block;
    position: relative;
    font-weight: 600;
    padding: 0 0.75rem;
    line-height: 31px;
  }
  #mainmenu ul#primary-menu li a:hover, #mainmenu ul#primary-menu li.current-menu-item a, #mainmenu ul#primary-menu li.current_page_ancestor a {
    color: #00aa6e;
  }
  #mainmenu ul#primary-menu li.current_page_ancestor ul li a {
    color: #3f403f;
  }
  #mainmenu ul#primary-menu li.current_page_ancestor ul li a:hover {
    color: #00aa6e;
  }
  #mainmenu ul#primary-menu li.current_page_ancestor ul li.current-menu-item a {
    color: #00aa6e;
  }
  #mainmenu ul#primary-menu li.active ul {
    display: block;
  }
  #mainmenu ul#primary-menu li button {
    display: none;
  }
  #mainmenu ul#primary-menu li ul.sub-menu {
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 8;
    width: 21.875rem;
    text-align: left;
    padding: 1.5625rem;
    -webkit-box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 3px 5px 1px rgba(0, 0, 0, 0.2);
  }
  #mainmenu ul#primary-menu li ul.sub-menu li {
    display: block;
    padding: 0;
  }
}

/**
*  TOPMENU DESKTOP
**/
@media (min-width: 1240px) {
  .topnav ul {
    margin: 0 0.625rem 0 0;
    padding: 0;
    display: flex;
  }
  .topnav ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    text-decoration: none;
    font-size: 0.875rem;
    line-height: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #00aa6e;
    margin-right: 1.875rem;
  }
  .topnav ul li a:hover {
    text-decoration: underline;
  }
  .topnav ul li.link-extranet {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-lock.svg") no-repeat;
    background-size: 1rem;
    background-position: right 0.875rem;
  }
  .topnav ul li.link-extranet a {
    margin-right: 1.25rem;
  }
}

/*
* LANGUAGE MENU DESKTOP
*/
@media (min-width: 1280px) {
  .langmenu select {
    color: #3f403f;
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    display: inline-block;
    vertical-align: bottom;
    height: 1.25rem;
    letter-spacing: 1px;
    margin-right: 2.0625rem;
  }
}

#searchbutton {
  width: 2.5rem;
  border: solid thin #fff;
  padding: 0;
  text-align: center;
  background: #fff url("/wp-content/themes/pt-smy-theme/assets/img/icon-search.svg") no-repeat center top;
  background-size: 1.25rem;
  background-position: center 0.5rem;
  color: #3f403f;
}
#searchbutton span {
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-block;
  padding-top: 2rem;
}
#searchbutton.inactive {
  opacity: 0.4;
}
@media (min-width: 768px) {
  #searchbutton {
    margin-left: 0.75rem;
  }
}
@media (min-width: 1280px) {
  #searchbutton {
    display: none;
  }
}

.accordion-block {
  padding: 3.125rem 0px;
  margin-bottom: 1.25rem;
}
.accordion-block h2 {
  margin-bottom: 1.875rem;
}
@media (min-width: 920px) {
  .accordion-block h2 {
    margin-bottom: 3.75rem;
  }
}
.accordion-block .row__header {
  display: flex;
  justify-content: space-between;
}
.accordion-block .row__content {
  display: none;
}
.accordion-block .dropdownitem {
  border-top: solid thin #cfcfcf;
  border-bottom: solid thin #cfcfcf;
  margin-bottom: -1px;
  padding: 1.25rem 0px;
}
.accordion-block .dropdownitem h3 {
  margin: 0px;
  padding: 0px;
  line-height: 1.875rem;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .accordion-block .dropdownitem h3 {
    line-height: 2.5rem;
    font-size: 1.25rem;
  }
}
.accordion-block .dropdownitem .openButton {
  display: block;
  width: 2.5rem;
  height: 1.875rem;
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.875rem;
  cursor: pointer;
  color: #00aa6e;
}
@media (min-width: 768px) {
  .accordion-block .dropdownitem .openButton {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 3.75rem;
    line-height: 2.5rem;
  }
}
.accordion-block .dropdownitem .openButton:hover {
  color: #3f403f;
}
.accordion-block .dropdownitem .row__content {
  display: none;
  padding: 1.25rem 0.9375rem;
}
.accordion-block .dropdownitem .row__content figure {
  max-width: fit-content;
}
.accordion-block .dropdownitem .row__content h2 {
  font-size: 1.625rem;
  margin: 1em auto;
}
.accordion-block .dropdownitem .row__content h2:before {
  display: none;
}

.block-calendar {
  margin-bottom: 1.875rem;
}
@media (min-width: 1240px) {
  .block-calendar {
    margin-bottom: 4.375rem;
  }
}
.block-calendar__container {
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
@media (min-width: 1280px) {
  .block-calendar__container {
    margin: 0 auto;
  }
}
.block-calendar__footer {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .block-calendar {
    position: relative;
  }
  .block-calendar .listing-block-title {
    max-width: calc(100% - 20rem);
  }
  .block-calendar__footer {
    position: absolute;
    top: 3.125rem;
    right: 0;
  }
}
@media (min-width: 1240px) {
  .block-calendar .listing-block-title {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .block-calendar-single {
    width: 100%;
    display: flex;
    gap: 2.5rem;
    max-width: 77.5rem;
    margin: 0 auto 4.375rem auto;
  }
  .block-calendar-single figure {
    flex: 1;
  }
  .block-calendar-single figure img {
    width: 100%;
  }
  .block-calendar-single .event-card {
    width: 17.5rem;
  }
}
.block-calendar-single figure {
  padding: 0 20px 0 20px;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .block-calendar-single figure {
    padding: 0 0 0 20px;
  }
}
@media (min-width: 1280px) {
  .block-calendar-single figure {
    padding: 0;
  }
}
.block-calendar-single figure figcaption {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.375rem;
  text-align: right;
}
@media (min-width: 768px) {
  .block-calendar-single figure figcaption {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}
.block-calendar-single .card__body {
  padding: 1.625rem 1.25rem 2.5rem 1.25rem;
}
.block-calendar-single h5 {
  padding: 0 0 0 0.9375rem;
}
.block-calendar-single__intro {
  text-align: center;
  padding: 1.875rem 0;
}
.block-calendar-single__intro p:first-child {
  margin-top: 0;
}
.block-calendar-single .buttondiv {
  text-align: center;
}

.citation {
  margin-bottom: 1.875rem;
  background: #145050;
  padding-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .citation {
    padding-top: 4.875rem;
    padding-bottom: 4.875rem;
    margin-top: 4.875rem;
    margin-bottom: 4.875rem;
  }
}

@media (min-width: 768px) {
  .citation-slider {
    position: relative;
    max-width: 77.5rem;
    margin: 0 auto;
  }
}
.citation-slider__content .cs-left {
  padding: 0 20px 1.875rem 20px;
  text-align: center;
}
.citation-slider__content .cs-left h3.cs-title {
  color: #00aa6e;
  font-size: 2.5rem;
  line-height: 3.125rem;
  letter-spacing: 0.05rem;
  font-weight: 400;
  margin: 0;
}
.citation-slider__content .cs-left h3.cs-title:before {
  content: "";
  display: block;
  width: 6rem;
  height: 6.1875rem;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-cite-angular.svg") no-repeat;
  margin: 2.5rem auto 2.5rem auto;
}
@media (min-width: 768px) {
  .citation-slider__content {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
  }
  .citation-slider__content .cs-left {
    display: flex;
    justify-content: flex-end;
    text-align: left;
    position: relative;
  }
  .citation-slider__content .cs-left h3.cs-title {
    padding-left: 10.125rem;
    width: 100%;
  }
  .citation-slider__content .cs-left h3.cs-title:before {
    position: absolute;
    top: 0;
    left: 20px;
    margin: 0.25rem 0 0 0;
  }
  .citation-slider__content .cs-right {
    text-align: left;
    padding-left: 1.25rem;
  }
}
.citation-slider__content .cs-right {
  color: #fff;
  min-height: 200px;
  font-style: italic;
  text-align: center;
  padding: 0 20px 1.875rem 20px;
}
.citation-slider__content .cs-right strong {
  font-style: normal;
}
@media (min-width: 768px) {
  .citation-slider__content .cs-right {
    text-align: left;
  }
}
.citation-slider__content .cs-right h2,
.citation-slider__content .cs-right h3,
.citation-slider__content .cs-right h4,
.citation-slider__content .cs-right h5 {
  font-size: 1.625rem;
  line-height: 1.875rem;
  margin: 1.875rem 0 0.625rem 0;
  font-style: normal;
}
.citation-slider__content .cs-right h2:first-child,
.citation-slider__content .cs-right h3:first-child,
.citation-slider__content .cs-right h4:first-child,
.citation-slider__content .cs-right h5:first-child {
  margin-top: 0;
}
.citation-slider__content .cs-right h2:before,
.citation-slider__content .cs-right h3:before,
.citation-slider__content .cs-right h4:before,
.citation-slider__content .cs-right h5:before {
  display: none;
}
.citation-slider__content .cs-right p:first-child {
  margin-top: 0;
}
@media (max-width: 768px) {
  .citation-slider .owl-nav {
    width: 8.125rem;
    margin: 0 auto;
  }
  .citation-slider .owl-nav button {
    width: 50%;
  }
  .citation-slider .owl-nav button span {
    opacity: 0;
  }
  .citation-slider .owl-nav button.owl-next {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
  }
  .citation-slider .owl-nav button.owl-prev {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
    transform: rotate(180deg);
  }
}
@media (min-width: 768px) {
  .citation-slider .owl-nav {
    display: block;
    width: 8.125rem;
    position: absolute;
    z-index: 3;
    bottom: -30px;
    left: calc(50% - 4.063rem);
  }
  .citation-slider .owl-nav button {
    width: 50%;
  }
  .citation-slider .owl-nav button span {
    opacity: 0;
  }
  .citation-slider .owl-nav button.owl-next {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
  }
  .citation-slider .owl-nav button.owl-prev {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
    transform: rotate(180deg);
  }
}
@media (max-width: 768px) {
  .citation-slider #counter {
    width: 100%;
    text-align: center;
    font-size: 1.125rem;
    color: #00aa6e;
    margin-top: -20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .citation-slider #counter {
    display: block;
    width: 3.125rem;
    text-align: center;
    font-size: 1.125rem;
    color: #00aa6e;
    position: absolute;
    z-index: 1;
    bottom: -30px;
    left: calc(50% - 1.563rem);
    margin-top: 0;
  }
}

h1 + .smy-staff,
h2 + .smy-staff,
h3 + .smy-staff {
  margin-top: 1.875rem;
}
@media (min-width: 920px) {
  h1 + .smy-staff,
  h2 + .smy-staff,
  h3 + .smy-staff {
    margin-top: 3.75rem;
  }
}

.smy-staff {
  margin-bottom: 100px;
}
.smy-staff h2 {
  margin-bottom: 90px;
}
.smy-staff__grid {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 0.9375rem;
  row-gap: 4.375rem;
}
@media (min-width: 920px) {
  .smy-staff__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.smy-staff__image {
  position: relative;
}
.smy-staff__image-outer {
  padding: 20px;
}
.smy-staff__image-inner {
  mask-image: url("/wp-content/themes/pt-smy-theme/assets/img/mask-splat.png");
  -webkit-mask-image: url("/wp-content/themes/pt-smy-theme/assets/img/mask-splat.png");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.smy-staff__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/staff-curlicue.svg") no-repeat;
  z-index: 10;
}
.smy-staff__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
.smy-staff__details {
  text-align: center;
  margin-top: 10px;
}
.smy-staff__details div {
  margin-top: 25px;
}
.smy-staff article h3, .smy-staff article p {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  color: #3f403f;
  margin: 0;
}
.smy-staff article h3 {
  color: #00aa6e;
  font-weight: 800;
  text-transform: uppercase;
}

.entry-content .feat-wysi {
  padding: 0 20px;
}

@media (min-width: 920px) {
  h1 + .feat-wysi,
  h2 + .feat-wysi,
  h3 + .feat-wysi {
    margin-top: 3.75rem;
  }
}

.entry-content .featured-wysiwyg {
  margin-bottom: 1.875rem;
}
@media (min-width: 920px) {
  .entry-content .featured-wysiwyg {
    margin-bottom: 4.375rem;
    max-width: 77.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg {
  position: relative;
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg__headerbox {
  text-decoration: none;
  display: block;
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg .card {
  color: #00aa6e;
  text-decoration: none;
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg h3 {
  margin: 2.5rem 0 1.25rem 0;
}
@media (min-width: 920px) {
  .entry-content .featured-wysiwyg .card-listing-wysiwyg h3 {
    margin: 0 0 1.875rem 0;
    font-size: 1.5rem;
  }
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg p {
  margin: 0;
  line-height: 1.5;
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg div.text {
  margin-top: 0.9375rem;
}
@media (min-width: 920px) {
  .entry-content .featured-wysiwyg .card-listing-wysiwyg div.text {
    margin-top: 1.875rem;
  }
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg div.text a {
  display: inline;
}
.entry-content .featured-wysiwyg .card-listing-wysiwyg img {
  display: block;
  width: 100%;
  height: 15.625rem;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 920px) {
  .entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg img {
    height: 11.4375rem;
  }
}

.entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg.curlicue .curlicue__image {
  position: relative;
}
.entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg.curlicue .curlicue__image-outer {
  padding: 20px;
}
.entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg.curlicue .curlicue__image-inner {
  mask-image: url("/wp-content/themes/pt-smy-theme/assets/img/mask-splat.png");
  -webkit-mask-image: url("/wp-content/themes/pt-smy-theme/assets/img/mask-splat.png");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-size: contain;
  width: 100%;
  height: 0;
  padding-top: 100%;
  position: relative;
}
.entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg.curlicue .curlicue__image::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/staff-curlicue.svg") no-repeat;
  z-index: 10;
}
.entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg.curlicue .curlicue__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 920px) {
  .entry-content .featured-wysiwyg.col-md-4 .card-listing-wysiwyg.curlicue img {
    height: 11.4375rem;
  }
}

.file-listing {
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 1.875rem 20px;
}
@media (min-width: 1280px) {
  .file-listing {
    padding: 1.875rem 0;
  }
}
.file-listing__card {
  background: #f5f5f5;
  margin-bottom: 1.875rem;
  padding: 20px;
}
@media (min-width: 768px) {
  .file-listing__card {
    padding: 1.875rem 1.25rem;
  }
}
.file-listing__card a {
  color: #3f403f;
  text-decoration: none;
}
.file-listing__card img {
  display: block;
}
@media (min-width: 768px) {
  .file-listing__card img {
    width: 100%;
    height: 20.625rem;
    object-fit: cover;
    object-position: top;
  }
}
@media (min-width: 768px) {
  .file-listing__card .file-listing__title {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
.file-listing__card .file-listing__title:before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-bottom: 0.75rem;
  background: #00aa6e;
}

.entry-content .forestfi {
  background: #f5f5f5;
}
.entry-content .forestfi__rss {
  max-width: 77.5rem;
  margin: 0 auto;
  padding: 3.75rem 20px;
}
@media (min-width: 768px) {
  .entry-content .forestfi__rss {
    padding: 4.375rem 20px;
    position: relative;
  }
  .entry-content .forestfi__rss .card-link {
    margin: 0;
  }
  .entry-content .forestfi__rss a:hover h5 {
    text-decoration: underline;
    text-decoration-thickness: 0.125rem;
    text-underline-offset: 0.125rem;
  }
}
@media (min-width: 1280px) {
  .entry-content .forestfi__rss {
    padding: 4.375rem 0 7.8125rem 0;
  }
}
.entry-content .forestfi__rss h2 {
  color: #00aa6e;
  font-size: 2.875rem;
  letter-spacing: 0.01625rem;
  margin-top: 0;
}
@media (min-width: 768px) {
  .entry-content .forestfi__rss h2 {
    font-size: 7.5rem;
  }
}
.entry-content .forestfi__rss h2 span {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .entry-content .forestfi__rss h2 span {
    font-size: 2.75rem;
  }
}
.entry-content .forestfi__rss .divider {
  padding: 0 0.1875rem;
  font-size: 0.6875rem;
}
@media (min-width: 768px) {
  .entry-content .forestfi__rss .label-style .card__body-label {
    background: #f5f5f5;
  }
  .entry-content .forestfi__rss .label-style .card__body-label h5 {
    line-height: 2.1875rem;
  }
}
.entry-content .forestfi__rss footer {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .entry-content .forestfi__rss footer {
    padding-top: 1.875rem;
  }
}
@media (min-width: 1240px) {
  .entry-content .forestfi__rss footer {
    padding-top: 0;
    position: absolute;
    top: 11.5625rem;
    right: 0;
  }
}

.block-events {
  max-width: 77.5rem;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 75px 45px 60px 45px;
  min-height: 200px;
  flex-wrap: wrap;
  display: flex;
}
.block-events picture {
  min-height: 200px;
  background: blue;
}
@media (min-width: 768px) {
  .block-events picture {
    width: 50%;
    padding-right: 1.375rem;
    text-align: right;
  }
}
.block-events .bit-text {
  min-height: 200px;
  background: green;
}
@media (min-width: 768px) {
  .block-events .bit-text {
    width: 50%;
    padding-left: 1.375rem;
  }
}
.block-events .element {
  flex-direction: column;
  display: flex;
  align-items: stretch;
}
.block-events .element .news-content {
  background-color: #f9f9f8;
}
.block-events .container .column-grid {
  grid-gap: 20px;
}
.block-events .container .column-grid a {
  text-decoration: none;
}
.block-events .container .column-grid h2 {
  margin-top: 10px;
}
.block-events .container .title {
  display: flex;
  flex-direction: column;
}
.block-events .container .title h2 {
  margin: 0;
}
.block-events .container .title a {
  text-align: end;
}
.block-events .date {
  width: fit-content;
  position: relative;
  padding: 10px;
  background-color: #00aa6e;
  color: white;
  text-align: center;
}
.block-events .location {
  width: fit-content;
  position: relative;
  padding: 10px;
  background-color: #00aa6e;
  color: white;
  text-align: center;
}

.cta-articles .column-grid {
  gap: 20px;
  border: 1px solid red;
}

.block-fp-news footer {
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .block-fp-news .col-sm-2 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 768px) {
  .block-fp-news {
    position: relative;
  }
  .block-fp-news .arrow-link {
    position: absolute;
    top: 3.25rem;
    right: 0;
  }
}

.full-vw.bit {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .full-vw.bit {
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
  }
}

.block-image-text {
  max-width: 77.5rem;
  margin: 0 auto;
  background: #f5f5f5;
  padding: 2.5rem 20px;
  min-height: 200px;
}
@media (min-width: 768px) {
  .block-image-text {
    display: flex;
    justify-content: space-around;
    padding: 4.6875rem 2.8125rem 3.75rem 2.8125rem;
  }
}
@media (min-width: 768px) {
  .block-image-text picture {
    width: 50%;
    padding-right: 1.375rem;
    text-align: right;
  }
  .block-image-text picture:after {
    content: "";
    display: block;
    background: #00aa6e;
    width: 80%;
    height: 1.1875rem;
    margin-left: 20%;
  }
}
.block-image-text picture img {
  display: block;
  width: 100%;
}
.block-image-text .bit-text {
  font-weight: 600;
}
.block-image-text .bit-text h1, .block-image-text .bit-text h2, .block-image-text .bit-text h3, .block-image-text .bit-text h4 {
  font-size: 1.625rem;
  line-height: 2.25rem;
}
.block-image-text .bit-text h1:before, .block-image-text .bit-text h2:before, .block-image-text .bit-text h3:before, .block-image-text .bit-text h4:before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-bottom: 0.75rem;
  background: #00aa6e;
}
@media (min-width: 768px) {
  .block-image-text .bit-text h1, .block-image-text .bit-text h2, .block-image-text .bit-text h3, .block-image-text .bit-text h4 {
    font-size: 2.25rem;
    line-height: 2.875rem;
  }
  .block-image-text .bit-text h1:first-child, .block-image-text .bit-text h2:first-child, .block-image-text .bit-text h3:first-child, .block-image-text .bit-text h4:first-child {
    margin-top: 0;
  }
}
.block-image-text .bit-text ul, .block-image-text .bit-text ol {
  padding-left: 1em;
}
.block-image-text .bit-text ul li, .block-image-text .bit-text ol li {
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .block-image-text .bit-text {
    width: 50%;
    padding-left: 1.375rem;
  }
}

.block-news footer {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .block-news .col-sm-2 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 768px) {
  .block-news {
    position: relative;
  }
  .block-news .listing-block-title {
    max-width: calc(100% - 11.25rem);
  }
  .block-news footer {
    position: absolute;
    top: -4.375rem;
    right: 0;
  }
}
@media (min-width: 1240px) {
  .block-news .listing-block-title {
    max-width: 100%;
  }
}

.full-vw.newsletter {
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .full-vw.newsletter {
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
  }
}

.block-newsletter {
  margin: 1.875rem 20px;
}
@media (min-width: 768px) {
  .block-newsletter {
    max-width: 77.5rem;
    margin: auto;
    padding: 0 20px;
  }
  .block-newsletter h2.listing-block-title {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1280px) {
  .block-newsletter {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .block-newsletter__body {
    display: flex;
    justify-content: space-around;
  }
}
.block-newsletter footer {
  display: flex;
  justify-content: flex-end;
}
.block-newsletter footer .arrow-link {
  font-weight: 600;
}
@media (min-width: 768px) {
  .block-newsletter .col-sm-2 {
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 768px) {
  .block-newsletter {
    position: relative;
  }
  .block-newsletter footer .arrow-link {
    position: absolute;
    top: 3.25rem;
    right: 0;
  }
}
.block-newsletter__info {
  position: relative;
  background: #f5f5f5;
  padding: 1.875rem 1.25rem;
  min-height: 200px;
  margin: 1.875rem 0;
}
.block-newsletter__info:after {
  content: "";
  position: absolute;
  bottom: -1.188rem;
  right: 0;
  display: block;
  background: #00aa6e;
  width: 50%;
  height: 1.1875rem;
}
@media (min-width: 920px) {
  .block-newsletter__info:after {
    width: 70%;
  }
}
.block-newsletter__info-footer {
  display: flex;
  justify-content: flex-end;
}
.block-newsletter__info-footer .arrow-link.subscribe {
  font-weight: 600;
}
.block-newsletter__info h3 {
  margin-top: 0;
  color: #00aa6e;
}
@media (min-width: 768px) {
  .block-newsletter__info {
    width: 50%;
    padding-right: 1.375rem;
  }
}
.block-newsletter__links ul {
  padding-left: 0;
  list-style: none;
}
.block-newsletter__links ul a {
  color: #3f403f;
  text-decoration: none;
}
.block-newsletter__links ul a:hover {
  color: #00aa6e;
  text-decoration: underline;
}
.block-newsletter__links ul li {
  padding: 0.9375rem;
  margin-bottom: 0.5em;
  border: solid thin #cfcfcf;
  font-size: 0.9375rem;
  line-height: 1.875rem;
  font-weight: 600;
  display: flex;
}
.block-newsletter__links ul li span {
  display: block;
}
.block-newsletter__links ul li span.nl-title {
  flex: 1;
  padding-left: 1.875rem;
}
.block-newsletter__links ul li:hover {
  box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.36);
  -webkit-box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.36);
  -moz-box-shadow: 3px 3px 15px 0px rgba(0, 0, 0, 0.36);
}
@media (min-width: 768px) {
  .block-newsletter__links {
    width: 50%;
    padding-left: 2.5rem;
  }
  .block-newsletter__links ul li {
    font-size: 1rem;
  }
}

.tis-container {
  margin-bottom: 1.875rem;
}
@media (min-width: 920px) {
  .tis-container {
    margin-bottom: 4.375rem;
  }
}
.tis-container__links {
  background-color: #EFA36D;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 20px;
  transform: translateY(50%);
}
@media (min-width: 920px) {
  .tis-container__links {
    padding: 25px 50px;
    z-index: 10;
    bottom: initial;
    transform: translateY(-50%);
  }
}
.tis-container__links h3, .tis-container__links a {
  margin: 0;
  color: white;
  font-size: 1.125rem;
}
.tis-container__links h3 {
  margin-bottom: 0px;
  text-transform: uppercase;
  display: none;
}
@media (min-width: 920px) {
  .tis-container__links h3 {
    display: block;
  }
}
.tis-container__links a {
  font-size: 1rem;
}
.tis-container__links a + a:before {
  content: "";
  display: inline-block;
  height: 20px;
  width: 1px;
  background-color: white;
  margin: 0 10px;
  transform: translateY(25%);
}
.tis-container.tis-container--frontpage .owl-stage {
  display: flex;
}
.tis-container.tis-container--frontpage .owl-carousel .owl-stage {
  display: flex;
}
.tis-container.tis-container--frontpage .owl-stage {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}
.tis-container.tis-container--frontpage .owl-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.tis-container.tis-container--frontpage .text-image-slider__content {
  height: 100%;
}
.tis-container__videowrapper {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .text-image-slider {
    position: relative;
  }
}
.text-image-slider__content {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .text-image-slider__content {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
  }
  .text-image-slider__content .center-left {
    display: flex;
    justify-content: flex-end;
  }
  .text-image-slider__content .center-right {
    display: flex;
    align-items: stretch;
  }
}
.text-image-slider__content .tis-text {
  min-height: 200px;
  padding: 1.875rem 20px;
  max-width: 38.75rem;
}
@media (min-width: 768px) {
  .text-image-slider__content .tis-text {
    padding: 5.625rem 1.875rem 1.875rem 20px;
  }
}
@media (max-width: 1240px) {
  .text-image-slider__content .tis-text {
    min-width: 100%;
  }
}
@media (min-width: 1240px) {
  .text-image-slider__content .tis-text {
    min-width: 38.75rem;
  }
}
.text-image-slider__content .tis-text h2,
.text-image-slider__content .tis-text h3,
.text-image-slider__content .tis-text h4 {
  font-size: 1.625rem;
  line-height: 1.875rem;
  margin: 1.875rem 0 0.625rem 0;
}
.text-image-slider__content .tis-text h2:before,
.text-image-slider__content .tis-text h3:before,
.text-image-slider__content .tis-text h4:before {
  display: none;
}
.tis-container--frontpage .text-image-slider__content .tis-text h4 {
  font-size: 1.625rem;
  line-height: 2.25rem;
  margin-top: 0;
  margin-bottom: 20px;
}
.text-image-slider__content .tis-text p:first-child {
  margin-top: 0;
}
.text-image-slider__content .tis-text h2.tis-text-title {
  color: #00aa6e;
  margin: 0 0 1.875rem 0;
}
@media (min-width: 768px) {
  .text-image-slider__content .tis-text h2.tis-text-title {
    font-size: 2.25rem;
    line-height: 3.25rem;
  }
}
.text-image-slider__content .tis-text h2.tis-text-title:before {
  display: none;
}
.tis-container--frontpage .text-image-slider__content .tis-text h2.tis-text-title {
  font-size: 2.75rem;
  line-height: 3.0625rem;
  margin-bottom: 15px;
  margin-top: 50px;
}
@media (min-width: 920px) {
  .tis-container--frontpage .text-image-slider__content .tis-text h2.tis-text-title {
    font-size: 4.6875rem;
    line-height: 5rem;
    margin-top: initial;
  }
}
@media (min-width: 768px) {
  .text-image-slider__content .tis-text h2.tis-text-title {
    font-size: 2.75rem;
  }
}
.text-image-slider__content .tis-text .button-curlique {
  margin: 1.25rem auto;
}
@media (min-width: 768px) {
  .text-image-slider__content .tis-text .button-curlique {
    margin: 1.875rem 0;
  }
}
.text-image-slider__content figure,
.text-image-slider__content video {
  width: 100%;
  position: relative;
}
.tis-container--frontpage .text-image-slider__content figure,
.tis-container--frontpage .text-image-slider__content video {
  height: 100%;
}
.text-image-slider__content figure img,
.text-image-slider__content video img {
  width: 100%;
  max-height: 14.0625rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .text-image-slider__content figure,
  .text-image-slider__content video {
    height: 36.75rem;
  }
  .text-image-slider__content figure img,
  .text-image-slider__content video img {
    width: 100%;
    height: 100%;
    max-height: 36.75rem;
    object-fit: cover;
  }
  .tis-container--frontpage .text-image-slider__content figure img,
  .tis-container--frontpage .text-image-slider__content video img {
    height: 100%;
    object-fit: cover;
    max-height: 100%;
  }
}
.text-image-slider__content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .text-image-slider .owl-nav {
    width: 100%;
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
  }
  .text-image-slider .owl-nav button {
    width: 4.375rem;
    height: 14.0625rem;
  }
  .text-image-slider .owl-nav button span {
    opacity: 0;
  }
  .text-image-slider .owl-nav button.owl-next {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat center;
    background-size: auto;
  }
  .text-image-slider .owl-nav button.owl-prev {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat center;
    background-size: auto;
    transform: rotate(180deg);
  }
}
@media (min-width: 768px) {
  .text-image-slider .owl-nav {
    display: block;
    width: 8.125rem;
    position: absolute;
    z-index: 3;
    bottom: 1.875rem;
    left: calc(50% - 10rem);
  }
  .text-image-slider .owl-nav button {
    width: 50%;
  }
  .text-image-slider .owl-nav button span {
    opacity: 0;
  }
  .text-image-slider .owl-nav button.owl-next {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
  }
  .text-image-slider .owl-nav button.owl-prev {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
    transform: rotate(180deg);
  }
}
.text-image-slider #counter {
  display: none;
}
@media (min-width: 768px) {
  .text-image-slider #counter {
    display: block;
    width: 3.125rem;
    text-align: center;
    font-size: 1.125rem;
    color: #00aa6e;
    position: absolute;
    z-index: 1;
    bottom: 1.875rem;
    left: calc(50% - 7.5rem);
  }
}

.darkbg {
  margin-bottom: 1.875rem;
  background: #145050;
  padding-bottom: 1.875rem;
  position: relative;
}
.darkbg:before {
  content: "";
  display: block;
  width: 100%;
  height: 25rem;
  position: absolute;
  top: 0;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/twirl-light-green.svg") no-repeat center right;
  background-size: contain;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .darkbg {
    padding-top: 4.875rem;
    padding-bottom: 4.875rem;
    margin-top: 4.875rem;
    margin-bottom: 4.875rem;
  }
  .darkbg:before {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/twirl-light-green.svg") no-repeat right;
    background-size: contain;
    height: 94%;
    width: 98%;
    top: 4%;
  }
}

.darkbg-slider {
  padding-top: 3.75rem;
  position: relative;
}
@media (min-width: 768px) {
  .darkbg-slider {
    position: relative;
    max-width: 77.5rem;
    margin: 0 auto;
    padding-top: 1.25rem;
  }
}
.darkbg-slider__content .dark-texts {
  padding: 0 20px 1.875rem 20px;
  color: #fff;
}
.darkbg-slider__content .dark-texts h2.dark-title {
  color: #fff;
}
.darkbg-slider__content .dark-texts h3,
.darkbg-slider__content .dark-texts h4,
.darkbg-slider__content .dark-texts h5 {
  font-size: 1.625rem;
  line-height: 1.875rem;
  margin: 1.875rem 0 0.625rem 0;
  font-style: normal;
}
.darkbg-slider__content .dark-texts h3:first-child,
.darkbg-slider__content .dark-texts h4:first-child,
.darkbg-slider__content .dark-texts h5:first-child {
  margin-top: 0;
}
.darkbg-slider__content .dark-texts h3:before,
.darkbg-slider__content .dark-texts h4:before,
.darkbg-slider__content .dark-texts h5:before {
  display: none;
}
.darkbg-slider__content .dark-texts p, .darkbg-slider__content .dark-texts ol, .darkbg-slider__content .dark-texts ul {
  font-size: 1.125rem;
}
.darkbg-slider__content .dark-texts a {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .darkbg-slider__content {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
  }
  .darkbg-slider__content .dark-texts {
    grid-column: 1;
    grid-row: 1/3;
  }
  .darkbg-slider__content .dark-texts h2.dark-title {
    width: 100%;
    margin-top: 1rem;
  }
  .darkbg-slider__content .dark-texts a {
    margin: 3.125rem 0 0 0;
  }
}
.darkbg-slider__content .dark-image {
  padding: 0 20px 1.875rem 20px;
}
.darkbg-slider__content .dark-image picture:after {
  content: "";
  display: block;
  background: #00aa6e;
  width: 50%;
  height: 1.1875rem;
  margin-left: 50%;
}
.darkbg-slider__content .dark-image picture img {
  width: 100%;
  height: 17.5rem;
  object-fit: cover;
}
@media (min-width: 768px) {
  .darkbg-slider__content .dark-image picture {
    width: 80%;
    margin-left: 20%;
  }
  .darkbg-slider__content .dark-image picture img {
    height: 37.5rem;
  }
}
@media (min-width: 768px) {
  .darkbg-slider__content .dark-image {
    grid-column: 2;
    grid-row: 1/3;
    padding: 0 20px 1.875rem 0;
  }
}
@media (max-width: 768px) {
  .darkbg-slider .owl-nav {
    width: 8.125rem;
    margin: 0 auto;
  }
  .darkbg-slider .owl-nav button {
    width: 50%;
  }
  .darkbg-slider .owl-nav button span {
    opacity: 0;
  }
  .darkbg-slider .owl-nav button.owl-next {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
  }
  .darkbg-slider .owl-nav button.owl-prev {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
    transform: rotate(180deg);
  }
}
@media (min-width: 768px) {
  .darkbg-slider .owl-nav {
    display: block;
    width: 8.125rem;
    position: absolute;
    z-index: 3;
    bottom: -30px;
    left: calc(50% - 4.063rem);
  }
  .darkbg-slider .owl-nav button {
    width: 50%;
  }
  .darkbg-slider .owl-nav button span {
    opacity: 0;
  }
  .darkbg-slider .owl-nav button.owl-next {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
  }
  .darkbg-slider .owl-nav button.owl-prev {
    background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat right;
    background-size: contain;
    transform: rotate(180deg);
  }
}
@media (max-width: 768px) {
  .darkbg-slider #counterDarkBg {
    width: 100%;
    text-align: center;
    font-size: 1.125rem;
    color: #00aa6e;
    margin-top: -20px;
    padding-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .darkbg-slider #counterDarkBg {
    display: block;
    width: 3.125rem;
    text-align: center;
    font-size: 1.125rem;
    color: #00aa6e;
    position: absolute;
    z-index: 1;
    bottom: -30px;
    left: calc(50% - 1.563rem);
    margin-top: 0;
  }
}

.block-title-text {
  max-width: 77.5rem;
  margin: 2.5rem auto;
  min-height: 200px;
}
@media (min-width: 768px) {
  .block-title-text {
    display: flex;
    justify-content: space-around;
    margin: 3.75rem 0;
  }
}
@media (min-width: 768px) {
  .block-title-text .btt-title {
    width: 33%;
  }
}
.block-title-text .btt-title h2 {
  margin: 0 0 1.875rem 0;
}
.block-title-text .btt-text {
  font-weight: 400;
}
.block-title-text .btt-text h3, .block-title-text .btt-text h4 {
  color: #00aa6e;
  font-size: 1rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  margin: 0.2em 0 0.125rem 0;
}
.block-title-text .btt-text h3:before, .block-title-text .btt-text h4:before {
  display: none;
}
@media (min-width: 768px) {
  .block-title-text .btt-text h3, .block-title-text .btt-text h4 {
    font-size: 1.125rem;
    line-height: 1.5rem;
    margin-bottom: 0.125rem;
  }
  .block-title-text .btt-text h3:first-child, .block-title-text .btt-text h4:first-child {
    margin-top: 0;
  }
}
.block-title-text .btt-text h3 + p,
.block-title-text .btt-text h4 + p {
  margin-top: 0;
}
@media (min-width: 768px) {
  .block-title-text .btt-text {
    width: 77%;
    padding-left: 1.375rem;
  }
}

.block-smy-attention {
  background-color: #145050;
  padding: 40px 20px;
  margin: 60px 0 40px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  gap: 15px;
  text-align: center;
}
@media (min-width: 920px) {
  .block-smy-attention {
    text-align: left;
    max-width: 918px;
    padding: 40px 20px;
    margin: 150px auto;
    width: initial;
    flex-direction: row;
    gap: 105px;
    justify-content: flex-start;
  }
  .block-smy-attention__texts {
    flex: 1;
  }
}
@media (min-width: 920px) {
  .block-smy-attention div:not(.block-smy-attention__bg) {
    margin-top: 30px;
  }
}
.block-smy-attention h1, .block-smy-attention h2, .block-smy-attention h3, .block-smy-attention p, .block-smy-attention a {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
}
.block-smy-attention h3 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.875rem;
}
@media (min-width: 920px) {
  .block-smy-attention h3 {
    font-size: 1.625rem;
    line-height: 2.25rem;
  }
}
.block-smy-attention p, .block-smy-attention a {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625rem;
}
@media (min-width: 920px) {
  .block-smy-attention p, .block-smy-attention a {
    font-size: 1.25rem;
    line-height: 2.25rem;
  }
}
.block-smy-attention a {
  color: #00aa6e;
}
.block-smy-attention__bg {
  margin: 0 auto;
  padding-top: 25%;
  background-image: var(--block-smy-attention-bg);
  background-size: contain;
  width: 200px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 920px) {
  .block-smy-attention__bg {
    margin: initial;
    padding-top: 20%;
  }
}

.visual-linking {
  background: #f9f9f8;
  padding: 1.875rem 20px 1.875rem 20px;
  margin: 1.875rem 0;
}
@media (min-width: 768px) {
  .visual-linking {
    display: flex;
    gap: 2.1875rem;
    padding: 2.1875rem;
    margin: 3.125rem 0;
  }
  .visual-linking p {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .visual-linking picture {
    width: 15rem;
    height: 10rem;
  }
}
.visual-linking picture img {
  display: block;
}
@media (min-width: 768px) {
  .visual-linking picture img {
    height: 100%;
    object-fit: cover;
  }
}
@media (min-width: 768px) {
  .visual-linking__texts {
    flex: 1;
  }
}
.visual-linking__texts h3:before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 0.1875rem;
  margin-bottom: 0.625rem;
  background: #00aa6e;
}
@media (min-width: 768px) {
  .visual-linking__texts h3 {
    margin-top: 0;
  }
}
.visual-linking__texts a.arrow-link:hover {
  text-decoration: underline;
}

.wow-box {
  background-repeat: no-repeat;
  background-position: top;
  background-size: auto 326px;
  padding-top: 13.75rem;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .wow-box {
    position: relative;
    padding-top: 17.6875rem;
    background-position: center;
    background-size: cover;
    margin-top: 5.625rem;
    margin-bottom: 5.625rem;
  }
}
@media (min-width: 768px) {
  .wow-box__bottombg {
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 15%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 100%);
  }
}
.wow-box__bg {
  margin-bottom: 3.75rem;
}
@media (min-width: 768px) {
  .wow-box__bg {
    background: linear-gradient(90deg, #f5f5f5 0%, #f5f5f5 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0) 100%);
  }
}
.wow-box__container {
  margin: 0 20px;
  padding: 2.375rem 1.5625rem;
  position: relative;
  background: #f5f5f5;
}
.wow-box__container:after {
  content: "";
  display: block;
  background: #00aa6e;
  width: 50%;
  height: 1.1875rem;
  position: absolute;
  right: 0;
  bottom: -1.188rem;
}
.wow-box__container h2 {
  color: #00aa6e;
  font-size: 2.125rem;
  letter-spacing: 0.68px;
  line-height: 2.75rem;
  margin: 0 0 1rem 0;
}
.wow-box__container h2:before {
  display: none;
}
@media (min-width: 768px) {
  .wow-box__container h2 {
    font-size: 2.75rem;
    line-height: 3.375rem;
  }
}
.wow-box__container .wow-box__leadtext {
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.wow-box__container h4 {
  font-size: 1.25rem;
  line-height: 1.875rem;
  letter-spacing: 0.4px;
  margin: 0;
}
@media (min-width: 768px) {
  .wow-box__container h4 {
    font-size: 1.625rem;
    line-height: 1.625rem;
    letter-spacing: 0.5px;
  }
}
.wow-box__container .wow-box__linktext {
  font-size: 0.875rem;
}
.wow-box__container a {
  color: #3f403f;
  text-decoration: none;
}
.wow-box__container a span {
  display: inline-flex;
  margin-left: 0.625rem;
  width: 3.125rem;
  height: 1rem;
  margin-bottom: -0.188rem;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat left;
  background-size: contain;
}
@media (min-width: 768px) {
  .wow-box__container {
    max-width: 77.5rem;
    margin: 0 auto;
    display: flex;
    background: none;
    padding: 0 20% 0 0;
  }
  .wow-box__container:after {
    display: none;
  }
  .wow-box__container-first, .wow-box__container-second {
    background: #f5f5f5;
    width: 50%;
    padding: 4.375rem 4.375rem 4.375rem 20px;
  }
  .wow-box__container-first p, .wow-box__container-first ul, .wow-box__container-first ol, .wow-box__container-second p, .wow-box__container-second ul, .wow-box__container-second ol {
    font-weight: 600;
  }
  .wow-box__container-second {
    position: relative;
  }
  .wow-box__container-second:after {
    content: "";
    display: block;
    background: #00aa6e;
    width: 50%;
    height: 1.1875rem;
    position: absolute;
    right: 0;
    bottom: -1.188rem;
    width: 24.375rem;
  }
}

/*
* WP native/core block overrides
* And migrated old wp-class/downloaded block overrides
*/
.entry-text figure {
  max-width: 100%;
}

@media (min-width: 768px) {
  .alignright,
  .alignleft {
    max-width: 40%;
  }
}
.alignright figcaption,
.alignleft figcaption {
  font-size: 0.85em;
}

@media (min-width: 768px) {
  .alignright {
    float: right;
    margin-left: 2em;
  }
}

@media (min-width: 768px) {
  .alignleft {
    float: left;
    margin-right: 2em;
  }
}

.wp-block-image {
  margin: 1.875rem 0;
}
@media (min-width: 768px) {
  .wp-block-image {
    margin: 3.75rem 0;
  }
}
.wp-block-image.size-full img {
  max-width: inherit;
  width: 100%;
}
@media (max-width: 576px) {
  .wp-block-image .alignright {
    float: none;
    margin-left: 0;
  }
}
@media (min-width: 768px) {
  .wp-block-image .alignright {
    max-width: 40%;
  }
}
@media (max-width: 576px) {
  .wp-block-image .alignleft {
    float: none;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .wp-block-image .alignleft {
    max-width: 40%;
  }
}

.wp-block-image figcaption,
figcaption {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4375rem;
  letter-spacing: 0.26px;
  margin: 1em 0 0.5em 0;
}
@media (min-width: 920px) {
  .wp-block-image figcaption,
  figcaption {
    margin: 1em 0 0.5em 0;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
  font-size: 0.875rem;
}
@media (min-width: 920px) {
  table {
    font-size: 1rem;
  }
}
table th, table td {
  padding: 5px 8px;
}
@media (min-width: 920px) {
  table th, table td {
    padding: 12px 15px;
  }
}
table th {
  text-align: left;
}

.wp-block-table {
  overflow: auto;
}
@media (min-width: 920px) {
  .wp-block-table {
    display: table;
  }
}
.wp-block-table.is-style-stripes tbody tr {
  border-bottom: none;
}
.wp-block-table.is-style-stripes tbody tr:first-child {
  border-top: none;
}
.wp-block-table figcaption {
  display: table-caption;
  caption-side: top;
  text-align: center;
  margin: 0;
  padding: 0.5rem;
}
@media (min-width: 920px) {
  .wp-block-table figcaption {
    padding: 1rem;
  }
}

quote,
.wp-block-quote p {
  font-size: 1.625rem;
  line-height: 2.25rem;
  letter-spacing: 0.52px;
  font-style: italic;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 768px) {
  quote,
  .wp-block-quote p {
    text-align: left;
    padding-left: 5.625rem;
    position: relative;
    max-width: 45.3125rem;
  }
}
quote:after,
.wp-block-quote p:after {
  content: '"';
  display: inline;
}

.wp-block-quote {
  margin: 3.75rem 0;
}
.wp-block-quote p:before {
  content: "";
  display: block;
  width: 3.75rem;
  height: 2.8125rem;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-cite.svg") no-repeat;
  background-size: contain;
  margin: 0 auto 1.25rem auto;
}
@media (min-width: 768px) {
  .wp-block-quote p:before {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.wp-block-quote cite {
  font-style: normal;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  .wp-block-quote cite {
    text-align: left;
    padding-left: 5.625rem;
  }
}

.wp-block-pb-accordion-item h2.c-accordion__title:before {
  display: none;
}

.entry-content .wp-block-buttons > .wp-block-button a, .entry-content .wp-block-buttons > .wp-block-button .wp-block-button__link,
.buttondiv a,
.buttondiv .wp-block-button__link {
  color: #fff;
  background-color: #00aa6e;
  font-size: 1rem;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9375rem 2.5rem;
  border-radius: 0;
  font-weight: 600;
}

.entry-content h2 + .wp-block-buttons,
.entry-content h3 + .wp-block-buttons {
  margin-top: 1rem;
}

.entry-content .wp-block-buttons > .wp-block-button.is-style-arrow a {
  color: #00aa6e;
  background-color: #fff;
}
.entry-content .wp-block-buttons > .wp-block-button.is-style-arrow a:after {
  content: "";
  display: inline-block;
  margin-left: 0.625rem;
  margin-bottom: -0.125rem;
  width: 3.375rem;
  height: 1.125rem;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/icon-arrow.svg") no-repeat center;
  background-size: contain;
}

.entry-content .wp-block-buttons > .wp-block-button.is-style-arrow .wp-block-button__link {
  padding-left: 0;
}

.entry-content .wp-block-buttons > .wp-block-button.is-style-curlicue a, .entry-content .wp-block-buttons > .wp-block-button.is-style-curlicue .wp-block-button__link {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.125rem;
  height: 9.125rem;
  padding: 0 1.25rem;
  background: url("/wp-content/themes/pt-smy-theme/assets/img/button-curlicue.svg") no-repeat center;
  background-size: contain;
}

.entry-content .wp-block-media-text {
  margin: 1.875rem 0;
}
@media (min-width: 768px) {
  .entry-content .wp-block-media-text {
    margin-bottom: 4.375rem;
  }
}
@media (min-width: 768px) {
  .entry-content .wp-block-media-text__content h2:first-child,
  .entry-content .wp-block-media-text__content h3:first-child {
    margin-top: 0;
  }
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  display: none;
}

#baguetteBox-overlay .full-image figcaption {
  color: #fff;
  padding: 1em;
  font-family: "Raleway", sans-serif;
}