@font-face {
  font-family: "SpaceGrotesk";
  src: url("../../assets/fonts/SpaceGrotesk-Bold.ttf") format(truetype);
  font-weight: 700;
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../../assets/fonts/SpaceGrotesk-Medium.ttf") format(truetype);
  font-weight: 500;
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../../assets/fonts/SpaceGrotesk-Regular.ttf") format(truetype);
  font-weight: 400;
}
@font-face {
  font-family: "SpaceGrotesk";
  src: url("../../assets/fonts/SpaceGrotesk-Light.ttf") format(truetype);
  font-weight: 300;
}
:root {
  font-size: 62.5%;
  box-sizing: border-box;
}

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

* {
  margin: 0;
  padding: 0;
}

html {
  color-scheme: light dark;
}

body {
  font-size: 1.6rem;
  min-height: 100vh;
}

ol,
ul {
  list-style: none;
}

img,
picture,
video,
svg {
  max-width: 100%;
  display: block;
  height: auto;
}

body {
  background-color: #151515;
}

body {
  font-family: "SpaceGrotesk", sans-serif;
  color: #fff;
}

p {
  color: #d9d9d9;
}

.button {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: normal;
  text-decoration: none;
  text-transform: uppercase;
  color: #d9d9d9;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #4ee1a0;
  display: inline-block;
  transition: color 200ms ease-in;
}
@media screen and (min-width: 768px) {
  .button {
    align-self: center;
  }
}

.button:hover {
  color: #4ee1a0;
  cursor: pointer;
}

.skill {
  text-align: center;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .skill {
    flex-basis: 50%;
    text-align: initial;
    margin-bottom: 5.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .skill {
    flex-basis: 33%;
    margin-bottom: 5.8rem;
  }
}
.skill__heading {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: -0.1rem;
}
@media screen and (min-width: 768px) {
  .skill__heading {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 5.6rem;
    letter-spacing: -0.15rem;
  }
}
.skill__experience {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .skill__experience {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: normal;
  }
}
.skill:last-of-type {
  margin-bottom: 0;
}

.project-card {
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .project-card {
    margin: 0;
  }
}
.project-card__project-image {
  position: relative;
}
.project-card__project-image:hover .project-card__image-overlay {
  opacity: 1;
}
.project-card__image {
  margin-bottom: 2rem;
}
.project-card__image-overlay {
  background-color: rgba(21, 21, 21, 0.75);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.8rem;
  opacity: 0;
  transition: opacity 200ms ease-in;
}
.project-card__heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  letter-spacing: -0.1rem;
  margin-bottom: 0.7rem;
}
.project-card__skill-tag {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.8rem;
  letter-spacing: normal;
  text-transform: uppercase;
  margin-bottom: 2rem;
  margin-right: 1.8rem;
  display: inline-block;
}
@media screen and (min-width: 1440px) {
  .project-card > .button {
    display: none;
  }
}
.project-card__button-left {
  margin-right: 3rem;
}

.project-card:last-of-type {
  margin: 4rem auto 0;
}
@media screen and (min-width: 768px) {
  .project-card:last-of-type {
    margin: 0;
  }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}
@media screen and (min-width: 1440px) {
  .form {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .form {
    width: 55%;
    margin: 0 auto;
  }
}
.form__group {
  position: relative;
}
.form__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
}
.form__input {
  font-family: "SpaceGrotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: normal;
  background-color: #242424;
  opacity: 0.5;
  width: 100%;
  height: 4.3rem;
  border: none;
  border-bottom: 0.1rem solid #fff;
  padding-left: 2.4rem;
  transition: border 200ms ease-in;
}
.form__input--large {
  height: 10.7rem;
  resize: none;
  border: none;
}
@media screen and (min-width: 768px) {
  .form__input--large {
    border-bottom: 0.1rem solid #fff;
  }
}
.form__input ::placeholder {
  font-family: "SpaceGrotesk", sans-serif;
  padding-left: 2.4rem;
  color: #fff;
}
.form__input:focus {
  outline: none;
  border-bottom-color: #4ee1a0;
}
.form__input-error {
  display: none;
}
.form__input-error-icon {
  position: absolute;
  bottom: 1.2rem;
  right: 0;
}
.form__input-error-message {
  color: #ff6f5b;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  letter-spacing: normal;
  position: absolute;
  bottom: -2.1rem;
  right: 0;
}
.form__submit {
  background-color: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 2.1rem;
  align-self: end;
}

