@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");
@import url("https://fonts.googleapis.com/css2?family=Basic&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dela+Gothic+One&display=swap");

* {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image: linear-gradient(
    100deg,
    #0f2b21 0%,
    #0e0e0e 50%,
    #19a574 450%
  );
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
}

/************************** Header ********************************/
header {
  width: 100%;
  position: absolute;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 150px;
  background-color: transparent;
  box-shadow: none;
}
.logo {
  text-decoration: none;
  color: #fafafa;
  font-weight: 700;
  font-size: 1.8em;
}
.logo img {
  width: 65px;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-flex;
}

header nav a {
  position: relative;
  padding: 0.5rem 0 0.1rem;
  margin: 0 1.5rem;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  transition: 700ms ease;
  font-variation-settings: "wght" 311;
  font-size: 1em;
  outline: none;

  &::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: transform 250ms;
  }

  &:hover {
    &::after {
      transform: translateX(-50%) scaleX(1);
    }
  }
}
header nav a:hover {
  color: #00ffaa;
  font-variation-settings: "wght" 582;
  letter-spacing: 2px;
}
/************************** End Header ********************************/

/************************ Sections *************************************/
section {
  padding: 100px 200px;
}
/************ SECTION 1 [BACKGROUND] ***********/

.back {
  position: relative;
  text-align: center;
  background-color: transparent;
  color: white;
}

.inner-header {
  height: 85vh;
  width: 100%;
  margin: 0;
  padding: 0;
}

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position: relative;
  width: 100%;
  height: 20vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height: 80px;
    min-height: 50px;
  }
}
/************************************/

/*************** SECTION 1 HERO ************/
.main {
  padding-top: 75px;
  font-family: "Dela Gothic One", sans-serif;
}
.main h2 {
  color: #fafafa;
  font-size: 1.4em;
  font-weight: 500;
  font-family: "Dela Gothic One", sans-serif;
}
.main h2 span {
  display: inline-block;
  margin-top: 10px;
  color: #fafafa;
  font-size: 2.7em;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgb(14, 14, 14);
  font-family: "Dela Gothic One", sans-serif;
}
.main h3 {
  color: #fafafa;
  font-size: 1.7em;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 30px;
  font-family: "Dela Gothic One", sans-serif;
}
/****************** Button social *****************/
.section-card-social {
  display: flex;
  justify-content: center;
}
.card-social {
  display: flex;
  height: 50px;
  width: 220px;
  justify-content: center;
  margin-top: 30px;
}

.card-social svg {
  position: absolute;
  display: flex;
  width: 50%;
  height: 100%;
  font-size: 24px;
  font-weight: 700;
  opacity: 1;
  transition: opacity 0.25s;
  z-index: 2;
  cursor: pointer;
}

.card-social .social-link1,
.card-social .social-link2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25%;
  color: whitesmoke;
  font-size: 24px;
  text-decoration: none;
  transition: 0.25s;
  border-radius: 50px;
}

.card-social svg {
  transform: scale(1);
}

.card-social .social-link1:hover {
  background-color: #943fa1;
  animation: bounce_613 0.4s linear;
}

.card-social .social-link2:hover {
  background-color: #0a66c2;
  animation: bounce_613 0.4s linear;
}

@keyframes bounce_613 {
  40% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.8);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}
.button-who {
  position: relative;
  padding: 20px 35px;
  background: #ffffff;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  box-shadow: 0px 0px 10px 0px rgb(255, 255, 255);
  border-radius: 100px;
  border: none;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.star-1 {
  position: absolute;
  top: 20%;
  left: 20%;
  width: 25px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0.05, 0.83, 0.43, 0.96);
}

