@charset "UTF-8";
/*!
 * © 2024. antoine.website
 */
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200..1000;1,200..1000&display=swap");
header {
  background-image: url(../images/background.jpg);
  height: calc(100vh - 190px);
  background-size: auto 100%;
  background-position: center;
  position: relative;
  padding: 50px 95px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 35px;
}
header .working {
  background-color: #0d0c21;
  border: 2px solid #0f2b46;
  padding: 10px 10px 10px 28px;
  border-radius: 12px;
  position: relative;
  margin: 10px -7px 30px;
  display: inline-block;
}
header .working a {
  color: #fff;
  text-decoration: none;
}
header .working::before, header .working::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #037171;
  border-radius: 10px;
  top: 18px;
  left: 13px;
}
header .working::after {
  animation: pulse 2s ease 0s infinite normal forwards;
}
@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.2);
  }
  80% {
    opacity: 0.5;
    transform: scale(1.8);
  }
  100% {
    opacity: 0;
    transform: scale(2.6);
  }
}
header .working:hover {
  transform: scale(1.1);
}
header * {
  z-index: 1;
}
header h3 {
  color: rgb(1, 169, 244);
  font-family: "Poppins", sans-serif;
  margin: 0;
  text-transform: uppercase;
  font-size: small;
}
header h1 {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-weight: 600;
  margin: 0 0 30px;
}
header .title {
  color: #fff;
  font-family: "Mulish", sans-serif;
  font-size: 40px;
  font-weight: 600;
  cursor: context-menu;
}
header:after {
  content: "";
  background: linear-gradient(rgba(255, 255, 255, 0), #0c0c21 90%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
header section {
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 95px;
  text-align: left;
}

footer {
  font-family: "Mulish", sans-serif;
  color: #b7b7bd;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
}
footer a {
  color: #b7b7bd;
  text-decoration: underline;
}

.bokeh {
  height: -webkit-fill-available;
  position: absolute;
  top: 100vh;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  filter: blur(50px);
  transform: translateZ(0);
  backface-visibility: hidden;
  z-index: -1;
  opacity: 0.2;
}

.bokeh circle {
  animation: rotate 50s linear infinite;
  fill: #124;
  opacity: 0.43;
  transform-origin: 50%;
}
.bokeh circle:nth-child(2n) {
  fill: #ff5cbd;
  transform-origin: 20% 110%;
  animation-delay: -25s;
  animation-duration: 34.43s;
  opacity: 0.2;
}
.bokeh circle:nth-child(3n) {
  opacity: 0.65;
  fill: #469;
  transform-origin: 70% 30%;
  animation-delay: -12.5s;
  animation-duration: 66.665s;
}
.bokeh circle:nth-child(4n) {
  fill: #c63;
  transform-origin: 110% 70%;
  animation-delay: -16.6666666667s;
  animation-duration: 39.833s;
}
.bokeh circle:nth-child(5n) {
  fill: #266;
  transform-origin: 30% 40%;
}
.bokeh circle:nth-child(6n) {
  fill: #124;
  transform-origin: -10% 80%;
  animation-delay: -65s;
}
.bokeh circle:nth-child(7n) {
  fill: #ff5cbd;
  transform-origin: 70% -10%;
}
.bokeh circle:nth-child(8n) {
  fill: #c63;
  transform-origin: -30% 50%;
  animation-delay: -20s;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.effect {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Mulish", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  border-radius: 45px;
  border: 2px solid rgba(255, 255, 255, 0.05);
  background-color: #0c0c21;
  padding: 0;
  z-index: 1;
  margin: 35px;
  position: relative;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: transform 0.3s;
}

a {
  text-decoration: none;
}

button, .button {
  font-size: 17px;
  font-family: "Mulish", sans-serif;
  color: black;
  background-color: #fff;
  border: none;
  border-radius: 9px;
  padding: 11px;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
button:hover, .button:hover {
  transform: scale(1.05);
  animation: bounce 0.6s forwards;
  background-color: #0177a9;
  color: #fff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
button.inverse, .button.inverse {
  background-color: #051638;
  color: #fff;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

/* width */
::-webkit-scrollbar {
  width: 12px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #051638;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border: 4px solid #051638;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.navigations {
  position: fixed;
  top: 100px;
  bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
  text-align: right;
  right: 36px;
  font-size: 22px;
  padding-right: 20px;
}
.navigations ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0 10px 10px;
  backdrop-filter: blur(1px);
  width: 100%;
}
.navigations ul li {
  list-style: none;
  position: relative;
  cursor: pointer;
}
.navigations ul li a {
  color: #b7b7bd;
  text-decoration: none;
}
.navigations ul li:after {
  content: " ";
  position: absolute;
  height: 2px;
  width: 10px;
  background-color: #b7b7bd;
  top: 50%;
  right: -20px;
  transition-duration: 0.3s;
  bottom: 0;
  display: flex;
  align-items: center;
}
.navigations ul li:hover, .navigations ul li.active {
  transition: transform 0.3s;
  transform: translateX(-10px) scale(1.1);
  padding-right: 10px;
}
.navigations ul li:hover a, .navigations ul li.active a {
  color: #fff;
}
.navigations ul li:hover:after, .navigations ul li.active:after {
  width: 20px;
  background-color: #fff;
  transition: width 0.3s;
}

.container {
  display: flex;
  align-content: center;
  margin: auto;
  padding: 20px;
  max-width: 1000px;
  flex-direction: column;
  flex-wrap: nowrap;
}

.projects {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-evenly;
  align-content: center;
}
.projects > div {
  background-color: rgba(255, 255, 255, 0.95);
  color: #051638;
  border-radius: 10px;
  text-align: left;
  border: 2px solid #e0e0e0;
  position: relative;
  padding: 26px 26px 26px 62px;
  flex: 1 1 calc(50% - 15px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}
.projects > div .title span {
  font-style: italic;
  font-size: small;
  color: #a7a7a7;
}
.projects > div img {
  width: 62px;
  border-radius: 10px;
  background-color: #fff;
  position: absolute;
  left: -20px;
  border: 2px solid #e0e0e0;
}
.projects > div p {
  padding: 15px 0;
}
.projects > div .tags span {
  color: rgb(1, 169, 244);
  text-decoration: none;
}

.box {
  border-radius: 20px;
  background: linear-gradient(237deg, rgba(104, 64, 152, 0.6901960784) 2%, #0a2a55 20.94%, #051638 50.29%, #041130 90%);
  border: 2px solid #3a5aa3;
  transition: transform 0.2s;
  box-shadow: 0 20px 60px 10px rgba(0, 0, 0, 0.4235294118);
}
.box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px -10px rgba(69, 143, 255, 0.7019607843);
}

.tools {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 3rem;
  justify-content: center;
}
.tools li {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin: 0 10px;
  color: #b7b7bd;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  gap: 12px;
  transition: transform 0.2s;
}
.tools li:hover {
  transform: scale(1.3);
}
.tools li img {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

section {
  text-align: center;
  padding: 30px 0;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
section > h3 {
  font-family: "Mulish";
  margin: 0;
  text-transform: uppercase;
  font-size: 15px;
  color: rgb(1, 169, 244);
}
section > h1 {
  font-weight: unset;
  font-size: 41px;
  margin: 0 0 28px;
  padding-bottom: 30px;
}
section > p {
  color: #b7b7bd;
  font-size: 20px;
  padding-bottom: 60px;
}

#socials > div {
  border-radius: 10px;
  padding: 100px 200px;
  background: linear-gradient(237deg, rgba(104, 64, 152, 0.6901960784) 2%, #0a2a55 20.94%, #051638 50.29%, #041130 90%);
  border: 3px solid rgb(1, 169, 244);
}
#socials ul {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 75px 0;
  flex-wrap: wrap;
}
#socials ul li {
  list-style: none;
}
#socials ul li a {
  padding: 30px 20px 20px;
  border-radius: 10px;
  border: 1px solid gray;
  filter: grayscale(1);
  opacity: 0.3;
  width: 150px;
  height: 150px;
  transform: skew(10deg, 10deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  color: #051638;
  transition: opacity 0.3s, transform 0.3s, filter 0.3s, margin 0.3s;
}
#socials ul li a p {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  opacity: 0;
  height: 0;
  display: none;
}
#socials ul li a img {
  border-radius: 10px;
  object-fit: contain;
  width: 64px;
  height: 64px;
}
#socials ul li a img.invert {
  filter: invert(1);
}
#socials ul li a:hover {
  background-color: rgb(255, 255, 255);
  filter: grayscale(0);
  opacity: 1;
  transform: skewX(0) scale(1.1);
  margin: 0 20px;
  border-color: white;
  animation: bounce 0.6s forwards;
}
#socials ul li a:hover img {
  transform: scale(1.3);
  filter: invert(0) !important;
}
#socials ul li a:hover p {
  display: block;
  opacity: 1;
  height: unset;
  font-size: 11px;
}
@keyframes bounce {
  0% {
    transform: skewX(0) scale(1);
  }
  50% {
    transform: skewX(0) scale(1.2);
  }
}
@keyframes lowbounce {
  0% {
    transform: skewX(0) scale(1);
  }
  50% {
    transform: skewX(0) scale(1.1);
  }
}

