@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("./fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

:root {
  /* Färg */
  --primary: #013458;
  --secondary: #b8b8b0;
  --headerColorWhite: #ffffff;
  --headerColorDark: #1a1a1a;
  --bodyTextColorWhite: #ffffff;
  --bodyTextColorDark: #1a1a1a;

  /* Font */
  --primaryFont: "Poppins";
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;

  /* Padding */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--primaryFont), sans-serif;
}

html {
  scroll-behavior: smooth;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.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;
}

.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(--bodyTextColorWhite);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

.cs-button,
.cs-button-solid,
.cs-button-group,
.cs-form,
.cs-input,
.cs-label,
.cs-textarea {
  font-family: "Poppins", sans-serif;
}

#hero-1948,
#contact-307 {
  scroll-margin-top: 120px;
}
#services-1948 {
  scroll-margin-top: 170px;
}
#gallery-453 {
  scroll-margin-top: 55px;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation {
    width: 100%;
    padding: 0 1rem;
    background-color: var(--secondary);
    position: fixed;
    z-index: 10000;
    box-sizing: border-box;
    transition: background-color 0.4s ease-in-out;
  }
  #cs-navigation.transparent {
    background-color: rgba(184, 184, 176, 0.85);
    transition: background-color 0.3s ease;
    backdrop-filter: blur(8px);
  }
  #cs-navigation.cs-active {
    background-color: var(--secondary);
  }
  #cs-navigation.cs-active:after {
    height: 150vh;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }
  #cs-navigation .cs-container {
    display: flex;
    max-width: 100%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
  }
  #cs-navigation .cs-logo {
    width: auto;
    height: 7rem;
    margin-left: 0;
    margin-right: auto;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    max-height: 8rem;
    max-width: 10rem;
    object-fit: contain;
    margin: 0;
    padding: 0;
  }
  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 0 0 auto;
    background-color: #80807b;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.6s;
    position: relative;
    z-index: 10;
  }
  #cs-navigation .cs-toggle.cs-active {
    transform: rotate(180deg);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    width: clamp(1.5rem, 2vw, 1.75rem);
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--bodyTextColorWhite);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 2.4em;
    opacity: 0;
    background-color: var(--bodyTextColorWhite);
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
  }
  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    width: 100%;
    text-align: center;
    list-style: none;
    margin-right: 0;
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform 0.6s, opacity 0.9s;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    line-height: 1.2em;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColorDark);
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    width: 100%;
    padding: 0.7rem;
    background-color: var(--secondary);
    position: fixed;
    z-index: 10000;
    box-sizing: border-box;
    transition: background-color 0.4s ease-in-out;
  }
  #cs-navigation.transparent {
    background-color: rgba(184, 184, 176, 0.85);
    transition: background-color 0.3s ease;
    backdrop-filter: blur(8px);
  }
  #cs-navigation .cs-container {
    width: 100%;
    height: 6.3125rem;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    width: auto;
    height: 10rem;
    margin: 0;
    margin-top: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #cs-navigation .cs-ul-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 2.5rem 0;
    flex: none;
  }
  #cs-navigation .cs-ul .cs-li:last-child {
    display: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    margin: 0;
    padding: 0 1rem;
    color: var(--bodyTextColorWhite);
    display: block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:before {
    content: "";
    width: 100%;
    height: 2.5rem;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, -50%) scale(1.2);
    transition: opacity 0.3s, transform 0.3s;
  }
  #cs-navigation .cs-li-link:hover:before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  #cs-navigation .cs-li-link.cs-active:before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  #cs-navigation .cs-button-solid {
    font-size: 1rem;
    font-weight: 500;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    width: 10rem;
    padding: 0 1.5rem;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-button-solid:hover {
    background-color: #01345853;
    color: var(--bodyTextColorWhite);
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1948 {
    padding: var(--sectionPadding);
    padding-top: clamp(10rem, 20vw, 12.5rem);
    background-color: var(--primary);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1948 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-1948 .cs-content {
    text-align: center;
    width: 100%;
    margin-bottom: clamp(2.5rem, 5vw, 3.25rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-1948 .cs-flex {
    flex: none;
  }
  #hero-1948 .cs-title {
    font-size: clamp(1.83rem, 5.2vw, 3.25rem);
    color: var(--headerColorWhite);
  }
  #hero-1948 .cs-text {
    margin-bottom: 1.25rem;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #hero-1948 .cs-button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #hero-1948 .cs-button-solid {
    font-size: 1rem;
    font-weight: 500;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: 12rem;
    padding: 0 1.5rem;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--secondary);
    color: var(--bodyTextColorDark);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s, background-color 0.3s;
  }
  #hero-1948 .cs-button-solid:hover {
    background-color: #b8b8b02a;
    color: var(--bodyTextColorWhite);
  }
  #hero-1948 .cs-picture {
    width: 100%;
    height: clamp(17.5rem, 58.6vw, 31.875rem);
    margin-bottom: clamp(1rem, 2vw, 1.25rem);
    display: block;
    position: relative;
  }
  #hero-1948 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2.5rem;
    position: absolute;
  }
  #hero-1948 .cs-title-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    font-size: var(--headerFontSize);
    color: var(--headerColorWhite);
    text-align: center;
    margin: 4rem 0;
    width: 100%;
  }
  #hero-1948 .cs-title-services::before,
  #hero-1948 .cs-title-services::after {
    content: "";
    flex: 1;
    height: 4px;
    background-color: var(--secondary);
    max-width: 20px;
  }
  #hero-1948 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #hero-1948 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: clamp(1.5rem, 3vw, 2rem);
    background-color: var(--secondary);
    border-radius: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-column: span 12;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #hero-1948 .cs-item:hover {
    border-color: var(--primary);
  }
  #hero-1948 .cs-item:hover .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  #hero-1948 .cs-item:hover .cs-icon {
    transform: rotateY(360deg);
  }
  #hero-1948 .cs-icon-picture {
    margin-bottom: 1.25rem;
    perspective: 700px;
    transform-style: preserve-3d;
  }
  #hero-1948 .cs-icon {
    width: 2.5rem;
    height: auto;
    display: block;
    transition: transform 0.5s;
  }
  #hero-1948 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    text-align: inherit;
    font-weight: 600;
    margin: 0;
    margin-bottom: 0.75rem;
    color: var(--bodyTextColorDark);
    transition: color 0.3s;
  }
  #hero-1948 .cs-item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorDark);
  }
}
@media (max-width: 40rem) {
  #hero-1948 .cs-title {
    text-align: left;
  }
  #hero-1948 .cs-text {
    text-align: left;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1948 .cs-text {
    font-size: 1.25rem;
  }
  #hero-1948 .cs-title-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    font-size: var(--headerFontSize);
    color: var(--headerColorWhite);
    text-align: center;
    margin: 4rem 0;
    width: 100%;
  }
  #hero-1948 .cs-title-services::before,
  #hero-1948 .cs-title-services::after {
    content: "";
    flex: 1;
    height: 4px;
    background-color: var(--secondary);
    max-width: 50px;
  }
  #hero-1948 .cs-button-group {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #hero-1948 .cs-item {
    text-align: left;
    margin: 0;
    align-items: flex-start;
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1948 .cs-content {
    display: flex;
    flex-direction: column;
  }
  #hero-1948 .cs-title {
    max-width: 46.875rem;
  }
  #hero-1948 .cs-title-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    font-size: var(--headerFontSize);
    color: var(--headerColorWhite);
    text-align: center;
    margin: 4rem 0;
    width: 100%;
  }
  #hero-1948 .cs-title-services::before,
  #hero-1948 .cs-title-services::after {
    content: "";
    flex: 1;
    height: 4px;
    background-color: var(--secondary);
    max-width: 50px;
  }
  #hero-1948 .cs-item {
    grid-column: span 3;
  }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-1948 .cs-title {
    margin: 0;
  }
  #hero-1948 .cs-container {
    flex-direction: column;
  }
  #hero-1948 .cs-content {
    text-align: left;
    max-width: 80rem;
    gap: 1.25rem;
    flex-direction: row;
    align-items: flex-start;
  }
  #hero-1948 .cs-button-group {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #hero-1948 .cs-flex {
    width: 50%;
    max-width: 39.375rem;
  }
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-453 {
    text-align: center;
    padding: var(--sectionPadding);
    background: var(--primary);
  }
  #gallery-453 .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #gallery-453 .cs-content {
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #gallery-453 .cs-topper {
    color: var(--headerColorWhite);
  }
  #gallery-453 .cs-button-group {
    width: 100%;
    max-width: 37.5rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.3rem;
    column-gap: 0.8rem;
  }
  #gallery-453 .cs-button {
    font-size: 1rem;
    line-height: 1.5em;
    padding: 0 0 0 1rem;
    color: var(--bodyTextColorWhite);
    background-color: transparent;
    border: none;
    position: relative;
    transition: color 0.3s;
  }
  #gallery-453 .cs-button:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--bodyTextColorWhite);
    opacity: 0;
    pointer-events: none;
    position: absolute;
    display: block;
    top: 50%;
    left: -1.25rem;
    transform: translateY(-50%);
    transition: opacity 0.3s, left 0.3s;
  }
  #gallery-453 .cs-button:hover {
    color: var(--bodyTextColorWhite);
    cursor: pointer;
  }
  #gallery-453 .cs-button:hover:before {
    left: 0;
    opacity: 1;
  }
  #gallery-453 .cs-button.cs-active {
    font-weight: 500;
    color: var(--bodyTextColorWhite);
  }
  #gallery-453 .cs-button.cs-active:before {
    left: 0;
    opacity: 1;
  }
  #gallery-453 .cs-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #gallery-453 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    margin-bottom: clamp(3rem, 3vw, 4rem);
    opacity: 1;
    visibility: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    left: 0;
    gap: clamp(1rem, 1vw, 1.25rem);
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s,
      left 0.3s;
    transform-origin: left top;
  }
  #gallery-453 .cs-gallery.cs-hidden {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transform: scaleY(0) scaleX(0);
  }
  #gallery-453 .cs-gallery.cs-hidden .cs-image {
    transform: translateY(2.1875rem);
    opacity: 0;
  }
  #gallery-453 .cs-image {
    border-radius: 0.25rem;
    width: clamp(47%, 42.5vw, 48.5%);
    aspect-ratio: 0.72985782;
    overflow: hidden;
    display: block;
    position: relative;
    transform: translateY(0rem);
    opacity: 1;
    transition: opacity 0.6s, transform 0.6s;
  }
  #gallery-453 .cs-image:nth-of-type(1) {
    transition-delay: 0.15s;
  }
  #gallery-453 .cs-image:nth-of-type(2) {
    transition-delay: 0.3s;
  }
  #gallery-453 .cs-image:nth-of-type(3) {
    transition-delay: 0.45s;
  }
  #gallery-453 .cs-image:nth-of-type(4) {
    transition-delay: 0.6s;
  }
  #gallery-453 .cs-image:nth-of-type(5) {
    transition-delay: 0.75s;
  }
  #gallery-453 .cs-image:nth-of-type(6) {
    transition-delay: 0.9s;
  }
  #gallery-453 .cs-image:nth-of-type(7) {
    transition-delay: 1.05s;
  }
  #gallery-453 .cs-image:nth-of-type(8) {
    transition-delay: 1.2s;
  }
  #gallery-453 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 48rem) {
  #gallery-453 .cs-container {
    max-width: 80rem;
  }
  #gallery-453 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #gallery-453 .cs-flex {
    width: 50%;
  }
  #gallery-453 .cs-title {
    margin: 0;
  }
  #gallery-453 .cs-button-group {
    width: auto;
  }
  #gallery-453 .cs-gallery {
    justify-content: space-between;
  }
  #gallery-453 .cs-image {
    width: clamp(10.6875rem, 23.3%, 19.0625rem);
    aspect-ratio: 0.71529412;
  }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-307 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #contact-307 .cs-container {
    width: 100%;
    max-width: 34.375em;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2.5rem;
  }
  #contact-307 .cs-content {
    text-align: left;
  }
  #contact-307 .cs-topper {
    color: var(--bodyTextColorDark);
  }
  #contact-307 .cs-title {
    color: var(--headerColorWhite);
  }
  #contact-307 .cs-text {
    color: var(--bodyTextColorDark);
    margin-bottom: clamp(3rem, 6vw, 4rem);
  }
  #contact-307 .cs-ul {
    padding: 0;
    margin: 0;
    display: flex;
    font-weight: 500;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }
  #contact-307 .cs-li {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #contact-307 .cs-icon {
    width: 1.5rem;
    height: auto;
    margin-right: 0.75rem;
    display: block;
  }
  #contact-307 .cs-link {
    font-size: 1rem;
    color: var(--bodyTextColorDark);
    text-decoration: none;
    transition: color 0.3s;
  }
  #contact-307 .cs-link:hover {
    color: #1a1a1a48;
  }
  #contact-307 .cs-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
  }
  #contact-307 .cs-label {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    width: 100%;
    color: var(--bodyTextColorDark);
    font-weight: 500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #contact-307 .cs-input {
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    padding: 0;
    padding-left: 1.5rem;
    border-radius: 0.5rem;
    color: var(--bodyTextColorDark);
    background: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: none;
    box-sizing: border-box;
  }
  #contact-307 .cs-input::placeholder {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #contact-307 .cs-textarea {
    resize: vertical;
    min-height: 7.5rem;
    max-height: 15rem;
    padding-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: inherit;
  }
  #contact-307 .cs-input:focus,
  #contact-307 .cs-textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
  }
  #contact-307 .cs-button-solid {
    font-size: 1rem;
    font-weight: 500;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 0 1.5rem;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--primary);
    color: var(--bodyTextColorWhite);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
    border: none;
  }
  #contact-307 .cs-button-solid:hover {
    background-color: #38688a;
    color: var(--bodyTextColorWhite);
    cursor: pointer;
  }
  #contact-307 .cs-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
  #contact-307 .cs-background:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: 0.92;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #contact-307 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-307 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: center;
    gap: 4.75rem;
  }
  #contact-307 .cs-content {
    width: 50%;
    max-width: 29.0625rem;
    flex: none;
  }
  #contact-307 .cs-form {
    max-width: 32.625rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #contact-307 .cs-email,
  #contact-307 .cs-phone {
    width: 48%;
  }
  #contact-307 .cs-button-solid {
    width: 12rem;
  }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer-1154 {
    padding: 1rem;
    position: relative;
    background: var(--primary);
    z-index: 1;
  }
  #footer-1154 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #footer-1154 .cs-top {
    width: 100%;
    margin-bottom: clamp(1rem, 4vw, 1rem);
    padding-bottom: clamp(2rem, 4vw, 1rem);
    border-bottom: 1px solid var(--bodyTextColorWhite);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  #footer-1154 .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 0.5rem;
    column-gap: clamp(1.75rem, 4vw, 2.5rem);
  }
  #footer-1154 .cs-li {
    list-style: none;
  }
  #footer-1154 .cs-link {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: block;
    transition: color 0.3s;
  }
  #footer-1154 .cs-link:hover {
    color: #ffffff49;
  }
  #footer-1154 .cs-logo {
    width: 8rem;
    height: auto;
    display: block;
  }
  #footer-1154 .cs-logo-img {
    width: 100%;
    height: auto;
    display: block;
  }
  #footer-1154 .cs-bottom {
    width: 100%;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    color: var(--bodyTextColorWhite);
  }
  #footer-1154 .cs-copyright {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    display: block;
  }
  #footer-1154 .webbcentralen,
  #footer-1154 .webbcentralen:link,
  #footer-1154 .webbcentralen:visited,
  #footer-1154 .webbcentralen:active,
  #footer-1154 .webbcentralen:focus {
    color: #52c0ff;
    transition: 0.3s ease;
    text-decoration: none;
  }
  #footer-1154 .webbcentralen:hover {
    color: #fbc251;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #footer-1154 {
    padding: 0 2rem;
  }
  #footer-1154 .cs-top {
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0 0;
  }
  #footer-1154 .cs-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/*------------------------------------------->
<---            Integritetspolicy         --->
<-------------------------------------------*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-1582 {
    background: var(--primary);
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    padding-top: 12rem;
  }
  #faq-1582 .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 5vw, 4rem);
    position: relative;
  }
  #faq-1582 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #faq-1582 .cs-topper {
    color: var(--headerColorWhite);
  }
  #faq-1582 .cs-title {
    margin: 0;
  }
  #faq-1582 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #faq-1582 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    padding: clamp(1.25rem, 2.3vw, 2rem);
    background-color: var(--secondary);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    grid-column: span 12;
    position: relative;
    z-index: 1;
  }
  #faq-1582 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 600;
    margin: 0 0 1rem 0;
    color: var(--headerColorDark);
    transition: color 0.3s;
  }
  #faq-1582 .cs-item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColorDark);
    transition: color 0.3s;
  }
  #faq-1582 .cs-item-text a {
    text-decoration: none;
    font-weight: 600;
    color: var(--bodyTextColorDark);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #faq-1582 .cs-container {
    max-width: 80rem;
  }
  #faq-1582 .cs-item {
    grid-column: span 6;
  }
}
