@keyframes MoveInRightToLeft {
  0% {
    scale: 1.2;
    filter: blur(5px);
    transform: translateX(50svw);
    opacity: 0;
  }
  100% {
    opacity: 1;
    scale: 1;
    transform: translateX(0);
    filter: none;
  }
}
@keyframes MoveInLeftToRight {
  0% {
    opacity: 0;
    scale: 1.2;
    filter: blur(5px);
    transform: translateX(-50svw);
  }
  100% {
    opacity: 1;
    scale: 1;
    transform: translateX(0);
    filter: none;
  }
}
@keyframes MoveInBottomUp {
  0% {
    scale: 0.75;
    filter: blur(10px);
    transform: translateY(10svh);
    opacity: 0;
  }
  100% {
    scale: 1;
    transform: translateY(0);
    filter: none;
  }
}
.hero {
  animation: MoveInBottomUp 1000ms backwards;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  color: #333333;
}

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

*:link,
*:visited {
  text-decoration: none;
}

.hidden {
  visibility: hidden;
}

p, ol, ul {
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: #333333;
  font-weight: 400;
}

h1 {
  font-size: 3.8rem;
  font-weight: 400;
}

h2 {
  font-size: 3rem;
  color: #214a5e;
}

h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 3.6rem;
  margin-bottom: 1rem;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

ol, ul {
  margin-left: 4ch;
  margin-block: 1.6rem;
}

summary {
  color: #214a5e;
  font-weight: 500;
  font-size: 1.8rem;
  cursor: pointer;
}

figcaption {
  font-size: 1.4rem;
  font-style: italic;
  margin-block: 0.8rem;
  text-align: center;
}

.frame {
  border: 2px solid;
  padding-inline: 0.5rem;
  border-radius: 0.4rem;
}

li {
  margin-block: 0.8rem;
}

button {
  background: none;
  border: none;
  padding: none;
  cursor: pointer;
}

.btn {
  display: grid;
  padding-block: 1.6rem;
  padding-inline: 2.4rem;
  border-radius: 0.4rem;
  box-shadow: 0 0.3rem 0.8rem rgba(51, 51, 51, 0.4);
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  align-items: center;
  transition: transform 200ms ease-in-out;
}
.btn--cta_primary {
  color: #fcfcfc;
  background-color: #214a5e;
}
.btn--cta_primary_revert {
  color: #214a5e;
  border: 1px solid #214a5e;
}
.btn--cta_secondary {
  color: #214a5e;
  background-color: #F2AF52;
}
.btn--cta_secondary_revert {
  color: #F2AF52;
  border: 1px solid #F2AF52;
}

@media screen and (min-width: 1024px) {
  .btn {
    max-width: 32rem;
  }
}
.btn:hover,
.btn:active {
  outline: none;
  box-shadow: 0 0.6rem 1.6rem rgba(51, 51, 51, 0.8);
  transform: translateY(-0.2rem) scale(1.03);
}

:root {
  interpolate-size: allow-keywords;
}

details {
  padding: 0.8rem;
  overflow: hidden;
  margin-block: 1.6rem;
  background-color: rgba(51, 51, 51, 0.15);
}
details p {
  padding-block: 0.8rem;
}

summary {
  list-style-position: outside;
  margin-inline-start: 2rem;
  line-height: 1.3;
}

summary::marker {
  color: rgba(33, 74, 94, 0.7);
}

details::details-content {
  block-size: 0;
  transition: block-size 500ms, content-visibility 500ms;
  transition-behavior: allow-discrete;
}

details[open]::details-content {
  block-size: auto;
}

.toggle-checkbox {
  display: none;
}
.toggle-label {
  align-self: center;
  height: 3.2rem;
  width: 3.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: grid;
}
.toggle-label span,
.toggle-label span::before,
.toggle-label span::after {
  display: block;
  position: relative;
  width: 3.2rem;
  height: 0.3rem;
  border-radius: 0.3rem;
  background-color: #fcfcfc;
  content: "";
}
.toggle-label span::before,
.toggle-label span::after {
  content: "";
  position: absolute;
}
.toggle-label span::before {
  top: 1.2rem;
}
.toggle-label span::after {
  bottom: 1.2rem;
}
.toggle-checkbox:checked ~ .nav {
  transform: scale(1, 1);
}
.toggle-checkbox:checked ~ .nav a {
  opacity: 1;
  transform: opacity 250ms ease-in-out 250ms;
}

