@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 95px;
}

body {
  background-color: #0a3d62;
  overflow-x: hidden;
}

h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

h1 {
  font-size: 18px;
  color: #0a3d62;
  font-weight: 500;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

.bg1 {
  background: #0a3d62 !important;
}

.bg2 {
  background: #3498db !important;
}

/* -------------------------- HEADER -------------------------- */
header {
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 1000;
  -webkit-box-shadow: 0px 0px 10px rgba(46, 46, 46, 0.5);
          box-shadow: 0px 0px 10px rgba(46, 46, 46, 0.5);
}
header .header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}
header .header-content nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
header .header-content nav a {
  text-decoration: none;
  color: #0a3d62;
  font-weight: 400;
}

.header-bild {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}
.header-bild.animation {
  -webkit-animation: 1s zoom forwards;
          animation: 1s zoom forwards;
}

#close-menu,
#open-menu {
  display: none;
  cursor: pointer;
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-decoration: none;
}
.logo img {
  width: 80px;
}

/* -------------------------- CONTAINER -------------------------- */
.container-full {
  padding: 60px 0px;
}
.container-full h2,
.container-full a {
  color: white;
}
.container-full.bg {
  background: #466fa4;
  background: radial-gradient(circle, rgb(70, 111, 164) 0%, #0a3d62 100%);
  color: white;
}
.container-full.bg .title h2,
.container-full.bg .title p {
  color: white;
}
.container-full form label,
.container-full form p,
.container-full form h3 {
  color: black !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container p,
.container a {
  color: white;
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
  color: #0a3d62;
  color: black;
}
.title p {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.flex-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.flex-info .flex-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-align: center;
}
.flex-info .flex-info-item h3 {
  font-size: 38px;
}
.flex-info .flex-info-item p {
  font-size: 16px;
  max-width: 300px;
}
.flex-info .flex-info-item hr {
  width: 100%;
  height: 4px;
  background-color: white;
  border: none;
}

/* -------------------------- HERO -------------------------- */
#main-title {
  color: white;
  gap: 0;
  /* span {
    position: relative;
    &::after {
      content: "";
      width: 100%;
      height: 20px;
      position: absolute;
      bottom: -10px;
      left: 0;
      object-fit: fill;
      background-image: url("../assets/images/underline.png");
      background-size: cover;
      background-repeat: no-repeat;
    }
  } */
}
#main-title img {
  width: 80%;
  margin: 0 auto;
}
#main-title br {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 6.5fr 5.5fr;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.hero img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 400px;
  margin: 0 auto;
}

.hero-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 50px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.hero-text p {
  max-width: 550px;
}
.hero-text li p {
  text-align: start;
}

.hero-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.hero-right p {
  max-width: 400px;
}

.profile {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  margin-bottom: 5px;
}

.list p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.list i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 20px;
  height: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  color: #466fa4;
}

