/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
* {
    box-sizing: border-box;
}
body{
    background:#e8e8e8;
    
    font-family: "open sans", sans-serif;
}
p{
     font-size:19px;
    line-height:32px;
}
#cv{
   /* max-width: 95%;
    margin: 20px auto;*/
    background: #fff;
    box-shadow: 2px 4px 10px #00000014;
    transition: all ease-in-out 0.2s;
}
#cv:hover{
   box-shadow: 9px 5px 30px 0px #00000054
}
.content-wrap{
   // max-width:1200px;
    margin:0 auto;
    
    display:block;
}

#bio img{
    width:150px;
        width: 150px;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
}
#bio h1{text-align: center;
    font-weight: 300;
    font-family: meno-banner,serif;
    font-size: 16.4vw;
    white-space: nowrap;
    margin: 0 0 4vw;
    line-height: .7;
}
h1{text-align:center;}
#skills-list{
   
    display: flex;
    width:100%;
    flex-flow: row wrap;
    justify-content: space-around;
    list-style: none;
    padding:0;
}
.skill{
    background:#fff;
    padding:60px;
    margin-bottom:20px;  
    width: 250px;
 
}
.skill p, .skill a{
    display:none;
}
.css-disabled span{
    width:0px; 
    height:0px;
    overflow:hidden;
    text-indent:-999px;
    display: inline-block;
}
.css-disabled:after{
    content:'Remove the css';
        display: inline-block;

}

.skill-progress{
    width:100%;
    border-radius:15px;
    height:20px;
    border:solid 1px #ccc;
    overflow:hidden;
}
.skill-progress:before{
    display: inline-block;
    background:blue;
    height:20px;
    content:'';
}
.skill-progress.p10:before{ width:10%;}
.skill-progress.p20:before{ width:20%;}
.skill-progress.p30:before{ width:30%;}
.skill-progress.p40:before{ width:40%;}
.skill-progress.p50:before{ width:50%;}
.skill-progress.p60:before{ width:60%;}
.skill-progress.p70:before{ width:70%;}
.skill-progress.p80:before{ width:80%;}
.skill-progress.p90:before{ width:90%;}
.skill-progress.p100:before{ width:100%;}
@media (max-width: 767.99px) {
 #experience ul{
     margin:0;
     padding:20px;
     list-style:none;
         position: relative;
 }
 #experience ul li{
     background:#fff;
      padding:10px;
      margin-bottom:10px;
 }
}
@media (min-width: 767.99px) {
 #experience ul{
     margin:0;
     padding:0;
     list-style:none;
         position: relative;
 }
  #experience ul:before{
     content: '';
    border-left: solid 2px #8f8f8f;
    height: calc(100%);
    left: calc(50% + 10px);
    position: absolute;
 
    z-index: -1;
 }
 .job-desription {
    margin-top: -40px;
    padding: 11px;
    background: #fff;
}
 .job:nth-of-type(even) .job-desription:before {
    content: '';
    width: 70px;
    
    right: -100%;
    border-bottom: solid 2px #000;
    position: relative;
    display: block;
    top: 46px;
    z-index: -2;
}
.job:nth-of-type(odd) .job-desription:before {
    content: '';
    width: 70px;
    right: 68px;
    border-bottom: solid 2px #000;
    position: relative;
    display: block;
    top: 46px;
    z-index: -2;
}
 .job:nth-of-type(even) span.year:before, .job:nth-of-type(odd) span.year:before{
    content: '';
    border-radius: 32%;
    width: 56px;
    border: solid 2px #8e8e8e;
    height: 34px;
    position: absolute;
    margin-left: -10px;
    margin-top: -9px;
    background: #fff;
    z-index: -1;
    
}
 .job:nth-of-type(even){
     width:45%;
     padding-right:55%;
     position:relative;
      text-align:right;
     
 }
 .job:nth-of-type(even) .span.year:before{
     content:' ';
     width:90px;
     display:inline-block;
     border-radius:50%;
     border:solid 1px #000;
 }
 .job:nth-of-type(even) span.year{
     position:absolute;
     margin-right:-100px;
     width:140px;
     text-align:center;
     margin-top: 45px;
 }
 .job:nth-of-type(odd){
     width:45%;
     padding-left:55%;
     position:relative;

    
 }
  .job:nth-of-type(odd) span.year{
     position:absolute;
     margin-left:-100px;
     width:100px;
      text-align:center;
           margin-top: 45px;
 }
}



@media (prefers-color-scheme: dark) {
    body {
        background: #404040;
        color: #fff;
    }
    #cv{
         background: #2a2a2a;
        box-shadow: 2px 4px 10px #00000014;
    }
    .skill{
        background:#000;
        color#fff;
    }
    .job-desription{
        background:#000;
        color:#fff;
    }
}
