/* ====== MAIN STYLES ===== */

html, body {
    height: 100%;
}

body {
    font-family: 'Source Code Pro', Arial, sans-serif;
    font-size: 16px;
    color: #89949C;
    letter-spacing: .01em;
    overflow-x: hidden;
    word-wrap: break-word;
}

h1,h2,h3,h4,h5,h6 {
    color: #39444C;
}

#main-content {
    position: relative;
    background: #fff;
    box-shadow: 0 -5px 5px rgba(0,0,0,0.2);
    z-index: 10;
}

a:focus, button:focus {
    outline: none !important;
}

a {
    color: #00CCCB;
    -webkit-transition: color .15s ease-out;
    transition: color .15s ease-out;
}

a:hover, a:focus {
    color: #89949C;
    text-decoration: none;
}

.lead {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 300;
    color: #39444C;
}

.big-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.small-padding {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    margin-bottom: 50px;
    margin-top: 0;
    font-size: 62px;
    font-weight: 400;
    color: #39444C;
    text-align: center;
}

.section-title span {
    position: relative;
    top: -20px;
    font-size: 42px;
    font-weight: 400;
}

.section-title + .subtitle {
    margin: -40px 0 50px;
    font-size: 21px;
    text-align: center;
}

.margin-top {
    margin-top: 60px !important;
}

.row-title {
    color: #39444C;
    font-weight: 400;
}

.push-down {
    margin-top: 120px;
}

.img-center {
    margin: 0 auto;
}

.margin-grid {
    margin-bottom: 30px;
}

hr {
    border-color: #b9c4cC;
    margin: 80px 0 80px;
}

.flexslider {
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

/* ====== COLORS ===== */

.main-color {
    color: #00CCCB !important;
}

.bg-main-color {
    background: #00CCCB;
    color: #fff;
}

.dark-bg {
    background: #11161B;
    color: #a9b4bC;
}

.gray-bg {
    background: #fbfbfc;
}

.white-bg {
    background: #fff;
}

.light-type * {
    color: #fff;
}

/* ====== BUTTONS ===== */

.btn-dc {
    position: relative;
    padding: 10px 50px;
    font-size: 21px;
    border: 2px solid;
    border-radius: 30px;
    -webkit-transition: padding .2s ease-out;
    transition: padding .2s ease-out;
}

.btn-dc.btn-small {
    position: relative;
    padding: 7px 30px;
    margin-top: 20px;
    font-size: 18px;
    border: 2px solid;
    border-radius: 30px;
    -webkit-transition: padding .2s ease-out;
    transition: padding .2s ease-out;
}

.btn-dc:after {
    position: absolute;
    margin-left: 10px;
    content: "\f061";
    font-family: FontAwesome;
    opacity: 0;
    -webkit-transition: all .2s ease-out .0s;
    transition: all .2s ease-out .0s;
}

.btn-dc:hover {
    padding-right: 70px;
}

.btn-dc.btn-small:hover {
    padding-right: 50px;
}

.btn-dc:hover:after {
    margin-left: 30px;
    opacity: 1;
}

.btn-dc.btn-small:hover:after {
    margin-left: 15px;
    opacity: 1;
}

.btn-white,
.btn-white:hover,
.btn-white:focus {
    color: #fff;
    border-color: #fff;
}

.btn-dc.btn-main-color,
.btn-dc.btn-main-color:hover,
.btn-dc.btn-main-color:focus {
    color: #00CCCB;
}

/* ====== PAGE LOADER STYLES ===== */

#page-loader {
    position: fixed;
    right: 0;
    bottom: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 99999;
}

#page-loader .page-loader-gif {
    display: block;
    width: 64px;
    height: 64px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -32px 0 0 -32px;
    background: url('../images/preloader.gif') no-repeat;
}

/* ====== NAV STYLES ===== */

#main-nav {
    padding: 0;
    background: transparent;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#main-nav .container {
    padding-top: 25px;
    padding-bottom: 25px;
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#main-nav.scrolled .container {
    padding-top: 12px;
    padding-bottom: 12px;
}

