@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
  outline: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li {
  line-height: 1;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  appearance: none;
  border-radius: 0;
  margin: 0;
}

picture {
  line-height: 0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: #fff;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 17px;
}

a {
  text-decoration: none;
  transition: all 0.4s;
  color: #000;
  /*&:hover {
  	color: $brown;
  }*/
}

strong {
  font-weight: 600;
}

.button {
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
}
.button.primary {
  background-color: #249338;
  color: #fff;
}
.button.primary:hover {
  background-color: #0e551b;
}
.button.secondary {
  border-color: #249338;
}

.meta {
  font-size: 13px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.meta .category {
  color: #249338;
  text-transform: uppercase;
  font-weight: 700;
}

.key {
  border-left: 1px solid #d7ebe2;
  padding-left: 10px;
  color: #249338;
}
.key svg {
  width: 17px;
  height: 8px;
}

.star {
  color: #c6c6c6;
  margin-right: 4px;
}
.star.filled {
  color: #249338;
}
.star svg {
  width: 10px;
  height: 9px;
}

.stars {
  margin-top: 20px;
}
.stars .star svg {
  width: 16px;
  height: 16px;
}

.extra {
  line-height: 1.3;
}
.extra a {
  display: block;
  margin-bottom: 16px;
  color: #6f6f6e;
}
.extra a:before {
  content: "Læs også: ";
  color: #249338;
  font-weight: 600;
}
.extra a:hover {
  text-decoration: underline;
}

.content-slider ul {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  touch-action: pan-x;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
}
.content-slider ul a, .content-slider ul svg, .content-slider ul img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
}
.content-slider ul.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}
.content-slider ul::-webkit-scrollbar {
  display: none;
}
.content-slider ul li {
  padding: 10px;
  position: relative;
  flex: 0 0 25%;
  scroll-snap-align: none;
}
.content-slider ul li:nth-child(4n+1) {
  scroll-snap-align: start;
}
.content-slider ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  bottom: 26px;
  background-color: #d7ebe2;
}
.content-slider ul li.is-first:before {
  display: none !important;
}
.content-slider ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background-color: #d7ebe2;
}
.content-slider ul li a {
  display: block;
  margin-bottom: 26px;
  padding: 0 26px;
  -webkit-user-select: none;
  user-select: none;
}
.content-slider .above {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  margin-bottom: 12px;
}
.content-slider .above.no-title {
  position: absolute;
  z-index: 1;
  margin-bottom: 0;
}
.content-slider .small-pager {
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.content-slider .small-pager button {
  border: 1px solid #d7ebe2;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  width: 26px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.content-slider .small-pager button svg {
  width: 14px;
  height: 14px;
}
@media screen and (max-width: 960px) {
  .content-slider .small-pager {
    display: none;
  }
  .content-slider ul li {
    flex: 0 0 75%;
    scroll-snap-align: start;
  }
  .content-slider ul li:nth-child(4n+1) {
    scroll-snap-align: start;
  }
  .content-slider ul li:after {
    left: 12px;
    right: 12px;
  }
  .content-slider ul li:before {
    display: none;
  }
  .content-slider ul li a {
    padding: 0 20px;
  }
  .content-slider ul.is-grid {
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    grid-auto-columns: 50%;
    row-gap: 26px;
  }
  .content-slider ul.is-grid li:before {
    display: block;
  }
  .content-slider ul.is-grid li.is-first + li:before {
    display: none;
  }
}

.pager {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
  margin-bottom: 50px;
  border-bottom: 1px solid #d7ebe2;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.pager .current, .pager .page, .pager .fill {
  font-size: 15px;
  font-weight: 600;
  color: #6f6f6e;
}
.pager .current:hover, .pager .page:hover {
  text-decoration: underline;
}
.pager .current {
  color: #249338;
}
.pager .prev, .pager .next {
  border: 1px solid #d7ebe2;
  border-radius: 6px;
  padding: 0;
  cursor: pointer;
  background-color: #fff;
  width: 26px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.pager .prev svg, .pager .next svg {
  width: 14px;
  height: 14px;
}
.pager .prev.disabled, .pager .next.disabled {
  color: #6F6F6E;
}
.pager .prev {
  transform: rotate(180deg);
}

:root {
  --container-padding: 0px;
  --container-width: 1300px;
  --wide-container-width: 1728px;
  --narrow-container-width: 852px;
}
@media screen and (max-width: 960px) {
  :root {
    --container-padding: 20px;
  }
}

@media screen and (max-width: 960px) {
  .hide-mobile {
    display: none !important;
  }
}

.only-mobile {
  display: none;
}
@media screen and (max-width: 960px) {
  .only-mobile {
    display: block !important;
  }
}

.article-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 30px;
}

.section-title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}

