@import url(variables.css);
* {
    font-family: 'IBM Plex Sans', sans-serif;
}

/*************************************************************************************************************************************/
/************************** FEATURES SECTION *****************************************************************************************/
/*************************************************************************************************************************************/

#features-wallet {
    background: url(/assets/images/bg_features.png), var(--liana-black);
    padding: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
    background-position: bottom;
    background-size: contain;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

#features-wallet .wallet-features {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 12px;
    max-width: 1300px;
    margin: auto;
}

#features-wallet .wallet-features .box-feature {
    display: flex;
    padding: 20px 40px 40px 40px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 24px;
    border: 1px solid #343839;
    background: #242424;
    gap: 6px;
    transition: all 0.3s;
}

#features-wallet .wallet-features .box-feature:hover {
    border: 1px solid #5c6061;
    background: #242424;
}

.wallet-features .box-feature img {
    max-height: 300px;
    width: max-content;
}

.wallet-features .box-feature h3 {
    color: #f3f5f7;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px; /* 142.857% */
    letter-spacing: -0.56px;
    text-transform: none;
    width: 100%;
}

.wallet-features .box-feature p {
    color: #838383;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px; /* 150% */
    width: 100%;
    margin-top: 4px;
}

.wallet-features .box-feature.large-left {
    grid-column-start: 1;
    grid-column-end: 8;
}
.wallet-features .box-feature.small-right {
    grid-column-start: 8;
    grid-column-end: 13;
}
.wallet-features .box-feature.large-right {
    grid-column-start: 6;
    grid-column-end: 13;
}
.wallet-features .box-feature.small-left {
    grid-column-start: 1;
    grid-column-end: 6;
}

.greybox {
    background-color: #141414c2;
}
a.greybox {
    cursor: pointer !important;
}

/****************************************************************************************************************************************/
/*************************** LIANA UI EXPLAINED  ****************************************************************************************/
/****************************************************************************************************************************************/

#liana-ui {
    background-color: #242424;
    padding: 5% 5%;
    display: flex;
    align-items: center;
    gap: 5%;
    margin-top: 94px;
    min-height: 80vh;
    background: linear-gradient(180deg, #1f1f1f 0%, #141414 100%);
}

#liana-ui .wrapper-text-block {
    max-width: 30%;
}

#liana-ui .container-scroll {
    width: 100%;
    display: flex;
    gap: 40px;
    padding-right: 5%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
}

