:root {
  --brand: #016f93;
  --brand-dark: #005878;
  --brand-light: #02c1ff;
  --text-white: #ffffff;
  --text-muted: #6d6f86;
  --background: rgba(171, 204, 219, 1);
  --black: #000000;
  --gray-medium: #a9aab7;
  --gray-light: #dcdcde;
  --gray-dark: #3a383f;
  --white: #ffffff;

  --font-size-h1: 3rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-p: 1rem;
  --font-family: 'Roboto', sans-serif;

  --border-radius-default: 1rem;
  --border-radius-big: 2rem;
  --border-radius-small: 0.5rem;

  --header-height: 96px;
}

/* NORMALIZE */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
u,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: none;
  text-decoration: underline;
}
button:focus-visible {
  text-decoration: underline;
}

h1 {
  color: var(--brand);
  font-size: var(--font-size-h1);
  margin-bottom: 1.25rem;
  margin-top: 15vh;
}

h2 {
  color: var(--brand-dark);
  font-size: var(--font-size-h2);
  padding-inline: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

h3 {
  color: var(--text-white);
  font-size: var(--font-size-h3);
  font-weight: 500;
  letter-spacing: 0.015rem;
}

h4 {
  color: var(--brand-dark);
  font-size: var(--font-size-h4);
  padding-inline: 1rem;
}

p {
  color: var(--text-muted);
  font-size: var(--font-size-p);
}

.blue {
  color: var(--brand-dark);
  font-weight: bold;
  letter-spacing: 0.01rem;
}

.content {
  display: flex;
  width: min(74.711vw, 1291px);
  flex-direction: column;
  border-radius: var(--border-radius-big);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.875rem);
}

.card {
  border-radius: var(--border-radius-default);
  background: var(--white);
  box-shadow: 0 0.25rem 0.75rem 0 rgba(0, 0, 0, 0.15);
}

.section {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 4vh;
}

.content-header {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: var(--white);
  position: relative;
  border-radius: var(--border-radius-big) var(--border-radius-big) 0 0;
  min-height: 4.75rem;
}

.content-header img {
  width: 125.3px;
  position: absolute;
  right: -2.5rem;
}

.group-content {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  cursor: pointer;
  border: none;
  color: var(--text-white);
  font-size: var(--font-size-p);
  font-weight: 500;
  letter-spacing: 0.01rem;
}

#nav-mobile {
  display: none;
}

.cta {
  width: 21.625rem;
  height: 4.125rem;
  border: 0.063rem solid var(--brand);
  background: var(--brand-light);
  box-shadow: 0.313rem 0.313rem 1.5rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 2.125rem;
  color: var(--text-white);
  font-size: var(--font-size-h2);
  font-weight: 400;

  display: flex;
  flex-direction: row;
  cursor: pointer;
  overflow: hidden;
}

.cta a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding-left: 1.25rem;
  padding-right: 0.5rem;
}

.cta-small {
  width: 18.75rem;
  height: 3.52rem;
  font-size: var(--font-size-h3);

  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.125rem;
}

.cta-small .circle-wrap {
  width: 44px;
  height: 44px;
}

.cta-gray {
  border: 0.063rem solid var(--brand-light);
  background: var(--text-muted);
}

.circle-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
}
svg {
  display: block;
}

.chevron {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-white);
  pointer-events: none;
}

.carousel-dots {
  display: none;
}

/*      _    _ ______          _____  ______ _____  
--     | |  | |  ____|   /\   |  __ \|  ____|  __ \ 
--     | |__| | |__     /  \  | |  | | |__  | |__) |
--     |  __  |  __|   / /\ \ | |  | |  __| |  _  / 
--     | |  | | |____ / ____ \| |__| | |____| | \ \ 
--     |_|  |_|______/_/    \_\_____/|______|_|  \_\
--                                                  
--                                            */

header {
  border-bottom: 0.063rem solid var(--gray-medium);
  background: var(--white);
  position: fixed;
  display: flex;
  padding: 0.75rem 1.75rem 1.00125rem 1.1875rem;
  gap: 0.625rem;
  width: 100%;
  height: var(--header-height);
  top: 0;
  z-index: 99999;
}

.headerPronti {
  width: 62px;
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  cursor: pointer;
}

nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.625rem;
  color: var(--brand);
  font-size: var(--font-size-h4);
  font-weight: 800;
  letter-spacing: 0.025rem;
  width: 100%;
}

nav span {
  width: min(37.037vw, 640px);
  cursor: pointer;
}

