/* Hide scrollbar for Chrome, Safari and Opera */
*::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
* {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

:root {
  --color-1: #186cb8;
  --color-2: #2a9a9f;
  --color-3: #f1b211;
  --color-4: #e83611;
  --color-5: #f9002f;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #111927;
  background-image: radial-gradient(at 47% 33%, #4a4a4a 0, transparent 59%), radial-gradient(at 82% 65%, #111927 0, transparent 55%);
}

.navbar-main {
  display: flex;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 60px;
  z-index: 3;
}
@media only screen and (max-width: 1200px) {
  .navbar-main {
    left: 0;
    transform: none;
  }
}

.navlink-wrapper {
  display: flex;
  width: 100%;
  justify-content: end;
}

.navbar-logo:hover {
  animation: rotation 0.5s linear;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(720deg);
  }
}
.navbar-container {
  display: flex;
  width: 100%;
  align-items: center;
}
.navbar-container .navbar-logo {
  font-size: 1.5rem;
  font-family: 'Monoton';
  font-weight: 400;
  text-decoration: none;
  color: #ebedf1;
  padding: 0 20px;
}
@media only screen and (max-width: 1200px) {
  .navbar-container .navbar-logo {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 700px) {
  .navbar-container .navbar-logo {
    font-size: 1.1rem;
  }
}

.navlink-container {
  display: flex;
  padding: 10px;
}
.navlink-container a {
  color: #ebedf1;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
  font-size: 1.25rem;
  font-family: 'Oswald';
}
@media only screen and (max-width: 700px) {
  .navlink-container a {
    font-size: 0.9rem;
    padding: 5px;
  }
}
.navlink-container a span {
  transition: 0.3s;
}
.navlink-container a span:hover {
  color: rgba(235, 237, 241, 0.4);
}
.navlink-container a span::after {
  content: '';
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  transition: all ease-in-out 0.4s;
}
.navlink-container a.active span::after {
  width: 100%;
  left: 0;
}

.social-icons {
  display: flex;
  width: max-content;
}
.social-icons a {
  text-decoration: none;
  font-size: 1.3rem;
  padding: 0 10px;
}
@media only screen and (max-width: 700px) {
  .social-icons a {
    font-size: 1rem;
    padding: 5px;
  }
}
@media only screen and (max-width: 350px) {
  .social-icons a {
    display: none;
  }
}
.social-icons i {
  color: white;
  transition: 0.3s;
}
.social-icons i:hover {
  transform: scale(1.4);
}

#hero {
  display: flex;
  padding: 0;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  max-width: 1440px;
  scroll-snap-align: start;
  background: repeating-linear-gradient(
      150deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 49px,
      rgba(255, 255, 255, 0.1) 50px,
      rgba(0, 0, 0, 0.3) 51px,
      rgba(255, 255, 255, 0) 55px
    ),
    repeating-linear-gradient(
      30deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0) 49px,
      rgba(255, 255, 255, 0.1) 50px,
      rgba(0, 0, 0, 0.3) 51px,
      rgba(255, 255, 255, 0) 55px
    );
  border: 2px solid rgba(15, 15, 15, 0.2);
}
#hero p {
  margin: 0;
  cursor: default;
}
#hero p span:hover {
  animation: hover-shift 1s infinite;
}
@keyframes hover-shift {
  20% {
    color: var(--color-1);
  }
  40% {
    color: var(--color-2);
  }
  60% {
    color: var(--color-3);
  }
  80% {
    color: var(--color-4);
  }
  100% {
    color: var(--color-5);
  }
}
#hero .left {
  display: flex;
  width: 100%;
  padding-left: 100px;
  align-items: flex-start;
  justify-content: flex-start;
  font-family: 'Oswald';
  font-size: 1.5em;
  color: rgba(235, 237, 241, 0.8);
}
@media only screen and (max-width: 700px) {
  #hero .left {
    padding-left: 0;
  }
}
#hero .right {
  display: flex;
  width: 100%;
  padding-right: 150px;
  align-items: flex-end;
  justify-content: flex-end;
  font-family: 'Oswald';
  font-size: 1.5em;
  color: rgba(235, 237, 241, 0.8);
}
@media only screen and (max-width: 700px) {
  #hero .right {
    padding-right: 0;
  }
}
#hero h1 {
  padding: 0;
  margin: 0;
  font-size: 7em;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-family: 'Monoton';
}
@media only screen and (max-width: 1200px) {
  #hero h1 {
    font-size: 5rem;
  }
}
@media only screen and (max-width: 700px) {
  #hero h1 {
    font-size: 3em;
  }
}
#hero .myname {
  transform: scaleX(var(--scale, 1));
  animation: glitch-p 6s infinite alternate;
  animation-timing-function: step-start;
}
@keyframes glitch-p {
  17% {
    transform: scaleX(0.87);
  }
  31% {
    transform: scaleX(1.1);
  }
  37% {
    transform: scaleX(1.3);
  }
  47% {
    transform: scaleX(0.91);
  }
  87% {
    transform: scaleX(1);
  }
}
#hero .myname::before,
#hero .myname::after {
  --f-size: 25;
  --f-unit: 1vmin;
  --f: calc(var(--f-size) * var(--f-unit));
  --top: 0;
  --left: 0;
  --v-height: 30%;
  --n-tenth: calc(var(--f-size) * 0.1 * var(--top));
  --t-cut: calc(var(--n-tenth) / var(--f-size) * 100%);
  --b-cut: calc(var(--t-cut) + var(--v-height));
  content: attr(data-text);
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  transform: translateX(calc(var(--left) * 100%));
  filter: drop-shadow(0 0 transparent);
  text-shadow: calc(var(--left) * -3em) 0 0.02em #69be28, calc(var(--left) * -6em) 0 0.02em #ff00e1;
  background-color: transparent;
  clip-path: polygon(0% var(--t-cut), 100% var(--t-cut), 100% var(--b-cut), 0% var(--b-cut));
}
#hero .myname::before {
  animation: glitch-b 2.7s infinite alternate-reverse;
}
@keyframes glitch-b {
  10%,
  30%,
  50%,
  70%,
  90% {
    --top: 0;
    --left: 0;
  }
  0% {
    --v-height: 15%;
    --top: 10;
  }
  20% {
    --left: -0.005;
  }
  40% {
    --left: -0.01;
    --v-height: 17%;
    --top: 3;
  }
  60% {
    --left: -0.03;
    --v-height: 35%;
    --top: 6;
  }
  80% {
    --left: -0.07;
    --v-height: 5%;
    --top: 8;
  }
  100% {
    --left: -0.083;
    --v-height: 30%;
    --top: 1;
  }
}
#hero .myname::after {
  animation: glitch-a 4.1s infinite alternate;
}
@keyframes glitch-a {
  10%,
  30%,
  50%,
  70%,
  90% {
    --top: 0;
    --left: 0;
  }
  0% {
    --v-height: 15%;
  }
  20% {
    --left: 0.005;
  }
  40% {
    --left: 0.01;
    --v-height: 20%;
    --top: 3;
  }
  60% {
    --left: 0.03;
    --v-height: 25%;
    --top: 6;
  }
  80% {
    --left: 0.07;
    --v-height: 5%;
    --top: 8;
  }
  100% {
    --left: 0.083;
    --v-height: 30%;
    --top: 1;
  }
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 45vw;
  margin: 50px;
}
.hero-text .myname {
  background: linear-gradient(
    210deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 1200px) {
  .hero-text {
    scroll-snap-align: none;
  }
}
@media only screen and (max-width: 700px) {
  .hero-text {
    margin: 0;
    width: 80vw;
    scroll-snap-align: none;
  }
}

.call-to-action {
  display: flex;
  position: relative;
  flex-direction: row;
}
.call-to-action a {
  font-family: 'Oswald';
  font-size: 0.9rem;
  padding: 10px 40px;
  text-decoration: none;
  color: rgba(235, 237, 241, 0.9);
}
.call-to-action .explore {
  display: flex;
  justify-content: center;
  align-items: center;
  color: red;
  text-decoration: none;
  width: 150px;
  height: 35px;
  margin: 30px;
  background: transparent;
  border: 1px solid rgba(235, 237, 241, 0.5);
  clip-path: polygon(20% 0, 100% 0, 100% 50%, 80% 100%, 0 100%, 0 50%);
  border-radius: 5px;
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 700px) {
  .call-to-action .explore {
    margin: 10px;
  }
}
.call-to-action .explore:hover {
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    var(--color-5) 80%
  );
  cursor: pointer;
  border: none;
}
.call-to-action .hire {
  display: flex;
  justify-content: center;
  align-items: center;
  color: greenyellow;
  width: 150px;
  height: 35px;
  margin: 30px;
  background: transparent;
  border: 1px solid rgba(235, 237, 241, 0.5);
  clip-path: polygon(20% 0, 100% 0, 100% 50%, 80% 100%, 0 100%, 0 50%);
  border-radius: 5px;
  transition: all ease-in-out 0.5s;
}
@media only screen and (max-width: 700px) {
  .call-to-action .hire {
    margin: 10px;
  }
}
.call-to-action .hire:hover {
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    var(--color-5) 80%
  );
  cursor: pointer;
  border: none;
  transition: 0.4s;
}

