:root {
--primary-font: "Wix Madefor Text", sans-serif;
--color-black: #000;
--color-white: #fff;
--color-teal: #285364;
--color-bluegrey: #F1FBF9;
--color-grey: #EFEFEF;
--color-grey2: #d6d6d6;
--img-chevron-down-black: url('data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2220%22%20viewBox%3D%220%200%2014%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_9_434)%22%3E%3Cpath%20d%3D%22M1.61859%201.58362L12.8472%209.79527L1.61859%2018.4134%22%20stroke%3D%22%23285364%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_9_434%22%3E%3Crect%20width%3D%2214%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E');
--img-chevron-down-white: url('data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2220%22%20viewBox%3D%220%200%2014%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20clip-path%3D%22url(%23clip0_9_447)%22%3E%3Cpath%20d%3D%22M1.61859%201.58362L12.8472%209.79527L1.61859%2018.4134%22%20stroke%3D%22%23F1FBF9%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_9_447%22%3E%3Crect%20width%3D%2214%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E');
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-weight: 400;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
blockquote {
  display: block;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
h1,
h2,
h3,
h4 {
  -webkit-font-smoothing: antialiased;
  font-family: var(--primary-font);
}
h1 {
  font-size: 2.125em;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-black);
  margin: 0 0 17px 0;
}

h2 {
  font-size: 1.875rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-black);
  margin: 20px 0;
}
h3 {
  color: var(--color-black);
  font-size: 1.6em;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 20px;
}
p,
blockquote {
  color: var(--color-black);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 0 25px 0;
}
a {
  color: var(--color-black);
  text-decoration: underline;
}
a:hover {
	text-decoration-thickness: 3px;
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.375em;
  }
  p,
  blockquote {
    font-size: 1.125em;
  }  
}


/*-----------------------
    Base Focus
-----------------------*/

:focus {
  box-shadow: 0 0 0 2px var(--color-white);
  outline: dashed;
  outline-color: var(--color-black);
  outline-width: 2px;
  outline-offset: 0px;
}
div:focus {
  outline-style: none;
}
/* Helpers */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}
/*-----------------------
    Main Header
-----------------------*/
.main-header {
  padding: 18px 0;
  background-color: var(--color-white);
  position: relative;
}
.main-header__logo {
  display: inline-block;
  width: 190px;
}
.main-header__logo-image {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  .main-header {
    padding: 30px 0 30px 0;
    text-align: left;
  }
 .main-header .container {
    position: relative;
  }
  .main-header__logo {
    display: inline-block;
    width: 252px;
  }
}


/*-----------------------
    Main Content
-----------------------*/
main {
  margin-top: 15px;
}
.pageContentMain {

}
.pageContentAside {
	margin-top: 1em;
}


@media (min-width: 1024px) {
.pageContentMain {
	float:left;
    width: calc(100% - 384px);
    max-width: calc(100% - 384px);
    flex: 0 0 calc(100% - 384px);
}
.pageContentAside {
	float:left;
    width: 320px;
    flex: 0 0 320px;
    margin-left: 64px;
	margin-top: 0;
}
}

/*-----------------------
    WYSIWYG
-----------------------*/

.m-wysiwyg {
  margin-bottom: 2em;
}
.m-wysiwyg ul li::before {
  content: '\2022';
  position: absolute;
  top: 0;
  left: 0;
}
.m-wysiwyg ul,
.m-wysiwyg ol {
  margin: 0 0 25px 15px;
  font-size: 1rem;
  line-height: 1.5;
}
.m-wysiwyg ul ul,
.m-wysiwyg ol ul,
.m-wysiwyg ul ol,
.m-wysiwyg ol ol {
  padding-left: 20px;
}
.m-wysiwyg ul ul > li,
.m-wysiwyg ol ul > li,
.m-wysiwyg ul ol > li,
.m-wysiwyg ol ol > li {
  margin-bottom: 5px;
}
.m-wysiwyg ul li,
.m-wysiwyg ol li {
  position: relative;
  padding-left: 20px;
  margin: 8px 0 15px 0;
}

@media (min-width: 1024px) {
.m-wysiwyg ul,
.m-wysiwyg ol {
  font-size: 1.125rem;
}
}
/*-----------------------
    Banner
-----------------------*/
.banner {
  background-color: var(--color-teal);
}
.banner__title {
	  color: var(--color-white);
}
.banner__info {
  padding: 34px 0;
}
.banner__image-wrapper {
  display: none;
}
.banner__image {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.banner__text {
  color: var(--color-white);
  font-size: 1.25em;
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 1024px) {
  .banner__info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	padding: 40px 0;
  }
  .banner__image-wrapper {
	  display: block;
    width: 180px;
    max-width: 180px;
    flex: 0 0 180px;
    padding: 0 30px 0 0;
    text-align: left;
  }
  .banner__image {
    display: block;
  }
  .banner__details {
    width: calc(100% - 180px);
    max-width: calc(100% - 180px);
    flex: 0 0 calc(100% - 180px);
  }
  .banner__text {
    max-width: 650px;
  }
}

