/* ---------- document ---------- */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Roboto Mono', sans-serif;
    color: white;
    background: rgb(0, 0, 0);
    background: linear-gradient(115deg, #000 0%, #2D2D2D 100%);
}

.container {
    /* margin: auto; */
    padding: 1.5em 1.25em;
}

@media only screen and (min-width: 600px) {
    .container {
        padding: 3em 2.5em;
    }
}

@media only screen and (min-width: 1200px) {
    .container {
        max-width: 1164px;
        margin: 3em auto 2.25em;
        padding: 0;
    }
}


/* ---------- general ---------- */

a {
    text-decoration: none;
    color: #fff;
}


/* ---------- head ---------- */

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media only screen and (min-width: 600px) {
    .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .head-left {
        display: flex;
        align-items: center;
    }
}

.head-logo {
    height: 35px;
}

@media only screen and (min-width: 600px) {
    .head-logo {
        margin-right: 1.5em;
    }
}

@media only screen and (min-width: 768px) {
    .head-logo {
        height: 44px;
    }
}

.head-title {
    display: none;
}

@media only screen and (min-width: 600px) {
    .head-title {
        display: inline-block;
    }
}

.head-toggle {
    background: transparent;
    border: 0;
    cursor: pointer;
    position: absolute;
    right: 1.5em;
    z-index: 1000;
}

@media only screen and (min-width: 600px) {
    .head-toggle {
        display: none;
    }
}

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

.hamburger,
.hamburger::before,
.hamburger::after {
    background: #fff;
    width: 2em;
    height: 3px;
    /* border-radius: 1em; */
    transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
}

.hamburger::before {
    top: 6px;
}

.hamburger::after {
    bottom: 6px;
}


/* ---------- nav ---------- */

.nav {
    position: fixed;
    background: linear-gradient(115deg, #000 0%, #2D2D2D 100%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 250ms cubic-bezier(0.5, 0, 0.5, 1);
}

@media only screen and (min-width: 600px) {
    .nav {
        position: unset;
        background: none;
        transform: none;
        transition: none;
    }
}

.nav-list {
    list-style: none;
    margin-top: 7.5em;
}

@media only screen and (min-width: 600px) {
    .nav-list {
        display: flex;
        margin-top: 0;
        text-align: center;
    }
}

.nav-item {
    margin: 0 0 2.5em 3em;
    height: 1.375em;
}

@media only screen and (min-width: 600px) {
    .nav-item {
        margin: 0;
        width: 100px;
    }
}

.nav-link {
    font-weight: 700;
    font-size: .85em;
    text-decoration: none;
}

@media only screen and (min-width: 600px) {
    .nav-link {
        font-weight: 400;
        font-size: 1em;
    }
}

.nav-link:hover,
.active {
    color: #7BECD8;
}

.active {
    border-left: 4px solid #7BECD8;
    position: absolute;
    left: 1.75em;
    padding-left: 1.75em;
}

@media only screen and (min-width: 600px) {
    .active {
        position: unset;
        border-left: none;
        padding-left: 0;
        display: block;
        border-bottom: 4px solid #7BECD8;
        padding-bottom: .5em;
    }

    .nav-hide {
        display: none;
    }
}

.nav-open .nav {
    transform: translateX(0);
}

.nav-open .head-toggle {
    position: fixed;
}

.nav-open .hamburger {
    transform: rotate(0.625turn);
}

.nav-open .hamburger::before {
    transform: rotate(90deg) translateX(-6px);
}

.nav-open .hamburger::after {
    opacity: 0;
}


/* ---------- description ---------- */

.description {
    margin-top: 2em;
}

@media only screen and (min-width: 1200px) {
    .description {
        margin-top: 5em;
    }
}

.desc-text {
    font-size: 1.5em;
    font-weight: 400;
    margin-bottom: 1.5em;
}

@media only screen and (min-width: 600px) {
    .desc-text {
        max-width: 672px;
        font-size: 2em;
    }
}

@media only screen and (min-width: 992px) {
    .desc-text {
        max-width: 864px;
        font-size: 2.5em;
        margin-bottom: .75em
    }
}

@media only screen and (min-width: 1200px) {
    .desc-text {
        font-size: 3em;
        max-width: 1056px;
    }

}

.divider {
    border-bottom: 1px solid #fff;
    width: 100px;
}


/* ---------- releases ---------- */

.releases {
    display: grid;
    margin-top: 3.75em;
}

@media only screen and (min-width: 768px) {
    .releases {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 1200px) {
    .releases {
        grid-template-columns: 1fr 1fr 1fr;
        margin-top: 4.5em;
    }
}

.rel-card {
    justify-self: center;
    margin-bottom: 2.5em;
}

@media only screen and (min-width: 992px) {
    .rel-card {
        margin-bottom: 5em;
    }
}

.rel-card_top {
    margin-bottom: 1.5em;
}

.rel-card_cat {
    font-size: .875em;
    color: #B6B6B6;
    margin-bottom: .25em;
}

.rel-card_title {
    font-weight: 700;
}

.bandcamp {
    border: 0;
    width: 280px;
    height: 422px;
}

@media only screen and (min-width: 600px) {
    .bandcamp {
        width: 315px;
        height: 435px;
    }
}

@media only screen and (min-width: 992px) {
    .bandcamp {
        width: 350px;
        height: 470px;
    }
}


/* ---------- footer ---------- */

.footer {
    display: flex;
    margin-top: 4em;
    justify-content: center;
}

@media only screen and (min-width: 992px) {
    .footer {
        margin-top: 6.25em;
    }
}

.icon {
    height: 2em;
    margin: 0 .25em;
}


/* ---------- mixes ---------- */

[data-tab-content] {
    display: none;
}

.def-tab[data-tab-content] {
    display: block;
}

.tabs {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.tab {
    cursor: pointer;
    padding: 0 .75em .5em;
}

.tab.def-tab {
    border-bottom: 4px solid #fff;
}

/* .tab:hover {
    color: #7BECD8;
} */

.tab-content {
    margin-left: 20px;
    margin-right: 20px;
}

.amamix-title {
    margin-top: 2.25em;
}

@media only screen and (min-width: 992px) {
    .amamix-desc {
        text-align: center;
    }
}

.amamix-desc {
    margin: 1.5em 0 2em;
}

.mixes__soundcloud {
    margin-bottom: 40px;
}

.mixes {
    margin-bottom: 1em;
}


/* ---------- bio ---------- */

.bioimg {
    position: absolute;
    width: 100%;
    top: 5.8em;
    left: 0;
    z-index: -1;
}

.bio-title {
    margin-top: 6em;
    font-weight: 400;
}

.bio-desc {
    margin-top: 3.75em;
}

@media only screen and (min-width: 600px) {
    .bioimg-cont {
        position: relative;
    }

    .bioimg {
        max-width: 60%;
        top: 3.75em;
        left: unset;
        right: 0;
    }

    .bio-title {
        margin-top: 5em;
        max-width: 90%;
        font-size: 2.5em;
        letter-spacing: 2px;
        line-height: 1.1;
    }
}

@media only screen and (min-width: 768px) {
    .bio-title {
        margin-top: 5.5em;
        font-size: 3em;
    }
}


@media only screen and (min-width: 992px) {
    .bio-title {
        margin-top: 7.5em;
    }
}

.bio-par {
    margin-top: 1.5em;
    line-height: 1.5;
}