/*global*/
* {
    box-sizing: border-box;
}
body,html {
    font-family: 'Poppins', sans-serif;
}

span.sp-r {
    color: #FFB400;
    font-weight: 900;
    font-size: 20px;
}

h2.header {
    font-size: 120px;
    margin: 0;
    color: #393C40;
    pointer-events: none;
    text-align: center;
}
/*global*/
/*cover*/
.cover {
    position: fixed;
    top: 0;
    left: 50px;
    width: calc(100% - 50px);
    height: 100%;
    z-index: 99;
    background: transparent;
    pointer-events: none;
}

.cover .screen {
    float: left;
    width: 25%;
    height: 100%;
}

.cover .screen .back {
    height: 100%;
    float: right;
    width: 1px;
    background: #181818;
}

.cover .screen .back.animate {
    animation: screen 2s;
}

@keyframes screen {
    0%, 100% {
        width: 1px;
    }
    50% {
        width: 100%;
    }
}

/*cover*/
/*nav*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 100%;
    background: #181818;
}
/*logo*/
nav .logo {
    text-align: center;
    color: #fff;
    background: #FFB400;
    margin-bottom: 20px;
    cursor: pointer;
}

nav .logo h1 {
    margin: 0;
    padding: 10px 0
}
/*logo*/
/*ul*/
nav > ul {
    margin: 0;
    padding: 0;
    list-style: none !important;
    text-align: center;
    color: #fff
}

nav > ul li {
    list-style: none;
    padding: 15px 0;
    position: relative;
}

nav > ul li .demo-icon {
    font-size: 16px;
    cursor: pointer;
    transition: .5s;
}

nav > ul li span {
    font-size: 12px;
    position: absolute;
    left: calc(100% + 1px);
    top: calc(50% - 8px);
    background: #191919;
    padding: 5px;
    opacity: 0;
    transition: .3s;
    border-radius: 0 3px 3px 0;
    pointer-events: none;
    z-index: 3; 
}

nav > ul li .demo-icon:hover span {
    opacity: 1;
}

nav > ul li .demo-icon.active,
nav > ul li .demo-icon:hover {
    color: #FFB400
}
/*ul*/
/*social*/
nav .social ul {
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    width: 100%;
    list-style: none;
    text-align: center;
}

nav .social ul li {
    padding: 7px 0;
    color: #fff
}

nav .social ul li a:focus,
nav .social ul li a:hover,
nav .social ul li a
{
    text-decoration: none;
    color: inherit;
}

nav .social ul li .demo-icon:hover {
    color: #FFB400;
    transition: .5s;
}
/*social*/
/*nav*/
/*banner*/
.banner {
    float: right;
    width: calc(100% - 50px);
    height: 100%;
    background: url("../img/banner.jpg") center;
    background-size: cover;
}

.banner .overflow {
    width: 100%;
    height: 100%;
    text-align: center;
    background: #00000099;
    color: #fff;
    overflow: hidden;
}

.banner .overflow h1 {
    margin: 0;
    font-size: 50px;
    margin-top: calc(50vh - 50px);
    letter-spacing: 10;
    text-transform: uppercase;
    word-wrap: break-word;
}
.banner .overflow p {
    letter-spacing: 2;
}

.banner .overflow p span {
    color: #FFB400
}
/*banner*/
/*about*/
.about {
    float: right;
    width: calc(100% - 50px);
    height: 100%;
    display: none;
}

.about .img {
    width: 50%;
    height: 100%;
    float: right;
    background: url("../img/wing-light-abstract-black-and-white-architecture-white-18153-pxhere.com.jpg") center;
    background-size: cover;
}

.about .details {
    background: #313437;
    width: 50%;
    height: 100%;
    float: left;
    padding: 15px;
    overflow: auto;
    overflow-x: hidden;
}

.about .details p {
    font-size: 18px;
    color: #a9a9a9;
    line-height: 25px;
}

.about .details h3 {
    color: #fff;
    margin-top: 70px;
    font-size: 50px;
}

.about .details .info p {
    color: #fff;
    font-size: 14px;
}

.about .details .info p span {
    color: #FFB400;
    font-weight: bolder;
}
/*about*/
/*feat*/
.feat {
    float: right;
    width: calc(100% - 50px);
    height: 100%;
    display: none;
}
/*img*/
.feat .img {
    width: 50%;
    height: 100%;
    float: right;
    background: url("../img/wing-light-abstract-black-and-white-architecture-white-18153-pxhere.com.jpg") center;
    background-size: cover;
}
/*img*/
/*details*/
.feat .details {
    background: #313437;
    width: 50%;
    height: 100%;
    float: left;
    padding: 15px;
    overflow: auto;
    overflow-x: hidden;
}