.star-2 {
  position: absolute;
  top: 45%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-3 {
  position: absolute;
  top: 40%;
  left: 40%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-4 {
  position: absolute;
  top: 20%;
  left: 40%;
  width: 8px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-5 {
  position: absolute;
  top: 25%;
  left: 45%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

.star-6 {
  position: absolute;
  top: 5%;
  left: 50%;
  width: 5px;
  height: auto;
  filter: drop-shadow(0 0 0 #fffdef);
  z-index: -5;
  transition: all 0.8s cubic-bezier(0, 0.4, 0, 1.01);
}

button:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0 0 80px #ffffff8c;
}

button:hover .star-1 {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 20px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-2 {
  position: absolute;
  top: 35%;
  left: -25%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-3 {
  position: absolute;
  top: 80%;
  left: -10%;
  width: 10px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-4 {
  position: absolute;
  top: -25%;
  left: 105%;
  width: 20px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-5 {
  position: absolute;
  top: 30%;
  left: 115%;
  width: 15px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

button:hover .star-6 {
  position: absolute;
  top: 80%;
  left: 105%;
  width: 10px;
  height: auto;
  filter: drop-shadow(0 0 10px #fffdef);
  z-index: 2;
}

.fil0 {
  fill: #fffdef;
}

/************************ END HERO ***************************/

/**************  SECTION PROFILE ET COMPÉTENCES ******************/
.profile {
  width: 100%;
  min-height: 100vh;
  background-color: transparent;
  padding: 40px 20px;
}

.section-title {
  text-align: center;
  color: #fafafa;
  margin-bottom: 35px;
  letter-spacing: 4px;
  text-shadow: 5px 5px 4px #000;
  font-family: "Dela Gothic One", sans-serif;
  font-size: 2rem;
}

.fa-solid {
  font-size: 1.5rem;
  margin-right: 10px;
}

/* About Profile Section */
.about-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  padding: 0 50px;
  max-width: 1200px;
  margin: 0 auto 70px;
}

.text-profile {
  color: #fafafa;
  font-size: 1.1em;
  line-height: 1.6;
  flex: 1;
}

.text-profile p {
  margin-bottom: 20px;
}

/* .profile-image {
  flex: 0 0 250px;
  display: flex;
  justify-content: center;
}

.profile-image img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 8px -4px #00ffaa;
}
*/

/* Skills Section */
.skills-heading {
  margin-top: 80px;
}

.title-skills {
  background-color: rgba(20, 20, 20, 0.7);
  box-shadow: 0 5px 8px -4px #00ffaa;
  border-radius: 15px;
  padding: 30px 30px 50px 30px;
  max-width: 1000px;
  margin: -20px auto 70px;
  position: relative;
  overflow: visible;
}

.title-skills h3 {
  color: #fefefe;
  text-align: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.title-skills img {
  width: 90px;
  height: auto;
  position: absolute;
  right: 30px;
  bottom: -13px;
  z-index: 2;
}

.title-skills:hover img {
  filter: drop-shadow(0 5px 15px rgba(0, 255, 170, 0.6));
}

/* Version responsive */
@media (max-width: 768px) {
  .title-skills {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }

  .title-skills h3 {
    text-align: center;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .title-skills img {
    width: 100px;
  }
}
/* Skills Container - New Style */
.skills-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.skills-category {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-title {
  color: #05c383;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-family: "Dela Gothic One", sans-serif;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
}

.skill-item {
  color: #fafafa;
  font-size: 1.3rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-5px);
}

.skill-item i {
  font-size: 2.5rem;
}

.skill-item img {
  width: 40px;
  height: 40px;
}

/* Specific icon colors */
.fa-html5 {
  color: #e96227;
}

.fa-css3-alt {
  color: #254bde;
}

.fa-js {
  color: #efd81d;
}

.fa-php {
  color: #7277ad;
}

.fa-wordpress {
  color: #1e7095;
}

.fa-docker {
  color: #3d78ee;
}

.fa-ubuntu {
  color: #df5222;
}

.fa-database {
  color: #0f2f70;
}

.fa-bootstrap {
  color: #8812f5;
}

.fa-vuejs {
  color: #41b883;
}

.fa-sass {
  color: #cf649a;
}

.fa-figma {
  color: #f24e1e;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-profile {
    flex-direction: column-reverse;
    text-align: center;
    gap: 30px;
  }

  .profile-image {
    margin-bottom: 20px;
  }

  .skills-list {
    gap: 15px;
  }

  .skill-item {
    font-size: 1rem;
  }

  .category-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .skills-container {
    gap: 40px;
  }
}
/********** END SECTION PROFILE ******************/

/*************** SECTION 4 PROJECT *************/
.content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.project h2 {
  color: #fafafa;
  margin-bottom: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
  font-size: 2.2rem;
}

.section-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  font-weight: 300;
  margin-top: 0;
}

.project {
  background-color: transparent;
  position: relative;
  padding: 60px 0;
}

/* Ajout de l'effet noise pour la section projet */
.project::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.project .content {
  position: relative;
  z-index: 2;
}

/* Intégration du style de carte avec effet noise */
.project-card.card {
  --bg: #333333;
  --contrast: #3a3a3a;
  --grey: #93a1a1;
  position: relative;
  padding: 12px;
  background-color: var(--bg);
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -20px,
    rgba(0, 0, 0, 0.3) 0px 20px 40px -20px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
}

.project-card.card:hover {
  transform: translateY(-10px);
  box-shadow: rgba(0, 255, 170, 0.25) 0px 30px 60px -12px,
    rgba(7, 171, 149, 0.3) 0px 18px 36px -18px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.card-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-conic-gradient(
      var(--bg) 0.0000001%,
      var(--grey) 0.000104%
    )
    60% 60%/600% 600%;
  filter: opacity(10%) contrast(105%);
  border-radius: 20px;
  z-index: 2;
}

.card-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: var(--contrast);
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.project-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
  flex: 0 0 auto;
}

.project-img img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  z-index: 3;
}

.project-category {
  background-color: rgba(0, 255, 170, 0.8);
  color: #222;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.project-info {
  padding: 1.2em;
  position: relative;
  z-index: 2;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-text {
  font-size: 1rem;
  color: #fafafa;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.project-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  color: #fafafa;
}

.icon-span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-span .fa-brands,
.icon-span .fa-solid {
  font-size: 1.3rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.icon-span .fa-brands:hover,
.icon-span .fa-solid:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* Button CV Style */
.cv_button {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid #00ffaa;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  background: transparent;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 0 0 0 transparent;
  transition: all 0.2s ease-in;
  text-decoration: none;
}

.cv_button:hover {
  background: #06b37a;
  box-shadow: 0 0 30px 5px rgba(0, 255, 170, 0.5);
  transition: all 0.2s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cv_button:hover::before {
  animation: sh02 0.5s 0s linear;
}

.cv_button::before {
  content: "";
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: #ffffff36;
  box-shadow: 0 0 50px 30px #ffffff3a;
  transform: skewX(-20deg);
}
.cv_button span {
  font-weight: bold;
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
    left: 100%;
  }
}

.cv_button:active {
  box-shadow: 0 0 0 0 transparent;
  transition: box-shadow 0.2s ease-in;
}

/* Adaptation pour le responsive */
@media (max-width: 1200px) {
  .content {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .content {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .project-card.card {
    max-width: 100%;
  }

  .section-header {
    padding: 0 20px;
  }

  .project h2 {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .project {
    padding: 40px 0;
  }

  .content {
    gap: 20px;
  }

  .project-card.card {
    padding: 8px;
  }

  .card-inner {
    border-radius: 12px;
  }

  .project-info {
    padding: 1em;
  }

  .project-text {
    font-size: 0.9rem;
  }

  .icon-span .fa-brands,
  .icon-span .fa-solid {
    font-size: 1.1rem;
  }
}
/************************* END PROJECT *******************/

/**************** SECTION 4 CONTACT *********************/
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
button,
input {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
}
.contact {
  background-color: transparent;
}
.background {
  display: flex;
  margin-top: 10px;
}

.container {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
}

.screen {
  position: relative;
  background: #1a1a1a;
  border-radius: 15px;
}

.screen:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(38, 61, 44, 0.428);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #313132;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 70px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #fafafa;
  font-size: 26px;
  text-shadow: 5px 5px 4px #000;
}

.app-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #06b37a;
}

.app-contact {
  margin-top: auto;
  font-size: 12px;
  color: #a6a6a6;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #06b379bf;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.app-form-control::placeholder {
  color: #a6a6a6;
}

.app-form-control:focus {
  border-bottom-color: #06b37a;
}

.app-form-button {
  background: none;
  border: none;
  color: #06b37a;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #fafafad2;
}
.contact h2 {
  text-align: center;
  color: #fafafa;
  letter-spacing: 4px;
  text-shadow: 5px 5px 4px #000;
  font-weight: 900;
}
.contact .fa-phone,
.fa-envelope {
  font-size: 1.3em;
}
.fa-whatsapp {
  font-size: 1.5em;
}
.separator {
  font-size: 1.6em;
  font-weight: 100;
}
@media screen and (max-width: 520px) {
  .screen-body {
    flex-direction: column;
  }

  .screen-body-item.left {
    margin-bottom: 30px;
  }

  .app-title {
    flex-direction: row;
  }

  .app-title span {
    margin-right: 12px;
  }

  .app-title:after {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .screen-body {
    padding: 40px;
  }

  .screen-body-item {
    padding: 0;
  }
}
iframe {
  border: none;
  overflow: scroll;
  display: flex;
}
.app-contact {
  padding-top: 25px;
  font-size: 1.1em;
}
/********************* END CONTACT ******************/

/*****************  FOOTER ********************/
.footer {
  background-color: #1a1a1a;
  color: #fafafa;
  padding: 0.7em;
  display: flex;
  justify-content: space-evenly;
}
.p-span {
  color: #ffffff;
  font-weight: 500;
  font-size: 20px;
}
.footer .ss-icons a {
  font-size: 22px;
  padding: 0 12px 0 0;
  overflow: hidden;
}
.nom {
  color: #00ffaad3;
}

.footer .ss-icons a:hover {
  color: #00ffaabb;
  overflow: hidden;
}
.footer .ss-icons a {
  color: white;
}
