@charset "UTF-8";
/* lilita-one-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Lilita One";
  font-style: normal;
  font-weight: 400;
  src: url("../lib/fonts/lilita-one-v16-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body,
html,
* {
  font-size: 100%;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

section {
  position: relative;
}

:root {
  scroll-behavior: smooth;
}

::selection {
  color: white;
  background: #db620c;
}

body,
html {
  max-width: 100vw;
  overflow-x: hidden;
  overflow-x: clip;
}

.toggle-screenreader,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
  white-space: nowrap;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.flex__item {
  flex: 1;
}
@media (max-width: 750px) {
  .flex__item {
    flex: 0 1 100%;
    width: 100%;
  }
}

.display--flex {
  display: flex;
}

details summary::marker {
  display: none;
  content: "";
}
details summary::-webkit-details-marker {
  display: none;
}

svg {
  width: 1.125rem;
  height: 1.125rem;
}

.landingpage {
  padding: 3.5rem 0;
  min-height: 600px;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 750px) {
  .container {
    max-width: 750px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1250px) {
  .container {
    max-width: 1250px;
  }
}
@media (min-width: 1750px) {
  .container {
    max-width: 1750px;
  }
}
@media (max-width: 750px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container--nav {
  height: 100%;
}
@media (min-width: 1250px) {
  .container--nav {
    max-width: 1950px;
    padding: 0 20px;
  }
}

.anchor {
  position: absolute;
  top: -260px;
}

:root {
  --nav-height:120px;
}
@media (max-width: 1024px) {
  :root {
    --nav-height:60px;
  }
}

.main-nav {
  height: 160px;
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(18, 38, 59, 0.95);
  transition: all 0.125s ease-in-out;
}
@media (max-width: 1024px) {
  .main-nav {
    height: 100px;
  }
}
.main-nav:after {
  content: "";
  width: 100vw;
  height: 2px;
  background: #3D5A80;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.main-nav .container {
  height: inherit;
}
.main-nav .flex {
  flex-wrap: nowrap;
  height: inherit;
}
.main-nav .flex__item {
  height: inherit;
  display: flex;
  align-items: center;
}
.main-nav .flex__item--one img {
  transition: all 0.125s ease-in-out;
}
@media (max-width: 1024px) {
  .main-nav .flex__item--one img {
    width: 200px;
    height: auto;
  }
}
.main-nav .flex__item--two {
  display: flex;
  justify-content: end;
}
.main-nav .flex__item--two .main-nav__list {
  display: flex;
  gap: 70px;
  align-items: center;
  height: var(--nav-height);
  list-style-type: none;
}
.main-nav .flex__item--two .main-nav__list--item a:not(.button) {
  color: white;
  text-decoration: none;
  font-size: clamp(100%, 2vw, 100% + 2px);
}
.main-nav .flex__item--two .main-nav__list--item .button {
  font-size: clamp(100%, 2vw, 100% + 3px);
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-wrap: nowrap;
}
@media (max-width: 1024px) {
  .main-nav .flex__item--two .main-nav__list--item .button {
    margin-top: 1rem;
  }
}
@media (max-width: 1024px) {
  .main-nav .flex__item--two .main-nav__canva {
    position: absolute;
    top: 100%;
    right: 0;
    background: #12263B;
    padding: 1rem;
    transform: translateX(calc(100% + 10px));
    transition: all 0.5s ease-in-out;
    z-index: 9999;
    padding: 2rem;
  }
  .main-nav .flex__item--two .main-nav__canva .main-nav__list {
    flex-direction: column;
    height: auto;
    align-items: start;
    gap: 10px;
  }
}
.main-nav .mobile-btn {
  position: absolute;
  right: 2rem;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .main-nav .mobile-btn {
    display: none;
  }
}
.main-nav .mobile-btn:after {
  content: "+";
}

#main-nav__canva:checked ~ .mobile-btn::after {
  content: "-";
}

#main-nav__canva:checked ~ .main-nav__canva {
  transform: translateX(0);
  transition: all 0.5s ease-in-out;
}

.subnav__list--item {
  position: relative;
  height: inherit;
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .subnav__list--item {
    display: block;
  }
}
.subnav__list--item .subnav-label {
  color: white;
  padding: 0.75rem 1rem;
  font-size: 1.2rem;
  font-weight: 800;
  text-wrap: nowrap;
  display: none;
}
@media (max-width: 1024px) {
  .subnav__list--item .subnav-label {
    display: none;
  }
}
.subnav__list--item .subnav-label span {
  transform: rotate(-180deg);
  display: inline-block;
  transition: transform 0.35 ease-in-out;
}
.subnav__list--item .subnav-label:hover {
  cursor: pointer;
}
.subnav__list--item .subnav-label:hover span {
  transform: rotate(0);
  transition: transform 0.35 ease-in-out;
}

.subnav__wrapper {
  display: none;
  padding: 2rem;
  color: inherit;
  position: absolute;
  top: 100%; /* damit's unter dem Label auftaucht */
  left: -50%;
  z-index: 10;
  width: fit-content;
  margin-top: -0.75rem;
}
@media (max-width: 1024px) {
  .subnav__wrapper {
    position: unset;
    padding: 1rem;
    padding: 0;
  }
}

