/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/sass/app.scss ***!
  \********************************************************************************************************************************************************************/
:root {
  --c-white: #ffffff;
  --c-black: #000000;
  --c-background-color: #2b2b2b;
  --c-text: #ffffff;
  --ff-default: "Bebas Neue";
  --ff-second: "Open Sans";
}

/*
|--------------------
|    FONTS IMPORTS
|--------------------
|
| 100 - Extra Light or Ultra Light
| 200 - Light or Thin
| 300 - Book or Demi
| 400 - Normal or Regular
| 500 - Medium
| 600 - Semibold, Demibold
| 700 - Bold
| 800 - Black, Extra Bold or Heavy
| 900 - Extra Black, Fat, Poster or Ultra Black
|
*/
@font-face {
  font-family: "Eudoxus Sans";
  src: url(../fonts/eudoxus/EudoxusSans-ExtraBold.woff2) format("woff2"), url(../fonts/eudoxus/EudoxusSans-ExtraBold.woff) format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/inter/Inter-Regular.woff2) format("woff2"), url(../fonts/inter/Inter-Regular.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(../fonts/inter/Inter-Medium.woff2) format("woff2"), url(../fonts/inter/Inter-Medium.woff) format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/*
|--------------------------
|      DEFAULT & RESET
|--------------------------
*/
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  background-color: var(--c-background-color);
}

html.--hidden,
html.--hidden body {
  overflow: hidden;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--ff-default);
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 400;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow-x: hidden;
  background: var(--c-background-color);
}
body.page-template-customers {
  background: var(--c-white);
}

::selection {
  background-color: rgba(255, 255, 255, 0.6);
  color: var(--c-black);
}

button:focus, input:focus, textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

button {
  -webkit-appearance: none;
  padding: 0;
  background-color: transparent;
  border: none;
}

img {
  max-width: inherit;
}

a, img, button {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style-type: none;
}

/*
|--------------------
|     PAGE HOME
|--------------------
*/
.noisy {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url(../img/noise.png) repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation 0.2s infinite;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

@keyframes bg-animation {
  0% {
    transform: translate(0, 0);
  }
  10% {
    transform: translate(-5%, -5%);
  }
  20% {
    transform: translate(-10%, 5%);
  }
  30% {
    transform: translate(5%, -10%);
  }
  40% {
    transform: translate(-5%, 15%);
  }
  50% {
    transform: translate(-10%, 5%);
  }
  60% {
    transform: translate(15%, 0);
  }
  70% {
    transform: translate(0, 10%);
  }
  80% {
    transform: translate(-15%, 0);
  }
  90% {
    transform: translate(10%, 5%);
  }
  100% {
    transform: translate(5%, 0);
  }
}
.header {
  position: relative;
}

.header__actions ul {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header__actions ul li {
  display: flex;
  align-items: center;
}
.header__actions ul li a {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease-out;
}
.header__actions ul li a:hover {
  transform: scale(1.2);
}

.wrapper {
  padding: 0 5vw;
}

.header__actions {
  display: flex;
  justify-content: flex-end;
  padding: 35px 0;
}

.about__title {
  font-size: 15vw;
}
@media (max-width: 767px) {
  .about__title {
    font-size: 125px;
    line-height: 1em;
  }
}

.about__text {
  font-size: 2rem;
  font-weight: 100;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--ff-second);
}
@media (max-width: 767px) {
  .about__text {
    font-size: 1.3rem;
  }
}

.projects {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .projects {
    padding: 45px 0;
  }
}

.project__item + .project__item {
  border-top: solid 1px rgba(255, 255, 255, 0.7);
}

.project__item-link {
  position: relative;
  padding: 2.5rem;
  font-size: 1.5rem;
  color: var(--c-white);
  text-decoration: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .project__item-link {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
}
.project__item-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  transform-origin: top right;
  transform: scaleX(0);
  transition: transform 0.6s ease-out;
}
@media (min-width: 767px) {
  .project__item-link:hover {
    color: var(--c-black);
  }
  .project__item-link:hover:before {
    transform-origin: top left;
    transform: scaleX(1);
  }
  .project__item-link:hover .name__title {
    color: var(--c-black);
  }
  .project__item-link:hover .icon path {
    fill: var(--c-black);
  }
}
.project__item-link .name {
  position: relative;
  font-weight: 100;
  font-style: italic;
  font-size: 1.2rem;
  font-family: var(--ff-second);
  transition: color 0.3s ease;
}
@media (max-width: 767px) {
  .project__item-link .name {
    font-size: 1rem;
  }
}
.project__item-link .icon {
  position: relative;
  display: flex;
  align-items: center;
}
.project__item-link .icon path {
  transition: color 0.3s ease;
}
.project__item-link .name__title {
  font-style: normal;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--c-white);
  font-family: var(--ff-default);
  transition: color 0.5s ease;
}
@media (max-width: 767px) {
  .project__item-link .name__title {
    font-size: 1.5rem;
  }
}

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