/*  Sharing Properties  */
* {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
    font-family: 'Jura', sans-serif, Arial, Helvetica;
}

html {
    background-color: #000;
    color: #fff;
}

head a {
    color: #000;
}

.content {
    width: 60%;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.content .left-side {
    flex: 1;
}

.content .right-side {
    flex: 1;
}

.line, .line-mobile {
    border: 1px solid #707070;
    width: 50%;
    margin: 20px auto 0px;
}
.line-mobile {
    display: none;
}

.break {
    margin: 30px auto;
    display: block;
}

/*  Header  */
header {
    background-color: #fff;
    color: #000;
    border-bottom: 7px solid #16A085;
    position: relative;
}

header h1 {
    padding: 40px 0px 20px 0px;
}

header ul {
    list-style: none;
    margin-bottom: 30px;
}

header ul li span{
    font-size: 13px;
    position: absolute;
    left: 25px;
}

header .picture{
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/*  Main Body  */

main .right-side {
    padding-left: 50px;
}

main .heading {
    color: #16A085;
    font-size: 20px;
    font-weight: bold;
    padding: 40px 0px 15px;
}

main .text {
    text-indent: 20px;
    font-size: 16px;
    margin-bottom: 10px;
    color: #D8D8D8;
}

main .detail div{
    display: inline-block;
    margin: 0px 0px 10px 0px;
    font-size: 13px;
    text-align: right;
    color: #D8D8D8;
}

main .detail img {
    width: 15px;
    margin-right: 5px;
}

main .detail .date {
    margin-right: 20px;
}

main .detail .job-title{
    font-size: 20px;
    font-weight: bolder;
    display: block;
    margin-bottom: 10px;
}

main .detail .job-location{
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

/*  Skills  */
main .skill-item .processbar {
    position: relative;
    display: block;
    width: 100%;
    background-color: #fff;
    border: 5px solid;
    height: 15px;
    border-radius: 15px;
    margin: 10px 0px 20px;
}

main .skill-item .percent {
    position: absolute;
    background-color: #16A085;
    height: 15px;
    border-radius: 15px;
    top: 0px;
    left: 0px;
}

/*  Hobbies  */
main .hobbie-item {
    display: inline-block;
    width: 30%;
    text-align: center;
}

main .hobbie-item i{
    font-size: 64px;
}

main .hobbie-item .label{
    font-weight: bold;
    margin: 5px 0 20px;
}


/*  Projects  */
main .projects {
    position: relative;
    overflow: hidden;
    width: 546px;
}
main #slides {
    display: inline-flex;
    overflow-x: hidden;
    transition: all 2s;
}

main #slides .project-item {
    width: 546px;
}

main #slides .project-item .label {
    font-weight: bold;
    margin: 10px 0;
    font-size: 17px;
    text-decoration: none;
    color: #fff;
    display: block;
    text-align: center;
}

main #slides .project-item img {
    width: 100%;
    height: 200px;
}

#controller {
    width: 120px;
    position: relative;
    margin: auto;
}

.project {
    display: block;
    width: 15px;
    height: 15px;
    background-color: #000;
    border-radius: 10px;
    border: 1px solid #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 5px;
}

.active {
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid;
    border-radius: 10px;
    cursor: pointer;
    position: absolute;
    top: 0;
}

form {
    margin-top: 30px !important;
}
form input, form textarea {
    display: block;
    width: 100%;
    padding: 5px;
    margin: 15px 0;
    color: #000;
}

form textarea {
    height: 175px;
}


/*  Footer  */

footer {
    margin: 20px 0px;
}

footer .content{
    text-align: center;
    font-size: 13px;
    display: block;
}

/*  Animation  */

.animationA {
  animation-name: effectA;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes effectA {
  from {width: 0%;}
  to {width: 85%;}
}

.animationB {
  animation-name: effectB;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes effectB {
  from {width: 0%;}
  to {width: 100%;}
}

.animationC {
  animation-name: effectC;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes effectC {
  from {width: 0%;}
  to {width: 80%;}
}

.animationD {
  animation-name: effectD;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes effectD {
  from {width: 0%;}
  to {width: 85%;}
}

.animationE {
  animation-name: effectE;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes effectE {
  from {width: 0%;}
  to {width: 50%;}
}

.animationF {
  animation-name: effectF;
  animation-duration: 5s;
  animation-fill-mode: forwards;
}
@keyframes effectF {
  from {width: 0%;}
  to {width: 75%;}
}

/*  Styleshee for mobile devices  */
@media only screen and (max-width: 812px) {
    header .picture{
        bottom: 0px;
    }

    header .picture img {
        width: 128px;
    }

    .content {
        width: 80%;
        display: block;
    }

    main .right-side {
        padding-left: 0px;
    }

    main .line-mobile {
        display: block;
    }
}