.subnav {
  padding: 1rem 2rem;
  background: white;
  border-radius: 1rem;
  position: relative;
  filter: drop-shadow(2px 2px 2px rgba(61, 90, 128, 0.5));
}
.subnav:before {
  content: "▲";
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: 0;
  margin: auto;
  color: white;
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 1.75rem;
}
@media (max-width: 1024px) {
  .subnav:before {
    display: none;
  }
}
.subnav li {
  padding: 0.25rem 0;
  list-style-type: disc;
  color: #3D5A80;
  list-style-position: inside;
  text-wrap: nowrap;
}
.subnav li:last-of-type {
  padding-bottom: 1rem;
}
.subnav li::marker {
  color: inherit;
}
.subnav li a {
  text-wrap: nowrap;
  color: #3D5A80;
  text-decoration: none;
}

#subnav-checkup:checked + .subnav-label + .subnav__wrapper {
  display: block;
}

#subnav-checkup:checked ~ .subnav-label span {
  transform: rotate(0);
}

.subnav__list--item:hover > .subnav-label + .subnav__wrapper,
.subnav__wrapper:hover {
  display: block;
}

.landingpage-nav {
  position: sticky;
  top: var(--nav-height);
  z-index: 999;
  background: white;
  padding: 1rem;
  margin-top: -3rem;
  color: white;
}
.landingpage-nav svg {
  width: 100vw;
  position: absolute;
  top: -6rem;
  height: 6rem;
  left: 0;
  right: 0;
}
.landingpage-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.landingpage-nav ul li a {
  font-size: clamp(1rem, 2vw, 2rem);
  text-decoration: none;
}

.shrink {
  height: var(--nav-height);
  transition: all 0.125s ease-in-out;
}
.shrink img {
  transform: scale(0.85);
  transition: all 0.125s ease-in-out;
}
@media (max-width: 1024px) {
  .shrink img {
    transform: scale(0.65);
  }
}

.start__wave {
  width: 100vw;
  height: 2rem;
  padding: 0 1rem;
}
.start__entry {
  padding: 0 0 clamp(4rem, 7vw, 8rem) 0;
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 750px) {
  .start__entry {
    padding-top: 1.5rem;
  }
}
.start__entry h2 {
  text-align: center;
}
.start__offers {
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, white 0%, white 80.1%, #12263B 79.9%, #12263B 100%);
}
.start__offers h2 {
  text-align: center;
  padding-bottom: 2rem;
}
@media (max-width: 1024px) {
  .start__offers .flex__item {
    all: unset;
    min-width: 250px;
  }
}
.start__on-point {
  background: #12263B;
  padding: 6rem 0;
  position: relative;
  z-index: 1;
}
.start__on-point div.flex {
  padding: min(3rem, 5%) 0;
}
.start__on-point div.flex img {
  width: 500px;
  height: 500px;
  border-radius: 9999px;
}
@media (max-width: 750px) {
  .start__on-point div.flex img {
    width: 250px;
    height: 250px;
  }
}
.start__on-point h2, .start__on-point h3 {
  color: #5EB7B1;
  text-align: center;
  padding-bottom: min(5rem, 5%);
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: clamp(1.75rem, 2vw, 3.5rem);
  font-weight: 500;
}
.start__on-point h3 {
  padding-top: 5%;
}
.start__on-point ul li {
  color: white;
  font-size: clamp(1rem, 3vw, 1.75rem);
  padding: 0.95rem 0;
  margin-left: 1.25rem;
}
.start__on-point ul li::marker {
  color: #E5273A;
}
.start__on-point ul li.check {
  list-style-type: none;
  position: relative;
  padding-left: 1.25rem;
}
.start__on-point ul li.check:before {
  position: absolute;
  left: -1.25rem;
  content: "✔";
  display: block;
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  color: #E5273A;
}

