@font-face {
    font-family: brexter;
    src: url('../webfonts/brexter-brexter-700.otf');
    font-style: normal;
}

*,
*::after,
*::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-bg: #E5DBCF;
    --color-bg-2: #DDD0BD;
    --color-text-b: #212224;
    --color-text-g: #6f6c6a;
    --color-link: #212224;
    --color-link-hover: #6f6c6a;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-b);
    font-family: 'IBM Plex Mono', monospace;
}

body,
html {
    overflow-x: hidden;
}

html {
    --scrollbarBG: var(--color-text-b);
    --thumbBG: var(--color-bg-2);
    scroll-behavior: smooth;
}

body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}

body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG);
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}

body::-webkit-scrollbar {
    width: 11px;
}

li {
    list-style: none;
}

.list-group-item {
    background-color: transparent;
    border: 0;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

a {
    text-decoration: none;
    color: var(--color-link);
    outline: none;
}

a:hover {
    color: var(--color-link-hover);
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-family: brexter;
    font-weight: 700;
    text-transform: uppercase;
}


p,
a {
    font-size: 16px;
    font-family: 'Roboto Mono', monospace;
}


.i-scale {
    transition: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.i-scale:hover {
    transform: scale(1.2);
}

/* header */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: content;
        align-items: baseline;
    }
}

.header-media li {
    margin: 0 5px;
}

.custom-nav {
    display: flex;
    flex-direction: column !important;
}

.custom-nav a {
    color: var(--color-text-b);
    text-transform: capitalize;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
}

.navbar-light {
    background-color: var(--color-bg);
    backdrop-filter: blur(20px);
}

.navbar-toggler-icon {
    background-image: url("../../assets/img/icon/menu.svg") !important;
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, 0) !important;
    border-color: rgba(0, 0, 0, 0) !important;
}

.navbar-collapse {
    transition: .10s ease-in-out;
}

/* link */


/* link */

/* header */

span {
    overflow: hidden;
    display: block;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    background: transparent;
    z-index: 10000;
}

.loader svg {
    position: absolute;
    top: 0;
    width: 100vw;
    height: 110vh;
}

.loader .loader-title h1 {
    font-size: 120px;
    z-index: 20;
    text-transform: uppercase;
    text-stroke: 3px var(--color-bg-2);
    -webkit-text-stroke: 3px var(--color-bg-2);
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-style: italic;
    padding: 20px;
    overflow: visible;
    font-weight: 100;
}

/*  */

.audio-content {
    position: relative;
    z-index: 1000;
}

.audio--container {
    width: 40px;
    height: 30px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 26px;
    bottom: 40px;
}

.audio--container:hover {
    cursor: pointer;
}

.audio--container div {
    width: 1.5px;
    background: var(--color-text-b);
    transition: transform 250ms ease, background 200ms ease;
}

.audiobar {
    /*transform:scaleY(0.5);*/
    transform-origin: center;
}


.reveal-text {
    visibility: hidden;
}

.line {
    position: relative;
    overflow: hidden;
    will-change: transform;
    display: inline-block;
}

/* home-section */

.sec-home {
    width: 100%;
    height: 100%;
    min-height: 90vh !important;
    position: relative;
    padding-bottom: 70px;
    margin-top: 20px;
}

.image-container {
    position: relative;
    margin: 0 auto;
    /* overflow: hidden; */
    display: flex;
    justify-content: center;
    align-items: baseline;
    align-content: center;
}

.image-container__inner {
    width: 350px;
    height: 550px;
    background: url("../img/home/home1.png") center center no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: relative;

}

/* .image-container__inner:hover{
    mix-blend-mode: darken;
} */

.image-container__inner img {
    position: absolute;
    top: -50px;
    right: -50px;
    max-width: 120px;
    animation: rotation 20s infinite linear;
    transform-origin: center;
    -webkit-animation: rotation 20s infinite linear;
}


@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

.image-container__inner p {
    width: 200px;
    height: auto;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-text-b);
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-b);
    background-color: var(--color-bg-2);
    padding: 7px;
    text-align: center;
    border-radius: 20px;
}

.text-container {
    position: absolute;
    top: 10%;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    /* transform: translateY(-40%); */
}

.parallax-text {
    position: relative;
}

.main-title h1 {
    font-size: 140px;
    line-height: 150px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    color: var(--color-text-b);
    word-spacing: 10px;
}

.text-1 h1,
.text-3 h1 {
    text-stroke: 3px var(--color-text-b);
    -webkit-text-stroke: 3px var(--color-text-b);
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 100;
}

.parallax-text:first-child {
    align-self: flex-start;
}

.parallax-text:last-child {
    align-self: flex-end;
}

.text-animation-inner h1 {
    font-size: 120px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: row;
    overflow: hidden;
}