#main-nav.scrolled {
    background: #fff;
    border-bottom: 1px solid #b9c4cC;
}

.navbar > .container .navbar-brand {
    padding: 10px 0 5px 15px;
}

.navbar-brand {
    position: relative;
}

#main-nav.scrolled .navbar-brand:after {
    position: absolute;
    height: 30px;
    right: -30px;
    top: 50%;
    margin-top: -5px;
    font-family: FontAwesome;
    content: "\f062";
    color: #d9e4eC !important;
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

#site-nav a {
    padding: 7px 30px;
    min-width: 120px;
    font-size: 16px;
    font-weight: 400;
    color: #89949C;
    text-align: center;
    -webkit-transition: color .2s ease-out, padding .3s ease-out;
    transition: color .2s ease-out, padding .3s ease-out;
}

#site-nav .active a,
#site-nav a:hover,
#site-nav a:focus {
    padding-top: 4px;
    padding-bottom: 10px;
    color: #00CCCB !important;
    background: none;
}

#site-nav a .fa {
    display: block;
    margin-bottom: 5px;
    font-size: 21px;
    text-align: center;
}

#site-nav ul li + li {
    border-left: 1px solid #b9c4cC;
}

/* ====== HEADER STYLES ===== */

#home {
    position: relative;
    height: 100%;
    min-height: 860px;
    margin-bottom: -64px;
    background-image: url("../images/header-bg.png");
    background-attachment: fixed;
    background-size: 100%;
    background-size: cover;
    overflow: hidden;
}

#home .container {
    position: fixed;
    width: 100%;
    height: 100%;
    min-height: 860px;
    z-index: 2;
}

#home .row {
    margin: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 15%;
}

#home h1 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 72px;
    font-weight: 400;
    color: #39444C;
}

#home h2 {
    margin: 0;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 400;
    color: #89949C;
}

#home .header-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 900px;
    margin-left: -450px;
    z-index: -1;
}

.scroll-down {
    margin-bottom: -60px;
    text-align: center;
}

.scroll-down a {
    display: inline-block;
    padding: 10px 50px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: .02em;
    color: #89949C;
    text-align: center;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.scroll-down a:after {
    display: block;
    margin-top: -7px;
    content: "\f0d7";
    font-family: FontAwesome;
    font-size: 21px;
}

.scroll-down a:focus,
.scroll-down a:active {
    color: #89949C;
}

.scroll-down a:hover {
    padding-top: 11px;
    padding-bottom: 9px;
    color: #00CCCB;
}

/* ====== SERVICE STYLES ===== */

.service-item {
    margin: 30px 0;
    padding: 0 45px;
    text-align: center;
}

.service-item:nth-child(2) {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
}

.service-item .service-icon {
    display: block;
    margin: 0 auto 30px;
    width: 180px;
    height: 180px;
    border: 1px solid #ddd;
    color: #89949C;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.service-item .service-icon img {
    height: 100px;
    width: 80px;
    margin: 40px auto 0;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.service-item:hover .service-icon img  {
    height: 150px;
    width: 100px;
    margin: 10px auto 0;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.service-item .fa {
    font-size: 82px;
    line-height: 180px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.service-item:hover .fa {
    font-size: 112px;
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg);
}

.service-item h3 {
    font-size: 21px;
    font-weight: 400;
    color: #39444C;
}

.btn-group {
    margin-bottom: 80px;
}

.btn-group .btn {
    padding: 7px 60px;
    font-size: 16px;
    background: none;
    border-color: #b9c4cC;
    color: #858a95;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
}

.btn-group .btn:hover{
    color:#39444C;
}

.btn-group .btn.active{
    color:#00CCCB;
    background:#fff;
    box-shadow: none;
}

.btn-group .btn:first-child{
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.btn-group .btn:last-child{
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

.tab-content{
    opacity:1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition:all .3s ease-out;
    transition:all .3s ease-out;
}

.tab-content.fadeOut{
    opacity:0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition:none;
    transition:none;
}

/* ===== RECENTE PROJECTEN ===== */

#recent-projects .row img {
    margin: 0 auto;
}

/* ====== CALL TO ACTION ===== */

.cta{
    padding:120px 0;
    color:#fff;
    background-image: url(../images/polygon.png);
}

.cta p{
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 400;
}

/* ====== ABOUT STYLES ===== */

#about{
    background:url(../images/about.jpg) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.profile-img{
    max-width:250px;
    margin:0 auto 0;
    border:15px solid #fff;
}

#about .profile{
    font-size: 18px;
    color:#79848C;
}

#about .profile h2{
    margin-top:30px;
    margin-bottom: 5px;
    color:#00CCCB;
}

#about .profile h3{
    margin:0;
    font-size: 21px;
    color:#39444C;
}

.hover-wrapper{
    display: inline-block;
    position: relative;
}

.hover-wrapper .hover-text{
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    line-height: 250px;
    text-align: center;
    color:#fff;
    z-index:2;
    opacity:0;
    -webkit-transform:translateY(-20px);
    transform:translateY(-20px);
    -webkit-transition:all .2s ease-out;
    transition:all .2s ease-out;
}

.hover-wrapper:hover .hover-text{
    -webkit-transform:translateY(0);
    transform:translateY(0);
    opacity:1;
}

.hover-wrapper:after{
    position: absolute;
    display: block;
    content: "";
    width:100%;
    height:100%;
    background: #00CCCB;
    top:0;
    border:15px solid #fff;
    border-radius: 50%;
    opacity:0;
    z-index:1;
    -webkit-transition: opacity .3s ease-out;
    transition: opacity .3s ease-out;
}

.hover-wrapper:hover:after{
    opacity:.8;
}

/* ====== SKILLS STYLES ===== */

#skills {
    background-image: url('../images/bars-bg.png');
    background-repeat: no-repeat;
    background-position: bottom center;
}

.chart {
    position: relative;
    margin: 30px 0;
}

.chart .percent {
    position: absolute;
    width: 100%;
    font-size: 42px;
    color: #fff;
    text-align: center;
}

.chart .percent:after {
    content: "%";
    font-size: 70%;
}

.skills h2 {
    margin: 0 0 20px;
    font-size: 21px;
    color: #69747C;
}

.skills .chart {
    display: inline-block;
    margin-bottom: 20px !important;
    height: 200px;
}

.skills .plus-symbol:after,
.skills .equal-symbol:after {
    position: absolute;
    right: -95px;
    content: "+";
    font-size: 42px;
    font-weight: 100;
    color: #fff;
}

.skills .equal-symbol:after {
    content: "=";
}

/* ====== PORTFOLIO STYLES ===== */

.btn-group .btn {
    position: relative;
}

.project-count {
    position: absolute;
    display: inline-block;
    top: -25px;
    left: 50%;
    margin: 5px 0 0 -13px;
    width: 25px;
    height: 25px;
    font-size: 14px;
    line-height: 23px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background: #89949C;
    opacity: 0;
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.btn-group .btn:hover .project-count {
    margin-top: -5px;
    opacity: 1;
}

.masonry-wrapper {
    overflow: hidden;
}

#projects-container {
    margin: 0 0 80px;
    background: #fff;
    -webkit-transition: none;
    transition: none;
}

#projects-container .project-item {
    display: block;
    position: relative;
    margin: 0;
    padding: 0 1px;
    margin-bottom: 2px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    max-height: 300px;
}

#projects-container {
    -webkit-transform:scale(1) translateY(0);
    transform:scale(1) translateY(0);
    opacity:1;
    -webkit-transition:opacity .6s ease-out,-webkit-transform .3s ease-out;
    transition:opacity .6s ease-out,transform .3s ease-out;
}

#projects-container.anim-out {
    -webkit-transform:scale(.96) translateY(40px);
    transform:scale(.96) translateY(40px);
    opacity:0;
    -webkit-transition:opacity .4s ease-out,-webkit-transform .4s ease-out;
    transition:opacity .4s ease-out,transform .4s ease-out;
}

#projects-container .project-item .project-image {
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

#projects-container .project-item:hover .project-image {
    opacity: .3;
}

.hover-title {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.project-item:hover .hover-title {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all .4s ease-out;
    transition: all .4s ease-out;
}

.hover-title:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #00CCCB;
    opacity: .9;
    z-index: -1;
}

.hover-title h2 {
    position: absolute;
    width: 100%;
    bottom: 50%;
    margin: 0 0 10px;
    font-size: 21px;
    line-height: 21px;
    color: #fff;
}

.hover-title h2:after {
    position: absolute;
    display: block;
    content: "";
    width: 25px;
    height: 2px;
    bottom: -13px;
    left: 50%;
    margin-left: -12px;
    background: #fff;
}

.hover-title p {
    position: absolute;
    width: 100%;
    top: 50%;
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 21px;
    font-style: italic;
}

/* ====== CONTACT STYLES ===== */

#contact {
    position: relative;
    background: url("../images/map.jpg") center center no-repeat;
}

.color-overlay:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #07141f;
    opacity: .9;
    z-index: 1;
}

#contact .container {
    position: relative;
    z-index: 2;
}

#contact .row {
    margin-top: 100px;
}

#contact p {
    font-size: 18px;
    margin-bottom: 30px;
}

#contact .lead {
    font-size: 21px;
    font-weight: 400;
}

#contact .mail-styled {
    display: inline-block;
    margin-bottom: 50px;
    padding: 0;
    font-size: 38px;
    font-weight: 400;
    color: #00CCCB;
    border-bottom: 2px solid;
}

#contact .mail-styled:hover,
#contact .mail-styled:focus,
#contact .mail-styled:active {
    border-bottom-color: transparent;
    text-decoration: none;
}

#contact .social-links {
    margin: 30px 0;
    font-size: 28px;
}

#contact .social-links .fa {
    -webkit-transition: color .15s ease-out;
    transition: color .15s ease-out;
}

#contact .social-links a:hover .fa {
    color: #00CCCB !important;
}

#contact-form .form-group {
    position: relative;
}

#contact-form .form-group label {
    position: absolute;
    top: 10px;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    color: #88949C;
    z-index: -1;
    -webkit-transition: all .25s ease-out;
    transition: all .25s ease-out;
}

#contact-form .form-control.input-filled + label {
    top: -20px;
}

#contact-form .form-control {
    padding: 10px 0;
    margin-bottom: 40px;
    font-size: 18px;
    height: auto;
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 2px solid;
    box-shadow: none !important;
    -webkit-transition: border .25s ease-out;
    transition: border .25s ease-out;
}

#contact-form .form-control:focus {
    border-bottom: 2px solid #00CCCB;
}

#contact-form textarea {
    max-width: 100%;
    min-width: 100%;
}

#contact-form .form-control::-webkit-input-placeholder {
    color: #fff;
    opacity: .5;
}

#contact-form .form-control:-moz-placeholder {
    color: #fff;
    opacity: .5;
}

#contact-form .form-control::-moz-placeholder {
    color: #fff;
    opacity: .5;
}

#contact-form .form-control:-ms-input-placeholder {
    color: #fff;
    opacity: .5;
}

#contact-form .form-control:focus::-webkit-input-placeholder {
    opacity: 1;
}

#contact-form .form-control:focus:-moz-placeholder {
    opacity: 1;
}

#contact-form .form-control:focus::-moz-placeholder {
    opacity: 1;
}

#contact-form .form-control:focus:-ms-input-placeholder {
    opacity:1;
}

#contact-form .btn,
#contact-form .btn:focus {
    float: right;
    margin-top: -30px;
    padding: 0;
    font-size: 21px;
    color: #fff;
    background: none !important;
    -webkit-transition: all .15s ease-out;
    transition: all .15s ease-out;
}

#contact-form .btn:hover,
#contact-form .btn:active {
    color: #00CCCB;
}

#contact-form .form-group .error-message {
    margin-left: 8px;
    color: #00CCCB;
}

#contact-form {
    position: relative;
}

#contact-form .contact-form-message {
    position: absolute;
    right: 15px;
    top: 100%;
    margin-top: 3px;
    font-size: 16px;
    opacity: .7;
}

#contact-form .contact-form-message .fa {
    margin-right: 5px;
}

/* ====== FOOTER STYLES ===== */

#main-footer {
    padding: 40px 0;
    background: #fff;
}

#main-footer a,
#main-footer a:hover,
#main-footer a:focus {
    color: #abb3ba;
    text-decoration: none;
    -webkit-transition: color .2s ease-out;
    transition: color .2s ease-out;
}

#main-footer a:hover {
    color: #00CCCB;
}

#main-footer .footer-nav {
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    list-style: none;
}

#main-footer .footer-nav li {
    display: inline-block;
    margin: 0 15px;
}

#main-footer a {
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    line-height: 37px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

#main-footer .social-links a {
    padding: 10px 3px;
}

#main-footer .logo-link {
    padding: 0;
}

/* ====== SCROLLING ANIMATIONS ===== */

.scrollimation.fade-in{
    opacity:0;
    -webkit-transition: opacity 1.2s ease-in;
    transition: opacity 1.2s ease-in;
}

.scrollimation.fade-in.in{
    opacity:1;
}

.scrollimation.fade-right{
    opacity:0;
    -webkit-transform: translateX(-60px);
    -moz-transform: translateX(-60px);
    -ms-transform: translateX(-60px);
    transform:translateX(-60px);
    -webkit-transition: -webkit-transform 1.2s ease-out,opacity 1.2s ease-out;
    transition: transform 1.2s ease-out,opacity 1.2s ease-out;
}

.scrollimation.fade-right.in{
    opacity:1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform:translateX(0px);
}

.scrollimation.fade-left{
    opacity:0;
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    transform:translateX(60px);
    -webkit-transition: -webkit-transform 1.2s ease-out,opacity 1.2s ease-out;
    transition: transform 1.2s ease-out,opacity 1.2s ease-out;
}

.scrollimation.fade-left.in{
    opacity:1;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform:translateX(0px);
}

.scrollimation.fade-up{
    opacity:0;
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    transform:translateY(60px);
    -webkit-transition: -webkit-transform 1.2s ease-out,opacity 1.2s ease-in;
    transition: transform 1.2s ease-out,opacity 1.2s ease-in-out;
}

.scrollimation.fade-up.in{
    opacity:1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform:translateY(0px);
}

.scrollimation.fade-down{
    opacity:0;
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    transform:translateY(-60px);
    -webkit-transition: -webkit-transform 1.2s ease-out,opacity 1.2s ease-in;
    transition: transform 1.2s ease-out,opacity 1.2s ease-in-out;
}

.scrollimation.fade-down.in{
    opacity:1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform:translateY(0px);
}

/* ====== MEDIA QUERIES ===== */

@media (min-width:1500px){
    .container{
        width:1500px;
    }

    #project-viewer .container{
        width:1170px;
    }

}

@media (max-width:1499px){

    #home{
        min-height:810px;
        margin-bottom:-64px;
    }

    #home .container{
        padding-top: 100px;
        min-height:810px;
    }

    #home .row{
        top:12%;
    }

    .skills .plus-symbol:after,
    .skills .equal-symbol:after{
        right:-60px;
    }
}

@media (max-width:1199px){

    .push-down{
        margin-top:60px;
    }

    #home{
        min-height:768px;
        margin-bottom:-64px;
    }

    #home .container{
        padding-top: 100px;
        min-height:768px;
    }

    #home .row{
        top:15%;
    }

    #home .header-img{
        width:800px;
        margin-left:-400px;
    }

    .service-item{
        padding:0 15px;
    }
    .skills .plus-symbol:after,
    .skills .equal-symbol:after{
        right:-32px;
    }
}

@media (max-width:991px){

    .push-down{
        margin-top:0;
    }

    #home{
        min-height:810px;
        margin-bottom:-64px;
    }

    #home .container{
        padding-top: 100px;
        min-height:810px;
    }

    #home .row{
        top:20%;
    }

    #home .header-img{
        width:760px;
        margin-left:-380px;
    }

    .service-item .service-icon{
        width:150px;
        height:150px;
    }

    .service-item .fa{
        font-size: 62px;
        line-height: 150px;
        -webkit-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }

    .service-item:hover .fa{
        font-size: 92px;
        -webkit-transform:rotate(-15deg);
        transform:rotate(-30deg);
    }

    .skills .plus-symbol:after,
    .skills .equal-symbol:after{
        display: none;
    }

    #contact .mail-styled{
        font-size: 28px;
    }

    #main-footer .footer-nav li{
        margin:0 5px;
    }

    #main-footer a{
        padding:5px;
        font-size: 17px;
    }

}

@media (max-width:767px){

    .big-padding{
        padding:80px 0;
    }

    .push-down{
        margin-bottom:60px;
        text-align: center;
    }

    .section-title{
        margin-bottom: 30px;
        font-size: 38px;
    }

    .section-title span{
        top:-15px;
        font-size:28px;
    }

    .section-title + .subtitle{
        margin:-30px 0 40px;
        font-size: 18px;
    }

    .row-title{
        font-size: 24px;
    }

    .lead{
        margin-bottom: 30px;
        font-size: 24px;
    }

    .btn-dc{
        padding:8px 40px;
        font-size:18px;
    }

    .btn-dc:hover{
        padding-right:50px;
    }

    .btn-dc:after{
        margin-left:5px;
    }

    .btn-dc:hover:after{
        margin-left:15px;
    }

    .icon-bar{
        background: #39444C;
    }

    #main-nav .container, #main-nav.scrolled .container{
        padding-top:5px;
        padding-bottom:5px;
    }

    #main-nav, #main-nav.scrolled{
        background: #fff;
        border-bottom:1px solid #b9c4cC;
    }

    .navbar > .container .navbar-brand{
        padding: 5px 0 5px 15px;
    }

    #main-nav .navbar-brand:after{
        display: none !important;
    }

    #site-nav a{
        padding:10px 30px;
        font-size: 18px;
    }

    #site-nav .active a,
    #site-nav a:hover,
    #site-nav a:focus{
        padding:10px 30px;
        color:#00CCCB !important;
        background: none;
    }

    #site-nav a .fa{
        display: none;
    }

    #home{
        min-height:480px;
        margin-bottom:0;
    }

    #home .container{
        min-height:480px;
    }

    #home .row{
        top:80px;
    }

    #home h1{
        font-size: 42px;
    }

    #home h2{
        font-size: 21px;
    }

    #home .header-img{
        width:100%;
        left:0;
        margin-left:0;
    }

    .btn-group{
        margin-bottom: 40px;
    }

    .btn-group .btn{
        padding:7px 30px;
    }

    .cta{
        padding:80px 0;
    }

    .cta p{
        margin-bottom: 40px;
        font-size: 24px;
    }

    .service-item{
        margin-bottom: 50px;
    }

    #skills{
        background-image: none;
    }

    .project-item{
        max-width:360px;
        margin: 2px auto !important;
    }

    #contact-form .contact-form-message{
        margin-top: 40px;
    }

    #main-footer{
        padding:30px 0 20px;
    }

    #main-footer .social-links{
        margin-top: 20px;
        text-align: center;
    }

    #main-footer .logo-link img{
        margin:0 auto 15px;
    }

}























