@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Regular.ttf");
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Bold.ttf");
  font-weight: bold;
}
@-webkit-keyframes fade-in-top {
  from {
    transform: translate(0, -40px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  from {
    transform: translate(0, -40px);
    opacity: 0;
  }
  to {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes down-arrow-animation {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(0, 20px);
  }
  30% {
    transform: translate(0, 0);
  }
}
@keyframes down-arrow-animation {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(0, 20px);
  }
  30% {
    transform: translate(0, 0);
  }
}
@-webkit-keyframes hero-image-animation {
  0% {
    transform: translate(0, -8px);
  }
  50% {
    transform: translate(0, 8px);
  }
  100% {
    transform: translate(0, -8px);
  }
}
@keyframes hero-image-animation {
  0% {
    transform: translate(0, -8px);
  }
  50% {
    transform: translate(0, 8px);
  }
  100% {
    transform: translate(0, -8px);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::before {
  box-sizing: inherit;
}
*::after {
  box-sizing: inherit;
}
*::-moz-selection {
  background: #3377ff;
  color: #fff;
}
*::selection {
  background: #3377ff;
  color: #fff;
}

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  height: 100vh;
  box-sizing: border-box;
  background-color: #fff;
  font-family: Nunito;
  color: #27384D;
}
body h1 {
  font-size: 32px;
  font-weight: bold;
}
@media (min-width: 1370px) {
  body h1 {
    font-size: 48px;
  }
}
@media (min-width: 1920px) {
  body h1 {
    font-size: 64px;
  }
}
body h2 {
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 1370px) {
  body h2 {
    font-size: 36px;
  }
}
@media (min-width: 1920px) {
  body h2 {
    font-size: 48px;
  }
}
body h3 {
  font-size: 18px;
  font-weight: bold;
}
@media (min-width: 1370px) {
  body h3 {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  body h3 {
    font-size: 36px;
  }
}
body p {
  line-height: 1.8em;
}
@media (min-width: 1920px) {
  body p {
    font-size: 20px;
  }
}
body ul {
  line-height: 1.8em;
  list-style: disc outside none;
}
@media (min-width: 1920px) {
  body ul {
    font-size: 20px;
  }
}
body li {
  margin-left: 1em;
}
body a {
  text-decoration: none;
  color: #27384D;
  border-radius: 1px;
}
body a:focus {
  box-shadow: 0 0 0 8px #fff, 0 0 0 10px #3377ff;
  outline: none;
}
body input:focus {
  box-shadow: 0 0 0 2px #3377ff;
  outline: none;
}
body textarea:focus {
  box-shadow: 0 0 0 2px #3377ff;
  outline: none;
}
body .color-primary {
  color: #3377ff;
}
body .bold {
  font-weight: bold;
}
body .font-weight-normal {
  font-weight: normal;
}
body .font-style-normal {
  font-style: normal;
}
body .blue-underline::after {
  position: absolute;
  border: 2px solid #3377ff;
  content: "";
  top: 22px;
  left: 0;
  width: 100%;
  height: 0px;
  border-radius: 2px;
  background-color: #3377ff;
}
@media (min-width: 1920px) {
  body .blue-underline::after {
    border: 3px solid #3377ff;
    border-radius: 3px;
    top: 30px;
  }
}
body .center-vertically {
  display: flex;
  height: 100%;
  align-items: center;
}
body .center-horizontally {
  display: flex;
  margin: auto;
  justify-content: center;
}
body .place-right {
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
body .justify-text {
  text-align: justify;
}
body .indent-1 {
  margin-left: 2em;
}
body .case-study-h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.6em;
}
@media (min-width: 1370px) {
  body .case-study-h3 {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  body .case-study-h3 {
    font-size: 28px;
  }
}
body .primary-button {
  background-color: #3377ff;
  color: #fff;
  font-family: Nunito;
  font-weight: bold;
  border-radius: 8px;
  height: 3em;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s;
  transition-timing-function: ease-out;
}
@media (min-width: 1370px) {
  body .primary-button {
    height: 3.4em;
  }
}
@media (min-width: 1920px) {
  body .primary-button {
    height: 4.2em;
  }
}
body .primary-button:hover {
  background-color: #0055ff;
  transform: scale(1.025);
}
body .primary-button:focus {
  box-shadow: 0 0 0 8px #fff, 0 0 0 10px #3377ff;
  outline: none;
}
body .secondary-button {
  justify-content: center;
  align-items: center;
  background-color: #e0e9f9;
  display: flex;
  color: #27384D;
  font-family: Nunito;
  border: none;
  border-radius: 8px;
  height: 3em;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s;
  transition-timing-function: ease-out;
}
@media (min-width: 1370px) {
  body .secondary-button {
    height: 3.4em;
  }
}
@media (min-width: 1920px) {
  body .secondary-button {
    height: 4.2em;
  }
}
body .secondary-button:hover {
  background-color: #c7d9f9;
  transform: scale(1.025);
}
body .secondary-button:focus {
  box-shadow: 0 0 0 8px #fff, 0 0 0 10px #3377ff;
  outline: none;
}
body .iconbutton-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}
body .iconbutton-wrapper p {
  font-size: 16px;
}
@media (min-width: 1920px) {
  body .iconbutton-wrapper p {
    font-size: 20px;
  }
}
body .iconbutton-wrapper img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
@media (min-width: 1370px) {
  body .iconbutton-wrapper img {
    margin-left: 16px;
  }
}
@media (min-width: 1920px) {
  body .iconbutton-wrapper img {
    width: 16px;
    height: 16px;
  }
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background: #98a4b2;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6c7580;
}

.body-background-image {
  -webkit-animation: fade-in-top 1s;
          animation: fade-in-top 1s;
  background-image: url(../assets/images/body-bg-mobile-v2.svg);
  background-size: 100%;
  background-repeat: repeat-y;
}
@media (min-width: 768px) {
  .body-background-image {
    background-image: url(../assets/images/body-bg-tablet.svg);
  }
}
@media (min-width: 1370px) {
  .body-background-image {
    background-image: url(../assets/images/body-bg-v2.svg);
  }
}

.wrapper {
  width: 75%;
  margin: 40px auto;
}
@media (min-width: 768px) {
  .wrapper {
    width: 80%;
    margin-top: 160px;
  }
}
@media (min-width: 1370px) {
  .wrapper {
    width: 60%;
  }
}

#navbar {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 10px auto;
}
@media (min-width: 768px) {
  #navbar {
    width: 80%;
    margin-top: 30px;
  }
}
@media (min-width: 1370px) {
  #navbar {
    width: 60%;
  }
}
#navbar a {
  text-decoration: none;
  color: #27384D;
}
@media (min-width: 1920px) {
  #navbar a {
    font-size: 20px;
  }
}
#navbar #homepage-link {
  font-weight: bold;
}
#navbar-links {
  display: none;
}
@media (min-width: 768px) {
  #navbar-links {
    display: flex;
    justify-content: space-between;
    width: 60%;
    text-align: center;
  }
}
@media (min-width: 1920px) {
  #navbar-links {
    width: 50%;
  }
}
#navbar-links a {
  position: relative;
}
#navbar-links a:hover {
  font-weight: bold;
}
#navbar-links a::before {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media (min-width: 768px) {
  #navbar #hamburger-menu {
    display: none;
  }
}
#navbar #hamburger-menu div {
  width: 15px;
  height: 2px;
  background-color: #27384D;
  margin: 2px;
  border-radius: 1px;
}
#navbar #hamburger-menu-overlay {
  display: none;
  flex-direction: column;
  position: absolute;
  right: 0px;
  background-color: #f3f5f9;
  width: 140px;
  height: 160px;
  padding: 15px;
  border-radius: 5px;
}
#navbar #hamburger-menu-overlay a {
  margin-bottom: 15px;
}
#navbar #hamburger-menu-overlay #close-hamburger-button {
  position: absolute;
  right: 15px;
  top: 20px;
  width: 10px;
  height: 10px;
}
#navbar #hamburger-menu-overlay-bg {
  z-index: -1;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