.module-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

h2 {
  font-weight: 600;
  line-height: 1.2;
}

h3 {
  font-weight: 600;
  line-height: 1.2;
}

.ad .bg {
  background-color: #e2ece3;
  padding: 32px 0;
}
.ad.header-wide {
  text-align: center;
}
.ad.header-wide .container {
  padding: 0 var(--container-padding);
  max-width: var(--wide-container-width);
  margin: 0 auto;
  position: relative;
}
.ad.header-wide .prefix {
  top: -12px;
}
.ad.content-full {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.ad.content-full .bg {
  border-radius: 10px;
}
.ad.content-full .prefix {
  top: 12px;
  left: 16px;
}
@media screen and (max-width: 960px) {
  .ad.content-full {
    padding: 32px var(--container-padding);
  }
  .ad.content-full .prefix {
    position: unset;
    top: unset;
    left: unset;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    margin-bottom: 16px;
  }
}
.ad.content-advertorial {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
.ad.content-advertorial .bg {
  border-radius: 10px;
  padding: 66px 56px;
}
.ad.content-advertorial a {
  display: flex;
  align-items: center;
  gap: 60px;
}
.ad.content-advertorial h3 {
  font-size: 35px;
  margin-bottom: 16px;
}
.ad.content-advertorial p {
  line-height: 1.4;
}
.ad.content-advertorial img {
  border-radius: 10px;
}
.ad.content-advertorial .prefix {
  top: 12px;
  left: 16px;
}
@media screen and (max-width: 960px) {
  .ad.content-advertorial .bg {
    padding: 20px 16px;
  }
  .ad.content-advertorial a {
    flex-direction: column;
    gap: 20px;
  }
  .ad.content-advertorial h3 {
    font-size: 30px;
  }
  .ad.content-advertorial .prefix {
    position: unset;
    top: unset;
    left: unset;
    margin-bottom: 16px;
  }
}
.ad.content-portrait .bg {
  border-radius: 10px;
  padding: 40px;
  position: relative;
}
.ad.content-portrait .prefix {
  top: 12px;
  left: 16px;
}
.ad .prefix {
  position: absolute;
  color: #249338;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  text-align: left;
}

header {
  position: relative;
}
header .container {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  header .container {
    padding-top: 38px;
    padding-bottom: 32px;
  }
}
header .container:after {
  content: "";
  position: absolute;
  height: 1px;
  left: var(--container-padding);
  right: var(--container-padding);
  bottom: 0;
  background-color: #d7ebe2;
}
header #site-logo {
  line-height: 0;
}
@media screen and (max-width: 960px) {
  header #site-logo {
    flex-grow: 1;
  }
  header #site-logo img {
    max-width: 180px;
  }
}
header #site-menu {
  font-size: 18px;
  font-weight: 700;
  flex-grow: 1;
}
header #site-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
header #site-menu a:hover {
  color: #249338;
}
@media screen and (max-width: 960px) {
  header #site-menu {
    display: none;
  }
}
header #subscription-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-right: 16px;
}
header #triggers {
  display: flex;
  align-items: center;
  gap: 15px;
}
header #triggers span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  cursor: pointer;
}
header #triggers span svg {
  width: 20px;
  height: 20px;
}
header #search-wrapper {
  position: absolute;
  background-color: #fff;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
}
header #search-wrapper.toggled {
  z-index: 2;
}
header #search-wrapper form {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  height: 100%;
}
header #search-wrapper form input {
  height: 45px;
  border: 1px solid #d7ebe2;
  border-radius: 10px;
  padding: 0 10px;
  outline: none;
  width: 100%;
}
header #search-wrapper form button {
  font-size: 35px;
  font-weight: 100;
}