/* -------------------------- FORM -------------------------- */
select {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  color: #71717a;
  background-color: transparent;
  width: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e4e4e7;
  border-radius: calc(0.5rem - 2px);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  z-index: 1;
}
select > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-family: inherit;
  color: currentColor;
}
select > button > svg {
  margin: 0 0 0 auto;
  width: 1.2rem;
  height: 1.2rem;
}
select:has(option:not([hidden]):checked) {
  color: #18181b;
}
select:focus-visible {
  outline: 2px solid #a1a1aa;
  outline-offset: -1px;
}
select::picker-icon {
  display: none;
}
select::picker(select) {
  -webkit-appearance: base-select;
     -moz-appearance: base-select;
          appearance: base-select;
  border: 1px solid #e4e4e7;
  padding: 0.25rem;
  margin-top: 0.25rem;
  border-radius: calc(0.5rem - 2px);
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  cursor: default;
  -webkit-transition: opacity 225ms ease-in-out, -webkit-transform 225ms ease-in-out;
  transition: opacity 225ms ease-in-out, -webkit-transform 225ms ease-in-out;
  transition: opacity 225ms ease-in-out, transform 225ms ease-in-out;
  transition: opacity 225ms ease-in-out, transform 225ms ease-in-out, -webkit-transform 225ms ease-in-out;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@starting-style {
  select::picker(select) {
    -webkit-transform: translateY(-0.25rem) scale(0.95);
            transform: translateY(-0.25rem) scale(0.95);
    opacity: 0;
  }
}
select optgroup label {
  display: block;
  padding: 0.375rem 0.5rem;
}
select option {
  padding: 0.375rem 0.5rem;
  border-radius: calc(0.5rem - 4px);
  outline: none;
}
select option::after {
  content: "";
  width: 1rem;
  height: 1.5rem;
  margin-left: auto;
  opacity: 0;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2318181b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'%3E%3C/path%3E%3C/svg%3E");
}
select option::checkmark {
  display: none;
}
select option:checked {
  background-color: transparent;
}
select option:checked::after {
  opacity: 1;
}
select option:hover, select option:focus-visible {
  background-color: #f4f4f5;
  color: #18181b;
}

optgroup {
  z-index: 10;
}

.choices__list--dropdown .choices__item,
.choices__list[aria-expanded] .choices__item {
  color: black;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 15px;
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
form input,
form textarea,
form .choices {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  font-family: inherit;
  background-color: rgb(240, 240, 240);
}
form .choices {
  padding: 0;
}
form .choices .choices__list--single {
  display: inline-block;
  padding: 6px 16px 4px 4px;
  width: 100%;
}
form .choices .choices__list {
  border-radius: 10px;
}
form .choices .choices__inner {
  background-color: transparent;
  border: none;
  color: black;
}
form .choices .choices__input {
  background-color: transparent;
}
form .checkbox-label {
  display: block;
  font-weight: 400;
}
form .checkbox-label input {
  width: auto;
}
form .checkbox-label a {
  color: #0067ff;
  text-decoration: none;
}
form input[type=submit] {
  background-color: #ffd200;
  color: black;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-animation: 1.2s scale infinite;
          animation: 1.2s scale infinite;
}
form input[type=submit]:hover {
  background-color: #e6c328;
}
form label {
  font-size: 14px;
}
form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
form .form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 7px;
}
form #plattform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
form #plattform label {
  width: 50%;
  padding: 5px 0;
  font-weight: 400;
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  50% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  50% {
    -webkit-transform: scale(0.97);
            transform: scale(0.97);
  }
  100% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
/* -------------------------- SERVICES -------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.services .service {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
  padding: 30px;
  border-radius: 10px;
  background-color: white;
  color: black;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}
.services .service.animation {
  -webkit-animation: 1s zoom forwards;
          animation: 1s zoom forwards;
}
.services .service i {
  font-size: 28px;
  background-color: rgb(70, 111, 164);
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  aspect-ratio: 1/1;
  padding: 12px;
  border-radius: 50%;
}
.services .service p {
  color: inherit;
}

@-webkit-keyframes zoom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* -------------------------- PORTALEN -------------------------- */
.portalen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portalen .portalen-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background-color: white;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  opacity: 0;
}
.portalen .portalen-item.animation {
  -webkit-animation: 1s zoom forwards;
          animation: 1s zoom forwards;
}
.portalen .portalen-item img {
  max-width: 170px;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
}
.portalen .portalen-item p {
  max-width: 1000px;
  color: black;
}

/* .hero-2 {
  display: grid;
  grid-template-columns: auto auto;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 40px;
  img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }
} */
/* -------------------------- STEPS -------------------------- */
.steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: white;
  max-width: 450px;
  margin: 0 auto;
}
.steps hr {
  height: 40px;
  width: 2px;
  background-color: white;
  border: none;
  margin-left: 20px;
}
.steps h3 {
  font-weight: 400;
  font-size: 17px;
}
.steps span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 900;
  font-size: 20px;
  width: 40px;
  aspect-ratio: 1/1;
  padding: 5px;
  border-radius: 50%;
  background-color: white;
  color: #466fa4;
}
.steps .step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-120vw);
            transform: translateX(-120vw);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-120vw);
            transform: translateX(-120vw);
  }
}
.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  content: "";
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 45s linear infinite;
          animation: scroll 45s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 240vw;
}
.slider .slide {
  width: 20vw;
  padding: 10px;
}
.slider .slide .slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  padding: 40px 30px;
  background-color: white;
  border-radius: 10px;
  color: black;
  height: 100%;
}
.slider .slide .slide-item .stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 5px;
  color: rgb(221, 154, 8);
  color: rgb(70, 111, 164);
}
.slider .slide .slide-item hr {
  margin-top: auto;
  height: 2px;
  background-color: #0a3d62;
  border: none;
}

/* -------------------------- FAQ -------------------------- */
.faq-cta {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 60px;
}

