@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes moveLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  0.65% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-3000vw);
            transform: translateX(-3000vw);
    opacity: 1;
  }
}
@keyframes moveLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 0;
  }
  0.65% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-3000vw);
            transform: translateX(-3000vw);
    opacity: 1;
  }
}
@-webkit-keyframes tilt {
  0% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    opacity: 1;
  }
}
@keyframes tilt {
  0% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: skewX(-20deg);
            transform: skewX(-20deg);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
* {
  cursor: none;
}

.cursor-outer {
  pointer-events: none;
  opacity: 0;
  width: 50px;
  height: 50px;
  border: 1px solid #0A224D;
  border-radius: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
}

.cursor-inner {
  pointer-events: none;
  opacity: 0.3;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #0A224D;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.click {
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

.link-hover-outer {
  width: 3px;
  height: 3px;
  background-color: #0A224D;
}

.link-hover-inner {
  width: 50px;
  height: 50px;
  border: 1px solid #0A224D;
  background-color: transparent;
  opacity: 1;
}

.project-hover-outer {
  width: 200px;
  height: 200px;
  background-size: cover;
}

.project-hover-inner {
  width: 3px;
  height: 3px;
  opacity: 1;
}

/* Webfont: BigillaDemo */
@font-face {
  font-family: "Bigilla";
  src: url("https://ixd1172.phoenix.sheridanc.on.ca/portfolio/assets/fonts/bigilla.otf") format("opentype"), url("https://ixd1172.phoenix.sheridanc.on.ca/portfolio/assets/fonts/bigilla-webfont.woff") format("woff"), url("https://ixd1172.phoenix.sheridanc.on.ca/portfolio/assets/fonts/bigilla-webfont.woff2") format("woff2");
}
@font-face {
  font-family: "Bigilla-Bold";
  src: url("https://ixd1172.phoenix.sheridanc.on.ca/portfolio/assets/fonts/bigilla-bold.otf") format("opentype"), url("https://ixd1172.phoenix.sheridanc.on.ca/portfolio/assets/fonts/bigilla-bold-webfont.woff") format("woff"), url("https://ixd1172.phoenix.sheridanc.on.ca/portfolio/assets/fonts/bigilla-bold-webfont.woff2") format("woff2");
}
/* CSS for Bigilla
* Generated by Wakamai Fondue - https://wakamaifondue.com
* by Roel Nieskens/PixelAmbacht - https://pixelambacht.nl
*/
/* Set custom properties for each layout feature */
:root {
  --bigilla-aalt: "aalt" off;
}

/* If class is applied, update custom property and
   apply modern font-variant-* when supported */
.bigilla-aalt {
  --bigilla-aalt: "aalt" on;
}

/* Apply current state of all custom properties
   whenever a class is being applied */
.bigilla-aalt {
  -webkit-font-feature-settings: var(--bigilla-aalt);
          font-feature-settings: var(--bigilla-aalt);
}

h3,
.footer-mid a {
  font-family: "Bigilla";
}

.page-title span,
.different {
  font-family: "Bigilla-Bold";
}

* {
  -webkit-font-feature-settings: "liga";
          font-feature-settings: "liga";
  font-family: "Poppins", sans-serif;
  font-weight: 200;
}

body {
  background: wheat;
}

main {
  width: 100%;
}

.landing,
.footer {
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section {
  min-height: 100vh;
}

section:nth-of-type(2) {
  border-bottom: 1px #6E5528 solid;
}

.section-content {
  width: 100%;
  border-top: 1px #6E5528 solid;
}

.wrapper {
  width: calc(100vw - 260px);
  margin: 0 auto;
  padding: 2vw 5vw;
  border: 1px #6E5528 solid;
  border-top: none;
  border-bottom: none;
}

/* CONTACT BUTTON */
.go-to-btn {
  z-index: 100;
  height: 0;
  position: fixed;
  top: 88.5vh;
  right: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 20px;
}

.go-to-btn-background {
  position: relative;
  height: 65px;
  width: 65px;
  mix-blend-mode: difference;
  border: 2px solid #0A224D;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-text {
  height: 70px;
  width: 70px;
  position: absolute;
  top: -4px;
  right: 15px;
  border-radius: 50%;
  -webkit-animation: spin 7s linear infinite;
          animation: spin 7s linear infinite;
  -webkit-animation-play-state: running;
          animation-play-state: running;
  -webkit-filter: invert(1);
          filter: invert(1);
}

.btn-text:hover,
.btn-text:focus {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

p,
h2 {
  text-transform: uppercase;
  font-size: 20px;
}

h2 {
  font-weight: 300;
  width: 100%;
  margin: 0;
  padding-left: 10px;
  line-height: 35px;
  position: sticky;
  top: 0;
  background-color: rgba(245, 222, 179, 0.6274509804);
  color: #0A224D;
}

h3 {
  text-transform: uppercase;
  font-size: 5vw;
  margin: 0;
}

.landing {
  background-image: url("../assets/background-landing.png");
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px #6E5528 solid;
  -webkit-animation: fadeIn 1.5s;
          animation: fadeIn 1.5s;
}

.copyright {
  z-index: 100;
  line-height: 0;
  position: fixed;
  width: 99vw;
  text-align: center;
  margin: 0 auto;
  padding: 18px;
  display: inline-block;
  color: white;
  mix-blend-mode: difference;
}
.copyright .symbol {
  font-weight: 500;
  color: white;
  mix-blend-mode: difference;
}

.copyright:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
}

.page-title {
  z-index: 100;
  text-transform: uppercase;
  letter-spacing: -1px;
  color: #999997;
  width: 100%;
  font-size: 12vw;
  line-height: 1;
  overflow: hidden;
  mix-blend-mode: difference;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-title span {
  -webkit-animation: moveLeft 200s infinite 1.5s;
          animation: moveLeft 200s infinite 1.5s;
  white-space: nowrap;
  display: block;
  position: relative;
  opacity: 0;
}
.page-title span.f-e-d {
  font-size: 7vw;
  opacity: 0;
  -webkit-animation: tilt 3s 1.5s 1 forwards;
          animation: tilt 3s 1.5s 1 forwards;
}

section#about {
  min-height: 50vh;
}

.about .section-content .about-content {
  height: 50vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6E5528;
}
.about .section-content .about-content p {
  text-transform: none;
  text-align: center;
  line-height: 35px;
}
.about .section-content .about-content p:first-of-type {
  line-height: 50px;
  font-size: 27px;
  font-weight: 300;
  color: #2354D2;
}
.about .section-content .about-content p:last-of-type {
  -ms-flex-item-align: center;
      align-self: center;
}
.about .section-content .about-content a {
  font-weight: 400;
  color: #6E5528;
  text-decoration: none;
  position: relative;
}
.about .section-content .about-content a:hover,
.about .section-content .about-content a:focus {
  color: white;
}
.about .section-content .about-content a:after {
  content: "";
  height: 28px;
  position: absolute;
  bottom: -5%;
  left: 0;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  background-color: #6E5528;
  z-index: -3;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.about .section-content .about-content a:hover:after,
.about .section-content .about-content a:focus:after {
  width: 103%;
  left: -2%;
}

.different {
  font-size: 65px;
  color: white;
  position: relative;
}

.different:after {
  content: "";
  height: 75px;
  width: 103%;
  position: absolute;
  bottom: -3%;
  left: -3%;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  background-color: #2354D2;
  z-index: -3;
}

.projects-list {
  min-height: calc(100vh - 36px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #6E5528;
}
.projects-list .project-0,
.projects-list .project-1,
.projects-list .project-2,
.projects-list .project-3,
.projects-list .project-4,
.projects-list .project-5 {
  border-bottom: 1px #6E5528 solid;
}
.projects-list .project-3 a:last-of-type {
  line-height: 75px;
}
.projects-list .project {
  padding: 30px 0;
}
.projects-list i {
  font-size: 25px;
  margin-bottom: 30px;
}
.projects-list a {
  color: #6E5528;
  text-decoration: none;
  font-style: normal;
  padding: 5px 10px;
  margin-right: 10px;
  border: 1px solid #6E5528;
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 2.5em;
}
.projects-list a:hover,
.projects-list a:focus {
  color: white;
  background-color: #6E5528;
}

.footer {
  max-height: 100vh;
  background-image: url("../assets/background-footer.png");
  background-size: contain;
  border-top: 1px #6E5528 solid;
}
.footer .footer-mid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(100vw - 260px);
  text-transform: uppercase;
  font-size: 3vw;
  position: relative;
  top: calc(50vh - 21px);
}
.footer .footer-mid a {
  color: #0A224D;
  text-decoration: none;
  font-style: normal;
  border-bottom: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
.footer .footer-mid a:hover,
.footer .footer-mid a:focus {
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
}
.footer .footer-mid a:after {
  content: "";
  bottom: 0;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #0A224D;
  -webkit-transition: width 0.3s ease 0s, left 0.3s ease 0s;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.footer .footer-mid a:hover:after,
.footer .footer-mid a:focus:after {
  width: 100%;
  left: 0;
}
.footer .footer-mid a:nth-of-type(2) {
  margin-left: 20px;
}

#loom-companion-mv3 {
  display: none;
}

@media (max-width: 900px) {
  .footer {
    background-image: none;
  }
  .footer .footer-mid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
    height: 60vh;
    top: 20vh;
    font-size: 40px;
    text-align: center;
  }
  .footer .footer-mid a:nth-of-type(2) {
    margin: 0;
  }
}
@media (max-width: 770px) {
  * {
    cursor: auto;
  }
  a {
    cursor: pointer;
  }
  .wrapper {
    width: 65vw;
  }
  p,
  h2 {
    font-size: 15px;
  }
  .go-to-btn {
    display: none;
  }
  .disappear {
    display: none;
  }
  .about .section-content .about-content p {
    line-height: 20px;
  }
  .about .section-content .about-content p:first-of-type {
    font-size: 20px;
    line-height: 30px;
  }
  .different {
    font-size: 30px;
    display: block;
    text-align: center;
  }
  .different:after {
    height: 38px;
  }
  .about .section-content .about-content a {
    display: block;
    text-align: center;
  }
  .about .section-content .about-content a:after {
    bottom: 18%;
  }
  .about .section-content .about-content a:hover::after,
  .about .section-content .about-content a:focus::after {
    width: 100%;
  }
  .copyright {
    bottom: 0%;
  }
  .copyright:after {
    bottom: 100%;
  }
  h2 {
    position: unset;
  }
}
@media (max-width: 400px) {
  .about .section-content .about-content {
    height: 100vh;
  }
}
html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article, aside, footer, header, nav, section {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

figcaption, figure, main {
  display: block;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: inherit;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details, menu {
  display: block;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: "";
  clear: both;
  height: 0;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

@media (min-width: 640px) {
  .about-content p,
  .project {
    opacity: 0;
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
  }
  .in-viewport .about-content p,
  .in-viewport .project {
    opacity: 1;
  }
}