.main {
  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
  header {
    height: 66rem;
  }
}
@media screen and (min-width: 1440px) {
  header {
    width: 100%;
    max-width: 111rem;
    height: 82rem;
    margin: 0 auto;
  }
}

header .header {
  position: relative;
  z-index: 1;
}

.header {
  width: 40%;
  text-align: center;
  margin: 0 auto;
}
@media screen and (min-width: 1440px) {
  .header {
    max-width: 111rem;
  }
}
@media screen and (min-width: 768px) {
  .header {
    width: calc(100% - 6rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media screen and (min-width: 1440px) {
  .header {
    width: 100%;
    padding-top: 2rem;
  }
}
.header__logo {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 3.2rem;
  letter-spacing: normal;
  padding: 2rem 0;
}
@media screen and (min-width: 768px) {
  .header__logo {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 3.2rem;
    letter-spacing: -0.04rem;
  }
}
.header__social-list {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1440px) {
  .header__social-list {
    margin: 3rem;
  }
}
.header__social-icon {
  width: 2rem;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .header__social-icon {
    width: 2.4rem;
    height: 2.4rem;
    margin-left: 3.2rem;
  }
}

.footer {
  background-color: #242424;
  padding: 1.9rem 0 6rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 1.7rem 0 4rem;
  }
}

.hero {
  margin-top: -9.2rem;
  text-align: center;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .hero {
    text-align: initial;
    height: 60rem;
  }
}
@media screen and (min-width: 1440px) {
  .hero {
    margin-top: -10.4rem;
    height: 72rem;
    overflow-x: initial;
  }
}
.hero__image {
  width: 45%;
  height: 38.3rem;
  margin: 0 auto 4rem;
}
@media screen and (min-width: 768px) {
  .hero__image {
    height: 60rem;
    width: 32.2rem;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
  }
}
@media screen and (min-width: 1440px) {
  .hero__image {
    height: 72rem;
    width: 44.5rem;
  }
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
@media screen and (min-width: 768px) {
  .hero__image img {
    object-fit: cover;
  }
}
.hero__content {
  padding: 0 1.6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero__content {
    width: 65%;
    position: absolute;
    top: 15rem;
    left: 3.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .hero__content {
    padding: 0;
    width: 70%;
    left: 0;
  }
}
.hero__content-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: -0.13rem;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .hero__content-heading {
    font-size: 7.2rem;
    font-weight: 700;
    line-height: 7.2rem;
    letter-spacing: -0.2rem;
    margin-bottom: 6rem;
  }
}
@media screen and (min-width: 1440px) {
  .hero__content-heading {
    font-size: 8.8rem;
    font-weight: 700;
    line-height: 8.8rem;
    letter-spacing: -0.25rem;
  }
}
.hero__content-heading-line {
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero__content-heading-line {
    display: block;
  }
}
@media screen and (min-width: 1440px) {
  .hero__content-heading-line--collapse {
    display: inline;
  }
}
.hero__content-heading-line--underline {
  border-bottom: 4px solid #4ee1a0;
}
.hero__content-text {
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: normal;
  color: #d9d9d9;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 768px) {
  .hero__content-text {
    width: 80%;
    margin-bottom: 3.4rem;
  }
}
@media screen and (min-width: 1440px) {
  .hero__content-text {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: normal;
  }
}
.hero__decoration-ring {
  position: absolute;
  top: 9rem;
  left: -35rem;
  z-index: -1;
}
@media screen and (min-width: 1440px) {
  .hero__decoration-ring {
    top: 9;
    left: -27rem;
  }
}
.hero__decoration-circle {
  position: absolute;
  top: 25rem;
  right: -7rem;
}
@media screen and (min-width: 768px) {
  .hero__decoration-circle {
    top: 47rem;
    right: -7rem;
  }
}
@media screen and (min-width: 1440px) {
  .hero__decoration-circle {
    top: 50rem;
    right: 38rem;
  }
}
.hero__separator {
  margin: 8rem 2rem 0;
  width: calc(100% - 4rem);
  height: 0.1rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .hero__separator {
    margin: 6rem 2rem 0;
  }
}
@media screen and (min-width: 1440px) {
  .hero__separator {
    width: 100%;
    margin: 10rem 0 0;
  }
}

.skills {
  padding-top: 4rem;
  position: relative;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  .skills {
    padding: 4rem 3rem 5rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1440px) {
  .skills {
    padding: 7.2rem 0 14rem;
    max-width: 111rem;
    margin: 0 auto;
    overflow: initial;
  }
}
.skills__decoration-ring {
  position: absolute;
  right: -35rem;
  bottom: 1rem;
}
@media screen and (min-width: 1440px) {
  .skills__decoration-ring {
    right: -40rem;
    bottom: 13rem;
  }
}
.skills__separator {
  margin: 4rem 2rem 7rem;
  width: calc(100% - 4rem);
  height: 0.1rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .skills__separator {
    display: none;
  }
}

.projects {
  padding: 1rem 1.6rem 0;
}
@media screen and (min-width: 1440px) {
  .projects {
    max-width: 111rem;
    margin: 0 auto;
  }
}
.projects__header {
  display: flex;
  justify-content: space-between;
}
.projects__header-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: -0.13rem;
}
@media screen and (min-width: 768px) {
  .projects__header-heading {
    font-size: 7.2rem;
    font-weight: 700;
    line-height: 7.2rem;
    letter-spacing: -0.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .projects__header-heading {
    font-size: 8.8rem;
    font-weight: 700;
    line-height: 8.8rem;
    letter-spacing: -0.25rem;
  }
}
@media screen and (min-width: 768px) {
  .projects__list {
    margin-top: 6rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6rem 2.4rem;
  }
}
@media screen and (min-width: 1440px) {
  .projects__list {
    margin-top: 8rem;
    gap: 6.9rem 3rem;
  }
}
@media screen and (min-width: 768px) {
  .projects__item {
    width: calc(50% - 1.2rem);
  }
}
@media screen and (min-width: 1440px) {
  .projects__item {
    width: calc(50% - 1.5rem);
  }
}

.contact {
  text-align: center;
  background-color: #242424;
  margin-top: 10rem;
  padding: 6rem 1.6rem 0;
  position: relative;
}
@media screen and (min-width: 1440px) {
  .contact {
    text-align: left;
  }
}
@media screen and (min-width: 1440px) {
  .contact__wrapper {
    max-width: 111rem;
    display: flex;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1440px) {
  .contact__text {
    flex: 1;
  }
}
.contact__text-heading {
  font-size: 4rem;
  font-weight: 700;
  line-height: 4rem;
  letter-spacing: -0.13rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .contact__text-heading {
    font-size: 7.2rem;
    font-weight: 700;
    line-height: 7.2rem;
    letter-spacing: -0.2rem;
  }
}
@media screen and (min-width: 1440px) {
  .contact__text-heading {
    font-size: 8.8rem;
    font-weight: 700;
    line-height: 8.8rem;
    letter-spacing: -0.25rem;
  }
}
.contact__text-paragraph {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: normal;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .contact__text-paragraph {
    width: 55%;
    margin: 0 auto 4rem;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 2.8rem;
    letter-spacing: normal;
  }
}
@media screen and (min-width: 1440px) {
  .contact__text-paragraph {
    margin: 0 0 4rem;
    width: 80%;
  }
}
.contact__decoration-ring {
  height: 8rem;
  position: absolute;
  left: -30rem;
  bottom: 15rem;
}
@media screen and (min-width: 768px) {
  .contact__decoration-ring {
    left: -35rem;
    bottom: 8rem;
  }
}
@media screen and (min-width: 1440px) {
  .contact__decoration-ring {
    left: -20rem;
    bottom: 23rem;
  }
}
.contact__separator {
  margin: 8rem 2rem 0;
  width: calc(100% - 4rem);
  height: 0.1rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .contact__separator {
    margin: 9.2rem 2rem 0;
  }
}

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