@font-face {
  font-family: "Blue-Winter";
  src: url("../fonts/blueWinter-_Inv0C4.ttf");
}
@font-face {
  font-family: "Just-Sans-Regular";
  src: url("../fonts/justSansRegular-l_TnCjW.woff2");
}
@font-face {
  font-family: "Just-Sans-ExBold";
  src: url("../fonts/justSansBold-1NljF5s.woff2");
}
@font-face {
  font-family: "Upheavtt";
  src: url("../fonts/upheavtt-do6XNlH.ttf") format("truetype");
}
@font-face {
  font-family: "Rainyhearts";
  src: url("../fonts/rainyhearts-GNsL5Dn.ttf") format("truetype");
}
@font-face {
  font-family: "Dogica-Pixel";
  src: url("../fonts/dogicapixel-UDknUb2.ttf") format("truetype");
}
@font-face {
  font-family: "Dogica-Pixel-Bold";
  src: url("../fonts/dogicapixelbold-ceTSAYX.ttf") format("truetype");
}
body {
  background-color: #24273a;
  color: #cad3f5;
}

h1 {
  font-family: "Upheavtt";
  font-size: 52px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

* {
  color: #cad3f5;
  font-family: "Just-Sans-Regular";
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__button {
  font-size: 16px;
  background-color: transparent;
  display: flex;
  align-items: center;
}
.footer__icon {
  display: flex;
  margin-right: 5px;
  flex-direction: column;
  align-items: center;
}

.nav {
  display: flex;
  gap: 10px;
  background-color: #1e2030;
  border-radius: 5px;
  border: 1px solid #a6da95;
  padding-right: 40px;
}
.nav__item {
  list-style-type: none;
  padding: 5px;
  margin: 5px 0;
  transition: 0.5s background-color ease;
}
.nav__item:last-child {
  align-self: flex-end;
  margin-left: auto;
}
.nav__item a {
  text-decoration: none;
}
.nav__item:hover {
  background-color: #1e2030;
}

.button {
  background-color: #181926;
  padding: 10px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}
.button--no-background {
  background-color: transparent;
}
.button--fit-content {
  width: fit-content;
}
.button--thin {
  padding: 5px;
}
.button--large {
  padding: 15px;
}
.button--outlined {
  border: 1px solid #a6da95;
}
.button--bg-animated {
  position: relative;
  overflow: hidden;
  transition: color 0.6s ease;
  z-index: 0;
}
.button--bg-animated::before {
  content: "";
  display: block;
  width: 150%;
  height: 550%;
  background-color: #a6da95;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.6s ease;
  transform: rotate(-30deg) translateX(-50%) translateY(-200%);
  z-index: -1;
}
.button--bg-animated:hover {
  color: #24273a;
  background: none;
}
.button--bg-animated:hover::before {
  transform: rotate(-30deg) translateX(-10%) translateY(-40%);
}
.button--border-animated {
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: transparent;
}
.button--border-animated::before, .button--border-animated::after {
  content: "";
  position: absolute;
  display: block;
  border-radius: 5px;
  z-index: -3;
}
.button--border-animated::before {
  bottom: -10%;
  right: 105%;
  width: 115%;
  height: 115%;
  background-color: #a6da95;
  transition: all 0.6s ease;
}
.button--border-animated::after {
  width: 98%;
  height: 95%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background-color: #181926;
}
.button--border-animated:hover::before {
  bottom: -10%;
  right: -10%;
}

.card {
  background-color: #1e2030;
  border-radius: 5px;
  display: flex;
  position: relative;
  z-index: 0;
}
.card--column {
  flex-direction: column;
}
.card--row {
  flex-direction: row;
}
.card__img {
  width: 50%;
  margin: 0 auto;
  border-radius: 50%;
}
.card__img--landscape {
  width: 50%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.card__img--no-round {
  border-radius: 0;
}
.card__img--litle {
  width: 20%;
}
.card__img--small {
  width: 35%;
}
.card__img--half {
  width: 50%;
}
.card__img--big {
  width: 75%;
}
.card__img--full {
  width: 100%;
}
.card__title {
  font-size: 28px;
  font-family: "Just-Sans-ExBold";
}
.card__button {
  margin-top: 20px;
}
.card__pills {
  padding: 5px 0;
}
.card__content {
  padding: 15px;
}
.card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.grid {
  display: flex;
}
.grid--row {
  flex-direction: row;
}
.grid--column {
  flex-direction: column;
}
.grid__card {
  padding: 15px;
  margin: 10px;
}

.pills {
  display: flex;
  gap: 10px;
}
.pills__item:nth-child(1) {
  background-color: rgba(166, 218, 149, 0.8);
  border: 2px solid #a6da95;
}
.pills__item:nth-child(2) {
  background-color: rgba(237, 135, 150, 0.8);
  border: 2px solid #ed8796;
}
.pills__item:nth-child(3) {
  background-color: rgba(138, 173, 244, 0.8);
  border: 2px solid #8aadf4;
}
.pills__item {
  border-radius: 15px;
  padding: 5px 10px;
}
.pills__item a {
  color: #24273a;
}
.pills__item--inactive {
  opacity: 0.3;
}

.header {
  width: 70%;
  top: 15px;
  z-index: 1;
}

.project__inner {
  margin: 0 200px;
}
.project__grid {
  margin-top: 15px;
  gap: 15px;
}
.project__card {
  overflow: hidden;
}
.project__header {
  position: sticky;
  margin: 0 auto;
}

.blog__inner {
  margin: 0 200px;
}
.blog__header {
  position: sticky;
  margin: 0 auto;
}
.blog__article-section {
  margin-top: 20px;
}

.home__header {
  position: fixed;
  left: 50%;
  translate: -50% 0;
}
.home__intro {
  height: 100vh;
  display: flex;
  align-items: center;
}

.hero {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero__title {
  font-family: "Upheavtt";
  font-size: 70px;
}
.hero__icon {
  width: fit-content;
  bottom: 50px;
  position: absolute;
  animation: loop 2s infinite alternate;
}
@keyframes loop {
  from {
    bottom: 50px;
  }
  to {
    bottom: 70px;
  }
}
.hero__icon svg {
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
}

.intro__inner {
  margin-top: 140px;
  background-color: #1e2030;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  margin: 0 auto;
}
.intro__heading {
  display: flex;
}

.heading__title {
  font-size: 32px;
  margin-bottom: 10px;
  font-family: "Dogica-Pixel-Bold";
}
.heading__img {
  width: 10%;
  border-radius: 50%;
}
.heading__social {
  display: flex;
}
.heading__content {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.social {
  display: flex;
  gap: 10px;
}
.social__item:nth-child(1) {
  animation-name: cta;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 6s;
  rotate: 0deg;
}
@keyframes cta {
  0% {
    rotate: 0deg;
  }
  1% {
    rotate: 10deg;
  }
  3% {
    rotate: -10deg;
  }
  5% {
    rotate: 10deg;
  }
  7% {
    rotate: -10deg;
  }
  9% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
.social__item:nth-child(2) {
  animation-name: cta;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 3s;
  rotate: 0deg;
}
@keyframes cta {
  0% {
    rotate: 0deg;
  }
  1% {
    rotate: 10deg;
  }
  3% {
    rotate: -10deg;
  }
  5% {
    rotate: 10deg;
  }
  7% {
    rotate: -10deg;
  }
  9% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
.social__item:nth-child(3) {
  animation-name: cta;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-delay: 0s;
  rotate: 0deg;
}
@keyframes cta {
  0% {
    rotate: 0deg;
  }
  1% {
    rotate: 10deg;
  }
  3% {
    rotate: -10deg;
  }
  5% {
    rotate: 10deg;
  }
  7% {
    rotate: -10deg;
  }
  9% {
    rotate: 0deg;
  }
  100% {
    rotate: 0deg;
  }
}
.social__icon svg {
  aspect-ratio: 1/1;
  width: 20px;
  height: 20px;
}

.info {
  margin: 10px 0;
}
.info__title {
  font-size: 24px;
}
.info--blue {
  position: relative;
}
.info--blue::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #8aadf4;
  left: -10px;
}
.info--green {
  position: relative;
}
.info--green::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #a6da95;
  left: -10px;
}
.info--red {
  position: relative;
}
.info--red::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #ed8796;
  left: -10px;
}

.project-section {
  width: 70%;
  margin: 0 auto;
  margin-top: 100px;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.project-section__title {
  font-size: 38px;
  position: relative;
  width: fit-content;
}
.project-section__title::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 100%;
  bottom: 0;
  left: 10px;
  background-color: #a6da95;
  border-radius: 5px;
}
.project-section__grid {
  margin: 0 -150px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.project-section__button {
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 60px;
}

.login__header {
  position: sticky;
  margin: 0 auto;
}
.login__inner {
  margin: 0 200px;
  width: 80vw;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login__form {
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.career__inner {
  margin: 0 50px;
}
.career__header {
  position: sticky;
  margin: 0 auto;
}
.career__grid {
  gap: 50px;
  display: flex;
  margin-top: 15px;
}
.career__title {
  margin: 0 150px;
}
.career__card {
  width: 70%;
  position: relative;
}
.career__card:before {
  position: absolute;
  content: "";
  bottom: -18%;
  height: 18%;
  width: 70%;
  background-color: #a6da95;
}
.career__card:nth-child(odd) {
  align-self: flex-start;
}
.career__card:nth-child(odd):before {
  translate: 50% 0;
}
.career__card:nth-child(even) {
  align-self: flex-end;
}
.career__card:nth-child(even):before {
  translate: -12% 0;
}
.career__card:nth-last-child(1)::after {
  content: "To be continued";
  position: absolute;
}

.article__inner {
  margin: 0 200px;
}
.article__main {
  background-color: #181926;
  border-radius: 25px 25px 0 0;
  padding: 20px;
  padding-bottom: 100vh;
  margin-top: 190px;
}
.article__header {
  position: sticky;
  margin: 0 auto;
}
.article__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 99vw;
  aspect-ratio: 3/1;
  object-fit: cover;
  z-index: -1;
}

.main__text {
  margin-top: 20px;
}
.main__pills {
  margin: 15px 0;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/_fonts.scss%22,%22../../assets/styles/_content.scss%22,%22../../assets/styles/_variables.scss%22,%22../../assets/styles/_button.scss%22,%22../../assets/styles/_card.scss%22,%22../../assets/styles/_grid.scss%22,%22../../assets/styles/_pills.scss%22,%22../../assets/styles/_header.scss%22,%22../../assets/styles/_project.scss%22,%22../../assets/styles/_blog.scss%22,%22../../assets/styles/_home.scss%22,%22../../assets/styles/_animation.scss%22,%22../../assets/styles/_login.scss%22,%22../../assets/styles/_career.scss%22,%22../../assets/styles/_article.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%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%22,%22file%22:%22app.output.css%22%7D */
