@charset "UTF-8";
.btn-link {
  background-color: #973281;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  transform-origin: center;
  transition: background-color 0.1s ease 0s, transform 0.2s cubic-bezier(0, 2.4, 1, 1) 0s;
  /*
  	&:focus {
  		outline: none;
  		text-decoration: none;
  		background-color: $purple_3;
  	}
  */
}
@media all and (min-width: 576px) {
  .btn-link {
    padding: 1rem 4rem;
  }
}
.btn-link:focus:hover, .btn-link:focus:active {
  outline: none;
  text-decoration: none;
  background-color: #A2488E;
  transform: scale(1.04);
}

.desktop .btn-link:hover, .desktop .btn-link:active {
  outline: none;
  text-decoration: none;
  background-color: #A2488E;
  transform: scale(1.04);
}

.noscroll {
  overflow: hidden;
  position: fixed;
}

.noscrolling {
  overflow: hidden;
}

.frm_screen_reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.thumbnail .img-bg {
  transition: transform 0.2s ease;
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
}

.svg-container {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: visible;
}

svg {
  overflow: visible;
}

.svg-content {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.widget-link {
  display: block;
  cursor: pointer;
}
.widget-link:focus {
  outline: none;
  text-decoration: none;
}
.widget-link:focus .img-bg {
  transform: scale(1.02);
}

.desktop .widget-link:hover, .desktop .widget-link:active {
  text-decoration: none;
}
.desktop .widget-link:hover .img-bg, .desktop .widget-link:active .img-bg {
  transform: scale(1.02);
}
.inline-thumbnail {
  width: 10rem;
  float: left;
  margin-bottom: 2rem;
  margin-right: 2rem;
}

.article-link {
  color: #000;
}
.article-link .thumbnail {
  padding-bottom: 57%;
  margin-bottom: 1.5rem;
  position: relative;
}
.article-link .thumbnail .img-bg {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media all and (min-width: 768px) {
  .article-link .thumbnail {
    margin-bottom: 2rem;
  }
}
.article-link .excerpt {
  margin-top: 0.4rem;
}
.article-link:focus {
  text-decoration: none;
  font-weight: 300;
}
.article-link:focus .img-bg {
  transform: scale(1.02);
}
.article-link:focus .link-style {
  text-decoration: underline;
}

.desktop .article-link:hover, .desktop .article-link:active {
  text-decoration: none;
  font-weight: 300;
}
.desktop .article-link:hover .img-bg, .desktop .article-link:active .img-bg {
  transform: scale(1.02);
}
.desktop .article-link:hover .link-style, .desktop .article-link:active .link-style {
  text-decoration: underline;
}

.w-100 {
  width: 100%;
}

.sep {
  display: inline;
}
.sep::after {
  content: "\a";
  white-space: pre;
}
@media all and (min-width: 576px) {
  .sep {
    display: none;
  }
}

.absolute {
  position: absolute;
}
.absolute.right {
  right: 0px;
}
.absolute.top {
  top: 0px;
}
.absolute.left {
  left: 0px;
}
.absolute.bottom {
  bottom: 0px;
}
.absolute.absright {
  right: 0px !important;
}
.absolute.absleft {
  left: 0px !important;
}

.fixed {
  position: fixed;
}
.fixed.right {
  right: 0px;
}
.fixed.top {
  top: 0px;
}
.fixed.left {
  left: 0px;
}
.fixed.bottom {
  bottom: 0px;
}

.align_left {
  text-align: left;
}

.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

.align_justify {
  text-align: justify;
}

.relative {
  position: relative;
}

.block {
  display: block;
}

.inline_block {
  display: inline-block;
}

.inline {
  display: inline;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.clear_both {
  clear: both;
}

.nowrap {
  white-space: nowrap;
}

.overflow_hidden {
  overflow: hidden;
}

.italic {
  font-style: italic;
}

.link-style {
  color: #7E0101;
}

.title-underline {
  margin-bottom: 2rem;
}
@media all and (min-width: 992px) {
  .title-underline {
    margin-bottom: 3rem;
  }
}
.title-underline:after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  max-width: 14.5rem;
  height: 0.3rem;
  margin-top: 1rem;
}
@media all and (min-width: 576px) {
  .title-underline:after {
    height: 0.4rem;
  }
}
@media all and (min-width: 768px) {
  .title-underline:after {
    height: 0.5rem;
    margin-top: 1.5rem;
  }
}
@media all and (min-width: 992px) {
  .title-underline:after {
    margin-top: 2rem;
  }
}

ul, li {
  margin-left: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-padding-start: 0;
}

.flex {
  display: -webkit-flex;
  display: flex;
}
.flex.column {
  flex-direction: column;
}
.flex.align_center {
  align-items: center;
  justify-content: center;
}
.flex.align_left .align_left {
  align-items: flex-start;
  justify-content: center;
}
.flex.space_between {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex.row {
  margin-left: 0px;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.img-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.d-none {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6, p {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-weight: 500;
  font-family: MuseoMedium, sans-serif;
}

h1, .h1 {
  font-size: 2rem;
  line-height: 2.6rem;
}
@media all and (min-width: 768px) {
  h1, .h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

h2, .h2 {
  font-size: 2rem;
  line-height: 2.6rem;
  /*
    @include media-lg {
      font-size:3.8rem;
      line-height:4.4rem;
    }
  */
}
@media all and (min-width: 768px) {
  h2, .h2 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

h3, .h3 {
  font-size: 1.9rem;
  line-height: 2.6rem;
  /*
    @include media-lg {
      font-size:3.2rem;
      line-height:4rem;
    }
  */
}
@media all and (min-width: 768px) {
  h3, .h3 {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

@media all and (min-width: 768px) {
  .banner .section-title {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}
.banner .excerpt {
  font-size: 1.5rem;
  line-height: 2rem;
  font-family: MuseoRegular, sans-serif;
}
@media all and (min-width: 768px) {
  .banner .excerpt {
    font-size: 1.9rem;
    line-height: 2.4rem;
  }
}

h4, .h4, h5, .h5, h6, .h6 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  /*
    @include media-md  {
      font-size:2.2rem;
      line-height:2.5rem;
    }
  */
}
@media all and (min-width: 768px) {
  h4, .h4, h5, .h5, h6, .h6 {
    font-size: 2rem;
    line-height: 2.45rem;
  }
}

.page-title {
  font-size: 2.8rem;
  line-height: 3.5rem;
}
@media all and (min-width: 768px) {
  .page-title {
    font-size: 3.8rem;
  }
}

.page-intro-column .page-title {
  font-size: 2.6rem;
}
@media all and (min-width: 768px) {
  .page-intro-column .page-title {
    font-size: 3rem;
  }
}
@media all and (min-width: 1200px) {
  .page-intro-column .page-title {
    font-size: 3.4rem;
  }
}
@media all and (min-width: 1900px) {
  .page-intro-column .page-title {
    font-size: 4.2rem;
    line-height: 4.6rem;
  }
}
.page-intro-column .page-lead {
  line-height: 2.2rem;
}
@media all and (min-width: 1900px) {
  .page-intro-column .page-lead {
    font-size: 2.8rem;
    line-height: 3.5rem;
  }
}
.page-intro-column .link-column {
  font-size: 1.8rem;
}
@media all and (min-width: 768px) {
  .page-intro-column .link-column {
    font-size: 2.2rem;
  }
}
@media all and (min-width: 1200px) {
  .page-intro-column .link-column {
    font-size: 2.4rem;
  }
}
@media all and (min-width: 1900px) {
  .page-intro-column .link-column {
    margin-top: 1rem;
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}

.subheading {
  font-size: 1.8rem;
}
@media all and (min-width: 768px) {
  .subheading {
    font-size: 1.9rem;
  }
}

.lead {
  font-family: MuseoMedium, sans-serif;
  font-size: 1.8rem;
  line-height: 2.6rem;
}
@media all and (min-width: 768px) {
  .lead {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.contacts {
  line-height: 2rem;
}
.contacts .contact-name {
  font-size: 1.5rem;
}
@media all and (min-width: 768px) {
  .contacts .contact-name {
    font-size: 1.8rem;
  }
}
.contacts .contact-title,
.contacts .contact-tlf,
.contacts .contact-email {
  font-size: 1.4rem;
}

strong {
  font-family: MuseoBold, sans-serif;
}

.modal-content ul,
.textparagraph ul,
.bullet-list ul {
  padding-left: 1.9rem;
}

a {
  color: #973281;
  text-decoration: none;
  font-family: MuseoBold, sans-serif;
}
a:focus {
  outline: none;
  color: #A2488E;
  text-decoration: none;
}
a.yellow {
  color: #F8A51B;
}

.desktop a:hover, .desktop a:active {
  color: #A2488E;
}

.contactform a:focus,
.textparagraph a:focus,
.contacts a:focus {
  opacity: 0.5;
}

.desktop a:hover, .desktop a:active {
  text-decoration: none;
}
.desktop .contactform a:hover, .desktop .contactform a:active,
.desktop .textparagraph a:hover,
.desktop .textparagraph a:active,
.desktop .contacts a:hover,
.desktop .contacts a:active {
  opacity: 0.5;
}

.sidebar {
  font-size: 1.5rem;
  line-height: 2rem;
}
.sidebar .sidebar-widgets-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.sidebar .fields sidebar-widgets-title {
  font-size: 2rem;
}
.sidebar .fields .name {
  font-family: MuseoMedium, sans-serif;
  color: #F8A51B;
}
.sidebar .themes .name {
  font-size: 2.1rem;
  line-height: 2.4rem;
  font-family: MuseoMedium, sans-serif;
  margin-bottom: 1rem;
}
.sidebar .themes .description {
  font-family: MuseoRegular, sans-serif;
}
.sidebar .widgets-title {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .sidebar .widgets-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.sidebar .widget-title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.sidebar .widget-link {
  color: #000;
}
.sidebar a:focus {
  color: #000;
}

.banner a:focus,
.articles a:focus,
.sidebar a:focus {
  color: #000;
}

.sidebar .widget-menu a:focus {
  color: #A2488E;
  opacity: 0.5;
}

.desktop .banner a:hover, .desktop .banner a:active {
  color: #fff;
}
@media all and (min-width: 768px) {
  .desktop .banner a:hover, .desktop .banner a:active {
    color: #000;
  }
}
.desktop .articles a:hover, .desktop .articles a:active,
.desktop .sidebar a:hover,
.desktop .sidebar a:active {
  color: black;
}
.desktop .sidebar .widget-menu a:hover, .desktop .sidebar .widget-menu a:active {
  color: #A2488E;
  opacity: 0.5;
}

.section-title,
.section-title * {
  display: flex;
  justify-content: center;
  flex: auto;
  font-family: MuseoMedium, sans-serif;
}
@media all and (min-width: 1900px) {
  .section-title,
.section-title * {
    font-size: 3rem;
    line-height: 4rem;
  }
}

@media all and (min-width: 1900px) {
  .home .section-title,
.home .section-title * {
    font-size: 3.8rem;
    line-height: 4.7rem;
  }
}

.section-title .read-more-link {
  flex: none;
  font-size: 1.6rem;
}
@media all and (min-width: 1900px) {
  .section-title .read-more-link {
    font-size: 2rem;
  }
}

.subheading,
.subheading * {
  font-family: MuseoMedium, sans-serif;
}
@media all and (min-width: 1900px) {
  .subheading,
.subheading * {
    font-size: 2.8rem;
    line-height: 3.5rem;
  }
}

.themes .theme .name {
  font-size: 2.1rem;
}

.fields .section-title,
.fields .subheading,
.themes .section-title,
.themes .subheading,
.articles .section-title,
.articles .subheading,
.contactform .section-title,
.contactform .subheading {
  text-align: center;
}
.fields .field .name,
.fields .theme .name,
.fields .article .name,
.themes .field .name,
.themes .theme .name,
.themes .article .name,
.articles .field .name,
.articles .theme .name,
.articles .article .name,
.contactform .field .name,
.contactform .theme .name,
.contactform .article .name {
  font-family: MuseoMedium, sans-serif;
}
.fields .field .excerpt,
.fields .field .description,
.fields .theme .excerpt,
.fields .theme .description,
.fields .article .excerpt,
.fields .article .description,
.themes .field .excerpt,
.themes .field .description,
.themes .theme .excerpt,
.themes .theme .description,
.themes .article .excerpt,
.themes .article .description,
.articles .field .excerpt,
.articles .field .description,
.articles .theme .excerpt,
.articles .theme .description,
.articles .article .excerpt,
.articles .article .description,
.contactform .field .excerpt,
.contactform .field .description,
.contactform .theme .excerpt,
.contactform .theme .description,
.contactform .article .excerpt,
.contactform .article .description {
  font-family: MuseoRegular, sans-serif;
  line-height: 1.5em;
  font-size: 1.5rem;
}
@media all and (min-width: 576px) {
  .fields .theme .description,
.themes .theme .description,
.articles .theme .description,
.contactform .theme .description {
    font-size: 1.7rem;
  }
}
@media all and (min-width: 992px) {
  .fields .theme .name,
.themes .theme .name,
.articles .theme .name,
.contactform .theme .name {
    font-size: 2.4rem;
  }
  .fields .theme .description,
.themes .theme .description,
.articles .theme .description,
.contactform .theme .description {
    font-size: 1.9rem;
  }
}
@media all and (min-width: 992px) {
  .fields .field .name,
.themes .field .name,
.articles .field .name,
.contactform .field .name {
    font-size: 1.9rem;
  }
}
@media all and (min-width: 992px) {
  .fields .field .name,
.themes .field .name,
.articles .field .name,
.contactform .field .name {
    font-size: 2rem;
  }
}
@media all and (min-width: 1200px) {
  .fields .field .description,
.themes .field .description,
.articles .field .description,
.contactform .field .description {
    font-size: 1.7rem;
  }
}
@media all and (min-width: 1900px) {
  .fields .field .title,
.themes .field .title,
.articles .field .title,
.contactform .field .title {
    font-size: 2.4rem;
  }
}
@media all and (min-width: 1900px) {
  .fields .field .name,
.fields .theme .name,
.themes .field .name,
.themes .theme .name,
.articles .field .name,
.articles .theme .name,
.contactform .field .name,
.contactform .theme .name {
    font-size: 2.8rem;
  }
  .fields .field .description,
.fields .theme .description,
.themes .field .description,
.themes .theme .description,
.articles .field .description,
.articles .theme .description,
.contactform .field .description,
.contactform .theme .description {
    font-size: 1.8rem;
  }
}

.articles .article .excerpt,
.articles .archive-link .excerpt,
.archive-links .article .excerpt,
.archive-links .archive-link .excerpt {
  line-height: 1.5em;
}
@media all and (min-width: 768px) {
  .articles .article .title ,
.articles .archive-link .title ,
.archive-links .article .title ,
.archive-links .archive-link .title  {
    font-size: 1.9rem;
  }
}
@media all and (min-width: 992px) {
  .articles .article .title,
.articles .archive-link .title,
.archive-links .article .title,
.archive-links .archive-link .title {
    font-size: 2rem;
  }
  .articles .article .excerpt,
.articles .archive-link .excerpt,
.archive-links .article .excerpt,
.archive-links .archive-link .excerpt {
    font-size: 1.7rem;
  }
}
@media all and (min-width: 1900px) {
  .articles .article .title,
.articles .archive-link .title,
.archive-links .article .title,
.archive-links .archive-link .title {
    font-size: 2.4rem;
  }
  .articles .article .excerpt,
.articles .archive-link .excerpt,
.archive-links .article .excerpt,
.archive-links .archive-link .excerpt {
    font-size: 1.8rem;
  }
}

.frm_form_field input,
.frm_form_field textarea,
.frm_form_field select {
  font-size: 1.6rem;
}

.frm_error {
  font-size: 1.6rem;
  white-space: nowrap;
}

.site-footer {
  color: #fff;
}
.site-footer p {
  color: #ebc3e3;
}
.site-footer a {
  color: #F8A51B;
}
.site-footer a:focus {
  color: #fff;
}
.site-footer p,
.site-footer h3 {
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.site-footer p + h3, .site-footer p + h4, .site-footer p + h5, .site-footer p + h6 {
  margin-top: 2rem;
}
.site-footer h3 + a, .site-footer h4 + a, .site-footer h5 + a, .site-footer h6 + a, .site-footer p + a {
  margin-top: 1rem;
}
.site-footer h3 + p, .site-footer h4 + p, .site-footer h5 + p, .site-footer h6 + p {
  margin-top: 1rem;
}

.desktop .site-footer a:hover, .desktop .site-footer a:active {
  color: #fff;
}

.lead-alt {
  font-family: MuseoMedium, sans-serif;
  font-size: 1.5rem;
  line-height: 3rem;
}
@media all and (min-width: 576px) {
  .lead-alt {
    font-size: 1.7rem;
  }
}
@media all and (min-width: 992px) {
  .lead-alt {
    font-size: 2rem;
  }
}

/*
@font-face {
	font-family: MuseoRegular;
	src: url(../fonts/museosans_300-webfont.woff);
}

@font-face {
	font-family: MuseoBold;
	src: url(../fonts/museosans_500-webfont.woff);
}
*/
@font-face {
  font-family: "MuseoRegular";
  src: url("../fonts/museosans_300-webfont.woff2") format("woff2"), url("../fonts/museosans_300-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MuseoMedium";
  src: url("../fonts/museosans_500-webfont.woff2") format("woff2"), url("../fonts/museosans_500-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "MuseoBold";
  src: url("../fonts/museosans_700-webfont.woff2") format("woff2"), url("../fonts/museosans_700-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
button {
  -webkit-appearance: none;
  border: 0px none;
  background: transparent;
}

html {
  font-size: 62.5%;
  /*to make working with rem easier. With this setting, 1.6rem = 16px*/
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  font-size: 1.6rem;
  line-height: 2.6rem;
  flex: auto;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  font-family: MuseoRegular, sans-serif;
  font-weight: 300;
}
@media all and (min-width: 768px) {
  body {
    font-size: 1.7rem;
    line-height: 2.8rem;
  }
}

.main {
  flex: auto;
  display: flex;
}
.main .article .standard-padding:nth-child(1) {
  padding-top: 0;
}

.article + .sidebar {
  margin-top: 4rem;
}
@media all and (min-width: 768px) {
  .article + .sidebar {
    margin-top: 0;
  }
}

.main-section {
  background: transparent;
  position: relative;
  padding-left: 0px;
  padding-right: 0px;
}
.main-section .outer-row {
  margin-left: 0;
  margin-right: 0;
}
.main-section .outer-column {
  padding-left: 0;
  padding-right: 0;
}

.themes .section-title,
.fields .section-title {
  margin-bottom: 4rem;
}

.articles .section-title,
.contactform .section-title {
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .articles .section-title,
.contactform .section-title {
    margin-bottom: 3rem;
  }
}
@media all and (min-width: 1200px) {
  .articles .section-title,
.contactform .section-title {
    margin-bottom: 4rem;
  }
}

@media all and (min-width: 1900px) {
  .themes .section-title,
.fields .section-title,
.articles .section-title,
.contactform .section-title {
    margin-bottom: 8rem;
  }
}

.standard-padding-top {
  padding-top: 6rem;
  /*
  	@include media-sm {
      padding-top:4.5rem;
    }
    @include media-md {
      padding-top:5rem;
    }
    @include media-lg {
      padding-top:5.5rem;
    }
  */
  /*
    @include media-xl {
      padding-top:6rem;
    }
  */
}
@media all and (min-width: 768px) {
  .standard-padding-top {
    padding-top: 6rem;
  }
}
@media all and (min-width: 992px) {
  .standard-padding-top {
    padding-top: 6rem;
  }
}
@media all and (min-width: 1400px) {
  .standard-padding-top:not(.main) {
    padding-top: 12rem;
  }
}

.standard-padding {
  padding-top: 6rem;
  /*
  	@include media-sm {
      padding-top:4.5rem;
    }
    @include media-md {
      padding-top:5rem;
    }
    @include media-lg {
      padding-top:5.5rem;
    }
  */
  /*
    @include media-xl {
      padding-top:6rem;
    }
  */
  padding-bottom: 6rem;
  /*
  	@include media-sm {
      padding-bottom:4.5rem;
    }
    @include media-md {
      padding-bottom:5rem;
    }
    @include media-lg {
      padding-bottom:5.5rem;
    }
  */
  /*
    @include media-xl {
      padding-bottom:6rem;
    }
  */
}
@media all and (min-width: 768px) {
  .standard-padding {
    padding-top: 6rem;
  }
}
@media all and (min-width: 992px) {
  .standard-padding {
    padding-top: 6rem;
  }
}
@media all and (min-width: 1400px) {
  .standard-padding:not(.main) {
    padding-top: 12rem;
  }
}
@media all and (min-width: 768px) {
  .standard-padding {
    padding-bottom: 6rem;
  }
}
@media all and (min-width: 992px) {
  .standard-padding {
    padding-bottom: 6rem;
  }
}
@media all and (min-width: 1400px) {
  .standard-padding:not(.main) {
    padding-bottom: 12rem;
  }
}
@media all and (max-width: 769px) {
  .standard-padding.main {
    padding-top: 3rem;
  }
}
.standard-padding + .standard-padding, .standard-padding + .standard-padding-top {
  padding-top: 0;
}

.standard-padding-bottom {
  padding-bottom: 6rem;
  /*
  	@include media-sm {
      padding-bottom:4.5rem;
    }
    @include media-md {
      padding-bottom:5rem;
    }
    @include media-lg {
      padding-bottom:5.5rem;
    }
  */
  /*
    @include media-xl {
      padding-bottom:6rem;
    }
  */
}
@media all and (min-width: 768px) {
  .standard-padding-bottom {
    padding-bottom: 6rem;
  }
}
@media all and (min-width: 992px) {
  .standard-padding-bottom {
    padding-bottom: 6rem;
  }
}
@media all and (min-width: 1400px) {
  .standard-padding-bottom:not(.main) {
    padding-bottom: 12rem;
  }
}

.section-padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media all and (min-width: 768px) {
  .section-padding {
    padding-top: 2rem;
  }
}
@media all and (min-width: 992px) {
  .section-padding {
    padding-top: 3rem;
  }
}
@media all and (min-width: 1400px) {
  .section-padding {
    padding-top: 6rem;
  }
}
@media all and (min-width: 768px) {
  .section-padding {
    padding-bottom: 2rem;
  }
}
@media all and (min-width: 992px) {
  .section-padding {
    padding-bottom: 3rem;
  }
}
@media all and (min-width: 1400px) {
  .section-padding {
    padding-bottom: 6rem;
  }
}

.standard-padding + .section-padding,
.standard-padding-bottom + .section-padding {
  padding-top: 0;
}
.standard-padding:last-child:not(:first-of-type),
.standard-padding-bottom:last-child:not(:first-of-type) {
  padding-bottom: 0;
}

.container-fluid {
  margin-left: auto;
  margin-right: auto;
}

footer.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/*
header, nav {
  &.container-fluid {
   @include reset_max_md_to_fullwidth;
  }
}
*/
.container {
  width: 100%;
  margin: 0 auto;
  /*
    @include media-md
    {
      width:720px;
    }


    @include media-lg
    {
      width:992px;
    }

    @include media-xl
    {
      width:1140px;
    }
    @include media-xxl
    {
      width:1280px;
    }
  */
}

.button, div[class*=frm_style_formidable-style].with_frm_style .frm_submit button {
  display: inline-block;
  width: auto;
  padding: 2rem 3rem;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button.link, div[class*=frm_style_formidable-style].with_frm_style .frm_submit button.link {
  padding: 1rem 3rem;
}
.button:hover, div[class*=frm_style_formidable-style].with_frm_style .frm_submit button:hover {
  opacity: 0.8;
}

button {
  padding: 0;
}

.main {
  z-index: 90;
}
.main .main-row {
  align-content: flex-start;
  flex: auto;
  max-width: calc(100% + 3rem);
}

.image_container {
  line-height: 0;
}

img {
  width: 100%;
  height: auto;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
img.align_center {
  margin: 0 auto;
}
img.thumb {
  min-width: 170px;
}
@media all and (min-width: 576px) {
  img.thumb {
    min-width: 256px;
  }
}
@media all and (min-width: 768px) {
  img.thumb {
    min-width: 300px;
  }
}
img.social {
  width: 4rem;
  height: 4rem;
  padding-right: 1rem;
}
@media all and (min-width: 576px) {
  img.social {
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media all and (min-width: 768px) {
  img.social {
    width: 5rem;
    height: 5rem;
  }
}

[data-href] {
  cursor: pointer;
}

nav ul {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
nav ul li {
  list-style: none;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.nav-menu {
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  transition: opacity 0.2s ease-out;
  background-color: rgba(117, 40, 100, 0.98);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.nav-menu .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
}
.nav-menu .menu-item a {
  font-family: MuseoMedium;
  font-size: 3rem;
  color: white;
  transition: 0.2s ease;
}
.nav-menu .menu-item a:focus {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}
.nav-menu.open-menu {
  right: 0;
  opacity: 1;
  width: 100vw;
}
.nav-menu.closing {
  opacity: 0;
}

.hero-column {
  height: 75vw;
  max-height: 84rem;
}
@media all and (min-width: 576px) {
  .hero-column {
    height: 44vw;
  }
}

.tema .hero-column,
.referanse .hero-column {
  height: 75vw;
}
@media all and (min-width: 576px) {
  .tema .hero-column,
.referanse .hero-column {
    height: 50vw;
  }
}

.page-template-page-reference .hero-column,
.archive .hero-column {
  height: 14rem;
}
@media all and (min-width: 768px) {
  .page-template-page-reference .hero-column,
.archive .hero-column {
    height: 18rem;
  }
}
@media all and (min-width: 1400px) {
  .page-template-page-reference .hero-column,
.archive .hero-column {
    height: 25rem;
  }
}

.post-type-archive-om-oss .hero-column {
  height: 75vw;
  max-height: 84rem;
}
@media all and (min-width: 576px) {
  .post-type-archive-om-oss .hero-column {
    height: 44vw;
  }
}

.hero-column.empty {
  height: 14rem;
}
@media all and (min-width: 768px) {
  .hero-column.empty {
    height: 18rem;
  }
}
@media all and (min-width: 1400px) {
  .hero-column.empty {
    height: 25rem;
  }
}

.site-header {
  background: transparent;
  flex: none;
}
.site-header .open-menu {
  display: flex !important;
}
.site-header .open-button .top {
  -webkit-transform: rotate(45deg) translate(0, 0);
  transform: rotate(45deg) translate(0, 0);
}
.site-header .open-button .bottom {
  -webkit-transform: rotate(-45deg) translate(0, 0);
  transform: rotate(-45deg) translate(0, 0);
}
.site-header .menu-toggle {
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
  position: absolute;
  top: 4rem;
  right: 6rem;
  z-index: 1001;
  opacity: 1;
  width: 6rem;
  height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /*
  		#menu-icon-container{
  			height: 3.8rem;
  			width: 2.5rem;
  			cursor: pointer;
  		}
  */
}
@media all and (max-width: 769px) {
  .site-header .menu-toggle {
    top: 2rem;
    right: 2rem;
  }
}
.site-header .menu-toggle .menu-icon-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 2.5rem;
  height: 6rem;
  position: relative;
}
.site-header .menu-toggle .hamburger-icon {
  transition: transform 0.2s ease;
}
.site-header .menu-toggle .hamburger-icon:before, .site-header .menu-toggle .hamburger-icon:after {
  content: "";
  position: absolute;
  transition: transform 0.2s ease 0s, margin 0.2s ease 0.2s;
}
.site-header .menu-toggle .hamburger-icon:before {
  margin-top: -0.8rem;
}
.site-header .menu-toggle .hamburger-icon:after {
  margin-top: 0.8rem;
}
.site-header .menu-toggle .hamburger-icon,
.site-header .menu-toggle .hamburger-icon:before,
.site-header .menu-toggle .hamburger-icon:after {
  transform-origin: center;
  width: 2.5rem;
  height: 0.3rem;
  background-color: #fff;
  box-shadow: 0 0 0.3rem #752864;
  border-radius: 0.2rem;
}
.site-header .menu-toggle:focus .hamburger-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /*
  		&:before,
  		&:after {
  			margin-top: 0;
  		}
  */
}
.site-header .menu-toggle:focus .stroke {
  transition: transform 0.2s ease;
  /*
  		&.top {
  			@include prefix((transform: scale(1.1) translate(0, -.4rem)), webkit);
  		}
  		&.bottom {
  			@include prefix((transform: scale(1.1) translate(0, .4rem)), webkit);
  		}
  */
}
.site-header .menu-toggle.open-button .hamburger-icon,
.site-header .menu-toggle.open-button .hamburger-icon:before,
.site-header .menu-toggle.open-button .hamburger-icon:after {
  box-shadow: none;
}
.site-header .menu-toggle.open-button .hamburger-icon {
  width: 0;
}
.site-header .menu-toggle.open-button .hamburger-icon:before, .site-header .menu-toggle.open-button .hamburger-icon:after {
  transition: transform 0.2s ease 0.2s, margin 0.2s ease 0s;
  margin-top: 0;
}
.site-header .menu-toggle.open-button .hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-header .menu-toggle.open-button .hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-header .img-bg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.site-header .img-bg,
.site-header .video-container {
  overflow: hidden;
  background-color: #752864;
}
.site-header .img-bg:after,
.site-header .video-container:after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 150%;
  top: 100%;
  left: 0;
  height: 100%;
  min-height: 60rem;
  transform: rotate(-3deg);
  transform-origin: left top;
  z-index: 50;
}
.site-header .hero-column {
  min-height: 14rem;
  display: flex;
  justify-content: flex-start;
}
.site-header .hero-column video {
  /*
  			min-width: 100%;
  			min-height: 100%;
  */
  width: 100%;
}
@supports (object-fit: cover) {
  .site-header .hero-column video {
    height: 100%;
    object-fit: cover;
  }
}
.site-header .header-column {
  position: absolute;
  padding-top: 2rem;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}
@media all and (min-width: 768px) {
  .site-header .header-column {
    padding-top: 2rem;
  }
}
.site-header .logo {
  z-index: 50;
  margin: 0;
  width: 100%;
  max-width: 14rem;
  display: block;
  display: flex;
}
@media all and (min-width: 768px) {
  .site-header .logo {
    max-width: 18rem;
  }
}
.site-header .logo .link {
  border: 0.2rem solid transparent;
  display: block;
  width: 100%;
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
}
.site-header .logo .link:focus {
  transform: scale(1.05);
  outline: none;
  border-color: transparent;
}
.site-header .logo img {
  position: relative;
  height: auto;
  width: 100%;
  display: block;
  filter: drop-shadow(5px 5px 9px rgba(0, 0, 0, 0.2));
}
.home .site-header,
.page-template-page-frontpage .site-header {
  min-height: 45vw;
  display: flex;
  flex-direction: column;
  /*
  		@include media-md {
  			.logo {
  				max-width: 29rem;
  				.link {
  					flex: auto;
  				}
  			}
  		}
  		@include media-xxx {
  			.logo {
  				max-width: 44rem;
  			}
  		}
  */
}
.home .site-header .logo,
.page-template-page-frontpage .site-header .logo {
  max-width: 28rem;
}
@media all and (min-width: 768px) {
  .home .site-header .logo,
.page-template-page-frontpage .site-header .logo {
    max-width: 44rem;
  }
  .home .site-header .logo .link,
.page-template-page-frontpage .site-header .logo .link {
    flex: auto;
  }
}
@media all and (min-width: 1200px) {
  .home .site-header .logo,
.page-template-page-frontpage .site-header .logo {
    max-width: 54rem;
  }
}
@media all and (min-width: 1900px) {
  .home .site-header .logo,
.page-template-page-frontpage .site-header .logo {
    max-width: 64rem;
  }
}
.home .site-header .outer-row,
.page-template-page-frontpage .site-header .outer-row {
  flex: auto;
}
.home .site-header .outer-row .outer-column,
.page-template-page-frontpage .site-header .outer-row .outer-column {
  display: flex;
  flex-direction: column;
}
.home .site-header .outer-row .outer-column .inner-container,
.page-template-page-frontpage .site-header .outer-row .outer-column .inner-container {
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home .site-header .hero-column,
.page-template-page-frontpage .site-header .hero-column {
  position: absolute;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  padding-bottom: 0;
}
.home .site-header .page-intro-column,
.page-template-page-frontpage .site-header .page-intro-column {
  z-index: 50;
  padding-top: 8rem;
  padding-bottom: 10rem;
  display: flex;
  justify-content: center;
  color: #fff;
  text-align: center;
}
.home .site-header .page-intro-column .logo-column,
.page-template-page-frontpage .site-header .page-intro-column .logo-column {
  margin-bottom: 2rem;
}
.home .site-header .page-intro-column .title-column,
.page-template-page-frontpage .site-header .page-intro-column .title-column {
  margin-bottom: 0.5rem;
}
@media all and (min-width: 768px) {
  .home .site-header .page-intro-column,
.page-template-page-frontpage .site-header .page-intro-column {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
}
@media all and (min-width: 992px) {
  .home .site-header .page-intro-column,
.page-template-page-frontpage .site-header .page-intro-column {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
}
.home .site-header .link-column .link:focus,
.page-template-page-frontpage .site-header .link-column .link:focus {
  color: #fff;
}

.desktop {
  /*
  	.site-header {
  		.menu-button {
  			&:focus {
  				border-color: transparent;
  			}
  			&:hover,
  			&:active {
  				border-color: $blue_3;
  // 				background-color: $blue_3;
  			}
  		}
  	}	
  	.header-nav {
  		.menu-item {
  			a {
  				&:hover {
  					color: $red;
  				}
  			}
  		}
  	}
  */
}
.desktop .menu-toggle:hover .hamburger-icon, .desktop .menu-toggle:active .hamburger-icon {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  /*
  		&:before,
  		&:after {
  			margin-top: 0;
  		}
  */
}
.desktop .menu-toggle:hover .stroke, .desktop .menu-toggle:active .stroke {
  transition: transform 0.2s ease;
  /*
  		&.top {
  			@include prefix((transform: scale(1.1) translate(0, -.4rem)), webkit);
  		}
  		&.bottom {
  			@include prefix((transform: scale(1.1) translate(0, .4rem)), webkit);
  		}
  */
}
.desktop .menu-toggle.open-button .hamburger-icon,
.desktop .menu-toggle.open-button .hamburger-icon:before,
.desktop .menu-toggle.open-button .hamburger-icon:after {
  box-shadow: none;
}
.desktop .menu-toggle.open-button .hamburger-icon {
  width: 0;
}
.desktop .menu-toggle.open-button .hamburger-icon:before, .desktop .menu-toggle.open-button .hamburger-icon:after {
  transition: transform 0.2s ease 0.2s, margin 0.2s ease 0s;
  margin-top: 0;
}
.desktop .menu-toggle.open-button .hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.desktop .menu-toggle.open-button .hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.desktop .link-column .link:hover, .desktop .link-column .link:active {
  color: #fff;
}
.desktop .logo a:hover, .desktop .logo a:active {
  transform: scale(1.05);
}
.desktop .nav-menu .menu-item a:hover, .desktop .nav-menu .menu-item a:active {
  -webkit-transform: scale(1.07);
  transform: scale(1.07);
}

.site-footer {
  position: relative;
  background-color: #752864;
}
.site-footer .map-link {
  display: inline-block;
  display: inline-flex;
  align-items: flex-end;
}
.site-footer .map-link .text {
  line-height: 1.7rem;
}
.site-footer .map-link .icon {
  position: relative;
  display: flex;
  margin-right: 0.8rem;
  width: 1.5rem;
  height: 2.1rem;
}
.site-footer .map-link .icon .svg-fill {
  fill: #F8A51B;
}
.site-footer .map-link:focus .svg-fill {
  fill: #fff;
}
.site-footer .footer-bg {
  position: relative;
  overflow: hidden;
  padding-bottom: 6%;
}
.site-footer .footer-bg:before {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 150%;
  height: 100%;
  min-height: 60rem;
  z-index: 50;
  transform-origin: right bottom;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-100%) rotate(-3deg);
  transform: translateY(-100%) rotate(-3deg);
}
.site-footer .some {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: -0.3rem;
  margin-right: -0.3rem;
  display: flex;
}
.site-footer .some .icon-link {
  margin: 0.3rem;
  opacity: 0.7;
}
.site-footer .some .icon-link:focus {
  opacity: 1;
}
.site-footer .some .icon {
  width: 3rem;
  height: 3rem;
  position: relative;
  display: block;
}
.site-footer .some .icon .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-footer .footer-logos {
  display: flex;
  /*
  		justify-content: flex-start;
  		align-items: stretch;
  */
  margin-top: 1rem;
}
@media all and (min-width: 992px) {
  .site-footer .footer-logos {
    margin-top: 2rem;
  }
}
.site-footer .footer-logos .logo {
  flex: auto;
  /*
  			flex: 0 1 100%;

  			width: auto;
  */
  display: flex;
  max-height: 9rem;
  width: 100%;
  /*
  			&+.logo {
  				margin-left: .5rem;
  				@include media-lg {
  					margin-left: 2rem;
  				}

  			}
  */
}
@media all and (min-width: 992px) {
  .site-footer .footer-logos .logo {
    flex: none;
    flex: auto;
    justify-content: flex-start;
  }
}
.site-footer .footer-logos .logo img {
  flex: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  max-height: inherit;
}
@media all and (max-width: 993px) {
  .site-footer .footer-logos .logo img {
    width: 100%;
  }
}
@media all and (min-width: 992px) {
  .site-footer .footer-logos .logo img {
    flex: none;
    width: auto;
    height: 10rem;
  }
}

.desktop .site-footer .icon-link:hover, .desktop .site-footer .icon-link:active {
  opacity: 1;
}
.desktop .site-footer .map-link:hover .svg-fill, .desktop .site-footer .map-link:active .svg-fill {
  fill: #fff;
}

.widget .thumbnail {
  padding-bottom: 55%;
  margin-bottom: 1rem;
  position: relative;
}
.widget .thumbnail .img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sidebar-widgets + .sidebar-widgets {
  margin-top: 2rem;
}
@media all and (min-width: 768px) {
  .sidebar-widgets + .sidebar-widgets {
    margin-top: 4rem;
  }
}
@media all and (min-width: 768px) {
  .sidebar-widgets.themes + .fields {
    margin-top: 2rem;
  }
}
.sidebar-widgets .widget {
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .sidebar-widgets .widget {
    margin-bottom: 0;
  }
}
@media all and (min-width: 768px) {
  .sidebar-widgets .widget + .widget {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}
@media all and (min-width: 768px) {
  .sidebar-widgets .widget-row + .widget-row {
    margin-top: 3rem;
  }
}

.widget-menu {
  font-size: 1.8rem;
}
.widget-menu .menu-item {
  margin-bottom: 2.5rem;
}

.sidebar {
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .sidebar {
    margin-bottom: 4rem;
  }
}
.sidebar .tag {
  color: #000;
}
.sidebar .tag + .tag {
  margin-top: 1rem;
}
@media all and (min-width: 576px) {
  .sidebar .tag.theme-tag {
    margin-bottom: 4rem;
  }
}
@media all and (min-width: 768px) {
  .sidebar .tag.theme-tag {
    margin-bottom: 0;
  }
}
.sidebar .tag.theme-tag + .theme-tag {
  margin-top: 4rem;
}
@media all and (min-width: 576px) {
  .sidebar .tag.theme-tag + .theme-tag {
    margin-top: 0;
  }
}
@media all and (min-width: 768px) {
  .sidebar .tag.theme-tag + .theme-tag {
    margin-top: 4rem;
  }
}
.sidebar .tag.field-tag {
  align-items: center;
}
.sidebar .tag.field-tag .icon {
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
}
.sidebar .field-icons {
  display: flex;
  width: calc(100% + .4rem);
  margin-left: -0.3rem;
  flex-wrap: wrap;
}
.sidebar .tag.theme-tag {
  flex-direction: row;
}
.sidebar .tag.theme-tag .icon {
  width: 9rem;
  height: 9rem;
  flex: 1 0 9rem;
  margin-right: 1.5rem;
}
@media all and (min-width: 768px) {
  .sidebar .tag.theme-tag {
    flex-direction: column;
  }
  .sidebar .tag.theme-tag .text {
    text-align: center;
  }
  .sidebar .tag.theme-tag .icon {
    margin-right: 0;
  }
}
@media all and (min-width: 1400px) {
  .sidebar .tag.theme-tag {
    flex-direction: row;
  }
  .sidebar .tag.theme-tag .icon {
    margin-right: 1.5rem;
  }
  .sidebar .tag.theme-tag .text {
    text-align: left;
  }
}
.sidebar .tag.field-tag {
  margin: 0.3rem;
  position: relative;
}
.sidebar .tag.field-tag .icon {
  margin: 0;
}
.sidebar .tag.field-tag .name {
  display: none;
  position: absolute;
}

.desktop .sidebar .tag.field-tag .name {
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -2.5rem);
  transform: translate(-50%, -2.5rem);
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  color: #fff;
  background-color: #000;
}
.desktop .sidebar .tag.field-tag .name:before {
  width: 1rem;
  height: 1rem;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  transform-origin: center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.desktop .sidebar .tag.field-tag:hover .name, .desktop .sidebar .tag.field-tag:active .name, .desktop .sidebar .tag.field-tag:focus .name {
  display: block;
  /*
  						&:before {
  							content: "";
  						}
  */
}
.desktop .sidebar .tag.field-tag:hover .name:before, .desktop .sidebar .tag.field-tag:active .name:before, .desktop .sidebar .tag.field-tag:focus .name:before {
  content: "";
}

.page_title {
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  .page_title {
    margin-bottom: 2rem;
  }
}
.page_title .read-more-link {
  margin-top: 2rem;
}
.page_title .content-column :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.page_intro .lead {
  margin-bottom: 2rem;
}

.textparagraph ul {
  margin-bottom: 1rem;
}
.textparagraph .wp-caption,
.textparagraph .wp-video,
.textparagraph .embed-responsive {
  width: 100% !important;
  width: calc(100% - 4rem);
  font-size: 1.5rem;
  line-height: 2rem;
  /*
  		@include media-md {
  			width: calc((100% / 8) * 7) !important;
  		}
  */
}
.textparagraph .embed-responsive {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 1rem;
}
.textparagraph .embed-responsive iframe {
  border-width: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.textparagraph .wp-caption-text {
  margin-top: 0.5rem;
}

p {
  margin-top: 0;
  padding-top: 0;
}

.textparagraph p + *,
.textparagraph .wp-caption + *,
.textparagraph ul + * {
  margin-top: 1.6rem;
}
@media all and (min-width: 768px) {
  .textparagraph p + *,
.textparagraph .wp-caption + *,
.textparagraph ul + * {
    margin-top: 2.2rem;
  }
}
.textparagraph h3 {
  margin-bottom: 1rem;
}

/*
.textparagraph {
	* {
		&+.wp-video {
			margin-top:
		}
	}
	.wp-video {

	}
}
*/
.contacts .subheading {
  margin-bottom: 2rem;
}
.contacts .contact {
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
  display: none;
  margin-top: 2.5rem;
}
@media all and (min-width: 992px) {
  .contacts .contact {
    margin-top: 4rem;
  }
}
.contacts .contact .contact-image {
  width: 100%;
  max-width: 15rem;
  margin-bottom: 1rem;
}
@media all and (min-width: 576px) {
  .contacts .contact .contact-image {
    max-width: 20rem;
  }
}
@media all and (min-width: 1200px) {
  .contacts .contact .contact-image {
    margin-bottom: 2rem;
  }
}
.contacts .contact .contact-image .img-bg {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding-bottom: 100%;
}
.contacts .contact .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contacts .category-label + .category-label {
  margin-left: 2rem;
}
.contacts .contact-toggle {
  padding-bottom: 4rem;
}

.contact-items.admin .admin {
  display: flex;
}
.contact-items.management .management {
  display: flex;
}
.contact-items.workmen .workmen {
  display: flex;
}
.contact-items.all .workmen,
.contact-items.all .admin,
.contact-items.all .management {
  display: flex;
}

.textcolumns .column-img {
  padding-bottom: 60%;
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .textcolumns .column-img {
    margin-bottom: 3rem;
  }
}
.textcolumns .title,
.textcolumns .sub-heading {
  margin-bottom: 2rem;
}
.textcolumns .title + .address, .textcolumns .title + .email, .textcolumns .title + .number,
.textcolumns .sub-heading + .address,
.textcolumns .sub-heading + .email,
.textcolumns .sub-heading + .number {
  margin-top: 3rem;
}
.textcolumns .address {
  white-space: pre-line;
}
.textcolumns .address + .email, .textcolumns .address + .number {
  margin-top: 3rem;
}
.textcolumns .number + .email {
  margin-top: 3rem;
}
.textcolumns .label {
  margin-right: 1rem;
}
.textcolumns .column {
  margin-bottom: 2rem;
}
@media all and (min-width: 1200px) {
  .textcolumns .column {
    margin-bottom: 4rem;
  }
}

.articles .article-link,
.related_articles .article-link {
  width: 100%;
}
.articles .article-link .thumbnail,
.related_articles .article-link .thumbnail {
  padding-bottom: 0;
}
.articles .article-link .img-container,
.related_articles .article-link .img-container {
  position: relative;
}
@supports (object-fit: cover) {
  .articles .article-link .img-container,
.related_articles .article-link .img-container {
    height: 0;
    padding-bottom: 57%;
  }
  .articles .article-link .img-container .img,
.articles .article-link .img-container .attachment-thumbnail,
.related_articles .article-link .img-container .img,
.related_articles .article-link .img-container .attachment-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
  }
}
.articles .article-link:focus .img,
.articles .article-link:focus .attachment-thumbnail,
.related_articles .article-link:focus .img,
.related_articles .article-link:focus .attachment-thumbnail {
  transform: scale(1.012);
}
.articles .article-link .img,
.articles .article-link .attachment-thumbnail,
.related_articles .article-link .img,
.related_articles .article-link .attachment-thumbnail {
  flex: none;
  width: 100%;
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
}
.articles .article-link .title,
.articles .article-link .excerpt,
.articles .article-link .tags,
.related_articles .article-link .title,
.related_articles .article-link .excerpt,
.related_articles .article-link .tags {
  flex: auto;
}
.articles .article-link .title,
.related_articles .article-link .title {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}
.articles .article-link .excerpt p,
.related_articles .article-link .excerpt p {
  font-family: MuseoRegular;
  color: #000;
}
.articles .article-link .tags,
.related_articles .article-link .tags {
  font-family: MuseoMedium;
  font-size: 1.5rem;
  color: #F8A51B;
  margin-bottom: 1.5rem;
}
.articles .article-link:focus .img,
.articles .article-link:focus .attachment-thumbnail,
.related_articles .article-link:focus .img,
.related_articles .article-link:focus .attachment-thumbnail {
  transform: scale(1.012);
}
.articles .subheading,
.related_articles .subheading {
  margin-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .articles .subheading,
.related_articles .subheading {
    margin-bottom: 3rem;
  }
}
@media all and (min-width: 1200px) {
  .articles .subheading,
.related_articles .subheading {
    margin-bottom: 4rem;
  }
}
@media all and (min-width: 768px) {
  .articles .articles > .row,
.related_articles .articles > .row {
    justify-content: center;
  }
}
.articles .article,
.related_articles .article {
  display: flex;
  flex-direction: column;
  /*
  		&:nth-child(3) {
  			@include media-lg {
  				margin-left: 8.33333%;
  				margin-right: auto;
  			}
  			@include media-xl {
  				margin: 0;
  			}
  		}
  */
  margin-bottom: 2rem;
}
.articles .article .excerpt,
.related_articles .article .excerpt {
  display: none;
}
@media all and (min-width: 768px) {
  .articles .article .excerpt,
.related_articles .article .excerpt {
    display: block;
  }
}
.articles .read-more-link,
.related_articles .read-more-link {
  margin-top: 2rem;
}

.desktop .article-link:hover .img,
.desktop .article-link:hover .attachment-thumbnail, .desktop .article-link:active .img,
.desktop .article-link:active .attachment-thumbnail {
  transform: scale(1.012);
}

.banner {
  overflow: hidden;
}
.banner .inner-container {
  padding-top: 2rem;
  padding-bottom: 4rem;
  padding-right: 4rem;
}
@media all and (min-width: 576px) {
  .banner .inner-container {
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}
@media all and (min-width: 768px) {
  .banner .inner-container {
    padding-right: 1.5rem;
    padding-top: 12rem;
    padding-bottom: 10rem;
  }
}
@media all and (min-width: 992px) {
  .banner .inner-container {
    padding-top: 16rem;
    padding-bottom: 12rem;
  }
}
@media all and (min-width: 1200px) {
  .banner .inner-container {
    padding-top: 20rem;
    padding-bottom: 16rem;
  }
}
@media all and (min-width: 1400px) {
  .banner .inner-container {
    padding-top: 30rem;
    padding-bottom: 26rem;
  }
}
.banner .inner-container {
  background-color: #973281;
}
.banner .inner-container:after {
  content: "";
  position: absolute;
  width: 150%;
  height: 100%;
  min-height: 60rem;
  z-index: 50;
  background-color: #fff;
  left: 0;
  transform-origin: left top;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
  top: 100%;
}
@media all and (min-width: 768px) {
  .banner .inner-container {
    background-color: transparent;
  }
}
.banner .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.banner .img-bg {
  height: 50vw;
  clip-path: none;
  position: relative;
  overflow: hidden;
}
.banner .img-bg:after {
  content: "";
  position: absolute;
  width: 150%;
  height: 100%;
  min-height: 60rem;
  z-index: 50;
  background-color: #973281;
  left: 0;
  transform-origin: left top;
  -webkit-transform: rotate(-3deg);
  transform: rotate(-3deg);
  top: 100%;
}
@media all and (min-width: 768px) {
  .banner .img-bg {
    padding-bottom: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .banner .img-bg:after {
    content: none;
  }
}
.banner .btn-link {
  display: none;
}
@media all and (min-width: 768px) {
  .banner .btn-link {
    display: block;
  }
}
@supports (box-decoration-break: clone) or (-webkit-box-decoration-break: clone) {
  @media all and (min-width: 768px) {
    .banner .section-title > span,
.banner .excerpt > span {
      background-color: rgba(255, 255, 255, 0.3);
      padding: 0.4rem 1rem;
      -webkit-box-decoration-break: clone;
      box-decoration-break: clone;
    }
  }
  @media all and (min-width: 768px) {
    .banner .section-title {
      line-height: 3.9rem;
    }
  }
  @media all and (min-width: 1900px) {
    .banner .section-title {
      line-height: 4.9rem;
    }
  }
  @media all and (min-width: 768px) {
    .banner .excerpt {
      line-height: 2.9rem;
    }
  }
}
.banner .section-title + .excerpt {
  margin-top: 0.5rem;
}
.banner .section-title + .btn-link {
  margin-top: 1rem;
}
@media all and (min-width: 768px) {
  .banner .section-title + .btn-link {
    margin-top: 2rem;
  }
}
.banner .excerpt + .btn-link {
  margin-top: 1.5rem;
}
.banner .excerpt,
.banner .btn-link {
  position: relative;
  z-index: 1;
}
.banner:before, .banner:after {
  position: absolute;
  width: 150%;
  height: 100%;
  min-height: 60rem;
  z-index: 50;
}
.banner:before {
  content: "";
  background-color: #fff;
  transform-origin: right bottom;
  top: 0;
  right: 0;
  transform: translateY(-100%) rotate(-3deg);
  -webkit-transform: translateY(-100%) rotate(-3deg);
  transform: translateY(-100%) rotate(-3deg);
}
@media all and (min-width: 768px) {
  .banner:after {
    content: "";
    background-color: #fff;
    left: 0;
    transform-origin: left top;
    -webkit-transform: rotate(-3deg);
    transform: rotate(-3deg);
    top: 100%;
  }
}

.banner-link {
  color: #fff;
}
.banner-link .excerpt {
  color: #ebc3e3;
}
@media all and (min-width: 768px) {
  .banner-link {
    color: #000;
  }
  .banner-link .excerpt {
    color: #000;
  }
}
.banner-link:focus .btn-link {
  outline: none;
  text-decoration: none;
  background-color: #A2488E;
  transform: scale(1.04);
}

.tag {
  display: flex;
  align-items: center;
}
.tag .icon {
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
  position: relative;
}
.tag .icon .img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
}
.tag .icon .active-state-transform {
  transform-origin: center;
  transition: stroke-width 0.2s cubic-bezier(0, 1, 1, 1);
}
.tag .icon .active-state-opacity {
  transition: fill-opacity 0.2s ease;
}
.tag:focus {
  font-weight: 300;
}
.tag:focus .icon {
  transform: scale(1.05);
}
.tag:focus .icon .active-state-transform {
  stroke-width: 0;
}
.tag:focus .icon .active-state-opacity {
  fill-opacity: 0;
}
.tag.theme-tag {
  /*
  		@include media-md {
  			flex-direction: column;
  			align-items: center;
  		}
  */
}
.tag.theme-tag .icon {
  width: 11rem;
  height: 11rem;
  margin-bottom: 1rem;
}
.desktop .tag:hover, .desktop .tag:active {
  text-decoration: none;
}
.desktop .tag:hover .icon, .desktop .tag:active .icon {
  transform: scale(1.05);
}
.desktop .tag:hover .icon .active-state-transform, .desktop .tag:active .icon .active-state-transform {
  stroke-width: 0;
}
.desktop .tag:hover .icon .active-state-opacity, .desktop .tag:active .icon .active-state-opacity {
  fill-opacity: 0;
}
.desktop .tag:hover .description, .desktop .tag:active .description {
  font-weight: 300;
}
.desktop .tag:hover.theme-tag .name, .desktop .tag:active.theme-tag .name {
  color: #000;
}

.themes .tags,
.fields .tags {
  /*
  		@include media-xl {
  			padding-top: 6rem;
  		}
  		@include media-xxl {
  			padding-top: 8rem;
  		}
  */
}
@media all and (min-width: 768px) {
  .themes .tags,
.fields .tags {
    justify-content: center;
  }
}
.themes .tags .tag,
.fields .tags .tag {
  color: #000;
  margin-bottom: 4rem;
}
.themes .tags .tag:last-child,
.fields .tags .tag:last-child {
  margin-bottom: 0;
}
@media all and (min-width: 1900px) {
  .themes .tags .tag .icon,
.fields .tags .tag .icon {
    margin-bottom: 2rem;
  }
}
.themes .tags .tag.theme-tag .icon,
.fields .tags .tag.theme-tag .icon {
  width: 11rem;
  height: 11rem;
  flex: 1 0 11rem;
}
@media all and (min-width: 768px) {
  .themes .tags .tag.theme-tag .icon,
.fields .tags .tag.theme-tag .icon {
    width: 16rem;
    height: 16rem;
    flex: none;
    margin-bottom: 1.6rem;
  }
}
.themes .tags .tag.theme-tag .text,
.fields .tags .tag.theme-tag .text {
  margin-left: 1.6rem;
}
@media all and (min-width: 768px) {
  .themes .tags .tag.theme-tag,
.fields .tags .tag.theme-tag {
    flex-direction: column;
    align-items: center;
  }
  .themes .tags .tag.theme-tag .text,
.fields .tags .tag.theme-tag .text {
    margin-left: 0;
    text-align: center;
  }
}
.themes .tags .tag.field-tag,
.fields .tags .tag.field-tag {
  flex-direction: column;
  align-items: center;
}
@media all and (min-width: 768px) {
  .themes .tags .tag.field-tag,
.fields .tags .tag.field-tag {
    margin-bottom: 6rem;
  }
}
.themes .tags .tag.field-tag .icon,
.fields .tags .tag.field-tag .icon {
  width: 6rem;
  height: 6rem;
  margin-bottom: 1rem;
}
@media all and (min-width: 768px) {
  .themes .tags .tag.field-tag .icon,
.fields .tags .tag.field-tag .icon {
    width: 8rem;
    height: 8rem;
  }
}
@media all and (min-width: 1900px) {
  .themes .tags .tag.field-tag .icon,
.fields .tags .tag.field-tag .icon {
    margin-bottom: 2rem;
  }
}
.themes .tags .tag.field-tag .text,
.fields .tags .tag.field-tag .text {
  text-align: center;
}
.themes .tags .tag .description,
.fields .tags .tag .description {
  margin-top: 0.5rem;
}

@media all and (min-width: 1400px) {
  .fields {
    padding-bottom: 6rem;
  }
}
.fields .tags .tag .description {
  margin-top: 0.5rem;
}
@media all and (min-width: 1200px) {
  .fields .tags .tag .description {
    display: block;
  }
}

.gallery .gallery-items {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}
.gallery .gallery-row {
  margin: 0 -1rem;
}
.gallery .gallery-row .gallery-item {
  padding: 1.5rem;
}
.gallery .thumbnail {
  display: block;
  transform-origin: center;
}
.gallery .thumbnail .img-bg {
  position: relative;
  padding-bottom: 66%;
}
.gallery .thumbnail:focus .img-bg {
  transform: scale(1.02);
}

.desktop .gallery .thumbnail:hover .img-bg, .desktop .gallery .thumbnail:active .img-bg {
  transform: scale(1.02);
}
.gallery-lightbox .items {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;
}
.gallery-lightbox .item {
  opacity: 0;
  width: 100%;
  /*

  		height: 100%;
  */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-lightbox .item .image {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
  max-width: 190rem;
  max-height: 120rem;
}
.gallery-lightbox .item .caption {
  margin-top: 1rem;
  color: #fff;
  flex: none;
  text-align: center;
}
.gallery-lightbox .item img {
  -webkit-backface-visibility: hidden;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.gallery-lightbox .item .img-container {
  overflow-y: auto;
  flex: auto;
  display: flex;
  justify-content: center;
}
.gallery-lightbox .item .img-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: contain;
  display: flex;
  flex: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery-lightbox .owl-item {
  width: 100%;
}
.gallery-lightbox.active .close-lightbox {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 6rem;
  height: 6rem;
}
.gallery-lightbox .owl-stage-outer {
  display: flex;
  flex: 1 1 100%;
}
.gallery-lightbox .owl-stage {
  display: flex;
  flex: 1 1 100%;
  width: 100%;
}
.gallery-lightbox .owl-stage .owl-item {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  padding: 2rem;
  align-items: stretch;
  max-height: 100vh;
  max-width: 100vw;
}
.gallery-lightbox .owl-stage .owl-item .item {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .gallery-lightbox .owl-stage .owl-item {
    padding: 4rem;
  }
}
.gallery-lightbox .owl-nav {
  position: fixed;
  position: absolute;
  height: 0;
  top: 50%;
  display: flex;
  width: 100vw;
  padding: 0 2.5rem;
  left: 0;
  justify-content: space-between;
}
@media all and (min-width: 768px) {
  .gallery-lightbox .owl-nav {
    padding: 0 4.5rem;
  }
}
.gallery-lightbox .owl-nav .owl-prev,
.gallery-lightbox .owl-nav .owl-next {
  flex: 0 1 auto;
}
.gallery-lightbox .owl-nav .owl-prev .gallery-nav,
.gallery-lightbox .owl-nav .owl-next .gallery-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-top: -2rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(4px);
}
.gallery-lightbox .owl-nav .owl-prev .gallery-nav:after,
.gallery-lightbox .owl-nav .owl-next .gallery-nav:after {
  content: "";
  position: relative;
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.6);
  border-right: 0.1rem solid rgba(0, 0, 0, 0.6);
  transform-origin: center;
}
.gallery-lightbox .owl-nav .owl-prev .gallery-nav:after {
  margin-right: -0.6rem;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.gallery-lightbox .owl-nav .owl-next .gallery-nav:after {
  margin-left: -0.6rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

fieldset {
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-after: 0;
  border: 0px none;
}

.frm_fields_container {
  display: flex !important;
  flex-wrap: wrap;
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.frm_primary_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
  border: 0;
}

.frm_form_field {
  display: flex;
  flex-direction: column;
  padding-bottom: 2rem;
}
.frm_form_field input,
.frm_form_field textarea,
.frm_form_field select {
  flex: none;
  border: 0.1rem solid #BDBDBD;
  padding: 0.8rem;
  border-radius: 0.4rem;
  box-shadow: inset 0 1px 3px 0 rgba(125, 125, 125, 0.5);
  min-width: 0;
}
.frm_form_field .frm_error {
  color: red;
  position: absolute;
  bottom: 0;
  margin-bottom: -0.2rem;
}
.frm_form_field .popup-btn {
  flex: none;
  align-self: flex-start;
}
.frm_form_field textarea {
  resize: vertical;
}
.frm_form_field.link-inline .frm_checkbox {
  float: left;
  margin-right: 0.5rem;
}

@media all and (min-width: 576px) {
  .city {
    padding-left: 0;
  }
}
.city input {
  border: 0px none;
  box-shadow: none;
}

.frm_submit {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  display: flex;
  justify-content: flex-start;
}

.frm_button_submit {
  font-size: 1.6rem;
  background-color: #973281;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  transform-origin: center;
  transition: background-color 0.1s ease 0s, transform 0.2s cubic-bezier(0, 2.4, 1, 1) 0s;
  /*
  	&:focus {
  		outline: none;
  		text-decoration: none;
  		background-color: $purple_3;
  	}
  */
}
@media all and (min-width: 576px) {
  .frm_button_submit {
    padding: 1rem 4rem;
  }
}

.contactform .subheading + .form-column {
  margin-top: 2rem;
}
@media all and (min-width: 768px) {
  .contactform .subheading + .form-column {
    margin-top: 4rem;
  }
}

.newsletter-popup .frm_fields_container {
  /*
  		display: flex;
  		flex-direction: column;
  */
}
.newsletter-popup .frm_submit {
  /*
  		width: 100%;
  		padding: 0;
  */
}
.desktop .frm_button_submit:hover, .desktop .frm_button_submit:active {
  outline: none;
  text-decoration: none;
  background-color: #A2488E;
  transform: scale(1.04);
}

@keyframes repaint {
  from {
    width: 99.9%;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes repaint {
  from {
    width: 99.9%;
  }
  to {
    width: 100%;
  }
}
.repaint {
  /*
  	-webkit-animation: repaint 100ms;
  	animation: repaint 100ms;
  */
}
.repaint * {
  -webkit-transform: translate3d(0);
}

.fixed-toggle {
  position: fixed;
  right: 1rem;
  bottom: 4rem;
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
  transform-origin: center;
  filter: drop-shadow(0 1rem 1rem rgba(0, 0, 0, 0.2));
  /*
  	border-top-right-radius: .4rem;
  	border-top-left-radius: .4rem;
  */
}
@media all and (min-width: 768px) {
  .fixed-toggle {
    right: 2rem;
    bottom: 2rem;
  }
}
.fixed-toggle .speech-balloon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.fixed-toggle .speech-balloon .svg-fill {
  fill: #F8A51B;
}
.fixed-toggle .icon {
  height: 3rem;
  width: 3.6rem;
  flex: none;
  line-height: 0;
}
.fixed-toggle .icon .svg-container {
  overflow: visible;
  padding-bottom: 86.95%;
}
.fixed-toggle .text {
  white-space: nowrap;
  padding: 0 2rem 0 0;
  flex: 1 0 auto;
  color: #fff;
}
@media all and (max-width: 1199px) {
  .fixed-toggle .text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    clip-path: inset(50%);
    border: 0;
  }
}
@media all and (max-width: 993px) {
  .fixed-toggle:focus {
    transform: scale(1.05);
  }
  .fixed-toggle:focus .speech-balloon .svg-fill {
    fill: #F8A51B;
  }
}
@media all and (min-width: 1200px) {
  .fixed-toggle:focus {
    background-color: #F8A51B;
  }
}
@media all and (min-width: 1200px) {
  .fixed-toggle {
    left: 100%;
    right: auto;
    width: auto;
    height: 4rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    border-radius: 0.4rem 0.4rem 0 0;
    background-image: none;
    background-color: #F8A51B;
    transform-origin: bottom left;
    justify-content: flex-start;
  }
  .fixed-toggle .speech-balloon {
    display: none;
  }
  .fixed-toggle .icon {
    margin: 0 1rem 0 1.5rem;
    height: 2rem;
    width: 2.3rem;
  }
}

@media all and (max-width: 993px) {
  .desktop .fixed-toggle:hover, .desktop .fixed-toggle:active {
    transform: scale(1.05);
  }
}
@media all and (min-width: 1200px) {
  .desktop .fixed-toggle:hover, .desktop .fixed-toggle:active {
    background-color: #F8A51B;
  }
}

.modal {
  z-index: 9999;
  position: fixed;
  overflow: hidden;
  top: 100%;
  width: 100%;
  /*
  	height: 100%;
  	height: 100vh;
  */
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media all and (min-width: 768px) {
  .modal {
    align-items: center;
    background-color: transparent;
  }
}
.modal .backdrop {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  max-width: 0;
  max-height: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease 0s, max-height 0s 0.3s, max-width 0s 0.3s;
}
.modal .modal-content {
  transition: transform 0.3s ease;
  position: relative;
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.modal .modal-content .heading {
  padding-bottom: 2rem;
}
.modal .modal-content .inner {
  flex: auto;
  background-color: #fff;
  padding: 2rem 3rem 4rem;
}
@media all and (min-width: 768px) {
  .modal .modal-content {
    background-color: transparent;
    padding: 0rem;
    justify-content: center;
  }
  .modal .modal-content .inner {
    max-width: 74rem;
    position: relative;
    background-color: #fff;
    flex: 0 1 auto;
    border-radius: 0.4rem;
  }
}
.modal.inset {
  align-items: stretch;
}
.modal.inset .modal-content {
  background-color: transparent;
  align-items: center;
}
.modal.inset .modal-content .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  width: 100%;
  padding: 0;
  margin: 0;
}
.modal.inset .modal-content .inner .text {
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  max-width: 74rem;
  margin: 2rem;
  padding: 2rem 3rem 2rem 2rem;
  border-radius: 0.4rem;
  background-color: #fff;
  transition: opacity 0s 0.3s;
}
@media all and (min-width: 768px) {
  .modal.inset .modal-content {
    padding: 0rem;
  }
  .modal.inset .modal-content .inner .text {
    padding: 4rem;
  }
  .modal.inset .modal-content .close-modal {
    top: 2rem;
  }
}
.modal.newsletter-popup .modal-content {
  justify-content: center;
  max-width: 50rem;
}
.modal.newsletter-popup .inner {
  padding-bottom: 2rem;
}
.modal .toggle {
  position: fixed;
  right: 0;
  top: 80%;
  transform: rotate(-90deg);
  background-color: rgba(248, 165, 27, 0.6);
  height: 5rem;
  z-index: 100;
}
.modal.active.inset {
  z-index: 100000;
  background-color: transparent;
}
.modal.active.inset .inner {
  background: transparent;
  transition: opacity 0s 0.3s;
}
.modal.active.inset .backdrop {
  max-width: 100vw;
  max-height: 100vh;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease 0s, max-height 0s ease 0s, max-width 0s ease 0s;
}
@media all and (min-width: 768px) {
  .modal.active .backdrop {
    max-width: 100vw;
    max-height: 100vh;
    opacity: 1;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease 0s, max-height 0s ease 0s, max-width 0s ease 0s;
  }
}

.slideup .modal-content {
  -webkit-transform: translateY(100%) translateZ(0);
  transform: translateY(100%) translateZ(0);
}
.slideup.active {
  top: 0;
  overflow-y: auto;
}
@supports (-webkit-overflow-scrolling: touch) {
  .slideup.active {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
.slideup.active .modal-content {
  -webkit-transform: none;
  transform: none;
}
.slideup.active .modal-content .inner {
  opacity: 1;
}
.slideup.active.closing .backdrop {
  opacity: 0;
}
.slideup.active.closing .modal-content {
  -webkit-transform: translateY(100%) translateZ(0);
  transform: translateY(100%) translateZ(0);
}

.popup {
  position: absolute;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-left: -9999px;
  width: 1px;
  height: 1px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 110;
}
.popup.standard {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.popup.active {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: 0;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.popup.active .back-link {
  display: none;
}
.popup.active.back-link .back-link {
  display: flex;
  align-items: center;
  position: absolute;
  top: 2rem;
  left: 2rem;
  line-height: 2rem;
  height: 2rem;
  opacity: 0.4;
  color: #000;
}
.popup.active.back-link .back-link:before {
  content: "";
  position: relative;
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.2rem solid transparent;
  border-bottom-color: #000;
  border-left-color: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.popup.active.back-link .back-link span {
  margin-top: 0.4rem;
}
.popup.active.back-link .back-link:focus {
  opacity: 1;
}
.popup.active .popup-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  padding: 4rem;
  margin: 2rem;
  background-color: #fff;
  max-width: 80rem;
  border-radius: 0.4rem;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
@media all and (min-width: 768px) {
  .popup.active .popup-content {
    margin: 0 4rem;
    padding: 6rem;
  }
}
.popup.active.closing {
  opacity: 0;
}

.modal .close-modal {
  /*
  		top: 1rem;
  		right: 1rem;
  */
  top: 0rem;
  right: 0rem;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
}
.modal .close-modal .icon {
  width: 2rem;
}
.modal .close-modal .icon:before, .modal .close-modal .icon:after {
  width: 2rem;
  background-color: #000;
}
@media all and (min-width: 768px) {
  .modal .close-modal {
    right: calc((100% - 74rem) / 2);
  }
}
.modal .close-modal:focus {
  opacity: 1;
}
.modal .close-modal:focus .icon:before, .modal .close-modal:focus .icon:after {
  background-color: #000;
}
.modal.active .close-modal {
  position: fixed;
  z-index: 120;
}
.modal.active .close-modal .icon:before, .modal.active .close-modal .icon:after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.2rem;
  flex: auto;
}
.modal.active .close-modal .icon:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.modal.active .close-modal .icon:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.modal.active .close-modal:focus {
  opacity: 1;
}
@media all and (min-width: 768px) {
  .modal.active:not(.inset) .close-modal {
    position: absolute;
    /*
    			top: 4rem;
    			right: 4rem;
    */
  }
}

.desktop .slideup.active .close-modal:hover, .desktop .slideup.active .close-modal:active,
.desktop .popup.active .close-modal:hover,
.desktop .popup.active .close-modal:active {
  opacity: 1;
}
.desktop .slideup.active .popup-content .close-modal:hover, .desktop .slideup.active .popup-content .close-modal:active,
.desktop .popup.active .popup-content .close-modal:hover,
.desktop .popup.active .popup-content .close-modal:active {
  opacity: 1;
}
.desktop .slideup.active .popup-content .close-modal:hover .icon:before, .desktop .slideup.active .popup-content .close-modal:hover .icon:after, .desktop .slideup.active .popup-content .close-modal:active .icon:before, .desktop .slideup.active .popup-content .close-modal:active .icon:after,
.desktop .popup.active .popup-content .close-modal:hover .icon:before,
.desktop .popup.active .popup-content .close-modal:hover .icon:after,
.desktop .popup.active .popup-content .close-modal:active .icon:before,
.desktop .popup.active .popup-content .close-modal:active .icon:after {
  background-color: #000;
}
.desktop .slideup.active.back-link .back-link:hover, .desktop .slideup.active.back-link .back-link:active,
.desktop .popup.active.back-link .back-link:hover,
.desktop .popup.active.back-link .back-link:active {
  opacity: 1;
}

.reference-row .reference-block {
  display: flex;
  padding-bottom: 4rem;
}
@media all and (min-width: 768px) {
  .reference-row .reference-block {
    padding-bottom: 6rem;
  }
}
.reference-row .reference-block .reference-link {
  flex: auto;
}
.reference-row .reference-block .reference-link:focus .reference-img {
  transform: scale(1.012);
}
.reference-row .reference-block .reference-link .reference-img {
  width: 100%;
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
}
@supports (object-fit: cover) {
  @media all and (min-width: 768px) {
    .reference-row .reference-block .reference-link .reference-img {
      min-height: 57%;
      object-fit: cover;
    }
  }
}
.reference-row .reference-block .reference-link .reference-title {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}
.reference-row .reference-block .reference-link .reference-excerpt p {
  font-family: MuseoRegular;
  color: #000;
}
.reference-row .reference-block .reference-link .reference-tags {
  font-family: MuseoMedium;
  font-size: 1.5rem;
  color: #F8A51B;
  margin-bottom: 1.5rem;
}

.page-template-page-reference .page_intro {
  padding-bottom: 2rem;
}
@media all and (min-width: 768px) {
  .page-template-page-reference .page_intro {
    padding-bottom: 4rem;
  }
}

.desktop .reference-block .reference-link:hover .reference-img, .desktop .reference-block .reference-link:active .reference-img {
  transform: scale(1.012);
}

.archive-block {
  display: flex;
  padding-bottom: 4rem;
}
@media all and (min-width: 768px) {
  .archive-block {
    padding-bottom: 6rem;
  }
}

.article-link,
.archive-link {
  width: 100%;
}
.article-link .thumbnail,
.archive-link .thumbnail {
  padding-bottom: 0;
}
.article-link .img-container,
.archive-link .img-container {
  position: relative;
}
@supports (object-fit: cover) {
  .article-link .img-container,
.archive-link .img-container {
    height: 0;
    padding-bottom: 57%;
  }
  .article-link .img-container .img,
.article-link .img-container .attachment-thumbnail,
.archive-link .img-container .img,
.archive-link .img-container .attachment-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    object-fit: cover;
  }
}
.article-link:focus .img,
.article-link:focus .attachment-thumbnail,
.archive-link:focus .img,
.archive-link:focus .attachment-thumbnail {
  transform: scale(1.012);
}
.article-link .img,
.article-link .attachment-thumbnail,
.archive-link .img,
.archive-link .attachment-thumbnail {
  flex: none;
  width: 100%;
  transition: transform 0.2s cubic-bezier(0, 2.4, 1, 1);
}
.article-link .title,
.article-link .excerpt,
.article-link .tags,
.archive-link .title,
.archive-link .excerpt,
.archive-link .tags {
  flex: auto;
}
.article-link .title,
.archive-link .title {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: #000;
}
.article-link .excerpt p,
.archive-link .excerpt p {
  font-family: MuseoRegular;
  color: #000;
}
.article-link .tags,
.archive-link .tags {
  font-family: MuseoMedium;
  font-size: 1.5rem;
  color: #F8A51B;
  margin-bottom: 1.5rem;
}

.desktop .archive-link:hover .img,
.desktop .archive-link:hover .attachment-thumbnail, .desktop .archive-link:active .img,
.desktop .archive-link:active .attachment-thumbnail {
  transform: scale(1.012);
}

.bullets .bullet-list + .bullet-list {
  /*
  			margin-top: 1rem;
  			@include media-sm {
  				margin-top: 0;
  			}
  */
}

.usp-list {
  margin-top: 2rem;
  margin-bottom: 4rem;
  list-style: none;
}
.usp-list li {
  position: relative;
  padding-left: 4rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.usp-list li:before {
  content: "";
  background-image: url("../images/icons/usp_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  height: 3rem;
  width: 3rem;
  position: absolute;
  left: 0;
}

/* @import "components/pageintro"; */
/*
.subheading {
// 	padding-top: 2rem;
// 	padding-bottom: 2rem;
	@include media-xl {
// 		padding-bottom: 4rem;
	}
	.title {
		text-align: center;
		padding: 2rem;
		@include media-md {
		padding: 3rem;
		}
	}
}
*/
.fields .section-title,
.themes .section-title,
.articles .section-title,
.contactform .section-title {
  color: #752864;
}
.fields .subheading,
.themes .subheading,
.articles .subheading,
.contactform .subheading {
  margin-top: 1rem;
  color: #F8A51B;
}

.image_text_module .item {
  margin: 0 0 4rem;
}
.image_text_module .item .image-column {
  margin-bottom: 1rem;
}
@media all and (min-width: 576px) {
  .image_text_module .item .image-column {
    margin-bottom: 0;
  }
}
@supports (object-fit: cover) {
  .image_text_module .item img {
    max-height: 15rem;
    object-fit: contain;
  }
}

.test-bg-toggle {
  position: fixed;
  width: 4rem;
  height: 4rem;
  top: 4rem;
  left: 4rem;
  z-index: 9999;
  border: 0.1rem solid rgba(255, 0, 0, 0.3);
}

.test-bg * {
  background-color: rgba(0, 0, 0, 0.02);
}

/*# sourceMappingURL=main.css.map */
