@charset "UTF-8";
h1 {
  font-size: 72px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 22px;
}

.h5 {
  line-height: 1.5;
}

p {
  font-size: 14px;
  line-height: 1.8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-size: cover;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: #ABC5B0;
}
a.btn--bd {
  transition: all 300ms;
  padding: 10px 20px;
  border: 1px solid #97a6f2;
  border-radius: 20px;
  font-weight: 600;
  margin-top: 30px;
  display: inline-block;
}

body {
  background-color: #13121c;
  color: #13121c;
  font-family: "Inter", sans-serif;
  transition: all 1s ease-in;
  scroll-behavior: smooth;
  display: block;
  cursor: pointer;
  --p: 0px calc(100% - 50px) calc(100% - 50px) 0px round 85px;
}
body #bg-grad {
  z-index: -10;
  height: 100vh;
  width: 100vw;
  position: fixed;
  pointer-events: none;
  /*background: linear-gradient(180deg, #8798c3 0%, #8d98c0 12%, #9497bd 24%,
  #9b96b9 36%, #a296b5 48%,#aa97b0 60%,#b49aa8 72%,#c0a09f 84%,#cda894 92%,
  #dab18a 96%,#e7ad7b 100%);*/
  /*background: linear-gradient(180deg,
  #8aaabd 0%,
  #80a3b7 12%,
  #769cb1 24%,
  #6c95ab 36%,
  #628ea5 48%,
  #58879f 60%,
  #4e8099 72%,
  #447993 84%,
  #3a728d 92%,
  #306b87 96%,
  #266481 100%
  );
  clip-path: rect(0px calc(100% - 50px) calc(100% - 50px) 0px round 85px);
  top: calc((50px / 2));
  left: calc((50px / 2) - 8px ); */
  background: #f5f5ef;
}
body #bg-grad::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle 50vw at 100% 0%, rgba(109, 132, 247, 0.445), transparent 60%);
  filter: blur(60px);
}

.logo-wrapper {
  position: relative;
  max-width: 220px;
  min-width: 80px;
  width: 100%;
  height: auto;
  min-height: 40px;
}

.logo-bd {
  position: absolute;
  width: 100%;
  height: auto;
  /* Rende la transizione fluida se l'animazione non viene gestita solo da GSAP */
  transition: opacity 0.3s ease;
}

/* Di base il logo bianco è invisibile */
.logo--pos {
  opacity: 0;
}

/* Hamburger */
#hamburger {
  border: none;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 20px;
  cursor: pointer;
  padding: 0;
}
#hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #97a6f2;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Stato attivo del burger */
#hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

#hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #97a6f2;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
#overlay.is-active {
  display: flex;
}
#overlay nav a {
  font-size: 1.2rem;
  margin: 1rem 0;
  text-decoration: none;
  color: #f5f5ef;
}

#overlay-close {
  position: absolute;
  top: 1rem;
  right: 40px;
  font-size: 2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

.overlay-languages button {
  margin: 0 0.5rem;
}

/* CUSTOM CURSOR */
/* nascondi cursore nativo */
#about {
  cursor: none;
}

/* CUSTOM CURSOR BASE = QUADRATO */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  background: #f5f5ef;
  border-radius: 4px;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-radius 0.25s ease, transform 0.15s ease;
}

/* STATO LINK → TONDO */
.custom-cursor.is-link {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.9);
}

/* STATO ABOUT (quello tuo attuale) */
.custom-cursor.is-about {
  transform: translate(-50%, -50%) scale(1.2);
}

/* STATO QUADRATO GRANDE */
.custom-cursor.is-square {
  width: 80px;
  height: 80px;
  border-radius: 20px 0 20px;
  background: #97a6f2;
  mix-blend-mode: normal;
}

button {
  border: none;
  background-color: transparent;
  color: #97a6f2;
  cursor: pointer;
  transition: all 300ms;
}
button:focus-visible, button:focus {
  outline: none;
  background-color: #13121c;
  transition: all 300ms;
}

section {
  position: relative;
  /*border: 1px solid green;*/
}

