@keyframes zoom-out {
  0% {
    transform: scale(100);
  }
  100% {
    transform: scale(1);
  }
}
/* width */
::-webkit-scrollbar {
  width: 1rem;
  border-radius: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #d7dce2;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(244, 125, 32, 0.7);
  border-radius: 30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #f47d20;
}

* {
  margin: 0;
  padding: 0;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  font-family: "Quicksand", sans-serif;
  scroll-behavior: smooth;
  color: #fff;
}
@media (min-width: 47.5em) {
  html {
    font-size: 75%;
  }
}

body {
  box-sizing: border-box;
}

.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.down--arrow {
  transform: rotate(90deg);
  width: 4.5rem;
  height: 4.5rem;
}

.scroll-to-top {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  background-color: transparent;
  background-image: url("../../assets/icons/icon-arrow-fixed.svg");
  transform: rotate(90deg);
  width: 3.2rem;
  height: 3.2rem;
  background-size: cover;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 9999;
  transition: all 0.4s;
  opacity: 0;
}
@media (min-width: 47.5em) {
  .scroll-to-top {
    right: 2rem;
  }
}

.hide {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

@font-face {
  font-family: akzidenz;
  src: url(../../assets/fonts/Akzidenz-Grotesk-medium.ttf);
}
.paragraph {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
}

.heading-orange {
  color: #f47d20;
}

.heading-primary {
  text-transform: uppercase;
  font-size: 3.4rem;
  font-weight: 300;
}
@media (min-width: 47.5em) {
  .heading-primary {
    font-size: 4.2rem;
  }
}

.heading-secondary {
  text-transform: capitalize;
  font-size: 2.6rem;
  font-weight: 300;
}

.icon__fast .icon__fast--arrow {
  transition: transform 0.3s;
  transform-origin: center;
}
.icon__fast .icon__fast--regulator--tip {
  transition: transform 0.3s;
}
.icon__fast .icon__fast--dash {
  transition: transform 0.3s;
}
.icon__fast:hover .icon__fast--arrow {
  transform: rotate(35deg) translate(10px, -11px);
}
.icon__fast:hover .icon__fast--regulator--tip {
  transform: translateY(6px);
}
.icon__fast:hover .icon__fast--dash {
  transform: translateX(16px);
}
.icon__responsive {
  transform: translateY(30px);
}

.navigation {
  top: 0;
  left: 0;
}
.navigation__background {
  width: 1vw;
  height: 1vh;
  border-radius: 50%;
  background-color: #f47d20;
  transition: transform 0.5s;
  transform: scale(0);
  position: fixed;
  top: 3rem;
  right: 3.5rem;
  z-index: 8;
}
.navigation--toggle {
  display: none;
}
.navigation--btn {
  display: block;
  position: fixed;
  top: 1.4rem;
  right: 1.4rem;
  width: 23px;
  height: 2px;
  z-index: 10;
  transition: all 0.3s;
  cursor: pointer;
  padding: 2rem;
}
.navigation--icon {
  display: block;
  z-index: 9;
  background-color: #fff;
  width: 18px;
  height: 2px;
  z-index: 10;
  transition: all 0.3s;
  position: relative;
  right: 0.8rem;
}
.navigation--icon::before, .navigation--icon::after {
  display: block;
  content: "";
  background-color: #fff;
  width: 30px;
  height: 2px;
  position: relative;
  right: 11px;
  transition: all 0.3s;
}
.navigation--icon::before {
  top: 10px;
  z-index: 11;
}
.navigation--icon::after {
  top: -12px;
  z-index: 12;
}
.navigation__nav {
  font-size: 3.2rem;
  position: fixed;
  z-index: 11;
  top: 50%;
  left: 50%;
  transform: scale(1) translate(-50%, -50%);
  transition: all 0.3s;
  transform-origin: bottom;
}
.navigation__list {
  list-style: none;
  text-decoration: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 0;
  transform: scale(0);
  transition: all 0.5s;
  transform-origin: top;
}
.navigation__list--item {
  padding: 1.8rem;
  color: #fff;
}
.navigation__list--item:not(:last-child) {
  margin-bottom: 0.5rem;
}
.navigation__list--link:link, .navigation__list--link:active, .navigation__list--link:visited {
  color: #fff;
  text-decoration: none;
}
.navigation__list--link:hover {
  border-bottom: 1px solid #464e59;
}
.navigation--toggle:checked ~ .navigation__background {
  transform: scale(1000);
}
.navigation--toggle:checked ~ .navigation__background ~ .navigation__nav .navigation__list {
  height: 100vh;
  transform: scale(1);
}
.navigation--toggle:checked ~ .navigation--btn .navigation--icon {
  background-color: transparent;
}
.navigation--toggle:checked ~ .navigation--btn .navigation--icon::before {
  top: 0;
  transform: rotate(-45deg);
}
.navigation--toggle:checked ~ .navigation--btn .navigation--icon::after {
  top: -2px;
  transform: rotate(45deg);
}

.projects__nav--list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  width: 50%;
  margin: 0 auto;
}
@media (min-width: 67.5em) {
  .projects__nav--list {
    flex-direction: column;
    margin: 0;
    align-content: center;
    width: 100%;
  }
}
.projects__nav__li {
  color: #f47d20;
  font-size: 2.2rem;
  cursor: pointer;
}
.projects__nav__li--line {
  display: block;
  background-color: #fff;
  height: 2.5rem;
  width: 2px;
  margin-left: 1rem;
  margin-bottom: 0.4rem;
  transition: all 0.4s;
}
@media (min-width: 67.5em) {
  .projects__nav__li--line {
    height: 2px;
    width: 2.5rem;
    margin: 0;
  }
}
.projects__nav__li--link {
  font-family: "akzidenz";
  display: inline-block;
  text-decoration: none;
  color: currentColor;
  height: 8rem;
  width: 3.6rem;
}
@media (min-width: 67.5em) {
  .projects__nav__li--link {
    display: flex;
    align-items: center;
    width: auto;
  }
}
@media (min-width: 67.5em) {
  .projects__nav__li__number {
    padding-left: 1rem;
  }
}
.projects__nav__li__number--last {
  font-size: 1.4rem;
}
.projects__nav__li--selected, .projects__nav__li:hover .projects__nav__li--line {
  height: 4.6rem;
  background-color: #f47d20;
}
@media (min-width: 67.5em) {
  .projects__nav__li--selected, .projects__nav__li:hover .projects__nav__li--line {
    height: 2px;
    width: 4.6rem;
  }
}

