:root {
  --width-full: clamp(15px, 6vw, 60px);
  --width-xl: max(clamp(15px, 6vw, 60px), calc(50% - 910px));
  --width-l: max(clamp(15px, 6vw, 60px), calc(50% - 840px));
  --width-m: max(clamp(15px, 6vw, 60px), calc(50% - 600px));
  --width-s: max(clamp(15px, 6vw, 60px), calc(50% - 430px));
  --width-xs: max(clamp(15px, 6vw, 60px), calc(50% - 325px));

  --padding-l: clamp(15px, 11vw, 200px);
  --padding-m: clamp(15px, 9vw, 150px);
  --padding-s: clamp(15px, 6vw, 100px);
  --padding-xs: clamp(15px, 4vw, 50px);

  --gap-xl: clamp(15px, 8vw, 80px);
  --gap-l: clamp(15px, 3vw, 60px);
  --gap-m: clamp(15px, 2vw, 40px);
  --gap-s: clamp(10px, 2vw, 20px);
  --gap-xs: clamp(10px, 2vw, 10px);

  /*Colors*/
  --teal: #026773;
  --teal-light: #0092a4;
  --lime: #a8c128;
  --lime-light: #bdd15e;
  --lime-dusky: #d3df93;
  --blue-light: #e3e8f3;
  --white: #fff;
  --red: #bf0d31;
  --pink-light: #fcedec;
  --grey: #232323;
  --body-text: #666;
  --error: red;
}

.content_dark .wp_content *:not(.wp_exclude):not(mark) {
  color: var(--grey);
}

.content_light .wp_content *:not(.wp_exclude):not(mark) {
  color: var(--white);
}

.content_light {
  background: var(--grey);
}

body,
textarea,
input,
select {
  font:
    400 clamp(16px, 2vw, 18px) / 1.5 "Signika Negative",
    sans-serif;
  color: var(--body-text);
}

.wp_content table {
  margin-bottom: 1rem;
}

.wp_content table thead td {
  background: var(--teal-light);
  color: var(--white) !important;
  font-weight: bold;
}

.wp_content table,
.wp_content td,
.wp_content th {
  border: 1px solid var(--grey);
}

.wp_content td,
.wp_content th {
  padding: 10px;
}

.hero {
  font-size: clamp(40px, 3vw, 120px);
  font-weight: 500;
  line-height: 1.1;
}

.hero-small,
h1,
h2,
.title-large {
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 600;
  line-height: 1;
}

h3,
.title-medium {
  font-size: clamp(25px, 3vw, 35px);
  font-weight: 600;
  line-height: 1.1;
}
h4,
.title-small {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
  line-height: 1.1;
}

h5 {
  font-size: clamp(19px, 3vw, 23px);
  font-weight: 500;
  line-height: 1.1;
}

h6, .pre-title {
  font-size: clamp(18px, 3vw, 22px);
  font-weight: 600;
  line-height: 1;
}

.banner-small {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.1;
}
.banner-large {
  font-size: clamp(46px, 8vw, 110px);
  line-height: 1.1;
}

strong {
  font-weight: 700;
}

.minus-margin {
  margin-bottom: 0;
}

.minus-margin + * {
  margin-top: 5px;
}

.light-text {
  font-weight: 300;
}

.regular-text {
  font-weight: 400;
}
.semi-bold-text {
  font-weight: 600;
}

.underline {
  text-decoration: underline;
}

a:not(.wp_exclude) {
  text-decoration: underline;
}

a:not(.wp_exclude):hover {
  text-decoration: none;
}

.content_dark .wp_content a:not(.wp_exclude) {
  color: var(--teal);
}

.content_light .wp_content a:not(.wp_exclude) {
  color: var(--lime);
}

.alignleft {
  float: left;
  margin-right: 20px;
}
.alignright {
  float: right;
  margin-left: 20px;
}
.aligncenter {
  margin: auto;
  text-align: center;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}
div.wp-caption {
  max-width: 100%;
  display: inline-block;
}
p.wp-caption-text {
  background-color: #f7f7f7;
  color: #808080;
  padding: 16px 25px;
  font-size: 18px;
  font-style: italic;
}

.button {
  padding: 15px 30px;
  display: inline-block;
  text-decoration: none;
  color: var(--grey);
  background-color: var(--white);
  border: 1px solid transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  border-radius: 3px;
  line-height: 1;
  transition: 0.3s;
  margin-bottom: 1rem;
}
@media (min-width: 450px) {
  .button:not(:last-child) {
    margin-right: 1.5rem;
  }
}
@media (max-width: 450px) {
  .button {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
  }
}

.button:hover {
  opacity: 0.7;
}

.button.button-large {
  line-height: 1.5;
}