#hero {
  width: 75%;
  margin: 60px auto;
  -webkit-animation: fade-in-top 1s;
          animation: fade-in-top 1s;
}
@media (min-width: 768px) {
  #hero {
    width: 80%;
    margin-top: 6em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text	img";
  }
}
@media (min-width: 1370px) {
  #hero {
    width: 60%;
    margin-top: 200px;
  }
}
#hero h1 {
  font-size: 22px;
  line-height: 1.4em;
}
@media (min-width: 1370px) {
  #hero h1 {
    font-size: 32px;
  }
}
@media (min-width: 1920px) {
  #hero h1 {
    font-size: 40px;
  }
}
#hero p {
  font-size: 16px;
  margin-top: 1em;
}
@media (min-width: 1370px) {
  #hero p {
    font-size: 20px;
  }
}
@media (min-width: 1920px) {
  #hero p {
    font-size: 24px;
  }
}
#hero-text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
#hero-text-h1-wrapper {
  margin-top: 60px;
}
@media (min-width: 768px) {
  #hero-text-h1-wrapper {
    margin-top: 0;
  }
}
#hero-img {
  grid-area: img;
  display: flex;
}
#hero-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  content: url(../assets/images/hero.png);
  filter: drop-shadow(30px 20px 8px #d4e4f5);
  -webkit-animation: hero-image-animation 6s ease-in-out infinite;
          animation: hero-image-animation 6s ease-in-out infinite;
}
@media (min-width: 768px) {
  #hero-img img {
    content: url(../assets/images/hero_v2.png);
    margin-left: 3em;
    filter: drop-shadow(60px 40px 12px #d4e4f5);
  }
}
#hero-buttons {
  display: flex;
  justify-content: space-between;
}
@media (min-width: 768px) {
  #hero-buttons {
    margin-top: 24px;
  }
}
#hero-buttons p {
  font-size: 16px;
  margin-top: 0;
}
@media (min-width: 1920px) {
  #hero-buttons p {
    font-size: 20px;
  }
}
#hero .see-my-work-button {
  width: 100%;
  margin-top: 2em;
}
@media (min-width: 768px) {
  #hero .see-my-work-button {
    width: 48%;
    margin-top: 0;
  }
}
@media (min-width: 1370px) {
  #hero .see-my-work-button {
    margin-top: 2em;
  }
}
#hero .see-my-work-button:hover img {
  transition: transform 0.4s;
  transform: translate(8px, 0);
}
#hero .hire-me-button {
  display: none;
  width: 48%;
  margin-top: 2em;
}
@media (min-width: 768px) {
  #hero .hire-me-button {
    display: flex;
    margin-top: 0;
  }
}
@media (min-width: 1370px) {
  #hero .hire-me-button {
    margin-top: 2em;
  }
}
#hero .hire-me-button img {
  width: 16px;
  height: 16px;
  margin-left: 8px;
}
@media (min-width: 1370px) {
  #hero .hire-me-button img {
    margin-left: 16px;
    padding-bottom: 2px;
  }
}
@media (min-width: 1920px) {
  #hero .hire-me-button img {
    width: 20px;
    height: 20px;
  }
}

