@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --white: #ecf0f1;
  --dark: #2c3e50;
  --grey: #b0b8bf;
  --rose: #f26d85;
  --red: #e74c3c;
  --orange: #ffaa33;
  --yellow: #eee657;
  --green: #37be6e;
  --cyan: #46b39d;
  --cyan-dark: #324d5c;
  --blue: #3498db;
  --blue-dark: #2980b9;
}

.alert {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  color: var(--red);
  padding: 15px;
  border: 2px solid var(--red);
  border-radius: 15px;
  font-size: 3rem;
  z-index: 9999;
}

nav.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  padding: 5px;
  background: var(--blue-dark);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  border-radius: 0 0 50px 50px;
}
nav.header .logo {
  position: absolute;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: bold;
  top: 5px;
  left: 5vw;
  color: var(--white);
}
nav.header ul {
  list-style: none;
  display: flex;
  align-items: center;
}
nav.header ul a {
  color: var(--white);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}
nav.header ul a:hover {
  color: var(--dark);
}
nav.header ul a:hover li {
  background: var(--white);
  transform: scale(1.1);
}
nav.header ul a:active {
  transform: scale(0.9);
}
nav.header ul a li {
  padding: 5px 15px;
  margin: 0 5px;
  background: var(--blue);
  border-radius: 5px;
  box-shadow: 5px 2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.2s ease-in-out;
}

.about {
  padding-top: 200px;
}
.about .card {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.about .card img {
  width: 350px;
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 15px;
  margin: 50px;
}
.about .card .text {
  height: 350px;
  background: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin: 50px;
}
.about .card .text h1 {
  width: 400px;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  background: var(--red);
  color: #fff;
  border-radius: 15px;
  transform: translate(-15px, -15px);
}
.about .card .text p {
  margin: 25px 25px 75px 50px;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
}

.skills {
  margin-top: 150px;
}
.skills .card h1 {
  background: var(--orange);
}
.skills .card h2 {
  font-size: 30px;
  margin: 15px 50px;
}
.skills .card img {
  width: 100px;
  height: 100px;
  margin: 15px 5px;
}
.skills .card .dev,
.skills .card .gfx {
  margin: 0 50px;
}
.skills .card .gfx {
  padding-bottom: 25px;
}

.timeline {
  margin-top: 150px;
}
.timeline .card h1 {
  background: var(--green);
}
.timeline .card .line {
  float: left;
  background: var(--dark);
  width: 7px;
  height: 800px;
  border-radius: 10px;
  margin-left: 9%;
  margin-top: 5%;
}
.timeline .card .line i {
  font-size: 15px;
  transform: translate(-4px);
  margin-top: 115px;
}
.timeline .card .right {
  width: 60%;
  margin: 0 auto;
  padding-bottom: 25px;
}
.timeline .card .gap {
  width: 45%;
  transform: translateX(-16.5%);
}
.timeline .card h2 {
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
  background: var(--cyan-dark);
  width: fit-content;
  padding: 5px 15px;
  color: #fff;
  border-radius: 10px;
  transform: translateY(20px);
}
.timeline .card p {
  margin: 0 0 0 20px;
  padding: 0 10px 10px;
  border-radius: 0 10px 10px;
  background: var(--white);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
}
.timeline .card span {
  color: var(--grey);
  font-style: italic;
  font-size: 20px;
  position: absolute;
  transform: translate(-75px, 25px);
}

.contact {
  margin-top: 150px;
}
.contact .card h1 {
  background: var(--blue);
}
.contact .card p {
  text-align: center;
  font-size: 20px;
  color: var(--cyan-dark);
  padding: 15px;
}
.contact .card .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 25px;
  padding: 0 0 25px 0;
}
.contact .card img {
  width: 100px;
  height: 100px;
  transition: 0.5s;
  transform: translateY(250px);
}
.contact .card .socials {
  width: 225px;
  height: 225px;
  padding: 25px;
  margin: 15px;
  border-radius: 15px;
  background: var(--cyan-dark);
  overflow: hidden;
  transition: 0.5s;
  display: flex;
  text-align: center;
  flex-direction: column;
  color: var(--grey);
  font-weight: 300;
}
.contact .card .socials h2 {
  text-transform: uppercase;
  color: #fff;
}
.contact .card .socials:hover img {
  transition: 0.5s;
  transform: translateY(15px);
}
.contact .card .socials:hover::after {
  opacity: 0;
  visibility: hidden;
}
.contact .card .socials::after {
  content: url("/src/img/contact/link.svg");
  position: absolute;
  width: 75px;
  height: 75px;
  transform: translate(50px, 90px);
  transition: 0.2s;
}

.graph {
  padding-top: 200px;
}
.graph .card {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.graph .card i {
  font-size: 250px;
  width: 350px;
  height: 350px;
  color: #fff;
  border-radius: 15px;
  background: var(--cyan-dark);
  padding: 15px;
  margin: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}
.graph .card .text {
  height: 350px;
  width: 100%;
  background: #fff;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin: 50px;
}
.graph .card .text h1 {
  width: 400px;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 0;
  background: var(--red);
  color: #fff;
  border-radius: 15px;
  transform: translate(-15px, -15px);
}
.graph .card .text p {
  margin: 50px 25px 75px 50px;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
}

.gallery {
  margin-top: 150px;
}
.gallery .card h1 {
  background: var(--orange);
}
.gallery .card .modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
  backdrop-filter: blur(2px);
}
.gallery .card .modal a {
  cursor: pointer;
  position: absolute;
  top: 100px;
  right: 25px;
  font-size: 25px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}
