
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: Georgia, 'Times New Roman', Times, serif;
}


:root{
  --text-color: #f5f5f5;
  --hover-color: #12f7ff;
  --bg-color: #250821;
  --secon-bg-color: #292e33;
  --big-font:2.5rem;
  --norma-font:2rem;
  --neon-box-shadow:0 0 .5rem #12f7ff;
  --h2-font:3rem;
  --font-neon-text-shadow:0 0 10px rgba(18,247,255,0.3),
  0 0 20px rgba(18, 247, 255, 0.6),
  0 0 30px rgba(18, 247, 255, 0.6),
  0 0 40px rgba(18, 247, 255, 0.6),
  0 0 70px rgba(18, 247, 255, 0.6),
  0 0 80px rgba(18, 247, 255, 0.6),
  0 0 100px rgba(18, 247, 255, 0.6),
  0 0 15px rgba(18, 247, 255, 0.6);
}





::-webkit-scrollbar{
  height: 0;
  width: .5rem;
}

::-webkit-scrollbar-track{
  background: var(--secon-bg-color);
}

::-webkit-scrollbar-thumb{
  background: var(--hover-color);
  border-radius: 5rem;
}




.video{
  width: 480;
  height: 270;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  align-items: center;
  justify-content: center;
}

header{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: url(0094-0225\ -\ Copy.mp4);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 10%;
}

header.sticky{
  background: var(--bg-color);
  border-bottom: 1px solid var(--secon-bg-color);
  padding: 12px 10%;
}


.logo{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px); /* Example transform for animation */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.letter.in {
  opacity: 1;
  transform: translateY(0);
}

.letter.out {
  opacity: 0;
  transform: translateY(-20px);
}

.letter.behind {
  opacity: 0.5;
}

span{
  color: var(--hover-color);
}

.navlist{
  display: flex;
}

.navlist a{
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 20px;
}

.navlist a:hover{
  color: var(--hover-color);
  text-shadow: 0 0 10px rgba(18,247,255,0.6),
  0 0 20px rgba(18, 247, 255, 0.6),
  0 0 30px rgba(18, 247, 255, 0.6),
  0 0 40px rgba(18, 247, 255, 0.6),
  0 0 70px rgba(18, 247, 255, 0.6),
  0 0 80px rgba(18, 247, 255, 0.6),
  0 0 100px rgba(18, 247, 255, 0.6),
  0 0 15px rgba(18, 247, 255, 0.6);;
}



.navlist a:active{
  color: var(--hover-color);
}


#menu-icon{
  font-size: 1.8rem;
  z-index: 10001;
  cursor: pointer;
  margin-left: 25px;
  background: var(--hover-color);
  border-radius: 3px;
  color: var(--secon-bg-color);
}

section{
  padding: 100px 10%;

}

.home{
  min-height: 100vh;
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: center;
  grid-gap: 4em;
}


.home-content{
  max-width: 600%;
}

.home-content h1{
  font-size: var(--big-font);
  font-weight: 700;
  font-size: 46px;
  line-height: 4rem;
}



.home-content p{
  color: #bdbdbd;
  line-height: 1.6;
}

.h4{
  font-size: 50px;
}

.h3{
  font-size: 10vh;
}

.change-text{
  font: size 1.5em;
  font-weight: 600;
}

.change-text h3{
  display: table-cell;
  margin: 1px;
  font-size: 40px;
  vertical-align: top;
}

.change-text h3 .word{
  position: absolute;
  display: inline-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);
}

.info-box{
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin: 1rem 0 2rem;
}

.info-box h5{
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
}

.info-box span{
  font-size: .9rem;
  color: #bdbdbd;
}


.btn-box{
  display: flex;
  width: 256px;
  height: 45px;
  margin-top: 14px;
  align-content: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 500px; 
  justify-content: center;
  margin-top: 40px;
}


.cta-button {
  background-color: #12f7ff;
  color: #000;
  border: none;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 8px rgba(18, 247, 255, 0.3);
}

.cta-button:hover {
  transform: scale(1.08);
  color: #ffffff;
  background-color: #0ecfdd;
  box-shadow: 0 0 20px rgba(18, 247, 255, 0.6);
}

.cta-button:active {
  transform: scale(0.95);
  background-color: #0bb4c0;
  box-shadow: 0 0 12px rgba(18, 247, 255, 0.4);
}



