/* ==========================================================================
general style
========================================================================== */
.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  background-image: url("../imgs/general/bg-pattern.svg");
  background-position: 50% 0%;
  background-size: auto 800px;
  background-repeat: repeat-x;
  background-attachment: scroll;
  font-family: Sora, sans-serif;
  color: #2B2B2B;
  font-size: 1.094rem;
  line-height: 1.75rem;
  font-weight: 400;
}

img {
  display: inline-block;
}

.navbar {
  position: fixed;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  background-color: #fff;
  box-shadow: 0 10px 50px 0 rgba(74, 144, 226, 0.08);
}

.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  color: #64adff;
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
}

.brand:hover {
  opacity: 0.6;
}

.brand:active {
  opacity: 0.3;
}

.brand.w--current {
  cursor: default;
}

.brand.w--current:hover {
  opacity: 1;
}

.brand.w--current:active {
  opacity: 1;
}

.nav-link {
  padding: 9px 16px;
  border-radius: 20px;
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  color: #002f70;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.nav-link:hover {
  opacity: 0.6;
  text-decoration: none;
}

.nav-link:active {
  opacity: 0.3;
}

.nav-link-contact {
  margin-left: 16px;
  padding-top: 9px;
  padding-bottom: 9px;
  border-radius: 12px;
  background-color: #75fac8;
  background-image: -webkit-gradient(linear, left top, right top, from(#c2fbe6), to(#4eedb1));
  background-image: linear-gradient(90deg, #c2fbe6, #4eedb1);
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  font-size: 0.875rem;
  line-height: 20px;
}

.nav-link-contact:hover {
  opacity: 0.6;
}

.nav-link-contact:active {
  opacity: 0.3;
}

.nav-link-contact.w--current:active {
  opacity: 0.8;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 17px;
}

.menu-content {
  width: 100%;
  /* max-width: 1112px; */
  margin-right: 28px;
  margin-left: 28px;
}

.head-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 679px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.head-text.utility {
  max-width: 850px;
  margin-top: 200px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 64px;
  margin-left: 64px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.content-container.projects {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content-container.privacy {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.content.footer {
  width: 100%;
  max-width: 1112px;
  margin-bottom: 28px;
}

.divider {
  height: 1px;
  background-color: #e0efff;
}

.socials {
  margin-left: 16px;
}

.social-button {
  margin-right: 16px;
  margin-left: 16px;
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
}

.social-button:hover {
  opacity: 0.6;
}

.social-button:active {
  opacity: 0.3;
}

.button {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 12px;
  background-color: #75fac8;
  background-image: linear-gradient(135deg, #c2fbe6, #4eedb1);
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  color: #002f70;
}

.button:hover {
  opacity: 0.6;
}

.button:active {
  opacity: 0.3;
}

.button._404 {
  margin-top: 40px;
  margin-bottom: 200px;
}

.button.project {
  background-color: hsla(0, 0%, 100%, 0.3);
  background-image: none;
  color: #fff;
}

.button.project.dark {
  background-color: rgba(26, 68, 126, 0.15);
  color: #002f70;
}

.button.project.dark.resume {
  display: none;
  margin-right: 16px;
}

.button.project.coming-soon {
  opacity: 0.3;
}

._404-headline {
  color: #002f70;
  font-size: 140px;
  line-height: 168px;
  font-weight: 800;
}

.form {
  display: block;
}

.logo-text {
  font-size: 1.368rem;
  line-height: 2.25rem;
}

.project-container {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  max-width: 1112px;
  margin-bottom: 80px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  border-radius: 16px;
  -webkit-transition: height 200ms ease, width 200ms ease;
  transition: height 200ms ease, width 200ms ease;
}

.project-container:hover {
  width: 99%;
  opacity: 0.9;
}

.project-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 30%;
  margin-bottom: 68px;
  margin-left: 6.5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.project-text.right {
  margin-right: 6.5%;
  margin-left: 0px;
}

.project-image-container {
  max-height: 510px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.paragraph-contact {
  margin-bottom: 40px;
  font-size: 1.368rem;
  line-height: 2.25rem;
  text-align: left;
}

.detailpage-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 80px;
  margin-bottom: 160px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.detail-head-left {
  max-width: 530px;
  margin-right: 149px;
}

.detail-head-right {
  max-width: 433px;
}

.facts-details {
  margin-bottom: 32px;
  color: #666;
}

.challenge-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.detailview-image {
  max-width: 801px;
}

.styleguide-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.image-solution {
  max-height: 1200px;
}

.detail-copy {
  width: 530px;
  color: #666;
}

.body-details {
  background-image: none;
  background-position: 0px 0px;
  background-size: auto;
  background-repeat: repeat;
  background-attachment: scroll;
}

.get-in-touch {
  display: block;
}

.webflow-link {
  color: #64adff;
}

.link-webflow {
  border-style: solid;
  border-width: 0px 0px 1px;
  border-color: #000 #000 #64adff;
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  color: #64adff;
}

.link-webflow:hover {
  opacity: 0.6;
}

.link-webflow:active {
  opacity: 0.3;
}

.color-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* .color {
  margin-top: 40px;
  margin-right: 26px;
  margin-left: 26px;
} */
.color-gold {
  width: 142px;
  height: 142px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #42C3CF;
}

.description-headline {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.description-subline {
  margin-top: 4px;
  color: #666;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.color-dark {
  width: 142px;
  height: 142px;
  border-radius: 10px;
  background-color: #194A5D;
}

.color-white {
  width: 142px;
  height: 142px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #fff;
}

.color-pastel {
  width: 142px;
  height: 142px;
  margin-bottom: 20px;
  border-radius: 10px;
  background-color: #F7F6FB;
}

.description {
  margin-top: 20px;
}

.typo-container {
  margin-top: 100px;
  margin-bottom: 120px;
}

.image-dlm-headline {
  margin-bottom: 20px;
}

.image-dlm-title {
  margin-top: 60px;
}

.image-9 {
  margin-top: 60px;
  margin-bottom: 20px;
}

.image-dlm-logo {
  margin-top: 100px;
}

.image-dlm-icons {
  margin-top: 50px;
  margin-bottom: 120px;
  border-radius: 16px;
  border: 2px solid #dddddd;
}

.link-contact {
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  color: #002f70;
}

.link-contact:hover {
  opacity: 0.6;
}

.link-contact:active {
  opacity: 0.3;
}

/* ==========================================================================
casestudy
========================================================================== */
.project-container.casestudy {
  margin-top: 48px;
  background-color: #0393ff;
  background-image: none;
}

.project-teaser.casestudy {
  background-image: -webkit-gradient(linear, left top, right top, from(#0094ff), to(#0070c1));
  background-image: linear-gradient(90deg, #0094ff, #0070c1);
}

.color-casestudy {
  color: #60b9c9;
}

/* ==========================================================================
Eventora
========================================================================== */
.project-container.reversed.eventora {
  background-color: #b1a799;
}

.project-teaser.eventora {
  background-color: #bcb3a4;
  background-image: -webkit-gradient(linear, left top, right top, from(#c6beb1), to(#b1a898));
  background-image: linear-gradient(90deg, #c6beb1, #b1a898);
}

/* ==========================================================================
Side Projects
========================================================================== */
.project-container.ui-kits {
  height: 480px;
  background-color: #f3f4fd;
  background-image: url("../imgs/general/uikits-icon.png"), url("../imgs/general/uikits-background.jpg");
  background-position: 17% 9%, 0% 50%;
  background-size: 96px, cover;
  background-repeat: no-repeat, no-repeat;
  box-shadow: none;
}

.project-container.ui-kits.mockups {
  height: 480px;
  background-color: #f3f4fd;
  background-image: url("../imgs/general/mockups-icon.png"), url("../imgs/general/mockups-background.jpg");
  background-position: 17% 9%, 0% 50%;
  background-size: 96px, cover;
  background-repeat: no-repeat, no-repeat;
  box-shadow: none;
}

.project-container.mockups {
  height: 480px;
  background-color: #00285f;
  background-image: url("../imgs/general/mockups-icon.png"), url("../imgs/general/mockups-background.jpg");
  background-image: url("../imgs/general/mockups-bg.png"), url("../imgs/general/mockups-logo.png"), linear-gradient(315deg, #002252, #002d6c);
  background-position: 100% 100%, 0px 0px, 0px 0px;
  background-position: 17% 9%, 0% 50%;
  background-size: 530px, 199px, auto;
  background-size: 96px, cover;
  background-repeat: no-repeat, no-repeat, repeat;
  box-shadow: none;
}

.side-projects-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* ==========================================================================
Skills
========================================================================== */
.skill-grid {
  width: 100%;
  grid-column-gap: 52px;
  grid-row-gap: 24px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
}

.skill {
  width: 100%;
}

.skill-strength {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.skill-name {
  width: 100%;
  margin-top: 10px;
  text-align: left;
}

.skill-bar {
  height: 8px;
  border-radius: 20px;
  background-image: -webkit-gradient(linear, left top, right top, from(#a3ceff), to(#64adff));
  background-image: linear-gradient(90deg, #a3ceff, #64adff);
}

.skill-bar._90 {
  width: 80%;
}

.skill-bar._60 {
  width: 70%;
}

.skill-bar._50 {
  width: 50%;
}

.skill-bar._40 {
  width: 40%;
}

.skill-bar._30 {
  width: 30%;
}

.skill-bar._20 {
  width: 20%;
}

.skill-bar._10 {
  width: 10%;
}

.skill-bar._80 {
  width: 80%;
}

.skill-bar-bg {
  width: 78%;
  height: 8px;
  margin-right: 10px;
  border-radius: 20px;
  background-color: #e5f3ff;
}

.skill-percentage {
  width: 46px;
  color: #64adff;
  font-size: 15px;
  line-height: 16px;
  text-align: left;
}

.skill-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 48px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.skills-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 160px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* ==========================================================================
Footer
========================================================================== */
.cta-header {
  display: none;
  margin-right: 36px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.footer-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  /* margin-top: 160px; */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-text {
  -webkit-transition: opacity 150ms ease;
  transition: opacity 150ms ease;
  color: rgba(0, 47, 112, 0.5);
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.footer-text:hover {
  opacity: 0.6;
}

.footer-text:active {
  opacity: 0.3;
}

.footer-text.blue {
  color: #64adff;
}

.footer-text.copyright:hover {
  opacity: 1;
}

.footer-divider {
  width: 2px;
  height: 20px;
  margin-right: 16px;
  margin-left: 16px;
  border-radius: 2px;
  background-color: rgba(33, 67, 107, 0.16);
}

/* /////////////end/////////////// */
.cta-header.contact {
  display: none;
}

.work-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 110px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.introduction-text {
  font-size: 1.368rem;
  line-height: 2.25rem;
  text-align: left;
  margin-bottom: 1rem;
}

.project-description {
  margin-bottom: 40px;
  color: hsla(0, 0%, 100%, 0.75);
  text-align: left;
  max-width: 98%;
}

.project-description.dark {
  color: rgba(0, 47, 112, 0.8);
}

.head-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 388px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.button-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.button-box.contact {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.stage-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 198px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 220px;
  margin-bottom: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.dark {
  color: rgba(0, 47, 112, 0.9);
}

.project-image-desktop {
  border-radius: 16px;
}

.centered {
  text-align: center;
}

._404-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 679px;
  margin-top: 280px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

._404-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 110px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.detail-page-content.top {
  margin-top: -65px;
}

.teaser-spacer {
  width: 6%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.profile-illustration-1 {
  position: absolute;
  z-index: 102;
}

.profile-illustration-0 {
  position: static;
}

.profile-illustration-2 {
  position: absolute;
  z-index: 101;
}

.profile-illustration-3 {
  position: absolute;
  z-index: 100;
}

.profile-illustration {
  display: none;
}

.cta-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-text {
  margin-left: 52px;
}

.keep-in-touch-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 56px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.contact-content-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.h1-contact {
  font-size: 2.67rem;
  line-height: 3rem;
}

.case-study-introduction {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 64px;
  margin-left: 64px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.case-study-headline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 152px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.case-study-teaser {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 72px;
  margin-bottom: 100px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.case-study-teaser-text {
  max-width: 724px;
  color: #333;
  font-size: 1.368rem;
  line-height: 2.25rem;
}

.intro-teaser-left {
  width: 47.6%;
  margin-right: 13.4%;
}

.case-study-teaser-image-container {
  width: 100%;
  max-width: 1358px;
  margin-top: 56px;
  border-radius: 16px;
}

.case-study-content-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 64px;
  margin-left: 64px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.case-study-content-container.last {
  margin-bottom: 200px;
}

.case-study-content-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 200px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: center;
  text-align: center;
}

.case-study-copy {
  width: 47.6%;
  width: 67.6%;
  color: #666;
}

.second-title {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

/* ==========================================================================
casestudy 2 - start
========================================================================== */
.case-image-casestudy-challenge {
  /* width: 100%; */
  max-width: 910px;
  margin-top: 72px;
  background-image: url("../imgs/casestudy/challenge-desktop.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ==========================================================================
casestudy 2 - end
========================================================================== */
.h2-cases {
  color: #333;
}

.h2-cases.center {
  text-align: center;
}

/* ==========================================================================
casestudy 3 - start
========================================================================== */
.case-image-casestudy-solution {
  width: 100%;
  max-width: 1112px;
  margin-top: 72px;
  border-radius: 16px;
  background-image: url("../imgs/casestudy/solution-desktop.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.case-image-casestudy-design-system {
  width: 100%;
  max-width: 1112px;
  margin-top: 72px;
  border-radius: 16px;
  background-image: url("../imgs/casestudy/design-system-desktop.gif");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #dddddd;
}

.image-dlm-headline {
  width: 100%;
  max-width: 1112px;
  margin-top: 72px;
  border-radius: 16px;
  background-image: url("../imgs/casestudy/brand-headlines-desktop.gif");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: contain;
  border: 2px solid #dddddd;
}

.case-image-casestudy-components {
  width: 100%;
  max-width: 1112px;
  margin-top: 72px;
  border-radius: 16px;
  background-image: url("../imgs/casestudy/components-desktop.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.case-image-casestudy-result {
  width: 100%;
  max-width: 1112px;
  margin-top: 72px;
  border-radius: 16px;
  background-image: url("../imgs/casestudy/result-desktop.jpg");
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ==========================================================================
casestudy 3 - end
========================================================================== */
.img-hero-mobile-landscape {
  display: none;
}

.img-hero-mobile {
  display: none;
}

.img-hero-tablet {
  display: none;
}

.project-image-tablet {
  display: none;
}

.project-image-mobile-landscape {
  display: none;
}

.project-image-mobile-portrait {
  display: none;
}

.project-image-prev-next-mobile {
  display: none;
  border-radius: 16px 16px 0px 0px;
}

.contact-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 64px;
  margin-left: 64px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.side-projects {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1112px;
  margin-top: 48px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.side-project-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 320px;
  margin-right: 8%;
  margin-bottom: 15%;
  margin-left: 14%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.img-hero-desktop-bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 39px;
  border-radius: 16px;
}

/* ==========================================================================
casestudy 4 - start
========================================================================== */
.img-hero-desktop-bg.casestudy {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(22%, #60b9c9), color-stop(32%, #60b9c9));
  background-image: linear-gradient(90deg, #60b9c9 22%, #60b9c9 32%);
}

/* ==========================================================================
casestudy 4 - end
========================================================================== */
.contact-image {
  border-radius: 16px;
}

@media screen and (max-width: 991px) {
  body {
    background-size: auto 600px;
    font-size: 0.957rem;
    line-height: 1.531rem;
  }

  h1 {
    font-size: 2.919rem;
    line-height: 3.5rem;
  }

  h2 {
    margin-bottom: 20px;
    font-size: 1.868rem;
    line-height: 2.4rem;
  }

  h3 {
    margin-bottom: 24px;
    font-size: 1.868rem;
    line-height: 2.4rem;
  }

  h4 {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 1.196rem;
    line-height: 1.969rem;
  }

  h6 {
    font-size: 0.765rem;
    line-height: 1.094rem;
  }

  p {
    font-size: 0.957rem;
    line-height: 1.531rem;
  }

  .navbar {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .brand {
    padding-right: 0px;
    padding-left: 0px;
  }

  .nav-link {
    padding: 20px 24px;
    border-radius: 0px;
    background-color: #fff;
    -webkit-transition-property: none;
    transition-property: none;
    font-size: 18px;
    line-height: 23px;
  }

  .nav-link-contact {
    margin-left: 0px;
    padding: 20px 24px;
    background-color: #fff;
    background-image: none;
    -webkit-transition-property: none;
    transition-property: none;
    font-size: 18px;
    line-height: 23px;
  }

  .nav-menu {
    position: absolute;
    display: none;
    height: auto;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 10px 60px 0 rgba(74, 144, 226, 0.1);
  }

  .menu-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 0px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .menu-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 58px;
    height: 56px;
    padding: 11px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url("../imgs/general/btn-menu.png");
    background-position: 50% 50%;
    background-size: 18px;
    background-repeat: no-repeat;
  }

  .menu-button.w--open {
    background-color: #fff;
    background-image: url("../imgs/general/btn-close.png");
    background-size: 14px;
  }

  .head-text {
    width: 60%;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .head-text.utility {
    width: 100%;
    margin-top: 160px;
  }

  .content-container {
    margin-right: 8%;
    margin-left: 8%;
  }

  .content.footer {
    margin-bottom: 40px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .socials {
    margin-top: 24px;
    margin-left: 0px;
  }

  .button._404 {
    margin-bottom: 160px;
  }

  ._404-headline {
    font-size: 120px;
    line-height: 150px;
  }

  .project-container {
    margin-top: 40px;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: #64adff;
  }

  .project-container.reversed {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* ==========================================================================
  casestudy 5 - start
  ========================================================================== */
  .project-container.casestudy {
    margin-top: 40px;
  }

  /* ==========================================================================
  casestudy 5 - end
  ========================================================================== */
  .project-containerui-kit {
    height: auto;
    background-position: 10% 12%, 0% 50%;
  }

  .project-container.mockups {
    height: auto;
  }

  .project-text {
    width: 50%;
    margin: 40px 8% 9%;
  }

  .project-text.right {
    width: 50%;
    margin-right: 8%;
    margin-left: 8%;
    text-align: center;
  }

  .project-image-container {
    height: auto;
    max-height: none;
    max-width: 100%;
    min-height: auto;
    margin-right: 0%;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .paragraph-contact {
    font-size: 1.196rem;
    line-height: 1.969rem;
    text-align: center;
  }

  .detailpage-head {
    margin-bottom: 120px;
  }

  .detail-head-left {
    max-width: 720px;
    margin-right: 64px;
  }

  .facts-details {
    font-size: 0.957rem;
    line-height: 1.531rem;
  }

  .challenge-container {
    margin-top: 100px;
    margin-bottom: 0px;
  }

  .detailview-image {
    max-width: 100%;
  }

  .description-headline {
    font-size: 0.765rem;
    line-height: 1.094rem;
  }

  .description-subline {
    font-size: 0.765rem;
    line-height: 1.094rem;
  }

  .footer-container {
    padding-right: 28px;
    padding-left: 28px;
  }

  .skill-grid {
    grid-column-gap: 48px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
  }

  .skill-bar-bg {
    width: 86%;
  }

  .skill-container {
    margin-top: 60px;
  }

  .cta-header {
    margin-bottom: 24px;
  }

  .cta-header.contact {
    margin-right: 0px;
  }

  .footer-menu {
    /* margin-top: 80px; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-links {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }

  .work-content {
    margin-top: 100px;
  }

  .introduction-text {
    font-size: 1.196rem;
    line-height: 1.969rem;
  }

  .head-image {
    position: static;
    width: 40%;
    height: auto;
  }

  .button-box {
    max-width: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .button-box.contact {
    max-width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .stage-content {
    margin-top: 168px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .skills-content {
    margin-top: 160px;
  }

  .contact-content {
    margin-top: 200px;
  }

  .project-image-desktop {
    display: none;
    height: auto;
    max-height: none;
    min-height: auto;
  }

  ._404-text {
    width: 80%;
    margin-top: 213px;
  }

  .detail-page-content {
    margin-top: 100px;
  }

  .profile-illustration-1 {
    display: none;
  }

  .profile-illustration-0 {
    display: none;
  }

  .profile-illustration-2 {
    display: none;
  }

  .profile-illustration-3 {
    display: none;
  }

  .profile-illustration {
    display: block;
    width: 100%;
    height: 100%;
  }

  .cta-buttons {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .contact-text {
    margin-top: 56px;
    margin-left: 0px;
  }

  .keep-in-touch-container {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .contact-content-top {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .h1-contact {
    font-size: 2.3357rem;
    line-height: 2.813rem;
    text-align: center;
  }

  .case-study-introduction {
    margin-right: 0px;
    margin-left: 0px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  .case-study-headline {
    width: 84%;
    margin-right: 8%;
    margin-left: 8%;
  }

  .h1-subline {
    font-size: 2.335rem;
    line-height: 2.813rem;
  }

  .case-study-teaser {
    width: 84%;
    margin: 62px 8% 40px;
  }

  .case-study-teaser-text {
    font-size: 1.196rem;
    line-height: 1.969rem;
  }

  .intro-teaser-left {
    width: 80%;
    margin-right: 10%;
  }

  .case-study-teaser-image-container {
    margin-top: 50px;
    border-radius: 0px;
  }

  .case-study-content-container {
    margin-right: 8%;
    margin-left: 8%;
  }

  .case-study-content-container.last {
    margin-bottom: 160px;
  }

  .case-study-content-text {
    margin-top: 120px;
  }

  .case-study-copy {
    width: 50%;
    width: 70%;
  }

  /* ==========================================================================
  casestudy 6 - start
  ========================================================================== */
  .case-image-casestudy-challenge {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/challenge-desktop.jpg");
  }

  .case-image-casestudy-solution {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/solution-desktop.jpg");
  }

  .case-image-casestudy-design-system {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/design-system-desktop.gif");
  }

  .image-dlm-headline {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/brand-headlines-desktop.gif");
    background-size: contain;
  }

  .case-image-casestudy-components {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/components-tablet.jpg");
  }

  .case-image-casestudy-landing-page {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/landing-page-tablet.jpg");
  }

  .case-image-casestudy-result {
    margin-top: 50px;
    background-image: url("../imgs/casestudy/result-desktop.jpg");
  }

  /* ==========================================================================
  casestudy 6 - end
  ========================================================================== */
  .img-hero-desktop {
    display: none;
  }

  .img-hero-tablet {
    display: inline-block;
  }

  .project-image-tablet {
    display: inline-block;
    height: auto;
    max-height: none;
    min-height: auto;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }

  .project-image-mobile-landscape {
    height: auto;
    max-height: none;
    min-height: auto;
  }

  .project-image-mobile-portrait {
    height: auto;
    max-height: none;
    min-height: auto;
  }

  .project-image-prev-next-mobile {
    display: none;
    height: auto;
    max-height: none;
    min-height: auto;
  }

  .contact-container {
    margin-right: 8%;
    margin-left: 8%;
  }

  .side-projects {
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .side-project-text {
    width: 50%;
    margin: 120px 8% 9%;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 0.82rem;
    line-height: 1.313rem;
  }

  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  h2 {
    margin-bottom: 16px;
    font-size: 1.6rem;
    line-height: 2.063rem;
  }

  h3 {
    margin-bottom: 12px;
    font-size: 1.6rem;
    line-height: 2.063rem;
  }

  h4 {
    margin-top: 32px;
    font-size: 1.025rem;
    line-height: 1.688rem;
  }

  h5 {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 27px;
  }

  h6 {
    margin-bottom: 4px;
    font-size: 0.656rem;
    line-height: 0.938rem;
    text-align: left;
  }

  p {
    font-size: 0.82rem;
    line-height: 1.313rem;
  }

  .brand {
    height: 56px;
    -webkit-transition-property: none;
    transition-property: none;
  }

  .brand:hover {
    opacity: 1;
  }

  .nav-link {
    padding: 20px 24px;
    border-radius: 0px;
    background-color: #fff;
    -webkit-transition-property: none;
    transition-property: none;
    font-size: 18px;
    line-height: 23px;
  }

  .nav-link:hover {
    background-color: #fff;
  }

  .nav-link.w--current {
    border-radius: 0px;
    font-size: 18px;
    line-height: 23px;
  }

  .nav-link-contact {
    margin-left: 0px;
    padding: 20px 24px;
    border-radius: 0px;
    background-color: #fff;
    background-image: none;
    -webkit-transition-property: none;
    transition-property: none;
    color: #002f70;
    font-size: 18px;
    line-height: 23px;
  }

  .nav-link-contact:hover {
    background-color: #fff;
    color: #002f70;
  }

  .nav-menu {
    position: absolute;
    display: none;
    height: auto;
    padding-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 10px 60px 0 rgba(74, 144, 226, 0.1);
  }

  .menu-content {
    margin-right: 0px;
  }

  .menu-button {
    width: 58px;
    height: 56px;
    padding: 11px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url("../imgs/general/btn-menu.png");
    background-position: 50% 50%;
    background-size: 18px;
    background-repeat: no-repeat;
  }

  .menu-button.w--open {
    width: 58px;
    background-color: #fff;
    background-image: url("../imgs/general/btn-close.png");
    background-position: 50% 50%;
    background-size: 14px;
    background-repeat: no-repeat;
  }

  .head-text {
    width: 100%;
    max-width: none;
  }

  .head-text.utility {
    width: 100%;
    margin-top: 120px;
  }

  .content-container {
    margin-right: 8%;
    margin-left: 8%;
  }

  .social-button {
    -webkit-transition-property: none;
    transition-property: none;
  }

  .social-button:hover {
    opacity: 1;
  }

  .button {
    padding-right: 28px;
    padding-left: 28px;
    -webkit-transition-property: none;
    transition-property: none;
  }

  .button:hover {
    opacity: 1;
  }

  .button._404 {
    margin-top: 32px;
    margin-bottom: 120px;
  }

  ._404-headline {
    font-size: 110px;
    line-height: 130px;
  }

  .logo-text {
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .project-container {
    margin-bottom: 0px;
    border-radius: 12px;
  }

  .project-container:hover {
    width: 100%;
  }

  .project-container.casestudy {
    margin-top: 36px;
  }

  .project-containerui-kit {
    margin-top: 36px;
  }

  .project-text {
    width: 66%;
    margin-top: 6%;
    margin-bottom: 10%;
  }

  .project-text.right {
    width: 66%;
  }

  .paragraph-contact {
    font-size: 1.025rem;
    line-height: 1.688rem;
  }

  .detailpage-head {
    margin-top: 60px;
    margin-bottom: 84px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .detail-head-left {
    max-width: 100%;
    margin-right: 0px;
    text-align: center;
  }

  .detail-head-right {
    max-width: 100%;
    margin-top: 48px;
    text-align: center;
  }

  .facts-details {
    margin-bottom: 20px;
    font-size: 0.82rem;
    line-height: 1.313rem;
    text-align: left;
  }

  .challenge-container {
    margin-top: 80px;
    margin-bottom: 20px;
  }

  .detail-copy {
    width: 100%;
  }

  .color-container {
    margin-top: 10px;
  }

  .color {
    margin-top: 30px;
  }

  .color-gold {
    width: 120px;
    height: 120px;
  }

  .description-headline {
    font-size: 0.656rem;
    line-height: 0.938rem;
  }

  .description-subline {
    font-size: 0.656rem;
    line-height: 0.938rem;
  }

  .color-dark {
    width: 120px;
    height: 120px;
  }

  .color-white {
    width: 120px;
    height: 120px;
  }

  .color-pastel {
    width: 120px;
    height: 120px;
  }

  .typo-container {
    margin-top: 80px;
    margin-bottom: 20px;
  }

  .image-dlm-title {
    margin-top: 40px;
  }

  .image-9 {
    margin-top: 40px;
  }

  .image-dlm-logo {
    width: 300px;
    margin-top: 80px;
  }

  .image-dlm-icons {
    /* width: 80%; */
    margin-bottom: 60px;
  }

  .footer-container {
    padding-right: 28px;
    padding-left: 28px;
  }

  .link-contact {
    -webkit-transition-property: none;
    transition-property: none;
  }

  .skill-grid {
    margin-top: 8px;
    grid-column-gap: 32px;
    grid-row-gap: 18px;
    -ms-grid-columns: minmax(160px, 3fr) minmax(160px, 3fr);
    grid-template-columns: minmax(160px, 3fr) minmax(160px, 3fr);
  }

  .skill-name {
    margin-top: 6px;
  }

  .skill-bar {
    height: 8px;
  }

  .skill-bar-bg {
    width: 82%;
    height: 8px;
  }

  .skill-percentage {
    font-size: 15px;
  }

  .skill-container {
    margin-top: 36px;
  }

  .cta-header {
    margin-right: 24px;
    margin-bottom: 0px;
  }

  .cta-header.contact {
    margin-bottom: 24px;
  }

  .footer-menu {
    /* margin-top: 80px; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer-text {
    font-size: 0.765rem;
    line-height: 1.094rem;
  }

  .work-content {
    margin-top: 80px;
  }

  .introduction-text {
    font-size: 1.025rem;
    line-height: 1.688rem;
  }

  .head-image {
    width: 50%;
    height: 47.353106%;
    margin-top: 56px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .button-box {
    width: 100%;
    max-width: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .button-box.contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .stage-content {
    margin-top: 140px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .skills-content {
    margin-top: 120px;
  }

  .contact-content {
    margin-top: 160px;
  }

  ._404-text {
    width: 100%;
    max-width: none;
    margin-top: 200px;
  }

  .detail-page-content {
    margin-top: 80px;
  }

  .profile-illustration {
    width: 100%;
    height: 100%;
  }

  .h1-contact {
    font-size: 2rem;
    line-height: 2.375rem;
  }

  .case-study-headline {
    margin-top: 148px;
  }

  .h1-subline {
    font-size: 2rem;
    line-height: 2.375rem;
  }

  .case-study-teaser {
    margin-top: 58px;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .case-study-teaser-text {
    font-size: 1.025rem;
    line-height: 1.688rem;
    text-align: left;
  }

  .intro-teaser-right {
    width: 100%;
  }

  .intro-teaser-left {
    width: 100%;
    margin-right: 0%;
  }

  .case-study-teaser-image-container {
    margin-top: 46px;
  }

  .case-study-content-container {
    margin-right: 8%;
    margin-left: 8%;
  }

  .case-study-content-container.last {
    margin-bottom: 120px;
  }

  .case-study-content-text {
    margin-top: 92px;
  }

  .case-study-copy {
    width: 100%;
  }

  /* ==========================================================================
  casestudy 7 - start
  ========================================================================== */
  .case-image-casestudy-challenge {
    margin-top: 40px;
    background-image: url("../imgs/casestudy/challenge-desktop.jpg");
  }

  .case-image-casestudy-solution {
    margin-top: 40px;
    border-radius: 12px;
    background-image: url("../imgs/casestudy/solution-desktop.jpg");
  }

  .case-image-casestudy-design-system {
    margin-top: 40px;
    border-radius: 12px;
    background-image: url("../imgs/casestudy/design-system-desktop.gif");
  }

  .image-dlm-headline {
    margin-top: 40px;
    border-radius: 12px;
    background-image: url("../imgs/casestudy/brand-headlines-desktop.gif");
    background-size: contain;
  }

  .case-image-casestudy-components {
    margin-top: 40px;
    border-radius: 12px;
    background-image: url("../imgs/casestudy/components-mobile-landscape.jpg");
  }

  .case-image-casestudy-landing-page {
    margin-top: 40px;
    border-radius: 12px;
    background-image: url("../imgs/casestudy/landing-page-mobile-landscape.jpg");
  }

  .case-image-casestudy-result {
    margin-top: 40px;
    border-radius: 12px;
    background-image: url("../imgs/casestudy/result-desktop.jpg");
  }

  /* ==========================================================================
  casestudy 7 - end
  ========================================================================== */
  .img-hero-mobile-landscape {
    display: inline-block;
  }

  .img-hero-tablet {
    display: none;
  }

  .project-image-tablet {
    display: none;
  }

  .project-image-mobile-landscape {
    display: inline-block;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }

  .project-image-prev-next-mobile {
    border-radius: 12px 12px 0px 0px;
  }

  .contact-container {
    margin-right: 8%;
    margin-left: 8%;
  }

  .side-project-text {
    width: 66%;
    margin-top: 120px;
    margin-bottom: 10%;
  }

  .contact-image {
    border-radius: 12px;
  }
}

@media screen and (max-width: 479px) {
  body {
    background-size: auto 500px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 2.375rem;
  }

  h3 {
    margin-top: 8px;
  }

  h5 {
    margin-bottom: 16px;
  }

  a {
    color: #64adff;
  }

  .nav-link {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-link-contact {
    padding-right: 20px;
    padding-left: 20px;
  }

  .menu-content {
    margin-left: 20px;
  }

  .head-text {
    max-width: none;
  }

  .head-text.utility {
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .content-container {
    margin-right: 0%;
    margin-left: 0%;
  }

  .content-container.projects {
    margin-right: 0px;
    margin-left: 0px;
  }

  .content.footer {
    width: 90%;
    margin-top: 0px;
    margin-bottom: 28px;
  }

  .socials {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .social-button {
    margin-right: 24px;
    margin-left: 0px;
  }

  .button {
    width: 100%;
  }

  .button._404 {
    margin-bottom: 100px;
  }

  .button.project.dark.resume {
    margin-top: 16px;
    margin-right: 0px;
    margin-left: 0px;
  }

  ._404-headline {
    font-size: 80px;
    line-height: 100px;
  }

  .error {
    background-position: 50% 34px, 50% 0%;
    background-size: 610px, auto 800px;
  }

  .project-container {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 0px;
  }

  /* ==========================================================================
  casestudy 8 - start
  ========================================================================== */
  .project-container.casestudy {
    margin-top: 24px;
  }

  /* ==========================================================================
  casestudy 8 - end
  ========================================================================== */
  .project-containerui-kit {
    margin-top: 24px;
    background-position: 11% 8%, 0% 50%;
  }

  .project-container.mockups {
    background-position: 80% 100%, -40px 0px, 0px 0px;
  }

  .project-text {
    width: auto;
    margin-top: 32px;
    margin-bottom: 36px;
  }

  .project-text.right {
    width: auto;
  }

  .paragraph-contact {
    width: 100%;
    margin-bottom: 16px;
    text-align: left;
  }

  .detailpage-head {
    margin-top: 40px;
    margin-bottom: 60px;
  }

  .detail-head-left {
    text-align: center;
  }

  .detail-head-right {
    margin-top: 42px;
  }

  .challenge-container {
    margin-top: 60px;
    margin-bottom: 0px;
    margin-right: 8%;
    margin-left: 8%;
  }

  .detail-copy {
    font-size: 13.12px;
    line-height: 21px;
  }

  .more-projects {
    margin-top: 64px;
    margin-bottom: 0px;
  }

  .get-in-touch {
    width: 100%;
    margin-top: 16px;
  }

  .webflow-link {
    width: 100%;
    margin-top: 16px;
  }

  .color-gold {
    width: 80px;
    height: 80px;
  }

  .color-dark {
    width: 80px;
    height: 80px;
  }

  .color-white {
    width: 80px;
    height: 80px;
  }

  .color-pastel {
    width: 80px;
    height: 80px;
  }

  .image-dlm-logo {
    width: 70%;
  }

  .image-dlm-icons {
    /* width: 90%; */
    margin-bottom: 40px;
    border-left: none;
    border-right: none;
    border-radius: 0px;
  }

  .footer-container {
    padding-right: 16px;
    padding-left: 16px;
  }

  .skill-grid {
    grid-row-gap: 16px;
    -ms-grid-columns: minmax(200px, 1fr);
    grid-template-columns: minmax(200px, 1fr);
  }

  .skill-name {
    margin-top: 2px;
  }

  .skill-bar {
    height: 8px;
  }

  .skill-bar-bg {
    width: 88%;
    height: 8px;
  }

  .skill-percentage {
    font-size: 14px;
  }

  .skill-container {
    margin-top: 24px;
    margin-bottom: 40px;
  }

  .availability-text-red {
    margin-left: 10px;
  }

  .cta-header {
    width: 100%;
    margin-bottom: 32px;
  }

  .footer-menu {
    /* margin-top: 70px; */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer-links {
    width: 100%;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    text-align: left;
  }

  .footer-text {
    margin-bottom: 6px;
  }

  .footer-text.blue {
    text-align: left;
  }

  .footer-text.copyright {
    width: 100%;
  }

  .footer-divider.delete {
    display: none;
  }

  .keep-in-touch {
    width: 100%;
    text-align: left;
  }

  .head-image {
    width: 75%;
    margin-top: 24px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .button-box.contact {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .contact-content {
    margin-top: 100px;
    margin-bottom: 40px;
  }

  .centered {
    text-align: center;
  }

  ._404-text {
    max-width: none;
  }

  .profile-illustration-0 {
    height: 70%;
  }

  .profile-illustration {
    width: 100.00008%;
    height: 100%;
  }

  .cta-buttons {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .contact-text {
    width: 84%;
    margin-top: 40px;
    margin-right: 8%;
    margin-left: 8%;
  }

  .keep-in-touch-container {
    width: 84%;
    margin-right: 8%;
    margin-left: 8%;
  }

  .h1-contact {
    text-align: left;
  }

  .case-study-headline {
    margin-top: 120px;
  }

  .h1-subline {
    font-size: 1.6rem;
    line-height: 2.063rem;
  }

  .case-study-teaser {
    margin-top: 42px;
    margin-bottom: 0px;
  }

  .case-study-teaser-image-container {
    margin-top: 42px;
  }

  .case-study-content-container {
    margin-right: 0px;
    margin-left: 0px;
  }

  .case-study-content-container.last {
    margin-bottom: 84px;
  }

  .case-study-content-text {
    width: 84%;
    margin-top: 84px;
    margin-right: 8%;
    margin-left: 8%;
  }

  /* ==========================================================================
  casestudy 9 - start
  ========================================================================== */
  .case-image-casestudy-challenge {
    /* width: 84%; */
    margin-top: 30px;
    background-image: url("../imgs/casestudy/challenge-desktop.jpg");
  }

  .case-image-casestudy-solution {
    margin-top: 30px;
    border-radius: 0px;
    background-image: url("../imgs/casestudy/solution-desktop.jpg");
  }

  .case-image-casestudy-design-system {
    margin-top: 30px;
    border-radius: 0px;
    background-image: url("../imgs/casestudy/design-system-desktop.gif");
    border-left: none;
    border-right: none;
  }

  .image-dlm-headline {
    margin-top: 30px;
    border-radius: 0px;
    background-image: url("../imgs/casestudy/brand-headlines-desktop.gif");
    background-size: contain;
    border-left: none;
    border-right: none;
  }

  .case-image-casestudy-components {
    margin-top: 30px;
    border-radius: 0px;
    background-image: url("../imgs/casestudy/components-mobile.jpg");
  }

  .case-image-casestudy-landing-page {
    margin-top: 30px;
    border-radius: 0px;
    background-image: url("../imgs/casestudy/landing-page-mobile.jpg");
  }

  .case-image-casestudy-result {
    margin-top: 30px;
    border-radius: 0px;
    background-image: url("../imgs/casestudy/result-desktop.jpg");
  }

  /* ==========================================================================
  casestudy 9 - end
  ========================================================================== */
  .img-hero-mobile-landscape {
    display: none;
  }

  .img-hero-mobile {
    display: inline-block;
  }

  .project-image-mobile-landscape {
    display: none;
  }

  .project-image-mobile-portrait {
    display: inline-block;
    border-radius: 0px;
  }

  .project-image-prev-next-mobile {
    display: inline-block;
  }

  .h2-container {
    width: 84%;
    margin-right: 8%;
    margin-left: 8%;
  }

  .contact-container {
    margin-right: 0px;
    margin-left: 0px;
  }

  .side-project-text {
    width: auto;
    margin-bottom: 36px;
  }

  .contact-image {
    border-radius: 0px;
  }
}