/*-----------------------
    Categories
-----------------------*/
.categories {
  overflow: hidden;
  margin: 20px 0 0;
}
.categories .btn {
  height: 98px;

}

@media (min-width: 1024px) {
  .categories {
		margin-top: 40px;
	}	
  .categories__list {
		display: flex;
	}
  .categories__category {
    width: calc((100% - 40px)/3);
    max-width: calc((100% - 40px)/3);
    flex: 0 0 calc((100% - 40px)/3);
    margin: 0 20px 40px 0;
  }
  .categories__category:nth-child(3n) {
    margin-right: 0;
  }
  .categories__category .btn {
	  margin-bottom: 0;
  }
 }

/*-----------------------
    CTA
-----------------------*/
.cta {
  padding: 20px;
  border-top: 3px solid var(--color-teal);
  background-color: var(--color-grey);
  margin-bottom: 30px;
}
.cta h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  margin-top: 0;
}
.cta__text {
  font-size: 1em;
  color: #000000;
  margin: 0 0 12px 0;
}

@media (min-width: 1024px) {
.cta {
  margin-bottom: 40px;
}	
  .cta__text {
  font-size: 1.125em;
  margin-bottom: 20px;
  }
}


/*-----------------------
    Table responsive div, added with JS
-----------------------*/
.table-responsive {
  display: block;
  width: 99%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
/*-----------------------
    Tables
-----------------------*/
 table { 
   width: 100%; 
   border-collapse: collapse; 
   margin-bottom: 20px; 
   overflow-x: auto; 
   -webkit-overflow-scrolling: touch; 
 } 
 table td, 
 table th { 
   font-size: 1em; 
   line-height: 1.35; 
   vertical-align: top; 
   padding: 10px; 
 } 
   table td p,
  table th p {
    margin-bottom: 0;
  }
 table caption { 
   font-size: 1.25em; 
   font-weight: 700; 
   text-align: left; 
   padding: 10px 0; 
 } 
 table caption a { 
   color: #7E2A85; 
   text-decoration: underline; 
 } 
table caption a:focus, 
table caption a:hover { 
  color: var(--color-black);
}

@media (min-width: 1024px) {
  table {
    margin-bottom: 40px;
  }
  table td,
  table th {
    font-size: 1.125rem;
    padding: 15px;
  }
  table td p,
  table th p {
    font-size: 1em;
  }
  table caption {
    padding: 15px 0;
  }
}

.microsite-table--outlined tr, .microsite-table--outlined thead tr:last-of-type {
  border-bottom: 1px solid var(--color-black);
}
.microsite-table--outlined tr:last-of-type {
  border-bottom: none;
}
.microsite-table--outlined thead {
  color: var(--color-black);
  font-weight: 700;
  text-align: left;;
}


/*-----------------------
    Buttons
-----------------------*/
.btn {
  display: inline-block;
  position: relative;
  min-width: 180px;
  padding: 9px 0 10px;
  margin: 0 0 20px 0;
  border: 2px solid black;
  transition: background-color 300ms ease, color 300ms ease;
  text-decoration: none;
  line-height: 1.45;
  font-size: 1.25em;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
  font-family: var(--primary-font);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 35px;
}
.btn:focus-visible {
  outline-offset: 1px;
}
.btn-primary {
  border-color: var(--color-teal);
  color: var(--color-bluegrey);
  background-color: var(--color-teal);
  font-weight: 700;
}
.btn-primary:hover,
.btn-primary:active {
  background-color: var(--color-bluegrey);
  color: var(--color-teal);
  border-color: var(--color-teal);
}
.btn-primary .btn__icon {
  position: absolute;
  right: 20px;
    background-image: var(--img-chevron-down-white);
    width: 14px;
    height: 20px;
}
.btn-primary:hover .btn__icon {
	background-image: var(--img-chevron-down-black);
}
.btn-primary[aria-expanded=true] .btn__icon {
  transform: translateY(-50%) rotate(180deg);
}
.btn-secondary {
  border-color: var(--color-teal);
  color: var(--color-teal);
  background-color: var(--color-bluegrey);
  font-weight: 700;
  padding: 20px;
  padding-right: 45px;
}
.btn-secondary .btn__icon {
  position: absolute;
  right: 20px;
  background-image: var(--img-chevron-down-black);
  width: 14px;
  height: 20px;
}
.btn-secondary:hover .btn__icon {
	background-image: var(--img-chevron-down-white);
}
.btn-secondary:hover {
  background-color: var(--color-teal);
  color: var(--color-bluegrey);
  border-color: var(--color-teal);
}
.btn--skip {
    left: 0;
    position: fixed;
    top: auto;
    overflow: hidden;
    opacity: 0;
    transform: scale(0);
    z-index: -999;
    margin: 4px;
    min-width: 265px;
}
.btn--skip:active, .btn--skip:focus {
    left: 0;
    top: 0;
    overflow: auto;
    opacity: 1;
    transform: scale(1);
    z-index: 999;
}
@media (min-width: 1024px) {
  .btn {
    min-width: 265px;
  }
}

/*-----------------------
    Main Footer
-----------------------*/
.main-footer {
  font-size: 1rem;
  background-color: var(--color-black);
}
.main-footer__company {
  padding: 24px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  border-bottom: 1px solid var(--color-grey2);
  margin-bottom: 25px;
}
.main-footer__section {
  width: 100%;
  flex: 0 0 100%;
  margin-bottom: 24px;
}
.main-footer__title {
  font-size: 1rem;
  color: var(--color-grey2);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin: 0 0 8px 0;
}
.main-footer__text {
  font-size: 1em;
  line-height: 1.5;
  color: var(--color-grey2);
  margin: 0;
}
.main-footer__text p {
  font-size: 1em;
  margin-bottom: 0;
}
.main-footer__navigation {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 60px;
}
.main-footer__navigation-item {
  font-size: 1em;
  width: 50%;
  flex: 0 0 50%;
  margin-bottom: 12px;
}
.main-footer__navigation-link,
.main-footer a {
  font-weight: 400;
  line-height: 1;
  text-decoration: underline;
  color: var(--color-grey2);
}
.main-footer__navigation-link:hover,
.main-footer a:hover,
.main-footer__navigation-link a:hover,
.main-footer a a:hover {
  outline: none;
  text-decoration-thickness: 3px;
}
@media (min-width: 1024px) {
  .main-footer {
    font-size: 1.125rem;
    margin-bottom: 0px;
  }
  .main-footer__section {
    width: 50%;
    flex: 0 0 50%;
	margin-bottom: 0;
  }
  .main-footer__company {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .main-footer__navigation {
    padding-bottom: 40px;
    justify-content: flex-start;
  }
  .main-footer__navigation-item {
    margin-bottom: 20px;
    width: 25%;
    flex: 0 0 25%;
  }
}

/*-----------------------
    Sitemap
-----------------------*/
.m-list-tree {
  margin: 1em 0 1em 1em;
}
.m-list-tree ul {
  margin-left: 2em;
  margin-top: 1em;
}
.m-list-tree a {
  color: #7E2A85;
  text-decoration: underline;
}
.m-list-tree a:hover {
  color: black;
}
@media (min-width: 768px) {
  .m-list-tree {
    margin: 1em 0 1em 3em;
  }
}
.m-list-tree > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  margin-bottom: 1em;
}
.m-list-tree > li:last-child {
  border: 0;
  margin-bottom: 0;
}
.m-list-tree > li > ul > li > a {
  font-weight: 600;
}
.m-list-tree > li > a {
  font-size: 20px;
  font-size: 1.25rem;
}
.m-list-tree li li {
  margin-bottom: 1em;
}
/*-----------------------
   Cookie control
/*-----------------------*/
#ccc #ccc-button-holder .ccc-notify-button {
	border-radius: 0;
}
#ccc #ccc-content, #ccc #ccc-notify {
	background-color: var(--color-grey);
}
#ccc #ccc-optional-categories .checkbox-toggle--slider input:checked~.checkbox-toggle-toggle {
	background-color: var(--color-black);
}
#ccc .ccc-tabbable:focus-within, #ccc .checkbox-toggle:focus-within {
    -webkit-box-shadow: 0 0 0 2px #fff;
    box-shadow: 0 0 0 2px #fff;
    outline: #000000 dashed 2px!important;
    outline-offset: 0px;
}

