*{
  margin: 0;
  color: white;
  padding: 0px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  box-sizing: border-box;
}

body{
  background-color: black;
  color: fff;

}
html{
  scroll-behavior: smooth;
}
#header{
  width: 100%;
  height: 100vh;
  background-image: url(images/new.jpg);
  background-size: cover;
  background-position: center;

}
.container{
  padding: 10px 10%;
}
nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;



}
#logo{
  height: 65px;;
}
nav ul li {
  display: inline-block;
  list-style: none;
  margin: 10px 20px;

}
nav ul li a{
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 18px;
  position: relative;

}
nav ul li a::after{
  content: ' ';
  width: 0;
  height: 3px;
  background: rgb(255, 197, 88);
  position: absolute;
  left: 0;
  bottom: -6px;
  transition: 0.5s;

}
nav ul li a:hover::after{
  width: 100%;

}


.header-text{
  color:white;
  margin-top: 15%;
  font-size: 30px;
}
.header-text h1{
  font-size: 60px;
  margin-top: 20px;

}
.header-text h1 span{
  color: rgb(255, 197, 88);
}


/* about */

#about{
  background-color: rgb(22, 22, 22);
  padding: 88px 0px;
  color: white;
}
.row{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.about-col-1{
  flex-basis: 35%;
}
/* .about-col-1 img{
  height: 500px;
} */
#image{
height: 500px;
border-radius: 50px;

}

.about-col-2{
  flex-basis: 60%;
}
#para{
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
}
.sub-title{
  font-size: 60px;
  font-weight: 600px;
  color: white;
}


.tab-titles{
  display: flex;
  margin: 20px 0 40px;
}

.tab-links{
  margin-right: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.tab-links::after{
  content: '';
  width: 0;
  height: 3px;
  background: rgb(255, 197, 88);
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;


}

.tab-links:hover::after{
  width: 100%;
}


.tab-links.active-links::after{
  width: 50px;
}
.tab-content ul li {
  list-style: none;
  margin: 20px;

}
.tab-contents ul li span{
  color: rgb(255, 197, 88);
  font-size: 21px;

}

.tab-contents{
  display: none;
}

.tab-contents.active-tab{
  display: block;
}

/* project */

#projects{
  padding: 30px 0;
  width: 100%;
}
.my-projects-list{
  display:   grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 40px;
  margin-top: 50px;
}
.pro-dis{
  background: rgb(36, 36, 36);
  /* padding: 40px; */
  font-size: 15px;
  font-weight: 300;
  border-radius: 5px;
  transition: background 0.5s , transform 0.5s;
}
.dis h2{
  color:rgb(255, 197, 88) ;
  text-align: center;
}
.my-projects-list div img{
  border-radius: 5px;
  width: 100%;
}
.dis{
  padding: 40px;
  text-align: center;
}

.btn{
  text-decoration: none;
  color: white;
  font-size: 12px;
  margin-top: 20px;
  display: inline-block;
  border: 1px solid white;
  border-radius: 5px;
  padding: 10px;
  transition: 0.5s;
}
.btn:hover{
 background-color:rgb(255, 197, 88) ;
 color: black;
 border: none;

}
.pro-dis:hover{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  background: #27a3d4;
  transform: translate(0px,-10px);

}

/* contact */
#contact{
  margin-top: 100px;
  padding: 30px 0;
  width: 100%;
  height: 100vh;

}
.contact-left{
  flex-basis: 35%;

}

.contact-right{
  flex-basis: 60%;

}

.contact-left p{
  margin-top:30px ;

}
.contact-left p i{
  color:rgb(255, 197, 88)  ;
  margin: 15px;
  font-size: 20px;
}
.social-icon a{
  text-decoration: none;
  font-size: 30px;
  margin: 30px 15px;
  color:rgb(255, 197, 88)  ;
  display: inline-block;
  transition: 0.5s;
}
.social-icon a:hover{
  color: #ff004f;
  transform: translate(-5px);
}

.btn.btn2{
   display: inline-block;
   background-color: none;
}
.contact-left form{
  width: 100%;

}
form input, form textarea{
  width: 100%;
  border: 0;
  outline: none;
  background:#262626 ;
  padding: 15px;
  margin: 15px 0;
  font-size: 18px;

}
.cbtn{
  background-color: #ff004f;
  font-size: 18px;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: 0.5s;
}

.cbtn:hover{
  background-color: rgb(255, 197, 88) ;
  color: black;
}



/* responcive  */

nav .fas{
  display:none;

}


@media only screen and (max-width:600px){

  #header{
    background-image: url("/images/newphone-back.jpg");
  }
  .header-text{

    margin-top: 50%;
    font-size: 16px;
  }
  .header-text h1{
    font-size: 30px;
  }

  
nav .fas{
  color: white;
  display:block;
  font-size: 25px;
  cursor: pointer;

}
nav ul {
  background: #ff004f;
  position: fixed;
  top: 0;
  right: -200px;
  width: 200px;
  height: 100vh;
  padding-top:50px ;
  z-index: 2;
  transition: right 0.5s;
}
nav ul li{
  display: block;
  margin: 25px;
}


nav ul .fas{
  font-style: normal;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  position: absolute;
  top: 25px;
  left: 25px;
  cursor: pointer;

}
.sub-title{
  font-size: 40px;
  font-family: 'Times New Roman', Times, serif;
}
#about{
  width: 100%;
}
.about-col-1,.about-col-2{
  flex-basis: 100%;
  width: 100%;
}
.about-col-1{
  margin-bottom:none;
  align-items: center;
}


.contact-left,.contact-right{
  flex-basis: 100%;

}
.contact-right{
  margin-top: 100px;
}
}