@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@200;300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=David+Libre:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Merriweather&display=swap");
@keyframes animated-text__1 {
  from {
    width: 0;
  }
  to {
    width: 29rem;
  }
}
@keyframes animated-text__2-desktop {
  from {
    width: 0;
  }
  to {
    width: 57rem;
  }
}
@keyframes animated-text__2-phone {
  from {
    width: 0;
  }
  to {
    width: 41rem;
  }
}
@keyframes animated-text__3 {
  from {
    width: 0;
  }
  to {
    width: 27rem;
  }
}
@keyframes animated-text__4 {
  from {
    width: 0;
  }
  to {
    width: 42rem;
  }
}
@keyframes animated-text__5 {
  from {
    width: 0;
  }
  to {
    width: 40rem;
  }
}
@keyframes animated-text__6 {
  from {
    width: 0;
  }
  to {
    width: 33rem;
  }
}
@keyframes jump {
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* The typewriter cursor effect */
@keyframes animated-cursor {
  from {
    border-right-color: rgba(30, 42, 64, 0.2);
  }
  to {
    border-right-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes moveup {
  0% {
    opacity: 0;
    transform: translateY(6rem);
  }
  60% {
    opacity: 1;
    transform: translateY(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ==========================================================================
Animation System by Neale Van Fleet from Rogue Amoeba
========================================================================== */
.animate {
  animation-duration: 0.75s;
  animation-delay: 0.5s;
  animation-name: animate-fade;
  animation-timing-function: cubic-bezier(0.26, 0.53, 0.74, 1.48);
  animation-fill-mode: forwards;
}

/* Fade In */
.animate.fade {
  animation-name: animate-fade;
  animation-timing-function: ease;
}

@keyframes animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* Pop In */
.animate.pop {
  animation-name: animate-pop;
}

@keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* Blur In */
.animate.blur {
  animation-name: animate-blur;
  animation-timing-function: ease;
}

@keyframes animate-blur {
  0% {
    opacity: 0;
    filter: blur(15px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
/* Glow In */
.animate.glow {
  animation-name: animate-glow;
  animation-timing-function: ease;
}

@keyframes animate-glow {
  0% {
    opacity: 0;
    filter: brightness(3) saturate(3);
    transform: scale(0.8, 0.8);
  }
  100% {
    opacity: 1;
    filter: brightness(1) saturate(1);
    transform: scale(1, 1);
  }
}
/* Grow In */
.animate.grow {
  animation-name: animate-grow;
}

@keyframes animate-grow {
  0% {
    opacity: 0;
    transform: scale(1, 0);
    visibility: hidden;
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}
/* Splat In */
.animate.splat {
  animation-name: animate-splat;
}

@keyframes animate-splat {
  0% {
    opacity: 0;
    transform: scale(0, 0) rotate(20deg) translate(0, -30px);
  }
  70% {
    opacity: 1;
    transform: scale(1.1, 1.1) rotate(15deg);
  }
  85% {
    opacity: 1;
    transform: scale(1.1, 1.1) rotate(15deg) translate(0, -10px);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1) rotate(0) translate(0, 0);
  }
}
/* Roll In */
.animate.roll {
  animation-name: animate-roll;
}

@keyframes animate-roll {
  0% {
    opacity: 0;
    transform: scale(0, 0) rotate(360deg);
  }
  100% {
    opacity: 1;
    transform: scale(1, 1) rotate(0deg);
  }
}
/* Flip In */
.animate.flip {
  animation-name: animate-flip;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes animate-flip {
  0% {
    opacity: 0;
    transform: rotateX(-120deg) scale(0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg) scale(1, 1);
  }
}
/* Spin In */
.animate.spin {
  animation-name: animate-spin;
  transform-style: preserve-3d;
  perspective: 1000px;
}

@keyframes animate-spin {
  0% {
    opacity: 0;
    transform: rotateY(-120deg) scale(0.9, 0.9);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1, 1);
  }
}
/* Slide In */
.animate.slide {
  animation-name: animate-slide;
}

@keyframes animate-slide {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* Drop In */
.animate.drop {
  animation-name: animate-drop;
  animation-timing-function: cubic-bezier(0.77, 0.14, 0.91, 1.25);
}

@keyframes animate-drop {
  0% {
    opacity: 0;
    transform: translate(0, -300px) scale(0.9, 1.1);
  }
  95% {
    opacity: 1;
    transform: translate(0, 0) scale(0.9, 1.1);
  }
  96% {
    opacity: 1;
    transform: translate(10px, 0) scale(1.2, 0.9);
  }
  97% {
    opacity: 1;
    transform: translate(-10px, 0) scale(1.2, 0.9);
  }
  98% {
    opacity: 1;
    transform: translate(5px, 0) scale(1.1, 0.9);
  }
  99% {
    opacity: 1;
    transform: translate(-5px, 0) scale(1.1, 0.9);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) scale(1, 1);
  }
}
/* Animation Delays */
.delay-1 {
  animation-delay: 0.6s;
}

.delay-2 {
  animation-delay: 0.7s;
}

.delay-3 {
  animation-delay: 0.8s;
}

.delay-4 {
  animation-delay: 0.9s;
}

.delay-5 {
  animation-delay: 1s;
}

.delay-6 {
  animation-delay: 1.1s;
}

.delay-7 {
  animation-delay: 1.2s;
}

.delay-8 {
  animation-delay: 1.3s;
}

.delay-9 {
  animation-delay: 1.4s;
}

.delay-10 {
  animation-delay: 1.5s;
}

.delay-11 {
  animation-delay: 1.6s;
}

.delay-12 {
  animation-delay: 1.7s;
}

.delay-13 {
  animation-delay: 1.8s;
}

.delay-14 {
  animation-delay: 1.9s;
}

.delay-15 {
  animation-delay: 2s;
}

@media screen and (prefers-reduced-motion: reduce) {
  .animate {
    animation: none !important;
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  html {
    font-size: 50%;
    overflow-x: hidden;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}

body {
  font-family: "David Libre", sans-serif;
  box-sizing: border-box;
}

main {
  background-color: #000;
  position: relative;
  z-index: 1;
}

.section-heading {
  height: 100vh;
  padding: 2rem 0 0;
}

.section-tools {
  padding-top: 6rem;
  color: #fff;
}

.section-projects {
  padding: 16rem 0 10rem;
}

.row {
  max-width: 114rem;
  margin: 0 auto;
}
.row:not(:last-child) {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .row:not(:last-child) {
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row {
    max-width: 50rem;
    padding: 0 3rem;
  }
}
.row::after {
  content: "";
  display: table;
  clear: both;
}
.row [class^=col-] {
  float: left;
}
.row [class^=col-]:not(:last-child) {
  margin-right: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .row [class^=col-] {
    width: 100% !important;
  }
}
.row .col-1-of-2 {
  width: calc((100% - 6rem) / 2);
}
.row .col-1-of-3 {
  width: calc((100% - 2 * 6rem) / 3);
}
.row .col-2-of-3 {
  width: calc(
      2 * ((100% - 2 *6rem) / 3) + 6rem
    );
}
.row .col-1-of-4 {
  width: calc((100% - 3 *6rem) / 4);
}
.row .col-2-of-4 {
  width: calc(
      2 * ((100% - 3 *6rem) / 4) + 6rem
    );
}
.row .col-3-of-4 {
  width: calc(
      3 * ((100% - 3 *6rem) / 4) + 6rem + 6rem
    );
}

.heading {
  position: absolute;
  top: 5%;
  left: 5%;
  padding: 7rem 7rem;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .heading {
    padding: 1rem;
  }
}
.heading__primary {
  font-size: 10rem;
  color: #fff;
  white-space: nowrap;
  margin: 0 auto;
  letter-spacing: 0.15rem;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .heading__primary {
    font-size: 7rem;
  }
}
.heading__primary--first {
  overflow: hidden;
  border-right: 3px solid #000;
  animation: animated-text__1 0.3s steps(80, end) 0.2s 1 normal both, animated-cursor 300ms steps(30, end) 3;
}
.heading__primary--second {
  overflow: hidden;
  border-right: 3px solid #000;
  animation: animated-text__2-desktop 0.2s steps(50, end) 1 normal both, animated-cursor 200ms steps(30, end) 2;
  animation-delay: 700ms;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .heading__primary--second {
    animation: animated-text__2-phone 3s steps(80, end) 1 normal both, animated-cursor 500ms steps(30, end) 3;
    animation-delay: 500s;
  }
}
.heading__secondary {
  padding: 2rem 0;
  font-size: 2.2rem;
  font-family: "Merriweather", sans-serif;
  color: #fff;
  letter-spacing: 0.15rem;
  white-space: nowrap;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .heading__secondary {
    padding: 4rem 0;
  }
}
.heading__secondary p {
  padding: 0.8rem 0;
}
.heading__secondary--first {
  overflow: hidden;
  border-right: 2px solid #000;
  animation: animated-text__3 0.7s steps(60, end) 1s 1 normal both, animated-cursor 900ms steps(30, end) 1;
  animation-delay: 1.2s;
}
.heading__secondary--second {
  overflow: hidden;
  border-right: 2px solid #000;
  animation: animated-text__4 0.7s steps(60, end) 1s 1 normal both, animated-cursor 900ms steps(30, end) 1.1;
  animation-delay: 1.4s;
}
.heading__secondary--third {
  overflow: hidden;
  border-right: 2px solid #000;
  animation: animated-text__5 0.7s steps(60, end) 1s 1 normal both, animated-cursor 900ms steps(30, end) 1.2;
  animation-delay: 1.6s;
}
.heading__secondary--fourth {
  overflow: hidden;
  border-right: 2px solid #000;
  animation: animated-text__6 0.7s steps(60, end) 1s 1 normal both, animated-cursor 900ms steps(30, end) infinite;
  animation-delay: 1.8s;
}
.heading__secondary--fourth--text {
  color: #ff9a00;
}
.heading__secondary--arrow-down a,
.heading__secondary--arrow-down a:link,
.heading__secondary--arrow-down a:active {
  text-align: center;
  text-decoration: none;
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 6rem;
  color: #ff9a00;
  height: 7rem;
  width: 7rem;
  position: absolute;
  opacity: 0;
  left: 42%;
  border: 1px solid #ff9a00;
  border-radius: 50%;
  transition: background-color ease-in-out 0.4s;
  animation: moveup 1.6s ease-in-out forwards;
  animation-delay: 1.5s;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .heading__secondary--arrow-down a,
.heading__secondary--arrow-down a:link,
.heading__secondary--arrow-down a:active {
    font-size: 7rem;
    height: 9rem;
    width: 9rem;
  }
}
.heading__secondary--arrow-down a:hover {
  background-color: #000;
}

.navigation__toggle {
  display: none;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .navigation__toggle {
    position: absolute;
  }
}
.navigation__nav {
  padding: 0 9.5rem;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #000;
  z-index: 10;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .navigation__nav {
    padding: 0;
    width: inherit;
  }
}
.navigation__list {
  list-style: none;
  padding: 2.6rem 3rem;
  display: flex;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .navigation__list {
    width: 100vw;
  }
}
.navigation__smallScreen {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .navigation__smallScreen {
    flex-direction: column;
    align-items: flex-end;
  }
  .navigation__smallScreen > li {
    position: relative;
    font-size: 14px;
    height: 7px;
    white-space: nowrap;
    transform: scaleY(0.2);
    transition: 0.8s, opacity 1s;
  }
  .navigation__smallScreen > li a {
    color: transparent;
  }
  .navigation__smallScreen > li:nth-child(1) {
    transition-delay: 0s;
  }
  .navigation__smallScreen > li:nth-child(1):before {
    transition-delay: 0s;
  }
  .navigation__smallScreen > li:nth-child(2) {
    transition-delay: 0.05s;
  }
  .navigation__smallScreen > li:nth-child(2):before {
    transition-delay: 0.05s;
  }
  .navigation__smallScreen > li:nth-child(3) {
    transition-delay: 0.1s;
  }
  .navigation__smallScreen > li:nth-child(3):before {
    transition-delay: 0.1s;
  }
  .navigation__smallScreen > li:nth-child(4) {
    transition-delay: 0.15s;
  }
  .navigation__smallScreen > li:nth-child(4):before {
    transition-delay: 0.15s;
  }
  .navigation__smallScreen > li:nth-child(1) {
    letter-spacing: -8px;
  }
  .navigation__smallScreen > li:nth-child(2) {
    letter-spacing: -7px;
  }
  .navigation__smallScreen > li:nth-child(n+4) {
    letter-spacing: -8px;
    margin-top: -7px;
    opacity: 0;
  }
  .navigation__smallScreen > li:before {
    position: absolute;
    content: "";
    top: 50%;
    right: 0;
    width: 20%;
    height: 2px;
    background-color: #fff;
    transform: translateY(-50%) scaleY(5);
    transition: 0.8s;
  }
}
.navigation__item {
  padding: 0rem 1rem;
  opacity: 1;
}
.navigation__brand {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 3px;
  position: relative;
}
.navigation__brand::after {
  content: "";
  display: inline-block;
  position: relative;
  height: 0.5rem;
  width: 0.5rem;
  background-color: #fff;
}
.navigation__brand::before {
  content: "";
  background-color: #ff9a00;
  inset: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-in-out;
  z-index: -1;
}
.navigation__brand:hover {
  color: #000;
}
.navigation__brand:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.navigation__brand:hover::after {
  background-color: #000;
}
.navigation__link {
  text-transform: uppercase;
  font-size: 1.6rem;
  font-family: "Mulish", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-decoration: none;
  color: #fff;
}
.navigation__link::before {
  content: "";
  display: inline-block;
  height: 0.8rem;
  width: 0.8rem;
  position: relative;
  top: 150%;
  left: 50%;
  border: none;
  border-radius: 50%;
  background-color: #ff9a00;
  opacity: 0;
  transition: all 0.3s;
}
.navigation__link:hover {
  color: #ff9a00;
}
.navigation__link:hover::before {
  opacity: 1;
  top: 100%;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .navigation__link:hover::before {
    display: none;
  }
}
.navigation__link #toggle:checked {
  transition: 0.8s, opacity 0.1s;
}
.navigation__link #toggle:checked:nth-child(1) {
  transition-delay: 0.15s;
}
.navigation__link #toggle:checked:nth-child(1):before {
  transition-delay: 0.15s;
}
.navigation__link #toggle:checked:nth-child(2) {
  transition-delay: 0.1s;
}
.navigation__link #toggle:checked:nth-child(2):before {
  transition-delay: 0.1s;
}
.navigation__link #toggle:checked:nth-child(3) {
  transition-delay: 0.05s;
}
.navigation__link #toggle:checked:nth-child(3):before {
  transition-delay: 0.05s;
}
.navigation__link #toggle:checked:nth-child(4) {
  transition-delay: 0s;
}
.navigation__link #toggle:checked:nth-child(4):before {
  transition-delay: 0s;
}
.navigation__link #toggle:checked:before {
  opacity: 0;
}

#toggle {
  display: none;
}

@media only screen and (max-width: 37.5em) and (hover: none) {
  .button-toggle {
    position: absolute;
    right: 0;
    z-index: 5;
    display: inline-block;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    background-color: transparent;
    border: none;
    border-radius: 100%;
    transition: 0.9s;
  }
  .button-toggle::before, .button-toggle::after {
    position: absolute;
    content: " ";
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 5px;
    transition: 0.8s;
  }
  .button-toggle:before {
    transform: translateY(11%) rotate(45deg) scale(0);
  }
  .button-toggle:after {
    transform: translateY(50%) rotate(-45deg) scale(0);
  }
}

#toggle:checked ~ .toggle-container .button-toggle {
  box-shadow: 0 0 0 550px rgba(0, 0, 0, 0.1), inset 0 0 0 20px rgba(0, 0, 0, 0.1);
}
#toggle:checked ~ .toggle-container .button-toggle:before {
  transform: translateY(-50%) rotate(45deg) scale(1);
}
#toggle:checked ~ .toggle-container .button-toggle:after {
  transform: translateY(-50%) rotate(-45deg) scale(1);
}
#toggle:checked ~ .navigation__smallScreen {
  padding: 0 2.5rem 2rem;
}
#toggle:checked ~ .navigation__smallScreen > li {
  height: 40px;
  line-height: 40px;
  opacity: 1;
  transform: scaleY(1);
}
#toggle:checked ~ .navigation__smallScreen > li a {
  color: #fff;
}
#toggle:checked ~ .navigation__smallScreen > li::before {
  opacity: 0;
  width: 100%;
}