#ccc .checkbox-toggle--slider.checkbox-toggle--light:focus-within {
    box-shadow: 0 0 0 2px #fff !important;
    outline: 3px solid #f2ab3d;
}
#ccc .checkbox-toggle input:checked ~ .checkbox-toggle-toggle:after {
  border: solid var(--color-black) !important;
  border-width: 0 3px 3px 0 !important;
}
#ccc .checkbox-toggle {
  background-color: var(--color-white) !important;
}
#ccc a:hover,
#ccc a:hover span {
  color: #1F53B2 !important;
}
#ccc .ccc-notify-button:hover,
#ccc .ccc-notify-button:hover span {
  color: var(--color-white) !important;
  background: var(--color-black) !important;
}
#ccc #ccc-end .ccc-content--light .ccc-button-solid,
#ccc .ccc-content--light .ccc-button-solid span {
  color: var(--color-white) !important;
}
#ccc .ccc-content--light .ccc-button-solid:hover,
#ccc .ccc-content--light .ccc-button-solid:hover span {
  color: var(--color-black) !important;
  background-color: transparent !important;
}
#ccc-icon.ccc-icon--light {
  fill: var(--color-black) !important;
}
#ccc-icon.ccc-icon--light:focus,
#ccc-icon.ccc-icon--light:hover {
  outline: 0;
  box-shadow: 0 0 !important;
}
#ccc-icon.ccc-icon--light:focus #star,
#ccc-icon.ccc-icon--light:hover #star {
  outline: #64A946 solid 2px !important;
}
#ccc .checkbox-toggle--slider .checkbox-toggle-off {
  opacity: 1 !important;
}
span.checkbox-toggle-off,
span.checkbox-toggle-on {
  color: var(--color-black) !important;
  fill: var(--color-black) !important;
}
@media (min-width: 768px) {
  .checkbox-toggle {
    top: 0 !important;
    right: 15em !important;
  }
}
#ccc .checkbox-toggle--slider input:checked ~ .checkbox-toggle-toggle {
  background-color: var(--color-black);
}
#ccc .checkbox-toggle:focus-within,
#ccc .ccc-tabbable:focus-within {
  box-shadow: 0 0 0 2px var(--color-white);
  outline: var(--color-black) dashed 2px !important;
  outline-offset: 0px;
}
#ccc .checkbox-toggle--slider {
  border-radius: 50px;
  border: 2px solid !important;
}
.m-cookie-banner {
  background-color: var(--color-grey);
  color: var(--color-black);
  display: none;
  padding-bottom: 1em;
  position: relative;
  width: 100%;
}
@media (min-width: 1024px) {
  .m-cookie-banner {
    padding-bottom: 0.35em;
  }
}
.m-cookie-banner p {
  font-size: 1em;
  line-height: 1.5;
  padding: 0.6em 2.5em 0.8em 0;
  margin-bottom: .5em;
}
.m-cookie-banner h2 {
  padding-top: 0.4em;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.45em;
}
@media (min-width: 1024px) {
  .m-cookie-banner h2 {
    padding-top: 0.5em;
  }
}
.m-cookie-banner .btn {
  padding: 0.7em;
  margin: 0 0.7em 0.5em 0;
  min-width: 100px;
  display: inline-block;
}
@media (min-width: 1024px) {
  .m-cookie-banner .btn {
    margin-bottom: 0;
    min-width: 200px;
  }
}
.m-cookie-banner button {
  background-color: var(--color-grey);
  border: 0;
  position: absolute;
  top: 0.7em;
  right: 0.2em;
}
@media (min-width: 768px) {
  .m-cookie-banner button {
    right: 2.5em;
    top: 1em;
  }
}
@media (min-width: 1024px) {
  .m-cookie-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.m-cookie-banner .icon-close {
  background-image: url(data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2221%22%20height%3D%2221%22%20version%3D%221.2%22%20baseProfile%3D%22tiny%22%20viewBox%3D%220%200%2021%2021%22%3E%3Cpath%20d%3D%22M11.7%2010.5M9.3%2010.5%22%2F%3E%3Cpath%20d%3D%22M10.5%2011.8l9.1%209c.4.3.9.3%201.1%200l.1-.1c.3-.4.3-.9%200-1.1l-9.1-9.1%209.1-9c.3-.4.3-.9%200-1.1l-.1-.1c-.4-.3-.9-.3-1.1%200l-9.1%209.1L1.4.3C1.1%200%20.6%200%20.3.3H.2c-.3.3-.3.8%200%201.1l9.1%209-9.1%209.1c-.3.3-.3.8%200%201.1l.1.1c.3.3.8.3%201.1%200%200%20.1%209.1-8.9%209.1-8.9z%22%2F%3E%3C%2Fsvg%3E);
  width: 21px;
  height: 21px;
  cursor: pointer;
}
.m-cookie-banner [class^=icon] {
  background-repeat: no-repeat;
  display: inline-block;
}
.fluid-width-video-wrapper {
    margin-bottom: 1.2em;
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0!important;
    height: 0;
}

.fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.container {
  padding-left: 12px;
  padding-right: 12px;
  margin-left: auto;
  margin-right: auto;
}
.container:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}
@media screen and (min-width: 1024px) {
  .container {
    max-width: 1340px;
    padding-left: 70px;
    padding-right: 70px;
  }
}

