/* SCSS Document */
/* MICROSOFT NONSENSE */
/* MIXINS */
/* RESET STYLES */
html, body, ul, ol, h1, h2, h3, h4 {
  margin: 0;
  padding: 0;
  list-style: none;
}

input, button, select, textarea {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

/* VARIABLES */
/* ELEMENT STYLES */
strong {
  font-weight: 700;
}

a {
  color: #131313;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  cursor: pointer;
}
a img {
  border: none;
}

ul {
  display: block;
  margin: 1em 0;
  padding-left: 1em;
}
ul li {
  display: list-item;
  list-style-type: square;
  margin: 0.5em 0;
  padding-left: 0.5em;
}

em {
  font-style: italic;
}

body.pause {
  overflow: hidden;
  height: 100%;
}

body, html {
  text-align: center;
  color: #131313;
  font-family: futura-pt, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  background: #F3F0EA;
  line-height: 1.35em;
}

h1, h2, h3, h4, h5 {
  font-family: futura-pt, sans-serif;
  font-weight: 400;
  font-size: 1em;
  line-height: 1em;
  display: block;
  margin: 0.15em 0;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 2em;
}
h2 + h3 {
  margin: 1em 0 0.5em;
}

h3 {
  font-size: 1em;
  text-transform: uppercase;
}
h3 + p {
  margin-top: 0;
}

input {
  line-height: 2em;
  margin-left: 1em;
  outline: none;
  border: none;
  font-family: futura-pt, sans-serif;
  font-size: 1em;
  background-color: transparent;
  color: #FFFFFF;
}

/* GENERAL STYLES */
.link {
  transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  margin-right: 32px;
  cursor: pointer;
}
.link:hover {
  opacity: 0.5;
}

.hide {
  opacity: 0;
  cursor: default;
}

.dropin {
  opacity: 0;
  position: relative;
  top: 2em;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
}
.dropin.now {
  opacity: 1;
  top: 0;
}

.inner {
  width: 90vw;
  margin: 0 auto;
  padding: 2em 0;
  text-align: center;
  position: relative;
}

#trigger {
  position: fixed;
  top: 32px;
  right: 32px;
  width: 32px;
  height: 50px;
  background-image: url("../images/nav.png");
  z-index: 99999;
  background-size: 96px;
  background-position-x: 0;
  background-position-y: 0;
  mix-blend-mode: difference;
  cursor: pointer;
}
#trigger:hover {
  background-position-x: 64px;
}
#trigger.open {
  background-position-x: 32px;
  mix-blend-mode: normal;
}

/* NAV STYLES */
nav {
  width: 100vw;
  height: 100vh;
  background-color: #C62E32;
  position: fixed;
  top: 0;
  z-index: 99998;
  color: #FFFFFF;
  transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  display: none;
  opacity: 0;
  overflow: scroll;
}
nav ol {
  list-style-type: none;
  counter-reset: li;
  list-style-position: inside;
  margin-top: 114px;
}
nav ol li {
  position: relative;
  padding: 32px;
  border-top: 1px solid #D1585B;
  top: -1em;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  cursor: pointer;
}
nav ol li:before {
  counter-increment: li;
  content: counter(li, decimal-leading-zero);
  display: block;
  position: absolute;
  left: 32px;
  font-size: 1.5em;
}
nav ol li a {
  width: 100%;
  display: block;
  height: auto;
  min-height: 26px;
  background-image: url("../images/upnover.svg");
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 26px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  color: #FFFFFF;
  transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -webkit-transition: all 0.1s ease-in-out;
}
nav ol li a span {
  width: 50%;
  max-width: 300px;
  margin: 0 auto;
  text-align: left;
}
nav ol li a span:first-of-type {
  font-size: 3.33333em;
  line-height: 1em;
  max-width: 400px;
}
nav ol li:hover a {
  background-position: 99% 0%;
}
nav ol li.selected a {
  background-image: none;
}
nav ol li.selected a span:first-of-type {
  text-decoration: underline;
  text-decoration-thickness: 0.04em;
}
nav.show {
  display: block;
}
nav.open {
  opacity: 1;
}
nav.open ol li {
  opacity: 1;
  top: 0;
}
nav.open ol li:nth-of-type(1) {
  transition-delay: 0.5s;
}
nav.open ol li:nth-of-type(2) {
  transition-delay: 0.7s;
}
nav.open ol li:nth-of-type(3) {
  transition-delay: 0.9s;
}
nav.open ol li:nth-of-type(4) {
  transition-delay: 1.1s;
}
nav.open ol li:nth-of-type(5) {
  transition-delay: 1.3s;
}

