@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;700&family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
  body {
    font-family: "Cairo", sans-serif;
  }
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  a {
    text-decoration: none;
  }
  .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .button{
    margin-top: 25px;
    border-radius: 0;
    padding: 13px 50px;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    border: none;
    color: #191919;
  }
  .text-center{
    h1{
      font-size: 34px;
      line-height: 44px;
      font-weight: 600;
      color: #191919;
    }
    p{
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      color: #666666;
    }
  }
  // Small
  @media (min-width: 768px) {
    .container {
      width: 750px;
    }
  }
  // Medium
  @media (min-width: 992px) {
    .container {
      width: 970px;
    }
  }
  // Large
  @media (min-width: 1200px) {
    .container {
      width: 1170px;
    }
  }

header{
  width: 90%;
  margin: auto;
  margin-top: 20px;
  border-radius: 24px;
  position: fixed;
  top: 0; 
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 16px 9%;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
  height: 64px;
  transition: width 0.5s ease-in-out , margin-top 0.5s ease-in-out  , border-radius 0.2s ease-in-out;
  .logo{
    max-width: 130px;
  }
  .navbar{
    gap: 60px;
    a{
      font-size: 14px;
      line-height: 24px;
      font-weight: 700;
      color: #191919;
      height: 64px;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 15px;
      background-color: #fff;
      &::before{
        content: "";
        position: absolute;
        height: 2px;
        width: 0;
        transition: 0.5s all ease-in-out;
        top: 0;
        left: 0;
        background-color: #191919;
      }
      &:hover{
        &::before{
          width: 100%;
          background-color: #eee;
        }
      }
    }
  }
  .nav_toggle{
    display: none;
  }
}
// Start of home 
#home{
  // padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  .image{
    // margin-top: 15px;
    background-image: url(./images/header.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    min-height: 700px;
  }
  .info{
    position: absolute;
    top: 0;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 200px;
    h2{
      font-size: 42px;
      font-weight: 600;
      line-height: 60px;
      color: #ffffff;
      max-width: 460px;
    }
    p{
      font-size: 14px;
      font-weight: 500;
      line-height: 22px;
      color: #ffffff;
      margin-top: 25px;
    }
    .header-btn{
      background: #fff;
      margin-top: 25px;
      border-radius: 0;
      padding: 13px 50px;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 1px;
      font-weight: 600;
      cursor: pointer;
      outline: none;
      border: none;
      color: #191919;
    }
  }
}
// End of home 
// Start of about 
#about{
  padding-top: 60px;
  padding-bottom: 60px;
  .about_container{
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    .content{
      h3{
        color: #feb633;
        font-size: 18px;
        font-weight: 600;
        line-height: 22px;
      }
      h2{
        color: #191919;
        font-size: 24px;
        line-height: 32px;
        font-weight: 600;
      }
      p{
        color: #666666;
        font-size: 14px;
        line-height: 22px;
        font-weight: normal;
      }
      .about-btn{
        margin-top: 15px;
        border-radius: 0;
        padding: 13px 30px;
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 1px;
        font-weight: 600;
        cursor: pointer;
        outline: none;
        border: none;
        background-color: #191919;
        color: #ffffff;
      }
    }
    .image{
      img{
        max-width: 100%;
        width: 80%;
      }
    }
  }
}
// End of about 
// Start of services 
#services{
  padding-top: 60px;
  padding-bottom: 60px;
  .boxs{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    .box{
      flex: 1 1 21rem;
      display: flex;
      justify-content: normal;
      align-items: center;
      border: 1px solid;
      gap: 25px;
      margin-left: 15px;
      margin-top: 15px;
      padding-left: 15px;
      border-left-width: thick;
      .image{
        img{
          width: 65px;
        }
      }
      .content{
        h3{
          font-size: 18px;
          line-height: 26px;
          color: #191919;
          font-weight: bold;
          padding-top: 15px;
          margin: 0;
        }
        p{
          font-size: 14px;
          line-height: 22px;
          color: #666666;
          font-weight: normal;
        }
      }
    }
  }
}
// End of services 
// Start of info 
#info{
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  .image{
    margin-top: 15px;
    background-image: url(./images/bg-service.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    max-width: 100%;
    min-height: 600px;
    position: relative;
    img{
      position: absolute;
      right: 50px;
      top: 50%;
      transform: translateY(-50%);
      max-width: 100%;
    }
  }
  .content{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15%;
    h3{
      font-size: 16px;
      line-height: 24px;
      font-weight: 600;
      color: #feb633;
    }
    h2{
      font-size: 30px;
      line-height: 38px;
      font-weight: 700;
      color: #ffffff;
      width: 32%;
    }
    hr{
      height: 3px;
      background: white;
      border-radius: 15px;
      width: 15%;
      opacity: 1;
    }
    p{
      font-size: 14px;
      line-height: 22px;
      color: #ffffff;
      font-weight: 400;
      width: 40%;
    }
    .info-btn{
      padding: 13px 30px;
    }
  }
}
// End of info 
// Start of Projects 
#Projects{
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  .skills{
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    .image{
      flex: 1 1 38rem;
      img{
        max-width: 100%;
        width: 80%;
      }
    }
    .content{
      h2{
        font-size: 22px;
        line-height: 32px;
        color: #191919;
        font-weight: 700;
      }
      p{
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        color: #666666;
        width: 57%;
      }
      .skill{
          margin-top: 10px;
        h4{
          font-size: 14px;
          line-height: 26px;
          color: #191919;
          font-weight: 600;
          margin: 0;
        }
        .the_progress{
          position: relative;
          background-color: #eeeeee96;
          height: 10px;
          border-radius: 15px;
          span{
            position: absolute;
            height: 100%;
            top: 0;
            left: 0;
            right: 0;
            border-radius: 15px;
            background-color: #191919;
            transition: 0.5s all ease-in-out;
          }
        }
      }
    }
  }
}
// End of Projects 
// Start of stats 
#stats{
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 15px;
  background-image: url(./images/bg-achievement.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  .content{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
    .state{
      text-align: center;
      h1{
        font-size: 45px;
        font-weight: 700;
        line-height: 55px;
        color: #ffffff;
      }
      h3{
        color: #ffffff;
        font-weight: 600;
        font-size: 20px;
        line-height: 22px;
      }
    }
  }
}
// End of stats 
// Start of person 
#person{
  padding-top: 60px;
  padding-bottom: 60px;
  .info{
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    .image{
      width: 100%;
      img{
        width: 60%;
      }
    }
    .content{
      h2{
        font-size: 35px;
        font-weight: 700;
        color: #191919;
      }
      p{
        font-size: 20px;
        font-weight: 400;
        color: #666666;
      }
      h3{
        font-size: 16px;
        line-height: 26px;
        font-weight: 700;
        color: #191919;
      }
      p{
        &:last-of-type{
          font-size: 15px;
        }
      }
      img{
        max-width: 100%;
        width: 20%;
      }
    }
  }
}
// End of person 
// Start of articles
#articles{
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: 15px;
  background-image: url(./images/bg-ctaVideo.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 500px;
  .info{
    padding-top: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    h2{
      font-size: 34px;
      line-height: 48px;
      font-weight: 600;
      color: #ffffff;
    }
    p{
      font-size: 14px;
      line-height: 22px;
      font-weight: 400;
      color: #ffffff;
    }
  }
}
// End of articles
// Start of working 
#working{
  padding-top: 60px;
  padding-bottom: 60px;
  .boxs{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    .box{
      text-align: center;
      img{
        width: 30%;
        margin-bottom: 10px;
      }
      h3{
        line-height: 28px;
        font-size: 18px;
        font-weight: 600;
        color: #191919;
      }
      p{
        color: #666666;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
      }
    }
  }
}
// End of working 
// Start of process 
#process{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-image: url(./images/bg-cta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 500px;
  .info{
    text-align: center;
    padding-top: 100px;
    h2{
      font-size: 32px;
      font-weight: 600;
      line-height: 44px;
      color: #ffffff;
    }
    p{
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      color: #ffffff;
      margin-top: 25px;
    }
    .process-btn{
      background: #fff;
      margin-top: 25px;
      border-radius: 0;
      padding: 13px 50px;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 1px;
      font-weight: 600;
      cursor: pointer;
      outline: none;
      border: none;
      color: #191919;
    }
  }
}
// End of process
// Start of design 
#design{
  padding-top: 60px;
  padding-bottom: 60px;
  .content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    margin-top: 50px;
    .content1 , .content2{
      .box{
        img{
          width: 80px;
          margin-bottom: 15px;
        }
        h3{
          font-size: 18px;
          line-height: 28px;
          color: #191919;
          font-weight: 600;
        }
        p{
          font-size: 18px;
          line-height: 28px;
          color: #666666;
          font-weight: 400;
        }
      }
    }
    .image{
      img{
        margin-bottom: 20px;
      }
    }
  }
}
// End of design 
// Start of Clients 
#clients{
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-image: url(./images/bg-clients.png);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  .client{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    img{
      margin-bottom: 20px;
    }
  }
}
// End of Clients 
// strat of team 
#Team{
  padding-top: 60px;
  padding-bottom: 60px;
  .teams{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 15px;
    flex-wrap: wrap;
    .team{
      text-align: center;
      margin-bottom: 20px;
      h3{
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
        color: #191919;
        margin-top: 20px;
        margin-bottom: 0;
      }
      p{
        font-size: 14px;
        font-weight: 400;
        line-height: 26px;
        color: #666666;
        margin: 0;
        margin-bottom: 6px;
      }
      .social{
        img{
          width: 25px;
          margin-left: 5px;
        }
      }
    }
  }
}
// end of team 
// start of testimonials
#testimonials{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-image: url(./images/bg-testimonial.png);
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  background-position: center;
  .info{
    text-align: center;
    h1{
        font-size: 34px;
        line-height: 48px;
        color: #191919;
        font-weight: 600;
    }
    p{
      font-size: 14px;
      font-weight: 400;
      line-height: 22px;
      color: #191919;
    }
    img{
      border-radius: 50%;
      margin: 20px 0 20px 0;
    }
    h3{
      font-size: 18px;
      font-weight: 700;
      line-height: 22px;
      color: #191919;
    }
    h4{
      font-size: 14px;
      font-weight: 700;
      line-height: 22px;
      color: #191919;
    }
  }
}
// End of testimonials
// start of protfolio
#protfolio{
  padding-top: 60px;
  padding-bottom: 60px;
  .contents{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    .content{
      text-align: center;
      margin-top: 20px;
      img{
        width: 100%;
        max-width: 100%;
        border-radius: 10px;
      }
      h3{
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
        color: #191919;
        margin-top: 20px;
      }
      h5{
        font-size: 13px;
        line-height: 20px;
        font-weight: 600;
        color: #7f8c8d;
      }
    }
  }
} 
// end of protfolio
// start of text 
#text{
  background-color: #191919;
  max-height: 200px;
  max-width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  .info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    h1{
      font-size: 28px;
      font-weight: 600;
      line-height: 40px;
      color: #ffffff
    }
  }
}
// end of text 
// start of plans 
#plans{
  padding-top: 60px;
  padding-bottom: 60px;
  .plan1{
    margin-top: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    .plan.one , .plan.two{
      border: 1px solid #eee;
      padding: 50px;
      margin-bottom: 10px;
      h3{
        font-size: 20px;
        line-height: 28px;
        font-weight: 700;
        color: #191919;
      }
      h1{
        font-size: 54px;
        line-height: 64px;
        font-weight: 600;
        color: #191919;
      }
      h5{
        font-size: 14px;
        line-height: 26px;
        font-weight: 700;
        color: #191919;
      }
      ul{
        li{
          margin-top: 15px;
          font-size: 14px;
          line-height: 40px;
          font-weight: 400;
          color: #666666;
        }
      }
      .plan-btn{
        background: #191919;
        color: #fff;
        padding: 13px 35px;
        margin-bottom: 5px;
      }
    }
    .plan.one{
      ul{
        li{
          &:nth-child(3), &:nth-child(4){
            text-decoration: line-through;
          }
        }
      }
    }
  }

  .plan2{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    .plan.one , .plan.two , .plan.three{
      border: 1px solid #eee;
      padding: 50px;
      margin-bottom: 10px;
      h3{
          font-size: 20px;
          line-height: 28px;
          font-weight: 700;
          color: #191919;
      }
      h1{
        font-size: 54px;
        line-height: 64px;
        font-weight: 600;
        color: #191919;
      }
      h5{
        font-size: 14px;
        line-height: 26px;
        font-weight: 700;
        color: #191919;
      }
      ul{
        li{
          margin-top: 15px;
          font-size: 14px;
          line-height: 40px;
          font-weight: 400;
          color: #666666;
        }
      }
      .plan-btn{
        background: #191919;
        color: #fff;
        padding: 13px 35px;
        margin-bottom: 5px;
      }
    }
    .plan.one{
      ul{
        li{
          &:nth-child(3), &:nth-child(4){
            text-decoration: line-through;
          }
        }
      }
    }
  }
}
// end of plans 
// Start of contact 
#contact{
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  background-image: url(./images/bg-cta.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  max-width: 100%;
  min-height: 500px;
  .info{
    text-align: center;
    padding-top: 130px;
    h1{
      font-size: 28px;
      font-weight: 600;
      line-height: 46px;
      color: #ffffff;
    }
    .contact-btn{
      background: #fff;
      margin-top: 25px;
      border-radius: 0;
      padding: 13px 50px;
      font-size: 14px;
      line-height: 24px;
      letter-spacing: 1px;
      font-weight: 600;
      cursor: pointer;
      outline: none;
      border: none;
      color: #191919;
    }
  }
}
// End of contact
// start of blog
#blog{
  padding-top: 60px;
  padding-bottom: 60px;
  .boxs{
    margin-top: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    .box{
      margin-bottom: 20px;
      img{
        max-width: 100%;
        border-radius: 10px;
      }
      h3{
        font-size: 14px;
        line-height: 26px;
        font-weight: 600;
        color: #7f8c8d;
        margin-top: 15px;
      }
      h2{
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
        color: #191919;
      }
      p{
        font-size: 14px;
        line-height: 22px;
        font-weight: 400;
        color: #666666;
        max-width: 227px;
      }
      .blog-btn{
        background-color: #191919;
        color: #fff;
        padding: 13px 30px;
        margin: 0;
      }
    }
  }
} 
// end of blog 
// start of footer 
#footer{
  padding: 60px 0px;
  background-color: #191919;
  max-width: 100%;
  .info{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 40px;
    .content{
      img{
        width: 130px;
      +p{
          color: #939393;
          margin: 25px 0;
          max-width: 170px;
          font-weight: 400;
          font-size: 14px;
          line-height: 22px;
        }
      }

      .icons{
        display: flex;
        gap: 7px;
        svg{
          width: 20px;
          height: 20px;
          padding: 5px;
          color: #fff;
          border: 1px solid #ffffff;
          border-radius: 50%;
        }
      }
      &.information{
        margin: 15px 0;
        h3{
          font-size: 14px;
          font-weight: 700;
          line-height: 22px;
          color: #ffffff;
        }
        p{
          &:nth-of-type(1){
            color: #939393;
            margin-top: 25px;
            max-width: 170px;
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
          }
          &:nth-of-type(2){
            color: #939393;
            margin-top: 10px;
            margin-bottom: 0;
            font-weight: 400;
            font-size: 14px;
            margin-bottom: 0;
            line-height: 22px;
          }
          &:nth-of-type(3){
            color: #939393;
            margin-bottom: 0;
            font-weight: 400;
            font-size: 14px;
            margin-bottom: 0;
            line-height: 22px;
          }
        }
      }
      &.Links{
        margin: 15px 0;
        h3{
          font-size: 14px;
          font-weight: 700;
          line-height: 22px;
          color: #ffffff;
        }
        ul{
          li{
            color: #939393;
            font-size: 14px;
            line-height: 24px;
            font-weight: 400;
          }
        }
      }
    }
  }
  hr{
    background-color: #939393;
  }
  .copyright{
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    color: #939393;
    flex-wrap: wrap;
  }
}
// end of footer 
// #btn-top{
//   display: block;
//   position: fixed;
//   bottom: 30px;
//   right: 30px;
//   width: 40px;
//   height: 40px;
//   border-radius: 10px;
//   border: none;
//   font-size: 20px;
//   background: #666666;
//   color: #ffffff;
//   cursor: pointer;
//   display: none;
// }
@media (max-width: 768px){
  header{
    img{
      max-width: 100%;
    }
    .nav_toggle{
      display: inline-block;
      font-size: 32px;
      border: 0;
      color: #000;
      background-color: transparent;
      cursor: pointer;
    }
    #nav_toggle-close{
      display: none;
    }
    .navbar{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #fff;
      gap: 0;
      width: 100%;
      display: none;
      a{
        display: block;
        width: 100%;
      }
    }
  }
  #about{
    .about_container{
      display: grid;
      align-items: center;
      grid-template-columns: 1fr 1fr;
      .image{
        img{
          width: 100%;
        }
      }
    }
  }
  #services{
    .boxs{
      .box{
        flex: 1 1 20rem;
      }
    }
  }
  #info{
    .image{
      img{
        right: 0;
      }
    }
    .content{
      left: 5%;
      top: 56%;
    }
  }
  #Projects {
    .skills {
      .image{
        width: 50%;
        flex: auto;
      }
      .content{
        width: 50%;
      }
    }
  }
  #person{
    .info{
      gap: 20px;
      .image{
        img{
          width: 100%;
        }
      }
    }
  }
  #Team{
    .teams{
      display: grid;
      grid-template-columns: repeat(2,1fr);
    }
  }
}