nav ul {
  display: flex;
  list-style-type: none;
  gap: 0.625rem;
  margin-left: auto;
}

nav ul li {
  padding-inline: 5px;
  width: 7.755vw;
  cursor: pointer;
  text-align: center;
}

.start,
.login {
  display: flex;
  min-width: 5rem;
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--border-radius-small);
  border: 0.063rem solid var(--brand);
  background: var(--brand-light);
  color: var(--text-white);
}

.login {
  background: var(--brand);
  color: var(--text-white);
  border: none;
}

/*      _    _  ____  __  __ ______ 
--     | |  | |/ __ \|  \/  |  ____|
--     | |__| | |  | | \  / | |__   
--     |  __  | |  | | |\/| |  __|  
--     | |  | | |__| | |  | | |____ 
--     |_|  |_|\____/|_|  |_|______|
--                                  
--     */

.home {
  position: relative;
  left: min(11.574vw, 200px);
  top: min(21.944vh, 237px);
  width: min(601px, 80%);
  scroll-margin-top: 250px;
  height: calc(100vh - var(--header-height));
}

.home button {
  margin-top: 166px;
}

.home img {
  width: 285px;
  position: relative;
  left: 315px;
  bottom: 320px;
}

.home .head {
  border-radius: var(--border-radius-big);
  background: var(--brand);
  color: var(--text-white);
  font-size: 4.375rem;
  padding: 0.75rem 1.438rem;
  width: fit-content;
  margin-bottom: 2rem;
}

.subline {
  margin-top: 4.75rem;
  display: flex;
  width: min(34.6875rem, 100%);
  height: 7.3125rem;
  flex-direction: column;
  justify-content: center;
  color: var(--brand-dark);
  text-align: center;
  font-size: var(--font-size-h2);
  border-radius: var(--border-radius-big);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.6) 0%,
    rgba(255, 255, 255, 0.06) 100%
  );
  box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.875rem);
  padding: 0;
}

/*     __          ________ _____  
--     \ \        / /  ____|  __ \ 
--      \ \  /\  / /| |__  | |__) |
--       \ \/  \/ / |  __| |  _  / 
--        \  /\  /  | |____| | \ \ 
--         \/  \/   |______|_|  \_\
--                                 */

.wer h4 {
  margin-top: 1.25rem;
  margin-bottom: 2.469rem;
  display: block;
  width: 100%;
}

.wer .group-content {
  display: flex;
  gap: 1rem;
  margin-top: 0;
  padding-inline: 1rem;
}

.wer .group-content .blue {
  margin-top: 1.313rem;
}

.wer .card {
  width: 295px;
  height: 94px;
  display: flex;
  flex-direction: column;
  gap: 0.438rem;
}
/* 
--     __          __      _____ 
--     \ \        / /\    / ____|
--      \ \  /\  / /  \  | (___  
--       \ \/  \/ / /\ \  \___ \ 
--        \  /\  / ____ \ ____) |
--         \/  \/_/    \_\_____/ 
--                               
--             */

.was .content-header > img {
  right: 1.25rem;
  bottom: -0.188rem;
}
.was .group-content {
  gap: 1.688rem;
  margin-left: min(9.722vw, 168px);
  margin-right: min(9.722vw, 168px);
}

.was .card {
  width: 18.75rem;
  height: 18.75rem;
}
.was .card p {
  padding-inline: 0.438rem;
}

.was .card svg {
  margin-top: 1.063rem;
  margin-bottom: 1.063rem;
  display: inline;
}

.was .blue {
  margin-bottom: 1.875rem;
}

/* 
--     __          _______ ______ 
--     \ \        / /_   _|  ____|
--      \ \  /\  / /  | | | |__   
--       \ \/  \/ /   | | |  __|  
--        \  /\  /   _| |_| |____ 
--         \/  \/   |_____|______|
--                                
--              */

.wie .content-header > img {
  right: 11.875rem;
  bottom: -0.188rem;
}
.wie .card {
  width: 18.75rem;
  height: 15.4375rem;
  position: relative;
}

.wie .card img {
  width: 17.375rem;
  height: 9.375rem;
  position: absolute;
  bottom: 1.25rem;
  left: 0.688rem;
  object-fit: contain;
}

.wie .blue {
  margin-top: 1.25rem;
  padding-inline: 2rem;
}

.wie .group-content {
  gap: 1.688rem;
  padding-inline: min(9.722vw, 168px);
}