#arrow-wrapper {
  text-align: center;
}
#arrow-wrapper #scroll-down-arrow {
  display: none;
}
@media (min-width: 768px) {
  #arrow-wrapper #scroll-down-arrow {
    display: inline;
    max-width: 40px;
    margin-top: 2em;
    -webkit-animation: down-arrow-animation 5s infinite;
            animation: down-arrow-animation 5s infinite;
  }
}
@media (min-width: 1370px) {
  #arrow-wrapper #scroll-down-arrow {
    margin-top: 6em;
  }
}
@media (min-width: 1920px) {
  #arrow-wrapper #scroll-down-arrow {
    max-width: 50px;
  }
}

#my-work {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #my-work {
    display: grid;
    flex-direction: row;
    justify-content: stretch;
    grid-template-columns: 9fr 1fr 9fr;
    grid-template-areas: "left spacer right";
  }
}
#my-work h2 {
  margin-bottom: 20px;
}
#my-work .my-work-column {
  display: flex;
  flex-direction: column;
}
#my-work .my-work-column-left {
  grid-area: left;
}
#my-work .my-work-column-right {
  grid-area: right;
}
#my-work .my-work-card {
  position: relative;
  transition: transform 0.2s;
  cursor: pointer;
  margin-bottom: 20px;
}
#my-work .my-work-card:hover {
  transform: scale(1.025);
}
#my-work .my-work-card-text * {
  margin-bottom: 10px;
}
#my-work .my-work-card img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
}
#my-work .my-work-card #level-card {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #level-card {
    top: 20px;
    right: 20px;
  }
}
#my-work .my-work-card #level-card p {
  width: 80px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #level-card p {
    width: 140px;
  }
}
#my-work .my-work-card #apex-card {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #apex-card {
    top: 40px;
    left: 40px;
  }
}
#my-work .my-work-card #apex-card p {
  width: 60%;
}
#my-work .my-work-card #collab-gui-card {
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #collab-gui-card {
    top: 40px;
    left: 40px;
  }
}
#my-work .my-work-card #collab-gui-card p {
  width: 150px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #collab-gui-card p {
    width: 200px;
  }
}
#my-work .my-work-card #charlie-card {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #charlie-card {
    top: 40px;
    left: 40px;
  }
}
#my-work .my-work-card #charlie-card p {
  width: 150px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #charlie-card p {
    width: 180px;
  }
}
#my-work .my-work-card #bat-card {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #bat-card {
    top: 40px;
    left: 40px;
  }
}
#my-work .my-work-card #bat-card p {
  width: 200px;
}
@media (min-width: 1370px) {
  #my-work .my-work-card #bat-card p {
    width: 240px;
  }
}
#my-work .see-more-button {
  width: 100%;
  margin: 30px 0 40px 0;
}
@media (min-width: 1370px) {
  #my-work .see-more-button {
    width: 50%;
  }
}
#my-work .see-more-button:hover img {
  transition: transform 0.4s;
  transform: translate(8px, 0);
}

