/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */

@media only screen and (min-width: 0rem) {
    #hero-670 {
        position: relative;
    }
    #hero-670 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #hero-670 .cs-content {
        text-align: center;
        width: 100%;
        max-width: 32.625rem;
        padding: clamp(7.5rem, 20.82vw, 18.75rem) 1rem 0;
        padding-bottom: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #hero-670 .cs-title {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 20ch;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #hero-670 .cs-color {
        color: var(--primary);
    }
    #hero-670 .cs-text {
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0 0 clamp(2rem, 5vw, 2.5rem) 0;
        color: var(--bodyTextColor);
    }
    #hero-670 .cs-button-solid {
      font-size: 1rem;
      font-weight: 700;
      line-height: 3.5rem;     
      padding: 0 3rem;        
      border-radius: 1.875rem;
      background: var(--primary);
      color: var(--bodyTextColorWhite);
      text-decoration: none;
      display: inline-block;
      border: 1px solid transparent;
      box-sizing: border-box;
      transition: background-color 0.25s, color 0.25s, border-color 0.25s;
    }
    #hero-670 .cs-button-solid:hover {
      background-color: var(--accentcolor);
      border-color: var(--accentcolor);
      color: var(--bodyTextColor);
    }
    #hero-670 .cs-background {
      width: 100%;
      aspect-ratio: 16 / 9;
      max-height: 31.25rem;
      display: block;
      position: relative;
    }
    #hero-670 .cs-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 65rem) {
    #hero-670 {
        padding: clamp(5rem, 12vw, 10rem) 1rem
        clamp(3.125rem, 8vw, 7.5rem);
        position: relative;
    }
    #hero-670 .cs-container {
        flex-direction: row;
        justify-content: flex-start;
    }
    #hero-670 .cs-content {
        text-align: left;
        width: 45%;
        padding: 0;
        align-items: flex-start;
    }
    #hero-670 .cs-background {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        transform: translateX(0);
        width: 800px;
        max-width: 50%;
        height: 100%;
        max-height: none;
    }
    #hero-670 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        inset: 0;
    }
}

/*========================================
=        Undersides-navigering           =
========================================*/

#subnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: linear-gradient(
    to top right,
    var(--secondary) 20%,
    var(--primary) 70%
  );
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem;
}
#subnav .subnav-wrapper {
  width: 100%;
  overflow: hidden;
}
#subnav .subnav-track {
  display: flex;
  transition: transform 0.3s ease;
}
#subnav .subnav-track.no-animate {
  transition: none !important;
}
#subnav .nav-arrow:disabled {
  cursor: default;
  opacity: 0.3 !important;
}
#subnav .subnav-link {
  flex: 0 0 auto;
  padding: 0.75rem 1rem;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.85;
  transition: 0.2s ease;
  text-align: center;
}
#subnav .subnav-link:hover {
  opacity: 1;
}
#subnav .subnav-link.active {
  color: var(--accentcolor);
  opacity: 1;
  font-weight: 600;
  position: relative;
}
#subnav .subnav-link.active::after {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--accentcolor);
  left: 0;
  bottom: -2px;
  border-radius: 2px;
  transition: all 0.3s ease;
}
#subnav .nav-arrow {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0.6;
  transition: 0.2s ease;
}
#subnav .nav-arrow svg {
  width: 20px;
  height: 20px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
}

@media (min-width: 40.625rem) {
  #subnav .subnav-wrapper {
    overflow: visible;
  }
  #subnav .subnav-track {
    transform: none !important;
    justify-content: center;
  }
  #subnav .nav-arrow {
    display: none !important;
  }
}

@media (max-width: 40.625rem) {
  #subnav .nav-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #subnav .subnav-track {
    justify-content: flex-start !important;
  }
  #subnav .subnav-link {
    flex: 0 0 50%;
    white-space: normal;
    padding: 0.75rem 0.3rem 0.75rem 0;
    font-size: 0.87rem;
  }
  #subnav .subnav-link.active::after {
    content: none;
  }
  #subnav .subnav-wrapper {
    width: 100%;
    max-width: none;
  }
}

