@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');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
}

:root {
  --primary-color: #1E90FF;
  --primary-color-dark: #ee9821;
  --secondary-color: #04091d;
  --hover-color: #e68900;   
  /* --hover-color: #12f7ff;  */
  --secondary-bg-color: #292e33;
  /* --neon-box-shadow: 0 0 .5rem #12f7ff; */
  --norma-font:2rem;
  --big-font:2.5rem;
  --bg-color: #250821;
  --text-light: #9ca9bb;
  --text-color:#f5f5f5;
  --white: #ffffff;
  --max-width: 1200px;
  --yellow: #f5bf23;
  --black: #111;
  --white: #fff;
  --light-color: #666;
  --light-bg: #eee;
  --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
  --border: .1rem solid rgba(0, 0, 0, .3);
  --primary-color-nav: #2C3E50;
  --norma-font: 2rem;
  --big-font: 2.5rem;
  --text-light: #9ca9bb;
  --text-color: #f5f5f5;
  --max-width: 1200px;
  --font-neon-text-shodow: 0 0 10px rgba(18, 247, 255, 0.3),
    0 0 20px rgba(18, 247, 255, 0.3),
    0 0 30px rgba(18, 247, 255, 0.3),
    0 0 40px rgba(18, 247, 255, 0.3),
    0 0 70px rgba(18, 247, 255, 0.3),
    0 0 80px rgba(18, 247, 255, 0.3),
    0 0 100px rgba(18, 247, 255, 0.3),
    0 0 150px rgba(18, 247, 255, 0.3),
}

::-webkit-scrollbar{
  height: 0;
  width: .5rem;
}
::-webkit-scrollbar-track{
  background: var(--secondary-bg-color);
}
::-webkit-scrollbar-thumb{
  background: var(--hover-color);
  border-radius: 5rem;
}


body{
    font-family: "Poppins",sans-serif;
    background-color: #f8f9fa;

  }


header {
  position: fixed;  /* Fixe en haut */
  top: 0;
  left: 0;
  width: 100%;
  background: white; /* Ajoute un fond pour éviter la transparence */
  z-index: 1000;  /* Mettre au-dessus des autres éléments */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px; /* Ajuste le padding */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Ajoute une ombre légère */
}



header.sticky{
  background: var(--white);
  border-bottom: 1px solid var(--secondary-bg-color);
  padding: 12px 10%;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}
.logo img{
  height: 60px;
}

span {
  color: var(--hover-color);
}

.navliste {
  /* display: flex; */
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important; /* Supprime les puces de liste */
  display: flex;
  gap: 20px; /* Espacement entre les liens */

}

/* Style des liens */
.navliste li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: black;
  transition: color 0.3s ease;
  animation-delay: calc(.3s * var(--i));
}

/* .navliste a{
  display: inline-block;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  animation: slideAnimation 1s ease forwards;
  animation-delay: calc(.3s * var(--i));
  opacity: 0;
} */

.navliste a:hover {
  color: #0056B3;
  text-shadow: 0 0 10px rgba(18, 247, 255, 0.3),
    0 0 20px rgba(18, 247, 255, 0.3),
    0 0 30px rgba(18, 247, 255, 0.3),
    0 0 40px rgba(18, 247, 255, 0.3),
    0 0 70px rgba(18, 247, 255, 0.3),
    0 0 80px rgba(18, 247, 255, 0.3),
    0 0 100px rgba(18, 247, 255, 0.3),
    0 0 150px rgba(18, 247, 255, 0.3);
}

.navliste a.active{
  color: #FF6F61;
  font-weight: bold; /* Texte en gras */
}

#menu-icon {
  font-size: 2rem;
  z-index: 10001;
  cursor: pointer;
  margin-left: 25px;
  background: var(--hover-color);
  border-radius: 3px;
  color: var(--white);
  display: none;
}

section {
  padding: 100px 10%;

}

.home {
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: grid;
  /* background: white; */
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  grid-gap: 4em;
  background: linear-gradient(
    to right,
    rgba(118, 58, 224, 0.5),
    rgba(99, 69, 251, 0.5)
  ),
  url("img/yaya.jpg");
background-position: top left;
background-size: cover;
background-repeat: no-repeat;
}

.home-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  grid-area: 1/2/2/2;
  
}

.home-content h1{
  font-weight: 700;
 color: #fff;

}
.change-text {
  font-size: 1.5rem;
  font-weight: 600;
}

.change-text h3 {
  display: inline-flex;
  margin: 0;
  vertical-align: top;
  color: #fff;

}

.change-text h3 .word {
  position: absolute;
  display: flex;
  opacity: 0;
}

.change-text h3 .word .letter {
  transform-origin: center center 25px;
}

.change-text h3 .word .letter.out {
  transform: rotateX(90deg);
  transition: 0.32s cubic-bezier(0.6, 0, 0.7, 0.2);
}

