@media only screen and (max-width: 1000px){
  *{
    font-family: Arial, sans-serif;
  }
  #header{
    background-image: url(img/small-screen-img.jpg);
    height: 700px;
  }
  .header-text{
    font-size: 30px;
  }
  .header-text h1{
    font-size: 55px;
  }
  nav .fa-solid{
    display: block;
    font-size: 60px;
  }
  nav ul{
    background: #ff00519d;
    position: fixed;
    top: 0;
    right: -200px;
    width: 200px;
    height: 100vh;
    font-size: 18px;
    padding-top: 40px;
    z-index: 1000;
    transition: right 0.5s;
  }
  nav ul li{
    display: block;
    margin: 50px;
  }
  nav ul li a{
    font-size: 30px;
  }
  nav ul .fa-solid{
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 30px;
    cursor: pointer;
  }
  nav ul li a::after{
    content: '';
    width: 0;
    height: 4px;
    background: white;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.5s;
  }

  /*---------------------About------------------------*/
  .sub-title{
    font-size: 38px;
  }
  .about-col-1, .about-col-2{
    flex-basis: 100%;
  }
  .about-col-1{
    margin: 60px 0;
  }
  .about-col-1 img {
    height: 1100px;
  }
  .about-col-2{
    font-size: 18px;
  }
  .tab-links{
    font-size: 45px;
    margin: 15px 45px;
  }
  .contact-left, .contact-right{
    flex-basis: 100%;
  }
  
  /*---------------------Service--------------------------*/
  .services-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 50px;
  }
  .services-list div {
    padding: 45px 30px;
  }

  /*---------------------My Work---------------------------*/
  .work-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5px;
    margin-top: 35px;
  }
  .social-icons a{
    font-size: 40px;
  }
  .copyright{
    font-size: 13px;
  }


  /*--------------------Contact Me------------------------*/
  .contact p, .btn2{
    font-size: 28px;
  }
}