html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

:root {
  --background: #090a0f;
  --background2: #1b2132;
  --accent1: #2cef94;
}
body {
  background-color: var(--background);
}
#header {
  height: 100vh;
}
#header-container {
  color: var(--accent1);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: default;
}
#header-container p {
  color: #fff;
  margin-top: 8px;
}
.title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
}
.description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
}

#hero-video {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 70%;
  transition: all 0.5s linear;
  background: transparent url("../assets/explore.png") no-repeat 0 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center;
}

@keyframes scroll_1 {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-0.6em);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(0.6em);
  }
  100% {
    transform: translateY(0);
  }
}

.scroll-icon__wheel-outer {
  display: block;
  position: absolute;
  left: 50%;
  top: 0.6em;
  height: 1em;
  width: 0.2em;
  margin-left: -0.1em;
  border-radius: 0.4em;
  overflow: hidden;
}

.scroll-icon__wheel-inner {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: #fff;
  animation: scroll_1 2.75s ease-in-out infinite;
}

.scroll-icon {
  display: block;
  position: absolute;
  height: 3em;
  width: 1.5em;
  border: 0.15em solid #fff;
  border-radius: 1em;
  left: 50%;
  bottom: min(25px, 10%);
  transform: translateX(-50%);
}

#stats {
  background-color: var(--accent1);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  padding: 25px 0;
  text-align: center;
  color: var(--background2);
}
.stat-container {
  padding: 25px;
  cursor: default;
}
#projects {
  background-color: var(--background2);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.project-container {
  width: 50%;
  min-width: min(500px, 100%);
  max-height: 500px;
  transition: all 1s;
  position: relative;
  overflow: hidden;
}
.project-container:hover img {
  filter: grayscale(100%);
}
.project-container:hover .project-text {
  opacity: 1;
}
.project-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
  position: relative;
  object-position: center;
  z-index: 1;
  transition: all 1s;
}
.project-text {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: min(10%, 25px);
  color: var(--accent1);
  opacity: 0;
  transition: all 1s;
  cursor: default;
}
.project-name {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
}
.project-description {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  margin-top: 8px;
}

#view-more-container {
  background: var(--background2);
  width: 100%;
  display: flex;
  height: 150px;
  justify-content: center;
  align-items: center;
}
#view-all {
  background-color: white;
  color: var(--background2);
  padding: 15px;
  border-radius: 5px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  transition: all 0.5s;
  cursor: pointer;
}
#view-all:hover {
  background-color: var(--accent1);
  filter: drop-shadow(0 0 5px var(--accent1));
  transform: scale(1.2);
}
@media only screen and (max-width: 1000px) {
  .project-container {
    min-width: 100%;
  }
  .project-image {
    height: 100%;
  }
}

.divider-container {
  background-color: var(--background2);
  width: 100%;
}
.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 5;
  bottom: 0;
  position: relative;
  left: 0px;
  float: left;
}

.parallax1 > use {
  animation: move-forever1 22s linear infinite;
  fill: #0d482c;
}
.parallax2 > use {
  animation: move-forever2 18s linear infinite;
  fill: var(--accent1);
}
.parallax3 > use {
  animation: move-forever3 14s linear infinite;
  fill: #23bf76;
}
.parallax4 > use {
  animation: move-forever4 10s linear infinite;
  fill: var(--background);
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