@media (min-width: 768px) {
  #my-skills h2 {
    margin-bottom: 1.4em;
  }
}
#my-skills .skills-pic {
  margin-bottom: 2em;
}
@media (min-width: 768px) {
  #my-skills .skills-pic {
    display: grid;
    margin-bottom: 4em;
  }
}
#my-skills .skills-pic-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
#my-skills .skills-pic-left {
  grid-template-columns: 1.4fr 1fr;
  grid-template-areas: "pic	info";
}
#my-skills .skills-pic-right {
  grid-template-columns: 1fr 1.4fr;
  grid-template-areas: "info	pic";
}
#my-skills .skills-pic img {
  width: 100%;
  margin: 2em auto;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  filter: drop-shadow(10px 5px 4px #d4e4f5);
}
@media (min-width: 768px) {
  #my-skills .skills-pic img {
    grid-area: pic;
    width: 100%;
    filter: drop-shadow(20px 10px 8px #d4e4f5);
    -o-object-fit: contain;
       object-fit: contain;
  }
}
#my-skills .skills-pic .text-wrapper p {
  margin-top: 1em;
}
#my-skills .skills-pic .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 2em;
}
@media (min-width: 768px) {
  #my-skills .skills-pic .tags {
    margin-top: 0;
  }
}
#my-skills .skills-pic .tags .tag {
  background-color: #f3f5f9;
  border-radius: 40px;
  padding: 10px 20px;
  margin-bottom: 10px;
  margin-right: 10px;
}
#my-skills .skills-pic .tags .tag p {
  font-size: 12px;
  padding: 0;
}
@media (min-width: 1920px) {
  #my-skills .skills-pic .tags .tag p {
    font-size: 16px;
  }
}
#my-skills .skills-pic-shadowless img {
  filter: none;
}

