/* ---------------------------------------------------- */
/* BASIC SETUP */
/* ---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

html,
body {
    background-color: #fff;
    color: #444;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}


/*---------------   Headings   ----------------*/
h1,h2,h3,h4,h5,h6 {
    font-family: 'Roboto Slab', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #4ECDC4;
    text-transform: uppercase;
}

.h2-headers {
    font-size: 300%;
    font-weight: 300;
    text-align: center;
}

/*h2::before {
    display: block;
    max-width: 400px;
    content: " ";
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 30px;
    border-top: 2px solid #4ECDC4;
}*/

h2::after {
    display: block;
    width: 80%;
    height: 3px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, #4ECDC4), color-stop(110%, #007EA7));
    background-image: -webkit-linear-gradient(left, #4ECDC4 50%, #007EA7 110%);
    background-image: -o-linear-gradient(left, #4ECDC4 50%, #007EA7 110%);
    background-image: linear-gradient(to right, #4ECDC4 50%, #007EA7 110%);
    content: " ";
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 30px;
    /*border-bottom: 2px dotted #4ECDC4;*/
}


/*---------------   Paragraphs   ----------------*/
.box p {
    font-size: 90%;
    line-height: 145%;
}


/*---------------   BUTTONS   ----------------*/
.btn:link,
.btn:visited {
    display: inline-block;
    padding: 8px 15px;
    text-decoration: none;
    background-color: #F4F7F9;
    border-radius: 200px;
    color: #00171F;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

.btn:hover,
.btn:active {
    background-color: #4ECDC4;
    color: #F4F7F9;
}

/* ---------------------------------------------------- */
/* REUSABLE COMPONENTS */
/* ---------------------------------------------------- */
.row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.box {
    padding: 1%;
}

/* ---------------------------------------------------- */
/* HEADER */
/* ---------------------------------------------------- */
header {
    position: relative;
    /*background-color: #004157;*/
    background-color: #007EA7;
    /*background-image: radial-gradient( #0d7078 -20%, #004157 );*/
    background-image: -webkit-radial-gradient( #4ECDC4 -20%, #007EA7 );
    background-image: -o-radial-gradient( #4ECDC4 -20%, #007EA7 );
    background-image: radial-gradient( #4ECDC4 -20%, #007EA7 );
    color: #fff;
    height: 100vh;
}

header h1 {
    color: #fff;
}


/*---------------   Navigation   ----------------*/
nav {
    z-index: 1000;
}

nav .row {
    max-width: 98%;
}

.header-logo {
    float: left;
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 40px 0 20px 0;
    cursor: pointer;
}

.mn-logo {
    display: none;
}

.header-logo span {
    font-weight: 300;
    font-size: 0.7em;
    opacity: 0.7;
}

.navbar {
    float: right;
    margin: 30px 0;
}

.inner-nav {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.inner-nav li {
    display: inline-block;
    padding: 15px;
}

.inner-nav li:last-child {
    padding-right: 0;
}

.inner-nav a:link,
.inner-nav a:visited {
    padding: 3px 0;
    color: #fff;
    opacity: 0.7;
    font-family: 'Roboto Slab', serif;
    font-weight: 300;
    font-size: 0.8em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
     -webkit-transition: all 0.2s;
     -o-transition: all 0.2s;
     transition: all 0.2s
}

.inner-nav a:active,
.inner-nav a:hover {
    opacity: 1;
    border-bottom: 1px solid #FFFFFF;
}

.mobile-nav-icon {
    display: none;
}

/*--------- Sticky Navigation ---------*/
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #00171F;
    -webkit-box-shadow: 0 2px 6px rgba(0, 23, 31, 0.1);
            box-shadow: 0 2px 6px rgba(0, 23, 31, 0.1);
    -webkit-animation-duration: 0.3s;
            animation-duration: 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.sticky .header-logo {
    margin: 20px 0;
}

.sticky .navbar {
    margin: 10px 0;
}

.sticky .inner-nav a:link,
.sticky .inner-nav a:visited {
    color: #00171F;
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s
}

.sticky .inner-nav a:active,
.sticky .inner-nav a:hover {
    color: #00171F;
    border-bottom: 1px solid #00171F;
}
/*---------------------------------------*/


/*.header-box {
    position: absolute;
    width: 80%;
    height: auto;
    max-width: 100px;
    max-height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/

.header-box {
    display: block;
    height: 50vh;
    width: 100%;
    padding-top: 30px;
}

.lightbulb-logo {
    display: block;
    margin: 0 auto;
    max-width: 1200px;
    height: 100%;
}

.header-slogan {
    margin-top: 30px;
    text-align: center;
}

.header-slogan h1  {
    text-transform: lowercase;
    letter-spacing: 2px;
    font-size: 260%;
    font-weight: 400;
    text-shadow: 0 4px 2px rgba(0, 52, 89, 0.4);
}

.header-slogan span {
    color: #ffffa6;
}

.arrow-btn {
    width: 60px;
    height: auto;
    position: absolute;
    top: 97%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
}

.logo-container {
    max-width: 100%;
}


/* ---------------------------------------------------- */
/* ABOUT ME */
/* ---------------------------------------------------- */
.section-about-me {
    background-color: #F4F7F9;
}

.section-about-me h2 {
    margin-bottom: 70px;
}

.about-img {
    float: left;
    margin-right: 30px;
    overflow: hidden;
    max-width: 300px;
    width: 100%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 24px rgba(0, 52, 89, 0.15);
            box-shadow: 0 0 24px rgba(0, 52, 89, 0.15);
}

.about-desc {
    overflow: hidden;
}


/* ---------------------------------------------------- */
/* SKILLS */
/* ---------------------------------------------------- */
.skills-box {
    padding: 10px;
}

.skills-box img {
    display: block;
    width: 80%;
    margin: 0 auto;
}

#web-icon,
#design-icon,
#photo-icon {
    display: block;
    width: 80%;
    margin: 0 auto;
}

.skills-box h3 {
    margin-bottom: 20px;
}



/* ---------------------------------------------------- */
/* PORTFOLIO */
/* ---------------------------------------------------- */
section~.section-portfolio {
    padding-bottom: 0;
}

.web-color,
.print-color,
.logo-color,
.photography-color {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.web-color {
    background-image: -webkit-gradient(linear, 
        left top, left bottom, 
        from(rgba(0, 23, 31, 0.7)), 
        to(rgba(0, 0, 0, 0.95))), url('img/luca-bravo-217276.jpg');
    background-image: -webkit-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/luca-bravo-217276.jpg');
    background-image: -o-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/luca-bravo-217276.jpg');
    background-image: linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/luca-bravo-217276.jpg');
}

.print-color {
    background-image: -webkit-gradient(linear, 
        left top, left bottom, 
        from(rgba(0, 23, 31, 0.7)), 
        to(rgba(0, 0, 0, 0.95))), url('img/sabri-tuzcu-182689.jpg');
    background-image: -webkit-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/sabri-tuzcu-182689.jpg');
    background-image: -o-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/sabri-tuzcu-182689.jpg');
    background-image: linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/sabri-tuzcu-182689.jpg');
}

.logo-color {
    background-image: -webkit-gradient(linear, 
        left top, left bottom, 
        from(rgba(0, 23, 31, 0.7)), 
        to(rgba(0, 0, 0, 0.95))), url('img/marcus-depaula-43304.jpg');
    background-image: -webkit-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/marcus-depaula-43304.jpg');
    background-image: -o-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/marcus-depaula-43304.jpg');
    background-image: linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/marcus-depaula-43304.jpg');
}

.photography-color {
    background-image: -webkit-gradient(linear, 
        left top, left bottom, 
        from(rgba(0, 23, 31, 0.7)), 
        to(rgba(0, 0, 0, 0.95))), url('img/annie-spratt-61215.jpg');
    background-image: -webkit-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/annie-spratt-61215.jpg');
    background-image: -o-linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/annie-spratt-61215.jpg');
    background-image: linear-gradient(rgba(0, 23, 31, 0.7), 
        rgba(0, 0, 0, 0.95)), url('img/annie-spratt-61215.jpg');
}

.section-portfolio {
    background-color: #00171F;
    color: #fff;
}

.portfolio-intro {
    margin-bottom: 90px;
}

.portfolio-intro p {
    margin-top: 70px;
    font-size: 1.1em;
    text-align: center;
}

.btn-container {
    display: block;
    text-align: center;
    margin-top: 30px;
}

.h3-headers {
    position: relative;
    display: inline-block;
    font-size: 180%; 
    font-weight: 300;
    margin-top: 90px;
    margin-bottom: 40px;
    padding-bottom: 6px;
    color: #F4F7F9;
    /*border: 2px solid #F4F7F9;*/
    /*border-bottom: 2px dotted #fff;*/
}

.h3-headers::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, #F4F7F9), to(transparent));
    background: -webkit-linear-gradient(left, #F4F7F9 30%, transparent);
    background: -o-linear-gradient(left, #F4F7F9 30%, transparent);
    background: linear-gradient(to right, #F4F7F9 30%, transparent);
}

/*
.h3-headers::after {
    content: "";
    position: absolute;
    top: 0;
    right: -12px;
    width: 100%;
    height: 100%;
    border-right: 2px solid #F4F7F9;
}
*/

.portfolio-box {
    overflow: hidden;
}

.portfolio-box h4 {
    margin-top: 50px;
    margin-bottom: 10px;
    color: #fff;
}

.thumbs-hover {
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.item-box img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.02);
            -ms-transform: scale(1.02);
        transform: scale(1.02);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    -o-transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;

    /* fixes glitty animation */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.item-box img:hover {
    -webkit-transform: scale(1.10);
            -ms-transform: scale(1.10);
        transform: scale(1.10);
    opacity: 1;
}

.item-box p {
    margin-bottom: 60px;
    font-size: 0.9em;
}

.item-box div:last-child {
    text-align: center;
}


/* ---------------------------------------------------- */
/* CONTACT ME */
/* ---------------------------------------------------- */
.section-contact p {
    margin: 70px 0 50px 0;
    text-align: center;
    font-size: 1.1em;
}

.contact-item {
    display: block;
    max-width: 300px;
    margin: 0 auto;
}

.contact-item:first-child {
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact-icon {
    display: inline-block;
    border: 2px solid #4ECDC4;
    width: 48px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

.contact-info h4 {
    color: #4ECDC4;
}

.contact-info a:link,
.contact-info a:visited {
    padding: 2px 0;
    text-decoration: none;
    color: #00171F;
    border-bottom: 1px solid rgba(0, 52, 89, 0);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}

.contact-info a:hover,
.contact-info a:active {
    color: #007EA7;
    border-bottom: 1px solid #007EA7;
}


/* ---------------------------------------------------- */
/* FOOTER */
/* ---------------------------------------------------- */
footer {
    background-color: #007EA7;
    color: #fff;
    font-size: 0.8em;
    font-weight: 300;
    text-align: center;
    padding: 30px 0;
}


/* ---------------------------------------------------- */
/* ANIMATION */
/* ---------------------------------------------------- */

/*--------- SVG Icon Animation ---------*/
.svg-web-text {
    fill: #1aeba8;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-white {
    fill: #ffffff;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-cyan {
    fill: #60ffff;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-magenta {
    fill: #ff57ff;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-yellow {
    fill: #ffff13;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-red {
    fill: #ff5713;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-green {
    fill: #60ff13;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-blue {
    fill: #6057ff;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.apple-white {
    fill:#FFFFFF;
}

.svg-apple {
    fill: #ff5713;
    -webkit-transition: fill 0.5s;
    -o-transition: fill 0.5s;
    transition: fill 0.5s;
}

.svg-tranparent {
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}


/*--------- SVG Lighbulb Animation ---------*/

/* keyframes */
@-webkit-keyframes offset {
    0% {
        stroke-dashoffset: 30;
    }
}
@keyframes offset {
    0% {
        stroke-dashoffset: 30;
    }
}

@-webkit-keyframes scale {
    50% {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

@keyframes scale {
    50% {
        -webkit-transform: scale(1.1);
                transform: scale(1.1);
    }
}

@-webkit-keyframes filament {
    0% {
        fill: #ff8c66;
    }

    50% {
        fill: #ffd582;
    }
}

@keyframes filament {
    0% {
        fill: #ff8c66;
    }

    50% {
        fill: #ffd582;
    }
}


/* svg styles */
.lightbulb-logo *{
    -webkit-transform-origin: 10px 50px;
            -ms-transform-origin: 10px 50px;
        transform-origin: 10px 50px;
}

.svg-light-bulb-outline {
    stroke: #ffffa6;
    stroke-width: 3px;
    stroke-linecap: round;
    stroke-dasharray: 12 18;
    stroke-dashoffset: 150;
    -webkit-animation: offset 5s linear infinite;
            animation: offset 5s linear infinite;
}

.svg-logo-center {
    -webkit-animation: filament 8s linear infinite;
            animation: filament 8s linear infinite;
}


/*--------- Animate CSS ---------*/
.js--wp--1, .js--wp--2, .js--wp--web-1, .js--wp--web-2, .js--wp--print-1, .js--wp--print-2, .js--wp--print-3, .js--wp--logo-1, .js--wp--logo-2, .js--wp--photo-1, .js--wp--photo-2, .js--wp--photo-3 {
    opacity: 0;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
}

.js--wp--1.animated, .js--wp--2.animated, .js--wp--web-1.animated, .js--wp--web-2.animated, .js--wp--print-1.animated, .js--wp--print-2.animated, .js--wp--print-3.animated, .js--wp--logo-1.animated, .js--wp--logo-2.animated, .js--wp--photo-1.animated, .js--wp--photo-2.animated, .js--wp--photo-3.animated {
  opacity: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.js--wp--web-2, .js--wp--print-2, .js--wp--logo-2, .js--wp--photo-2 {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
}

.js--wp--print-3, .js--wp--photo-3 {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
}


/* ---------------------------------------------------- */
/* Magnific Popup */
/* ---------------------------------------------------- */
/* padding-bottom and top for image */
.mfp-no-margins img.mfp-img {
    padding: 0;
}
/* position of shadow behind the image */
.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}
/* padding for main container */
.mfp-no-margins .mfp-container {
    padding: 0;
}