/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #content-1638 {
    padding: var(--sectionPadding);
    padding-bottom: 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
  }
  #content-1638 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 100px */
    gap: clamp(3rem, 9vw, 6.25rem);
  }
  #content-1638 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #content-1638 .cs-flex {
    max-width: 38rem;
  }
  #content-1638 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #content-1638 .cs-text {
    margin-bottom: 1rem;
  }
  #content-1638 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) and (max-width: 64rem) {
  #content-1638 .cs-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  #content-1638 .cs-flex {
    width: 100%;
    max-width: 48rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #content-1638 .cs-title,
  #content-1638 .cs-h3,
  #content-1638 .cs-text {
    margin-left: auto;
    margin-right: auto;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 65rem) {
  #content-1638 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    gap: 2.5rem;
  }
  #content-1638 .cs-flex {
    width: 50%;
    max-width: 38rem;
    text-align: left;
  }
  #content-1638 .cs-topper,
  #content-1638 .cs-title,
  #content-1638 .cs-h3,
  #content-1638 .cs-text {
    text-align: left;
  }
}

/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-1586 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #sbs-1586 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2.5rem, 6vw, 4rem);
  }
  #sbs-1586 .cs-picture {
    width: 100%;
    display: block;
    position: relative;
    order: -1;
  }
  #sbs-1586 .cs-picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  #sbs-1586 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    justify-content: center;
  }
  #sbs-1586 .cs-title {
    /* 26 characters wide including spaces */
    max-width: 26ch;
    margin: 0;
  }
  #sbs-1586 .cs-card-group {
    width: 100%;
    /* 550px - 630px */
    max-width: clamp(34.375rem, 50vw, 39.375rem);
    padding: 0;
    /* 24px - 40px */
    margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
    display: grid;
    align-items: stretch;
    gap: clamp(1rem, 4vw, 2.5rem);
  }
  #sbs-1586 .cs-item {
    list-style: none;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1586 .wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.625rem;
  }
  #sbs-1586 .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1586 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-1586 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #sbs-1586 .cs-ul {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-1586 .cs-li {
    font-size: var(--bodyFontSize);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 0.5rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-1586 .cs-container {
    max-width: 80rem;
    flex-direction: column;
    align-items: center;
  }
  #sbs-1586 .cs-picture {
    margin: 0 auto;
    width: 80%;
    max-width: 80%;
  }
  #sbs-1586 .cs-picture img {
    object-fit: contain;
  }
  #sbs-1586 .cs-content {
    width: 90%;
    max-width: none;
    align-items: center;
  } 
  #sbs-1586 .cs-card-group {
    grid-template-columns: repeat(12, 1fr);
    max-width: 100%;
    width: 100%;
  }
  #sbs-1586 .cs-item {
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64.9rem) {
  #sbs-1586 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #sbs-1586 .cs-content {
    width: 50%;
    max-width: 39.375rem;
    flex: none;
    padding: 5.25rem 0;
    align-self: center;
  }
  #sbs-1586 .cs-picture {
    width: 50%;
    height: auto;
    min-height: 26rem;
    max-height: none;
    order: -1;
  }
}                          

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-697 {
    padding: var(--sectionPadding);
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
    position: relative;
    z-index: 1;
  }
  #cta-697 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  #cta-697 .cs-title {
    color: var(--bodyTextColorWhite);
    margin: 0;
  }
  #cta-697 .cs-text {
    margin: 0;
    max-width: 52ch;
    line-height: 1.6;
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #cta-697 .cs-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #cta-697 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 1.875rem;
    background: var(--bodyTextColorWhite);
    color: var(--secondary);
    text-decoration: none;
    display: inline-block;
  }
  #cta-697 .cs-button-outline {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border-radius: 1.875rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--bodyTextColorWhite);
    text-decoration: none;
    display: inline-block;
  }
  #cta-697 .cs-button-solid,
  #cta-697 .cs-button-outline {
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
    line-height: 3rem;
    padding: 0 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  #cta-697 .cs-button-solid:hover,
  #cta-697 .cs-button-outline:hover {
    background-color: var(--accentcolor);
    border-color: var(--accentcolor);
    color: var(--bodyTextColor);
  }
  #cta-697 .cs-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 65rem) {
  #cta-697 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
  #cta-697 .cs-text-group {
    flex: 1;
    max-width: 60ch;
    align-items: flex-start;
  }
  #cta-697 .cs-actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
  }
  #cta-697 .cs-button-solid,
  #cta-697 .cs-button-outline {
    font-size: 1rem;
    line-height: 3.75rem;
    padding: 0 2.25rem;
    font-weight: 700;
  }
}                                                     
                                