* {
  box-sizing: border-box;
}
html,
body {
  margin: 0px 0px;
  padding: 0px 0px;
}
html {
  font-size: 16px;
  font-family: "Barlow", sans-serif;
  font-weight: 300;

  color: #212121;
}
body {
  text-align: left;
  max-width: 1440px;
  margin: auto;
}

a:hover,
a:visited,
a:active {
  color: unset;
}

/* layout */

.row {
  display: flex;
  flex-direction: row;
}
.col {
  display: flex;
  flex-direction: column;
}
.col-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.flex-1 {
  flex: 1;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}

.gap-12 {
  margin: -24px;
}
.gap-12 > div {
  padding: 24px;
}

.gap-4 {
  margin: -8px;
}
.gap-4 > div {
  padding: 8px;
}

.mt-2 {
  margin-top: 2px;
}
.mt-3 {
  margin-top: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-5 {
  margin-top: 20px;
}
.mt-6 {
  margin-top: 24px;
}
.mt-10 {
  margin-top: 40px;
}
.mt-20 {
  margin-top: 80px;
}
.ml-5 {
  margin-left: 20px;
}

.p-9 {
  padding: 36px;
}
.p-10 {
  padding: 40px;
}
.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}
.px-9 {
  padding-left: 36px;
  padding-right: 36px;
}
.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}
.py-45 {
  padding-top: 180px;
  padding-bottom: 180px;
}

.w-80pct {
  width: 80%;
}
.max-w {
  max-width: 800px;
}

.rounded {
  border-radius: 36px;
}
/* typography */

.sans {
  font-family: "Barlow", sans-serif;
  line-height: 150%;
}

.serif {
  font-family: "Oceanic-Text-woff2", "Oceanic-Text", serif;
  line-height: 150%;
}

.center {
  text-align: center;
}
.weight-regular {
  font-weight: 400;
}
.weight-medium {
  font-weight: 500;
}
.weight-bold {
  font-weight: 600;
}

/* elements */
.btn {
  display: inline-block;
  padding: 12px 36px;
  font-family: Inter, sans-serif;
  /* font-weight: 400; */
  font-size: 20px;
  border-radius: 32px;
  border: 1px solid #212121;
}
.btn.secondary {
  color: #212121;
}
.btn.secondary:hover {
  background-color: rgba(33, 33, 33, 0.2);
}
.btn.primary {
  background-color: #212121;
  color: #eeeeee;
}
.btn.primary:hover {
  background-color: #21453a;
  border-color: #21453a;
}
.btn.tertiary {
  background-color: #eeeeee;
  color: #212121;
}
.btn.tertiary:hover {
  background-color: #b2cdc5;
}

a.btn,
a.btn:active,
a.btn:visited,
a.btn:hover {
  text-decoration: none;
}

.home-section p {
  max-width: 820px;
}

hr {
  border: none;
  height: 2px;
  width: 50%;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.4) 60%,
    rgba(255, 255, 255, 0.12) 100%
  );
}
.logo {
  height: 56px;
}
.logo-grid-logo img {
  height: 42px;
}
.logo-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.logo-grid .logo-grid-logo {
  padding: 12px 24px;
}

.profo {
  width: 128px;
  height: 128px;
  border-radius: 128px;
  border: 6px solid white;
  box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
}
/* colors */
.bg-dark {
  background-color: #212121;
}
.bg-light {
  background-color: #eeeeee;
}
.color-light {
  color: #eeeeee;
}
.color-green {
  color: #6fb9a2;
}

.opacity-90 {
  opacity: 90%;
}

.bg-gradient-1 {
  background-image: radial-gradient(
    circle at 50% 0,
    #ebf9cb 0%,
    #9fd1c0 33%,
    #d5fcfe 100%
  );
  background-size: 200% 100%;
  animation: gradient-scroll 6s linear infinite;
}
@keyframes gradient-scroll {
  from {
    background-position: 0% 0px;
  }
  to {
    background-position: 200% 0px;
  }
}

.text-gradient-1 {
  background-image: linear-gradient(to right, #314171, #3c56a6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.inset-border {
  position: relative;
}

.case-study-card {
  background-color: #2b2a2a;
  padding: 12px;
}

.case-study-card .case-study-card-content {
  border: solid 1px transparent;
  border-radius: 24px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.case-study-card .case-study-card-content {
  background-size: 300% 300%, 100% 100%;
  background-image: linear-gradient(
      to right bottom,
      #2b2a2a,
      #2b2a2a,
      #344842,
      #0b0e0d
    ),
    radial-gradient(
      ellipse at top left,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(155, 26, 26, 0.2) 100%
    );
  background-position: 0 0, 0 0;
  transition: background-position ease-in-out 400ms;
}

.case-study-card.active .case-study-card-content:hover {
  background-position: 100% 100%;
}

.case-study-card-content img {
  transform: scale(1);
  transition: transform ease-in-out 400ms;
}
.case-study-card.active .case-study-card-content:hover img {
  transform: scale(1.05);
}

.case-study-card.inactive .case-study-card-content {
  opacity: 70%;
}

.box-shadow-white {
  box-shadow: 2px 2px 64px rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.box-shadow-dark {
  box-shadow: 0px 0px 36px rgba(0, 0, 0, 0.12);
}

/* responsivenes */
.height-screen {
  min-height: 90vh;
}
.px-page {
  padding-left: 16px;
  padding-right: 16px;
}

.xxl {
  font-size: 30px;
}
.xl {
  font-size: 22px;
}
.l {
  font-size: 22px;
}
.m {
  font-size: 18px;
}
.s {
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .xxl {
    font-size: 36px;
  }
  .xl {
    font-size: 26px;
  }
  .l {
    font-size: 22px;
  }
  .m {
    font-size: 18px;
  }
  .s {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .md\:mt-5 {
    margin-top: 20px;
  }
  .md\:mt-6 {
    margin-top: 24px;
  }
  .md\:p-30 {
    padding: 120px;
  }
  .md\:px-12 {
    padding-left: 48px;
    padding-right: 48px;
  }
  .md\:row {
    display: flex;
    flex-direction: row;
  }
  .px-page {
    padding-left: 36px;
    padding-right: 36px;
  }
}

@media (min-width: 1024px) {
  .xxl {
    font-size: 56px;
    line-height: 130% !important;
  }
  .xl {
    font-size: 32px;
  }
  .l {
    font-size: 26px;
  }
  .m {
    font-size: 24px;
  }
  .s {
    font-size: 18px;
  }
  .px-page {
    padding-left: 120px;
    padding-right: 120px;
  }
}
@media (min-width: 1024px) {
  .lg\:mt-5 {
    margin-top: 20px;
  }
  .lg\:mt-10 {
    margin-top: 40px;
  }
  .lg\:mt-20 {
    margin-top: 80px;
  }

  .lg\:row {
    display: flex;
    flex-direction: row;
  }

  .lg\:py-32 {
    padding-top: 128px;
    padding-bottom: 128px;
  }
  .lg\:px-24 {
    padding-left: 76px;
    padding-right: 76px;
  }
}
