@import "https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;0,800;1,600&display=swap";

/* Dark theme - Professional color palette */
html {
  --mainColor: #facc15;
  --secondColor: #f59e0b;
  --thirdColor: #1e293b;
  --pink: #d16ba5;
  --green-alt: #3ecf8e;
  --purple: #9b6ddf;
  --bg: #121212;
  --darkBlue: #181818;
  --white: #ffffff;
  --whiteLight: #e2e8f0;
  --error: #ef4444;
  --success: #10b981;
}
/* Light theme - Professional color palette */
html[data-theme="light"] {
  --mainColor: #eab308;
  --secondColor: #d97706;
  --thirdColor: #334155;
  --pink: #ec4899;
  --green-alt: #10b981;
  --purple: #8b5cf6;
  --bg: #f8fafc;
  --darkBlue: #ffffff;
  --white: #0f172a;
  --whiteLight: #475569;
  --error: #dc2626;
  --success: #059669;
}

::-webkit-scrollbar {
  width: 5px;
  border-radius: 10px 0;
}
::-webkit-scrollbar-track {
  background-color: var(--bg);
}
::-webkit-scrollbar-thumb {
  background-color: var(--mainColor);
}



/* Navigation */
.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}
.navigation.scrolled {
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
html[data-theme="light"] .navigation.scrolled {
  background: rgba(248, 250, 252, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.navigation__container {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navigation__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.navigation__brand img {
  width: 2.5rem;
  height: 2.5rem;
}
.navigation__brand span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  font-family: "the_historia_demoregular", sans-serif;
  letter-spacing: 5px;
}
.navigation__menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.navigation__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--whiteLight);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.navigation__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mainColor);
  transition: width 0.3s ease;
}
.navigation__link:hover {
  color: var(--mainColor);
}
.navigation__link:hover::after {
  width: 100%;
}
.navigation__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.navigation__toggle-bar {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.navigation__toggle.active .navigation__toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navigation__toggle.active .navigation__toggle-bar:nth-child(2) {
  opacity: 0;
}
.navigation__toggle.active .navigation__toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile Navigation */
@media screen and (max-width: 768px) {
  .navigation__toggle {
    display: flex;
  }
  
  .navigation__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--darkBlue);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.4s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }
  
  .navigation__menu.active {
    right: 0;
  }
  
  .navigation__link {
    font-size: 1.2rem;
  }
}





.splash-screen {
  background: var(--bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}
.splash-screen__text {
  color: var(--thirdColor);
  font-family: "Open Sans", sans-serif;
  font-size: 2em;
}
.splash-screen__cta {
  display: block;
  padding: 14px 18px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 6px;
  color: var(--white);
  border: 1px solid var(--white);
  outline: none;
  font-family: "Open Sans", sans-serif;
  overflow: hidden;
  background: none;
  transition: 0.8s ease-out;
  position: relative;
  margin-top: 2em;
  z-index: 10;
  transform: translateX(-75%);
}
.splash-screen__cta:hover {
  color: var(--bg);
  cursor: crosshair;
}
.splash-screen__cta::before {
  content: "";
  position: absolute;
  background: var(--white);
  left: 0;
  right: 0;
  bottom: 0;
  top: 100%;
  transition: top 0.8s ease-out;
  z-index: -9;
}
.splash-screen__cta:hover::before {
  top: 0;
}
.transition-overlay {
  background: var(--green-alt);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 1000;
}
.transition-overlay--secondary {
  background: var(--purple);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateY(100%);
  z-index: 1000;
}
.splash-screen__text-wrapper {
  background: var(--bg);
  overflow: hidden;
}
.splash-screen__text-wrapper span {
  transform: translateY(100%);
  display: inline-block;
}

.link-grow {
  transform: scale(2);
  transform-origin: 100% 100%;
  background: rgba(255, 255, 255, 0.3);
}
.background-effects .background-effects__item {
  position: absolute;
  z-index: 1;
}


#cursor {
  position: fixed;
  top: calc(30px * -0.5);
  left: calc(30px * -0.5);
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 999;
}

.cursor-circle {
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--mainColor);
}


