html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "IBM Plex Sans", sans-serif;
  box-sizing: border-box;
  color: #777777;
  font-weight: 200;
}
html *, body * {
  box-sizing: border-box;
}

a, a:hover, a:visited {
  color: #38a5ae;
  text-decoration: none;
}

h1, h2, h3, h4, h5, strong, b {
  color: #222222;
}

h1, h2, h3, h4, h5 {
  font-family: "Lato", sans-serif;
  margin: 0;
}

.wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}
.wrap aside.sidebar {
  width: 265px;
  display: flex;
  flex-direction: column;
  padding: 35px;
  border-right: 1px solid #cccccc;
  background: #fcfcfc;
  box-shadow: -5px 0px 20px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.wrap aside.sidebar .logo {
  width: 300px;
  height: auto;
}
.wrap aside.sidebar .logo img {
  width: 100%;
  height: auto;
  display: block;
}
.wrap aside.sidebar ul.menu {
  display: inline-block;
  list-style: none;
  margin: 25px 0 0 0;
  padding: 0;
}
.wrap aside.sidebar ul.menu li.menu-item {
  display: block;
  list-style: none;
  clear: both;
  margin: 0;
  padding: 0;
}
.wrap aside.sidebar ul.menu li.menu-item + li {
  margin-top: 18px;
}
.wrap aside.sidebar ul.menu li.menu-item a {
  color: #222222;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 2px;
  font-weight: 400;
}
.wrap aside.sidebar ul.menu li.menu-item a:hover, .wrap aside.sidebar ul.menu li.menu-item a:focus, .wrap aside.sidebar ul.menu li.menu-item a:active {
  color: #38a5ae;
}
.wrap aside.sidebar a.cta {
  display: inline-block;
  padding: 15px 25px;
  margin-top: 25px;
  border-color: #38a5ae;
  border-style: solid;
  border-width: 1px;
  border-radius: 3px;
  color: #38a5ae;
  text-transform: uppercase;
  text-align: center;
}
.wrap aside.sidebar a.cta:hover, .wrap aside.sidebar a.cta:active, .wrap aside.sidebar a.cta:focus {
  background-color: #38a5ae;
  color: #ffffff;
  cursor: pointer;
}
.wrap aside.sidebar div.social {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  align-items: flex-end;
}
.wrap aside.sidebar div.social a.social-item {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  line-height: 30px;
  font-size: 30px;
  text-decoration: none;
  color: #cccccc;
}
.wrap aside.sidebar div.social a.social-item:active, .wrap aside.sidebar div.social a.social-item:focus {
  color: #38a5ae;
}
.wrap aside.sidebar div.social a.social-item[data-network=facebook]:hover {
  color: #3b5998;
}
.wrap aside.sidebar div.social a.social-item[data-network=linkedin]:hover {
  color: #0077b5;
}
.wrap section.content {
  flex: 1 1 auto;
  width: 100%;
  z-index: 1;
  flex-direction: column;
  gap: 70px;
  display: flex;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}
.wrap section.content div.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.wrap section.content div.section .section-title {
  font-size: 36px;
  line-height: 54px;
  margin: 0;
  text-align: center;
  font-weight: normal;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: #38a5ae;
  text-decoration-thickness: 3px;
}
.wrap .mobile-logo img {
  height: 64px;
  width: auto;
  margin: 6px;
}
.wrap .nogap {
  gap: 0 !important;
}
.wrap div.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1170px;
}
.wrap div.row.slim {
  max-width: 768px;
}
.wrap div.row .col {
  display: flex;
  flex-direction: column;
  flex: 1 1 100px;
  justify-content: center;
  justify-self: stretch;
  align-self: start;
  align-items: start;
  width: 100%;
  max-width: 1170px;
}

p + p {
  margin-top: 0;
}

p + ul, ul + p {
  margin-top: 0;
}

.title-small {
  font-size: 22px;
  padding-top: 1em;
}

.hero-random {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clear: both;
  width: 100%;
  background-size: 100% 100vh;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
}
.hero-random::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  backdrop-filter: grayscale(0.4) brightness(0.4) blur(25px);
  position: absolute;
}
.hero-random > * {
  z-index: 3;
}
.hero-random h1, .hero-random h2, .hero-random h3 {
  display: block;
  max-width: 1024px;
  margin: 0 auto;
  color: #ffffff;
  padding: 40px;
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.usp {
  display: flex;
  flex-direction: row;
}
.usp .icon {
  width: 64px;
  font-size: 36px;
  justify-content: start;
}
.usp .text {
  width: 100%;
}

.darker {
  background-color: #f7f7f7;
}

.dark {
  background-color: #343434;
  color: #ffffff;
}

.padding {
  padding: 15px;
}

.nopadding {
  padding: 0;
}

.rounded {
  border-radius: 15px;
}

ul.nomarkers {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.nomarkers li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.direction-row {
  flex-direction: row !important;
}

.space-evenly {
  justify-content: space-evenly !important;
}

.toggler {
  display: none;
  position: absolute;
  top: 5px;
  left: 5px;
  background: #ffffff;
  border-radius: 3px;
  width: 30px;
  height: 30px;
  z-index: 999;
  cursor: pointer;
  border: 1px solid #cccccc;
  color: #777777;
  line-height: 30px;
  text-align: center;
}

.copyright .col a {
  display: inline !important;
  flex: none;
}

#menu-toggle {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -100px;
}

.gap {
  gap: 30px;
}

.gap-small {
  gap: 0.5em;
}

@media (min-height: 641px) and (min-width: 1665px) {
  .hide-desktop {
    display: none !important;
  }
}
@media (max-height: 640px), (max-width: 1664px) {
  .hide-mobile {
    display: none !important;
  }

  .wrap aside.sidebar {
    display: none;
  }
  .wrap aside.sidebar .logo {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .wrap .toggler {
    display: block;
  }
  .wrap #menu-toggle:checked ~ aside.sidebar {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    overflow-y: auto;
  }
  .wrap #menu-toggle:checked ~ section.content {
    display: none;
  }
  .wrap section.content {
    gap: 10px;
  }
  .wrap section.content .section-title {
    font-size: 24px;
  }
  .wrap section.content div.section {
    gap: 5px;
  }
  .wrap section.content .col {
    flex: 1 1 200px;
  }
  .wrap section.content .row {
    padding: 0 5px;
  }
  .wrap section.content .hero-random h3 {
    font-size: 24px;
    padding: 4px;
  }
}

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