.contact {
  padding: clamp(3.5rem, 10vw, 6rem) 0;
}
.contact p:first-of-type {
  padding: unset;
}
.contact h2 {
  padding-bottom: 1.5rem;
}
.contact form {
  max-width: 700px;
  margin: auto;
  background: #f4f8fa;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 0 2px 2px rgba(128, 128, 128, 0.45);
}
.contact form .flex {
  gap: 2rem;
}
@media (max-width: 1024px) {
  .contact form .flex {
    gap: 0;
  }
}
.contact adress ul {
  list-style-type: none;
}
.contact adress ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
}
.contact adress ul li a {
  color: #12263B;
  font-weight: 600;
}

* {
  font-family: "Arial";
  text-wrap: balance;
}

a {
  color: #3D5A80;
}

h1 {
  font-size: clamp(1.25rem, 4vw, 3.5rem);
  line-height: clamp(1.75rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: clamp(1.75rem, 2vw, 3.5rem);
  font-weight: 500;
  color: #12263B;
}
h2 span {
  color: #5EB7B1;
  font-size: clamp(1rem, 2vw, 2rem);
}
@media (max-width: 1024px) {
  h2 {
    text-align: left !important;
  }
}

h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: clamp(1.75rem, 2vw, 2.5rem);
  font-weight: 500;
}
@media (max-width: 1024px) {
  h3 {
    text-align: left !important;
  }
}

h1,
h1 span,
h2,
h2 span,
h3,
h4,
a {
  font-family: "Lilita One", sans-serif;
}

p {
  font-size: 20px;
  line-height: 28px;
  color: #12263B;
  text-wrap: balance;
  max-width: 65vw;
  padding: 1rem 0;
}

p,
ul,
li,
a,
label,
strong {
  font-family: "Roboto Condensed", sans-serif;
}

form label {
  margin: 0.75rem 0;
  display: block;
  color: #3D5A80;
  font-weight: 800;
}
form label input, form label textarea {
  display: block;
  border: 1px solid rgba(128, 128, 128, 0.5);
  border-radius: 5px;
}
form input:not(input[type=submit]) {
  min-width: 250px;
  max-width: 450px;
  width: 100%;
  height: 2.25rem;
}
form textarea {
  min-height: 150px;
  width: 100%;
  max-width: 450px;
  min-width: 250px;
}

.button {
  padding: 5px 10px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  width: fit-content;
  margin: auto;
  display: block;
}
.button--blue {
  background: #3D5A80;
  color: white;
}
.button--white {
  color: #12263B;
  background: white;
  padding: 0.75rem 1.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-wrap: nowrap;
  text-transform: unset;
  font-weight: 800;
  border-radius: 1.25rem;
}
.button--white:hover {
  background: #e6e6e6;
}
.button--red {
  background: #E5273A;
  color: white;
  border: 4px solid white;
  transition: 0.5s all ease-in-out;
}
.button--red:hover {
  background: black;
  transition: 0.5s all ease-in-out;
}
.button--green {
  background: #5EB7B1;
  border: 6px solid white;
  color: white;
  font-weight: 800;
  padding: 0.75rem 1.25rem;
  font-size: clamp(1rem, 2vw, 1.125rem);
  border-radius: 0;
  transition: all 0.25s ease-in-out;
  border-radius: 1.25rem;
}
.button--green:hover {
  background: #12263B;
  color: white;
  transition: all 0.25s ease-in-out;
}

.flip-card {
  background-color: transparent;
  width: 25vw;
  min-width: 350px;
  height: 450px;
  max-width: 500px;
  perspective: 1000px;
  border-radius: 1rem;
  border: 2px solid transparent;
}
@media (max-width: 750px) {
  .flip-card {
    aspect-ratio: 1/1;
    height: 100%;
    min-width: unset;
    width: calc(100dvw - 40px);
  }
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  border: 2px solid transparent;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  border-radius: 1rem;
  border: 2px solid transparent;
}

