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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-229 {
      /* changes on tablet */
      padding: 0 1rem;
      position: relative;
      z-index: 1;
      /* prevents overflow from the lines extending past the screen width */
      overflow: hidden;
    }
    #hero-229 .cs-picture {
      /* Background Image */
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
    }
    #hero-229 .cs-picture:before {
      /* Black Color Overlay */
      content: '';
      width: 100%;
      height: 100%;
      background: none;
      opacity: 0.6;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 1;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
    }
    #hero-229 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    #hero-229 .cs-container {
      width: 100%;
      max-width: 80rem;
      /* we put the padding top and bottom on the container instead of #Hero so the pseudo element lines go to the top and bottom of the section */
      /* 144px - 280px - leaving extra space for the navigation */
      /* changes on tablet */
      padding: clamp(9rem, 25.95vw, 17.5rem) 0;
      margin: auto;
      position: relative;
    }
    /*#hero-229 .cs-container:before {
      /* Left Line 
      content: '';
      width: 1px;
      height: 100%;
      background: -moz-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%);
      /* FF3.6-15 
      background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%);
      /* Chrome10-25,Safari5.1-6 
      opacity: 1; 
      position: absolute;
      display: block;
      top: 0;
      left: 0;
    }*/
    #hero-229 .cs-flex-group {
      /* 60px - 220px */
      margin-bottom: clamp(3.75rem, 15.5vw, 13.75rem);
      margin: auto;
      width: 80vw;
      /* 464px - 562px */
      max-width: clamp(29rem, 60vw, 35.125rem);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-wrap: wrap;
      column-gap: 1.25rem;
      box-sizing: border-box;
    }
    #hero-229 .cs-topper {
      /* 13px - 16px */
      font-size: clamp(0.8125rem, 1.6vw, 1rem);
      line-height: 1.2em;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.1rem;
      font-weight: 700;
      color: var(--primaryLight);
      margin-bottom: 1rem;
      display: block;
    }
    #hero-229 .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 900;
      line-height: 1.2em;
      text-align: center;
      width: 100%;
      /* 32px - 40px */
      margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
      color: var(--bodyTextColorWhite);
      position: relative;
    }
    #hero-229 .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 1.95vw, 1.25rem);
      line-height: 1.5em;
      text-align: center;
      width: 100%;
      /* 32px - 40px */
      margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
      /* 40px - 48px */
      margin-bottom: clamp(2.5rem, 4vw, 3rem);
      color: var(--bodyTextColorWhite);
    }
    #hero-229 .cs-button-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* 16px - 20px */
      gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #hero-229 .cs-button {
      min-width: 12.3125rem;
    }
    #hero-229 .cs-button-solid {
      font-size: 1rem;
      font-weight: 700;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-align: center;
      text-decoration: none;
      margin: 0;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      padding: 0 3rem;
      background-color: var(--primary);
      overflow: hidden;
      color: #fff;
      border: none;
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    #hero-229 .cs-button-solid:before {
      content: "";
      width: 0;
      height: 100%;
      background: #000;
      opacity: 1;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #hero-229 .cs-button-solid:hover {
      color: #fff;
    }
    #hero-229 .cs-button-solid:hover:before {
      width: 100%;
    }
    #hero-229 .cs-button-transparent {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      width: 11.25rem;
      /* 46px - 56px */
      height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      margin: 0;
      color: #fff;
      padding: 0;
      background-color: transparent;
      border: 1px solid var(--bodyTextColorWhite);
      box-sizing: border-box;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    #hero-229 .cs-button-transparent:before {
      content: '';
      position: absolute;
      display: block;
      background: #000;
      opacity: 1;
      /* so it sits on top of the border */
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      z-index: -1;
      transform-origin: left;
      /* this is what creates the grow affect on hover */
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    #hero-229 .cs-button-transparent:hover:before {
      transform: scaleX(1);
    }
    #hero-229 .cs-button-transparent .cs-img {
      display: block;
      margin-right: 0.75rem;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #hero-229 {
      /* 32px - 40px */
      padding: 0 clamp(2rem, 5vw, 2.5rem);
    }
    #hero-229 .cs-container:after {
      /* Right Line */
      content: '';
      width: 1px;
      height: 100%;
      background: -moz-linear-gradient(top, rgba(250, 251, 252, 0) 0%, rgba(250, 251, 252, 0.5) 100%);
      /* FF3.6-15 */
      background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0) 0%, rgba(250, 251, 252, 0.5) 100%);
      /* Chrome10-25,Safari5.1-6 */
      opacity: 1;
      position: absolute;
      display: none;
      top: 0;
      right: 0;
    }
    #hero-229 .cs-button-group {
      flex-direction: row;
    }
  }
 
  /*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-861 {
        padding: var(--sectionPadding);
    }
    #pricing-861 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 31.25rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #pricing-861 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #pricing-861 .cs-title {
        max-width: 25ch;
    }
    #pricing-861 .cs-text {
        max-width: 56.25rem;
    }
    #pricing-861 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 1.8vw, 1.25rem);
    }
    #pricing-861 .cs-item {
        list-style: none;
        width: 100%;
        margin: 0;
        /* 20px - 32px left & right */
        /* 20px - 32px bottom */
        padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
        /* prevent padding from affecting height and width */
        box-sizing: border-box;
        background-color: #fff;
        border: 1px solid #f4f4f4;
        /* clips corners */
        overflow: hidden;
        border-radius: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        grid-column: span 12;
    }
    #pricing-861 .cs-item.cs-popular .cs-background {
        background-color: #1a1a1a;
    }
    #pricing-861 .cs-item.cs-popular .cs-background img {
        opacity: 1;
    }
    #pricing-861 .cs-item.cs-popular .cs-package {
        color: var(--primary);
    }
    #pricing-861 .cs-item.cs-popular .cs-price,
    #pricing-861 .cs-item.cs-popular .cs-desc {
        color: var(--bodyTextColorWhite);
    }
    #pricing-861 .cs-item.cs-popular .cs-desc {
        opacity: 0.8;
    }
    #pricing-861 .cs-top {
        padding: 2.5rem 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        z-index: 1;
    }
    #pricing-861 .cs-background {
        background-color: #fef7f4;
        position: absolute;
        top: 0;
        bottom: 0;
        /* same as cs-item padding left and right */
        left: -2rem;
        right: -2rem;
        z-index: -1;
    }
    #pricing-861 .cs-background img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        opacity: 0;
    }
    #pricing-861 .cs-package {
        font-size: 1rem;
        line-height: 1.2em;
        text-align: center;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        font-weight: 700;
        width: 100%;
        margin: 0;
        color: #767676;
        display: block;
    }
    #pricing-861 .cs-price {
        /* 39px - 49px */
        font-size: clamp(2.4375rem, 5vw, 3.0625rem);
        line-height: 1.2em;
        text-align: center;
        font-weight: 900;
        margin: 0;
        color: var(--headerColor);
        display: block;
        /* so it's even with the bottom of the cs-desc */
        transform: translateY(0.5625rem);
    }
    #pricing-861 .cs-desc {
        font-size: 1rem;
        line-height: 1.2em;
        text-align: center;
        margin: 0 0 0 0.5rem;
        color: var(--bodyTextColor);
        opacity: 0.8;
        display: block;
    }
    #pricing-861 .cs-ul {
        /* 24px - 40px */
        margin: clamp(1.5rem, 4vw, 2.5rem) 0 2rem 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #pricing-861 .cs-li {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        list-style: none;
        line-height: 1.2em;
        width: 100%;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: space-between;
        /* push everything to the top so if the li goes to two lines the icon stays at the top */
        align-items: flex-start;
        gap: 1rem;
    }
    #pricing-861 .cs-li.cs-disabled {
        opacity: 0.4;
        filter: grayscale(1);
    }
    #pricing-861 .cs-icon {
        width: 1.125rem;
        height: auto;
        display: block;
    }
    #pricing-861 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #pricing-861 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #pricing-861 .cs-button-solid:hover:before {
        width: 100%;
    }
    #pricing-861 .cs-price-button {
        /* pushes up against the cs-ul so if there's loess li's in the list, the button always pushes itself to the bottom */
        margin-top: auto;
        width: 100%;
        border-radius: 0;
    }
    #pricing-861 .cs-price-button:before {
        border-radius: 0;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pricing-861 .cs-container {
        max-width: 80rem;
    }
    #pricing-861 .cs-item {
        grid-column: span 6;
    }
    #pricing-861 .cs-item.cs-popular {
        grid-column: span 12;
        order: -1;
    }
}
/* Tablet - 900px */
@media only screen and (min-width: 59.375rem) {
    #pricing-861 .cs-item {
        grid-column: span 4;
    }
    #pricing-861 .cs-item.cs-popular {
        grid-column: span 4;
        order: initial;
    }
}