.cta-box a {
  display: inline-block;
  text-decoration: none;
  padding: 15px;
  background-color: #466fa4;
  color: white;
  margin-top: 20px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.1);
  -o-border-image: initial;
     border-image: initial;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.cta-box a:hover {
  background-color: #3e6291;
  color: white;
}

.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}
.faq .faq-item {
  border-radius: 20px;
  background-color: white;
  overflow: hidden;
  -webkit-transform: translateY(50px) scale(1.1);
          transform: translateY(50px) scale(1.1);
  opacity: 0;
}
.faq .faq-item b {
  font-weight: 600;
}
.faq .faq-item.animation {
  -webkit-animation: 1s fadeInUp forwards;
          animation: 1s fadeInUp forwards;
}
.faq .faq-item p {
  color: #0a3d62;
}

@-webkit-keyframes fadeInUp {
  from {
    -webkit-transform: translateY(50px) scale(1.1);
            transform: translateY(50px) scale(1.1);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translateY(50px) scale(1.1);
            transform: translateY(50px) scale(1.1);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.accordion {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  background: transparent;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  color: black;
  border: none;
  font-weight: 400;
  text-align: left;
  outline: none;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-family: inherit;
}
.accordion:after {
  content: "+";
  color: black;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.accordion.active:after {
  content: "−";
}

.panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
.panel p {
  padding: 0px 18px;
  padding-bottom: 18px;
  color: black !important;
}

/* -------------------------- LEGAL -------------------------- */
.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  padding: 60px 20px;
  color: white;
  max-width: 1000px;
}
.legal h4 {
  font-size: 16px;
  font-weight: 600;
}
.legal p {
  font-size: 16px;
}
.legal ul {
  margin-left: 40px;
}

/* -------------------------- TIMELINE -------------------------- */
.ag-format-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.ag-timeline-block {
  padding: 300px 0;
}

.ag-timeline_title-box {
  padding: 0 0 30px;
  text-align: center;
}

.ag-timeline_item {
  margin: 0 0 50px;
  position: relative;
}
.ag-timeline_item:nth-child(2n) {
  text-align: right;
}

.ag-timeline {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.ag-timeline_line {
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 2px;
  left: calc(50% + 1px);
  bottom: 0;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.ag-timeline_line-progress {
  width: 100%;
  height: 20%;
  background-color: white;
}

.ag-timeline-card_box {
  padding: 0 0 20px 50%;
}
.ag-timeline_item:nth-child(2n) .ag-timeline-card_box {
  padding: 0 50% 20px 0;
}

.ag-timeline-card_point-box {
  display: inline-block;
  margin: 0 14px 0 -25px;
}
.ag-timeline_item:nth-child(2n) .ag-timeline-card_point-box {
  margin: 0 -25px 0 14px;
}

.ag-timeline-card_point {
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: white;
  text-align: center;
  font-size: 20px;
  color: #466fa4;
  border-radius: 50%;
  font-weight: bold;
}

.ag-timeline-card_item {
  display: inline-block;
  width: 45%;
  margin: -77px 0 0;
  background-color: white;
  opacity: 0;
  border-radius: 10px;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: relative;
  padding: 30px;
}
.ag-timeline-card_item * {
  color: black;
}
.js-ag-active.ag-timeline_item:nth-child(2n+1) .ag-timeline-card_item, .js-ag-active.ag-timeline_item:nth-child(2n) .ag-timeline-card_item {
  opacity: 1;
}

.ag-timeline-card_img {
  width: 60%;
  margin: 0 auto;
}

.ag-timeline-card_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  text-align: start !important;
}

/* -------------------------- FOOTER -------------------------- */
footer {
  background: #ffffff;
  background: radial-gradient(circle, rgb(255, 255, 255) 0%, rgb(231, 246, 255) 100%);
  color: black;
}
footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px;
  padding: 40px 20px;
  padding-bottom: 60px;
  max-width: 1440px;
  margin: 0 auto;
}
footer .footer-content img {
  width: 120px;
}
footer .footer-content .footer-content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #0a3d62;
}
footer .footer-content .footer-content-item h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
footer .footer-content .footer-content-item a {
  color: #0a3d62;
  text-decoration: none;
}
footer .footer-content .footer-content-item p,
footer .footer-content .footer-content-item a {
  margin-bottom: 5px;
  font-size: 14px;
}
footer .copyright {
  background-color: #0a3d62;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-size: 14px;
}
footer .cookie {
  text-align: center;
  padding: 10px 20px;
  font-size: 15px;
}

@media (min-width: 980px) and (max-width: 1161px) {
  .ag-format-container {
    width: 960px;
  }
}
@media only screen and (max-width: 1600px) {
  @-webkit-keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2100px);
              transform: translateX(-2100px);
    }
  }
  @keyframes scroll {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2100px);
              transform: translateX(-2100px);
    }
  }
  .slider .slide-track {
    width: 4200px;
  }
  .slider .slide {
    width: 350px;
  }
  .slider .slide .slide-item {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 992px) {
  h1 {
    font-size: 14px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  form {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  header .header-content nav {
    gap: 20px;
  }
  .hero-right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .hero-right br {
    display: none;
  }
  .hero-right p {
    max-width: 100%;
  }
  .header-bild {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .hero-text {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .hero-text br {
    display: none;
  }
  .hero-text p {
    max-width: 100%;
  }
  .services {
    grid-template-columns: 1fr 1fr;
  }
  .services .service {
    padding: 25px;
  }
  #main-title #line {
    display: none;
  }
  #main-title br {
    display: block;
  }
  #main-title span {
    font-size: 18px;
  }
  form {
    width: 100%;
  }
  .portalen {
    grid-template-columns: 1fr;
  }
  .portalen .portalen-item {
    padding: 20px;
  }
  .ag-timeline_line {
    left: 30px;
  }
  .ag-timeline_item:nth-child(2n) {
    text-align: left;
  }
  .ag-timeline-card_box,
  .ag-timeline_item:nth-child(2n) .ag-timeline-card_box {
    padding: 0 0 20px;
  }
  .ag-timeline-card_point-box,
  .ag-timeline_item:nth-child(2n) .ag-timeline-card_point-box {
    margin: 0 0 0 8px;
  }
  .ag-timeline-card_point {
    height: 40px;
    width: 40px;
    line-height: 40px;
  }
  .ag-timeline-card_item {
    margin: -65px 0 0 75px;
  }
  .ag-timeline-card_item {
    width: auto;
    margin: -65px 0 0 60px;
  }
  .ag-timeline-card_item {
    padding: 20px;
  }
  .whatsapp {
    width: 210px;
    height: auto;
  }
  footer .footer-content {
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  * {
    scroll-margin-top: 65px;
  }
  .container-full {
    padding: 40px 0;
  }
  .legal {
    padding: 40px 20px;
  }
  .title {
    margin-bottom: 40px;
    margin-top: 10px;
  }
  #main-title {
    margin: 60px 0;
  }
  #main-title span {
    font-size: 14px;
  }
  #close-menu,
  #open-menu {
    display: block;
  }
  #close-menu {
    position: absolute;
    top: 30px;
    right: 25px;
  }
  header .header-content nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
    background-color: #0a3d62;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.3s opacity ease;
    transition: 0.3s opacity ease;
  }
  header .header-content nav a {
    font-size: 32px;
    color: white;
    font-weight: 400;
  }
  header .header-content nav.active {
    opacity: 1;
    pointer-events: all;
  }
  .whatsapp {
    width: 250px;
    height: auto;
  }
  .logo img {
    width: 50px;
    height: auto;
  }
  .ag-format-container {
    width: 96%;
  }
  .ag-timeline-card_img {
    height: auto;
    width: auto;
  }
  .faq-cta {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cta-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .container-full {
    padding: 20px 0;
  }
  .legal {
    padding: 20px;
  }
  .title {
    margin-bottom: 40px;
  }
  .services {
    grid-template-columns: 1fr;
  }
  form .form-row {
    grid-template-columns: 1fr;
  }
  .ag-timeline_title {
    font-size: 60px;
  }
  .ag-timeline-card_info {
    padding: 10px 15px;
  }
  .ag-timeline-card_desc {
    font-size: 14px;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-container::before {
    left: 60px;
    border: medium solid #fff;
    border-width: 10px 10px 10px 0;
    border-color: transparent #fff transparent transparent;
  }
  .left::after,
  .right::after {
    left: 14px;
  }
  .right {
    left: 0%;
  }
}
@media only screen and (max-width: 350px) {
  h3 {
    font-size: 18px;
  }
  .ag-timeline-card_item {
    padding: 5px;
  }
  .whatsapp {
    width: 200px;
    height: auto;
  }
}/*# sourceMappingURL=styles.css.map */