.change-text h3 .word .letter.in {
  transition: 0.38s ease;
}
.change-text h3 .word .letter.behind {
  transform: rotateX(-90deg);
}
.change-text p{
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}

/* .info-box {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin: 2rem 0 2rem;

} */

/* .info-box h5 {
  font-weight: 600;
  color: #111111;
  font-size: 1.1em;
  margin-right: 10rem;
} */
/* 
.info-box span {
  font-size: .9rem;
  color: #111111;

} */

.btn-box {
  display: flex;
  justify-content: space-between;
  width: 320px;
  height: 45px;
  
}

.btn-box a.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: #007bff;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: .6s;
  /* box-shadow: var(--neon-box-shadow); */
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid white;
}

a.btn:hover {
  color: var(--hover-color);
}

a.btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  transition: .4s;
}

a.btn:hover::before {
  width: 100%;
}

/* a.btn:nth-child(2) {
  color: var(--hover-color);
} */

/* a.btn:nth-child(2):hover {
  color: white;
} */

a.btn:nth-child(2)::before {
  color: white;
}

.social-icon {
  margin-top: 6rem;
  display: flex;
  justify-content: space-between;
  height: 40px;
  width: 240px;
}

.social-icon a {
    display: inline-flex;
    width: 50px;
    height: 100%;
    background: #007bff;
    color: white;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--white);
    transition: .6s;
    box-shadow: 0 0 0.3rem #12f7ff;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.social-icon a i {
  font-size: 1.5rem;
}

.social-icon a:hover {
  color: var(--bg-color);
}

.social-icon a::before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 0;
  height: 100%;
  background: var(--hover-color);
  transition: .6s;
  z-index: -1;
}

.social-icon a:hover::before {
  width: 100%;
}

.home-image {
  position: relative;
}

.img-box {
  text-align: center;
}

.img-box img {
  width: 100%;
  max-width: 450px;
  height: auto;
  padding: 50px;
}

.liquid-shap {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 10%;
}

#blob {
  position: absolute;
  width: 100%;
  height: 100%;
}

.liquid-shap:nth-child(2) {
  filter: blur(50px);
}


/*about section*/
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 2rem;
  background-color: #F2F2F2;
}

.about .img-about {
  text-align: center;
  position: relative;
}

.about .img-about img {
  max-width: 400px;
  height: auto;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Ombre douce autour de l'image */
}

/* Contenu de la section "About Me" */
.about-content {
  flex: 1;
  max-width: 500px;
  margin-left: 40px;
}

.about-content span {

  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 200;
  text-transform: uppercase;
  color: #FF6F61;
}

.about-content h2 {
  font-size: 20px;
  color: #333333;
  margin-bottom: 15px;
}