.button.lime {
  background-color: var(--lime);
}

.button.black {
  background: var(--grey);
  color: var(--white);
}

.button.outline {
  background: none;
}

.content_light .button.outline {
  border-color: var(--white);
  color: var(--white);
}

.content_dark .button.outline {
  border-color: var(--grey);
  color: var(--grey);
}

.button.arrow {
  display: flex;
  align-items: center;
  gap: var(--gap-s);
  text-decoration: none;
  background-color: transparent;
  padding: 0 0 0.5rem;
  margin-top: 1.5rem;
  width: max-content;
  border-radius: 0;
}

.button.arrow:after {
  content: "";
  display: block;
  background: center / 21px 8px no-repeat;
  height: 23px;
  width: 21px;
}

@media (max-width: 768px) {
  .button.arrow {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}

.content_light .wp_content .button.arrow {
  border-bottom: 1px solid var(--white);
  color: var(--white);
}

.content_light .wp_content .button.arrow:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='8' fill='none'%3E%3Cpath fill='%23FFF' d='M20.354 4.354a.5.5 0 0 0 0-.708L17.172.464a.5.5 0 1 0-.707.708L19.293 4l-2.828 2.828a.5.5 0 1 0 .707.708l3.182-3.182ZM0 4.5h20v-1H0v1Z'/%3E%3C/svg%3E");
}

.content_dark .wp_content .button.arrow {
  border-bottom: 1px solid var(--grey);
  color: var(--grey);
}

.content_dark .wp_content .button.arrow:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='8' fill='none'%3E%3Cpath fill='%23000' d='M20.354 4.354a.5.5 0 0 0 0-.708L17.172.464a.5.5 0 1 0-.707.708L19.293 4l-2.828 2.828a.5.5 0 1 0 .707.708l3.182-3.182ZM0 4.5h20v-1H0v1Z'/%3E%3C/svg%3E");
}

.mce-content-body a.button[data-mce-selected] {
  padding: 8px 20px;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
}

.mce-content-body a.button.white {
  background: #ddd !important;
}

/* bullet points */
.wp_content ul,
.wp_content ol {
  padding-left: 2em;
  margin-bottom:1em;
}

.wp_content li:has( ~ li ) {
  margin-bottom:0.75rem;
}

ul.check_ul {
  list-style: none;
  padding: 0;
}
ul.check_ul > li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
ul.check_ul > li:last-child {
  margin-bottom: 0;
}
ul.check_ul > li::before {
  content: "";
  margin-right: 15px;
  min-width: 20px;
  min-height: 20px;
  background: center / 16px 12px no-repeat
    url("data:image/svg+xml,%3Csvg width='16' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5.43 12.23-5.2-5.2a.8.8 0 0 1 0-1.13l1.14-1.13a.8.8 0 0 1 1.13 0L6 8.27l7.5-7.5a.8.8 0 0 1 1.13 0l1.14 1.13a.8.8 0 0 1 0 1.13l-9.2 9.2a.8.8 0 0 1-1.14 0Z' fill='%23026773'/%3E%3C/svg%3E");
}

.content_light .wp_content ul.check_ul > li::before {
  background: center / 16px 12px no-repeat
    url("data:image/svg+xml,%3Csvg width='16' height='13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m5.43 12.23-5.2-5.2a.8.8 0 0 1 0-1.13l1.14-1.13a.8.8 0 0 1 1.13 0L6 8.27l7.5-7.5a.8.8 0 0 1 1.13 0l1.14 1.13a.8.8 0 0 1 0 1.13l-9.2 9.2a.8.8 0 0 1-1.14 0Z' fill='%23a8c128'/%3E%3C/svg%3E");
}

ul.stats_ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
}

ul.stats_ul li {
  margin: 0;
}

ul.stats_ul h3 {
  font-size: clamp(30px, 5vw, 55px);
  color: var(--lime);
}

.content_dark .wp_content ul.stats_ul h3 {
  color: var(--teal);
}

.content_light .wp_content ul.stats_ul h3 {
  color: var(--lime);
}

ul.stats_ul p {
  margin: 0 0 5px;
  line-height: 1;
  font-size: 22px;
  font-weight: 600;
}

@media (min-width: 950px) {
  ul.stats_ul {
    margin-top: 2rem;
    gap: var(--gap-m);
  }

  ul.stats_ul li {
    min-width: 240px;
  }
}

@media (min-width: 768px) and (max-width: 950px) {
  ul.stats_ul li {
    width: 33%;
  }
}

@media (max-width: 768px) {
  ul.stats_ul {
    width: 100%;
    margin: auto;
    flex-flow: column;
    gap: 1rem;
  }
}

.mce-content-body span[style="color: #ffffff;"] {
  color: #ddd !important;
}