@media (max-width: 991px){
  .links{
    margin-right: 0 !important;
  }
  #about{
    .about_container{
      display: grid;
      align-items: center;
      grid-template-columns: 1fr 1fr;
      .image{
        img{
          width: 100%;
        }
      }
    }
  }
  #services{
    .boxs{
      .box{
        flex: 1 1 20rem;
      }
    }
  }
  #info{
    .image{
      img{
        right: 0;
      }
    }
    .content{
      left: 5%;
      top: 56%;
    }
  }
  #Projects {
    .skills {
      .image{
        width: 50%;
        flex: auto;
      }
      .content{
        width: 50%;
      }
    }
  }
  #person{
    .info{
      gap: 20px;
      .image{
        img{
          width: 100%;
        }
      }
    }
  }
  #Team{
    .teams{
      display: grid;
      grid-template-columns: repeat(2,1fr);
    }
  }
  #plans{
    .plan2{
      justify-content: space-evenly;
    }
  }
}
@media (min-width: 350px) and (max-width: 767px){
  header{
    img{
      max-width: 100%;
    }
    .nav_toggle{
      display: inline-block;
      font-size: 32px;
      border: 0;
      color: #000;
      background-color: transparent;
      cursor: pointer;
    }
    #nav_toggle-close{
      display: none;
    }
    .navbar{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: #fff;
      gap: 0;
      width: 100%;
      display: none;
      a{
        display: block;
        width: 100%;
      }
    }
  }
  #home{
    .info{
      padding-top: 100px;
      .header-btn{
        padding: 13px 27px;
      }
    }
  }
  #about{
    .about_container{
      display: grid;
      align-items: center;
      grid-template-columns: 1fr;
      text-align: center;
      .image{
        margin-top: 20px;
        img{
          width: 100%;
        }
      }
    }
  }
  #services{
    .boxs{
      .box{
        flex: 1 1 20rem;
        justify-content: center;
        padding: 0;
      }
    }
  }
  #info{
    .image{
      img{
        top: 70%;
      }
    }
    .content{
      top: 23%;
      text-align: center;
      transform: translateY(-30%);
      h2{
        width: 100%;
      }
      hr{
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;
      }
      p{
        width: 100%;
      }
      .info-btn{
        margin: 0;
      }
    }
  }
  #Projects {
    .skills {
      .image{
        width: 100%;
        img{
          width: 100%;
        }
      }
      .content{
        width: 100%;
        margin-top: 20px;
      }
    }
  }
  #person{
    .info{
      grid-template-columns: 1fr;
      gap: 20px;
      .image{
        width: 100%;
        img{
          width: 100%;
        }
      }
    }
  }
  #articles{
    .info{
      padding-top: 100px;
    }
  }
  #working{
    .boxs{
      flex-wrap: wrap;
    }
  }
  #process {
    .info{
      padding-top: 70px;
    }
  }
  #design{
    .content{
      display: block;
    }
  }
  #Team{
    .teams{
      display: flex;
    }
  }
  #protfolio{
    .contents{
      grid-template-columns: 1fr;
    }
  }
  #text{
    padding-top: 20px;
    .info{
    justify-content: center;
      h1{
        text-align: center;
      }
    }
  }
  #plans{
  .plan1 , .plan2{
      justify-content: center;
      display: block;
    }
  }
  #contact .info{
    padding-top: 80px;
  }
  #footer{
    .info{
      flex-direction: column;
    }
  }
  .content{
    text-align: center;
    img{
      width: 130px;
    +p{
        color: #939393;
        margin: auto;
        margin: 25px 0;
        max-width: 170px;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
      }
    }
    &.information{
      margin-top: 25px !important;
      h3{
        font-size: 14px;
        font-weight: 700;
        line-height: 22px;
        color: #ffffff;
      }
      p{
        &:nth-of-type(1){
          margin: auto;
          margin-top: 0 !important;
          color: #939393;
          max-width: 170px;
          font-weight: 400;
          font-size: 14px;
          line-height: 22px;
        }
      }
    }
    &.Links{
      margin: 15px 0;
      h3{
        font-size: 14px;
        font-weight: 700;
        line-height: 22px;
        color: #ffffff;
      }
      ul{
        li{
          color: #939393;
          font-size: 14px;
          line-height: 24px;
          font-weight: 400;
        }
      }
    }
  }

}