.gauges {
  display: flex;
  justify-content: center;
  padding: 50px 0 100px;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0));
  border-radius: 100px;
  flex-direction: column;
  font-weight: 400;
  position: relative;
  transform: scale(0.85);
}
.countdown span {
  z-index: 2;
}
.countdown h2 {
  margin: 0;
  font-size: 65px;
  font-weight: 500;
  line-height: 1;
  z-index: 2;
}
.countdown p {
  margin: 0;
  z-index: 2;
}
.countdown .gauge {
  position: absolute;
  --percent: 50;
  --deg: calc(var(--percent) * 1.8deg);
  --thickness: 5px;
  width: 100%;
  aspect-ratio: 1;
  z-index: 1;
  background-image: radial-gradient(closest-side, #0d0c21 0%, #0d0c21 calc(100% - var(--thickness)), transparent calc(100% - var(--thickness))), conic-gradient(from 28deg, #d4563a 0deg var(--deg), transparent var(--deg) 180deg), conic-gradient(from -119deg, white 0deg 180deg, transparent 180deg);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.top {
  position: absolute;
  --fade: 100px;
  height: 100%;
  right: 0;
  display: flex;
  flex-direction: column-reverse;
  -webkit-mask: linear-gradient(rgba(0, 0, 0, 0) 100vh, #000 calc(100vh + var(--fade)));
}
.top .button {
  position: sticky;
  bottom: 20px;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: fit-content;
  justify-content: center;
  margin: auto;
}
.services > div {
  color: #051638;
  padding: 40px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  text-align: left;
  border: 2px solid #e0e0e0;
  max-width: 350px;
}
.services > div img {
  width: 64px;
}
.services > div:nth-child(1) {
  position: relative;
}
.services > div:nth-child(1):after {
  content: " ";
  color: white;
  width: 55px;
  height: 55px;
  display: flex;
  border-radius: 50%;
  background: #051638;
  position: absolute;
  right: -34px;
  bottom: 23px;
  z-index: 1;
  justify-content: center;
  align-items: center;
}
.services > div p {
  padding: 15px 0;
}
.services > div h3 {
  padding: 10px 0 20px;
}

.compare {
  display: flex;
  flex-direction: column;
  padding: 20px 30px;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.compare li {
  list-style: none;
  position: relative;
}
.compare li:after {
  content: " ";
  position: absolute;
  width: 20px;
  height: 20px;
  background-size: contain;
  left: -30px;
  top: 0;
  display: block;
}
.compare li.success:after {
  background-image: url("../images/icon/success.svg");
}
.compare li.error:after {
  background-image: url(../images/icon/times.svg);
}

.wheel {
  display: grid;
  gap: 10px;
  padding: 0 0 50px;
  grid-template-columns: 1fr 1fr;
  width: 500px;
  margin: auto;
  height: 500px;
}
.wheel li {
  list-style: none;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.wheel li:hover {
  transform: scale(1.1);
  z-index: 10;
}
.wheel li:nth-child(1) {
  border-top-left-radius: 20px;
  background-color: #0a2a55;
}
.wheel li:nth-child(2) {
  border-top-right-radius: 20px;
  background-color: #051638;
}
.wheel li:nth-child(3) {
  border-bottom-left-radius: 20px;
  background-color: #051638;
}
.wheel li:nth-child(4) {
  border-bottom-right-radius: 20px;
  background-color: #0a2a55;
}
.wheel li p {
  font-size: 12px;
  width: 70%;
}
.wheel li b {
  font-size: 15px;
  width: 70%;
}

#skills .quotes {
  display: flex;
  gap: 40px;
  padding: 50px 0;
}
#skills .quotes > div {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
#skills .quotes > div .author {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
#skills .quotes > div .author img {
  width: 70px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
}
#skills .quotes > div p {
  font-size: 20px;
  color: #b7b7bd;
}
#skills .quotes > div p span {
  font-size: 40px;
  line-height: 0;
  position: relative;
  bottom: -10px;
}
#skills .more {
  display: flex;
  flex-direction: column;
}
#skills .more i {
  font-size: 11px;
}
#skills .more .button {
  width: 140px;
  margin: 12px auto;
}

.timeline {
  width: 3px;
  background-color: #b7b7bd;
  margin: auto;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 100px;
}
.timeline li {
  transition: 0.3s;
  margin: 0 35px;
  position: relative;
  list-style: none;
  padding: 20px 36px;
  border-radius: 10px;
  color: gray;
  border: 2px solid gray;
  width: 250px;
}
.timeline li:nth-child(2n) {
  margin-top: 100px;
  position: relative;
  right: -50%;
}
.timeline li p {
  font-size: 11px;
}
.timeline li:before {
  content: " ";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #b7b7bd;
  border-radius: 50%;
  transform: translateY(50%) translateX(-50%);
  left: -36px;
}
.timeline li.active {
  background-color: #fff;
  border: 2px solid #e0e0e0;
  color: #051638;
}
.timeline li.active:before {
  background-color: white;
  transform: scale(1.5);
  left: -46px;
}
.timeline li.active:last-child {
  border: 2px dashed #e0e0e0;
  color: white;
  background: transparent;
}

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