*{ margin: 0; 
    padding: 0;
    border: none;
    outline: none;
    box-sizing: border-box; 
    font-family: 'Nunito', sans-serif;
    text-transform: capitalize;
    transition: all .2s linear;
}

:root{--yellow:#f9ca24;}
/* :root{--yellow:yellowgreen;} */

*::selection{background: var(--yellow);color: #333;}

html{
    font-size: 62.5%;
    overflow-x: hidden;
}


html::-webkit-scrollbar{
    width: 1.4rem;
}
html::-webkit-scrollbar-track{
    background: #222;
}
html::-webkit-scrollbar-thumb{
    background: var(--yellow);
}


a{ text-decoration: none;}
ul{list-style: none;padding: 0;}
button{ cursor: pointer;}
abbr[title]{ cursor: help;}
[disabled]{ cursor: not-allowed; }
img{ vertical-align: bottom;}

body{
    background: #111;
    overflow-x: hidden;
    padding-left: 35rem;
}

@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

/* header */
header{
    position: fixed;
    left: 0;top: 0;
    z-index: 1000;
    height: 100%;
    width: 35rem;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
}
header .user img{
    height: 10rem;
    width: 10rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: .3rem solid var(--yellow);
}
header .user .name{
    font-size: 40px;
    color: #fff;   
}
header .user .know{
    font-size: 1.5rem;
    color: #eee;
}
header .navbar{width: 100%;}
header .navbar ul{padding: 10px 40px;}
/* header .navbar ul li{} */
header .navbar ul li a{display: block;padding: 14px;margin: 20px 0;background: #333;color: #fff;font-size: 24px;border-radius: 5rem;}
header .navbar ul li a:hover{
    background: var(--yellow);
}

/* toggle */
#menu{
    position: fixed;
    top: 2rem;
    right: 2rem;
    background:#333;
    color: #fff;
    cursor: pointer;
    font-size: 2.5rem;
    padding: 1rem 1.5rem;
    z-index: 1000;
    display: none;
}

/* home section */
section{
    min-height: 100vh;
    padding:1rem;
}
.home{
    display: flex;
    justify-content: center;
    flex-flow: column;
    padding: 0 15rem;
}
.home p{
    font-size: 3rem;
    color: #fff;
}
.home .young{
    font-size: 2rem;
    color: #eee;
}
.home h1{
    font-size: 5rem;
    color: #fff;
}
.home h1 span{
    color: var(--yellow);
}
.btn{
    padding: .7rem 3rem;
    background: #333;
    color: #fff;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 2rem;
    border-radius: 2rem;
}
.btn i{
    padding: 0 .5rem;
    font-size: 1.8rem;
}
.btn:hover{
    background: var(--yellow);
}

/* about section */
.heading{
    text-align: center;
    margin:0 6rem;
    font-size: 4rem;
    padding: 1rem;
    border-bottom: .1rem solid #fff4  ;
    color: #fff;
}
.heading span{
    color: var(--yellow);
}
.about .row{
    display: flex;
    align-items: center;
    justify-content:center;
    flex-wrap: wrap;
    padding: 1rem 0;
}
.about .row .info{
    flex: 1 1 48rem;
    padding: 2rem 1rem;
    padding-left: 6rem;
}
.about .row .info h3{
    font-size: 2rem;
    color: var(--yellow);
    padding: 1rem 0;
    font-weight: normal;
    text-transform: none;
}
.about .row .info h3 span{
    color: #eee;
    padding: 0 .5rem;
}

/* project */
.project .row{
    display: flex;
    text-align: center;
    justify-content: center;
}
.project h2{
    color: #fff;
    font-size: 2rem;
    margin: 2rem;
}
.project a img{
    /* width: 40%; */
    display: inline;
    height: 300px;
    padding: 10px 0;
}
.project a{
    color: #fff;
    font-size: 1.5rem;
    text-transform: none;
    
}


/*resume  */
.resume .row{
    text-align: center;
    padding: 15rem 0;
    margin-bottom: 80vh;
}
.resume .row .res p{
    font-size: 3rem;
    color: #fff;
}
.resume img{
    margin-top: 40px;
}

/* contact */
.contact .row{
     display: flex;
     align-items: center;
     justify-content: center;
     flex-flow: wrap;
}
.contact .row .content{
    flex: 1 1 30rem;
    padding: 4rem;
    padding-bottom: 0;
}
.contact .row form{
    flex: 1 1 45rem;
    padding: 2rem;
    margin: 2rem;
    margin-bottom: 4rem;
}
.contact .row form .box{ 
    padding:1.5rem;
    margin: 1rem 0;
    background: #333;
    color: #fff;
    text-transform: none;
    font-size: 1.7rem;
    width: 100%;
}
.contact .row form .box::placeholder{ 
    text-transform: none;
}

.contact .row form .message{
    height: 15rem;
    resize: none;
}
.contact .row .content .title{
    text-transform: uppercase;
    color: #fff;
    font-size: 3rem;
    padding-bottom: 2rem;
}
.contact .row .content .info h3{
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #eee;
    text-transform: none;
    padding: 1rem 0;
    font-weight: normal;
}
.contact .row .content .info h3 i{
    padding-right: 1rem;
    color: var(--yellow);
}

/* top scroll*/
.top{
    position: fixed;
    bottom: 1rem;
    right: 0rem;
    z-index: 100;
    display: none;
}
.top img{
    height: 50px;
    width: 70px;
}




/* media query */
@media  (max-width:1200px){
    html{font-size: 50%;}
    header .navbar ul li a{display: block;padding: 14px;
        margin: 20px 0;background: #333;color: #fff;font-size: 16px;border-radius: 5rem;}
    .home{padding: 1rem 4rem;}
}
@media  (max-width:991px){
    header{left: -120%;}
    #menu{display: block;}
    header.toggle{left: 0%;}
    header .navbar ul li a{display: block;padding: 14px;
        margin: 20px 0;background: #333;color: #fff;font-size: 16px;border-radius: 5rem;}
        body{padding: 0;}
    }
   
    
@media  (max-width:768px){
    html{font-size: 50%;}
    
}


@media (max-width:700px){
    .project .row{
        display: block;
    }
}

@media  (max-width:400px){
    header{left: 100vw}
   .contact .row form{margin: 3rem 0;}
   /* .project .row{display: inline;} */
}





@media screen and (max-width:300px) {
    .phone{
        bottom: 146px !important;
        width: 26px !important;
        height: 26px !important;
        padding-top: 4px !important;
        font-size: 14px !important;
    }
    .watsapp{
        width: 26px !important;
        height: 26px !important;
        padding-top: 6px;
        font-size: 18px !important;
    }
    /* .insta{
        bottom: 120px !important;
        width: 26px !important;
        height: 26px !important;
        padding-top: 4px !important;
        font-size: 18px !important;
    } */
    /* .mail{
        bottom: 172px !important;
        width: 26px !important;
        height: 26px !important;
        padding-top: 4px !important;
        font-size: 18px !important;
    }
    .facebook{
        bottom: 198px !important;
        width: 26px !important;
        height: 26px !important;
        padding-top: 6px;
        font-size: 18px !important;
    } */
    .naukri{
        bottom: 228px !important;
        width: 26px !important;
        height: 26px !important;
        padding-top: 6px;
        font-size: 18px !important;
    }
}

/* .insta{
    position: fixed;
    bottom: 128px;
    right: 0px;
    background: linear-gradient(to left, #B2234E ,#98286B,#683390);
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 6px;
    font-size: 22px;
    z-index: 2;
} */
/* Side bar icon */
.phone{
    position: fixed;
    bottom: 165px;
    right: 0px;
    /* background: #3BB341; */
    color: #009688;
    background: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 6px;
    font-size: 18px;
    z-index: 2;
}
.watsapp{
    position: fixed;
    bottom: 133px;
    right: 0px;
    background: #3BB341;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 4px;
    font-size: 24px;
    z-index: 2;
}
.naukri{
    position: fixed;
    bottom: 105px;
    right: 0px;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 4px;
    font-size: 20px;
    z-index: 2;
}
/* .mail{
    position: fixed;
    bottom: 193px;
    right: 0px;
    background: #CC4133;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 4px;
    font-size: 20px;
    z-index: 2;
} */
/* .facebook{
    position: fixed;
    bottom: 226px;
    right: 0px;
    background: #4064AC;
    color: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    padding-top: 4px;
    font-size: 20px;
    z-index: 2;
} */

.insta1{
    background: #000;
    color: #fff;
    /* box-shadow: 2px 2px 3px rgba(128, 127, 127, 0.781); */
    width: 32px;
    height: 32px;
    text-align: center;
    /* padding-top: 6px; */
    font-size: 22px;
    border-radius: 50%;
    /* z-index: 2; */
    display: inline;
    margin-right: 15px;
}
.facebook1{
    background: #000;
    color: #fff;
    /* box-shadow: 2px 2px 3px rgba(128, 127, 127, 0.781); */
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    /* padding-top: 4px; */
    font-size: 20px;
    /* z-index: 2; */
    /* display: inline; */
    margin-right: 15px;

}
.mail1{
    background: #000;
    color: #fff;
    /* box-shadow: 2px 2px 3px rgba(128, 127, 127, 0.781); */
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    /* padding-top: 4px; */
    font-size: 20px;
    /* z-index: 2; */
    margin-right: 15px;

}
.linkdin1{
    /* background: #000; */
    color: #fff;
    /* box-shadow: 2px 2px 3px rgba(128, 127, 127, 0.781); */
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    /* padding-top: 4px; */
    font-size: 20px;
    /* z-index: 2; */
    margin-right: 15px;

}

.abcd{
    display: flex;
    flex-direction: row;
}