/* Font */
@font-face {
    font-family: 'libre_bodonibold';
    src: url('../font/librebodoni-bold-webfont.woff2') format('woff2'),
        url('../font/librebodoni-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'libre_bodoniregular';
    src: url('../font/librebodoni-regular-webfont.woff2') format('woff2'),
        url('../font/librebodoni-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* General */
* {
    box-sizing: border-box;
}

body {
    font-family: 'libre_bodoniregular';
    margin: 0;
    background: #282828 url('../img/bg.png') repeat center top;
    color: #fff;
}

a {
    text-decoration: none;
    -webkit-transition: opacity 200ms linear;
    transition: opacity 200ms linear;
    opacity: 1;
}

a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
    opacity: 0.8;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 600px;
    padding: 0 15px;
    margin: 0 auto;
    text-align: center;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.socials {
    list-style: none;
    margin: 43px 0 57px 0;
    padding: 0;
    text-align: center;
}

.socials>li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px;
}

.socials>li>a {
    display: block;
}

h1 {
    margin-top: 0;
    margin-bottom: 64px;
}

h1 img {
    margin: 0 auto;
}

.album {
    margin: 0 auto;
}

.text {
    text-transform: uppercase;
    line-height: 1em;
}

.text h2 {
    margin-top: 75px;
    margin-bottom: 37px;
    font-weight: normal;
    font-size: 28px;
    letter-spacing: 1.1em;
    text-indent: 1.1em;
}

.text h3 {
    font-weight: normal;
    font-size: 18px;
    letter-spacing: 0.55em;
    text-indent: 0.55em;
}

.text h3 span {
    display: block;
    margin-top: 37px;
    letter-spacing: 0.78em;
    text-indent: 0.78em;
}

.text h4 {
    margin-top: 78px;
    margin-bottom: 39px;
    font-weight: normal;
    font-size: 24px;
    letter-spacing: 0.72em;
    text-indent: 0.72em;
    color: #787878;
}

.buy-links {
    list-style: none;
    margin: 0 -15px;
    padding: 0;
}

.buy-links>li {
    /*display: block;
    float: left; 
    width: 20%;
    width: 50%;*/
    display: inline-block;
    vertical-align: middle;
    padding: 0;
}

.buy-links>li>a {
    display: block;
}

.buy-links>li>a>img {
    margin: 0 auto;
}

.google-play {
    position: relative;
    top: 3px;
}

.videos {
    margin-top: 70px;
}

.owl-nav>div {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 35px;
    background-repeat: no-repeat;
    background-position: center center;
}

.owl-nav>div.owl-prev {
    left: 55px;
    background-image: url('../img/carousel/arrow-left.png');
}

.owl-nav>div.owl-next {
    right: 55px;
    background-image: url('../img/carousel/arrow-right.png');
}

@media (max-width: 480px) {
    .socials {
        margin: 21.5px 0 28.5px 0;
    }
    
    h1 {
        padding: 0 15px;
        margin-bottom: 32px;
    }

    .text h2 {
        margin-top: 37.5px;
        margin-bottom: 18.5px;
        font-size: 15px;
    }

    .text h3 {
        margin-bottom: 18.5px;
        font-size: 12px;
    }

    .text h3 span {
        margin-top: 18.5px;
    }

    .text h4 {
        margin-top: 39px;
        margin-bottom: 19.5px;
        font-size: 15px;
    }

    .buy-links>li {
        /*float: none;
        display: inline-block;
        vertical-align: middle;
        width: 33%;*/
        margin-bottom: 5px;
    }
    
    .videos {
        margin-top: 35px;
    }
}