@import "reset.css";
@import "fonts.css";
@keyframes growWide {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  font-family: "GT America Extended", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-weight: 400;
  box-sizing: border-box;
}

*,
body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body {
  width: 100vw;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  overscroll-behavior-y: none;
  text-align: left;
  background: #000000;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 25px;
}

input {
  appearance: none;
  outline: none;
  border: none;
  border-radius: 0;
}

img,
svg,
button {
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

a,
a:hover,
a:active {
  color: #FFFFFF;
  text-decoration: none;
}

.middle {
  width: 100%;
  max-width: 1800px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .middle {
    padding: 0 20px;
  }
}

@media screen and (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }
}

h2,
h3,
h4 {
  padding-bottom: 5px;
}
h2.no-padding,
h3.no-padding,
h4.no-padding {
  padding-bottom: 0;
}

h1,
h1 span {
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 120px;
  line-height: 120px;
  letter-spacing: -2px;
  transform: translateX(-10px);
}
@media screen and (max-width: 900px) {
  h1,
h1 span {
    font-size: 80px;
    line-height: 80px;
    letter-spacing: -1px;
    transform: translateX(-6px);
  }
  h1.mobile-small,
h1 span.mobile-small {
    font-size: 75px;
    line-height: 75px;
  }
}

h2 {
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: -1px;
}

h3 {
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 28px;
  line-height: 33px;
  letter-spacing: -1px;
}

h4,
h4 span {
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -1px;
}
h4.highlight,
h4 span.highlight {
  color: #CCFF5E;
}

.subtitle {
  position: relative;
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 3px;
  color: #CCFF5E;
  text-transform: uppercase;
}
.subtitle.small {
  font-size: 15px;
}
.subtitle.micro {
  font-size: 13px;
  letter-spacing: 2px;
}
.subtitle.lock {
  padding-left: 28px !important;
}
.subtitle.lock:before {
  width: 18px;
  height: 18px;
  display: block;
  content: "";
  background-image: url("/assets/images/icons/lock.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.button {
  padding: 14px 25px;
  background: #CCFF5E;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button span {
  position: relative;
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  color: #000000;
  text-transform: uppercase;
}
.button::before {
  width: 0;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.button:hover::before {
  width: 100%;
}
.button.white {
  background: #FFFFFF;
}
.button.white span {
  color: #000000;
}

.header {
  z-index: 10;
}

.content {
  width: 100%;
}
.content-inside {
  padding-bottom: 40px;
}
.content-inside > .middle {
  display: flex;
}
@media screen and (max-width: 900px) {
  .content-inside > .middle {
    flex-direction: column;
    gap: 30px;
  }
}
.content-left {
  width: 500px;
  flex-shrink: 0;
}
@media screen and (max-width: 1350px) {
  .content-left {
    width: 430px;
  }
}
@media screen and (max-width: 900px) {
  .content-left {
    width: 100%;
  }
}

.hero {
  width: 100vw;
  min-height: 100vh;
  padding: 150px 0 40px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .hero {
    min-height: 100%;
    padding: 200px 0 20px;
  }
}
.hero::before, .hero::after {
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
.hero::before {
  background-image: url("../images/bg/smoke.jpg");
  background-size: cover;
  background-position: top center;
}
.hero::after {
  z-index: 2;
  background: linear-gradient(-130deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 55%);
}
@media screen and (max-width: 900px) {
  .hero::after {
    background: linear-gradient(-140deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 55%);
  }
}
.hero.about {
  background-image: url("../images/bg/b-w.jpg");
  background-position: center right;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .hero.about p {
    max-width: 70%;
  }
}
@media screen and (max-width: 900px) {
  .hero.about {
    background-position: top center;
  }
  .hero.about::after {
    background: linear-gradient(-180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 15%, rgb(0, 0, 0) 30%);
  }
}
@media screen and (min-width: 900px) {
  .hero.portfolio::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 55%);
  }
}
@media screen and (min-width: 900px) {
  .hero.contact::after {
    background: linear-gradient(-200deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 50%);
  }
}
@media screen and (min-width: 900px) {
  .hero.slips, .hero.finexio {
    min-height: 75vh;
  }
}
.hero.slips::before, .hero.finexio::before {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  opacity: 0.5;
  filter: blur(4px);
}
.hero.slips::after, .hero.finexio::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 15%, rgb(0, 0, 0) 55%);
}
.hero.slips::before {
  background-image: url("../images/case-studies/bg-slips.jpg");
}
.hero.finexio::before {
  background-image: url("../images/case-studies/bg-finexio.jpg");
  background-position: center top -200px;
  filter: blur(2px);
}
.hero .middle {
  position: relative;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 0.4s ease-out forwards;
  animation-delay: 0.1s;
}
.hero h1 {
  padding-top: 30px;
}
.hero p {
  padding-top: 25px;
  color: #999999;
}
@media screen and (min-width: 900px) {
  .hero p {
    font-size: 23px;
    line-height: 30px;
  }
}
@media screen and (max-width: 900px) {
  .hero p {
    padding-top: 13px;
  }
}
.hero .case-study--tags {
  padding-top: 20px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  padding-top: 40px;
  transition: 0.4s;
}
@media screen and (max-width: 700px) {
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 900px) {
  .hero-actions {
    padding-top: 30px;
  }
}
.hero-actions.slow-hide {
  height: 0;
  overflow: hidden;
  padding-top: 0;
}