.story {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  margin: auto;
}
.story h1 {
  display: flex;
  margin: 0 auto;
  padding: 100px 0px;
  font-size: 4rem;
  font-weight: 400;
  font-family: 'Oswald';
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 1200px) {
  .story h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 700px) {
  .story h1 {
    font-size: 2rem;
  }
}
.story h2 {
  display: flex;
  width: max-content;
  margin: 0 10px;
  font-size: 2rem;
  font-weight: 400;
  font-family: 'Oswald';
  background: -moz-linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background: -webkit-linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background: -ms-linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background: linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 1200px) {
  .story h2 {
    font-size: 1.4rem;
    margin: 10px 10px;
  }
}
@media only screen and (max-width: 700px) {
  .story h2 {
    margin: 10px 5px 5px 0px;
    font-size: 1rem;
  }
}
.story .story-card {
  display: flex;
  flex-direction: column;
  text-align: start;
  margin: 0 auto;
  width: 70%;
  height: auto;
  padding-bottom: 20px;
  backdrop-filter: blur(2px) saturate(80%);
  -webkit-backdrop-filter: blur(2px) saturate(80%);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
}
.story .story-card .story-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 20px;
}
.story .story-card p {
  display: flex;
  justify-content: flex-start;
  margin: 0 20px;
  color: rgba(235, 237, 241, 0.8);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1200px) {
  .story .story-card p {
    margin: 10px;
  }
}
@media only screen and (max-width: 700px) {
  .story .story-card p {
    margin: 0;
    font-size: 0.9rem;
  }
}
.story .story-card .story-icons {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  color: rgba(235, 237, 241, 0.8);
  padding: 0;
  margin: 0;
}
@media only screen and (max-width: 700px) {
  .story .story-card .story-icons {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.story .story-card .story-icons img {
  padding: 10px 10px 0px 10px;
  transition: 0.3s;
}
.story .story-card .story-icons img:hover {
  transform: scale(1.2);
}
@media only screen and (max-width: 700px) {
  .story .story-card .story-icons img {
    padding-left: 5px;
    padding-right: 5px;
    height: 25px;
    width: 25px;
  }
}

#work {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width: 700px) {
  #work {
    padding-bottom: 20px;
  }
}
#work h1 {
  display: flex;
  font-size: 4rem;
  font-weight: 400;
  color: #ebedf1;
  margin: 0;
  padding: 100px 0;
  font-family: 'Oswald';
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 1200px) {
  #work h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 700px) {
  #work h1 {
    font-size: 2rem;
  }
}
#work h2 {
  display: flex;
  font-family: 'Monoton';
  font-size: 5em;
  font-weight: 400;
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 700px) {
  #work h2 {
    font-size: 3rem;
  }
}
#work .work-card {
  display: flex;
  width: 70%;
  padding: 50px 0px;
}
@media only screen and (max-width: 700px) {
  #work .work-card {
    width: 90%;
  }
}
#work .work-card h2 {
  display: flex;
  width: max-content;
  padding: 0;
  margin: 0 15px;
  font-size: 3rem;
  font-weight: 400;
  font-family: 'Oswald';
  background: -moz-linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background: -webkit-linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background: -ms-linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background: linear-gradient(130deg, #13e2da 0%, #9055ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 1200px) {
  #work .work-card h2 {
    font-size: 2.5rem;
    margin: 10px 10px;
  }
}
@media only screen and (max-width: 700px) {
  #work .work-card h2 {
    margin: 10px 5px 5px 0px;
    font-size: 2rem;
  }
}
#work .work-card img {
  border: 2px solid rgba(15, 15, 15, 0.2);
  border-radius: 10px;
  width: 400px;
  object-fit: cover;
  transition: ease-in-out 0.4s;
  box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
}
#work .work-card img:hover {
  transform: scale(1.5);
  z-index: 999;
  overflow: visible;
}
#work .work-card .work-row {
  display: flex;
  align-content: center;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 0;
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row {
    flex-direction: column;
  }
}
#work .work-card .work-row .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  max-width: 500px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row .left {
    max-width: 325px;
    margin: 0 auto;
  }
}
#work .work-card .work-row .left span {
  margin: 5px 0 0 0;
  color: #e83611;
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row .right {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row .right img {
    width: 300px;
  }
}
#work .work-card .work-row-2 {
  display: flex;
  align-content: center;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  padding: 20px 0;
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row-2 {
    flex-direction: column-reverse;
  }
}
#work .work-card .work-row-2 .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  max-width: 500px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row-2 .right {
    max-width: 325px;
    margin: 0 auto;
  }
}
#work .work-card .work-row-2 .right span {
  margin: 5px 0 0 0;
  color: #2a9a9f;
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row-2 .left {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 800px) {
  #work .work-card .work-row-2 .left img {
    width: 300px;
  }
}
#work .work-card p {
  display: flex;
  margin: 0 20px;
  color: rgba(235, 237, 241, 0.8);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
}
@media only screen and (max-width: 700px) {
  #work .work-card p {
    margin: 0;
    font-size: 0.9rem;
  }
}
#work .work-card a {
  text-decoration: none;
  margin: 0 20px;
  font-family: 'Oswald';
  font-weight: 400;
  font-size: 1.3rem;
  color: rgba(235, 237, 241, 0.8);
}
@media only screen and (max-width: 700px) {
  #work .work-card a {
    margin: 0;
    font-size: 1rem;
  }
}

#projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
#projects h1 {
  display: flex;
  font-size: 4rem;
  font-weight: 400;
  margin: 0;
  padding: 100px 0;
  font-family: 'Oswald';
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 700px) {
  #projects h1 {
    font-size: 2rem;
  }
}
#projects h2 {
  font-family: 'Monoton';
  font-size: 5em;
  font-weight: 400;
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 700px) {
  #projects h2 {
    font-size: 3rem;
  }
}
#projects .projects-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 30px 0;
  width: 70%;
  height: auto;
  backdrop-filter: blur(2px) saturate(80%);
  -webkit-backdrop-filter: blur(2px) saturate(80%);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 750px) {
  #projects .projects-card {
    width: 90%;
  }
}
#projects .projects-card .project-item {
  display: grid;
  justify-content: center;
}
#projects .projects-card .project-item .project-img {
  place-self: center;
}
#projects .projects-card .project-item .project-img img {
  width: 225px;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  transition: ease-in-out 0.4s;
}
#projects .projects-card .project-item .project-img img:hover {
  transform: scale(1.1);
}
#projects .projects-card .project-item .project-text {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 250px;
}
#projects .projects-card .project-item .project-text h2 {
  color: rgba(235, 237, 241, 0.8);
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
}
#projects .projects-card .project-item .project-text p {
  display: flex;
  margin: 0;
  color: rgba(235, 237, 241, 0.8);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1rem;
}
@media only screen and (max-width: 1200px) {
  #projects .projects-card .project-item .project-text p {
    margin: 10px;
  }
}
@media only screen and (max-width: 700px) {
  #projects .projects-card .project-item .project-text p {
    margin: 0;
    font-size: 0.9rem;
  }
}
#projects .projects-card .project-item .project-text a {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: rgba(235, 237, 241, 0.8);
  margin: 10px 0;
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#projects .projects-card .project-item .project-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
#projects .projects-card .project-item .project-icon img {
  height: 25px;
  width: 25px;
}
#projects .projects-card .project-item .project-icon img:hover {
  transform: scale(1.2);
  transition: all ease 0.3s;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 1000px;
  max-width: 1440px;
  margin: 0 auto;
}
@media only screen and (max-width: 700px) {
  .contact {
    height: auto;
    padding-bottom: 20px;
  }
}
.contact h1 {
  display: flex;
  font-size: 4rem;
  font-weight: 300;
  margin: 0;
  padding: 100px 0;
  font-family: 'Oswald';
  background: linear-gradient(
    219deg,
    var(--color-1) 19%,
    transparent 19%,
    transparent 20%,
    var(--color-2) 20%,
    var(--color-2) 39%,
    transparent 39%,
    transparent 40%,
    var(--color-3) 40%,
    var(--color-3) 59%,
    transparent 59%,
    transparent 60%,
    var(--color-4) 60%,
    var(--color-4) 79%,
    transparent 79%,
    transparent 80%,
    var(--color-5) 80%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
@media only screen and (max-width: 700px) {
  .contact h1 {
    font-size: 2rem;
  }
}

.contact-section,
.end {
  display: block;
  justify-content: center;
  height: max-content;
  width: 80%;
  color: white;
  margin: 300px;
}
@media only screen and (max-width: 700px) {
  .contact-section {
    flex-direction: column;
    height: 100vh;
  }
}
.contact-section .contact-form {
  display: flex;
  width: 85%;
  align-items: center;
  justify-content: center;
}
.contact-section .contact-left {
  display: flex;
  flex-direction: column;
  font-family: 'Roboto', sans-serif;
  color: #ebedf1;
  width: 100%;
  height: max-content;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-bottom: 20px;
}
@media only screen and (max-width: 700px) {
  .contact-section .contact-left #contact-text {
    display: none;
  }
}
.contact-section .contact-left .contact-info {
  display: flex;
  flex-direction: column;
  width: 80%;
}
.contact-section .contact-left .contact-info h2 {
  font-family: 'Monoton';
  font-size: 3em;
  font-weight: 400;
  margin: 0;
  padding-bottom: 10px;
}
@media only screen and (max-width: 800px) {
  .contact-section .contact-left .contact-info h2 {
    font-size: 2rem;
  }
}
.contact-section .contact-left .contact-info h3 {
  font-size: 1rem;
  margin: 0;
}
.contact-section .contact-left .contact-info p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: rgba(235, 237, 241, 0.8);
}
@media only screen and (max-width: 1200px) {
  .contact-section .contact-left .contact-info p {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 700px) {
  .contact-section .contact-left .contact-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
  }
}
.contact-section .contact-left .contact-info a {
  text-decoration: none;
  color: #ebedf1;
}
.contact-section .contact-left .contact-info a p:hover {
  color: white;
}
.contact-section .contact-left .contact-info-2 {
  display: none;
}
@media only screen and (max-width: 400px) {
  .contact-section .contact-left .contact-info-2 {
    display: flex;
  }
}
.contact-section .contact-left .contact-info-2 a {
  text-decoration: none;
}
.contact-section .contact-left .contact-info-2 i {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding: 20px;
  color: white;
}
.contact-section .contact-right {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: max-content;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 450px) {
  .contact-section .contact-right {
    display: none;
  }
}
.contact-section button {
  cursor: pointer;
  font-size: 1em;
  font-family: 'Oswald';
  letter-spacing: 0.1rem;
  color: rgba(235, 237, 241, 0.5);
  border: none;
  width: 120px;
  height: 40px;
  text-decoration: none;
  background-color: transparent;
  border-radius: 5px;
  box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px) saturate(80%);
  -webkit-backdrop-filter: blur(2px) saturate(80%);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.125);
  transition: 0.3s;
}
@media only screen and (max-width: 1200px) and (min-width: 700px) {
  .contact-section button {
    font-size: 1.1rem;
  }
}
.contact-section button:hover {
  color: #ebedf1;
  transform: scale(1.1);
}
.contact-section form {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  width: 80%;
  align-items: center;
  justify-content: center;
  box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -9px 9px 30px 0px rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(2px) saturate(80%);
  -webkit-backdrop-filter: blur(2px) saturate(80%);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.125);
}
.contact-section input {
  background: transparent;
  color: #ebedf1;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
  width: 100%;
  height: 25px;
}
.contact-section textarea {
  background: transparent;
  color: #ebedf1;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 20px;
}

.contact-section a {
  padding: 5px 5px;
}

.form-control {
  border: none;
  resize: none;
  background-color: rgba(0, 0, 0, 0);
}

.form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.form-col span {
  font-family: 'Roboto', sans-serif;
  font-size: 1em;
  color: #ebedf1;
  padding-bottom: 5px;
  border-bottom: 2px solid rgba(235, 237, 241, 0.2);
}
@media only screen and (max-width: 1200px) and (min-width: 700px) {
  .form-col span {
    font-size: 1.2rem;
  }
}

#tooltip {
  padding: 10px;
  display: none;
}

#tooltip[data-show] {
  display: block;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: #ebedf1;
  -webkit-box-shadow: 0 0 0 30px transparent inset !important;
  box-shadow: 0 0 0 30px transparent inset !important;
  transition: background-color 5000s ease-in-out 0s;
}

#hide {
  display: none;
}

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