/**
 * @file
 * Styles rules
 *
 * Theme styles rules.
 */

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  height: 100%;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  line-height: 1.5rem;
  scroll-padding-top: 150px !important;
}
html, body {
  position: relative;
  font-family: "filson-pro", sans-serif;
  font-style: normal;
  color: var(--color-neutral--dark-grey);
  background-color: var(--color-neutral--5);
}
body {
  overflow-x: hidden;
}
body.js-active {
  overflow: hidden;
}

/**
 * Image
 */

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


/**
 * Text
 */

p, h1, h2, h3, h4 {
  position: relative;
}
h1 {
  font-size: var(--heading-size-l);
}
h2 {
  font-size: var(--heading-size-m);
  line-height: 160%;
}
h3 {
  font-size: var(--heading-size-s);
}
h4 {
  font-size: var(--heading-size-xs);
}
p {
  font-size: var(--content-size);
}


::selection {
  background-color: var(--color-brand--orange);
  color: var(--color-neutral--white);
}


/**
 * Links
 */

a {
  color: var(--color-brand--1);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.toolbar a {
  font-family: "Source Sans Pro","Lucida Grande",Verdana,sans-serif;
  font-weight: normal;
}

/**
 * List
 */

ul {
  padding: 0;
  list-style: inside;
}
li {
  margin: 0.5rem 0;
}
.main__content li {
  margin: 0.5rem 0;
  position: relative;
  padding-left: 13px;
}
li::marker {
  color: var(--color-brand--dark-orange-2);
  content: none;
}
.main__content li::before {
  content: '';
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-brand--dark-orange-2);
}
.main__content ul li ul li {
  padding-left: 20px;
}
.main__content ul li ul li::before {
  content: '-';
  display: block;
  position: absolute;
  top: 0;
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 0;
  background-color: transparent;
}

.green-mission-item__text li::before {
  top: 7px;
  width: 6px;
  height: 6px;
}
/**
 * Table
 */

table {
  border-collapse: collapse;
  width: 100%;
}
table td,
table th {
  border: 1px solid #636464;
  padding: 8px;
}
table tr:first-child td {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  font-weight: 700;
}


/**
 * Page tabs
 */

.page-tab {
  position: absolute;
  top: 1.5rem;
  left: 0;
  right: 0;
}
.page-tab__svg-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: middle;
  overflow: hidden;
}
.page-tab__svg-wrapper--mobile {
  width: 200px;
  padding-bottom: 64px;
  transform: translateY(-7px);
}
.page-tab__svg-wrapper--desktop {
  width: 240px;
  padding-bottom: 80px;
}
.page-tab__svg {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}
.page-tab__svg-wrapper--desktop {
  display: none;
}
@media all and (min-width: 1000px) {
  .page-tab {
    top: 1rem;
  }
  .page-tab__svg-wrapper--mobile {
    width: 270px;
    padding-bottom: 80px;
    transform: none;
  }
}
@media all and (min-width: 1200px) {
  .page-tab__svg-wrapper--mobile {
    display: none;
  }
  .page-tab__svg-wrapper--desktop {
    display: inline-block;
    width: 290px;
  }
}


/**
 * Underline Pills
 */

h1 strong,
h2 strong {
  position: relative;
  z-index: 0;
  color: var(--color-brand--dark-orange-2);
  word-break: keep-all;
  font-weight: 700;
}
h1 strong::after,
h2 strong::after {
  display: block;
  content: "";
  position: absolute;
  height: 25px;
  background-color: var(--color-brand--light-orange-2);
  top: 40%;
  left: -5px;
  right: -5px;
  z-index: -1;
  border-radius: 12px;
}
h1 strong::after {
  height: 25px;
}
h2 strong::after {
  height: 20px;
}
@media all and (min-width: 1000px) {
  h1 strong::after,
  h2 strong::after {
    top: 50%;
  }
  h2 strong::after {
    height: 25px;
  }
}

.rse-main h1 strong::after ,
.rse-main h2 strong::after {
  content: none;
}
/**
 * Slider Nav global style
 */

.tns-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  gap: 4px;
}
.tns-nav button {
  all: unset;
  width: 100%;
  max-width: 8px;
  height: 8px;
  border: none;
  background-color: var(--color-brand--light-orange-1);
  border-radius: 50%;
  transition: all .50s cubic-bezier(.475,.425,0,.995);
}
.tns-nav button.tns-nav-active {
  max-width: 34px;
  background-color: var(--color-brand--orange);
  border-radius: 100px;
}

/**
 * Onetrust Button
 */

#ot-sdk-btn.ot-sdk-show-settings {
  color: var(--color-neutral--white) !important;
  border: none !important;
}
#ot-sdk-btn.ot-sdk-show-settings:hover {
  background-color: var(--color-brand--dark-orange) !important;
}


/**
 * Onetrust content
 */
#ot-sdk-cookie-policy-v2 {
  width: 100%!important;
  padding: 0!important;
}