.p1{
  max-width: 50%;
}

.social-icons{
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
  width: 120px;
  height: 40px;
  align-items: center;
}

.social-icons a{
  display: inline-flex;
  width: 50px;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  border: 2px solid var(--hover-color);
  transition: .6s;
  box-shadow: 0 0 0.3rem #12f7ff;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.social-icons a i{
  font-size: 1.5rem;
}

.social-icons a:hover{
  color: var(--text-color);
}

.social-icons a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--hover-color);
  transition: .6s;
  z-index: -1;
}

.social-icons a:hover::before{
  width: 100%;
}

.home-image{
  position: relative;
}

.img-box{
  text-align: right;
}

.img-box img{
  width: 100%;
  max-width: 600px;
  margin-right: 212px;
  height: auto;
  border-radius: 50%;
  box-shadow: var(--neon-box-shadow);
}

.liquid-shape{
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: -39%;
}

.liquid-shape:nth-child(2){
  filter: blur(25px);
}


.dropbtn {
  display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      height: 100%;
      background: var(--bg-color);
      color: var(--hover-color);
      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 var(--hover-color);
}

.dropbtn2 {
  display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      height: 100%;
      background: var(--bg-color);
      color: var(--hover-color);
      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 var(--hover-color);
}

.dropbtn3 {
  display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 150px;
      height: 100%;
      background: var(--bg-color);
      color: var(--hover-color);
      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 var(--hover-color);
}



.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}




/* Filter Buttons */
.filter-buttons {
  text-align: center;
  margin: 2rem 0;
}