.feat .details h2 {
    margin-bottom: -40px;
}
/*experience*/
.feat .details .experience {
    width: calc(50% - 15px);
    margin: 0 15px 0 0;
    float: left;
    margin-bottom: 60px;
}

.feat .details .experience h3 {
    color: #fff;
    margin-bottom: 50px;
}

.feat .details .experience h3 span {
    color: #FFB400
}

.feat .details .experience .content {
    background: rgba(255,255,255,.05);
    padding: 15px 30px;
    border-radius: 18px;
}

.feat .details .experience .content h4 {
    color: #fff
}
.feat .details .experience .content p {
    color: #a9a9a9;
    line-height: 25px;
    margin-bottom: 30px;
}

.feat .details .experience .content hr {
    border-color: rgba(255, 255, 255, 0.1);
}
/*experience*/
/*education*/
.feat .details .education {
    width: calc(50% - 15px);
    margin: 0 0 0 15px;
    float: right;
    margin-bottom: 60px;
}

.feat .details .education h3 {
    color: #fff;
    margin-bottom: 50px;
}

.feat .details .education h3 span {
    color: #FFB400
}

.feat .details .education .content {
    background: rgba(255,255,255,.05);
    padding: 15px 30px;
    border-radius: 18px;
}

.feat .details .education .content h4 {
    color: #fff
}
.feat .details .education .content p {
    color: #a9a9a9;
    line-height: 25px;
    margin-bottom: 30px;
}

.feat .details .education .content hr {
    border-color: rgba(255, 255, 255, 0.1);
}
/*education*/
/*skills*/
.feat .details .skills {
    width: 100%;
    float: left;
}

.feat .details .skills h3 {
    color: #fff;
    margin-bottom: 50px;
}
.feat .details .skills h3 span {
    color: #FFB400
}

.feat .details .skills h4 {
    color: #a9a9a9
}
/*bar*/
.feat .details .skills .bar {
    background: #181818;
    height: 12px;
    width: 100%;
    border-radius: 5px;
    padding: 2px
}

.feat .details .skills .progress {
    display: block;
    background:#FFB400;
	height: 100vh;
    height: 8px;
    width: 0;
    border-radius: 5px;
}
/*bar*/
/*parent*/
.feat .details .skills .parent {
    text-align: center;
}

.feat .details .skills .child {
    width: 108px;
    display: inline-block;
    margin-bottom: 30px;
}

.feat .details .skills .child img {
    width: 100%;
}

.feat .details .skills .child label {
    display: block;
    color: #a9a9a9
}
/*parent*/
/*skills*/
/*details*/
/*feat*/
/*porto*/
.porto {
    float: right;
    width: calc(100% - 50px);
    height: 100%;
    display: none;
}
/*img*/
.porto .img {
    width: 50%;
    height: 100%;
    float: right;
    background: url("../img/wing-light-abstract-black-and-white-architecture-white-18153-pxhere.com.jpg") center;
    background-size: cover;
}
/*img*/
/*details*/
.porto .details {
    background: #313437;
    width: 50%;
    height: 100%;
    float: left;
    padding: 15px;
    overflow: auto;
    overflow-x: hidden;
}
.porto .details h2 {
    margin-bottom: -40px;
}

.porto .details h3 {
    color: #fff;
    margin-bottom: 50px;
}

.porto .details h3 span {
    color: #FFB400
}
/*one & two*/
.porto .details .one {
    width: calc(50% - 15px);
    float: left;
    padding: 10px;
}

.porto .details .two {
    width: calc(50% - 15px);
    float: right;
    padding: 10px;
}

.porto .details .content {
    background: #404347;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 70px;
}

.porto .details .content .photo {
    overflow: hidden;
    position: relative;
}

.porto .details .content .photo .overflow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    transition: .5s;
    text-align: center;
    cursor: pointer;
}

.porto .details .content .overflow .demo-icon {
    color: #fff;
    font-size: 40px;
    opacity: 0;
    transition: .5s;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px)
}

.porto .details .content:hover .overflow .demo-icon {
    opacity: 1;
}

.porto .details .content:hover .overflow {
    background: #FFB40050;
}


.porto .details .content img {
    width: 100%;
    cursor: pointer;
    transition: .5s;
}

.porto .details .content:hover img {
    transform: scale(1.1,1.1);
}

.porto .details .content .caption {
    text-align: center;
}

.porto .details .content .caption h4 {
    margin: 20px 10px 10px;
    color: #fff;
    text-transform: uppercase;
}

.porto .details .content .caption h4 a,
.porto .details .content .caption h4 a:focus,
.porto .details .content .caption h4 a:hover {
    color: inherit;
    text-decoration: none;
}

.porto .details .content .caption p {
    margin: 0 0 20px 0;
    font-size: 12px;
    color: #777
}
/*one & two*/
/*details*/
/*porto*/