header {
  position: sticky;
  top: 0px;
  padding: 30px 40px 20px 40px !important;
  z-index: 100;
  background-color: transparent;
  transition: all 300ms ease;
  color: #13121c;
}
header.is-scrolled {
  background: #f5f5ef;
  transition: all 300ms ease;
  border-bottom: 1px solid #13121c;
}
header .btn-lang {
  padding: 10px;
  font-size: 14px;
  border-radius: 10px;
  aspect-ratio: 1/1;
}
header .btn-lang:focus, header .btn-lang:active {
  color: #fff;
}
header #main-menu {
  position: absolute;
  left: 0;
  text-align: center;
  align-items: center;
  gap: 30px;
  font-size: 14px;
}
header #main-menu a {
  cursor: pointer;
  text-decoration: none;
}
header #main-menu a:hover {
  color: #97a6f2;
}

.container-fluid {
  padding: 0 40px;
}

.wrapper {
  margin-top: 15vh;
  padding: 0 8rem;
}
.wrapper #section2 h2 {
  font-weight: 200;
}
.wrapper #section2 #tab-skills {
  color: #13121c;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 20px;
}
.wrapper #section2 #tab-skills h3 {
  font-family: math;
}

footer {
  margin: 100px 0 0 0;
  padding-bottom: 20px !important;
  position: absolute;
  z-index: -100;
  min-height: 30vh;
  color: #f5f5ef;
}
footer p {
  font-size: 12px !important;
  margin-bottom: 0;
}
footer .wrapper-footer {
  padding: 30px;
  margin-bottom: 40px;
}
footer .wrapper-footer .contact-block {
  text-align: center;
  margin: -50px 0 50px 0;
}
footer .wrapper-footer .contact-block .title {
  display: inline;
  padding: 15px 30px;
  line-height: 2;
  color: #97a6f2;
  font-weight: 200;
}
footer .business-details {
  opacity: 0.5;
  margin-bottom: 10px;
}
footer .info-footer {
  font-size: 14px;
}
footer .business-details, footer .info-footer {
  text-align: center;
  justify-content: center;
}