.sections {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .sections {
    padding-top: 10px;
    padding-bottom: 20px;
    gap: 30px;
  }
}
.sections .subtitle {
  padding-top: 30px;
  padding-bottom: 15px;
}
.sections h2 {
  padding-bottom: 10px;
}
.sections p {
  color: #999999;
}
.sections p:not(:last-child) {
  padding-bottom: 15px;
}
.sections h3 + h3, .sections h3 + h4,
.sections h4 + h3,
.sections h4 + h4,
.sections p + h3,
.sections p + h4,
.sections .steps + h3,
.sections .steps + h4 {
  padding-top: 15px;
}
.sections h3 + .steps,
.sections h4 + .steps,
.sections p + .steps,
.sections .steps + .steps {
  padding-top: 5px;
}

.skills {
  width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .skills {
    width: 100%;
  }
}
.skills + .subtitle {
  padding-top: 40px;
}

.skill {
  display: flex;
  align-items: stretch;
}
@media screen and (max-width: 900px) {
  .skill {
    flex-direction: column;
    gap: 8px;
  }
}
.skill-label {
  color: #999999;
}
@media screen and (min-width: 900px) {
  .skill-label {
    width: 45%;
    min-width: 350px;
  }
}
.skill-stats {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}
.skill-stat {
  width: 28px;
  height: 28px;
  border: solid 2px #333333;
  border-radius: 50%;
}
.skill-stat.active {
  background: #FFFFFF;
  border-color: #FFFFFF;
}

