/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: lighter;
    overflow-x: hidden;
}

h2 {
    font-size: 55px;
}

ul {
    list-style: square;
}

h3 {
    font-size: 27px;
}

.btn {
    -webkit-transition: 0.2s background, 0.2s color, 0.2s border;
    -moz-transition: 0.2s background, 0.2s color, 0.2s border;
    -ms-transition: 0.2s background, 0.2s color, 0.2s border;
    -o-transition: 0.2s background, 0.2s color, 0.2s border;
    transition: 0.2s background, 0.2s color, 0.2s border;
}

.about-me h3 {
    font-size: 35px;
    margin: 30px 0 30px 0;
}

.scroll-down {
    -webkit-transition: 0.3s border;
    -moz-transition: 0.3s border;
    -ms-transition: 0.3s border;
    -o-transition: 0.3s border;
    transition: 0.3s border;
    border: 9px solid rgba(194, 195, 195, 0.3);
    border-radius: 70px;
    position: absolute;
    height: 70px;
    width: 70px;
    padding: 3px 5px 0 5px;
    font-size: 32px;
    left: 50%;
    margin-left: -35px;
    bottom: -200px;
}

.scroll-down:hover {
    border: 9px solid rgba(194, 195, 195, 0.7);
}

.scroll-down i.fa {
    color: #fff;
}

.fullscreen-background {
    padding: 140px 0 290px;
    background: url(http://img.robinio.ch/bg-small.png) center center no-repeat rgb(10, 10, 10);
    background-size: auto 100%;
}

@media screen and (min-width: 768px) {
    .fullscreen-background {
        background: url(http://img.robinio.ch/bg.png) center center no-repeat rgb(10, 10, 10);
        background-size: auto 100%;
    }
}

@media screen and (max-width: 768px) {
    .fullscreen-background {
        padding: 80px 0 160px;
    }

    .scroll-down {
        bottom: -100px;
    }
}

.fullscreen-background h1 {
    color: #fff;
}

.fullscreen-background span, .fullscreen-background i {
    color: #c2c3c3;
    line-height: 1;
    opacity: .9;
}

.header-me {
    background: #fff;
    padding: 30px 50px;
    display: inline-block;
    border-radius: 200px;
}

.header-me,
.fullscreen-background h1,
.fullscreen-background span,
.scroll-down {
    opacity: 0;
    -webkit-transition: 0.8s opacity;
    -moz-transition: 0.8s opacity;
    -ms-transition: 0.8s opacity;
    -o-transition: 0.8s opacity;
    transition: 0.8s opacity;
}

.loaded .header-me,
.loaded .fullscreen-background h1,
.loaded .fullscreen-background span,
.loaded .scroll-down {
    opacity: 1;
}

.about-me {
    padding: 10px 0 30px 0;
    background: #111;
    color: #fff;
}

.about-me p {
    font-size: 25px;
}

.btn-outline {
    font-size: 20px;
    border-radius: 24px;
    border: 3px solid #FFFFFF;
    color: #FFFFFF;
    margin: 0 5px 10px;
}

.btn-outline:hover {
    background: #FFFFFF;
    border: 3px solid #FFFFFF;
    color: #242424;
}

.my-skills {
    padding: 10px 0 20px;
    color: #fff;
    background: #313131;
}

.my-skills p {
    font-size: 28px;
}

.my-skills ul {
    list-style: none;
    display: inline-block;
    padding: 0;
    font-size: 28px;
}

.my-skills ul li {
    float: left;
    margin: 10px 0;
    height: 134px;
    padding: 20px 3px;
}

i.font-icon {
    font-style: normal;
    font-size: 57px;
    display: block;
    text-align: center;
    line-height: 57px;
}

i.photoshop {
    color: #fff;
    border: 5px solid #fff;
    width: 60px;
    font-size: 32px;
    margin: auto;
    font-weight: bold;
    height: 57px;
    line-height: normal;
}

i.php {
    font-weight: bold;
    padding: 0 0 0 13px;
}

.project-header {
    color: #2C2C2C;
    padding: 0 0 15px 0;
}

.project-header h2 small {
    color: #2C2C2C;
    font-size: 22px;
}

.project-header h2 {
    font-size: 48px;
}


.project-image img {
    max-width: 100%;
}

.projects {
    margin-top: 50px;
    font-size: 16px;
}



.project-body .image {
    float: right;
    clear: both;
    margin: 0 0 15px 15px;
    max-width: 100%;
    text-decoration: none;
    color: #000;
    width: 30%;
}

@media screen and (max-width: 768px) {
    .project-header h2 small {
        padding: 10px 0 0 0;
        display: block;
    }

    .project-body .image {
        width: 100%;
    }
}

.project-body .image img {
    max-width: 100%;
}

.project-body .image-subtext {
    display: block;
}

.contact {
    color: #494949;
    font-size: 24px;
    text-align: center;
    padding: 20px 0 30px;
}

.contact p {
    padding: 0 0 10px 0;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
    float: none;
}

input[type=text], input[type=email], textarea.form-control, .btn-contact {
    background-color: #FFFFFF;
    border: 1px solid #3D3D3D;
    padding: 10px;
    font-size: 20px;
    height: auto;
    font-weight: 100;
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    transition: height 0.2s;
    -webkit-transition: height 0.2s;
    -moz-transition: height 0.2s;
}

.form-control:focus {
    border: 1px solid #3D3D3D;
}

.btn-contact {
    padding: 10px 20px;
    float: right;
    background: #4E4E4E;
    color: #fff;
}

.btn-contact:hover {
    background: #2C2C2C;
    color: #fff;
}

footer {
    background: #111;
    color: #b8b8b8;
    text-align: center;
    padding: 60px 0 30px;
    font-size: 14px;
}

.social .fa {
    color: #8b8b8b;
    margin: 0 10px;
    -webkit-transition: color 0.2s, border 0.2s;
    -moz-transition: color 0.2s, border 0.2s;
    -ms-transition: color 0.2s, border 0.2s;
    -o-transition: color 0.2s, border 0.2s;
    transition: color 0.2s, border 0.2s;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
}

.social .fa:hover {
    color: #fff;
}

.social {
    font-size: 30px;
    padding: 0 0 50px 0;
}

.black-hover {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    width: 100%;
    position: absolute;
    transition: 0.3s background;
}

.project-image a {
    display: block;
}

.project-image .container:hover .black-hover {
    background: rgba(0, 0, 0, 0.5);
}
.black-hover a {
    position: absolute;
    left: 50%;
    top: 50%;
    opacity: 0;
    transition: 0.5s opacity, 0.5s background,0.5s color;
    font-weight: normal;
    padding: 4px 20px;
    font-size: 22px;  border-radius: 24px;  border: 3px solid #FFF;  color: #FFF;
    margin-left: -115px;
    margin-top: -22px;
    text-decoration: none;
    color: #fff;
}

.project-image .container:hover .black-hover a {
    opacity: 1;
}

.black-hover a:hover {
    background: #fff;
    color: #000;
}


