@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@1,300&family=Montserrat&family=Nunito+Sans:ital,wght@1,600&family=Roboto:wght@100;400;500;700&family=Rubik:wght@500&family=Source+Code+Pro:wght@300&family=Source+Serif+Pro&family=Tapestry&display=swap');

:root{
    --main-color:#e38528;
}


*{
font-family: 'Roboto',sans-serif;
margin: 0;padding: 0;
box-sizing: border-box;
outline: none;
border: none;
text-decoration: none;
text-transform: capitalize;
transition: all .2s linear;
line-height: 1.5;

}
html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
body{
    background: #fcf2e8;
    padding-left: 30rem;
}
header{
    position: fixed;
    top: 0;
    left: 0;bottom: 0;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index:1000;
    flex-flow: column;
    padding: 8rem 2rem;
    width: 30rem;
}
header .logo{
    text-transform: uppercase;
    color: #fff;
    font-size: 3rem;
    font-weight: bolder;
    color: var(--main-color );
}
header .navbar a{
    display: block;
    font-size: 2rem;
    color: #fff;
    margin: 2rem 0;
}
header .navbar a:hover{
    letter-spacing: .2rem;
    color: var(--main-color);
}
header .follow a{
    font-size: 2.5rem;
    color:#fff;
    margin: .7rem;
}
header .follow a:hover{
    color: var(--main-color);
}
#menu-bars{
    position: fixed;
    top:1rem;right: 1rem;
    z-index: 1000;
    background: var(--main-color);
    color: #fff;
    border-radius: .5rem;
    padding: 1rem 1.5rem;
    font-size: 3rem;
    cursor: pointer;
    display: none;
}

section{
    padding: 1rem 5%;
    min-height: 100vh;
}
.home{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.home .image{
    flex: 1 1 40rem;
}
.home .image  img{
    width: 100%;
    height: 400px;
}
.home .image img{
    height: 580px;
    width: 100%;
    object-fit: cover;
    border:  .1rem solid #fff;
    border-radius: 3rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}

.home .content{
    flex: 1 1 40rem;
}
.home .content .hi{
   font-size: 2rem;
   color: var(--main-color);
}
.home .content h3{
   font-size: 4.5rem;
   color: #111;
   text-transform: uppercase;
}

.home .content h3 span{
   color: var(--main-color);
   text-transform: uppercase;
 }
 .home .content .info{
    font-size: 2.5rem;
    color: #111;
    padding: .5rem;
    
 }
 .home .content .text{
    font-size: 1.7rem;
    color: #666;
    padding: .5rem 0;

 }
 .btn{
    display: inline-block;
    margin-top: 1rem;
    padding: .8rem 3rem;
    background: var(--main-color);
    color: #fff;
    cursor: pointer;
    font-size: 1.7rem;
 }

.btn:hover{
    background: #111;
    letter-spacing: .2rem;
}

/* about sections */
.heading{
    font-size: 4rem;
    padding-bottom:1rem;
    color: #111;
    text-transform: uppercase;
}
.heading span{
    color: var(--main-color);
    text-transform: uppercase;
}

.about .row-1{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 2rem;
}
.about .row-1 .image{
    flex:1 1 25rem;
}
.about .row-1 .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border:  1rem solid #fff;
    border-radius: .5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
}
.about .row-1 .content{
    flex:1 1 50rem;
}
.about .row-1 .content h3{
    color: #333;
    font-size: 3.5rem;
    
}
.about .row-1 .content p{
    color: #666;
    font-size: 1.7rem;
    padding: .5rem 0;

}
.about .row-1 .content .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: .5rem 0;

}
.about .row-1 .content .box-container .box{
    flex: 1 1 20rem;
}
.about .row-1 .content .box-container .box span{
   color: var(--main-color);
}

/* ==================================================================== */
.about .row-2{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}
.about .row-2 .skills{
   flex: 1 1 40rem;
}
.about .row-2 .skills .progres{
   padding: 1rem 0;
}
 .about .row-2 .skills .progres h3{
  display: flex;
  justify-content: space-between;
  padding: .7rem 0;
  font-size: 1.7rem;
  color: #111;
  font-weight: 400;
}

.about .row-2 .skills .progres .bar{
    width: 100%;
    background: #ccc;
    overflow: hidden;
    height: 1rem;
    border-radius: 50rem;
 }
 .about .row-2 .skills .progres .bar span{
    display: block;
    height: 100%;
    background: var(--main-color);
 }
