a:hover {
  text-decoration: none;
}

.background {
  background-image: url("/assets/misc/graph-background.jpg");
  opacity: 30%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: -1;
}

.heroSection {
  display: flex;
  flex-direction: column;
  border-bottom: 4px solid #F2C94C;
}
.heroSection .profileImage {
  display: block;
  width: 100vw;
  background-color: #1C2536;
}
.heroSection .intro {
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
  background-color: #1C2536;
}
.heroSection .intro img {
  display: block;
  margin: auto;
  width: 176px;
}
.heroSection .intro .identification {
  padding: 24px 0px;
  text-align: center;
}
.heroSection .intro .identification h1 {
  font-family: "Play", Display, sans-serif;
  font-size: 48px;
  color: #FFFFFF;
}
.heroSection .intro .identification h2 {
  font-family: "Play", Display, sans-serif;
  font-size: 24px;
  color: #F2C94C;
}
.heroSection .intro .identification h2 .highlight {
  color: #F2C94C;
}
.heroSection .intro .introParagraph {
  color: #FFFFFF;
  font-family: "Sansation", serif;
  font-weight: 100 !important;
  padding-top: 24px;
}
.heroSection .intro .introParagraph b {
  font-size: larger;
  color: #F2C94C;
}

.landingCardSection {
  padding-bottom: 64px;
}
.landingCardSection h2 {
  font-size: 1.5em;
  font-family: "Play", Display, sans-serif;
  width: 90vw;
  margin: auto;
  padding-bottom: 40px;
  text-align: center;
}
.landingCardSection .threeRowGroup {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 90vw;
  margin: auto;
}
.landingCardSection .gallery {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 90vw;
  margin: auto;
}
.landingCardSection .seeMore {
  width: 90vw;
  margin: auto;
  text-align: center;
  padding-top: 24px;
}
.landingCardSection .seeMore a {
  color: #1C2536;
  padding: 8px 16px;
  background-color: #F2C94C;
  border-radius: 20px;
  margin: auto;
}
.landingCardSection .seeMore a:hover {
  background-color: #C2A13D;
  color: #FBFBFB;
}

