/* Fonts */
@font-face {
    font-family: 'Bebas Neue';
    src: url('/includes/font/bebas-neue/BebasNeue-webfont.eot');
    src: local('☺'), /* Hotfix IE 6-8 (IE only support font.eot files, this prevents loading files underneath) */
    url('/includes/font/bebas-neue/BebasNeue-webfont.woff') format('woff'),
    url('/includes/font/bebas-neue/BebasNeue-webfont.ttf') format('truetype'),
    url('/includes/font/bebas-neue/BebasNeue-webfont.svg#font') format('svg');
}
.bebas {
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
}


/* General */
body {
    width: 100%;
    display: block;
    background: #000;
    overflow: auto !important;
    overflow-x: hidden !important;
}
body.prevent-scroll {
    overflow: hidden !important;
}
.website {
    background: #fff;
}
.inline-block {
    display: inline-block;
}
.alert p,
.alert ul,
.alert ol {
    margin: 5px 0 0;
}


/* Forms */
form.webform .field {
    margin-bottom: 10px;
}
form.webform .input * {
    width: 100%;
    min-height: 50px;
    background: #f5f5f5;
    border: 1px solid #f5f5f5;
    padding: 15px 15px;
}
form.webform .input textarea {
    height: 200px;
    padding: 15px 15px;
}
form.webform .buttons button {
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    background-color: #000;
    text-transform: uppercase;
}


/* Header */
.header-wrapper {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: 0;
}


/* Logo */
.logo-wrapper {
    padding: 15px 0 0;
    width: 150px;
    max-width: 100%;
}
.logo-wrapper .logo img {
    transition: 1s;
    /*-webkit-filter: brightness(100%) invert(0%);*/
    /*filter: brightness(100%) invert(0%);*/
}
.scrolled .logo-wrapper .logo img {
    /*-webkit-filter: brightness(0%) invert(100%);*/
    /*filter: brightness(0%) invert(100%);*/
}


/* Menu */
.menu-wrapper {
    text-align: center;
    padding: 30px 0;
}
.menu-wrapper nav {
    display: inline-block;
    white-space: nowrap;
}
.menu-wrapper nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-wrapper nav ul li {
    display: inline-block;
    position: relative;
}
.menu-wrapper nav ul li a {
    color: #fff;
    display: block;
    padding: 5px 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
    font-size: 28px;
}
.menu-wrapper nav ul li a:hover,
.menu-wrapper nav ul li a:focus {
    color: #ccc;
}

.menu-wrapper nav ul li ul {
    display: none;
    position: absolute;
    left: -10px;
    bottom: 0;
    transform: translateY(100%);
    background: #000;
    padding: 20px 10px;
}

.menu-wrapper nav ul li:hover ul {
    display: inline-block;
}

.menu-wrapper nav ul li ul li {
    display: block;
}

.menu-wrapper nav ul li ul li a {
    padding: 0px 20px;
}