/* 
--      _____  _____  ______ _____  _____ ______ 
--     |  __ \|  __ \|  ____|_   _|/ ____|  ____|
--     | |__) | |__) | |__    | | | (___ | |__   
--     |  ___/|  _  /|  __|   | |  \___ \|  __|  
--     | |    | | \ \| |____ _| |_ ____) | |____ 
--     |_|    |_|  \_\______|_____|_____/|______|
--                                               
--           */

.preise .content-header > img {
  bottom: 1.563rem;
}
.preise h3 {
  height: 4.25rem;
  background: var(--brand);
  border-radius: var(--border-radius-default) var(--border-radius-default) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preise .group-content {
  gap: 1.625rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.125rem;
}
.preise .card {
  width: 300px;
}
.preise ul {
  list-style-type: none;
}

.preise li {
  min-height: 6.03rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.06rem solid var(--gray-light);
  color: var(--gray-dark);
  font-size: var(--font-size-h4);
  padding-inline: 1.688rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.double {
  height: 7.59rem;
}

.preise .pricing {
  height: 32.84rem;
  justify-content: unset;
  padding-bottom: 0;
  position: relative;
}

.chf {
  color: var(--black);
  font-size: var(--font-size-p);
  font-weight: 700;
}

.price {
  color: var(--black);
  font-size: 2.25rem;
  font-weight: 700;
}

.details {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 1.438rem;
}

.contactUs {
  color: var(--black);
  font-size: var(--font-size-h3);
  font-weight: 700;
  margin-top: 3.031rem;
}

.toggleShowDetails {
  display: none;
  color: #5eb1ef;
  font-size: 14px;
  line-height: 16px;
  padding-top: 16px;
}

.preise .cta {
  margin-top: 0;
  margin-bottom: 0;
  width: 275px;
}

.preise .buttons {
  position: absolute;
  bottom: 2.313rem;
}

.preise .blue {
  font-weight: 400;
}

.featureSvg {
  width: 25px;
  height: 25px;
}

/* 
--       _____ _    _ _____ _____  ______ 
--      / ____| |  | |_   _|  __ \|  ____|
--     | |  __| |  | | | | | |  | | |__   
--     | | |_ | |  | | | | | |  | |  __|  
--     | |__| | |__| |_| |_| |__| | |____ 
--      \_____|\____/|_____|_____/|______|
--                                        
--  */

.guide .content-header {
  margin-bottom: 4.063rem;
}

.guide .content-header img {
  right: 9.375rem;
  bottom: 2.063rem;
}

.guide .content {
  width: min(74.711vw, 1291px);
}

.guide .container {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
  margin-bottom: 3.125rem;
  width: min(55.266vw, 955px);
}
.guide .header {
  width: 100%;
  min-height: 4.6875rem;
  background-color: var(--text-muted);
  border-radius: var(--border-radius-default);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 1.375rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.guide .header h3 {
  max-width: 85%;
  text-align: left;
}

.guide .cta {
  padding: 0;
  border: none;
  box-shadow: none;
  margin: 0;
}

.guide svg,
.guide .circle-wrap {
  width: 44px;
  height: 44px;
}

.guide .answer {
  width: 100%;
  padding-top: 1.313rem;
  border-radius: 0 0 var(--border-radius-default) var(--border-radius-default);
  background-color: white;
  min-height: 12.06rem;
  display: none;
}
.guide p {
  padding-inline: clamp(1rem, 5vw, 12.5rem);
}
.guide li {
  padding-top: 0.313rem;
  padding-bottom: 0.313rem;
}
.guide ul {
  width: min(23.09vw, 399px);
  margin-left: auto;
  margin-right: auto;
  list-style-type: disc;
}

.guide ul p {
  padding: 0;
  text-align: left;
}

#\32,
#\34,
#\36,
#\37 {
  padding-bottom: 1.25rem;
}

/* 
--      ______ ____   ____ _______ ______ _____  
--     |  ____/ __ \ / __ \__   __|  ____|  __ \ 
--     | |__ | |  | | |  | | | |  | |__  | |__) |
--     |  __|| |  | | |  | | | |  |  __| |  _  / 
--     | |   | |__| | |__| | | |  | |____| | \ \ 
--     |_|    \____/ \____/  |_|  |______|_|  \_\
--                                               
--         */

footer {
  display: flex;
  padding-bottom: 2.563rem;
  justify-content: center;
  gap: 2rem;
  color: var(--brand);
  font-size: var(--font-size-h4);
  font-weight: 500;
  letter-spacing: 0.013rem;
  margin-top: 3.125rem;
  width: 100%;
  padding-inline: 0.125rem;
}

/* --      __  __ ______ _____ _____             ____  _    _ ______ _____  _____ ______  _____ 
--     |  \/  |  ____|  __ \_   _|   /\      / __ \| |  | |  ____|  __ \|_   _|  ____|/ ____|
--     | \  / | |__  | |  | || |    /  \    | |  | | |  | | |__  | |__) | | | | |__  | (___  
--     | |\/| |  __| | |  | || |   / /\ \   | |  | | |  | |  __| |  _  /  | | |  __|  \___ \ 
--     | |  | | |____| |__| || |_ / ____ \  | |__| | |__| | |____| | \ \ _| |_| |____ ____) |
--     |_|  |_|______|_____/_____/_/    \_\  \___\_\\____/|______|_|  \_\_____|______|_____/ 
--                                                                                           
--   */

@media (max-width: 1714px) {
  .was .group-content,
  .wie .group-content,
  .preise .group-content {
    margin-right: auto;
    margin-left: auto;
    margin-inline: auto;
    padding-inline: 1rem;
  }
}

@media (max-width: 1600px) {
  .wie .content-header > img {
    right: 5rem;
    bottom: -0.188rem;
  }

  .preise .content-header > img {
    top: -4rem;
    right: -3rem;
  }

  .guide .content-header > img {
    right: 5rem;
    bottom: 1rem;
  }
}

@media (max-width: 1415px) {
  .wer .content-header > img {
    right: -2rem;
    bottom: 2rem;
  }
}

@media (max-width: 1316px) {
  .preise {
    max-width: 100%;
    overflow-x: clip;
  }

  .preise .group-content {
    flex-wrap: nowrap;
    gap: 1.625rem;
    padding-inline: 16px;
    scroll-padding-inline: 16px;
    justify-content: flex-start;

    overflow-x: scroll;
    overflow-y: hidden;

    max-width: 100%;
    min-width: 0;
  }

  .preise .group-content .card {
    flex: 0 0 300px;
    width: 300px;
  }

  .pricing .buttons .cta {
    width: 275px;
    height: 56.32px;
    font-size: var(--font-size-h3);
  }

  .pricing .buttons .cta .circle-wrap {
    width: 44px;
    height: 44px;
  }

  .preise .group-content::-webkit-scrollbar {
    height: 6px;
  }

  .preise .group-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
  }

  .preise .group-content::-webkit-scrollbar-track {
    background: transparent;
  }
}

@media (max-width: 1280px) {
  .wie .content-header > img {
    right: 2rem;
    bottom: -0.188rem;
  }
  .guide .content-header > img {
    right: 2rem;
    bottom: 1rem;
  }
  .preise .content-header > img {
    right: -1rem;
  }
}

@media (max-width: 1200px) {
  .wie .content-header > img {
    right: -2rem;
    bottom: -0.188rem;
  }
  .guide .content-header > img {
    right: -2rem;
    bottom: 0;
  }
  .preise .content-header > img {
    right: -2rem;
  }

  .wer .content-header > img {
    right: -3rem;
    bottom: 2rem;
  }
}

@media (max-width: 945px) {
  #nav-mobile {
    display: block;
    width: 40px;
    justify-self: start;
    position: absolute;
    left: 36px;
  }

  .login {
    position: absolute;
    right: 24px;
  }

  .headerPronti {
    display: none;
  }

  nav {
    display: flex;
    justify-content: center;
    padding-right: 20px;
  }

  nav a {
    width: auto;
  }

  nav .start {
    display: none;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 5.56rem;
    left: 0;
    z-index: 9999;
    background-color: var(--white);
    width: 120px;
    border-radius: 0 0 8px 0;
    padding-bottom: 1rem;
  }

  nav > ul > li {
    padding-top: 12px;
    width: 100%;
    padding-right: 10px;
  }

  nav .login {
    justify-self: end;
  }
}