.tools {
  width: 80%;
  margin: 0 auto;
}
.tools__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}
.tools__heading {
  padding-bottom: 1rem;
  font-size: 4rem;
  letter-spacing: 0.5rem;
  font-family: "Mulish", sans-serif;
  opacity: 0;
}
.tools__list {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.tools__list--item {
  padding: 1rem;
  opacity: 0;
}
.tools__list--item--title {
  text-align: center;
  font-size: 1.5rem;
  padding-top: 0.8rem;
  letter-spacing: 0.2rem;
  font-family: "Mulish", sans-serif;
}
.tools__list--item--image {
  border-radius: 5px;
  width: 9rem;
  height: 9rem;
  transition: transform ease 0.5s;
}
.tools__list--item--image:hover {
  transform: scale(1.1);
}

.projects {
  clear: both;
}
.projects__container {
  width: 80%;
  margin: 0 auto;
  color: #fff;
}
.projects__main--title {
  display: flex;
  opacity: 0;
  padding-bottom: 4rem;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .projects__main--title {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .projects__main--title {
    padding-bottom: 5rem;
  }
}
.projects__main--title-num {
  display: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 6rem;
  font-family: termina, sans-serif;
  font-weight: 900;
  color: #fff;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .projects__main--title-num {
    font-size: 4rem;
    display: inline;
  }
}
.projects__main--title:hover .projects__main--title-num {
  display: inline;
}
.projects__main--title-link {
  display: inline-table;
  text-transform: uppercase;
  font-size: 6rem;
  font-family: termina, sans-serif;
  font-weight: 900;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
  flex: 0 0 70%;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .projects__main--title-link {
    font-size: 4rem;
    color: white;
    -webkit-text-stroke: 0px;
  }
}
.projects__main--title:hover .projects__main--title-link {
  color: #fff;
  -webkit-text-stroke: 0px;
}
.projects__main--title:hover .tags__item {
  opacity: 1;
  animation: animate-pop 1s forwards;
}

.tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.tags__item {
  margin: 1rem;
  padding: 1rem;
  border: 2px solid #fff;
  font-size: 1.5rem;
  text-transform: uppercase;
  opacity: 0;
}
@media only screen and (max-width: 37.5em) and (hover: none) {
  .tags__item {
    opacity: 1;
  }
}

.footer {
  position: sticky;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: grid;
  padding: 1rem 1rem 4rem;
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #101010;
  font-size: 2.5rem;
  text-align: center;
}
.footer__title {
  margin: 2rem 0 1rem 0;
}
.footer__title--2 {
  margin-bottom: 1rem;
}
.footer__contact {
  margin-bottom: 4rem;
}
.footer__icons a {
  text-decoration: none;
}
.footer__icons--social {
  height: 8rem;
  width: 8rem;
  margin: 1rem;
  padding: 1rem;
  border-radius: 5px;
}
.footer__end {
  font-size: 1.5rem;
  position: relative;
  bottom: -2rem;
}

.hypertext {
  position: absolute;
  top: 5%;
  right: 10%;
}
@media only screen and (max-width: 75em) {
  .hypertext {
    display: none;
  }
}
.hypertext__svg {
  opacity: 0;
  animation: animate-pop 1s 5s forwards;
}
.hypertext__icon {
  animation: jump 3.5s ease alternate infinite;
}
.hypertext__icon:nth-child(1) {
  animation-delay: 0.1s;
}
.hypertext__icon:nth-child(2) {
  animation-delay: 0.2s;
}
.hypertext__icon:nth-child(3) {
  animation-delay: 0.3s;
}

body::-webkit-scrollbar {
  width: 10px;
  height: 2px;
}
body::-webkit-scrollbar-thumb {
  background: white;
}
body::-webkit-scrollbar-track {
  background-color: #101010;
}

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