.flip-card-front {
  background-color: transparent;
  color: white;
  border: 2px solid transparent;
}
.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.flip-card-front span {
  background: white;
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border-radius: 1rem;
  padding: 1rem;
  width: 70%;
}
.flip-card-front span:after {
  position: absolute;
  content: "↶";
  bottom: -2.5rem;
  right: -2.5rem;
  color: #E5273A;
  font-size: clamp(3rem, 5vw, 5rem);
  transform: rotate(135deg);
}
.flip-card-front span h3 {
  scroll-padding-top: 80px;
  color: #5EB7B1;
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: clamp(1.125rem, 2vw, 1.75rem);
  text-align: center;
}
.flip-card-front span h3 + p {
  font-size: clamp(0.75rem, 2vw, 1.125rem);
}
.flip-card-front span p {
  padding: unset;
}

/* Style the back side */
.flip-card-back {
  background-color: #5EB7B1;
  color: black;
  transform: rotateY(180deg);
  text-align: left;
  padding: 1rem;
  font-size: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
}
.flip-card-back ul {
  padding: 1rem;
}
.flip-card-back ul li {
  padding: 0.35rem 0;
}

.faq {
  background: #5EB7B1;
}
.faq a {
  color: #12263B;
}
.faq .flex__item--one {
  padding: 4rem 0;
}
.faq .flex__item--one h2 {
  padding-bottom: 2rem;
  color: white;
}
.faq .flex__item--one details {
  padding: 0.5rem 0 0.5rem 1.25rem;
}
.faq .flex__item--one details summary {
  color: #12263B;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  cursor: pointer;
  list-style-position: outside;
  position: relative;
  list-style: none;
}
.faq .flex__item--one details summary:before {
  content: "+";
  position: absolute;
  left: -1.25rem;
  transition: transform 0.5s linear;
  font-size: 1.5rem;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  font-family: inherit;
  font-weight: 900;
}
.faq .flex__item--one details summary::marker {
  display: none;
  content: "";
}
.faq .flex__item--one details p {
  padding: 1rem;
}
.faq .flex__item--one details[open] summary:before {
  content: "-";
  transform: rotate(180deg);
  transition: transform 0.25s linear;
}
.faq .flex__item--two {
  display: flex;
  justify-content: center;
}
.faq .flex__item--two img {
  width: 500px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 750px) {
  .faq .flex__item--two img {
    width: 250px;
    height: 250px;
  }
}

.contact-partial {
  padding: 5vw 0;
  text-align: center;
  position: relative;
}
.contact-partial h2 {
  padding: unset;
}
.contact-partial p {
  max-width: unset;
}
.contact-partial__ways {
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
}
.contact-partial__ways ul {
  display: flex;
  list-style-type: none;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 3rem);
}
@media (max-width: 750px) {
  .contact-partial__ways ul {
    flex-direction: column;
    align-items: center;
  }
}
.contact-partial__ways ul li a.button {
  border: unset;
  border-radius: 1rem;
}

