
:root {
--bg-black-900:#f2f2fc;
--bg-black-100:#fdf9ff;
--bg-black-50:#e8dfec;
--text-black-900:#302e4d;
--text-black-700:#504e70;
  }



  body.dark{
      
--bg-black-900:#151515;
--bg-black-100:#222222;
--bg-black-50:#393939;
--text-black-900:#ffffff;
--text-black-700:#e9e9e9;
  }
body{
margin: 0;
padding: 0;
line-height: 1.5;
font-size: 16px;
font-family: "Poppins" sans-serif;
}
*{
    
margin: 0;
padding: 0;
outline: none;
text-decoration: none;
box-sizing: border-box;

}
::before,::after{

box-sizing: border-box;

}
ul{
    list-style: none;
}
.section{
background-color: var(--bg-black-900);
min-height: 100vh;
display: block;
padding: 0 30px;
opacity: 1;
}
.main-content{
    padding-left: 270px;
}
.hidden{
    display: none !important;
}
.padd-15{
padding-left: 15px;
padding-right: 15px;
}
.container{
max-width: 1100px;
width: 100%;
margin: auto;
}
.btn{
      font-size: 16px;
      font-weight: 600;
      padding: 12px 35px ;
      color: #ffffff;
      background-color: var(--skin-color);
      display: inline-block;
      border-radius:40px ;
      -webkit-border-radius:40px ;
      -moz-border-radius:40px ;
      -ms-border-radius:40px ;
      -o-border-radius:40px ;
      white-space: nowrap;
      transition:all .3s ease ;
      -webkit-transition:all .3s ease ;
      -moz-transition:all .3s ease ;
      -ms-transition:all .3s ease ;
      -o-transition:all .3s ease ;
      border: none;
}
.btn:hover{
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}
.section .container{
padding-top: 60px;
padding-bottom: 70px;

}
.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 60px;
}
.section-title h2{
font-size: 40px;
color: var(--text-black-900);
font-weight: 700;
position: relative;
}
.section-title h2::before{
    content: '';
height: 4px;
width: 50px;
position: absolute;
background-color: var(--skin-color);
top: 100%;
left: 0;
}

.section-title h2::after{
    content: '';
height: 4px;
width: 25px;
position: absolute;
background-color: var(--skin-color);
top: 100%;
left: 0;
margin-top: 8px;
}
.row{
display: flex;
margin-left: -15px;
margin-right: -15px;
flex-wrap: wrap;
position: relative;

}
.aside{
width: 270px;
background-color: var(--bg-black-100);
position: fixed;
top: 0;
left: 0;
z-index: 10;
padding: 30px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
border-right: 1px solid var(--bg-black-50);
}

.aside .nav-toggler{
    height: 40px;
    width: 45px;
    border: 1px solid var(--bg-black-50);
    cursor: pointer;
    position: fixed;
    left: 300px;
    top: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
background-color: var(--bg-black-100);
display: none;
justify-content: center;
align-items: center;
flex-direction: column;
}
.aside .nav-toggler span{
    height: 2px;
width: 18px;
background-color: var(--skin-color);
display: inline-block;
margin: 2.5px;
}



.aside .logo{
position: absolute;
top: 50px;
font-size: 30px;
text-transform: capitalize;

}

.aside .logo a{
color: var(--text-black-900);
font-weight: 700;

padding: 15px 20px;
font-size: 30px;
letter-spacing: 5px;
position: relative;
}
.aside .logo a span {
font-family: 'Clicker Script',cursive;
font-size: 40px;

}

.aside .logo a::before{
content: '';
height: 20px;
position: absolute;
width: 20px;
border-bottom: 5px solid var(--skin-color);
border-left: 5px solid var(--skin-color);
bottom: 0;
left: 0;

}

.aside .logo a::after{
    content: '';
    height: 20px;
    position: absolute;
    width: 20px;
    border-top: 5px solid var(--skin-color);
    border-right: 5px solid var(--skin-color);
    top: 0;
    right:  0;
    
    }

.aside .nav{
    margin-top: 50px;
}
.aside .nav li{
margin-bottom: 20px;

display: block;
}

.aside .nav li a{
font-size: 16px;
font-weight: 600;
display: block;
color: var(--text-black-900);
padding: 5px 15px;
border-bottom: 1px solid var(--bg-black-50);

}

.aside .nav li a.active{
    color: var(--skin-color);
}
.aside .nav li a i{
    margin-right: 15px;
}
.home{
    min-height: 100vh;
display: flex;
color: var(--text-black-900);
}
.home .home-info{
    flex: 0 0 60%;
max-width: 60%;

}
.home .home-img{
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    text-align: center;
}
.home .home-img::after{
    
    content: '';
    height: 80px;
    position: absolute;
    width: 80px;
    border-bottom: 10px solid var(--skin-color);
    border-right: 10px solid var(--skin-color);
    bottom:-40px;
    right:  20;
}

.home .home-img::before{
    
    content: '';
    height: 80px;
    position: absolute;
    width: 80px;
    border-top: 10px solid var(--skin-color);
    border-left: 10px solid var(--skin-color);
    top:-40px;
    left:  -20px;
}