.section {
  scroll-margin-top: 6.8rem;
  margin-bottom: 4.8rem;
  overflow: hidden;
}
.section:first-of-type {
  padding-top: 6.8rem;
}
.section--hero {
  min-height: 100svh;
}
.section--hero {
  padding-bottom: 6.8rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.01) 6.8rem, rgba(0, 0, 0, 0.5) 100%), radial-gradient(circle, rgba(33, 74, 94, 0.9) 0%, #214a5e 100%), url("../images/bg.webp");
  background-size: contain;
}
.section--project {
  padding-bottom: 6.8rem;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 6.8rem, rgba(0, 0, 0, 0.1) 100%);
}
.section img {
  width: 100%;
}
.section .h2-section {
  padding-block: 1.6rem;
}

footer,
.section,
.full-width {
  display: grid;
  grid-template-columns: [full-width-start] minmax(1.6rem, 1fr) [breakout-start] minmax(0, calc((144rem - 150ch) / 2)) [content-start] min(100% - 3.2rem, 150ch) [content-end] minmax(0, calc((144rem - 150ch) / 2)) [breakout-end] minmax(1.6rem, 1fr) [full-width-end];
}
footer > :not(.breakout, .full-width),
.section > :not(.breakout, .full-width),
.full-width > :not(.breakout, .full-width) {
  grid-column: content;
}

footer > .breakout,
.section > .breakout {
  grid-column: breakout;
}

footer > .full-width,
.section > .full-width {
  grid-column: full-width;
}

header {
  width: 100%;
  height: 6.8rem;
  position: fixed;
  z-index: 2000;
  padding-inline: 1.6rem;
  transition: all 250ms ease-in-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header--light .nav--link,
.header--light .home_svg path {
  color: #fcfcfc;
  fill: #fcfcfc;
}
.header--light .nav--link_current {
  color: #9fa3a8;
}
.header--light .nav--link::after {
  background-color: #fcfcfc;
}
.header--light span,
.header--light span::before,
.header--light span::after {
  background-color: #fcfcfc;
}

.header--dark .nav--link,
.header--dark .home_svg path {
  color: #333333;
  fill: #333333;
}
.header--dark .nav--link_current {
  color: #9fa3a8;
}
.header--dark .nav--link::after {
  background-color: #333333;
}
.header--dark span,
.header--dark span::before,
.header--dark span::after {
  background-color: #333333;
}

.header--scroll .nav--link,
.header--scroll .home_svg path {
  color: #214a5e;
  fill: #214a5e;
}
.header--scroll .nav--link_current {
  color: #9fa3a8;
}
.header--scroll .nav--link::after {
  background-color: #214a5e;
}
.header--scroll span,
.header--scroll span::before,
.header--scroll span::after {
  background-color: #214a5e;
}

.nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 6.8rem;
  right: 0;
  padding: 1.6rem;
  background-color: #fcfcfc;
  color: #214a5e;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 250ms ease-in-out;
}
.nav--link:not(.home) {
  padding-block: 0.8rem;
}
.nav--link:not(.nav--lang) {
  text-align: left;
}
.nav--container {
  display: flex;
}
.nav--home {
  display: flex;
}
.nav--lang {
  font-size: 1.6rem;
  display: flex;
  margin-right: 3.2rem;
}
.nav--lang .nav--link {
  font-size: 2rem;
}
.nav--link {
  position: relative;
  height: 4.8rem;
  display: grid;
  align-items: center;
  background-color: transparent;
  font-size: 2.4rem;
  letter-spacing: -2%;
  font-weight: 400;
  text-align: center;
  padding-inline: 0.8rem;
  cursor: pointer;
}
.nav--link_current {
  cursor: initial;
}
.nav--link_current::after {
  display: none;
}
.nav--link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.2rem;
  transition: all ease-in-out 125ms;
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
}
.nav--link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.home_svg {
  width: 3.6rem;
}

.header--scroll {
  background-image: none;
  background-color: #fcfcfc;
  box-shadow: 0 0.3rem 0.8rem rgba(51, 51, 51, 0.4);
}
.header--scroll .nav--link {
  animation: movInBottom 0.25s ease-out 0.125s;
  animation-fill-mode: backwards;
}

footer {
  padding-block: 3.2rem;
  background-color: #333333;
  align-items: start;
}

.sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.sitemap--list {
  flex-basis: 32ch;
  color: #fcfcfc;
  font-weight: 600;
  list-style: none;
  margin: 0;
}
.sitemap--list a {
  color: #F2AF52;
  font-weight: 400;
}

.footer {
  text-align: center;
  font-size: 1.2rem;
  color: #fcfcfc;
}
.footer a {
  color: #fcfcfc;
}

#aboutme {
  margin-bottom: 4.8rem;
}

.aboutme--item {
  margin-top: 5rem;
  display: grid;
  align-items: center;
}
.aboutme--item-img {
  width: 100%;
  padding-inline: 20%;
  justify-self: center;
}