.contact-me {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: auto;
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .contact-me {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 160px;
    padding-bottom: 160px;
  }
}
.contact-me-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .contact-me-info {
    width: 45%;
    margin-top: 10px;
  }
}
.contact-me-info p {
  margin-top: 1em;
}
.contact-me-info-row {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
}
.contact-me-info-row p {
  margin-top: 0;
  margin-left: 20px;
}
.contact-me-info-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .contact-me-info-links {
    margin-top: 0;
  }
}
.contact-me-info-links-left {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin-bottom: 40px;
}
@media (min-width: 1370px) {
  .contact-me-info-links-left {
    width: 40%;
    margin-bottom: 0;
  }
}
.contact-me-info-links-left img {
  vertical-align: middle;
  border-radius: 8px;
  margin-bottom: 0;
  height: 2em;
  cursor: pointer;
}
@media (min-width: 1370px) {
  .contact-me-info-links-left img {
    height: 2.4em;
  }
}
@media (min-width: 1920px) {
  .contact-me-info-links-left img {
    height: 3em;
  }
}
.contact-me-info-links-left .artstation-img-link {
  background-color: #1d1d1d;
}
.contact-me-info .cv-button {
  margin-top: 0;
  padding: 0 2em;
}
.contact-me-info .cv-button p {
  margin: 0;
  padding: 0;
}
.contact-me-form-container {
  width: 100%;
  margin-top: 60px;
}
@media (min-width: 768px) {
  .contact-me-form-container {
    width: 45%;
    margin-top: 16px;
  }
}
.contact-me-form button {
  width: 100%;
  margin-top: 30px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .contact-me-form button {
    width: 50%;
  }
}
.contact-me-form button:hover img {
  transition: transform 0.4s;
  transform: translate(8px, 0);
}
.contact-me .label {
  font-weight: bold;
}
.contact-me-input {
  background-color: #f3f5f9;
  border: none;
  box-sizing: border-box;
  width: 100%;
  border-radius: 4px;
  padding: 10px;
  margin-top: 4px;
  margin-bottom: 24px;
  color: #27384D;
  font-family: Nunito;
  font-size: 18px;
}
.contact-me-input-message {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .contact-me-input-message {
    margin-bottom: 0;
  }
}
.contact-me textarea {
  resize: none;
  height: 200px;
}