.fixed-phone {
  position: fixed;
  right: 1rem;
  bottom: 1vmax;
  z-index: 9999;
}
.fixed-phone a {
  padding: 0.75rem;
  background: #3D5A80;
  display: block;
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fixed-phone a svg {
  width: 2rem;
  height: 2rem;
  fill: white;
}

.testimonial {
  padding: min(4rem, 8%) 0;
}
.testimonial h2 {
  padding-bottom: unset;
  text-align: center;
}
.testimonial h3 {
  padding-bottom: 2rem;
  color: white;
}
.testimonial .flex__item {
  margin: auto;
}
.testimonial .flex__item--two {
  position: relative;
}
.testimonial__counter {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.testimonial__counter span {
  color: #E5273A;
  font-size: clamp(2.125rem, 4vw, 2.95rem);
  font-weight: 800;
}
.testimonial blockquote {
  font-size: clamp(1rem, 2vw, 1.25rem);
  background: white;
  border-radius: 0.75rem;
  color: #252739;
  margin: 2rem 0;
  white-space: normal;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonial blockquote q {
  max-width: 700px;
  text-align: center;
}
.testimonial blockquote footer {
  margin-top: 1rem;
}
.testimonial ul {
  padding: 2rem 0;
}
.testimonial ul li {
  list-style-type: none;
  display: flex;
  gap: 0.5rem;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}
.testimonial ul li span {
  font-family: inherit;
  color: #5EB7B1;
}
.testimonial ul li::marker {
  content: "";
}
.testimonial p.testimonial__cta-description {
  margin: auto;
  text-align: center;
  padding-top: 2rem;
}
.testimonial .button {
  margin: auto;
}
.testimonial .slider {
  position: relative;
  max-width: 700px;
  height: 300px;
  margin: 0 auto;
  overflow: hidden;
}
.testimonial .slider .slide {
  position: absolute;
  top: 0;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
}
.testimonial button {
  background: none;
  border: none;
}
.testimonial button.btn-slide {
  position: absolute;
  bottom: 0;
  z-index: 10;
  height: 5.5rem;
  width: 5.5rem;
  cursor: pointer;
}
.testimonial button.prev {
  left: 0rem;
}
.testimonial button.next {
  right: 0rem;
}
.testimonial .dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.testimonial .dots-container .dot {
  width: 25px;
  height: 5px;
  margin: 15px 5px;
  border-radius: 0.5rem;
  background: rgba(39, 39, 39, 0.5);
  cursor: pointer;
}
.testimonial .dots-container .dot.active {
  background: #272727;
}

.header {
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  width: 100%;
}
.header-content {
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
  position: absolute;
  height: calc(100vh - var(--nav-height));
  height: calc(100dvh - var(--nav-height));
  left: 0;
  width: 100%;
  clip-path: inset(0 0 0% 0);
}
.header h1 {
  font-size: clamp(1.5rem, 10vw, 10rem);
  line-height: clamp(1.75rem, 10vw, 10.25rem);
  width: 100%;
  font-weight: 500;
  color: white;
  position: fixed;
  top: 27%;
  margin: auto;
  left: 0;
  right: 0;
  display: block;
  text-align: center;
}
.header h1 span {
  color: #E5273A;
  padding-left: 10%;
}
.header p {
  font-size: clamp(1.125rem, 6vw, 4rem);
  line-height: clamp(1.25rem, 6vw, 3.5rem);
  width: 100%;
  font-weight: 600;
  color: #12263B;
  position: fixed;
  top: 65%;
  text-align: center;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  font-family: "Lilita One", sans-serif;
  font-weight: 500;
  text-wrap: nowrap;
}
@media (max-width: 750px) {
  .header p {
    top: 45%;
  }
}
.header a.button {
  position: fixed;
  bottom: 10%;
  right: 10%;
  font-size: calc(100% + 1rem);
  padding: 0.75rem 2.25rem;
  animation: none;
  border-radius: 3rem;
  z-index: 1;
  background: #5EB7B1;
  min-width: 200px;
  min-height: 75px;
}
@media (max-width: 750px) {
  .header a.button {
    bottom: unset;
    left: 1rem;
    right: 1rem;
    font-size: 1.25rem;
    top: 65%;
    min-width: 150px;
    min-height: 55px;
  }
}
@media (max-width: 350px) {
  .header a.button {
    font-size: 1.25rem;
    top: 55%;
  }
}
.header__main {
  background: #3D5A80;
  background: url("../lib/images/start/webP/header.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: calc(100dvh - 4rem);
}

.footer {
  background: #12263B;
}
.footer__content {
  padding: 3rem 0;
}
.footer h2 {
  color: #5EB7B1;
  padding-bottom: 1rem;
}
.footer a {
  color: white;
}
.footer ul li {
  padding: 0.25rem 0;
  list-style: none;
}
.footer ul li h3 {
  font-size: clamp(0.75rem, 2vw, 1rem);
  line-height: unset;
  color: white;
}
.footer .legacy {
  background: white;
  padding: 1rem 0;
}
.footer .legacy ul {
  display: flex;
  gap: 1rem;
  justify-content: center;
  list-style: none;
}
.footer .legacy ul li a {
  color: #12263B;
  text-decoration: none;
  font-weight: 700;
}
.footer__contact ul {
  list-style: none;
}
.footer__contact ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
}
.footer__contact ul li svg {
  width: 1.125rem;
  height: 1.125rem;
}
.footer details summary {
  position: relative;
  margin-left: 1.5rem;
  color: white;
}
.footer details summary:hover {
  cursor: pointer;
}
.footer details summary:after {
  left: -1.5rem;
  content: "+";
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  font-weight: 800;
  color: #E5273A;
  font-size: 1.5rem;
}
.footer details ul {
  list-style-position: inside;
  padding: 0.25rem 1rem;
  color: white;
}
.footer details[open] summary:after {
  content: "-";
}

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