.marquee {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    overflow: hidden;
    --offset: 20vw;
    --item-font-size: 10vw;
    --move-initial: calc(-25% + var(--offset));
    --move-final: calc(-50% + var(--offset));
    mask-image: linear-gradient(var(--mask-direction, to right), hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

.marquee__inner {
    width: fit-content;
    display: flex;
    position: relative;
    transform: translate3d(var(--move-initial), 0, 0);
    animation: marquee 5s linear infinite;
}

.marquee span {
    white-space: nowrap;
}

.marquee-one span {
    padding: 0 60px;
}

.marquee-two span {
    padding: 0 20px;
}

@keyframes marquee {
    0% {
        transform: translate3d(var(--move-initial), 0, 0);
    }

    100% {
        transform: translate3d(var(--move-final), 0, 0);
    }
}

.sec-about,
.sec-press,
.sec-tour,
.sec-merch {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 70px 40px;
}

.sec-quote {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 250px 0;
}

.sec-marquee {
    background-color: var(--color-bg-2);
    transform: rotate(-5deg);
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 100px 0;
    margin: 50px 0;
}

.about-body {
    margin-bottom: 80px;
}

.about-hero-text h4,
.about-content-footer-left h4 {
    font-size: 26px;
    line-height: 25px;
}

.about-body-left p {
    line-height: 30px;
    font-weight: 500;
}

.song-cover {
    background-color: var(--color-bg-2);
    width: 100%;
    max-width: 350px;
    height: auto;
    padding: 20px;
    border-radius: 20px;
}

.song-cover:first-child {
    transform: translateY(22%);
    z-index: 111;
    position: absolute;
}

.song-cover img {
    border-radius: 20px;
}

.about-content-footer-right img,
.press-details img,
.quote-content img,
.footer-gif {
    border-radius: 20px;
}

/* press */

.press-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px;
}

.press-header h5 {
    width: 800px;
    font-size: 21px;
    line-height: 22px;
}

.small-title {
    font-size: 36px;
    font-weight: 500;
}

.press-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-text-b);
    border-top: 1px solid var(--color-text-b);
    margin-bottom: 40px;
    padding: 20px 0;
}

.press-details a {
    padding: 10px 40px;
    font-size: 15px;
    background-color: var(--color-bg-2);
    color: var(--color-text-b);
    border-radius: 50px;
    text-align: center;
}

.tour-details a {
    padding: 10px 40px;
    font-size: 15px;
    border: 1px solid var(--color-text-b);
    border-radius: 50px;
    color: var(--color-text-b);
    text-align: center;
}

.press-details a:hover {
    background-color: var(--color-text-b);
    color: #e0e0e0;
}

.tour-details a:hover {
    background-color: var(--color-text-b);
    color: #e0e0e0;
}

.press-details p,
.tour-date p {
    margin-bottom: 0;
}

.press-details p,
.press-details span {
    font-size: 13px;
    color: #6f6c6a;
}

.press-name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
}

.press-name h6 {
    margin: 0 10px;
}

.tour-wrapper h1,
.merch-content h1 {
    font-size: 80px;
    margin-bottom: 70px;
}

.quote-content h1 {
    font-size: 115px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
    flex-direction: row;
}

.quote-content span {
    margin: 0 20px;
}

.quote-text-one,
.quote-text-two {
    text-stroke: 3px var(--color-text-b);
    -webkit-text-stroke: 3px var(--color-text-b);
    text-fill-color: transparent;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 100;
}

.about-content-footer-left h4 {
    text-align: right;
}

.about-content-footer-left {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}

.tour-wrapper {
    background-color: var(--color-bg-2);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid black;
    outline: var(--color-bg-2) solid 20px;
}

.tour-details {
    padding: 50px 0;
    border-bottom: 1px solid var(--color-text-b);
}

.tour-date {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.tour-date span {
    color: #6f6c6a;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
}

.tour-ticket {
    text-align: end;
}


/* footer */

.sec-footer {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-2);
}

.footer-content {
    padding: 30px 20px 0;
}

.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footer-left h1 {
    font-size: 76px;
}

.footer-music {
    margin-bottom: 50px;
}

.footer-music li {
    padding: 0 5px;
}

.footer-nav li,
.footer-media li {
    font-size: 15px;
    font-weight: 500;
    text-decoration: underline;
}

.footer-mar {
    border-bottom: 1px solid var(--color-text-b);
    border-top: 1px solid var(--color-text-b);
    padding: 2px 0;
    margin: 10px 0 1px 0;
}

@media (max-width: 1399.98px) {

    .sec-about,
    .sec-press,
    .sec-tour,
    .sec-merch {
        padding: 50px 25px;
    }

    p,
    a {
        font-size: 15px;
    }

    .main-title h1 {
        font-size: 110px;
        line-height: 120px;
    }

    .about-hero-text h4,
    .about-content-footer-left h4,
    .press-header h5 {
        font-size: 20px;
        line-height: 22px;
    }

    .small-title {
        font-size: 26px;
    }

    .quote-content h1 {
        font-size: 105px;
    }
}