.home .home-img img{
    height: 400px;
    margin: auto;
    border-radius:5px ;
    -webkit-border-radius:5px ;
    -moz-border-radius:5px ;
    -ms-border-radius:5px ;
    -o-border-radius:5px ;
}

h3.hello{
font-size: 28px;
margin: 15px 0;
}

h3.hello span{
    font-family: 'Clicker Script',cursive;
    font-size: 30px;
font-weight: 700;
color: var(--skin-color);
}
h3.my-profession{
    font-size: 30px;
margin: 15px 0;

}
.typing{
    color: var(--skin-color);
}

.home-info p{
margin-bottom: 70px;
font-size: 20px;
color: var(--text-black-700);

}



.about .about-content{
    flex: 0 0 100%;
max-width: 100%;

}
.about .about-content .about-text{
    flex: 0 0 100%;
max-width: 100%;
}
.about .about-content .about-text h3{
    font-size: 24px;
    margin-bottom: 15px;
font-weight: 700;
color: var(--text-black-900);
}
.about .about-content .about-text h3 span{
color: var(--skin-color);

}


.about .about-content .about-text p{
font-size: 16px;
line-height: 25px;
color: var(--text-black-700);
}
.about .about-content .personal-info{
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: 40px;
}
.about .about-content .personal-info .info-item{
    flex: 0 0 50%;
    max-width: 50%;
    
}
.about .about-content .personal-info .info-item p{
font-weight: 600;
font-size: 16px;
color: var(--text-black-900);
padding: 10px 0;
border-bottom: 1px solid var(--bg-black-50);

}
.about .about-content .personal-info .info-item p span{
    margin-left:4px ;
    display: inline-block;
font-weight: 400;
color: var(--text-black-700);
}
.about .about-content .personal-info .buttons{
    margin-top:30px ;
}
.about .about-content .personal-info .buttons .btn{
    margin-right: 15px;
    margin-top: 10px;
}

.about .about-content .skills{
    flex: 0 0 40%;
    max-width: 40%;
    margin-top: 40px;
}
.about .about-content .skills .skill-item {

    flex: 0 0 100%;
    max-width: 100%;
margin-bottom: 25px;
}

.about .about-content .skills .skill-item h5 {
line-height: 40px;
font-weight: 600;
font-size: 16px;
color: var(--text-black-900);
text-transform: capitalize;
}
.about .about-content .skills .skill-item .proggress{
    background-color: var(--bg-black-50);
    height: 7px;
    border-radius:4px ;
    -webkit-border-radius:4px ;
    -moz-border-radius:4px ;
    -ms-border-radius:4px ;
    -o-border-radius:4px ;
    width: 100%;
    position: relative;
}
.about .about-content .skills .skill-item .proggress .proggress-in{
     position: absolute;
     left: 0;
     top: 0;
     height: 100%;
     border-radius:4px ;
     -webkit-border-radius:4px ;
     -moz-border-radius:4px ;
     -ms-border-radius:4px ;
     -o-border-radius:4px ;
     background-color: var(--skin-color);
}
.about .about-content .skills .skill-item .skill-percent{
position: absolute;
right: 0;
top: -40px;
line-height: 40px;
color: var(--text-black-900);
font-weight: 400;

}
.about .about-content .education,
.about .about-content .experines{
flex: 0 0 50%;
max-width: 50%;
margin-top: 30px;
}

.about .about-content h3.title {
font-size: 24px;
margin-bottom: 30px;
color: var(--text-black-900);
font-weight: 900;

}
.portifolio .container{
    padding-bottom: 40px;
}
.portifolio .portfolio-heading{
    flex: 0 0 100%;
max-width: 100%;
margin-bottom: 40px;
}
.portifolio .portfolio-heading h2{
    color: var(--text-black-900);
    font-weight: 500;
}

.portifolio .portfolio-item{
    flex: 0 0 33.33%;
max-width: 33.33%;
margin-bottom: 30px;
}
.portifolio .portfolio-item-inner{
    border: 6px solid var(--bg-black-100)    ;
    border-radius:5px ;
    -webkit-border-radius:5px ;
    -moz-border-radius:5px ;
    -ms-border-radius:5px ;
    -o-border-radius:5px ;
cursor: pointer;
overflow: hidden;

}


.portifolio .portfolio-item-inner .portfolio-image img{
    width: 100%;
    display: block;
    min-height: 13rem;
}


@media(max-width:1199px){
    .aside{
        left: -270px;
    }
    .main-content{
        padding-left: 0;
    }

.about .about-content .personal-info .info-item p span{
    display: block;
    margin-left: 0;
}

}

@media(max-width:1149px){

.home .home-info{
    flex: 0 0 100%;
    max-width: 100%;
}

    .home .home-img{
        display: none;
    }
}


@media(max-width:991px){

   
    .portifolio .portfolio-item{
    flex: 0 0 50%;
    max-width: 50%;
    }

}


@media(max-width:850px){
    .about .about-content .skills,
    .about .about-content .personal-info{
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media(max-width:650px){
    .portifolio .portfolio-item{
        flex: 0 0 100%;
        max-width: 100%;
        }
}

@media(max-width:383px){
    h3.hello{
        font-size: 24px;
    }
    h3.hello span{
        font-size: 25px;
    }
    h3.my-profession{
        font-size: 24px;
    }

}







