/* ------------------------------------------------------------------------------------------------- */
/* TOKEN WELCOME SECTION*/
#tokenWelcome {
    background: url('../assets/page-token/background.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 65vh;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
}

#tokenWelcome .linearGradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.7);
}

#tokenWelcome .linearGradient h1 {
    color: var(--white);
    font-size: 4rem;
    margin: 0;
}

#tokenWelcome .linearGradient p {
    color: var(--white);
    margin: 1rem 0;
}

/* ********************************************************************************************************************* */
/* TOKEN BANNER SECTION */
.tokenSlide {
    background-color: var(--blue1);
    margin-top: 5rem;
    padding: 2rem 1rem;
}

.tokenSlide .tokenSlideHeader {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.tokenSlide .tokenSlideHeaderWrapper .tokenSlideHeader {
    color: var(--black1);
    text-align: center;
    font-weight: 900;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tokenSlide .tokenSlideContent {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.tokenSlide .tokenSlideContent .tokenSlideCol {
    text-align: center;
}

.tokenSlide .tokenSlideContent .tokenSlideCol .tokenSlideColHeader {
    color: #FFF;
    font-size: 1rem;
    font-weight: 600;
    word-break: break-all;
}

.tokenSlide .tokenSlideContent .tokenSlideCol .tokenSlideColBrief {
    color: var(--black1);
    font-weight: 600;
}

#tokenInfo {
    min-height: 100vh;
    margin: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

#tokenInfo .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#tokenInfo .wrapper .tokenInfoCol:nth-child(1) {
    width: 40%;
}

#tokenInfo .wrapper .tokenInfoCol {
    color: var(--white);
    width: 49%;
}

#tokenInfo .wrapper .tokenInfoCol h2 {
    color: var(--blue1);
    font-size: 2.5rem;
}

#tokenInfo .wrapper .tokenInfoCol p {
    text-align: justify;
    margin: 2rem 0;
}

#tokenInfo .wrapper .tokenInfoCol a {
    display: inline-block;
    color: var(--white);
    background-color: var(--blue1);
    padding: 15px 30px;
    border-radius: 5px;
    border: 3px solid transparent;
    transition: .3s;
    margin-bottom: 1rem;
}

#tokenInfo .wrapper .tokenInfoCol a:hover {
    background-color: transparent;
    border-image: linear-gradient(144deg, rgba(88, 55, 93, 1) 0%, rgba(16, 163, 218, 1) 100%) 10;
}

#tokenInfo .wrapper .tokenInfoCol img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2rem;
}