.redirect-page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url(../assets/images/thankyou-bg-mobile.svg);
  background-size: cover;
  height: 100vh;
}
@media (min-width: 768px) {
  .redirect-page-container {
    background-image: url(../assets/images/thankyou-bg.svg);
  }
}
.redirect-page-grid {
  display: grid;
  grid-template-areas: "h1" "p" "links" "button";
  gap: 1.8em;
  margin-top: 4em;
  padding-bottom: 20vh;
}
@media (min-width: 768px) {
  .redirect-page-grid {
    grid-template-rows: 1fr 1.4fr 1fr;
    grid-template-columns: 1.4fr 0.6fr 1fr;
    grid-template-areas: "h1 	h1 		h1" "p 		p 		p" "links 	empty 	button";
  }
}
@media (min-width: 1370px) {
  .redirect-page-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.redirect-page-h1 {
  grid-area: h1;
  display: flex;
}
@media (min-width: 768px) {
  .redirect-page-h1 {
    justify-content: center;
  }
}
.redirect-page-p {
  grid-area: p;
  text-align: justify;
}
.redirect-page-p p {
  font-size: 18px;
}
@media (min-width: 768px) {
  .redirect-page-p p {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 1370px) {
  .redirect-page-p p {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .redirect-page-p p {
    font-size: 32px;
  }
}
.redirect-page-links {
  grid-area: links;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.redirect-page-links img {
  vertical-align: middle;
  border-radius: 8px;
  margin-bottom: 0;
  height: 3em;
  cursor: pointer;
}
@media (min-width: 1370px) {
  .redirect-page-links img {
    height: 3.4em;
  }
}
@media (min-width: 1920px) {
  .redirect-page-links img {
    height: 4.2em;
  }
}
.redirect-page-links .artstation-img-link {
  background-color: #1d1d1d;
}
.redirect-page-button {
  grid-area: button;
}
.redirect-page-button:hover img {
  transition: transform 0.4s;
  transform: translate(8px, 0);
}

.showcase-intro {
  display: flex;
  flex-direction: column;
  width: 75%;
  margin: 60px auto;
  align-items: center;
  -webkit-animation: fade-in-top 1s;
          animation: fade-in-top 1s;
}
@media (min-width: 768px) {
  .showcase-intro {
    width: 80%;
    margin-top: 6em;
  }
}
@media (min-width: 1370px) {
  .showcase-intro {
    width: 60%;
    margin-top: 8em;
  }
}
.showcase-intro-text {
  grid-area: text;
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-areas: "title	title" "key 	value" "key	value" "key	value" "key	value" "summary summary";
}
@media (min-width: 768px) {
  .showcase-intro-text {
    grid-template-columns: 1fr 3fr;
  }
}
.showcase-intro h2 {
  grid-area: title;
  margin-bottom: 0.6em;
}
.showcase-intro .summary {
  grid-area: summary;
  margin-top: 4em;
}
.showcase-intro p {
  margin-bottom: 0.6em;
}
.showcase-intro a {
  text-decoration: underline;
}
.showcase-intro a:hover {
  color: #3377ff;
}
.showcase-intro-img {
  grid-area: img;
}
.showcase-intro-img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 3em 0;
  filter: drop-shadow(15px 10px 12px #d4e4f5);
}
@media (min-width: 768px) {
  .showcase-intro-img img {
    filter: drop-shadow(30px 20px 24px #d4e4f5);
  }
}
.showcase-wip {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-wip h3 {
  margin-bottom: 0.4em;
}
.showcase-wip-images img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 4em;
  filter: drop-shadow(30px 20px 24px #d4e4f5);
}
.showcase-text p {
  margin-bottom: 1.8em;
}
.showcase-text a {
  text-decoration: underline;
}
.showcase-text a:hover {
  color: #3377ff;
}

.one-col h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.6em;
}
@media (min-width: 1370px) {
  .one-col h3 {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .one-col h3 {
    font-size: 28px;
  }
}
.one-col p {
  margin-bottom: 1em;
}
.one-col a {
  text-decoration: underline;
}
.one-col a:hover {
  color: #3377ff;
}
.one-col img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-top: 2em;
  filter: drop-shadow(15px 10px 12px #d4e4f5);
}
@media (min-width: 768px) {
  .one-col img {
    filter: drop-shadow(30px 20px 24px #d4e4f5);
  }
}

.two-col h2 {
  margin-bottom: 1em;
}
.two-col h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.6em;
}
@media (min-width: 1370px) {
  .two-col h3 {
    font-size: 24px;
  }
}
@media (min-width: 1920px) {
  .two-col h3 {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .two-col {
    display: grid;
    grid-template-columns: 4.5fr 1fr 4.5fr;
  }
}
.two-col img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(15px 10px 12px #d4e4f5);
}
@media (min-width: 768px) {
  .two-col img {
    filter: drop-shadow(30px 20px 24px #d4e4f5);
  }
}
.two-col p {
  margin-bottom: 1em;
}
.two-col a {
  text-decoration: underline;
}
.two-col a:hover {
  color: #3377ff;
}
.two-col ul {
  margin-bottom: 1em;
}

.three-col {
  margin: 4em auto;
}
.three-col p {
  margin-top: -1em;
  margin-bottom: 2em;
}
.three-col img {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .three-col {
    display: grid;
    grid-template-columns: 5fr 1fr 5fr 1fr 5fr;
  }
}

.single-image {
  margin-top: 4em;
}
.single-image img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 4em;
  filter: drop-shadow(15px 10px 12px #d4e4f5);
}
@media (min-width: 768px) {
  .single-image img {
    filter: drop-shadow(30px 20px 24px #d4e4f5);
  }
}

#apex-logos {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
#apex-logos img {
  width: 40%;
  margin-top: 4em;
  margin-bottom: 4em;
}
@media (min-width: 768px) {
  #apex-logos img {
    margin-top: 0;
    margin-bottom: 0;
  }
}

#apex-iterations h3 {
  margin-top: 2em;
}
@media (min-width: 768px) {
  #apex-iterations h3 {
    margin-top: 0;
  }
}

#apex-figma-frames {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 768px) {
  #apex-figma-frames {
    align-items: center;
  }
}
#apex-figma-frames img {
  width: 45%;
}
@media (min-width: 768px) {
  #apex-figma-frames img {
    width: 100%;
  }
}
#apex-figma-frames #apex-home {
  margin-top: 6em;
}
@media (min-width: 1370px) {
  #apex-figma-frames #apex-home {
    margin-top: 0;
  }
}
#apex-figma-frames #apex-edit {
  margin-top: 14em;
}
@media (min-width: 768px) {
  #apex-figma-frames #apex-edit {
    display: none;
  }
}