.about-content h3 {
  font-size: 24px;
  color: #1E90FF;
  /* Couleur d'accent pour les sous-titres */
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-content .btn-about{
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  margin: 0 10px;
  cursor: pointer;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: .6s;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid white;
}

.info-about1 p{
  font-size: 12px;
  
}
.info-about2 p{
  font-size: 16px;
}
.info-about3 p{
  font-size: 16px;
}

.info-about1,
.info-about2,
.info-about3 {
  position: absolute;
  font-size: .6rem;
  width: 90px;
  height: 90px;
  border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
  display: block;
  color: #FFFFFF;
  /* Couleur du texte */
  border: 1px solid var(--hover-color);
  outline: 2px solid var(--bg-color);
  animation: morph 6s linear infinite;
  z-index: 100;
  background-color: #1E90FF;
  /* Couleur de fond */
  padding: 10px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.info-about1 {
  top: 20px;
  left: 20px;
}

.info-about2 {
  bottom: 20px;
  left: 20px;
}

.info-about3 {
  top: 20px;
  right: 20px;
}

.img-about span {
  color: var(--hover-color);
  font-size: 1rem;
  font-weight: 600;
}

/* section services */
.main-text {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--hover-color);
  
}

.main-text h2 {
  font-size: 22px;
  color: #333333;
  margin: 0;
}

.main-text span {
  font-size: 32px;
  letter-spacing: 2px;
  font-weight: 200;
  text-transform: uppercase;
  color: #FF6F61;
 
}

.section-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* Grille flexible */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-services .service-box {
  flex: 1 1 18rem;
  padding: 2rem 1rem 2rem;
  text-align: center;
  transition: transfor .4s;
  border-radius: 10px;
  background-color: #F8F9FA;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-btn {
  width: auto;
  justify-content: center;
}

.service-box:hover {
  transform: translateY(-.7rem);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.service-icon{
  border: 2px solid #0056B3;
  background: var(--bg-color);
  padding: 2rem;
  align-content: center;
  font-size: 3rem;
  border-radius: 50%;
  position: relative;
  box-shadow: var(--neon-box-shadow);
  outline: 3px solid var(--bg-color);
  color: #1E90FF;
 }

.service-box h3 {
  margin-top: 10px;
  font-size: 22px;
  color: #333333;
  
}

.service-box p {
  margin: .5rem 0 1.5rem 0;
  font-weight: 300;
  letter-spacing: 1px;
  color: #111111;
  font-size: 1em;
  line-height: 1.5em;
}

/* section story */

.story {
  position: relative;
  isolation: isolate;
}

.story::before {
  position: absolute;
  content: "";
  background: linear-gradient(
      to right,
      rgba(118, 58, 224, 0.5),
      rgba(99, 69, 251, 0.5)
    ),
    url("img/heade.png");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  inset: 0;
  transform: skewY(-5deg);
  z-index: -1;
}

.story__container {
  text-align: center;
}

.story__container .play {
  height: 60px;
  width: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 1.5rem;
  color: var(--secondary-color);
  background-color: var(--white);
  cursor: pointer;
}

.story__container .section__title {
  color: var(--white);
  margin-top: 1rem;
}

/* section skills */
.skills{
  background-color: #F2F2F2;
  /* Couleur de fond de la section */
  text-align: center;
}
.skill-main {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-column-gap: 50px;
  grid-row-gap: 30px;
}

.skill-bar {
  margin-bottom: 2.3rem;
}

.skill-main h3 {
  margin-bottom: 2rem;
  text-align: center;
  color: #1E90FF;
  font-size: 24px;
}

.skill-left .skill-bar .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  color: #333333;
}

.skill-left .skill-bar .bar {
  width: 100%;
  height: 10px;
  background-color: #e0e0e0;
  border-radius: 25px;
  margin-top: 10px;
  position: relative;
}

.skill-bar .bar span {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  border-radius: 25px;
  background: #1E90FF;
  box-shadow: var(--neon-box-shadow);
}

.skill-bar .bar .html {
  width: 72%;
  animation: html 2s;
}

.skill-bar .bar .figma {
  width: 98%;
  animation: figma 3s;
}

.skill-bar .bar .javascript {
  width: 80%;
  animation: javascript 4s;
}

.skill-bar .bar .css {
  width: 62%;
  animation: css 5s;
}

/* competences  coté droite */
.professionel{
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.box{
  position: relative;
  margin: 10px 0;
  flex: 1 1 15rem;
}

.box .text{
  text-align: center;
  color: #fff;
  font-size: 1rem;
}

.box .text big{
  font: 400;
  letter-spacing: 1px;  
  position: absolute;
  top: 40%;
  color: #333333;
  font-weight: bold;
  left: 50%;
  transform: translate(-50% ,-50%);
  font-size: 20px;
}

.box .text small{
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: #666666;
}
.circle{
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: conic-gradient(#FF6F61 calc(var(--percent) * 1%), #e0e0e0 0%);
  border-radius: 50%;
 
}

.circle .points{
  width: 5px;
  height: 10px;
  background-color: #e0e0e0;
  position: absolute;
  border-radius: 3px;
  transform: rotate(calc(var(--i)*var(--rot))) translateY(-45px);
 }

.points.marked{
  animation: glow 0.04s linear forwards;
  animation-delay: calc(var(--i)*0.05s);
}


/* Style général pour la section "Portfolio" */
.portfolio {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

/* Texte principal et titre de la section */
.portfolio .main-text {
  margin-bottom: 40px;
}


/* Conteneur des boutons de filtre */
.filter-buttons {
  margin-bottom: 30px;
}

.filter-buttons .btn {
  background-color: #1E90FF;
  color: #FFFFFF;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-buttons .btn:hover {
  background-color: #FF6F61;
}

/* Style pour les boîtes de portfolio */
.portfolio-galery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.portfolio-box {
  width: calc(33.333% - 20px);
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.portfolio-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image dans les boîtes de portfolio */
.port-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contenu de chaque boîte de portfolio */
.port-contentenair {
  padding: 20px;
  text-align: left;
}

.port-contentenair h3 {
  font-size: 20px;
  color: #333333;
  margin-bottom: 10px;
}

.port-contentenair p {
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Lien externe pour voir plus de détails sur chaque projet */
.port-contentenair a {
  color: #1E90FF;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.port-contentenair a:hover {
  color: #FF6F61;
}

/* Réactivité pour les petits écrans */
@media (max-width: 768px) {
  .portfolio-box {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .portfolio-box {
    width: 100%;
  }
}

/* temognages */
.reviews {
  padding: 60px 20px;
  background-color: #f7f7f7;
  text-align: center;
}


.reviews .slid p {
  padding: 1.5rem;
  background: var(--light-bg);
  position: relative;
  margin-bottom: 3rem;
  font-size: 1rem;
  border-radius: 10px;
  color: var(--light-color);
  line-height: 2;
}


.reviews .slid p::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 2rem;
  height: 2rem;
  width: 2rem;
  background: var(--light-bg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.reviews .slid .user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}

.reviews .slid .user img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
}

.reviews .slid .user h3 {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
}

.reviews .slid .user .stars {
  padding-top: .5rem;
}

.reviews .slid .user .stars i {
  font-size: 1.4rem;
  color: var(--yellow);
}

/* Footer styling */
footer {
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  font-size: 16px;

  text-transform: uppercase;
  text-align: center;
}

#why-choose-me {
  background: #f8f9fa;
  padding: 20px 0;
  text-align: center;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 50px;
}
.sub-title{
  font-size: 1.2rem;
  color: #333;
  text-align: center;
  padding: 0;
}

.why-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.why-item {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.why-item:hover {
  transform: translateY(-10px);
}

.why-item i {
  font-size: 3rem;
  color: #FF6F61;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 1rem;
  color: #555;
}


/* Titres du footer */
footer h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* Liens du footer */
footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

footer a:hover {
  color: #f8b400;
}

/* Icônes des réseaux sociaux */
footer .fab {
  color: #bbb;
  transition: color 0.3s ease-in-out;
}

footer .fab:hover {
  color: #f8b400;
}

.scolllar .bx i{
  font-size: 1rem;
  color: var(--text-color);
}

/* Séparation */
footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 20px 0;
}

/* Copyright */
footer .text-center p {
  font-size: 14px;
  margin: 0;
  color: #bbb;
}

/* Responsive */
@media (max-width: 768px) {
  footer .col-md-4 {
      text-align: center;
      margin-bottom: 20px;
  }

  footer .fab {
      font-size: 20px;
  }
}




/* paralex */
.scroll-scale {
  opacity: 0;
  transform: scale(.9);
  transition: all 2s;
}

.scroll-bottom{
opacity: 0;
transform: translateY(300px);
transition: 3s;
}
.scroll-top{
  opacity: 0;
  transform: translateY(-300px);
  transition: 3s;
  }
.show-items{
  opacity: 1;
  transform: translateX(0);
}






/* keyframes */
@keyframes morph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  }

  30% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }

  60% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
  }

  80% {
    border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
  }
}

@keyframes html{
  0% {
    width: 0%;
  }

  100% {
    width: 72%;
  }
}

@keyframes figma {
  0% {
    width: 0%;
  }

  100% {
    width: 98%;
  }
}

@keyframes javascript {
  0% {
    width: 0%;
  }

  100% {
    width: 80%;
  }
}

@keyframes css {
  0% {
    width: 0%;
  }

  100% {
    width: 62%;
  }
}
@keyframes glow {
  0% {
    background: #e0e0e0;
    box-shadow: none;
  }

  100% {
    background: #1E90FF;
    /* box-shadow: var(--neon-box-shadow); */
  }
}

@keyframes slideAnimation{
  0%{
    opacity: 0;
    transform: translateY(100px);
  }
  100%{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Break points */
@media(max-width:991px){
  header,
  header.sticky{
    padding: 15px 5%;
  }
  footer{
    padding: 15px 5%;
  }
  section{
    padding: 50px 5%;
  }
  .navliste a{
    padding: 8px 15px;
  }
  :root{
    /* --neon-box-shadow: 0 0 .8rem #12f7ff; */
    --norma-font:2rem;
    --big-font:2.5rem;
    --h2-font:3rem
  }
  .home-content{
    margin-top: 5rem;
    position: absolute;
  }
  .social-icon{
    margin-top: 8rem;
  }
  .btn-box{
    margin-top: 40px;

  }
}

@media(max-width:768px){
#menu-icon{
  display: block;
  transition: all .4s ease;
}
#menu-icon.bx-x{
  transform: rotate(-180deg);
}
.navliste{
  display: flex;
  position: absolute;
  top: -1000px;
  right: 0;
  left: 0;
  flex-direction: column;
  background: var(--white);
  text-align: center;
  padding: 0 5%;
  transition: all .4s ease;
}

.navliste a{
  display: block;
  padding-bottom: 0;
  font-size: 1rem;
}
.navliste.open{
  top: 100%;
}
.home{
  grid-template-columns: 1fr;
}
.liquid-shap{
  width: 80%;
  left: 10%;
  top: 13%;
}
.about{
  flex-direction: column-reverse;
}
.skill-main{
  grid-template-columns: 1fr;
}
.filter-buttons{
  margin: 2.5rem 0;
}

}
@media(max-width:420px){
html{
  font-size: 80%;
}

.filter-buttons .btn{
  font-size: .8rem;
}
.img-about img{
  width: 300px;
}
.info-about1,.info-about2,.info-about3{
  display: none;
}
.img-about p{
  font-size: 1rem;
}
}