.case-study {
  width: 100%;
  min-height: 500px;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  padding: 40px;
}
@media screen and (min-width: 900px) {
  .case-study {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 900px) {
  .case-study {
    display: block;
    padding: 35px 20px 420px;
  }
}
.case-study::before, .case-study::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
}
.case-study::before {
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
}
.case-study::before {
  background-size: cover;
  background-position: top center;
  z-index: 1;
  filter: blur(5px);
}
.case-study::after {
  background: linear-gradient(40deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.5) 80%);
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .case-study::after {
    background: linear-gradient(109deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.85) 10%, rgba(0, 0, 0, 0.5) 80%);
  }
}
.case-study--inside {
  width: 44%;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1350px) {
  .case-study--inside {
    width: 54%;
  }
}
@media screen and (max-width: 900px) {
  .case-study--inside {
    width: 100%;
  }
}
.case-study--inside h2 {
  color: #FFFFFF;
}
.case-study--tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  opacity: 0.75;
}
@media screen and (max-width: 900px) {
  .case-study--tags {
    gap: 5px;
  }
}
.case-study--tag {
  border: solid 1px rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 8px 12px;
  font-family: "GT America Expanded", -apple-system, BlinkMacSystemFont, Roboto, Helvetica Neue, sans-serif;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .case-study--tag {
    padding: 5px 10px;
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}
.case-study .subtitle {
  position: relative;
  z-index: 3;
  padding: 0 0 25px;
}
@media screen and (min-width: 900px) {
  .case-study .subtitle {
    position: absolute;
    top: 40px;
    left: 40px;
    padding: 0;
  }
}
.case-study--screens {
  width: 55%;
  height: 100%;
  position: absolute;
  right: 0;
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: 3;
}
@media screen and (max-width: 1350px) {
  .case-study--screens {
    width: 45%;
  }
}
@media screen and (min-width: 900px) {
  .case-study--screens {
    top: 0;
  }
}
@media screen and (max-width: 900px) {
  .case-study--screens {
    width: 100%;
    height: 430px;
    bottom: -30px;
    background-position: top center;
  }
}
.case-study.slips::before {
  background-image: url("../images/case-studies/bg-slips.jpg");
}
.case-study.slips .case-study--screens {
  background-image: url("../images/case-studies/screens-slips.webp");
}
.case-study.rosie::before {
  background-image: url("../images/case-studies/bg-rosie.jpg");
}
.case-study.rosie .case-study--screens {
  background-image: url("../images/case-studies/screens-rosie.webp");
}
.case-study.comp::before {
  background-image: url("../images/case-studies/bg-comp.jpg");
}
.case-study.comp .case-study--screens {
  background-image: url("../images/case-studies/screens-comp.webp");
}
.case-study.fsi::before {
  background-image: url("../images/case-studies/bg-fsi.jpg");
}
.case-study.fsi .case-study--screens {
  background-image: url("../images/case-studies/screens-fsi.webp");
}
@media screen and (max-width: 700px) {
  .case-study.fsi .case-study--screens {
    background-position: top left -25px;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .nav {
    position: sticky;
    top: 90px;
  }
}
.nav-title, .nav-sub {
  padding: 1px 0;
  display: block;
}
.nav-title span, .nav-sub span {
  width: fit-content;
  display: block;
  position: relative;
  transition: 0.4s;
}
.nav-title span:before, .nav-sub span:before {
  width: 0;
  height: 2px;
  display: block;
  content: "";
  background: #CCFF5E;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(1px);
}
.nav-title:hover, .nav-sub:hover {
  color: #FFFFFF;
}
.nav .current span {
  padding: 0 10px;
  color: #FFFFFF;
}
.nav .current span:before {
  animation: growWide 0.4s ease-in forwards;
  animation-delay: 0.1s;
}
.nav-title {
  padding-bottom: 4px;
}
.nav-sub {
  color: #999999;
  transition: 0.4s;
}
.nav .subtitle {
  padding-bottom: 8px;
}

.image-grid-wrap {
  padding: 15px 0 30px;
}

.image-grid {
  width: 100%;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 1350px) {
  .image-grid {
    flex-direction: column;
  }
}
.image-grid + .image-grid {
  margin-top: 10px;
}
.image-grid-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border-radius: 40px;
  overflow: hidden;
  background: #151515;
}
.image-grid-img.off-white {
  background: #ECF0F1;
}
.image-grid-img.blue-finexio {
  background: #004e9e;
}
.image-grid-img.blue-two-finexio {
  background: #1a3e8a;
}
.image-grid-img img,
.image-grid-img iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 900px) {
  .image-grid-img img,
.image-grid-img iframe {
    height: 300px;
  }
}
.image-grid-img img {
  object-fit: contain;
}
.image-grid-img img.wireframing-finexio {
  width: 90%;
  mix-blend-mode: multiply;
}
.image-grid-img img.cover {
  object-fit: cover;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 15px;
}
.steps + .image-grid-wrap {
  padding-top: 20px;
}

.step {
  width: 350px;
  display: flex;
  background: #151515;
  padding: 10px 20px;
  border-radius: 40px;
}
@media screen and (max-width: 900px) {
  .step {
    width: 100%;
  }
}
.step-left {
  width: 40px;
  flex-shrink: 0;
  color: #CCFF5E;
}
.step-left.pdf {
  background-image: url("/assets/images/icons/pdf-highlight.svg");
  background-repeat: no-repeat;
  background-position: center left 4px;
  background-size: 20px;
}

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