body {
  margin: 0;
  position: relative;
  line-height: normal;
  width: 100vw;
  overflow-x: hidden;
}

navbar {
  position: fixed;
  z-index: 100;
  width: 100vw;
  box-sizing: border-box;
}

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

footer {
  bottom: 0;
}

.popup-overlay {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset: 0;
}

:root {
  /* fonts */
  --paragraph-small-regular: "Wix Madefor Display";
  --heading-h1-bold-mobile: Figtree;
  --font-manrope: Manrope;
  --font-inherit: inherit;

  /* font sizes */
  --paragraph-small-regular-size: 14px;
  --paragraph-medium-medium-size: 16px;
  --heading-h4-bold-mobile-size: 24px;
  --heading-h1-bold-mobile-size: 36px;
  --heading-h5-semibold-mobile-size: 20px;
  --paragraph-large-regular-size: 18px;
  --paragraph-xsmall-semibold-size: 12px;
  --heading-h1-bold-desktop-size: 40px;
  --font-size-29xl: 48px;
  --font-size-45xl: 64px;

  /* Colors */
  --generic-white: #fff;
  --dark-blue-50: #f7f9fa;
  --dark-green-dark-50: #f7faf7;
  --black-50: #f2f2f2;
  --black-100: #e6e6e6;
  --neutral-200: #e5e5e5;
  --color-gainsboro-100: #d9d9d9;
  --foundation-dark-dark-500: #48444f;
  --neutral-700: #404040;
  --black: #000;
  --background: #fafafa;
  --foundation-dark-dark-900: #1e1d21;
  --dark-blue-300: #b0b3b5;
  --black-400: #999;
  --dark-green-dark-500: #8c998c;
  --green-green-500: #1fb53a;
  --blue-blue-50: #e5f2fc;
  --black-500: #666;
  --dark-green-dark-600: #626a62;
  --dark-blue-600: #62666a;
  --green-green-50: #e9f8eb;
  --blue-blue-500: #0073c6;

  /* Gaps */
  --gap-17xl: 36px;
  --gap-base: 16px;
  --gap-13xl: 32px;
  --gap-5xs: 8px;
  --gap-xs: 12px;
  --gap-5xl: 24px;
  --gap-45xl: 64px;
  --gap-9xs: 4px;
  --gap-29xl: 48px;
  --gap-61xl: 80px;
  --gap-xl: 20px;
  --gap-101xl: 120px;

  /* Paddings */
  --padding-93xl: 112px;
  --padding-17xl: 36px;
  --padding-5xl: 24px;
  --padding-81xl: 100px;
  --padding-109xl: 128px;
  --padding-xs: 12px;
  --padding-221xl: 240px;
  --padding-45xl: 64px;
  --padding-xl: 20px;
  --padding-61xl: 80px;
  --padding-145xl: 164px;
  --padding-29xl: 48px;
  --padding-base-6: 15.6px;
  --padding-101xl: 120px;
  --padding-5xs: 8px;
  --padding-base: 16px;
  --padding-lg: 18px;
  --padding-181xl: 200px;
  --padding-381xl: 400px;

  /* Border radiuses */
  --br-7xs-5: 5.5px;
  --br-5xs-9: 7.9px;
  --br-xs: 12px;
  --br-5xl: 24px;
  --br-16xl: 35px;
  --br-base: 16px;
  --br-13xl: 32px;
  --br-5xs: 8px;
  --br-4xs-4: 8.4px;
  --br-7xs: 6px;
  --br-23xl: 42px;
  --br-7xl-7: 26.7px;
  --br-37xl: 56px;
  --br-30xl: 49px;
  --br-42xl: 61px;
}


.scroll-up-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--blue-blue-500);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: none;
}
.scroll-up-button img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  color: #fff;
}
.scroll-up-button.show {
  display: block;
}

@media screen and (max-width: 992x) {
  .scroll-up-button {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 10px;
    height: 10px;
  }
  .scroll-up-button img {
    width: 7px;
    height: 7px;
  }
}