@media (max-width: 882px) {
  .content,
  .guide .content {
    width: 90%;
  }

  .wie .card,
  .was .card {
    width: min(300px, 90%);
    height: min(300px, 90%);
  }

  .was .blue {
    margin-bottom: 14.5px;
  }
  .wer .card {
    width: min(300px, 90%);
  }

  .wie .card img {
    width: min(275px, 82%);
    position: unset;
    margin-inline: auto;
    margin-top: 1rem;
    left: unset;
    bottom: unset;
  }

  .guide .container {
    width: 90%;
  }

  .guide .header {
    width: 100%;
    padding-right: 14px;
  }

  .content-header img {
    display: none;
  }

  .wie .group-content,
  .was .group-content {
    height: 17.5rem;
    flex-direction: column;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .wie .group-content::-webkit-scrollbar,
  .was .group-content::-webkit-scrollbar {
    height: 6px;
  }

  .wie .group-content::-webkit-scrollbar-thumb,
  .was .group-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
  }

  .wie .group-content::-webkit-scrollbar-track,
  .was .group-content::-webkit-scrollbar-track {
    background: transparent;
  }
}

@media (max-width: 854px) {
  .wer .group-content {
    height: 14rem;
    flex-direction: column;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .wer h4 {
    margin-bottom: 1rem;
  }

  .wer .group-content::-webkit-scrollbar {
    height: 6px;
  }

  .wer .group-content::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 3px;
  }

  .wer .group-content::-webkit-scrollbar-track {
    background: transparent;
  }
}

