@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  background: #0A090F;
  color: #FFFFFF;
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: #FFFFFF;
}

p {
  line-height: 1.4;
  color: #D1D1D1;
  font-size: 1.0625rem;
}

.container {
  width: 1240px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: calc(0.5 * 20px) calc(1 * 20px);
}
@media screen and (max-width: 480px) {
  .container {
    padding: calc(0.25 * 20px) calc(0.75 * 20px);
  }
}

section {
  padding-top: 140px;
}
@media screen and (max-width: 1024px) {
  section {
    padding-top: 70px;
  }
}

h2 {
  font-size: 3.125rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 40px;
  }
}

h3 {
  font-size: 1.625rem;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 24px;
  }
}

.button {
  background: #00FFAC;
  border-radius: 40px;
  padding: calc(0.35 * 20px) calc(1 * 20px);
  color: #0A090F;
  justify-content: space-between;
  border: solid 5px rgb(0, 0, 0);
  transition: all ease 0.5s;
  text-decoration: none;
  font-size: 1.125rem;
}
.button.icon {
  display: inline-flex;
  align-items: center;
  gap: calc(0.5 * 20px);
  padding-right: calc(0.35 * 20px);
}
.button.icon:after {
  display: inline-block;
  content: "";
  width: 34px;
  height: 34px;
  background: #0A090F;
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
  transition: all ease 0.5s;
}
.button.icon-mail:after {
  background-image: url(../img/email.svg);
}
.button.icon-arrow:after {
  background-image: url(../img/arrow.svg);
  background-size: 9px 9px;
}
.button.icon-arrow:hover:after {
  transform: rotate(45deg);
}
.button:hover {
  border-color: rgba(0, 0, 0, 0.6);
}

.header {
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .logo img {
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 480px) {
  .header .logo img {
    width: 120px;
    height: auto;
  }
}
.header .nav ul {
  list-style: none;
  display: flex;
  gap: calc(2 * 20px);
  font-size: 1.125rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header .nav ul {
    font-size: 1rem;
    gap: calc(1 * 20px);
  }
}
@media screen and (max-width: 480px) {
  .header .nav ul {
    font-size: 0.875rem;
    gap: calc(0.5 * 20px);
  }
}
@media screen and (max-width: 350px) {
  .header .nav ul li {
    display: none;
  }
  .header .nav ul li:last-child {
    display: block;
  }
}
.header .nav ul a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .header .nav ul a.icon-mail {
    font-size: 0;
    padding: 4px;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .header .nav ul a.icon-mail:after {
    width: 28px;
    height: 28px;
  }
}

.footer {
  text-align: center;
  color: #D1D1D1;
  padding-top: calc(5 * 20px);
  padding-bottom: calc(1 * 20px);
}
.footer p {
  font-size: 0.875rem;
}

.hero:before {
  content: "";
  position: absolute;
  top: -200px;
  left: 200px;
  width: 543px;
  height: 956px;
  top: -414.78px;
  left: -342.71px;
  angle: -153.46deg;
  opacity: 1;
  border-radius: 50%;
  background: rgba(0, 255, 172, 0.4);
  filter: blur(150px);
  pointer-events: none;
  z-index: -1;
}
.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: calc(2 * 20px);
  width: 880px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 {
  font-weight: 500;
  font-size: 4.375rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .hero h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }
}
.hero p {
  font-size: 1.25rem;
}

.services .title {
  text-align: center;
  margin-bottom: calc(3 * 20px);
}
.services .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(0.85 * 20px);
}
@media screen and (max-width: 1024px) {
  .services .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .services .services-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.services .services-grid .service {
  border: solid 1px #656572;
  padding: calc(1 * 20px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: calc(0.75 * 20px);
  min-height: 280px;
}
.services .services-grid .service.icon:before {
  display: block;
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 100%;
  border: solid 1px #656572;
  background-position: center;
  background-repeat: no-repeat;
}
.services .services-grid .service.icon-desktop:before {
  background-size: 30px 25px;
  background-image: url(../img/desktop.svg);
}
.services .services-grid .service.icon-consulting:before {
  background-size: 30px 30px;
  background-image: url(../img/consulting.svg);
}
.services .services-grid .service.icon-infra:before {
  background-size: 28px 34px;
  background-image: url(../img/infra.svg);
}
.services .services-grid .service.icon-api:before {
  background-size: 30px 24px;
  background-image: url(../img/api.svg);
}
.services .services-grid .service.icon-data:before {
  background-size: 30px 22px;
  background-image: url(../img/data.svg);
}
.services .services-grid .service.icon-audit:before {
  background-size: 27px 29px;
  background-image: url(../img/audit.svg);
}

.presentation .content {
  display: grid;
  grid-template-columns: 505px auto;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .presentation .content {
    display: flex;
    flex-direction: column-reverse;
  }
}
.presentation .image {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .presentation .image {
    text-align: left;
    margin-bottom: calc(2 * 20px);
  }
  .presentation .image img {
    max-width: 100%;
  }
}
.presentation .title {
  margin-bottom: calc(1 * 20px);
}
.presentation .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(1 * 20px);
}

.cta .content {
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #656572;
  border-radius: 10px;
  text-align: center;
  padding: calc(3.5 * 20px) calc(1 * 20px);
  position: relative;
  overflow: hidden;
}
.cta .content:before {
  content: "";
  position: absolute;
  top: -200px;
  left: 200px;
  width: 324px;
  height: 324px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  filter: blur(150px);
  pointer-events: none;
  z-index: -1;
}
.cta .content:after {
  content: "";
  position: absolute;
  bottom: -300px;
  right: 200px;
  width: 324px;
  height: 324px;
  border-radius: 50%;
  background: rgba(0, 255, 172, 0.4);
  filter: blur(150px);
  pointer-events: none;
  z-index: -1;
}
.cta .inner {
  width: 450px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: calc(1 * 20px);
  justify-content: center;
  align-items: center;
}

.skills {
  display: flex;
  flex-direction: column;
  gap: calc(1 * 20px);
}
.skills ul {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  list-style: none;
  gap: calc(0.75 * 20px);
}
.skills ul::-webkit-scrollbar {
  display: none;
}
.skills .skill {
  border: solid 1px rgba(0, 255, 172, 0.5);
  padding: calc(1 * 20px);
  border-radius: 10px;
  font-size: 1.125rem;
  white-space: nowrap;
  background: linear-gradient(180deg, rgba(10, 9, 15, 0) 30.29%, rgba(0, 255, 172, 0.08) 100%);
}
.skills .anim-right ul {
  transform: scaleX(-1); /* inverse horizontalement */
}
.skills .anim-right ul li {
  transform: scaleX(-1); /* remettre les textes à l’endroit */
}

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