#apex-screenshots {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  #apex-screenshots {
    flex-direction: row;
    justify-content: space-between;
  }
}
#apex-screenshots img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 4em;
  filter: drop-shadow(15px 10px 12px #d4e4f5);
}
@media (min-width: 768px) {
  #apex-screenshots img {
    width: 30%;
    filter: drop-shadow(30px 20px 24px #d4e4f5);
  }
}

#aevus-process h2 {
  margin-bottom: 1.4em;
}
#aevus-process p {
  margin-top: 0;
}

#aevus-sketches h3 {
  margin-top: 4em;
}
@media (min-width: 768px) {
  #aevus-sketches h3 {
    margin-top: 0;
  }
}

#bat-process p {
  margin-top: 0;
}
#bat-process img {
  box-shadow: none;
  filter: none;
}
#bat-process-overview {
  width: 100%;
}
#bat-process-pain-points {
  margin-top: 2.4em;
}
#bat-process-pain-points div {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#bat-process-pain-points img {
  margin: 0;
  padding: 0;
  height: 75%;
}
#bat-process-pain-points p {
  margin: 0;
  margin-left: 1.4em;
  padding: 0;
}

#bat-ideation .subsection {
  margin-top: 4em;
}
#bat-ideation .subsection img {
  margin-top: 0;
}

#bat-sketch-variations p {
  margin-top: 2em;
}

#bat-prototyping .subsection {
  margin-bottom: 4em;
}
#bat-prototyping .subsection img {
  margin-top: 0;
}

#bat-result h2 {
  margin-bottom: 0.6em;
}
#bat-result img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 2em;
  filter: drop-shadow(15px 10px 12px #d4e4f5);
}
#bat-result-quote {
  display: grid;
  place-items: center;
  margin-top: 6em;
  margin-bottom: 2em;
}
#bat-result-quote p {
  font-size: 24px;
  font-style: italic;
  line-height: normal;
  width: 70%;
}
@media tablet {
  #bat-result-quote p {
    font-size: 36px;
  }
}
@media desktop {
  #bat-result-quote p {
    font-size: 48px;
  }
}

#collab-gui-process h2 {
  margin-bottom: 1.4em;
}

#collab-gui-figma-protos {
  margin-top: 2em;
}

#charlie-design-process img {
  margin-top: 4em;
}

#charlie-sketches {
  margin-top: 2em;
}

#charlie-result-functionality p {
  margin-bottom: 0;
}
#charlie-result-functionality ul {
  margin-bottom: 1.8em;
}

#charlie-active-mode p {
  margin-bottom: 0;
}
#charlie-active-mode ul {
  margin-bottom: 1.8em;
}

#charlie-passive-mode p {
  margin-bottom: 0;
}
#charlie-passive-mode ul {
  margin-bottom: 1.8em;
}

#charlie-final-evaluation {
  margin-top: 4em;
}

.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}/*# sourceMappingURL=main.css.map */