.background-effects .background-effects__item--1 {
  width: 60px;
  height: 60px;
  border: 3px solid var(--mainColor);
  border-radius: 50%;
  right: 8%;
  top: 20%;
  animation: spin 12s linear infinite;
}
.background-effects .background-effects__item--2 {
  left: 3%;
  bottom: 20%;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  animation: topBounce 3s ease-in-out infinite;

}
.background-effects .background-effects__item--2 div {
  z-index: 999;
  height: 3px;
  width: 3px;
  background-color: var(--mainColor);
  margin: 0 3px 8px;
  border-radius: 50%;
}
.background-effects .background-effects__item--3 {
  width: 40px;
  height: 40px;
  background: var(--green-alt);
  left: 5%;
  top: 30%;
  animation: spin 8s linear infinite;
  border-radius: 8px;
}
.background-effects .background-effects__item--3::before {
  content: "";
  width: 25px;
  height: 25px;
  background: var(--mainColor);
  position: absolute;
  opacity: 0.4;
  right: -30px;
  top: 5px;
  border-radius: 50%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes topBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
}
.info-popup {
  background: var(--green-alt);
  border-radius: 10px;
  max-width: 250px;
  -webkit-clip-path: circle(10% at 83% 18%);
  clip-path: circle(10% at 83% 18%);
  padding: 2rem;
  transition: all 0.6s ease-in-out;
  position: absolute;
  top: 3.5rem;
  right: 1.8rem;
  z-index: 100;
}
.info-popup:hover {
  -webkit-clip-path: circle(75%);
  clip-path: circle(75%);
  background: linear-gradient(
    to bottom left,
    var(--green-alt),
    var(--darkBlue)
  );
}
.info-popup span {
  float: right;
  color: var(--white);
  font-style: italic;
  font-weight: bold;
  transition: color 0.5s;
  position: relative;
  margin-right: 5%;
}
.info-popup:hover span {
  color: rgba(255, 255, 255, 0);
}
.info-popup h1 {
  color: var(--white);
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
}
.info-popup p {
  color: var(--white);
  font-size: 0.8rem;
  line-height: 1.6;
  font-weight: 300;
}
.info-popup a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.75rem;
  border-bottom: 3px dotted var(--mainColor);
}
input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}
input[type="checkbox"]:checked + label {
  background: var(--mainColor);
}
input[type="checkbox"]:checked + label:after {
  left: calc(100% - 5px);
  transform: translateX(-100%);
}
.theme-switcher__label {
  cursor: pointer;
  text-indent: -9999px;
  width: 52px;
  height: 27px;
  background: #d3d3d3;
  float: right;
  border-radius: 100px;
  position: absolute;
  bottom: 8%;
  right: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.theme-switcher__label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 90px;
  transition: 0.3s;
}
.theme-switcher__label:active:after {
  width: 45px;
}
html.transition,
html.transition *,
html.transition *:before,
html.transition *:after {
  transition: all 750ms !important;
  transition-delay: 0 !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}