.recent-articles {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  padding-top: 26px;
  margin-bottom: 52px;
}
@media screen and (max-width: 960px) {
  .recent-articles {
    margin-bottom: 40px;
  }
}
.recent-articles ul li .title {
  font-weight: 700;
  line-height: 1.25;
}
.recent-articles ul a:hover h2, .recent-articles ul a:hover h3, .recent-articles ul a:hover .title {
  text-decoration: underline;
}

.hero {
  --gap: 50px;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}
.hero a {
  display: block;
}
.hero a:hover h2, .hero a:hover h3, .hero a:hover .title {
  text-decoration: underline;
}
.hero .image {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.hero .image img {
  visibility: hidden;
}
.hero .image .partner {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 10px 0;
  padding: 24px 28px;
}
.hero .image .partner.stby {
  background-color: #5f8cc9;
}
.hero .image .partner img {
  visibility: unset;
  aspect-ratio: unset;
}
.hero .top-story {
  flex-basis: 65.3846153846%;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 40px;
}
.hero .top-story .breaking {
  background-color: #fae843;
  padding: 60px 60px 40px;
  border-radius: 10px;
}
.hero .top-story img {
  aspect-ratio: 850/606;
}
.hero .top-story .meta {
  margin-top: 36px;
}
.hero .top-story h2 {
  font-size: 35px;
}
.hero .side-stories {
  flex-basis: 30.7692307692%;
  display: flex;
  flex-direction: column;
  gap: 56px;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 40px;
}
.hero .side-stories img {
  aspect-ratio: 400/248;
}
.hero .side-stories .meta {
  margin-top: 20px;
}
.hero .side-stories h2 {
  font-size: 18px;
}
@media screen and (max-width: 960px) {
  .hero {
    flex-direction: column;
    gap: 40px;
  }
  .hero .top-story {
    flex-basis: 100%;
  }
  .hero .top-story .breaking {
    padding: 30px 30px 20px;
  }
  .hero .side-stories {
    flex-basis: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: unset;
    border-bottom: none;
    padding-bottom: 0;
  }
  .hero .side-stories .story {
    flex-basis: 47.1074380165%;
    border-bottom: 1px solid #d7ebe2;
    padding-bottom: 40px;
  }
  .hero .side-stories .meta {
    margin-bottom: 6px;
  }
  .hero .side-stories h2 {
    font-size: 17px;
    line-height: 1;
  }
}

.recent-jobs {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  padding-top: 26px;
  margin-bottom: 52px;
}
@media screen and (max-width: 960px) {
  .recent-jobs {
    margin-bottom: 40px;
  }
}
.recent-jobs ul img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}
.recent-jobs ul li .title {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.recent-jobs ul li .expiry {
  font-size: 13px;
}
.recent-jobs ul li a:hover h2, .recent-jobs ul li a:hover h3, .recent-jobs ul li a:hover .title {
  text-decoration: underline;
}
.recent-jobs .only-mobile .small-pager {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.most-read {
  --gap: 50px;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.most-read a {
  display: block;
}
.most-read .image {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.most-read .image img {
  visibility: hidden;
}
.most-read .top-stories {
  flex-basis: 65.3846153846%;
  padding: 26px 54px;
  background-color: #e2ece3;
  border-radius: 10px;
}
.most-read .top-stories h3 {
  font-size: 30px;
  margin-bottom: 20px;
}
.most-read .top-stories ol {
  font-size: 18px;
  font-weight: 600;
}
.most-read .top-stories ol li {
  counter-increment: topCounter;
  display: flex;
  margin-bottom: 16px;
  line-height: 1.2;
}
.most-read .top-stories ol li:before {
  content: counter(topCounter) " ";
  min-width: 35px;
}
.most-read .top-stories ol li .key {
  border-color: #249338;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  height: 16px;
}
.most-read .top-stories ol li a:hover {
  text-decoration: underline;
}
.most-read .side-stories {
  flex-basis: 30.7692307692%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 40px;
}
.most-read .side-stories img {
  aspect-ratio: 172/152;
}
.most-read .side-stories .image {
  min-width: 172px;
  max-width: 172px;
}
.most-read .side-stories .story {
  display: flex;
  align-items: center;
  gap: 26px;
}
.most-read .side-stories h2 {
  font-size: 18px;
}
.most-read .side-stories a:hover h2, .most-read .side-stories a:hover h3, .most-read .side-stories a:hover .title {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  .most-read {
    flex-direction: column;
    gap: 40px;
  }
  .most-read .top-stories {
    flex-basis: 100%;
    padding: 26px 24px;
  }
  .most-read .top-stories h3 {
    font-size: 18px;
  }
  .most-read .top-stories ol {
    font-size: 17px;
  }
  .most-read .side-stories {
    flex-basis: 100%;
  }
  .most-read .side-stories h3 {
    font-size: 17px;
  }
}

.article-grid {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
.article-grid .items {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 40px;
  column-gap: 50px;
}
.article-grid .items h2 {
  font-size: 18px;
  margin-bottom: 5px;
}
.article-grid a {
  display: block;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 40px;
}
.article-grid a:hover h2, .article-grid a:hover h3, .article-grid a:hover .title {
  text-decoration: underline;
}
.article-grid .image {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.article-grid .image img {
  visibility: hidden;
}
.article-grid .meta {
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .article-grid .items {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}

.reviews {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
.reviews .items {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 40px;
  column-gap: 50px;
}
.reviews .items h2 {
  font-size: 18px;
  margin-bottom: 5px;
}
.reviews a {
  display: flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 40px;
}
.reviews a:hover h2, .reviews a:hover h3, .reviews a:hover .title {
  text-decoration: underline;
}
.reviews .image {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  flex-basis: 172px;
  min-width: 172px;
  max-width: 172px;
}
.reviews .image img {
  visibility: hidden;
  aspect-ratio: 1;
}
@media screen and (max-width: 960px) {
  .reviews .items {
    display: flex;
    flex-direction: column;
  }
  .reviews .items h2 {
    font-size: 17px;
  }
}

.two-articles-plus-ad {
  --gap: 50px;
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
.two-articles-plus-ad .items {
  display: flex;
  justify-content: space-between;
}
.two-articles-plus-ad a {
  display: block;
}
.two-articles-plus-ad a:hover h2, .two-articles-plus-ad a:hover h3, .two-articles-plus-ad a:hover .title {
  text-decoration: underline;
}
.two-articles-plus-ad .stories {
  flex-basis: 65.3846153846%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.two-articles-plus-ad .stories img {
  aspect-ratio: 394/270;
}
.two-articles-plus-ad .stories .image {
  border-radius: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  flex-basis: 50%;
}
.two-articles-plus-ad .stories .image img {
  visibility: hidden;
}
.two-articles-plus-ad .stories h2 {
  font-size: 18px;
  margin-bottom: 20px;
}
.two-articles-plus-ad .stories p {
  line-height: 1.3;
  margin-bottom: 30px;
}
.two-articles-plus-ad .stories .story {
  display: flex;
  gap: 50px;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 40px;
}
.two-articles-plus-ad .stories .story .body {
  flex-basis: 50%;
}
@media screen and (max-width: 960px) {
  .two-articles-plus-ad .items {
    flex-direction: column;
  }
  .two-articles-plus-ad .stories {
    margin-bottom: 40px;
  }
  .two-articles-plus-ad .stories .story {
    flex-direction: column;
    gap: 30px;
  }
}

.newsletter-form {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  margin-bottom: 50px;
}
.newsletter-form .bg {
  background-color: #e2ece3;
  border-radius: 10px;
  padding: 56px;
  display: flex;
  align-items: center;
  gap: 90px;
}
.newsletter-form .body {
  max-width: 310px;
}
.newsletter-form .body h2 {
  margin-bottom: 16px;
}
.newsletter-form .body p {
  line-height: 1.3;
}
.newsletter-form .form .mc4wp-form-fields {
  display: flex;
  align-items: center;
  gap: 14px;
}
.newsletter-form .form input[type=text], .newsletter-form .form input[type=email] {
  background-color: #fff;
  border-radius: 10px;
  border: none;
  outline: none;
  height: 50px;
  padding: 0 20px;
  max-width: 185px;
}
.newsletter-form .form input[type=submit] {
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 0 24px;
}
.newsletter-form .form input[type=submit].primary {
  background-color: #249338;
  color: #fff;
}
.newsletter-form .form input[type=submit].primary:hover {
  background-color: #0e551b;
}
.newsletter-form .form input[type=submit].secondary {
  border-color: #249338;
}
.newsletter-form .form input[type=submit] {
  background-color: #249338;
  color: #fff;
  height: 50px;
  width: 175px;
}
.newsletter-form .form label {
  display: none;
}
.newsletter-form .form .below {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.3;
  color: #6f6f6e;
}
@media screen and (max-width: 960px) {
  .newsletter-form .bg {
    flex-direction: column;
    padding: 48px 32px;
    gap: 30px;
  }
  .newsletter-form .form .mc4wp-form-fields {
    flex-direction: column;
    align-items: unset;
  }
  .newsletter-form .form .mc4wp-form-fields p {
    text-align: right;
  }
  .newsletter-form .form input[type=text], .newsletter-form .form input[type=email] {
    max-width: 100%;
    width: 100%;
  }
}

.footer-content {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  gap: 50px;
}
.footer-content .column {
  flex-basis: 33%;
}
.footer-content .column .column-header {
  height: 90px;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 36px;
}
.footer-content .column .column-header.stby {
  background-color: #5f8cc9;
}
.footer-content .column .column-header.stby img {
  max-width: 220px;
}
.footer-content .column .column-header.dta {
  background-color: #000;
}
.footer-content .column .column-header.takeoff {
  background-color: #185c89;
}
.footer-content .column .column-header.takeoff img {
  max-width: 220px;
}
.footer-content .column ul {
  max-width: 368px;
}
.footer-content .column ul li {
  margin-bottom: 16px;
  line-height: 1.2;
}
.footer-content .column ul li a {
  font-weight: 600;
}
.footer-content .column ul li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

footer {
  background-color: #2e2e2e;
  padding: 70px 0;
  color: #dedede;
  font-size: 14px;
  margin-top: 50px;
}
footer .container {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}
footer .column.col1 {
  max-width: 350px;
}
footer .column.col2 {
  max-width: 275px;
}
footer .column.col4 {
  max-width: 175px;
}
footer .column.col4 img {
  max-width: 175px;
}
footer .media {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .media svg {
  color: #fff;
  width: 20px;
  height: 20px;
}
footer .media svg.yt {
  width: 26px;
}
footer p {
  line-height: 1.6;
  margin-bottom: 26px;
}
footer p:last-child {
  margin-bottom: 0;
}
footer p a {
  color: inherit;
  display: block;
}
footer p a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  footer .container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }
  footer .column {
    max-width: none !important;
  }
  footer .media {
    justify-content: center;
  }
}

.article {
  padding: 0 var(--container-padding);
  max-width: var(--narrow-container-width);
  margin: 0 auto;
  position: relative;
  padding-top: 50px;
  border-bottom: 1px solid #d7ebe2;
  padding-bottom: 45px;
  margin-bottom: 50px;
}
.article .meta {
  margin-bottom: 30px;
}
.article .subhead {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 40px;
}
.article figure img {
  border-radius: 10px;
}
.article figure figcaption {
  color: #6f6f6e;
  line-height: 1.4;
  margin-top: 10px;
}
.article .byline {
  border-top: 1px solid #d7ebe2;
  border-bottom: 1px solid #d7ebe2;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  margin: 40px 0;
}
.article .byline img {
  border-radius: 10px;
  width: 50px;
  height: 50px;
}
.article .byline a {
  color: #249338;
}
.article .byline .author {
  flex-grow: 1;
}
.article .body {
  line-height: 1.4;
}
.article .body p {
  margin-bottom: 20px;
}
.article .body h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.article .body blockquote {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  margin: 100px auto;
  position: relative;
}
.article .body blockquote p {
  max-width: 530px;
  margin: 0 auto;
  padding-left: 30px;
}
.article .body blockquote p:first-child:before {
  content: "";
  mask: url(/assets/quote.svg) no-repeat 50% 50%;
  mask-size: contain;
  width: 100px;
  height: 100px;
  background-color: #249338;
  position: absolute;
  left: 60px;
  top: -70px;
}
.article .factbox {
  border-radius: 10px;
  background-color: #e2ece3;
  height: 240px;
  padding: 45px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease-in-out;
  margin-bottom: 45px;
}
.article .factbox.toggled {
  height: auto;
}
.article .factbox.toggled .fade {
  background: none;
}
.article .factbox.toggled .fade svg {
  transform: rotate(-90deg);
}
.article .factbox .fade {
  background: linear-gradient(180deg, rgba(226, 236, 227, 0) 0%, #e2ece3 100%);
  position: absolute;
  bottom: 0;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
}
.article .factbox .fade button {
  width: 25px;
  height: 25px;
  background-color: transparent;
  border: 1px solid #6F6F6E;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  position: absolute;
  bottom: 25px;
}
.article .factbox .fade svg {
  width: 14px;
  height: 14px;
  transform: rotate(90deg);
  transition: all 0.4s ease-in-out;
}
.article .factbox .title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
}
.article .factbox p {
  line-height: 1.4;
}
.article .share {
  display: flex;
  align-items: center;
  gap: 15px;
}
.article .share strong {
  padding-right: 10px;
}
.article .share svg {
  width: 20px;
  height: 20px;
  color: #000;
}
@media screen and (max-width: 960px) {
  .article .byline {
    gap: 10px;
    font-size: 13px;
    padding: 10px 0;
  }
  .article .byline img {
    width: 40px;
    height: 40px;
  }
  .article .byline .author a {
    display: block;
    white-space: nowrap;
  }
  .article .byline .date span {
    display: block;
  }
  .article .body blockquote {
    margin: 50px 0;
  }
  .article .body blockquote p {
    padding-left: 0;
  }
  .article .body blockquote p:first-child:before {
    width: 50px;
    height: 50px;
    left: -10px;
    top: -40px;
  }
}

.jobs {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
  padding-top: 26px;
  margin-bottom: 52px;
}
.jobs ul {
  display: flex;
  flex-wrap: wrap;
  row-gap: 26px;
}
.jobs ul li {
  padding: 10px;
  position: relative;
  flex: 0 0 33%;
}
.jobs ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  bottom: 26px;
  background-color: #d7ebe2;
}
.jobs ul li:nth-child(4n):before, .jobs ul li:first-child:before {
  display: none !important;
}
.jobs ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background-color: #d7ebe2;
}
.jobs ul li img {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}
.jobs ul li .title {
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 12px;
}
.jobs ul li p {
  line-height: 1.3;
  margin-bottom: 20px;
}
.jobs ul li .expiry {
  font-size: 13px;
}
.jobs ul li a {
  display: block;
  margin-bottom: 26px;
  padding: 0 26px;
}
.jobs ul li a:hover h2, .jobs ul li a:hover h3, .jobs ul li a:hover .title {
  text-decoration: underline;
}
@media screen and (max-width: 960px) {
  .jobs {
    margin-bottom: 40px;
  }
  .jobs ul {
    flex-direction: column;
  }
  .jobs ul li {
    flex-basis: 100%;
    border-bottom: 1px solid #d7ebe2;
  }
  .jobs ul li:before, .jobs ul li:after {
    display: none;
  }
  .jobs ul li a {
    padding: 0;
  }
}

.jobheader {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: space-between;
  margin-bottom: 30px;
}
.jobheader div {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
}
.jobheader div span {
  padding: 16px 26px;
  border-right: 1px solid #d7ebe2;
}
.jobheader div span:last-child {
  border-right: none;
}
@media screen and (max-width: 960px) {
  .jobheader {
    flex-wrap: wrap;
  }
  .jobheader img {
    order: 1;
  }
  .jobheader .button {
    order: 2;
  }
  .jobheader div {
    order: 3;
    flex-basis: 100%;
  }
  .jobheader div span {
    padding: 10px 20px;
    white-space: nowrap;
  }
}

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