/* Background image */
.background-wrapper {
    min-height: 100vh;
    background-image: url(../../images/bg-01.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
}
.background-wrapper .logo img {
    display: inline-block;
    /*-webkit-filter: brightness(0%) invert(100%);*/
    /*filter: brightness(0%) invert(100%);*/
}
.background-wrapper .logo {
    position: relative;
    padding-top: 280px;
    text-align: center;
    transition: 0.5s;
    opacity: 1;
}
.scrolled .background-wrapper .logo {
    opacity: 0;
}
.scrolled .background-wrapper .logo::after {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Footer */
.footer-wrapper {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
}
.footer-wrapper .copyright p {
    margin: 7px 0 0;
}
.footer-wrapper .socialmedia {
    margin-bottom: 25px;
    text-align: right;
}
.footer-wrapper .socialmedia .social {
    display: inline-block;
    width: 32px;
    margin-right: 10px;
}
.footer-wrapper .socialmedia .social:last-child {
    margin-right: 0px;
}
.footer-wrapper .socialmedia .social.facebook {
    margin-right: 5px;
}
.footer-wrapper .developer {
    margin-top: 40px;
    text-align: right;
}
.footer-wrapper .developer img {
    width: 160px;
    display: inline-block;
}


/* Content */
.title-center {
    text-align: center;
}
.main-title .bebas {
    font-weight: 400;
    font-size: 36px;
}
article.about-article {
    margin-bottom: 50px;
}
.content-wrapper {
    padding: 120px 0;
    position: relative;
    background: #fff;
}
.content-wrapper p {
    line-height: 1.5em;
}
.content-wrapper.highlight {
    color: #333;
    background: #f5f5f5;
}
.content-wrapper.services {

}


/* Profiles */
.profiles-wrap {
    margin-top: 60px;
    text-align: center;
}
.profiles-wrap .profile {
    cursor: pointer;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    width: 250px;
    max-width: 100%;
    margin-right: 15px;
    margin-left: 15px;
}
.profiles-wrap .profile .profile-text {
    padding: 10px;
    min-height: 50px;
    font-size: 21px;
    color: #fff;
    background: #000;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.2s;
}
.profiles-wrap .profile:hover .profile-text {
    padding-bottom: 40px;
}


/* Profile detailed */
.profile-detailed-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    background: rgba(0, 0, 0, 0.8);
    display: none;
}
.profile-detailed-wrap > .container {
    position: relative;
    min-height: 100vh;
}
.profile-detailed {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: 80vh;
    overflow: auto;
}
.profile-detailed .profile {
    background: #f5f5f5;
    position: relative;
}

.profile-detailed .profile {
    display: table;
}
.profile-detailed .profile .profile-image-wrap {
    background: #000;
    display: table-cell;
    vertical-align: top;
    width: 30%;
}
.profile-detailed .profile .profile-content-wrap {
    display: table-cell;
    vertical-align: top;
    width: 70%;
}

.profile-detailed .close {
    cursor: pointer;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 10;
    background: #fff;
}
.profile-detailed .close span {
    display: inline-block;
    vertical-align: middle;
    padding: 0px 20px 0;
    font-weight: 600;
}
.profile-detailed .close .icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('/images/icon-close.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    background-color: #000;
    vertical-align: middle;
    border: 1px solid #f5f5f5;
}
.profile-detailed .profile .profile-image {
    background: #000;
    text-align: center;
}
.profile-detailed .profile .profile-image .image img {
    width: 100%;
}
.profile-detailed .profile .profile-image .name {
    background: #000;
    padding: 20px;
    color: #fff;
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    margin-top: -1px;
}
.profile-detailed .profile .profile-slogan p {
    font-size: 20px;
    text-align: center;
    padding: 20px 30px;
    font-style: italic;
}
.profile-detailed .profile .profile-content {
    padding: 40px 50px 35px 50px;
}
.profile-detailed .profile .profile-content article {
    max-height: 70vh;
    overflow: auto;
}
.profile-detailed .profile .profile-content .spotify-wrap {
    margin-top: 30px;
}
.profile-detailed .profile .profile-instagram {
    font-weight: 600;
}
.profile-detailed .profile .profile-instagram img {
    display: inline-block;
    width: 24px;
    margin-right: 3px;
}


/* Tabs */
.tabs-wrap .tabs {
    display: block;
    padding: 0;
    margin-bottom: 0px;
}
.tabs-wrap .tabs li {
    display: inline-block;
}
.tabs-wrap .tabs li a {
    cursor: pointer;
    display: block;
    padding: 10px 15px 7px;
    text-transform: uppercase;
    color: #aaa;
    font-family: 'Bebas Neue', 'Open Sans', sans-serif;
    font-size: 22px;
}
.tabs-wrap .tabs li.active a {
    color: #333;
    background: #f5f5f5;
}
.tabs-wrap .tabs-content {
    background: #f5f5f5;
    padding: 30px 45px 30px;
    min-height: 200px;
}
.tabs-wrap .tabs-content .tab-item {
    display: none;
}
.tabs-wrap .tabs-content .tab-item.active {
    display: block;
}


/* Service */
.service-tabs {
    margin-top: 60px;
}


/* Contact */
.contact-information {
    margin-top: 25px;
}
.contact-information .item > a {
    display: inline-block;
    margin-bottom: 10px;
}
.contact-information .item p {
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    margin: 0;
}
.contact-information .item .icon img {
    display: inline-block;
}
.contact-information .item .icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 30px;
    margin-right: 5px;
}
.contact-information .item .icon.mail {
    padding: 0 3px;
}
.contact-information .item .icon.insta {
    padding: 0 3px;
}

.releases-wrapper {
    background: #f5f5f5;
    padding: 50px 0 70px;
}
.releases-wrapper h1 {
    color: #333;
    text-align: center;
    font-size: 38px;
    margin-bottom: 20px;
}
.releases-wrapper .release-slider-wrap {
    position: relative;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
}
.releases-wrapper .release-slider .unslider-arrow {
    position: absolute;
    top: -70px;
    display: inline-block;
    width: 50px;
    height: 50px;
}
.releases-wrapper .release-slider .unslider-arrow.prev {
    background: url('/images/arrow-left.png') no-repeat center;
    left: 0;
}
.releases-wrapper .release-slider .unslider-arrow.next {
    background: url('/images/arrow-right.png') no-repeat center;
    right: 0;
}
.releases-wrapper .release-slider .slide {
    text-align: center;
}



.content-wrapper.partnerships {
    color: #fff;
    background: #000;
}
.content-wrapper.partnerships article {
    text-align: center;
}
.content-wrapper.partnerships article p {
    font-size: 16px;
    line-height: 1.8em;
}
.partnership-logo {
    text-align: center;
    margin: 0 0 40px;
}
.partnership-logo > a {
    display: inline-block;
}
.partnership-logo img {
    display: inline-block;
    width: 300px;
    max-width: 100%;
}






