*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
.container{
  width: 100%;
  background: #000000;
  text-align: center;
}
.nav-bar{
  background: #222222;
  position: fixed;
  left: 0;
  height: 100vh;
}
.nav-bar ul li{
  padding: 15px 0;
  text-align: center;
  color: white;
  font-weight: bold;
  list-style: none;
}
.nav-bar ul li a{
  text-decoration: none;
  color:#ffffff;
}
.nav-bar ul li:nth-child(1){
  padding: 0;
  line-height: 0;
}
.nav-bar ul li:nth-child(2){
  background: #000000;
}
.nav-bar ul li i{
  margin-bottom: 10px;
  font-size: 1.4rem;
}
.nav-bar ul li img{
  width: 110px;
  height: 80%;
}

.nav-bar ul li:hover{
  background: #000000;
}
.nav-bar ul li:nth-child(2):hover{
  background: #cccccc;
  color: #000;
}
.nav-bar ul li:nth-child(1):hover {
  background: #222222;
}
/*nav bar end*/


.main-contant{
  width: 100%;
  color: white;
  padding-left: 105px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
/* headding section*/
.main-contant .heading h1{
  text-align: center;
  padding: 60px 0 30px 0;
  font-size: 3.2rem;
}

/* hero section */
.main-contant .hero img{
  background-size: cover;
  background-repeat: no-repeat;
  width: 80%;
}

.section{
  padding-bottom: 30px;
  width: 80%;
}

/* all section */
.main-contant .my-section,.main-contant .skill-section,.main-contant .price,.main-contant .my-photo,.main-contant .contact{
  text-align: left;
  position: relative;
}
.my-section h3:after,.skill-section h3:after,.my-photo h3:after,.contact h3:after{
  content:"";
  position: absolute;
  top: 40px;
  left: 0;
  width: 150px;
  border: 1px solid gray;
}
.main-contant .my-section p{
  text-align: justify;
  padding: 30px 0;
  color: gray;
}

/*skill section */
.main-contant .skill-section h3{
  padding-bottom: 30px;
}
.main-contant .skill-section .skill-item p{
  padding: 10px 0;
}
.main-contant .skill-section .skill-item div{
  width: 100%;
  height: 30px;
  background: linear-gradient(to right, gray 95%, white 5%);
}
.main-contant .skill-section .skill-item .web-design{
   background: linear-gradient(to right, gray 90%, white 10%);
}
.main-contant .skill-section .skill-item .photoshop{
  background: linear-gradient(to right, gray 80%, white 20%);
}

/*resume section */
.main-contant .resume-section{
  padding: 30px;
  background: rgba(255, 255, 255,.8);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.main-contant .resume-btn{
  width: 80%;
  margin: 30px 0;
  text-align: left;
}
.main-contant .resume-btn button{
 padding: 15px 8px;
 font-weight: 500;
}
.resume-btn button:hover{
  background: #cccccc;
  cursor: pointer;
}

/* price section*/
.main-contant .price h3{
  padding: 20px 0;
}
.main-contant .price .price-table{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  text-align: center;
}
.price .price-table .price-data{
  width: 49%;
  background: #000000;
  color: black;
}
.price-data h2{
  font-weight: 700;
  background: #3A3A3A;
  padding: 20px 0;
  color: #999999;
}
.price-data span {
  padding: 15px 0;
  display: block;
  background: #999999;
  border-bottom: 1px solid #3A3A3A;
}
.price-data span b{
  font-size: 23px;
  font-weight: 500;
}
.price-data span:nth-child(7){
  background: #909090;
}
.price-data button{
  padding: 15px 25px;
  background: #999999;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 5px;
}
.price-data:hover span,.price-data:hover button{
  background: #ffffff;
}
.price-data:hover h2{
  background: #616161;
  color: #fff;
}
.price-data:hover span:nth-child(7){
  background: #F1F1F1;
}
.price-data button:hover{
  background: #000;
  color: #fff;
  cursor: pointer;
}

/* my reputation section*/
.main-contant .reputation{
  text-align: left;
}
.reputation h3{
  padding-bottom: 30px;
}
.reputation .reputation-data{
  display: flex;
  padding-bottom: 25px;
}
.reputation .reputation-data img{
  height: 70px;
  width: auto;
  border-radius: 50%;
}
.reputation .reputation-data p{
  padding: 7px 30px;
  color: #757575;
}


/* my photo */
.main-contant .my-photo .all-photo{
  display: flex;
  justify-content: space-around;
  padding: 40px 0;
}
.main-contant .my-photo .all-photo .left,
.main-contant .my-photo .all-photo .right{
  width: 49%;
}
.my-photo .all-photo img{
  width: 100%;
}


/* contact section */
.main-contant .contact .contact-mathod{
  padding: 40px 0 20px 0;
}
.contact .contact-mathod span{
  display: block;
  padding: 10px;
  color: gray;
}
.contact .contact-mathod span i{
  font-size: 1.8rem;
  color: #fff;
}

.contact .contact-mathod p{
  padding-bottom: 10px;
  color: grey;
}
.contact-mathod input{
  width: 100%;
  padding: 15px 5px;
  margin-bottom: 10px;
  background: #F1F1F1;
}
.contact-mathod button{
  padding: 15px 8px;
  background: #F1F1F1;
}

h3{
  color: #dddddd;
}