main {
  display: flex;
  flex-wrap: wrap;
}
main section {
  width: 100vw;
  height: 100vh;
  position: sticky;
  top: 0;
}
main section b {
  font-weight: inherit;
  white-space: nowrap;
}
main section#intro {
  background-color: #C62E32;
}
main section#intro .fullbg {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
main section#intro .inner {
  padding: 0;
  height: calc(100vh - 64px);
  margin: 32px auto;
  color: #FFFFFF;
}
main section#intro .inner h1 {
  font-size: 6vw;
  line-height: 0.9em;
  text-transform: uppercase;
  margin: 0;
}
main section#intro .inner .blurb {
  display: block;
  width: 100%;
  max-width: 500px;
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
}
main section#intro .inner .flag {
  position: absolute;
  left: 0;
  bottom: 32px;
  height: 55px;
}
main section#intro .inner .right {
  display: block;
  position: absolute;
  right: 0;
  bottom: 32px;
}
main section.split {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #F3F0EA;
  height: auto;
  justify-content: flex-end;
}
main section.split .splitcont {
  width: calc(50% - 64px);
  background-color: #F3F0EA;
  padding: 64px 32px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start !important;
  display: table-cell;
}
main section.split .splitcont h2 {
  font-size: 16px;
  margin: 0 0 1em;
}
main section.split .splitcont .biggie {
  font-size: 2em;
  line-height: 1.1em;
  margin: 0;
}
main section.split .splitcont.full {
  width: 100%;
}
main section.split .splitcont.forty {
  width: calc(40% - 64px);
}
main section.split .splitcont.sixty {
  width: calc(60% - 64px);
}
main section.split .splitcont.thirty {
  width: calc(33% - 64px);
}
main section.split .splitcont .profile span {
  display: block;
  text-indent: 2em;
}
main section.split .splitimg {
  width: 50%;
}
main section.split .splitimg img {
  width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 0;
     object-position: 50% 0;
}
main section.split .splitimg img.border {
  width: 90%;
  height: 81vh;
  margin: 4.5vh 5%;
}
main section.split .splitimg img.profile {
  width: 60%;
  height: auto;
  margin: 20%;
}
main section.split.left {
  justify-content: flex-start;
}
main section.fullimg img {
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
}
main section.full {
  height: auto;
}
main section.contact {
  background-color: #F3F0EA;
  display: flex;
  flex-wrap: wrap;
  z-index: 99997;
  min-height: 80vh;
  height: auto;
}
main section.contact #searchconts {
  width: 100vw;
  background-color: #C62E32;
  border-top: 1px solid #D1585B;
  min-height: 10vh;
  position: sticky;
  top: 0;
  z-index: 1;
}
main section.contact #searchconts div {
  color: #FFFFFF;
  height: 40px;
  border-bottom: 1px solid #FFFFFF;
  margin: 30px auto 29px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.5em;
}
main section.contact #contcopy {
  width: 21vw;
  padding: 4em 2vw;
  text-align: left;
}
main section.contact #contacts {
  display: flex;
  flex-wrap: wrap;
  width: 75vw;
  position: relative;
  padding: 3em 0 13em;
}
main section.contact #contacts .card {
  width: 33.33333%;
  padding: 0;
  border-top: 1px solid #131313;
}
main section.contact #contacts .card div {
  text-align: left;
  padding: 2em 2em 2em 0;
  text-align: left;
}
main section.contact #contacts .card div h3 {
  font-size: 1.1em;
  margin: 1em 0;
}
main section.contact #contacts .card div .address {
  text-transform: uppercase;
}
main section.tripple {
  display: flex;
  flex-wrap: wrap;
}
main section.tripple img {
  width: 33.33333%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
main #wrapper {
  height: 200vh;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  background-image: url("../images/17_3360w.jpg");
  background-size: 200vh;
  background-position: 50% 100%;
  background-attachment: fixed;
  background-color: #131313;
}
main #timeline {
  height: 100vh;
  position: relative;
  display: inline-flex;
}
main #timeline .flag {
  position: absolute;
  left: 32px;
  bottom: 32px;
  height: 55px;
  z-index: 1;
}
main #timeline section {
  width: -moz-fit-content;
  width: fit-content;
  height: 100vh;
  position: relative;
  top: auto;
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  color: #FFFFFF;
  float: left;
}
main #timeline section.lotus {
  background-color: #203412;
}
main #timeline section.ferrari {
  background-color: #C62E32;
}
main #timeline section.mercedes {
  background-color: #131313;
}
main #timeline section .tlcol {
  height: calc(100vh - 64px);
  padding: 32px;
  display: block;
  text-align: left;
}
main #timeline section .tlcol.date {
  width: calc(33.33333vw - 64px);
}
main #timeline section .tlcol.date h2 {
  font-size: 6vw;
}
main #timeline section .tlcol.copy {
  width: calc(40vw - 64px);
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
}
main #timeline section .tlcol.copy h3 {
  font-size: 6vw;
  text-transform: none;
  line-height: 0.9em;
}
main #timeline section .tlcol.copy .cblock {
  width: 66%;
}
main #timeline section .tlcol.copy .cblock.sml {
  font-size: 0.75em;
  line-height: 1.1em;
}
main #timeline section .tlcol.copybtm {
  width: calc(40vw - 64px);
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
main #timeline section .tlcol.copybtm .cblock {
  width: 66%;
}
main #timeline section .tlcol.photo {
  height: 100vh;
  padding: 0;
}
main #timeline section .tlcol.photo img {
  height: 100vh;
  aspect-ratio: 4/6;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
}
main #timeline section .tlcol.photoar {
  height: 100vh;
  padding: 0;
}
main #timeline section .tlcol.photoar img {
  height: 100vh;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
}
main #timeline section .tlcol.fullimg {
  height: 100vh;
  padding: 0;
}
main #timeline section .tlcol.fullimg img {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
}
main #timeline section .tlcol.sqrimg {
  height: 100vh;
  padding: 0;
}
main #timeline section .tlcol.sqrimg img {
  height: 100vh;
  width: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  float: left;
}
main #timeline section .tlcol.imgbtm {
  width: calc(33.33333vw - 64px);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
}
main #timeline section .tlcol.imgbtm img {
  width: 100%;
}
main #timeline section .tlcol.imgcnt {
  width: calc(50vw - 64px);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