.about {
  display: grid;
  grid-template-rows: 1fr 11rem;
  grid-template-columns: 1fr 18rem;
  grid-gap: 4rem;
  justify-content: center;
  background-color: #f47d20;
  text-align: center;
  overflow: hidden;
  padding-bottom: 8rem;
  clip-path: polygon(50% 100%, 100% 90%, 100% 0, 0 0, 0 90%);
}
@media (min-width: 47.5em) {
  .about {
    grid-template-rows: 1fr 10rem;
    grid-template-columns: minmax(3rem, 8rem) 1fr 1fr minmax(3rem, 8rem);
    text-align: left;
    padding-bottom: 15rem;
  }
}
@media (min-width: 47.5em) {
  .about {
    grid-template-columns: 1fr 30% 30% 1fr;
  }
}
.about--img {
  max-width: 100%;
  grid-column: 1/-1;
  grid-row: 1/3;
  align-self: center;
  overflow: hidden;
  filter: brightness(.5);
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  transition: transform 0.3s;
}
.about--img > source:hover, .about--img > img:hover {
  transform: scale(1.05);
}
.about--heading {
  text-align: right;
  grid-row: 2/3;
  grid-column: 2/3;
  justify-self: center;
  z-index: 2;
}
@media (min-width: 47.5em) {
  .about--heading {
    text-align: initial;
    grid-column: 2/3;
    align-self: center;
    justify-self: left;
  }
}
@media (min-width: 67.5em) {
  .about--heading {
    align-self: start;
  }
}
@media (min-width: 47.5em) {
  .about--heading > br {
    display: none;
  }
}
.about--me {
  padding-left: 3rem;
  padding-right: 3rem;
  grid-column: 1/-1;
}
@media (min-width: 47.5em) {
  .about--me {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 67.5em) {
  .about--me {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media (min-width: 47.5em) {
  .about--me {
    padding: 0;
    grid-column: 2/3;
  }
}
.about--cta {
  grid-column: 1/-1;
  font-weight: 300;
}
@media (min-width: 47.5em) {
  .about--cta {
    text-align: center;
    grid-column: 2/4;
  }
}
@media (min-width: 47.5em) {
  .about--cta > br {
    display: none;
  }
}
.about--logo {
  grid-column: 1/-1;
  width: 18rem;
  justify-self: center;
}
@media (min-width: 47.5em) {
  .about--logo {
    grid-row: 3/-1;
    grid-column: 3/4;
    align-self: center;
    justify-self: end;
  }
}

.contact {
  padding-left: 3rem;
  padding-right: 3rem;
  margin-top: -14.2rem;
  padding-top: 17.4rem;
  padding-bottom: 3.2rem;
  background-color: #09192f;
  text-align: center;
  color: #fff;
}
@media (min-width: 47.5em) {
  .contact {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 67.5em) {
  .contact {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
.contact--heading {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  color: #f47d20;
  font-size: 1.6rem;
}
@media (min-width: 47.5em) {
  .contact--heading {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .contact--heading {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .contact--heading {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.contact__info {
  font-size: 1.6rem;
  margin: 0 auto;
  max-width: 60%;
}
.contact__info--seperator {
  display: none;
}
@media (min-width: 47.5em) {
  .contact__info--seperator {
    display: inline-block;
    padding: 0 0.8rem;
  }
}
.contact__info--link {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: inherit;
}
.contact__form {
  padding-top: 3.2rem;
  max-width: 700px;
  margin: 0 auto;
}
.contact__form--input, .contact__form--textarea {
  border: none;
  font-family: inherit;
  font-size: 1.4rem;
  background-color: #f47d20;
  color: #fff;
  width: 100%;
  padding-top: 4px;
  padding-left: 4px;
  position: relative;
}
.contact__form--label {
  display: flex;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0.5rem 0 0.8rem;
}
.contact__form--input {
  margin-bottom: 1rem;
  padding: 1rem 0;
}
@media (min-width: 47.5em) {
  .contact__form--textarea {
    height: 16em;
  }
}
.contact__form--submit {
  text-transform: uppercase;
  background-color: inherit;
  border: 1px solid #fff;
  margin: 4.5rem auto;
  color: #fff;
  display: block;
  text-align: center;
  font-weight: 700;
  font-family: inherit;
  padding: 0.6rem 3.7rem;
  cursor: pointer;
}

.footer {
  text-align: center;
  background-color: #f47d20;
  font-size: 1.2rem;
  font-weight: 300;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 2rem 0;
}

.header--logo {
  width: 21rem;
  animation: 0.6s zoom-out;
  transform-origin: 2%;
}
.header--canvas {
  display: block;
  margin: 0;
  background-color: #09192f;
  max-width: 100%;
  height: 100vh;
}
.header__overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.header__animation {
  width: 21rem;
  position: relative;
  padding-top: 2rem;
  padding-left: 2.6rem;
}
.header__animation--lineY {
  height: 0px;
  width: 2px;
  background-color: #fff;
  transform-origin: top;
  transition: height 0.2s 0.5s;
}
.header__animation--lineX {
  height: 2px;
  width: 0px;
  margin-bottom: 10px;
  background-color: #fff;
  transform-origin: left;
  transition: width 0.2s 0.7s;
  position: relative;
}
.header__animation--enter {
  text-decoration: none;
  position: absolute;
  top: 13.9rem;
  left: 5.5rem;
  pointer-events: initial;
  color: #f47d20;
  font-size: 1.8rem;
  letter-spacing: 11px;
  opacity: 0;
  transition: opacity 0.3s 1s;
  text-transform: uppercase;
}
.header__animation--link {
  position: absolute;
  top: -2.3rem;
  right: -5rem;
  opacity: 0;
  transform: rotate(90deg);
  transition: opacity 0.6s 1s;
  cursor: pointer;
  pointer-events: initial;
}
.header__animation--link--img {
  width: 4.6rem;
  height: 4.6rem;
}

.priorities {
  padding-left: 3rem;
  padding-right: 3rem;
  margin-top: -14.2rem;
  padding-top: 17.4rem;
  padding-bottom: 3.2rem;
  background-color: #09192f;
  height: 100%;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 47.5em) {
  .priorities {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 67.5em) {
  .priorities {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media (min-width: 47.5em) {
  .priorities {
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
    justify-content: space-between;
  }
}
@media (min-width: 47.5em) {
  .priorities--title {
    flex-basis: 100%;
  }
}
.priorities__box {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  text-align: center;
}
@media (min-width: 47.5em) {
  .priorities__box {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .priorities__box {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .priorities__box {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 47.5em) {
  .priorities__box {
    flex-basis: 46%;
  }
}
@media (min-width: 87.5em) {
  .priorities__box {
    flex-wrap: nowrap;
    flex-basis: 20%;
  }
}
.priorities__box--heading {
  padding: 2rem 0;
  font-weight: 400 !important;
}
.priorities--desc {
  font-weight: 700;
  padding: 1.2rem;
  font-size: 1.4rem;
  border: 2px solid rgba(215, 220, 226, 0.4);
  border-radius: 15px;
  transition: border 0.4s;
  height: 12.5rem;
  display: flex;
  align-items: center;
}
@media (min-width: 47.5em) {
  .priorities--desc {
    height: 13.5rem;
  }
}
@media (min-width: 87.5em) {
  .priorities--desc {
    height: 15rem;
  }
}
.priorities--desc:hover {
  border: 2px solid #f47d20;
}

.projects {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
@media (min-width: 47.5em) {
  .projects {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .projects {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .projects {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.projects__intro {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
  background-color: #e5e5e5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 47.5em) {
  .projects__intro {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .projects__intro {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .projects__intro {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 47.5em) {
  .projects__intro {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 67.5em) {
  .projects__intro {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media (min-width: 67.5em) {
  .projects__intro > h1 {
    align-self: start;
  }
}
.projects__intro--img {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
@media (min-width: 47.5em) {
  .projects__intro--img {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .projects__intro--img {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .projects__intro--img {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
.projects__intro--img > img, .projects__intro--img > source {
  max-height: 55vh;
  max-width: 100%;
  object-fit: cover;
}
.projects--blue {
  background-color: #09192f;
}
.projects--grey {
  background-color: #464e59;
}
@media (min-width: 67.5em) {
  .projects__desc {
    display: grid;
    grid-template-columns: 140px 1fr minmax(850px, 1000px) 1fr 140px;
    align-items: center;
    align-content: center;
  }
}
@media (min-width: 67.5em) {
  .projects__desc {
    padding: 10rem 0;
  }
}
@media (min-width: 100em) {
  .projects__desc {
    grid-template-columns: 140px 1fr minmax(1000px, 1200px) 1fr 140px;
  }
}
.projects__desc:last-child {
  clip-path: polygon(50% 100%, 100% 90%, 100% 0, 0 0, 0 90%);
  padding-bottom: 7rem;
}
@media (min-width: 67.5em) {
  .projects__desc:last-child {
    padding-bottom: 17.1rem;
  }
}
.projects__overlay {
  display: none;
}
@media (min-width: 67.5em) {
  .projects__overlay {
    display: inline-block;
    width: 101%;
    height: 101%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }
}
@media (min-width: 67.5em) {
  .projects__overlay--survey {
    background-image: url(../../assets/images-md/dynamic-survey-screenshot.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__overlay--cad {
    background-image: url(../../assets/images-md/inventor-screenshot.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__overlay--jmb {
    background-image: url(../../assets/images-md/jmb-landing1150w.png);
  }
}
@media (min-width: 67.5em) {
  .projects__overlay--sandwich {
    background-image: url(../../assets/images-md/sandwich-landing1150w.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__overlay--bmw {
    background-image: url(../../assets/images-md/bmw-landing1150w.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__overlay--blog {
    background-image: url(../../assets/images-md/blog-landing1150w.jpg);
  }
}
.projects__overlay__line {
  display: none;
}
@media (min-width: 67.5em) {
  .projects__overlay__line {
    display: block;
    position: absolute;
    bottom: -25px;
    background-color: #fff;
  }
}
@media (min-width: 67.5em) {
  .projects__overlay__line--x {
    right: -24px;
    width: 250px;
    height: 2px;
  }
}
@media (min-width: 67.5em) {
  .projects__overlay__line--y {
    right: -25px;
    width: 2px;
    height: 250px;
  }
}
.projects__details {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
  padding-left: 3rem;
  padding-right: 3rem;
  text-align: center;
}
@media (min-width: 47.5em) {
  .projects__details {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .projects__details {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .projects__details {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 47.5em) {
  .projects__details {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}
@media (min-width: 67.5em) {
  .projects__details {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
@media (min-width: 67.5em) {
  .projects__details {
    display: grid;
    grid-template-columns: 1fr 50% 1fr 35%;
    grid-template-rows: 80px 110px auto;
    grid-column: 3/4;
    padding: 0;
    background-color: #d7dce2;
    position: relative;
    text-align: left;
    min-height: 70vh;
  }
}
@media (min-width: 100em) {
  .projects__details {
    grid-template-columns: 1fr 45% 1fr 40%;
  }
}
.projects__details--list {
  font-weight: 700;
  padding-top: 20px;
  padding-left: 20px;
  font-size: 1.6rem;
}
.projects__details--list li {
  text-align: initial;
  font-size: inherit;
  line-height: 1.5;
  padding-bottom: 0.5rem;
}
.projects__details--first--row {
  display: none;
}
@media (min-width: 67.5em) {
  .projects__details--first--row--blue {
    display: flex;
    align-items: center;
    grid-row: 1/2;
    grid-column: 1/-1;
    background-color: #09192f;
  }
}
@media (min-width: 67.5em) {
  .projects__details--first--row--grey {
    display: flex;
    align-items: center;
    grid-row: 1/2;
    grid-column: 1/-1;
    background-color: #464e59;
  }
}
.projects__details--arrow {
  display: none;
}
@media (min-width: 67.5em) {
  .projects__details--arrow {
    display: block;
    height: 4.5rem;
    width: 4.5rem;
    cursor: pointer;
  }
}
@media (min-width: 67.5em) {
  .projects__details--heading {
    grid-row: 2/3;
    grid-column: 2/3;
    color: #f47d20;
    align-self: center;
  }
}
.projects__details--img--mobile, .projects__details--img--mobile source, .projects__details--img--mobile img {
  max-width: 100%;
  max-height: 85vh;
  padding-top: 3rem;
}
@media (min-width: 67.5em) {
  .projects__details--img--mobile, .projects__details--img--mobile source, .projects__details--img--mobile img {
    display: none;
  }
}
.projects__details--img {
  display: none;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
}
@media (min-width: 67.5em) {
  .projects__details--img {
    display: block;
    grid-column: 4/-1;
    grid-row: 1/-1;
  }
}
@media (min-width: 67.5em) {
  .projects__details--img--survey {
    background-image: url(../../assets/images-sm/dynamic-survey-mobile-screenshot-417w.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__details--img--cad {
    background-image: url(../../assets/images-sm/revit-screenshot.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__details--img--jmb {
    background-image: url(../../assets/images-sm/jmb-400w.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__details--img--tsh {
    background-image: url(../../assets/images-sm/sandwich-house-400w.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__details--img--bmw {
    background-image: url(../../assets/images-sm/bmw-400w.jpg);
  }
}
@media (min-width: 67.5em) {
  .projects__details--img--blog {
    background-image: url(../../assets/images-sm/blog-400w.jpg);
  }
}
.projects__details--summary {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}
@media (min-width: 47.5em) {
  .projects__details--summary {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}
@media (min-width: 67.5em) {
  .projects__details--summary {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 87.5em) {
  .projects__details--summary {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (min-width: 67.5em) {
  .projects__details--summary {
    padding: 0;
    grid-row: 3/4;
    grid-column: 2/3;
    font-size: 1.6rem;
    max-height: 80%;
    overflow-y: scroll;
    color: #09192f;
  }
}
@media (min-width: 67.5em) {
  .projects__details--summary .paragraph {
    color: #09192f;
  }
}
@media (min-width: 67.5em) {
  .projects__links {
    text-align: center;
    position: absolute;
    width: 130px;
    bottom: calc(-25px - 0.7rem);
    right: 230px;
  }
}
@media (min-width: 67.5em) {
  .projects__links--container {
    height: 1.7rem;
    perspective: 150rem;
    transform-style: preserve-3d;
  }
}
.projects__links--visit, .projects__links--learn {
  color: #f47d20;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.4s;
  width: 100%;
  transform-origin: top;
  cursor: pointer;
}
@media (min-width: 67.5em) {
  .projects__links--visit, .projects__links--learn {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 67.5em) {
  .projects__links--visit {
    transform: rotateX(-90deg);
  }
}
.projects__links--learn {
  display: none;
}
@media (min-width: 67.5em) {
  .projects__links--learn {
    display: block;
  }
}

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