/* for percentage bar */
.about .row-2 .skills .progres:nth-child(1) .bar span{
    width: 85%;
}
.about .row-2 .skills .progres:nth-child(2) .bar span{
    width: 80%;
}
.about .row-2 .skills .progres:nth-child(3) .bar span{
    width: 75%;
}
.about .row-2 .skills .progres:nth-child(4) .bar span{
    width: 90%;
}

 /* service sections here state */
 .service .boxcontainer{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
 }
 .service .boxcontainer .box{
   flex: 1 1 30rem;
   text-align: center;
   padding: 2rem;
   background: #fff;
   border-radius: .5rem;
   box-shadow: .5rem 1rem rgba(0,0,0,.1);

 }
 .service .boxcontainer .box i{
   height: 6rem;
   width: 6rem;
   line-height: 6rem;
   color: #fff;
   background:rgb(92, 88, 88) ;
   border-radius: 50%;
}

.service .boxcontainer .box h3{
    color: #444;
    font-size: 2.2rem;
    padding-top: 1rem;
}
.service .boxcontainer .box p{
    color: #444;
    font-size: 1.5rem;
    padding-top: 1rem;
}

/* experience starts here */
.experience .boxcontainer{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.experience .boxcontainer .box{
    position: relative;
    flex: 1 1 33rem;
    border-left: .2rem solid var(--main-color);
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
}
.experience .boxcontainer .box .content{
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 .5 1 rgb(0,0,0,.1);
    border-radius: .5rem;
}
.experience .boxcontainer .box span{
    color: #fff;
    font-size: 2rem;
    background: var(--main-color);
    border-radius:1rem;
    padding:.4rem;
}
.experience .boxcontainer .box .content h3{
    font-size: 2.5rem;
    padding: .5rem 0;
    color: #111;

}
.experience .boxcontainer .box .content p{
    font-size: 1.5rem;
    padding: .5rem;
    color: #666;
}

/* portfolio sections starts here */
.portfolio .boxcontainer{
    display: flex;
    flex-wrap: wrap;
    gap:1.5rem;
}
.portfolio .boxcontainer .box{
    flex: 1 1 25rem;
    height: 25rem;
    position: relative;
    overflow: hidden;
    border: 1rem solid #fff;
    box-shadow: 0 .5 1rem rgba(0,0,0,.1);
}
.portfolio .boxcontainer .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: .5rem;
    /* position: relative; */
}
.portfolio .boxcontainer .box h3{
    position: absolute;
    bottom: .5rem;left: 1rem;
    font-size: 2.5rem;
    color: #333;
    text-transform: uppercase;
}
.portfolio .boxcontainer .box .icon{
    position: absolute;
    top: 1rem;
    right: 1rem;
}
.portfolio .boxcontainer .box .icon a{
    display: block;
    height: 4rem;
    width: 4rem; 
    border-radius: .5rem;
    background: #eee;
    color: #333;
    font-size: 1.7rem;
    line-height: 4rem;
    text-align: center;
    margin-bottom: 1rem;
}

.portfolio .boxcontainer .box .icon a:hover{
    background: var(--main-color);
    color: #fff;
}
.portfolio .boxcontainer .box:hover img{
    height: 70%;
    width: 70%;
}

/* contact sections starts here  */
.contact .container{
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}
.contact .container .icons{
    flex: 1 1 25rem;
    text-align: center;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
}
.contact .container .icons i{
    height:5rem;
    width: 5rem;
    line-height: 5rem;
    font-size: 2rem;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
}
.contact .container .icons h3{
    color: #111;
    font-size: 2rem;
    padding: .5rem 0;
}
.contact .container .icons h3{
 color: #666;
 font-size: 1.7rem;

}

.contact .row{
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    
}
.contact .row form{
   flex:1 1 55rem;
   background: #fff;
   padding:0 2rem;
   box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);

}
.contact .row .map{
    flex: 1 1 25rem;
    border: 1rem solid #fff;
    padding:0 2rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    border-radius: .5rem;
    width: 100%;
}

.contact .row form .box,.contact .row form textarea{
    width: 100%;
    border-bottom: .1rem solid #333;
    text-transform: none;
    font-size: 1.7rem;
    padding: 1rem 0;
    margin: 1rem 0;
}
.contact .row form .box:focus,.contact .row form textarea:focus{
    border-color: var(--main-color);

}
.contact .row form textarea{
    height: 20rem;
    resize: none;
}

.contact .row form .btn{
    margin-top: 0;
    margin-bottom: 1.5rem;

}
footer{
    margin-top: 2rem;
    font-size: 2rem;
    padding: 2.5rem;
    text-align:center;
    color: #666;
    background-color: #fff;
}
footer span{
    color: var(--main-color);

}
/* --------------------- */










/* media query */
@media(max-width:991px)
{
    html{
        font-size:55%; 
    }
    body{
        padding: 0;

    }
    #menu-bars{
        display: initial;
    }
    header{
        left:-120%;
    }
    header.active{
        left: 0%;
    }
/* media qeuery 2 */
/* @media(max-width:450px)
{
    html{
        font-size:50%; 
    }
    body{
    width:100%;

    }
} */



}