main #timeline section .tlcol.imgcnt img {
  width: 100%;
}
main .finalimg {
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* FOOTER STYLES */
#oop {
  cursor: pointer;
}

footer {
  background-color: #F3F0EA;
  color: #131313;
  height: 8vh;
  line-height: 8vh;
  position: relative;
  width: 100vw;
  font-size: 0.88em;
}
footer .centre {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
footer .left {
  position: absolute;
  top: 0;
  left: 32px;
}
footer .right {
  position: absolute;
  top: 0;
  right: 32px;
}
footer.bringup {
  margin-top: -8vh;
  background-color: transparent;
  color: #FFFFFF;
}

/* Desktop Styles */
@media only screen and (min-width: 1025px) {
  main section.contact #contacts .card:nth-child(-n+3) {
    border-top: 0;
  }
}
/* Tablet Styles */
@media only screen and (max-width: 1024px) {
  #trigger {
    top: 16px;
    right: 16px;
  }
  nav ol {
    margin-top: 96px;
  }
  nav ol li {
    padding: 16px;
  }
  nav ol li a span {
    max-width: 600px;
  }
  nav ol li a span:first-of-type {
    font-size: 3em;
    max-width: auto;
  }
  nav ol li a span:last-of-type {
    display: none;
  }
  main section#intro .inner {
    padding: 0;
    height: calc(100vh - 64px);
    margin: 16px auto;
    color: #FFFFFF;
  }
  main section#intro .inner h1 {
    font-size: 8vw;
    margin-top: 64px;
  }
  main section#intro .inner .flag {
    height: 30px;
  }
  main section.split {
    justify-content: flex-start;
  }
  main section.split .splitcont {
    padding: 32px;
  }
  main section.split .splitcont.forty {
    width: calc(66% - 32px);
  }
  main section.split .splitcont.sixty {
    width: calc(66% - 32px);
  }
  main section.split .splitcont.thirty {
    width: calc(66% - 32px);
  }
  main section.fullimg {
    height: 66.66666vw;
  }
  main section.fullimg img {
    height: 66.66666vw;
  }
  main section.tripple {
    height: 66.66666vw;
  }
  main section.tripple img {
    height: 66.66666vw;
  }
  main section.contact #contacts .card {
    width: 40%;
    padding: 5%;
  }
  main section.contact #contacts .card:nth-child(-n+2) {
    border-top: 0;
  }
  main #timeline section .tlcol.date {
    width: calc(66.66666vw - 32px);
  }
  main #timeline section .tlcol.date h2 {
    font-size: 8vw;
  }
  main #timeline section .tlcol.copy {
    width: calc(66.66666vw - 32px);
  }
  main #timeline section .tlcol.copy h3 {
    font-size: 8vw;
  }
  main #timeline section .tlcol.copy .cblock {
    width: 66.66666%;
  }
  main #timeline section .tlcol.copybtm {
    width: calc(66.66666vw - 32px);
  }
  main #timeline section .tlcol.copybtm .cblock {
    width: 66.66666%;
  }
  main #timeline section .tlcol.imgbtm {
    width: calc(66.66666vw - 32px);
  }
  main #timeline section .tlcol.imgbtm img {
    width: 100%;
  }
  main #timeline section .tlcol.imgcnt {
    width: calc(100vw - 32px);
  }
}
/* Phone Styles */
@media only screen and (max-width: 819px) {
  nav ol li a span:first-of-type {
    font-size: 2em;
  }
  main section#intro .inner .blurb {
    width: 90%;
    bottom: 64px;
  }
  main section.split .splitcont.forty {
    width: calc(100% - 64px);
  }
  main section.split .splitcont.sixty {
    width: calc(100% - 64px);
  }
  main section.split .splitcont.thirty {
    width: calc(100% - 64px);
  }
  main section.contact #contcopy {
    width: 80vw;
    padding: 1em 10vw;
  }
  main section.contact #contacts {
    width: 100vw;
  }
  main section.contact #contacts .card {
    width: 90%;
    padding: 5%;
  }
  main section.contact #contacts .card:first-of-type {
    border-top: 0;
  }
  main section.tripple {
    height: 300vh;
  }
  main section.tripple img {
    width: 100vw;
    height: 100vh;
  }
  main #timeline .flag {
    left: 48px;
    bottom: 48px;
  }
  main #timeline section .tlcol {
    height: calc(100vh - 96px);
    padding: 48px;
  }
  main #timeline section .tlcol.date h2 {
    font-size: 10vw;
  }
  main #timeline section .tlcol.copy {
    width: calc(100vw - 64px);
  }
  main #timeline section .tlcol.copy h3 {
    font-size: 10vw;
  }
  main #timeline section .tlcol.copy .cblock {
    width: 100%;
  }
  main #timeline section .tlcol.copybtm {
    width: calc(100vw - 64px);
  }
  main #timeline section .tlcol.copybtm .cblock {
    width: 100%;
  }
  #oop {
    margin-left: 5vw;
  }
  footer .centre {
    display: none;
  }
}/*# sourceMappingURL=styles.css.map */