@media (max-width: 1190.98px) {
    .about-content-footer-right {
        display: flex;
    }

    .about-content-footer-left h4 {
        margin-bottom: 30px;
    }

    .song-cover {
        max-width: 300px;
    }

    .quote-img-one {
        width: 250px;
    }

    .quote-img-two {
        width: 100px;
    }

    .quote-content h1 {
        font-size: 90px;
    }

    .sec-quote {
        padding: 150px 0;
    }
}

@media (max-width: 990.98px) {
    .loader-wrap .loader-title h1 {
        font-size: 62px;
    }

    .navbar-collapse {
        transition: .10s ease-in-out;
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
    }

    .header-form {
        margin: 20px auto;
    }

    .quote-content h1 {
        font-size: 80px;
    }

    .quote-content span {
        margin: 0 10px;
    }

    .about-content-footer-left {
        flex-direction: row-reverse;
        justify-content: space-around;
    }

    .about-content-footer-right img {
        margin: 50px 0;
    }

    .about-content-footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .about-content-footer-left h4 {
        text-align: center;
        margin-top: 20%;
        padding: 0 10px;
    }

    .tour-date {
        flex-direction: column;
    }

    .tour-wrapper h1,
    .merch-content h1 {
        font-size: 60px;
    }

    .footer-left h1 {
        font-size: 40px;
    }

    .mail {
        font-size: 18px;
    }

    .mail::before {
        top: 2px
    }

}

@media (max-width: 767.98px) {
    .loader .loader-title h1 {
        font-size: 50px;
    }

    .sec-home {
        width: 100%;
        height: 100%;
        min-height: 70vh !important;
        position: relative;
        padding-bottom: 30px;
        margin-top: 20px;
    }

    .main-title h1 {
        font-size: 90px;
        line-height: 100px;
    }

    .text-container {
        top: 15%;
    }

    .image-container__inner img {
        top: -50px;
        right: -50px;
        max-width: 100px;
    }

    .image-container__inner p {
        font-size: 16px;
    }

    .sec-marquee {
        padding: 70px 0;
    }

    .song-cover:first-child {
        position: unset;
    }

    .about-content-footer-left,
    .about-content-footer {
        flex-direction: column;
    }

    .about-content-footer-left h4 {
        text-align: left;
        margin-top: 50px;
    }

    .about-content-footer-right img {
        margin: 0 0;
    }

    .song-cover {
        max-width: 350px;
    }

    .song-cover:first-child {
        margin: 50px 0;
    }

    .about-body {
        margin-bottom: 0;
    }

    .press-header {
        display: flex;
        justify-content: left;
        flex-direction: column;
    }

    .press-details {
        flex-direction: row;
    }

    .press-header h4 {
        margin-bottom: 30px;
    }

    .press-header h5 {
        width: 100%;
    }

    .press-name {
        flex-direction: column;
        align-items: center;
    }

    .press-name h6 {
        margin: 10px 0;
        font-size: 15px;
    }

    .press-details a {
        padding: 10px 30px;
    }

    .tour-date {
        justify-content: center;
        flex-direction: row;
    }

    .tour-date span {
        font-size: 12px;
        margin-right: 10px;
    }

    .tour-ticket {
        text-align: center;
    }

    .tour-place h6 {
        margin: 25px 0;
    }

    .tour-details {
        padding: 30px 0;
        border: 1px solid var(--color-text-b);
        margin: 15px 0;
        border-radius: 20px;
    }

    .tour-wrapper {
        padding: 20px;
    }

    .tour-wrapper h1,
    .merch-content h1 {
        font-size: 46px;
    }
}

@media (max-width: 575.98px) {

    p,
    a {
        font-size: 14px;
    }

    .image-container__inner {
        width: 280px;
        height: 430px;
        background-size: cover;
    }

    .sec-about,
    .sec-press,
    .sec-tour,
    .sec-merch {
        padding: 50px 10px;
    }

    .press-name {
        flex-direction: column;
        align-items: center;
        margin: 10px 0;
    }

    .press-details {
        flex-direction: column;
        align-items: normal;
    }

    .quote-img-one {
        width: 200px;
    }

    .quote-img-two {
        width: 100px;
    }

    .quote-content h1 {
        font-size: 62px;
    }

    .sec-quote {
        padding: 100px 0;
    }

    .footer-header {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .footer-header img:last-child {
        margin: 30px 0;
    }

    .footer-left h1 {
        font-size: 36px;
    }

    .audio--container {
        left: 20px;
    }

    .quote-text-one,
    .quote-text-two,
    .text-1 h1,
    .text-3 h1 {
        text-stroke: 2px var(--color-text-b);
        -webkit-text-stroke: 2px var(--color-text-b);
    }

    .loader-title h1 {
        text-stroke: 2px var(--color-bg-2);
        -webkit-text-stroke: 2px var(--color-bg-2);
    }
}