::before,
::after {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--white);
  font-weight: 600;
}
body {
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: var(--white);
  min-height: 100vh;
  max-width: 100%;
  background: var(--bg);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  color: var(--secondColor);
  cursor: crosshair;
}
img {
  vertical-align: middle;
  max-width: 100%;
}
.container {
  margin: auto;
  width: 100%;
}
button {
  font-family: inherit;
  font-weight: inherit;
}
section {
  min-height: 100vh;
}
.section-title {
  padding: 0 15px;
  width: 100%;
  margin-bottom: 40px;
}
.section-title h2 {
  text-align: center;
  font-size: 40px;
}
@font-face {
  font-family: "the_historia_demoregular";
  src: url("../fonts/fontsfree-net-thehistoriademo-webfont.woff2")
      format("woff2"),
    url("../fonts/fontsfree-net-thehistoriademo-webfont.woff") format("woff");
}
@media screen and (max-width: 900px) {
  .section-about {
    padding: 2rem 2rem !important;
  }
}
@media screen and (max-width: 768px) {
  header .hero h1 {
    padding: 0.5rem 1rem !important;
  }
  header .nav-list {
    margin-top: 2.5rem;
    flex-direction: column;
  }
  header .nav-list li {
    margin: 1rem 0;
  }
  header .nav-list li .navigation__link {
    font-size: 1.3rem;
  }
  .portfolio {
    margin-top: 12rem;
  }
  .about__header h2,
  .services__title h2,
  .contact__header h2 {
    font-size: 1.5rem !important;
  }
  .site-footer__link-group:nth-child(1) {
    margin-right: 5em !important;
  }
  .more-about-content {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .more-about-img,
  .more-about-text {
    width: 100% !important;
    margin: 2rem auto;
  }
  .cursor-effect {
    display: none;
  }
  .section-about .container {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .section-about .container .about__image {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .hero h1 {
    font-size: 5rem !important;
    padding: 2rem;
    line-height: 1.1;
    letter-spacing: 5px !important;
  }
  .nav-list {
    margin-top: -1rem !important;
  }
  .nav-list .navigation__link {
    font-size: 3.5rem !important;
  }
  .menu-toggler {
    top: 2.2rem;
    right: 1rem;
    width: 1.5rem;
    height: 1rem;
  }
  .section-about {
    margin-top: 9rem !important;
  }
  .section-about .container {
    flex-direction: column;
  }
  .section-about .container .about__image {
    margin: 0 2rem 4rem 1rem;
  }
  .logo {
    top: 2.2rem;
    left: 1rem;
    width: 4rem !important;
    padding: 0.6rem 0.3rem !important;
  }
  .logo h2 {
    font-size: 1.2rem !important;
  }
  .section-projects {
    padding: 4em !important;
  }
  .section-contact .container {
    padding: 0px 20px !important;
  }
  .section-contact .container form {
    width: 100% !important;
    min-width: 0 !important;
  }
  .section-contact .container form .form__row {
    flex-direction: column;
  }
  .section-contact .container form .form__row .form__group {
    width: 100% !important;
    margin-bottom: 50px;
  }
  .section-contact .container form .form__group--textarea {
    margin-top: 0 !important;
  }
  .contact__subtitle {
    font-size: 0.9rem !important;
    margin: 0px 0 60px !important;
  }
  .section-services {
    margin-top: 6rem !important;
    padding: 4rem 1rem !important;
  }
  .about__content p {
    margin-top: 0rem !important;
    font-size: 0.8rem !important;
  }
  .contact__header {
    padding: 6rem 2rem 2rem 6rem !important;
  }
  .site-footer__link-group:nth-child(1) {
    margin-bottom: 5em;
    margin-right: -6em !important;
  }
  .background-effects__item--3 {
    top: 12rem !important;
    left: 5rem !important;
  }
  .info-popup {
    max-width: 220px !important;
    padding: 1rem;
  }
  .info-popup span {
    display: none;
  }
}
@media screen and (max-width: 350px) {
  header .hero {
    flex-direction: column;
  }
  header .hero h1 {
    font-size: 5rem;
  }
  .hero__availability {
    padding: 6px 12px;
    font-size: 0.65rem;
  }
  .hero__scroll {
    right: 20px;
    bottom: 20px;
  }
  .hero__scroll-line {
    height: 40px;
  }
  .about__image {
    max-width: 400px;
  }
  .services__title h2 {
    font-size: 1.2rem !important;
  }
  .services__header p,
  .about__content {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 300px) {
  .services__title h2 {
    font-size: 1rem !important;
  }
  .project-card {
    padding: 1.4rem !important;
  }
}
@media screen and (max-width: 360px) {
  .service-card p {
    font-size: 0.67rem !important;
  }
}
.section-about {
  margin-top: 13rem;
  padding: 2rem 6rem;
  position: relative;
}
.section-about .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-about .container .about__header {
  text-align: center;
  text-transform: uppercase;
  line-height: 0;
  margin-bottom: 3rem;
}
.section-about .container .about__header h2 {
  font-size: 3rem;
  opacity: 1;
}
.section-about .container .about__image {
  flex: 1;
  margin-right: 2rem;
  z-index: 100;
  position: relative;
}
.section-about .container .about__image img {
  width: 510px;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.3s;
  transform: scale(.92);

}
.section-about .container .about__image img:hover {
  filter: none;
  /* transform: scale(1); */
}
.section-about .container .about__content {
  flex: 1;
  font-size: 1rem;
  line-height: 2;
}
.section-about .container .about__content p {
  margin-top: 5rem;
  font-weight: 300;
  text-align: left;
  color: var(--white);
}
.section-about .container .about__content p a {
  font-weight: 700;
  color: var(--mainColor);
}
.about__actions {
  text-align: center;
  margin: 2rem 0;
  font-size: 0.95em;
}
.about__actions span {
  margin-left: 10px;
}
.about__actions a {
  font-weight: 800;
  position: relative;
  color: var(--green-alt);
}
.about__actions a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background-color: var(--mainColor);
  transition: width 0.3s ease;
}
.about__actions a:hover::before {
  width: 100%;
}
.about__actions .btn--secondary {
  color: var(--purple);
  margin-left: 10px;
}
.section-contact {
  background: var(--bg);
  padding-top: 4rem;
}
.contact__header {
  display: flex;
  flex-direction: column;
  padding: 6rem 6rem 2rem 6rem;
  text-align: right;
}
.contact__header h5 {
  text-transform: uppercase;
  color: var(--whiteLight);
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.contact__header h2 {
  font-size: 2.2rem;
  text-transform: capitalize;
  letter-spacing: -1px;
}
.section-contact .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 60px 150px 40px;
}
.section-contact .container .contact__subtitle {
  text-align: center;
  line-height: 1.3;
  font-size: 1.3rem;
  color: var(--whiteLight);
  margin: 50px 0 60px;
}
.section-contact .container form {
  width: 70%;
  min-width: 450px;
}
.section-contact .container form .form__row {
  display: flex;
  justify-content: space-between;
}
.section-contact .container form .form__row .form__group {
  width: 45%;
}
.section-contact .container form label {
  margin-top: 20px;
  display: block;
  text-transform: capitalize;
  color: #868f97;
  font-size: 12px;
  margin-bottom: 5px;
}
.section-contact .container form input,
.section-contact .container form textarea {
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  border-bottom: 1px solid var(--white);
  background: rgba(0, 0, 0, 0);
  outline: none;
  box-shadow: none;
  text-align: left;
  font-size: 14.5px;
  width: 100%;
  color: var(--white);
  padding: 0.6em 0.6em 0.6em 0;
}
.section-contact .container form .form__group--textarea {
  margin-top: 99px;
}
.section-contact .container form .form__group--textarea textarea {
  resize: none;
  line-height: 1.4;
}
.section-contact .container form button {
  outline: none;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--white);
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0);
  border: 1px solid var(--mainColor);
  display: block;
  margin: 80px auto 0;
  position: relative;
  color: var(--mainColor);
}
.section-contact .container form button:hover {
  color: var(--bg);
  background: var(--mainColor);
  transition: 0.3s all ease;
}
header {
  width: 100%;
  height: 100vh;
  background: var(--darkBlue);
  position: relative;
}
header .hero {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 10;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
header .hero h1 {
  font-size: 10rem;
  font-family: "the_historia_demoregular", sans-serif;
  padding: 0.5rem 1rem;
  margin: 0;
  background: linear-gradient(to top, var(--mainColor), var(--secondColor));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  letter-spacing: 15px;
}
header .hero p {
  font-size: 0.85rem;
  padding: 0 1rem;
  margin: 0;
}

/* Hero Availability Badge */
.hero__availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(250, 204, 21, 0.1);
  border: 1px solid var(--mainColor);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
}
.hero__availability-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll-text {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--whiteLight);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--mainColor), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -5px;
  animation: scrollDown 1.5s infinite;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@keyframes scrollDown {
  0% { top: -10px; opacity: 0; }
  30% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 55px; opacity: 0; }
}