#pricing-861 .cs-title,
#pricing-861 .cs-text,
#pricing-861 .cs-topper {
    text-shadow: none;
}

/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #meet-team-1141 {
        padding: var(--sectionPadding);
        overflow: hidden;
    }
    #meet-team-1141 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #meet-team-1141 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
         
    }
    #meet-team-1141 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
         
  margin-top: 0 !important;
  padding-top: 0.5rem !important;  
    }



    #meet-team-1141 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
         margin-top: 0.1rem;
    }
    #meet-team-1141 .cs-title {
        max-width: 20ch;
    }
    #meet-team-1141 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #meet-team-1141 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #meet-team-1141 .cs-button-solid:hover:before {
        width: 100%;
    }
    #meet-team-1141 .cs-button-solid {
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #meet-team-1141 .cs-card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* 16px - 20px */
        gap: clamp(1rem, 2.3vw, 1.25rem);
        position: relative;
    }
    #meet-team-1141 .cs-item {
        list-style: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }
    #meet-team-1141 .cs-item:hover .cs-picture:before,
    #meet-team-1141 .cs-item:hover .cs-picture:after {
        opacity: 1;
    }
    #meet-team-1141 .cs-item:hover .cs-picture img {
        transform: scale(1.1);
    }
    #meet-team-1141 .cs-item:hover .cs-info {
        background-color: var(--primary);
    }
    #meet-team-1141 .cs-item:hover .cs-name {
        color: var(--secondary);
    }
    #meet-team-1141 .cs-item:hover .cs-job {
        color: var(--bodyTextColorWhite);
    }
    #meet-team-1141 .cs-picture {
        width: 100%;
        height: auto;
        margin: 0 0 0.5rem 0;
        /* removed at tablet */
        aspect-ratio: 0.80589681;
        border-radius: 1rem;
        /* clips the img corners */
        /* clips img tag from overflowing it on hover */
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 1;
    }
    #meet-team-1141 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
        object-position: top;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: transform 0.7s;
    }
    #meet-team-1141 .cs-info {
        width: 90%;
        margin: -2.625rem 0 0;
        padding: 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        border-radius: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 10;
        transition: background-color 0.3s;
    }
    #meet-team-1141 .cs-name {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
        display: block;
        transition: color 0.3s;
    }
    #meet-team-1141 .cs-job {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin-right: 0;
        color: var(--bodyTextColor);
        display: block;
        transition: color 0.3s;
    }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
    #meet-team-1141 .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: stretch;
    }
    #meet-team-1141 .cs-item {
        width: 100%;
    }
    #meet-team-1141 .cs-picture {
        height: 25.4375rem;
        /* remove the aspect ratio so the height can be squished */
        aspect-ratio: initial;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 56.25rem) {
    #meet-team-1141 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #meet-team-1141 .cs-content {
        text-align: left;
        width: 55%;
        flex-direction: column;
        align-items: flex-start;
    }
    #meet-team-1141 .cs-card-group {
        justify-content: center;
        flex-wrap: nowrap;
    }
    #meet-team-1141 .cs-item {
        width: 100%;
    }
}
                                /*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #meet-team-1704 {
    padding: var(--sectionPadding);
    overflow: hidden;
  }
  #meet-team-1704 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #meet-team-1704 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #meet-team-1704 .cs-card-group {
    width: 100%;
    max-width: 56.9375rem;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    column-gap: clamp(1rem, 2vw, 1.5rem);
    row-gap: clamp(1.5rem, 3vw, 2.5rem);
  }
  #meet-team-1704 .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    grid-column: span 12;
    flex-direction: column;
    align-items: flex-start;
  }
  #meet-team-1704 .cs-item:hover .cs-picture img {
    transform: scale(1.1);
  }
  #meet-team-1704 .cs-item:hover .cs-name {
    color: var(--primary);
  }
  #meet-team-1704 .cs-job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 0.5rem 0;
    color: var(--bodyTextColor);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
  }
  #meet-team-1704 .cs-job:before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    position: relative;
    display: block;
  }
  #meet-team-1704 .cs-picture {
    width: 100%;
    /* 300px - 380px */
    height: clamp(18.75rem, 70vw, 23.75rem);
    margin: 0;
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #meet-team-1704 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
    object-position: top;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
  }
  #meet-team-1704 .cs-info {
    width: 100%;
    padding: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #meet-team-1704 .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 1rem 0 0 0;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s;
  }
  #meet-team-1704 .cs-social {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #meet-team-1704 .cs-link-icon {
    width: 1rem;
    height: auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #meet-team-1704 .cs-container {
    max-width: 80rem;
  }
  #meet-team-1704 .cs-item {
    grid-column: span 4;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #meet-team-1704 .cs-container {
    flex-direction: row;
    align-items: flex-start;
  }
  #meet-team-1704 .cs-card-group {
    width: 65vw;
    flex: none;
  }
}
@media (max-width: 768px) {
  #grundarna-682 .cs-container {
    display: flex !important;
    flex-direction: column !important;
  }

  #grundarna-682 .cs-image-group {
    order: 2;
  }

  #grundarna-682 .cs-content {
    order: 1;
  }
}
@media (max-width: 768px) {
  #meet-team-1141 .cs-container {
    display: flex;
    flex-direction: column;
  }

  #meet-team-1141 .cs-content {
    order: 1;
  }

  #meet-team-1141 .cs-card-group {
    order: 2;
  }
}