@media screen and (min-width: 840px) {
  .aboutme--item {
    grid-template-columns: 32rem 1fr;
  }
  .aboutme--item-img {
    padding-inline: 0px;
  }
  .aboutme--item:not(:first-of-type) {
    margin-block: -4rem;
  }
  .aboutme--item:nth-child(even) {
    grid-auto-flow: dense;
    direction: rtl;
    text-align: left;
  }
  #aboutme {
    margin-bottom: 12.8rem;
  }
}
.hero {
  display: grid;
  align-items: center;
}
.hero--content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  column-gap: 6.4rem;
  row-gap: 3.2rem;
}
.hero--content_header h1 {
  text-align: center;
  line-height: 1;
  font-weight: 200;
  color: #fcfcfc;
  font-size: clamp(8rem, 10vw, 11rem);
  letter-spacing: clamp(-6px, 1vw, -11px);
  margin-left: clamp(-6px, 1vw, -11px);
  padding: 0px;
}
.hero--content_header h2 {
  text-align: center;
  line-height: 1;
  font-weight: 200;
  color: #fcfcfc;
  margin-top: -1rem;
  font-size: clamp(5.33rem, 6.66vw, 8rem);
  padding: 0px;
}
.hero--content_header h3 {
  text-align: center;
  line-height: 1;
  font-weight: 700;
  color: #F2AF52;
  font-size: clamp(1.33rem, 1.67vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  word-spacing: clamp(0.6rem, 1vw, 3rem);
  padding: 0px;
  margin: 0px;
}
.hero--content_img .heroImage {
  display: grid;
  justify-self: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(to bottom, rgb(242.25, 242.25, 242.25) 0%, #333333 100%);
  border-radius: 100%;
  border: 1px solid rgb(19.7480314961, 44.2834645669, 56.2519685039);
  min-width: 26rem;
  min-height: 26rem;
  width: 100%;
  padding-bottom: 100%;
}
.hero--content_img .heroImage img {
  position: absolute;
  width: auto;
  height: 100%;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.hero--text p {
  margin-top: 1.6rem;
  color: rgba(252, 252, 252, 0.9);
}
@media screen and (min-width: 840px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
  .hero--text p {
    text-wrap: balance;
  }
}
.hero--cta {
  margin-top: 3.2rem;
  column-gap: 3.2rem;
  row-gap: 1.6rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
}

.portfolio {
  margin-top: 4.8rem;
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.8rem;
}
.portfolio--card {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 32rem;
  box-shadow: 0 0.1rem 0.2rem rgba(51, 51, 51, 0.4);
  max-width: 56rem;
  aspect-ratio: 4/3;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 0.8rem;
}
.portfolio--card--header {
  z-index: 10;
  text-align: center;
  width: 100%;
  background-color: #fcfcfc;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin: 0;
  padding: 0.8rem;
  display: grid;
  align-items: center;
  color: #214a5e;
}
.portfolio--card--more {
  z-index: 10;
  margin-inline: auto;
  width: max-content;
  padding: 1.6rem;
  background-color: rgba(252, 252, 252, 0.66);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition: all ease-in-out 500ms;
  opacity: 0;
  font-size: 1.6rem;
  color: #214a5e;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.portfolio--card--img {
  z-index: 9;
  position: absolute;
  max-width: 100%;
  transition: all ease-in 500ms;
}
.portfolio--card:hover .portfolio--card--more {
  opacity: 1;
}
.portfolio--card:hover .portfolio--card--img {
  filter: brightness(50%);
  transform: scale(105%);
}

.project--header {
  display: grid;
  margin-top: 3.2rem;
  gap: 3.2rem;
}
@media screen and (min-width: 840px) {
  .project--header {
    grid-template-columns: 3fr 2fr;
  }
}
.project--header-img, .project--header-table {
  grid-row: span 2;
}
.project--header-table {
  align-self: end;
  text-align: left;
  border-spacing: 0px;
}
.project--header-table th {
  padding-block: 0.8rem;
  padding-right: 0.8rem;
  font-size: 1.4rem;
}
.project--header-table td {
  font-size: 1.2rem;
  padding-block: 0.8rem;
  padding-left: 0.8rem;
}
.project--header-table tr:not(:last-of-type) > th,
.project--header-table tr:not(:last-of-type) > td {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}
.project--header-img img {
  max-width: 48rem;
  border-radius: 0.4rem;
  box-shadow: 0 0.1rem 0.2rem rgba(51, 51, 51, 0.4);
}
.project--header-links, .project--header-img {
  justify-self: center;
}
.project--header-links {
  display: flex;
  gap: 3.2rem;
}

.project--links {
  display: flex;
  justify-content: space-between;
}
.project--links a {
  max-width: 50%;
  color: #214a5e;
  font-size: 1.8rem;
}

.project--section p {
  margin-top: 1.6rem;
}

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