.container-scroll .each-ui {
    width: 400px;
    scroll-snap-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.each-ui {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
}

.ui-img-container {
    display: flex;
    margin-bottom: 16px;
}
/* Images */
.ui-img-container img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.img-hover {
    display: none;
    transition: all 0.3s ease;
}
.each-ui:hover .img-default {
    display: none;
}
.each-ui:hover .img-hover {
    display: inherit;
}

.each-ui:hover .img-hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Text */
.each-ui h4 {
    color: #fff;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    line-height: 147%;
    margin: 0;
}

.each-ui p {
    color: var(--Liana-Grey, #ccc);
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 137%;
    margin: 0;
    max-width: 80%;
}

/*************************** CAROUSEL ****************************************************************************************/

#liana-carousel {
    background: #1d1d1d;
    padding: 80px 5%;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.carousel-track {
    display: flex;
    align-items: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 20px;
    gap: 20px;
    -webkit-overflow-scrolling: touch;
    padding: 20px 60px;
    width: 100%;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    flex: 0 0 auto;
    font-size: 48px;
    display: flex;
    scroll-snap-align: center;
    border-radius: 16px;
    max-width: 650px;
}

.carousel-item.arrow {
    width: auto;
    height: 20px;
    align-self: center;
}

.carousel-arrow {
    display: none;
    background: rgba(36, 36, 36, 0.8);
    border: 1px solid #444;
    color: white;
    font-size: 28px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.carousel-arrow:hover {
    background: black;
    color: black;
}

.carousel-arrow.left {
    position: absolute;
    left: 0;
    transform: translateX(-50%);
    transform: rotate(180deg);
}

.carousel-arrow.right {
    position: absolute;
    right: 60px;
    transform: translateX(50%);
}

/****************************************************************************************************************************************/
/************************** START USING ************************************************************************************************/
/**************************************************************************************************************************************/

#start-steps {
    background-color: #242424;
    padding: 5% 3%;
    gap: 100px;
    gap: 80px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, #141414 0%, #121212 100%);
}

#start-steps .wrapper-text-block {
    margin: auto;
}

/* NEW */

.steps-wrapper {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
    justify-content: space-between;
}

.step-selector {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.step-box {
    background-color: #1d1d1d;
    border: 1px solid #333;
    border-radius: 16px;
    width: 32%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.step-box-content-wrapper {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.step-box img {
    max-width: 200px;
    max-height: 100px;
}

.step-box h4 {
    color: var(--Liana-Light-Grey, #e6e6e6);
    font-family: 'IBM Plex Sans';
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    /*  text-transform: uppercase; */
}
.step-text-wrapper {
    display: flex;
    gap: 10px;
}
.step-box p {
    color: var(--Liana-Grey, #ccc);
    font-family: 'IBM Plex Sans';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.32px;
    position: relative;
    height: fit-content;
    height: min-content;
}

.step-box:hover {
    border-color: #bbbbbb;
    background-color: #2a2a2a;
}
.step-box.active {
    /*    border-color: #515151; */
    background-color: #2a2a2a;
}
.step-box.active .step-icon {
    color: #00ff66;
}

.step-icon {
    color: var(--Grey, #7b7b7b);
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -5.12px;
    font-weight: bold;
    color: #7b7b7b;
}

.step-box h4 {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.step-box p {
    color: #bbb;
    font-size: 14px;
    margin: 6px 0 0;
}

#step-content-container {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #333;
    background: #2a2a2a;
    width: 100%;
}

.step-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.step-content-container .step-content.one {
    border-top-left-radius: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.step-content p {
    color: #c5c5c5;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    font-weight: 400;
}

.step-content a {
    color: #dbdbdb;
}

.step-content img {
    max-height: 200px;
    max-width: 300px;
    height: auto;
    width: 100%;
}

.img-step-3 {
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #6c6c6c;
}

/****************************************************************************************************************************************/
/*************************** MEDIA QUERIES *********************************************************************************************/
/**************************************************************************************************************************************/

@media screen and (max-width: 1200px) {
    .carousel-item {
        max-width: 500px;
    }
}

@media screen and (max-width: 950px) {
    .carousel-item {
        max-width: 380px;
    }
    .step-icon {
        font-size: 40px;
    }
    .step-box-content-wrapper {
        padding: 12px;
    }
}
@media screen and (max-width: 768px) {
    #liana-ui {
        flex-direction: column;
    }
    #liana-ui .wrapper-text-block {
        max-width: none;
        margin: 20px 10px 30px 0px;
    }
    .carousel-track {
        padding: 20px 80px;
    }
    .carousel-arrow.right {
        right: 40px;
    }
    #features-wallet {
        gap: 40px;
    }
    .container-3col.specs {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .step-box p {
        display: none;
    }
    .step-text {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .step-box-content-wrapper {
        gap: 4px;
        justify-content: flex-end;
    }
    .step-box img {
        max-width: 160px;
        max-height: 80px;
    }
    .step-icon {
        font-size: 30px;
        line-height: 36px;
    }
    #step-content-container {
        padding: 30px 20px;
    }
    .step-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #features-wallet .greybox:last-child {
        grid-column-end: 3;
        grid-column-start: 1;
    }

    .wrapper-text-block {
        align-items: center;
        text-align: center;
    }
    #features-wallet,
    #start-steps {
        padding: 80px 5%;
    }
}
@media screen and (max-width: 550px) {
    .greybox {
        padding: 12px;
    }
    .greybox-description {
        font-size: 14px;
    }
    #start-steps {
        gap: 40px;
    }
    .step-text-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 0px;
    }
    .step-box h4 {
        text-align: center;
        font-size: 18px;
    }
    .step-box img {
        max-width: 100px;
        max-height: 50px;
    }
    .step-box-content-wrapper {
        gap: 8px;
    }
    .step-content h3 {
        font-size: 20px;
    }
    .steps-wrapper {
        gap: 12px;
    }
}
@media screen and (max-width: 350px) {
    .container-3col.specs {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
}