.logo img {
  position: fixed;
  top: 1rem;
  left: 2rem;
  width: 4rem;
  background-color: rgba(var(--bg), 0.75);
  padding: 0.3rem;
  z-index: 101;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.section-projects {
  grid-column: 2/14;
  padding: 6rem;
}
.section-projects h5 {
  text-transform: uppercase;
  color: var(--whiteLight) !important;
  font-size: 0.8rem;
  letter-spacing: 3px;
}
.section-projects h2 {
  font-size: 2.2rem;
  text-transform: capitalize;
  letter-spacing: -1px;
}
.projects__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  grid-gap: 4rem;
  color: var(--bg);
  margin-top: 6rem;
}
.project-card {
  padding: 2rem;
  height: 18rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}
.project-card:hover {
  border: solid 2px var(--white);
  color: var(--white);
}
.section-projects .project-card:nth-child(1):hover:after {
  outline: 2px solid #add8e6;
  background: #add8e6;
}
.section-projects .project-card:nth-child(2):hover:after {
  background: #f08080;
  outline: 2px solid #f08080;
}
.section-projects .project-card:nth-child(3):hover:after {
  background: #e0ffff;
  outline: 2px solid #e0ffff;
}
.section-projects .project-card:nth-child(4):hover:after {
  background: #d3d3d3;
  outline: 2px solid #789;
}
.section-projects .project-card:nth-child(4):hover:after .project-card__actions {
  width: -moz-min-content;
  width: min-content;
}
.section-projects .project-card:nth-child(5):hover:after {
  background: #90ee90;
  outline: 2px solid #90ee90;
}
.section-projects .project-card:nth-child(5):hover:after .project-card__actions {
  width: -moz-min-content;
  width: min-content;
}
.section-projects .project-card:nth-child(6):hover:after {
  background: #ffffe0;
  outline: 2px solid #ffffe0;
}
.section-projects .project-card:nth-child(6):hover:after .project-card__actions {
  width: -moz-min-content;
  width: min-content;
}
.section-projects .project-card:nth-child(7):hover:after {
  background: #20b2aa;
  outline: 2px solid #20b2aa;
}
.section-projects .project-card:nth-child(7):hover:after .project-card__actions {
  width: -moz-min-content;
  width: min-content;
}
.section-projects .project-card:nth-child(8):hover:after {
  background: #ffb6c1;
  outline: 2px solid #ffb6c1;
}
.section-projects .project-card:nth-child(8):hover:after .project-card__actions {
  width: -moz-min-content;
  width: min-content;
}
.project-card__actions {
  align-self: flex-end;
  width: 25%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .project-card__actions {
    width: 30%;
  }
}
.project-card__actions a ion-icon {
  width: 35px;
  height: 25px;
  color: var(--white);
}
.project-card__content {
  align-self: center;
}
.project-card__content h3 {
  margin-bottom: 3rem;
  letter-spacing: -0.5px;
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: capitalize;
  color: var(--whiteLight);
}
.project-card__content h5 {
  color: var(--secondColor);
  font-size: 1em;
  font-weight: 400;
}
.project-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--white);
}
.project-card:after {
  content: "";
  position: absolute;
  width: 103%;
  height: 101%;
  top: 1rem;
  right: 0.5rem;
  z-index: -1;
}
.project-card:hover {
  background: none;
  background-color: var(--darkBlue);
  transition: all 0.2s ease;
}
.project-card:hover:after {
  transition: all 0.2s ease;
}
.project-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-services {
  margin-top: 6rem;
  padding: 6rem 3.5rem;
  background: var(--bg);
}
.section-services .services__header {
  text-align: center;
}
.section-services .services__header .services__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.section-services .services__header .services__title .section__subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mainColor);
  margin-bottom: 0.5rem;
}
.section-services .services__header .services__title h2 {
  font-size: 3rem;
  opacity: 1;
  margin: 0 0 1rem 0;
}
.section-services .services__header .services__title .section__description {
  font-size: 1rem;
  color: var(--whiteLight);
  text-transform: none;
  letter-spacing: 0.5px;
}
.section-services .services__grid {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.section-services .services__grid .service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
  width: 350px;
  height: 300px;
  padding: 20px 25px;
  margin: 20px;
  position: relative;
  background: var(--darkBlue);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.08);
  transition: all 0.5s ease;
}
.section-services .services__grid .service-card:hover {
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
/* Light mode shadow */
html[data-theme="light"] .section-services .services__grid .service-card {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
html[data-theme="light"] .section-services .services__grid .service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.section-services .services__grid .service-card ion-icon {
  width: 55px;
  height: 55px;
  color: var(--mainColor);
}
.section-services .services__grid .service-card h5 {
  color: var(--white);
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin: 10px 0;
}
.section-services .services__grid .service-card p {
  color: var(--whiteLight);
  font-size: 1.4em;
}
.site-footer {
  background: var(--bg);
  padding: 8rem 5rem 5rem;
  position: relative;
  z-index: 1;
}
.site-footer hr {
  border-color: var(--whiteLight);
  border-width: 1px;
  margin-bottom: 4rem;
  opacity: 0.4;
}
.site-footer__header {
  margin-top: 2rem;
  font-size: 1rem;
  font-weight: 500;
}
.site-footer__header h5 {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.site-footer__header .site-footer__links {
  color: var(--thirdColor);
  display: flex;
  flex-wrap: wrap;
}
.site-footer__header .site-footer__links .site-footer__link-group:nth-child(1) {
  margin-right: 15em;
}
.site-footer__header .site-footer__links .site-footer__link-group:nth-child(2) {
  display: flex;
  flex-direction: row;
}
.site-footer__header .site-footer__links .site-footer__link-group:nth-child(2) p {
  margin-left: 1.5rem;
}
.site-footer__header .site-footer__links .site-footer__link-group p {
  margin-bottom: 16px;
}
.site-footer__header .site-footer__links .site-footer__link-group p a {
  color: var(--mainColor);
}
.site-footer__header .site-footer__links .site-footer__link-group p a:hover {
  transition: 0.3s;
  color: var(--whiteLight);
}
.site-footer__copyright {
  color: var(--whiteLight);
  padding: 140px 0 0;
  text-align: right;
  font-size: 1rem;
}
.more-about {
  padding: 2rem;
  width: 100%;
  height: 100%;
  margin: auto;
  font-size: 0.9rem;
  color: var(--whiteLight);
}
.more-about h2 {
  font-size: 2.3rem;
  text-transform: uppercase;
  margin: 2rem 0 5rem;
}
.more-about h2 span {
  color: var(--secondColor);
}
.more-about-content {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 100%;
  justify-content: space-between;
}
.more-about-img {
  width: 40%;
  height: auto;
  padding: 0 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  max-width: 400px;
  z-index: 100;
}
.more-about-text {
  width: 60%;
  padding: 0 15px;
}
.more-about-text h3 {
  font-size: 1.2rem;
  margin: 5rem 0 2.5rem;
}
.more-about-text .skills {
  display: flex;
  flex-wrap: wrap;
}
.more-about-text .skills .skill-item {
  background: rgba(var(--darkBlue), 0.7);
  border: 1px solid var(--mainColor);
  padding: 5px 15px;
  margin: 0 10px 10px 0;
  border-radius: 20px;
}
.more-about-text .tabs {
  margin-top: 4rem;
}
.more-about-text .tabs .tab-item {
  padding: 2px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  display: inline-block;
  color: var(--secondColor);
  font-size: 1.1rem;
  cursor: crosshair;
  font-weight: 500;
  font-family: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-right: 30px;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.more-about-text .tabs .tab-item:last-child {
  margin: 0;
}
.more-about-text .tabs .tab-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--thirdColor);
  transition: width 0.3s ease;
}
.more-about-text .tabs .tab-item:hover::before {
  width: 100%;
}
.more-about-text .tabs .tab-item.active {
  color: var(--mainColor);
  opacity: 1;
  cursor: crosshair;
}
.more-about-text .tabs .tab-item.active::before {
  width: 100%;
  background-color: var(--mainColor);
}
.tab-content {
  padding: 40px 0;
  display: none;
}
.tab-content .timeline {
  position: relative;
}
.tab-content .timeline::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  left: 5px;
  background-color: var(--mainColor);
}
.tab-content .timeline-item {
  margin-bottom: 30px;
  position: relative;
  padding: 10px 0 0 40px;
}
.tab-content .timeline-item::before {
  content: "";
  position: absolute;
  height: 11px;
  width: 11px;
  background-color: var(--mainColor);
  left: 0;
  top: 16px;
  border-radius: 50%;
}
.tab-content .timeline-item .date {
  display: block;
  color: var(--mainColor);
  font-weight: 400;
  margin: 0 0 10px;
}
.tab-content .timeline-item h4 {
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.tab-content .timeline-item h4 span {
  font-weight: 400;
  font-style: italic;
}
.tab-content .timeline-item ul {
  list-style-type: square;
}
.tab-content .timeline-item ul li {
  margin-bottom: 1rem;
}
.tab-content .timeline-item:last-child {
  margin-bottom: 0;
}
.tab-content.active {
  display: block;
} /*# sourceMappingURL=styles.min.css.map */