@media (max-width: 400px) {
  .wer .group-content {
    height: 7rem;
  }
  .wie .group-content,
  .was .group-content,
  .wer .group-content {
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1rem;
  }

  .wie .group-content .card,
  .was .group-content .card,
  .wer .group-content .card {
    scroll-snap-align: center;
  }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
  }

  .carousel-dots button[aria-current='true'] {
    background: rgba(0, 0, 0, 0.55);
  }
}

@media (max-height: 880px) {
  .home {
    top: max(15vh, 110px);
  }
  .home button {
    margin-top: clamp(50px, calc(0.846 * (100vh - 670px) + 50px), 160px);
  }
}

@media (max-height: 670px), (max-width: 768px) {
  .home {
    width: min(350px, 100%);
    left: min(5.598vw, 22px);
    top: max(16.784vh, 113px);
  }

  .toggleShowDetails {
    display: block;
  }

  .preise .group-content .card {
    flex: 0 0 228px;
    width: 228px;
  }

  .preise .more-details {
    display: none;
  }

  .home .head {
    font-size: 2.25rem;
    margin-bottom: 0.69rem;
  }

  .home button {
    margin-top: 3.19rem;
    font-size: 18px;
    width: 12.5rem;
    height: 2.875rem;
  }

  .home button a {
    padding-left: 5px;
    padding-right: 3px;
  }

  .subline {
    margin-top: 4rem;
    width: 17.0625rem;
    height: 3.5625rem;
    font-size: var(--font-size-p);
    border-radius: 15px;
  }

  .circle-wrap,
  .cta svg,
  .cta-small .circle-wrap,
  .pricing .buttons .cta .circle-wrap,
  .guide svg,
  .guide .circle-wrap {
    width: 2.125rem;
    height: 2.125rem;
  }

  .home img {
    width: min(10.9375rem, 44.529vw);
    left: 161px;
    bottom: 185px;
    right: auto;
  }

  h1 {
    font-size: 2.25rem;
  }

  .wer h4 {
    margin-bottom: 20px;
  }

  h2,
  .chf,
  nav span,
  .guide p {
    font-size: 1rem;
  }
  h3,
  footer,
  .cta-small,
  .pricing .buttons .cta {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 0.75rem;
  }

  p,
  .details,
  .preise li,
  .login,
  nav li {
    font-size: 0.875rem;
  }

  .guide ul {
    width: 70%;
    padding-bottom: 0.5rem;
  }
  .guide p {
    padding-bottom: 1rem;
  }
  .price {
    font-size: 2rem;
  }
  .contactUs {
    font-size: 1.5rem;
  }

  .preise li {
    min-height: 4rem;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
  }

  .double {
    padding-bottom: 1.19rem;
    height: 4.88rem;
    padding-top: 0.3125rem;
  }

  #first-chf {
    padding-top: 5px;
  }

  .preise .pricing {
    height: 350px;
  }

  .cta-small {
    margin-top: 27px;
    margin-bottom: 41px;
    width: min(299px, 80%);
  }

  .guide .content-header {
    margin-bottom: 2.5rem;
  }

  .pricing .buttons .cta {
    width: 211px;
  }

  .featureSvg {
    width: 18px;
    height: 18px;
  }
}

@media (max-height: 530px) {
  :root {
    --header-height: 60px;
  }
  .home {
    top: 70px;
  }
  header {
    height: var(--header-height);
  }
  #nav-mobile-ul {
    top: 3.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    scroll-behavior: auto;
  }
}