.highlight-txt {
  background: linear-gradient(45deg, #feb070 0%, #97a6f2 100%);
  color: #f5f5ef;
  font-weight: 600;
  border-radius: 20px;
  padding: 20px 40px;
  margin: 30px auto;
}

/*.focus-txt {
  border-left: 1px solid $dark;
  padding-left:20px;
  margin-bottom: 30px;
}*/
.page-about h2, .page-solutions h2 {
  margin-bottom: 30px;
}

.page-solutions #bg-grad {
  background-color: #f5f5ef;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}
.page-solutions .card-solutions {
  margin-top: 100px;
}
.page-solutions .card-solutions .card-body {
  background: #f5e9e2;
  min-height: 480px;
  transition: all 300ms;
}
.page-solutions .card-solutions .card-body:hover {
  background-color: #97a6f2;
  color: #13121c;
  transition: all 300ms;
  border-radius: 20px 0;
}
.page-solutions .card-solutions .card-body .btn-discover {
  bottom: 20px;
  position: absolute;
}
.page-solutions .card-solutions .card-title {
  font-family: math;
  margin-bottom: 50px;
}
.page-solutions .card-solutions ul {
  list-style: none;
  padding: 0;
}

.home section .title {
  color: #f5f5ef;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
}
.home section#hero {
  height: 50vh;
  margin-bottom: 140px;
}
.home section#hero h1 {
  margin-bottom: 40px;
  line-height: 1;
}
.home section#hero h1 span {
  color: #97a6f2;
  font-weight: 300;
  font-family: math;
}
.home section#hero h4 {
  line-height: 1.4;
}
.home section#hero .metaball-stage {
  width: auto;
  height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: 60px 0;
  background: linear-gradient(45deg, #feb070 0%, #97a6f2 100%);
  aspect-ratio: 1/1;
  filter: blur(5px);
}
.home section#hero .metaball-stage .gooey {
  position: absolute;
  inset: 0;
}
.home section#hero .metaball-stage .gooey .shape {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #f5f5ef;
  border-radius: 6px;
  transform-origin: center center;
  will-change: transform, border-radius;
}
.home section#hero .metaball-stage .gooey .shape-1 {
  left: 60px;
  top: 80px;
}
.home section#hero .metaball-stage .gooey .shape-2 {
  left: 80px;
  top: 120px;
}
.home section#skills-details--home {
  border-radius: 20px;
  background-color: #13121c;
  padding: 50px;
  /*.toggle-btn {
    color: $light;
  }*/
}
.home section#skills-details--home .btn--bd {
  color: #f5f5ef;
}
.home section#skills-details--home .btn--bd:hover {
  color: #ABC5B0;
}
.home section#skills-details--home .cards-mask {
  overflow: hidden;
  transition: max-height 0.7s ease;
  position: relative;
  padding-top: 40px;
}
.home section#skills-details--home .cards-mask::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, rgba(53, 54, 100, 0), #13121c);
  z-index: 15;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.home section#skills-details--home.open .cards-mask {
  max-height: 1000px;
}
.home section#skills-details--home.open .cards-mask::after {
  opacity: 0;
}
.home section#skills-details--home.open .btn-page {
  margin-top: 60px;
}
.home section#skills-details--home.open .btn-page a {
  color: #f5f5ef;
}
.home section#skills-details--home .row {
  transition: all 0.4s ease;
}
.home section#skills-details--home .row:hover .card-solutions {
  transform: translateY(40px);
  opacity: 0.5;
}
.home section#skills-details--home .row:hover .card-solutions:hover {
  transform: translateY(-20px) scale(1.03);
  opacity: 1;
  z-index: 2;
}
.home section#skills-details--home .card-solutions {
  z-index: 10;
  transform: translateY(60px);
  opacity: 0.7;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease, opacity 0.4s ease;
}
.home section#skills-details--home .card-solutions:hover {
  transition: all 300ms;
  transform: translateY(0);
}
.home section#skills-details--home .card-solutions .card-body {
  background: #97a6f2;
  mix-blend-mode: multiply;
  min-height: 480px;
  transition: all 300ms;
}
.home section#skills-details--home .card-solutions .card-body:hover {
  background-color: #feb070;
  color: #13121c;
  transition: all 300ms;
  border-radius: 20px 0;
}
.home section#skills-details--home .card-solutions .card-title {
  font-family: math;
  margin-bottom: 50px;
}
.home section#skills-details--home .card-solutions ul {
  list-style: none;
  padding: 0;
}
.home section#value-prop {
  margin: 240px auto;
}
.home section#value-prop span {
  font-family: math;
}
.home section#value-prop .skills-words {
  justify-content: center;
  display: flex;
  margin-bottom: 50px;
}
.home section#value-prop .skills-words > * {
  text-align: center;
}
.home section#value-prop .skills-words .h3 {
  background-color: #97a6f2;
  color: white;
  font-weight: 600;
  border: 1px solid #97a6f2;
  border-radius: 20px;
  padding: 10px 20px;
}
.home section#about {
  --border-opacity: 1;
  --border-color: rgba(250, 244, 240, var(--border-opacity));
}
.home section#about .custom-table {
  position: relative;
}
.home section#about .custom-table .row {
  margin: 0;
  position: relative;
}
.home section#about .custom-table .row + .row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: --border-color;
}
.home section#about .custom-table .cell {
  padding: 20px;
  position: relative;
}
.home section#about .custom-table .cell-sx::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: --border-color;
}
.home section#about .custom-table .cell-dx::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: --border-color;
}
.home section#about .custom-table .text-col {
  flex: 2;
  color: #f5f5ef;
}
.home section#about .custom-table .square {
  aspect-ratio: 1/1;
  border-radius: 40px 0 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5ef;
  transform: scale(0.85);
  opacity: 0;
}
.home section#about .custom-table .cell-dx {
  opacity: 0.2;
}
.home section#about .custom-table .btn-discover {
  color: #feb070;
}
/* On screens that are 992px or less, set the background color to blue */
@media screen and (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 60px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  p {
    font-size: 16px;
  }

  a.btn--bd {
    margin-top: 0;
  }

  .wrapper {
    margin-top: 6vh;
    padding: 0 2rem;
  }

  .logo-bd {
    max-width: 200px;
  }

  .overlay-nav button {
    color: #13121c;
  }

  .home section#hero {
    height: auto;
  }
  .home section#skills-details--home {
    padding: 20px;
  }
  .home section#skills-details--home .card-solutions {
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 20px;
  }
  .home section#skills-details--home .card-solutions .card-body {
    min-height: 290px;
  }
  .home section#value-prop {
    margin: 120px auto 240px;
  }

  .page-solutions .card-solutions {
    margin-top: 20px;
  }
  .page-solutions .card-solutions .card-body {
    min-height: 300px;
  }
  .page-solutions .card-solutions .card-body .btn-discover {
    bottom: unset;
  }
}

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