.filter-buttons .btn {
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.filter-buttons .btn:hover {
  color: var(--hover-color);
}


/* Hover effect for content */
.port-content h3, .port-content p {
  margin: 0.5rem 0;
}

.port-content a {
  background-color: #fff;
  color: var(--bg-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--neon-box-shadow);
  transition: background 0.3s ease;
}

.port-content a:hover {
  background-color: var(--hover-color);
  color: white;
}





.about{
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 2em;
  background: var(--secon-bg-color);
}

.about .img-about{
  text-align: center;
  position: relative;
}

.about .img-about img{
  max-width: 400px;
  border-radius: 35%;
  height: auto;
}

.about-content span{
  color: #fdfdfd;
  font-size: .8rem;
  font-weight: bolder;
  font-size: var(--normal-font);
}

h2 {
      color: var(--hover-color);
    font-weight: 600;
   }
  
 h3{
  color: #f1f1f1;
 }

.about-content h3{
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: .2rem;
}

.about-content p{
  color: #fdfdfd;
  font-weight: 300;
  margin-bottom: -0.5rem;
  line-height: 1.6rem;
}

p2{
  color: #f1f1f1;
}

.info-about1,
.info-about2,
.info-about3{
  background: var(--bg-color);
  font-size: .8rem;
  position: absolute;
  padding: 10px;
  width: 90px;
  height: 90px;
  border-radius: 69% 31% 66% 34% / 21% 30% 70% 79%;
  display: block;
  box-shadow: var(--neon-box-shadow);
  border: 1px solid var(--hover-color);
  outline: 2px solid var(--bg-color);
  z-index: 100;
  animation: morph 6s linear infinite;
}

.info-about1{
  left: -7%;
  top: 34%;
}

.info-about2{
  left: 83%;
  top: 15%;
}

.info-about3{
  left: 83%;
  top: 70%;
}

.img-about span{
  color: var(--hover-color);
  font-size: 1rem;
  font-weight: 600;
}





.main-text{
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
}

.main-text h2{
  font-weight: var(--normal-font);
  font-weight: 700;
}

.main-text span{
  color: #fdfdfd;
  font-size: .8rem;
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Services Section */

.section-services {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 0; /* Added padding for spacing */
}

.section-services .service-box{
  flex: 1 1 18rem;
  padding: 2rem 1rem 2rem;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: center;
  background: var(--secon-bg-color);
  transition: transform .4s;
  border-radius: 10px;
}

.info-service-btn{
  text-align: center;
  margin-top: 32px;
}

.info-btn-box{
  text-align: center;
}

.service-btn{
  width: auto;
  justify-content: center;
}

.service-btn:hover{
  transform: translateY(-0.7rem);
}

.service-box {
  position: relative;
  flex: 1 1 18rem;
  padding: 2rem 1rem;
  text-align: center;
  background: var(--secon-bg-color);
  border-radius: 10px;
  box-shadow: var(--neon-box-shadow); /* Optional: Add shadow for emphasis */
  transition: transform .4s ease-in-out;
  color: var(--text-color);
}


.service-box-info {
  position: relative;
  flex: 1 1 46rem;
  padding: 2rem 1rem;
  text-align: center;
  background: var(--secon-bg-color);
  border-radius: 10px;
  box-shadow: var(--neon-box-shadow); /* Optional: Add shadow for emphasis */
  transition: transform .4s ease-in-out;
  color: var(--text-color);
}

.service-box.expanded {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  border-radius: 0;
  padding: 40px;
  overflow-y: auto;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.service-box.expanded .btn-box {
  position: absolute;
  top: 20px;
  right: 20px;
}

.service-box.expanded .btn-box .btn {
  background: #ff4d4d;
  color: #fff;
}

.service-box:hover {
  transform: translateY(-0.7rem); /* Slight elevation on hover */
}

.service-icon {
  border: 2px solid var(--secon-bg-color);
  padding: 2rem;
  background: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  border-radius: 50%;
  color: var(--hover-color);
  box-shadow: var(--neon-box-shadow);
  outline: 3px solid var(--bg-color);
  transition: transform .3s ease, background .3s ease; /* Added transition for smooth effect */
}

.service-icon:hover {
  transform: scale(1.1); /* Scale effect for hover */

}

.service-box h3 {
  font-size: 1.5rem;
  margin-top: 10px;
  color: var(--text-color);
}

.service-box p {
  margin: .5rem 0 1.5rem 0;
  font-weight: 300;
  letter-spacing: 1px;
  color: #bdbdbd; /* Light text for description */
  margin-top: 0.5rem;
  line-height: 1.5;
}


/*------------------------------  SKILLS SECTION ---------------------------------------------- */

.skills{
  background: var(--secon-bg-color);
}

.skill-main{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-row-gap: 30px;
  grid-column-gap: 50px;
}

.skill-bar{
  margin-bottom: 2.3rem;
}

.skill-main h3{
  margin-bottom: 2rem;
  font-size: var(--normal-font);
  text-align: center;
}

.skill-left .skill-bar .info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}

.skill-left .skill-bar .bar{
  width: 100%;
  height: 10px;
  background-color: var(--bg-color);
  border-radius: 25px;
  margin-top: 10px;
  position: relative;

}

.skill-bar .bar span{
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  background: var(--hover-color);
  border-radius: 25px;
  box-shadow: var(--neon-box-shadow);
}

.skill-bar .bar .html{
  width: 90%;
  animation: html 2s;
}

.skill-bar .bar .css{
  width: 80%;
  animation: css 3s;
}


.skill-bar .bar .javascript{
  width: 75%;
  animation: javascript 4s;
}

.skill-bar .bar .C{
  width: 70%;
  animation: C 5s;
}

.porfessional{
  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%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box .text small{
  display: block;
  font-weight: 600;
}

.circle{
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px solid #fff;
  position: relative;
}


.circle .points{
  width: 2px;
  height: 10px;
  background-color: var(--bg-color);
  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);
}




/*------------------------------  PORTFOLIO SECTION ---------------------------------------------- */
.fillter-buttons{
  margin: 2rem;
  text-align: center;
}

.fillter-buttons .btn{
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .4px;
  margin-left: 1.3rem;
  color: var(--text-color);
}

.fillter-buttons .btn:hover{
  color: var(--hover-color);
}

.portfolio-gallery{
  display: unset;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.port-box{
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  background: #292e33;
  border: 2px solid var(--hover-color);
  box-shadow: var(--neon-box-shadow);
  transition: transform 0.3s ease;
}




.port-image{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}


.port-image img{
  width: 100%;
  opacity: .5s;
  height: 100%;
  transition: .5s;
}

.port-myVideo{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.port-image img, .port-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.3s ease;
}


.port-video .myVideo{
  width: 100%;
  opacity: .5s;
  height: 100%;
  transition: .5s;
}

.port-content{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 1rem;
  text-align: center;
}

.port-box:hover {
  transform: scale(1.05);
}

.port-box:hover .port-content{
  opacity: 1;
}

.port-box:hover .port-image img{
  transform: scale(1.1);
}

.port-box:hover .port-video{
  opacity: 1;
}

.port-box:hover .port-video .myVideo{
  transform: scale(1.1);
}

.port-box:hover .port-image img,
.port-box:hover .port-image video {
    transform: scale(1.1);
}

.port-content h3{
  font-size: 1.5rem;
  font-weight: 600;
}

.port-content p{
  font-size: .8rem;
  margin: 5px 0 15px 0;
}

.port-content a{
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 50px;
  border: 1px solid var(--hover-color);
  outline: 2px solid #fff;
}

.port-content a i{
  font-size: 1.3rem;
  color: var(--secon-bg-color);
}



.contant{
  background: var(--secon-bg-color);
  width: 100%;
}

.contant form{
  text-align: center;
  max-width: 50rem;
  margin: 1rem auto;
  margin-bottom: 3rem;
}

.contant form input,
.contant form textarea{
  width: 100%;
  color: var(--text-color);
  background: var(--bg-color);
  margin-bottom: .8rem;
  border: none;
  border-radius: 5px;
  padding: .7rem;
}

.contant form textarea{
  resize: none;
}

.formBtn{
  display: flex;
  justify-content: center;
  width: 100%;
}

.formBtn .btn{
  cursor: pointer;
  font-size: 1rem;
}

footer{
  padding: 1.5rem 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer p{
  color: #bdbdbd;
}

footer a{
  display: inline-flex;
  justify-content: center;
  color: var(--text-color);
  background: var(--hover-color);
  padding: .6rem;
  border-radius: 5px;
}

footer a i{
  font-size: 1rem;
  color: var(--secon-bg-color);
}






.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);
}

.message {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: inline-block;
}



.home-content,.home, .about, .services, .skills, .portfolio, .contact {
  animation: CssScrollReveal ease-in-out both;
  animation-timeline: view();
  animation-range: entry 20% cover 29%;
  transition: all 10s ease;
}






@keyframes CssScrollReveal {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}






@keyframes morph{
  0%,
  100%{
    border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  }
  30%{
    border-radius: 70% 60% 50% 30% / 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: 90%;
  }
}

@keyframes css{
  0%{
    width: 0%;
  }
  100%{
    width: 80%;
  }
}

@keyframes C{
  0%{
    width: 0%;
  }
  100%{
    width: 70%;
  }
}

@keyframes javascript{
  0%{
    width: 0%;
  }
  100%{
    width: 75%;
  }
}


@keyframes glow{
  0%{
    background: var(--bg-color);
    box-shadow: none;
  }
  100%{
    background: var(--hover-color);
    box-shadow: var(--neon-box-shadow);
  }
}



@media(max-width:991px){
  header,
  header.sticky{
    padding: 15px 5%;
  }
  footer{
    padding: 15px 5%;
  }
  section{
    padding: 50px 5%;
  }
  .navlist a{
    padding: 8px 15px; 
  }
  :root{
  --big-font:2.2rem;
  --norma-font:1.8rem;
  --neon-box-shadow:0 0 .5rem #12f7ff;
  --h2-font:3rem;
  }
  .home-content{
    margin-top: 5rem;
  }
  .social-icons{
    margin-top: 2rem;
  }
}

@media(max-width:768px){
  #menu-icon{
    display: block;
    transition: all .4s ease;
  }
  #menu-icon.bx-x{
    transform: rotate(-180deg);
  }
  .navlist{
    display: flex;
    position: absolute;
    top: -1000px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: var(--bg-color);
    text-align: left;
    padding: 0.5%;
    transition: all .45s ease;
  }
  .navlist a{
    display: block;
    padding-bottom: 1rem;
    font-size: 1rem;
  }

  .navlist.open{
    top: 100%;
  }

  .home{
    grid-template-columns: 1fr;
  }

  .home-image{
    margin-bottom: 5rem;
  }

  .about{
    flex-direction: column-reverse;
  }

  .skill-main{
    grid-template-columns: 1fr;
  }

  .filter-buttons{
    margin: 2.5rem 0;
  }
  footer p{
    font-size: .8rem;
  }

}


@media(max-width:420px){
  html{
    font-size: 80%;
  }
  footer p{
    font-size: .6rem;
  }
  .fillter-buttons .btn{
    font-size: .8rem;
  }
  .img-about img{
    width: 300px;
  }
  .info-about1,.info-about2,.info-about3{
    display: none;
  }
  .img-about p{
    font-size: 1rem;
  }

}