/* Responsive medium desktop */
@media all and (max-width: 1199px) {
    .content-wrapper {
        padding: 130px 0;
    }
}


/* Responsive small tablet */
@media all and (max-width: 991px) {
    .menu-wrapper nav ul li a {
        padding: 10px 12px;
        font-size: 26px;
    }
    .content-wrapper {
        padding: 90px 0;
    }
    .contact-form {
        margin-top: 65px;
    }

    .profiles-wrap .profile {
        width: 200px;
    }

    .profile-detailed .profile .profile-image-wrap {
        width: 35%;
    }
    .profile-detailed .profile .profile-content-wrap {
        width: 65%;
    }
}


/* Responsive extra small mobile */
@media all and (max-width: 767px) {

    .profiles-wrap .profile {
        width: 40%;
        margin-right: 5px;
        margin-left: 5px;
        margin-bottom: 10px;
    }

    body.prevent-scroll {
        overflow: auto;
    }

    .background-wrapper {
        min-height: 50vh;
    }
    .background-wrapper .logo {
        padding: 150px 50px 50px;
    }
    .background-wrapper .logo img {
        width: 300px;
    }
    .logo-wrapper {
        width: 130px;
        padding: 10px 0 5px;
    }
    .menu-wrapper {
        padding: 0;
        margin: 0;
    }
    .menu-wrapper .menu {
        display: none;
        padding: 0;
        margin: 0;
    }
    .menu-wrapper .menu li {
        display: block;
    }
    .menu-wrapper .menu li:first-child {
        padding-top: 10px;
    }
    .menu-wrapper .menu li:last-child {
        padding-bottom: 15px;
    }
    .menu-wrapper .menu li a {
        padding: 0px 0;
    }


    .menu-wrapper nav ul li ul {
        display: block;
        position: static;
        transform: none;
        padding: 0px;
    }

    .content-wrapper {
        padding: 40px 0;
    }
    .footer-wrapper .socialmedia {
        text-align: left;
        padding-left: 0px;
        margin-top: 20px;
    }
    .footer-wrapper .socialmedia .social {
        margin-left: 0px;
        margin-right: 5px;
    }
    .footer-wrapper .developer {
        margin-top: 40px;
        text-align: left;
    }
    .profile-detailed {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    .profile-detailed .profile {
        display: block;
        min-height: 100vh;
    }

    .profile-detailed .profile .profile-image-wrap {
        display: block;
        width: auto;
    }
    .profile-detailed .profile .profile-content-wrap {
        display: block;
        width: auto;
    }
    .profile-detailed .profile .profile-image {
        width: 100%;
        position: relative;
        overflow: hidden;
    }
    .profile-detailed .profile .profile-image .image {
        width: 100%;
        max-height: 45vh;
        text-align: center;
    }
    .profile-detailed .profile .profile-image .image img {
        max-width: 360px;
        max-height: 55vh;
        display: inline-block;
    }
    .profile-detailed .profile .profile-image .name {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 10px;
    }
    .profile-detailed .profile .profile-slogan p {
        font-size: 16px;
        margin: 15px 0;
        padding: 0px 15px;
    }
    .profile-detailed .profile .profile-content {
        padding: 0;
        max-height: 55vh;
        overflow: auto;
    }
    .profile-detailed .profile .profile-content article {
        padding: 15px 15px 5px;
    }
    article.about-article {
        margin-bottom: 30px;
    }
    .tabs-wrap .tabs {
        margin-bottom: 5px;
    }
    .tabs-wrap .tabs li {
        width: 100%;
        text-align: center;
    }
    .tabs-wrap .tabs-content {
        padding: 5px 20px 5px;
    }
    .service-tabs {
        margin-top: 40px;
    }
    .content-wrapper.profiles {
        padding-bottom: 10px;
    }
    .profiles-wrap {
        margin-top: 40px;
    }
    .contact-form {
        margin-top: 40px;
    }
    .contact-form .webform {
        margin-bottom: 0;
    }
    .hamburger {
        display: block;
        width: 36px;
        position: absolute;
        right: 30px;
        top: 25px;
        z-index: 20;
    }
    .hamburger div {
        height: 3px;
        margin: 7px 0;
        background: #fff;;
        transition: 0.35s;
    }
    .hamburger.cross-pre div:nth-child(1) {
        -webkit-transform: translateY(10px) ;
        -ms-transform: translateY(10px) ;
        transform: translateY(10px) ;
    }
    .hamburger.cross-pre div:nth-child(2) {
        opacity: 0;
    }
    .hamburger.cross-pre div:nth-child(3) {
        -webkit-transform: translateY(-10px) ;
        -ms-transform: translateY(-10px) ;
        transform: translateY(-10px) ;
    }
    .hamburger.cross div:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        -ms-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }
    .hamburger.cross div:nth-child(2) {
        opacity: 0;
    }
    .hamburger.cross div:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        -ms-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg);
    }
}
