* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

/*
*::selection{
    background-color: #4388ef;
    color: black;
}
*/

html {
  line-height: 1.4;
  /*letter-spacing: 0.03em;*/
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: white;
  height: auto;
}

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

button {
  font-family: inherit;
  outline: none;
  user-select: none;
  background-color: transparent;
  cursor: pointer;
}

button:focus {
  outline: none;
}

input,
select {
  font-family: inherit;
}

select {
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg%20aria-hidden%3D%22true%22%20focusable%3D%22false%22%20data-prefix%3D%22fas%22%20data-icon%3D%22angle-down%22%20class%3D%22svg-inline--fa%20fa-angle-down%20fa-w-10%22%20role%3D%22img%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20320%20512%22%3E%3Cpath%20fill%3D%22currentColor%22%20d%3D%22M143%20352.3L7%20216.3c-9.4-9.4-9.4-24.6%200-33.9l22.6-22.6c9.4-9.4%2024.6-9.4%2033.9%200l96.4%2096.4%2096.4-96.4c9.4-9.4%2024.6-9.4%2033.9%200l22.6%2022.6c9.4%209.4%209.4%2024.6%200%2033.9l-136%20136c-9.2%209.4-24.4%209.4-33.8%200z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) 50%;
  background-size: 10px;
  padding-right: 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

select:focus {
  outline: none;
}

label {
  font-family: inherit;
}

a:visited {
  text-decoration: none;
}

.link {
  color: #4388ef;
  transition: 0.4s;
}

.link::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";

  font-size: 0.8em;
  width: 1em;
  height: 1em;
  margin: 0em 0.3em;
}

.link:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  .desktop {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  overflow: hidden;
  pointer-events: none;
}

.fixed-right {
  position: fixed;
  right: 0;
  top: 50%;
  bottom: 50%;
  z-index: 10;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cover {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  object-fit: cover;
}

.contain {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  object-fit: contain;
}

.shadow {
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.25);
}

nav {
  display: flex;
  justify-content: space-between;

  font-weight: 300;
  font-size: 18px;
}

.nav-links {
  display: flex;
  user-select: none;
}

.nav-links.left {
  justify-content: flex-start;
}

.nav-links.right {
  justify-content: flex-end;
}

.nav-links li {
  list-style: none;
}

.nav-links a:hover {
  background-color: var(--whiteOverlay);
  border-bottom: 4px solid var(--blueHover);
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 0em 1em;
  display: flex;
  align-items: center;
  text-align: center;
  font-weight: 200;
  min-height: 3em;
  transition: 0.1s;
}

.large-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1500px;
}

.medium-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.small-container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 900px;
}

section {
  position: relative;
  display: block;
}

.parallax {
  display: block;
  height: auto;
  background-attachment: fixed;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.center-all {
  position: relative;
  display: grid;
  place-items: center;
}

/*.center-all > *{
    margin: auto;
}*/

.center {
  margin-left: auto;
  margin-right: auto;
  align-content: center;
  align-self: center;
  text-align: center;
}

.flex-container {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
}

.flex-container-scrolling {
  -webkit-overflow-scrolling: touch;

  flex-direction: row;
  display: inline-flex;
  flex-wrap: nowrap;
  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scroll-snap-stop: always;

  height: auto;
  width: 100%;
}

.flex-container-scrolling > * {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/*Disable scrollbar for firefox */
.flex-container-scrolling.indicator {
  scrollbar-width: none;
}
/*Disable scrollbar for crome */
.flex-container-scrolling.indicator::-webkit-scrollbar {
  display: none;
}

.indicator-container {
  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 20px;
}

.indicator-container > span {
  color: white;
  border-radius: 50%;

  background-color: var(--whiteTransparent);
  height: 5px;
  width: 5px;
  margin: 4px;
}

.indicator-container > span.selected {
  background-color: var(--blueHover);
  height: 7px;
  width: 7px;
  margin: 4px 3px;
}

@media (hover: hover) and (pointer: fine) {
  /* Disable scroll menu on non touch Devices */

  .flex-container-scrolling {
    -webkit-overflow-scrolling: touch;

    flex-direction: row;
    display: inline-flex;
    flex-wrap: wrap;
    flex-grow: 5;
    overflow-x: auto;
  }

  .indicator-container {
    display: none;
  }
}

.removeMargin-10 {
  margin-left: -10px;
  margin-right: -10px;
}

.removeMargin-16 {
  margin-left: -16px;
  margin-right: -16px;
}

.grow {
  flex-grow: 1;
}

.flex-0-6 {
  width: 66%;
  min-width: 66%;
}

.flex-1 {
  width: 100%;
  min-width: 100%;
}

.flex-2 {
  width: 50%;
  min-width: 50%;
}

.flex-3 {
  width: 33.3%;
  min-width: 33.3%;
}

.flex-4 {
  width: 25%;
  min-width: 25%;
}

.flex-5 {
  width: 20%;
  min-width: 20%;
}

.flex-5-1 {
  width: 21.25%;
  min-width: 21.25%;
}

.flex-20 {
  width: 5%;
  min-width: 5%;
}

@media only screen and (max-width: 1200px) {
  .flex-0-6 {
    width: 100%;
    min-width: 100%;
  }

  .flex-3 {
    width: 50%;
    min-width: 50%;
  }

  .flex-4 {
    width: 50%;
    min-width: 50%;
  }

  .flex-5 {
    width: 40%;
    min-width: 40%;
  }

  .flex-5-1 {
    width: 40%;
    min-width: 40%;
  }
}

@media only screen and (max-width: 768px) {
  .flex-0-6 {
    width: 100%;
    min-width: 100%;
  }

  .flex-2 {
    width: 100%;
    min-width: 100%;
  }

  .flex-3 {
    width: 100%;
    min-width: 100%;
  }

  .flex-4 {
    width: 100%;
    min-width: 100%;
  }

  .flex-5 {
    width: 100%;
    min-width: 100%;
  }

  .flex-5-1 {
    width: 100%;
    min-width: 100%;
  }
}

.image {
  background-position: 50%;
  background-size: cover;
  background-color: grey;
}

.overflow-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.fill {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.blur-5 {
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  overflow: hidden;

  filter: blur(5px);
  z-index: -5;
}

.blur-10 {
  position: absolute;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  overflow: hidden;

  filter: blur(10px);
  z-index: -5;
}

form {
  flex-direction: column;
  justify-content: center;

  font-weight: 200;
}

label {
  display: block;
  text-align: left;
}

.fullscreen {
  height: 100dvh;
  overflow: none;
}

button {
  display: inline-block;
  border-style: none;
  padding: 0.5em;
  text-align: center;
  text-decoration: none;
}

button:hover {
  border-style: none;
  outline: none;
}