.uxCaseStudies {
  max-width: 992px;
  margin: auto;
  padding: 0px 24px 64px;
}
.uxCaseStudies .sectionTitle {
  font-family: "Play", Display, sans-serif;
  font-size: 32px;
  padding: 0px 0px 16px;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.section {
  width: 80vw;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 64px;
  font-family: #1C2536;
}
.section h2 {
  padding-bottom: 16px;
  font-family: "Play", Display, sans-serif;
  font-size: 1.2em;
  font-weight: bold;
}
.section .header {
  font-weight: bold;
}
.section .contextImg {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .contextImg img {
  max-width: 60vw;
}
.section .projectImg {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 80vw;
}
.section .projectImg img {
  width: 100%;
  padding: 8px;
  background-color: #FFFFFF;
  box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px 8px 8px 8px;
}
.section .projectImg .mediumImage {
  max-width: 800px;
}
.section .projectImg .businessCard {
  max-width: 400px;
}
.section .projectImg .flyer {
  max-width: 500px;
}
.section .phone-prototype-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 48px;
}
.section .phone-prototype-group .phoneImg {
  width: 240px;
  border-radius: 8px 8px 8px 8px;
}
.section .logoimg {
  width: 300px;
}
.section .flexImage {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .flexImage img {
  width: 100%;
  max-width: 1200px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 24px;
  margin-bottom: 48px;
}

.images {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.imagesComparisons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.workflow {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  margin-bottom: 48px;
}
.workflow .downArrow {
  margin: 16px;
}

@media only screen and (min-width: 768px) {
  .heroSection {
    display: flex;
    flex-direction: column;
    width: 80vw;
    max-width: none;
    margin: auto;
    margin-top: 56px;
    border-radius: 8px 8px 8px 8px;
  }
  .heroSection .profileImage {
    aspect-ratio: 1/1;
    width: auto;
    min-width: 304px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px 8px 0px 0px;
  }
  .heroSection .intro {
    display: flex;
    background-color: #1C2536;
    min-height: 304px;
    padding: 24px 48px 48px;
    border-radius: 0px 0px 8px 8px;
  }
  .heroSection .intro .heroLogo {
    display: block;
    width: 176px;
    margin: auto;
    margin-top: 24px;
  }
  .heroSection .intro .identification {
    padding: 24px 0px;
  }
  .heroSection .intro .identification h1 {
    font-size: 48px;
    color: #FFFFFF;
  }
  .heroSection .intro .identification h2 {
    font-size: 24px;
    color: #F2C94C;
  }
  .heroSection .intro .introParagraph {
    color: #FFFFFF;
    font-family: "Sansation", serif;
    font-weight: normal;
    padding: 0px;
    margin: 0;
  }
  .heroSection .intro .introParagraph b {
    font-size: larger;
    color: #F2C94C;
  }
  .section {
    width: 80vw;
    margin: auto;
    padding-bottom: 64px;
    font-family: #1C2536;
  }
  .section h2 {
    padding-bottom: 16px;
    font-family: "Play", Display, sans-serif;
    font-size: 1.5em;
  }
  .section .header {
    font-weight: bold;
  }
  .section .contextImg {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section .contextImg img {
    max-width: 60vw;
  }
  .section .projectImg {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 80vw;
  }
  .section .projectImg img {
    width: 100%;
    padding: 16px;
    background-color: #FFFFFF;
    box-shadow: 4px 6px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px 8px 8px 8px;
  }
  .section .projectImg .mediumImage {
    max-width: 800px;
  }
  .section .projectImg .businessCard {
    max-width: 400px;
  }
  .section .projectImg .flyer {
    max-width: 500px;
  }
  .uxCaseStudies {
    max-width: 992px;
    margin: auto;
  }
  .uxCaseStudies .sectionTitle {
    font-family: "Play", Display, sans-serif;
    font-size: 32px;
  }
  .projects {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .heroSection {
    display: flex;
    flex-direction: row;
    max-width: none;
    width: 90vw;
    margin: auto;
    margin-top: 56px;
    border-radius: 8px 8px 8px 8px;
  }
  .heroSection .profileImage {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px 0 0 8px;
    flex-shrink: 1;
  }
  .heroSection .intro {
    display: flex;
    width: auto;
    background-color: #1C2536;
    min-height: 304px;
    padding: 24px 48px 48px;
    border-radius: 0px 8px 8px 0px;
    flex-shrink: none;
  }
  .heroSection .intro .heroLogo {
    display: block;
    width: 104px;
    margin: auto;
    margin-top: 24px;
  }
  .heroSection .intro .identification {
    padding: 24px 0px;
  }
  .heroSection .intro .identification h1 {
    font-size: 40px;
    color: #FFFFFF;
  }
  .heroSection .intro .identification h2 {
    font-size: 20px;
    color: #F2C94C;
  }
  .heroSection .intro .introParagraph {
    color: #FFFFFF;
    font-family: "Sansation", serif;
    font-weight: normal;
    padding: 0px;
    margin: 0;
  }
  .heroSection .intro .introParagraph b {
    font-size: larger;
    color: #F2C94C;
  }
}
@media only screen and (min-width: 1024px) {
  .heroSection {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 80vw;
    margin: auto;
    margin-top: 56px;
    border-radius: 8px 8px 8px 8px;
  }
  .heroSection .profileImage {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 8px 0 0 8px;
    flex-shrink: 0;
  }
  .heroSection .intro {
    display: flex;
    width: auto;
    background-color: #1C2536;
    min-height: 304px;
    padding: 24px 48px 48px;
    border-radius: 0px 8px 8px 0px;
  }
  .heroSection .intro .heroLogo {
    display: block;
    width: 176px;
    margin: auto;
    margin-top: 24px;
  }
  .heroSection .intro .identification {
    padding: 24px 0px;
  }
  .heroSection .intro .identification h1 {
    font-size: 48px;
    color: #FFFFFF;
  }
  .heroSection .intro .identification h2 {
    font-size: 24px;
    color: #F2C94C;
  }
  .heroSection .intro .introParagraph {
    color: #FFFFFF;
    font-family: "Sansation", serif;
    font-weight: normal;
    padding: 0px;
    margin: 0;
  }
  .heroSection .intro .introParagraph b {
    font-size: larger;
    color: #F2C94C;
  }
  .landingCardSection h2 {
    font-size: 1.5em;
    font-family: "Play", Display, sans-serif;
    width: 90vw;
    margin: auto;
  }
  .landingCardSection .threeRowGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 90vw;
    margin: auto;
  }
  .landingCardSection .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 90vw;
    margin: auto;
  }
  .landingCardSection .seeMore {
    width: 90vw;
    margin: auto;
    text-align: center;
    padding-top: 24px;
  }
  .landingCardSection .seeMore a {
    color: #1C2536;
    padding: 8px 16px;
    background-color: #F2C94C;
    border-radius: 20px;
    margin: auto;
  }
  .landingCardSection .seeMore a:hover {
    background-color: #C2A13D;
    color: #FBFBFB;
  }
}
@media only screen and (min-width: 1400px) {
  .landingCardSection {
    max-width: 1400px;
    margin: auto;
  }
  .landingCardSection h2 {
    font-size: 2em;
    font-family: "Play", Display, sans-serif;
    width: 90vw;
    margin: auto;
    text-align: center;
    max-width: 1400px;
  }
  .landingCardSection .threeRowGroup {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
    max-width: 1400px;
    margin: auto;
  }
  .landingCardSection .gallery {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    max-width: 1400px;
    margin: auto;
  }
  .landingCardSection .seeMore {
    max-width: 1400px;
  }
  .workflow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 24px;
    margin-bottom: 48px;
    gap: 16px;
  }
  .workflow .downArrow {
    margin: 0px;
    rotate: -90deg;
  }
  .workflow .block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 300px;
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */