/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    background: #000;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}

a {
    color: #fff;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #000;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
}






























/* Prelaoder */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url("../img/preloader.svg") no-repeat center center;
}






























/* Back to top button */

.back-to-top {
    position: fixed;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 6px 12px 9px 12px;
    font-size: 16px;
    border-radius: 2px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
}






























/*
.back-to-top:before {
    font-family: 'icomoon';
    content: "\e901";
    display: block;
    font-size: 32px;
    left: 8px;
    position: absolute;
    top: 14px;
    color: #fff;
}
*/

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}

.back-to-top:focus {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    outline: none;
}

.back-to-top:hover {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
}






























/*--------------------------------------------------------------
# Welcome
--------------------------------------------------------------*/

#hero {
    display: table;
    width: 100%;
    height: 100vh;
    /*background: url(../img/hero-bg.jpg) top center fixed;
    background-size: cover;*/
}

#hero .hero-logo {
    margin: 20px;
}

#hero .hero-logo img {
    max-width: 100%;
}

#hero .hero-container {
    background: #000;
    display: table-cell;
    margin: 0;
    padding: 0;
    text-align: center;
    vertical-align: middle;
}

#hero h1 {
    margin: 30px 0 10px 0;
    font-weight: 700;
    line-height: 48px;
    text-transform: uppercase;
    color: #fff;
    font-size: 78px;
    letter-spacing: 3px;
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }
}

#hero h2 {
    color: #fff;
    margin: 30px 0 50px 0;
}

@media (max-width: 768px) {
    #hero h2 {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 30px;
    }
    #hero h2 .rotating {
        display: block;
    }
}

#hero .rotating > .animated {
    display: inline-block;
}

#hero .actions a {
    display: inline-block;
    transition: 0.5s;
}

.actions {
    position: relative;
    top: -30px;
}






























/* #hero .btn-get-started {
    background: none;
    border: 2px solid #fff;
    color: #fff;
}
#hero .btn-get-started:hover {
    background: #DC3522;
    border: 2px solid #DC3522;
    color: #fff;
}
#hero .btn-services {
    border: 2px solid #fff;
    color: #fff;
}
#hero .btn-services:hover {
    background: #DC3522;
    border: 2px solid #DC3522;
} */


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    background: #000;
    padding: 20px 0;
    height: 90px;
}

#header #logo {
    float: left;
}

#header #logo h1 {
    font-size: 36px;
    margin: 0;
    padding: 6px 0;
    line-height: 1;
    font-family: "Raleway", sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

#header #logo h1 a {
    color: #fff;
}

#header #logo h1 a:hover {
    color: #8a2d3c;
}

#header #logo img {
    padding: 0;
    margin: 0;
    max-height: 50px;
}

@media (max-width: 768px) {
    #header {
        height: 80px;
    }
    #header #logo h1 {
        font-size: 26px;
    }
    #header #logo img {
        max-height: 40px;
    }
}

.is-sticky #header {
    background: rgba(0, 0, 0, 0.85);
}






























/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}






























/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}






























/* Nav Meu Container */

#nav-menu-container {
    float: right;
    margin: 5px 0;
}

@media (max-width: 768px) {
    #nav-menu-container {
        display: none;
    }
}






























/* Nav Meu Styling */

.nav-menu a {
    padding: 10px 15px;
    text-decoration: none;
    display: inline-block;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 14px;
    outline: none;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu li:hover > a,
.nav-menu .menu-active > a {
    color: #ff0000;
}

.nav-menu ul {
    margin: 4px 0 0 15px;
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
    background: #fff;
    border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li:hover {
    background: #f6f6f6;
}

.nav-menu ul li a {
    color: #333;
}

.nav-menu ul ul {
    margin: 0;
}






























/* Mobile Nav Toggle */

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 20px 20px 0 0;
    border: 0;
    background: none;
    font-size: 24px;
    display: none;
    transition: all 0.4s;
    outline: none;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 768px) {
    #mobile-nav-toggle {
        display: inline;
    }
}






























/* Mobile Nav Styling */

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    right: -260px;
    width: 260px;
    overflow-y: auto;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #DC3522;
}

#mobile-nav ul .menu-item-active {
    color: #DC3522;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}






























/* Mobile Nav body classes */

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    right: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}






























/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/* Sections Common
--------------------------------*/

.section-title {
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

.section-description {
    text-align: center;
    margin-bottom: 80px;
    font-size: 28px;
}

.section-title-divider {
    width: 50px;
    height: 3px;
    background: #000;
    margin: 0 auto;
    margin-bottom: 20px;
}






























/* Get Started Section
--------------------------------*/

#about {
    background: #ff0000;
    padding: 80px 0;
    height: 100vh;
    width: 100%;
    display: table;
}

.about-center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    display: inline;
}

.about-center .img-responsive {
    display: inline-block;
    text-align: center;
}

#about .about-content {
    background: none;
}

#about .about-title {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    line-height: 48px;
}

#about .about-text {
    line-height: 26px;
}

#about .about-text:last-child {
    margin-bottom: 0;
}

#about .about-text a {
    color: #fff;
}

#about .about-text a:hover {
    color: #000;
}

#about .section-title-divider {
    margin-bottom: 90px;
}

#about .section-title {
    margin-top: 80px;
}






























/* Services Section
--------------------------------*/

#services {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url("../img/services-bg.jpg") fixed center center;
    background: #fff;
    background-size: cover;
    padding: 80px 0 60px 0;
    height: 100vh;
    width: 100%;
    display: table;
}

#services .container {
    display: table-cell;
    vertical-align: middle;
}

#services .service-item {
    margin-bottom: 20px;
    text-align: center;
}

#services .service-icon {
    height: 170px;
}






























/*
#services .service-icon {
    background: #DC3522;
    padding: 16px;
    transition: 0.5s;
    border: 1px solid #DC3522;
}

#services .service-icon:before {
    color: #5986b4;
    font-size: 80px;
    left: 50%;
    margin-left: -50px;
    position: relative;
    display: none;
}
#services .service-icon.design:before {
    content: "\e9ce";
    content: "\e901";
    font-family: 'icomoon';
    width: 40px;
    height: 40px;
}
#services .service-icon.code:before {
    content: "\ea80";
    content: "\e900";
    font-family: 'icomoon';
    width: 40px;
    height: 40px;
}
#services .service-icon.media:before {
    content: "\e95b";
    content: "\e902";
    font-family: 'icomoon';
    width: 40px;
    height: 40px;
}*/

.service-item img {
    padding: 38px 0 0 0;
}

#services .service-icon i {
    color: #fff;
    font-size: 24px;
}






























/*
#services .service-item:hover .service-icon {
    background: #fff;
}
#services .service-item:hover .service-icon i {
    color: #DC3522;
}
*/

#services .service-title {
    margin-left: 0;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
}

#services .service-title a {
    color: #192c3f;
}

#services .service-description {
    margin-left: 0;
    line-height: 24px;
    text-align: center;
}

#services .section-title,
#services .section-description,
#services .service-description,
#services .service-title {
    color: #000;
}

@media (max-width: 768px) {
    .service-item .service-description {
        padding-left: 25%;
        padding-right: 25%;
    }
}

@media (max-width: 480px) {
    .service-item .service-description {
        padding-left: 15px;
        padding-right: 15px;
    }
}






























/* Portfolio Section
--------------------------------*/

#portfolio {
    background: #fff;
    padding: 120px 0 0 0;
    height: 100vh;
    width: 100%;
    display: table;
}

#portfolio .container {
    display: table-cell;
    vertical-align: middle;
}

#portfolio .section-title,
#portfolio .section-description {
    color: #000;
}

#portfolio .portfolio-item {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    height: 260px;
    width: 100%;
    display: table;
    overflow: hidden;
    margin-bottom: 30px;
}

#portfolio .portfolio-item .details {
    height: 260px;
    background: #fff;
    display: table-cell;
    vertical-align: middle;
    opacity: 0;
    transition: 0.3s;
    text-align: center;
}

#portfolio .portfolio-item .details h4 {
    font-size: 16px;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    font-weight: 700;
    color: #333333;
}

#portfolio .portfolio-item .details span {
    display: block;
    color: #666666;
    font-size: 13px;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
}

#portfolio .portfolio-item:hover .details {
    opacity: 0.8;
}

#portfolio .portfolio-item:hover .details h4 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#portfolio .portfolio-item:hover .details span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}






























/* Work Section
--------------------------------*/

#work {
    background: #fff;
    background-size: cover;
    padding: 0 0 60px 0;
    height: 100vh;
    width: 100%;
    display: table;
}

#work .container {
    display: table-cell;
    vertical-align: middle;
}

.work-info {
    margin: 0px auto;
    max-width: 1137px;
}

.work-info p.title {
    color: #000;
    text-align: center;
}

#description {
    background: #fff;
    display: table;
    padding: 80px 0;
    width: 100%;
}

#description.light,
#work.light,
#portfolio.light {
    background: #f2f2f2;
}

.description-center {
    display: table-cell;
    vertical-align: middle;
}

#description .description-title {
    color: #333;
    font-size: 28px;
    font-weight: 400;
    line-height: 48px;
}

.description-title a {
    color: #ff0000;
}

.description-title a:hover {
    color: #000;
}

#description .description-text {
    line-height: 26px;
    color: #333;
}

#description .description-text:last-child {
    margin-bottom: 0;
}

.section-title.alternate {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.btn-view {
    text-align: center;
    margin: 80px 0;
}

a.btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 2px;
    transition: 0.5s;
    margin: 10px;
}

a.btn {
    background: none;
    border: 2px solid #ff0000;
    color: #ff0000;
}

a.btn:hover {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.video-container iframe, 
.video-container object, 
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 480px) {
    .video-container,
    .work-info p {
        margin-bottom: 15px;
    }
}









/* Press Section
--------------------------------*/

#press {
    background: #efefef;
    padding: 120px 0 60px 0;
    height: 100vh;
    width: 100%;
    display: table;
}

#press .section-title {
    color: #000;
}

#press .section-title-divider {
    margin-bottom: 60px;
}

#press ul {
    list-style-type: none;
    padding: 0;
    margin-top: 0;
}

#press ul li {
    color: #000;
    margin-bottom: 9px;
    line-height: 20px;
    padding: 0 .65em;
}

#press ul li a {
    color: #ba1c36;
}

#press ul li a:hover {
    color: #000;
}



















/* Contact Section
--------------------------------*/

#contact {
    background: #000;
    padding: 80px 0;
    height: 100vh;
    width: 100%;
    display: table;
}

#contact .container {
    display: table-cell;
    vertical-align: middle;
}

#contact .info {
    color: #fff;
}

#contact .info i {
    font-size: 32px;
    color: #DC3522;
    float: left;
}

#contact .info p {
    padding: 0 0 10px 50px;
    line-height: 24px;
    color: #fff;
}

#contact .form #sendmessage {
    color: #DC3522;
    border: 1px solid #DC3522;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
    display: block;
}

#contact .form .validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

#contact .form input,
#contact .form textarea {
    border-radius: 0;
    box-shadow: none;
}

#contact .form button[type="submit"] {
    background: #DC3522;
    border: 0;
    padding: 10px 24px;
    color: #fff;
    transition: 0.4s;
}

#contact .form button[type="submit"]:hover {
    background: #25d8fc;
}

#contact a:hover {
    color: #ff0000;
}

#contact .fa-instagram {
    font-size: 44px;
}

@media (max-width: 480px) {
    #contact .section-description {
        font-size: 23px;
    }
}






























/*--------------------------------------------------------------
# Custom Font Icons
--------------------------------------------------------------*/

@font-face {
    font-family: 'icomoon';
    src: url('../lib/icomoon/fonts/icomoon.eot?gaxqvi');
    src: url('../lib/icomoon/fonts/icomoon.eot?gaxqvi#iefix') format('embedded-opentype'),
    url('../lib/icomoon/fonts/icomoon.ttf?gaxqvi') format('truetype'),
    url('../lib/icomoon/fonts/icomoon.woff?gaxqvi') format('woff'),
    url('../lib/icomoon/fonts/icomoon.svg?gaxqvi#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-design:before {
    content: "\e905";
    display: block;
    color: #d8d8d8;
    font-size: 140px;
}

.icon-code:before {
    content: "\e904";
    display: block;
    color: #d8d8d8;
    font-size: 140px;
}

.icon-media:before {
    content: "\e903";
    display: block;
    color: #d8d8d8;
    font-size: 140px;
}

.icon-tv:before {
    content: "\e95b";
}

.icon-eye:before {
    content: "\e9ce";
}

.icon-embed2:before {
    content: "\ea80";
}






























/*--------------------------------------------------------------
# Image Grid
--------------------------------------------------------------*/

.imageGrid {
    padding-bottom: 0;
}

.contBlock {
    padding-right: 0;
}

.thumbPost {
    display: block;
    position: relative;
}

.thumbPost a,
.thumbPost a:visited {
    border-style: none;
    display: block;
}

.thumbPost img {
    height: auto;
    max-width: 100%;
    width: 100%;
}

.thumbPost span {
    background: rgba(239, 239, 239, 0.85) none repeat scroll 0 0;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 0;
    /*    transition: all 0.16s cubic-bezier(0, 0, 0.25, 1) 0s;*/
    width: 100%;
    -webkit-transition: all 0.16s cubic-bezier(0, 0, 0.25, 1);
    -moz-transition: all 0.16s cubic-bezier(0, 0, 0.25, 1);
    -o-transition: all 0.16s cubic-bezier(0, 0, 0.25, 1);
    -ms-transition: all 0.16s linear;
}

.thumbPost a:hover span {
    /*color: rgb(48, 48, 47);*/
    opacity: 1;
}

.infoThumb {
    padding-top: 32%;
}

.infoThumb h2 {
    font-size: 22px;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
    font-weight: 700;
    color: #ff0000;
}

.thumbPost:hover .infoThumb h2 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.infoThumb h3 {
    font-size: 16px;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
    font-weight: 400;
    color: #000;
}

.thumbPost:hover .infoThumb h3 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.thumbPost:hover .infoThumb span {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#portfolio .col-md-12 div.col-md-4:nth-of-type(1),
#portfolio .col-md-12 div.col-md-4:nth-of-type(2),
#portfolio .col-md-12 div.col-md-4:nth-of-type(3),
#portfolio .col-md-12 div.col-md-4:nth-of-type(4),
#portfolio .col-md-12 div.col-md-4:nth-of-type(5),
#portfolio .col-md-12 div.col-md-4:nth-of-type(6) {
    padding-right: 0;
    padding-left: 0;
}






























/*--------------------------------------------------------------
# Jump Link
--------------------------------------------------------------*/

.bounce {
    animation-name: bounce;
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite;
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
































/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    background: #111;
    padding: 30px 0;
    color: #fff;
}

#footer .copyright {
    text-align: center;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #ccc;
}
