

/*overlay*/
.overlay {
	display:none;
	position:fixed;
	top:0;
	height:100%;
	width:100%;
	background:white;
	overflow:auto;
	z-index:8000;
}


/* about me */
.about-contain{
    background-color:rgba(35, 35, 35, 1);
    background-image: none;
    background-repeat: no-repeat;
    background-position: 5.3px 38px;
    background-size: 5px 5px;
    -webkit-transition:all 0.2s ease;
    transition: all 0.2s ease;
}
.about-contain:hover{
    background-image: url(../img/global/marker.png);
    background-color:rgba(35, 35, 35, 0.1);
    background-position: 5.3px 32px;
}

.intro{
    position: fixed;
    width: 100%;
    height: 100%;
    padding:150px;
    margin: auto;
    top:0px;
    left:0px;
    right:0px;
    bottom:0px;
    overflow-x: scroll;

}
.avatar{
    position: relative;
    left:10px;
    width:100px;
    height: 100px;
    border-radius: 50%;
    background: gainsboro url(../img/global/avatar.png) center center no-repeat;
    background-size:100px 100px;
}

.status{
    position: absolute;
    width:500px;
    top:30px;
    left:120px;
}
.status-title h6{
    text-transform: uppercase;
    margin:0px;
}
.intro-greeting{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 75px;
    margin: 0px;
}
.intro-description{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top:50px;
    
    
}
.intro-description li{
    padding:20px;
    -webkit-box-flex:1;
        -ms-flex:1;
            flex:1;
}

.intro-description h6{text-transform: uppercase;margin:0px;}
.intro-description p{font-size:14px;}
.chat-btn{
    border-top: 1px solid black;
    margin: 0 20px;
}

.chat-btn a {
    width:110px;
    height: 30px;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    line-height: 30px;
    text-decoration: none;
    color:white;
    background:black;
    border-radius: 2px;

}

.close-btn{
    position: fixed;
    top:40px;
    right:40px;
    width:12px;
    height: 0px;
    padding-top:12px;
    overflow: hidden;
    background: transparent url(../img/global/btn-close.png) 0 0 no-repeat;
}
.close-btn:hover{background: transparent url(../img/global/btn-close-hover.png) 0 0 no-repeat;}



@media screen and (max-width:800px){
    .intro{
        padding:80px;
    }
    .intro-description{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    
}