.gallery .card .modal img {
  margin-top: 100px;
  max-height: 70vh;
  max-width: 85vw;
  border-radius: 15px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  background: var(--white);
}
.gallery .card .modal p {
  position: absolute;
  bottom: 25px;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
}
.gallery .card .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.gallery .card .list .element {
  margin: 15px;
  padding: 15px;
  width: auto;
  height: 500px;
  border-radius: 15px;
  background: var(--white);
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  overflow: hidden;
}
.gallery .card .list .element a {
  color: var(--dark);
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.gallery .card .list .element a h2 {
  margin-top: 5px;
}
.gallery .card .list .element a:hover {
  font-size: 18px;
}
.gallery .card .list .element .desc {
  position: absolute;
  margin: 50px;
  text-align: left;
  opacity: 0;
  transition: 0.2s ease-in-out;
  font-size: 18px;
}
.gallery .card .list .element .desc i {
  margin-right: 10px;
}
.gallery .card .list .element .desc p {
  margin: 5px 0 20px 0;
  font-style: italic;
}
.gallery .card .list .element .desc.active {
  opacity: 1;
}
.gallery .card .list .element img {
  height: 90%;
  object-fit: cover;
  border-radius: 15px;
  background: #fff;
  transition: 0.2s ease-in-out;
}
.gallery .card .list .element img.active {
  filter: blur(5px) opacity(0.1) contrast(75%) brightness(150%);
}

.tarifs {
  margin-top: 150px;
}
.tarifs .card h1 {
  background: var(--green);
}
.tarifs .card p {
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}
.tarifs .card .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.tarifs .card .list .element {
  width: 400px;
  margin: 0 auto 40px auto;
  background: var(--white);
  border-radius: 15px;
}
.tarifs .card .list .element h2 {
  font-size: 30px;
  width: 200px;
  text-align: center;
  padding: 5px 0;
  border-radius: 10px;
  background: var(--dark);
  color: #fff;
  transform: translate(-15px, -15px);
}
.tarifs .card .list .element ul {
  margin-bottom: 15px;
  list-style: none;
  font-size: 18px;
  padding: 0;
}
.tarifs .card .list .element ul li {
  margin: 5px 25px;
  background-image: linear-gradient(
    90deg,
    var(--dark) 10%,
    rgba(0, 0, 0, 0) 20%
  );
  background-position: 0 18px;
  background-size: 10px 1px;
  background-repeat: repeat-x;
  height: 25px;
}
.tarifs .card .list .element ul li span {
  background: var(--white);
}
.tarifs .card .list .element ul li span:first-child {
  padding-right: 5px;
}
.tarifs .card .list .element ul li span:last-child {
  float: right;
  padding-left: 5px;
}

.creations {
  margin-top: 150px;
}
.creations .card {
  margin: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}
.creations .card h2 {
  width: 500px;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 0;
  background: var(--orange);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 50px;
  transform: translate(-15px, -15px);
}
.creations .card .element {
  padding: 50px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.creations .card .element img {
  width: 350px;
  height: 350px;
  border-radius: 15px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.creations .card .element .text {
  width: 70%;
  height: 350px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.creations .card .element .text h1 {
  text-transform: uppercase;
  font-size: 45px;
  color: #fff;
  background: var(--cyan);
  width: 400px;
  padding: 10px 0;
  text-align: center;
  border-radius: 15px;
  transform: translate(-15px, -15px);
}
.creations .card .element .text p {
  font-size: 20px;
  padding: 75px;
}
.creations .card .element .text p a {
  background: var(--cyan);
  color: #fff;
  border-radius: 5px;
  padding: 2px 5px;
  line-height: 40px;
  transition: 0.2s;
}
.creations .card .element .text p a:hover {
  background: var(--cyan-dark);
  padding: 5px;
}
.creations .card .element .text p a:active {
  padding: 2px 5px;
}
.creations .card .second .text h1 {
  background: var(--red);
}
.creations .card .second .text p {
  padding: 75px 75px 25px 75px;
}
.creations .card .second .text ul {
  padding: 0 75px 75px 75px;
}
.creations .card .second .text ul li {
  list-style: none;
}
.creations .card .second .text ul li::before {
  content: "- ";
}
.creations .card .third .text h1 {
  background: var(--green);
}
.creations .card .third .text p a {
  background: var(--green);
}

.school {
  margin-top: 150px;
  margin-bottom: 100px;
}
.school .card {
  margin: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}
.school .card h2 {
  width: 500px;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 0;
  background: var(--blue);
  color: #fff;
  border-radius: 15px;
  margin-bottom: 50px;
  transform: translate(-15px, -15px);
}

* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 150vh;
  background: var(--white);
  color: var(--dark);
}

img {
  max-width: 100%;
  max-height: 100%;
}

a {
  text-decoration: none;
  color: var(--blue);
}

section {
  width: 100%;
  max-width: 75vw;
  margin: auto;
}

i.arrow {
  position: absolute;
  left: calc(50vw - 50px);
  transform: translateY(-10px);
  font-size: 50px;
  color: #fff;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.scrolltop {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 25px;
  right: 25px;
  font-size: 25px;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #fff;
  transition: 0.2s;
}
.scrolltop.active {
  visibility: visible;
  opacity: 1;
}
.scrolltop:hover {
  transform: scale(1.1);
}
.scrolltop:active {
  transform: scale(0.9);
}

.card {
  margin: auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.1);
}
.card h1 {
  width: 400px;
  font-size: 45px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
  transform: translate(-15px, -15px);
}

footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 75px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  height: 50px;
  background: var(--dark);
  color: #fff;
}
footer span {
  margin: 0 3px;
  transition: 0.2s;
}
footer span:hover {
  font-weight: bold;
  margin: 0 5px;
}
footer i {
  margin: 0 5px;
}
footer i.fa-heart {
  color: var(--red);
}

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