@import url(variables.css);

/*******************************************************************************************************************/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

html {
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
    background-color: #000;
    font-size: 62.5%;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    width: 100vw;
    height: 100%;
    font-family: 'IBM Plex Sans', sans-serif;
}

main {
    width: 100vw;
    height: auto;
}

section {
    width: 100vw;
}

ul {
    list-style-type: none;
}

button,
button:focus {
    background-color: transparent;
    border: 0;
    outline: none;
}

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/******************* Text styles ******************/

h2.banner-h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 110px;
    color: var(--liana-green);
    line-height: 76px;
    line-height: 90%;
    text-align: center;
}
@media screen and (max-width: 1000px) {
    h2.banner-h2 {
        font-size: 80px;
    }
}
@media screen and (max-width: 768px) {
    h2.banner-h2 {
        font-size: 64px;
    }
}
@media screen and (max-width: 500px) {
    h2.banner-h2 {
        font-size: 52px;
        line-height: 60px;
    }
}

h2 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 64px;
    color: var(--liana-black);
    line-height: 60px;
}
@media screen and (max-width: 1100px) {
    h2 {
        font-size: 56px;
    }
}
@media screen and (max-width: 1000px) {
    h2 {
        font-size: 48px;
    }
}
@media screen and (max-width: 650px) {
    h2 {
        font-size: 40px;
    }
}

h3 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 36px;
    color: var(--liana-grey);
    text-transform: uppercase;
}
@media screen and (max-width: 768px) {
    h3 {
        font-size: 32px;
    }
}
@media screen and (max-width: 600px) {
    h3 {
        font-size: 24px;
        line-height: 26px;
    }
}

h5 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #2e2e2e;
    line-height: 26px;
}
@media screen and (max-width: 768px) {
    h5 {
        font-size: 20px;
        line-height: 24px;
    }
}

h6 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #f4f4f4;
    line-height: 36px;
    text-align: center;
}
@media screen and (max-width: 850px) {
    h6 {
        font-size: 26px;
        line-height: 28px;
    }
}

p {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 20px;
}

p.text {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #373737;
    line-height: 23px;
}

/******************* Buttons ******************/
.btn-primary-liana,
.btn-green,
.btn-secondary-liana {
    height: 44px;
    border-radius: 30px;
    background-color: var(--liana-black);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    gap: 6px;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    padding: 0 30px;
    white-space: nowrap;
    cursor: pointer;
}
.btn-primary-liana .icon,
.btn-green .icon,
.btn-secondary-liana .icon,
.btn-primary-liana img,
.btn-green img,
.btn-secondary-liana img {
    height: 18px;
    width: auto;
}
.btn-primary-liana:focus,
.btn-green:focus,
.btn-secondary-liana:focus,
.btn-primary-liana:visited,
.btn-green:visited,
.btn-secondary-liana:visited {
    color: #fff;
}
@media (hover: hover) {
    .btn-primary-liana:hover,
    .btn-green:hover,
    .btn-secondary-liana:hover {
        background-color: var(--liana-green);
        color: var(--liana-black);
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    }
    .btn-primary-liana:hover svg path,
    .btn-green:hover svg path,
    .btn-secondary-liana:hover svg path {
        fill: var(--liana-black);
    }
}
@media screen and (max-width: 768px) {
    .btn-primary-liana,
    .btn-green,
    .btn-secondary-liana {
        font-size: 16px;
    }
}

.btn-secondary-liana {
    border: 1px solid var(--liana-green);
    color: var(--liana-green);
}
.btn-secondary-liana:focus,
.btn-secondary-liana:visited {
    color: var(--liana-green);
}
@media (hover: hover) {
    .btn-secondary-liana:hover {
        background-color: var(--liana-green);
        color: var(--liana-black);
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    }
    .btn-secondary-liana:hover svg path {
        fill: var(--liana-black);
    }
}

.btn-green {
    background-color: var(--liana-green);
    color: var(--liana-black);
    border: 1px solid var(--liana-green);
    text-transform: uppercase;
    padding: 0 50px;
}
.btn-green:focus,
.btn-green:visited {
    color: var(--liana-black);
}
@media (hover: hover) {
    .btn-green:hover {
        background-color: var(--liana-black);
        color: var(--liana-green);
    }
}

.text-link {
    font-weight: 700;
    text-decoration: underline;
}
.text-link:focus,
.text-link:visited {
    text-decoration: underline;
}
@media (hover: hover) {
    .text-link:hover {
        text-decoration: underline;
        color: var(--liana-green);
    }
}

.btn-icon {
    padding: 0 30px;
}
.btn-icon img {
    width: auto;
    height: auto;
    max-height: 14px;
}
@media (hover: hover) {
    .btn-icon:hover {
        color: inherit;
    }
}

.btn-text,
.btn-text:focus,
.btn-text:active {
    color: #898989;
    font-size: 14px;
    text-decoration: underline;
    text-align: center;
}
.btn-text:hover {
    color: var(--liana-green);
    text-decoration: underline;
    cursor: pointer;
}

/******************* Images ******************/
.img-cover {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/****************************************** General ******************************************/
.flex-start-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* USED IN SECTIONS: INHERITANCE, BACKUPS, MULTISIG */
.section-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 1200px;
    gap: 30px;
}
.section-content-wrapper .flex-start-col {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    gap: 20px;
}
@media screen and (max-width: 768px) {
    .section-content-wrapper .flex-start-col {
        gap: 14px;
    }
}
.section-content-wrapper .section-img-wrapper {
    width: 50%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 530px;
}
.section-content-wrapper .section-img-wrapper img {
    height: 100%;
    width: 100%;
}
.section-content-wrapper .collapsed-text {
    -webkit-transition: height 1s;
    -o-transition: height 1s;
    transition: height 1s;
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
    -webkit-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
}

.btn-open {
    display: none;
    -webkit-transition: display 1s;
    -o-transition: display 1s;
    transition: display 1s;
}
.btn-close {
    display: block;
    -webkit-transition: display 1s;
    -o-transition: display 1s;
    transition: display 1s;
}
.btn-open .icon,
.btn-close .icon {
    margin-bottom: -3px;
}

.toggle-input {
    display: none;
}

/****************************************** Header ******************************************/
header {
    width: 100vw;
    height: 94px;
    background-color: var(--grey-header);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    top: 0;
    z-index: 3;
}
header .top-header {
    padding: 0 5% 0 0;
    background-color: #181818;
    height: 34px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    border-bottom: 1px solid #000;
}
@media screen and (max-width: 520px) {
    header .top-header {
        padding: 0 3% 0 0;
    }
    header .top-header .product-menu-item.ws {
        padding-left: 3%;
    }
}
header .top-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 36px;
    height: 100%;
}
@media screen and (max-width: 520px) {
    header .top-header ul {
        gap: 20px;
    }
}
header .top-header .product-menu-item a {
    font-family: 'IBM Plex Sans', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    color: #646363;
    white-space: nowrap;
}
header .top-header .product-menu-item.ws {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #111111;
    padding-left: 5%;
    padding-right: 5%;
    height: 34px;
}
header .top-header .product-menu-item.ws a .ws-icon {
    height: 16px;
    width: auto;
    margin-right: 4px;
}
@media (hover: hover) {
    header .top-header .product-menu-item a:hover {
        color: var(--light-blue);
    }
    header .top-header .product-menu-item.ws a:hover {
        color: #fff;
    }
    header .top-header .product-menu-item.ws a:hover svg path {
        fill: #fff;
    }
}
header .top-header .product-menu-item.disabled a {
    color: #646363;
    cursor: default;
}
header .top-header .product-menu-item.active a {
    color: var(--lighter-blue);
}
header .bottom-header-liana {
    height: 60px;
    padding: 0% 5%;
    background-color: #1d1d1d;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    border-bottom: 1px solid #0e0e0e;
    /* revisto até aqui */
}
@media screen and (max-width: 520px) {
    header .bottom-header-liana {
        padding: 0 3%;
    }
}
header .bottom-header-liana .logo-and-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 10px;
}
header .bottom-header-liana .logo-and-text #main-logo {
    height: 30px;
    width: auto;
}
@media screen and (max-width: 600px) {
    header .bottom-header-liana .logo-and-text #main-logo {
        height: 24px;
    }
}
header .bottom-header-liana .logo-and-text #logo-name {
    height: 18px;
    width: auto;
}
@media screen and (max-width: 520px) {
    header .bottom-header-liana .logo-and-text #logo-name {
        height: 14px;
    }
}
@media screen and (max-width: 400px) {
    header .bottom-header-liana .logo-and-text #logo-name {
        display: none;
    }
}
header .bottom-header-liana #desktop-menu-liana ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}
header .bottom-header-liana #desktop-menu-liana ul .menu-item a {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--liana-light-grey);
    white-space: nowrap;
}
@media (hover: hover) {
    header .bottom-header-liana #desktop-menu-liana ul .menu-item a:hover {
        color: var(--liana-green);
    }
}
header .bottom-header-liana #desktop-menu-liana ul .menu-item.active a {
    color: #9beb85;
}
header .bottom-header-liana li.menu-item img {
    height: 26px;
    width: 26px;
}
header .bottom-header-liana .menu-git {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    border-radius: 50%;
    height: 25px;
    width: 26px;
}
header .bottom-header-liana .menu-git a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
}
header .bottom-header-liana .menu-git a svg {
    width: 24px;
    height: auto;
}
@media (hover: hover) {
    header .bottom-header-liana .menu-git a:hover svg path {
        fill: var(--liana-green);
    }
}
header .bottom-header-liana .disabled a {
    cursor: default;
    color: var(--grey) !important;
}
header .bottom-header-liana .menu-item.disabled:hover {
    cursor: default;
    background: var(--grey);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
header .bottom-header-liana span#coming-text {
    color: var(--grey);
}

.flex-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 650px) {
    header .bottom-header-liana #desktop-menu-liana ul {
        gap: 12px;
    }
}

/********************* MODAL - DOWNLOAD LIANA ***************************************************************/

/* Temporary modal for Linux */

input#downloadModalLinux:not(:checked) ~ .modal-linux {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.modal-linux {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    left: 0;
    z-index: 103;
    -webkit-transition: -webkit-transform 0.05s ease-in-out;
    transition: -webkit-transform 0.05s ease-in-out;
    -o-transition: transform 0.05s ease-in-out;
    transition: transform 0.05s ease-in-out;
    transition: transform 0.05s ease-in-out, -webkit-transform 0.05s ease-in-out;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

/* Modal Liana */

input#downloadModal:not(:checked) ~ .modal {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.modal {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    margin-left: auto;
    margin-right: auto;
    /*  */
    -webkit-transition: -webkit-transform 0.05s ease-in-out;
    transition: -webkit-transform 0.05s ease-in-out;
    -o-transition: transform 0.05s ease-in-out;
    transition: transform 0.05s ease-in-out;
    transition: transform 0.05s ease-in-out, -webkit-transform 0.05s ease-in-out;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}
@media screen and (max-width: 540px) {
    .modal {
        min-height: 100vh;
        height: auto;
    }
    .modal-linux {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.download-modal {
    border-radius: 12px;
    background-color: #191919;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 700px;
    max-height: 500px;
}
.download-modal-linux {
    border-radius: 12px;
    background-color: #191919;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
    max-width: 700px;
    max-height: 500px;
}
@media screen and (max-width: 768px) {
    .download-modal {
        width: 100%;
        max-height: 450px;
        max-width: none;
        border-radius: 0;
    }
    .download-modal-linux {
        width: 100%;
        max-height: 450px;
        max-width: none;
        border-radius: 0;
    }
}
@media screen and (max-width: 540px) {
    .download-modal {
        max-height: none;
        height: auto;
    }
    .download-modal-linux {
        max-height: none;
        height: auto;
        padding: 14px 0 0;
    }
}
.download-modal label {
    -ms-flex-item-align: end;
    align-self: flex-end;
}
.download-modal .content-modal .flex-op-btns .label-linux .each-op-btn {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
@media screen and (max-width: 540px) {
    .download-modal .content-modal .flex-op-btns .label-linux .each-op-btn {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .label-linux {
        width: 100%;
    }
}
.download-modal .modal-close {
    width: 24px;
    height: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
}
@media (hover: hover) {
    .download-modal .modal-close:hover svg path {
        fill: #00ff66 !important;
    }
}
.download-modal .content-modal {
    max-width: 560px;
    height: 100%;
    padding: 0 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.download-modal .content-modal.linux {
    max-width: 530px;
    height: 100%;
    padding: 0 20px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}
@media screen and (max-width: 540px) {
    .download-modal .content-modal {
        padding: 0 0 20px;
    }
    .download-modal .content-modal.linux {
        padding: 0;
        gap: 0px;
    }
}
.download-modal .content-modal h3.title-modal {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    color: #00ff66;
    text-align: center;
    text-transform: none;
}
@media screen and (max-width: 768px) {
    .download-modal .content-modal h3.title-modal {
        font-size: 36px;
        margin-bottom: 14px;
    }
}
@media screen and (max-width: 540px) {
    .download-modal .content-modal h3.title-modal {
        line-height: 36px;
    }
}
.download-modal .content-modal .liana-version {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #e6e6e6;
    text-align: center;
}
.download-modal .content-modal .text-op {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #7b7b7b;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
    .download-modal .content-modal .text-op {
        margin: 20px 0 10px 0;
        text-align: center;
    }
}
.download-modal .content-modal .flex-op-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}
@media screen and (max-width: 768px) {
    .download-modal .content-modal .flex-op-btns {
        gap: 10px;
    }
}
@media screen and (max-width: 540px) {
    .download-modal .content-modal .flex-op-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 40px;
    }
}
.download-modal .content-modal .flex-op-btns .each-op-btn {
    aspect-ratio: 1/1;
    height: 165px;
    width: 165px;
    background-color: #373737;
    border-radius: 0 20px 0 20px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    .download-modal .content-modal .flex-op-btns .each-op-btn {
        height: 150px;
        width: 150px;
        padding: 16px;
    }
    .download-modal .content-modal .flex-op-btns .each-op-btn:focus {
        background-color: #00ff66;
    }
    .download-modal .content-modal .flex-op-btns .each-op-btn:focus .op {
        color: #000 !important;
    }
    .download-modal .content-modal.linux .flex-op-btns .each-op-btn:focus .op {
        color: #000 !important;
    }
}
@media screen and (max-width: 540px) {
    .download-modal .content-modal .flex-op-btns .each-op-btn {
        width: 100%;
    }
}
.download-modal .content-modal .flex-op-btns .each-op-btn svg {
    height: 57px;
    width: auto;
}
.download-modal .content-modal .flex-op-btns .each-op-btn .op {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #00ff66;
    text-align: center;
    line-height: 109%;
    margin-top: 20px;
}
.download-modal .content-modal .flex-op-btns .each-op-btn .op-linux {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #00ff66;
    text-align: center;
    line-height: 109%;
    margin-top: 20px;
}
@media screen and (max-width: 768px) {
    .download-modal .content-modal .flex-op-btns .each-op-btn .op {
        margin-top: 10px;
    }
}
.download-modal .content-modal .flex-op-btns .each-op-btn .file-desc {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #7b7b7b;
    text-align: center;
}
@media (hover: hover) {
    .download-modal .content-modal .flex-op-btns .each-op-btn:hover {
        background-color: #00ff66;
    }
    .download-modal .content-modal .flex-op-btns .each-op-btn:hover .op {
        color: #000 !important;
    }
    .download-modal .content-modal .flex-op-btns .each-op-btn:hover .op-linux {
        color: #000 !important;
    }
    .download-modal .content-modal .flex-op-btns .each-op-btn:focus {
        color: #000 !important;
    }
}
.download-modal .content-modal .btn-otherV {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    gap: 4px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: #cccccc;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
}
.download-modal .content-modal .btn-otherV span {
    text-decoration: underline;
}
.download-modal .content-modal .btn-otherV svg {
    width: 11px;
    height: 11px;
}
@media (hover: hover) {
    .download-modal .content-modal .btn-otherV:hover {
        color: #00ff66;
    }
    .download-modal .content-modal .btn-otherV:hover svg path {
        fill: #00ff66 !important;
    }
}

/********************* Section - SAFETY NET ***************************************************************/

section.safety-net {
    padding: 3% 10%;
    background-image: url(/assets/images/liana/bg_banner_safetynet.svg);
    background-size: cover;
}
.safety-net .wrapper-safety-net {
    max-width: 1400px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.safety-net .container-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}
.safety-net .heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.safety-net .badge-new {
    padding: 6px 30px;
    background-color: var(--liana-black);
    border-radius: 0px 10px;
    border: 2px dashed var(--liana-green);
    color: var(--liana-green);
    text-align: center;
    font-family: 'IBM Plex Mono', sans-serif;
    font-size: 40px;
    font-weight: 700;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.safety-net h4 {
    color: #000;
    font-size: 30px;
    font-weight: 700;
}
.safety-net .container-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 560px;
    gap: 20px;
}
.safety-net .description {
    color: var(--grey-darker);
    font-size: 22px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
}
.safety-net .btn-primary-liana {
    color: var(--liana-green);
    width: 100%;
    text-transform: uppercase;
}
.safety-net .btn-primary-liana:hover {
    color: var(--liana-black) !important;
    background-color: var(--liana-green);
}
.safety-net .btn-primary-liana:focus,
.safety-net .btn-primary-liana:visited {
    color: var(--liana-green);
}

.safety-net .logo-sn-lettering {
    max-width: 450px;
}

@media screen and (max-width: 1500px) {
    section.safety-net {
        padding: 3% 5%;
    }
}
@media screen and (max-width: 1320px) {
    .safety-net .description {
        font-size: 18px;
        line-height: 20px;
        max-width: 400px;
    }
    .safety-net h4 {
        color: #000;
        font-size: 28px;
        line-height: 28px;
    }
}
@media screen and (max-width: 1100px) {
    .safety-net h2 {
        font-size: 64px;
    }
    .logo-sn-lettering {
        max-width: 300px;
    }
}
@media screen and (max-width: 1000px) {
    section.safety-net {
        padding: 5% 10%;
        background-position: center;
    }
    .safety-net .wrapper-safety-net {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .safety-net h2 {
        font-size: 58px;
    }
    .safety-net .badge-new {
        font-size: 34px;
        padding: 6px 20px;
    }
}

@media screen and (max-width: 600px) {
    .safety-net h2 {
        font-size: 50px;
    }
    .safety-net .badge-new {
        font-size: 28px;
        padding: 6px 20px;
    }
    .safety-net h4 {
        color: #000;
        font-size: 24px;
        line-height: 26px;
    }
    .safety-net .description {
        font-size: 16px;
        line-height: 18px;
    }
}

@media screen and (max-width: 510px) {
    .safety-net .heading {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

/********************* 8th and 9th Sections  - SPECS & HARDWARE SIGNERS ***************************************************************/
section#specs {
    background-color: var(--liana-black);
    padding: 10% 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 100px;
}
.title-caps {
    text-align: center;
    color: var(--liana-green);
    text-transform: uppercase;
    font-weight: 200;
    font-size: 46px;
    font-family: 'IBM Plex Mono', sans-serif;
    line-height: 120%;
}
.title-caps span {
    font-weight: 500;
}
.container-3col {
    max-width: 1400px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    margin: auto;
    gap: 30px;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    width: 100%;
}
.greybox {
    background-color: var(--liana-black);
    border-radius: 40px;
    border: 1px solid #3c3c3c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 40px;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    gap: 10px;
}
@media (hover: hover) {
    .greybox:hover {
        border-color: #575757;
        background-color: #000;
        cursor: default;
    }
}
.greybox-title {
    font-size: 24px;
    color: var(--liana-light-grey);
    text-align: center;
    font-weight: 600;
    line-height: 108%;
}
.greybox-description {
    font-size: 16px;
    color: var(--grey);
    text-align: center;
}
.spec-img {
    height: 90px;
    width: 90px;
}
/* Hardware Signers / Wallet's logos */
.container-hs .greybox {
    min-height: 170px;
}
.hs-img {
    max-height: 90px;
    max-width: 240px;
    width: auto;
}
@media (hover: hover) {
    .container-hs .greybox:hover img svg path {
        fill: #fff;
    }
    .container-hs a.greybox:hover {
        border-color: var(--liana-green);
        cursor: pointer;
    }
}
/* working on... */
.working-img {
    height: 18px;
    width: auto;
    margin-bottom: 10px;
}
p.working-description {
    color: var(--Grey, #7b7b7b);
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    line-height: 120%; /* 26.4px */
}

.btn-green.features {
    margin: auto;
}

/* Media Queries */

@media screen and (max-width: 950px) {
    .container-3col {
        gap: 16px;
    }
    .greybox {
        padding: 20px;
    }

    p.working-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    section#specs {
        gap: 60px;
        padding: 80px 5%;
    }
    .container-3col.specs {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .title-caps {
        font-size: 34px;
    }
    .greybox {
        padding: 12px 20px;
    }
    .spec-img {
        height: 70px;
        width: 70px;
    }
    .container-3col.container-hs {
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 600px) {
    .title-caps {
        font-size: 30px;
    }
    .container-hs .greybox {
        min-height: 130px;
    }
    .working-img {
        margin: 0;
        height: 10px;
    }
    p.working-description {
        color: var(--Grey, #7b7b7b);
        text-align: center;
        font-size: 14px;
        font-weight: 300;
        line-height: 120%; /* 26.4px */
    }
}

/********************* NEW GENERAL STYLES ***************************************************************/

/* Text color classes */
.text-white {
    color: #fff;
}
.text-green {
    color: var(--liana-green);
}
.text-black {
    color: var(--liana-black);
}
.text-blue {
    color: #859cae;
}
.text-lightgrey {
    color: var(--liana-light-grey);
}
.text-grey-darker {
    color: var(--grey-darker) !important;
}
.bg-grey {
    background-color: #2c2c2c;
}
.bg-light-grey {
    background-color: var(--liana-light-grey);
}
.bg-black {
    background-color: #141414;
}

/* Button Styles */

.btn-round {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    border-radius: 38px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.18px;
    text-transform: uppercase;
    text-align: center;
}
.btn-round svg {
    height: 22px;
    width: auto;
}

.btn-round.light {
    color: var(--liana-black);
    background-color: #ededed;
}
.btn-round.light:hover {
    background-color: var(--liana-green);
    cursor: pointer;
}
.btn-round.green {
    color: var(--liana-black) !important;
    background-color: #00ff66;
    text-transform: none;
    font-weight: 700 !important;
    padding: 8px 16px;
    margin-top: 2px;
}
.btn-round.green:hover {
    background-color: var(--white);
    cursor: pointer;
}

.btn-round.black {
    color: var(--white);
    background-color: var(--liana-black);
    font-size: 20px;
    padding: 16px 40px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.btn-round.black:hover {
    background-color: var(--grey-darker);
    color: var(--liana-green);
    cursor: pointer;
}

/********************* Style fix's css classes ***************************************************************/

.w-full {
    width: 100%;
}
.w-fc {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.mt-10 {
    margin-top: 10px;
}
.maxheight {
    max-height: 450px;
}
.round-corners {
    border-radius: 20px;
    overflow: hidden;
}

/********************* General Styles - Applied to multiple components ***************************************************************/

h4.eyebrow,
h1.eyebrow {
    font-size: 20px;
    font-weight: 500;
    line-height: 146%;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

h2.new-title,
h1.new-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 105%;
    margin-bottom: 20px;
}
h2.new-title-gradient {
    text-align: center;
    font-size: 64px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.64px;
    background: var(--gradient-new, linear-gradient(90deg, #2fc8a2 9.11%, #19d263 43.33%, #0f6 77.55%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
h3.new-subtitle {
    color: var(--White, #f4f4f4);
    font-size: 42px;
    font-weight: 700;
    line-height: 116%;
    letter-spacing: -0.43px;
    text-transform: none;
}
h5.new-small-title {
    color: var(--Grey-Darker, #373737);
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: 160%; /* 160% */
}
p.new-description {
    color: #a1a1a1;
    font-size: 18px;
    line-height: 147%;
    font-weight: 400;
}

/********************* NEW SECTIONS TEXT AND IMAGE BLOCK ***************************************************************/

#whats-liana .btn-round {
    margin-top: 16px;
}

/* New Section - Text and Image Block */

.section-text-block {
    padding: 10% 5%;
}

.container-2col {
    max-width: 1400px;
    margin: auto;
    gap: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.wrapper-text-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    max-width: 50%;
}

.wrapper-text-block.center {
    align-items: center;
    text-align: center;
}
/* image styles */
.section-text-block img {
    width: 100%;
    height: auto;
}

/*********************************************************************************************************/
/*********************************************************************************************************/
/********************* SECTIONS **************************************************************************/
/*********************************************************************************************************/
/*********************************************************************************************************/

/********************* NEW SECTION BANNER ***************************************************************/

#new-banner-liana {
    margin-top: 84px;
    background-size: contain;
    position: relative;
    min-height: 85vh;
    max-height: 90vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8%;
}

.wrapper-new-banner {
    max-width: 44%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
    z-index: 1;
}

.main-title {
    color: var(--Liana-Black, #141414);
    font-size: 87px;
    font-weight: 700;
    line-height: 111%;
    letter-spacing: -0.87px;
}

.description-banner {
    color: var(--grey-darker);
    font-size: 23px;
    font-weight: 400;
    line-height: 120%;
}

.banner-over {
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transform: translate(28%, 0%);
    -ms-transform: translate(28%, 0%);
    transform: translate(28%, 0%);
    max-height: 80vh;
    max-width: 80vw;
}

/********************* NEW SECTIONS START USING ***************************************************************/

#start-using {
    background-image: url(/assets/images/liana/bg_startusing.jpg);
    background-size: cover;
    padding: 10% 5%;
    background-position: top;
    background-attachment: fixed;
}

.container-start-using {
    max-width: 1400px;
    margin: auto;
    gap: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.center-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.container-3col-start {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 10px;
    max-width: 1400px;
}
.item-start-using {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 40px 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 26px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0px;
    flex: 1 0 0;
    /*     background: rgba(246, 246, 246, 0.08); */
    background: rgb(0 0 0 / 75%);
}
.item-start-using:first-of-type {
    border-radius: 60px 0px 0px 60px;
}
.item-start-using:last-of-type {
    border-radius: 0px 60px 60px 0px;
}

.item-start-using img {
    max-height: 100px;
    width: auto;
}

.flex-col-gap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

/********************* NEW SECTIONS TEMPLATES ***************************************************************/

.gif-wrapper {
    position: relative;
}

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

.chips-gif {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: translate(-46px, 20px);
    -ms-transform: translate(-46px, 20px);
    transform: translate(-46px, 20px);
}
.chip-green {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 10px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background-color: var(--liana-green);
    color: var(--liana-black);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
}

/********************* SECTION LIANA BOX - STARTER PACK ***************************************************************/

section#lianabox {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.section-text-block img.badge-liana-cryptosteel {
    position: absolute;
    top: 10%;
    right: 5%;
    height: 46px;
    width: auto;
}
.gif-box {
    border-radius: 20px;
    overflow: hidden;
}

.box-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
section#lianabox h5 {
    color: var(--grey-darker);
    text-align: center;
    font-size: 24px;
    font-weight: normal;
}

.wrapper-boxes {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 12px;
    align-self: stretch;
    max-width: 1400px;
    margin: auto;
}

.each-box {
    display: flex;
    padding: 16px 8px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    border-radius: 30px;
    background: #ededed;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
}

.each-box .flex-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.each-box h6 {
    color: #6e899f;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
}

.each-box p {
    color: var(--Grey, #7b7b7b);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.42px;
}

.each-box img {
    max-height: 100px;
    width: auto;
}

/********************* (?)th Section - PARTNERS ***************************************************************/
#partners {
    background: url(/assets/images/liana/bg_partners.png);
    background-size: cover;
    padding: 5%;
    background-position: center;
    background-position: top;
}

#partners .wrapper-partners {
    max-width: 1400px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}

#partners .header-partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    max-width: 700px;
}

#partners .content-partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    padding: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 2%;
    border-radius: 28px;
    border: 1px solid #000000;
    background: #000000a8;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
}

.card-partners {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 36px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 16px;
    border-radius: 20px;
    border: 1px solid #4f4f4f;
    background: #0b0b0b;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 7%;
}
.card-partners .img-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 23px;
    padding: 10px;
    border: 1px solid #d8d8d8;
    background: #fff;
    overflow: hidden;
    max-height: 140px;
    height: 100%;
}

.card-partners .img-wrapper img {
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 300px;
}

#partners .chip-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}

.chip-location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2px 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 6px;
    border: 1px solid var(--Liana-Green, #0f6);
    /*    border: 1px solid #575757; */
    background: #262626;
    color: var(--Liana-Green, #0f6);
    /*     color: #d1d1d1; */
    font-size: 14px;
    font-weight: 500;
    background-color: #2e2e2e;
}
.chip-language {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 6px 12px;
    border-radius: 171px;
    border: 1px solid #484848;
    background: var(--liana-black);
    color: var(--Liana-Light-Grey, #e6e6e6);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.card-partners .text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
}

.card-partners .text-wrapper h6 {
    color: var(--White, #f4f4f4);
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 8px;
}

.partners-contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    gap: 4px;
    color: var(--Grey, #7b7b7b);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.14px;
}
.partners-contacts:hover,
.partners-contacts:focus {
    color: var(--liana-light-grey);
    cursor: pointer;
}
.partners-contacts.no-link:hover,
.partners-contacts.no-link:focus {
    color: var(--Grey, #7b7b7b);
    cursor: default;
}

.partners-contacts svg {
    width: 18px;
    margin-top: 2px;
}

.card-partners .top-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
}
.card-partners .bottom-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    justify-self: flex-end;
}

.round-dark-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 19px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 9px;
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    border-radius: 30px;
    border: 1px solid #545454;
    background: var(--liana-black);
    color: var(--White, #f4f4f4);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.16px;
    text-transform: uppercase;
}
.round-dark-button:hover,
.round-dark-button:focus {
    background-color: var(--liana-green);
    color: var(--liana-black);
}

/********************* 11th Section - COMMUNITY ***************************************************************/

section#community {
    padding: 5%;
    background-image: url(../assets/images/liana/bg_community.jpg);
    background-position: center;
}

/* If you change this code it will change the style of the contact section in support page as well */
.community-wrapper {
    max-width: 1400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
    width: 100%;
}
.community-wrapper .right-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}
.community-wrapper .right-container h2 {
    color: #141414;
    font-size: 70px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%; /* 80px */
    letter-spacing: -1.6px;
}
.community-wrapper .right-container p {
    color: #373737;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: 120.8%; /* 27.784px */
    letter-spacing: 0.23px;
}

.community-wrapper .right-container .community-social-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}
.community-wrapper .right-container .community-social-icons .icon-social-community {
    height: 30px;
    width: 30px;
    width: auto;
}
.community-wrapper .right-container .community-social-icons .icon-social-community svg {
    height: 30px;
    width: 30px;
    fill: var(--grey-darker);
}
.community-wrapper .right-container .community-social-icons .icon-social-community:hover svg {
    fill: #000;
}

.community-wrapper .left-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
    width: 360px;
}
.community-wrapper .left-container .btn-community {
    background-color: #212121;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 16px 20px;
    gap: 24px;
    color: #f4f4f4;
    font-size: 28px;
    font-weight: 600;
    line-height: 109%; /* 30.52px */
    letter-spacing: 0.28px;
    border-radius: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
@media (hover: hover) {
    .community-wrapper a.btn-community:hover {
        background-color: #000000;
        color: var(--liana-green) !important;
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03);
    }
}

.community-wrapper .left-container .btn-community svg {
    height: 50px;
    width: auto;
}

@media screen and (max-width: 1200px) {
    .community-wrapper .right-container h2 {
        font-size: 60px;
    }
}
@media screen and (max-width: 1000px) {
    section#community {
        padding: 8% 5%;
    }
    .community-wrapper .right-container h2 {
        font-size: 50px;
    }
    .community-wrapper .right-container p {
        font-size: 18px;
        max-width: 380px;
    }
    .community-wrapper .left-container .btn-community {
        padding: 16px;
        font-size: 22px;
    }
    .community-wrapper .left-container .btn-community svg {
        height: 36px;
    }
    .community-wrapper .left-container {
        width: 280px;
    }
}

@media screen and (max-width: 768px) {
    .community-wrapper .right-container h2 {
        font-size: 40px;
    }
}
@media screen and (max-width: 600px) {
    .community-wrapper .community-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }
    .community-wrapper .right-container {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .community-wrapper.right-container h2 {
        text-align: center;
    }
    .community-wrapper .right-container p {
        text-align: center;
    }
}

/********************* Footer ***************************************************************/
footer#footer-liana {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 4% 10%;
    background-color: #0e0e0e;
    border-top: 1px solid;
}
@media screen and (max-width: 768px) {
    footer#footer-liana {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 60px;
        padding: 10%;
    }
}
@media screen and (max-width: 500px) {
    footer#footer-liana {
        gap: 40px;
    }
}
footer#footer-liana .logo-wrapper-liana {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
@media screen and (max-width: 500px) {
    footer#footer-liana .logo-wrapper-liana {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
footer#footer-liana .logo-wrapper-liana img {
    width: 195px;
    height: auto;
}
footer#footer-liana .logo-wrapper-liana #credits {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #a1a1a1;
    letter-spacing: 0.075em;
}
footer#footer-liana .footer-menu-liana {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 60px;
}
@media screen and (max-width: 500px) {
    footer#footer-liana .footer-menu-liana {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 30px;
    }
}
footer#footer-liana .footer-menu-liana .each-col .col-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #7b7b7b;
}
footer#footer-liana .footer-menu-liana .each-col .col-title:hover {
    color: #7b7b7b;
}
footer#footer-liana .footer-menu-liana .each-col ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
footer#footer-liana .footer-menu-liana .each-col ul li {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--liana-light-grey);
    white-space: nowrap;
}
footer#footer-liana .footer-menu-liana .each-col ul li:hover {
    color: var(--liana-green);
}
footer#footer-liana .footer-menu-liana .each-col ul .disabled {
    color: #7b7b7b;
}
footer#footer-liana .footer-menu-liana .each-col ul .disabled:hover {
    text-decoration: none;
    color: #7b7b7b;
    cursor: default;
}
footer#footer-liana .footer-menu-liana .each-col ul .disabled:hover a {
    cursor: default;
}
footer#footer-liana .footer-menu-liana .each-col .icons-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}
footer#footer-liana .footer-menu-liana .each-col .icons-holder .a-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}
@media (hover: hover) {
    footer#footer-liana .footer-menu-liana .each-col .icons-holder .a-icon:hover svg path {
        fill: var(--liana-green);
    }
}
footer#footer-liana .footer-menu-liana .each-col .icons-holder .a-icon img {
    width: 30px;
    height: 30px;
}

/********************* 3th Section - INHERITANCE - OLD SECTION ***************************************************************/
/* Keep because bitcoin cat style */

section#inheritance {
    background-color: var(--liana-grey);
    padding: 7% 3% 7% 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
}
@media screen and (max-width: 1000px) {
    section#inheritance .section-content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    section#inheritance .section-content-wrapper .flex-start-col {
        max-width: 800px;
    }
    section#inheritance .section-content-wrapper .section-img-wrapper {
        width: 100%;
        margin: auto;
    }
}
section#inheritance h2 {
    white-space: nowrap;
}

input#inheritanceCollapsable:not(:checked) ~ .collapsed-text.readmore-inheritance {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    height: 0;
    display: none;
}

input#inheritanceCollapsable:not(:checked) ~ .readmore-inheritance .btn-open {
    display: block;
}

input#inheritanceCollapsable:not(:checked) ~ .readmore-inheritance .btn-close {
    display: none;
}

/********************* 4th Section - RECOVERY - OLD ***************************************************************/
/* Keep because bitcoin cat style */

section#recovery {
    background-color: #2c2c2c;
    padding: 7% 3% 7% 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
section#recovery .heading-wrapper {
    margin-bottom: 40px;
}
section#recovery h2 {
    color: var(--liana-green);
    text-align: center;
    line-height: 64px;
}
section#recovery h3 {
    text-transform: none;
    color: var(--liana-green);
    text-align: center;
}
section#recovery h5 {
    color: var(--liana-light-grey);
    font-weight: 600;
}
section#backups .white {
    color: white;
}
section#recovery .text-bold {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--liana-light-grey);
    line-height: 24px;
}
section#recovery .text {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--liana-grey);
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}
section#recovery .text-italic {
    font-family: 'IBM Plex Sans', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 16px;
    color: var(--liana-grey);
}
section#recovery .section-content-wrapper {
    margin-bottom: 30px;
}
@media screen and (max-width: 860px) {
    section#recovery .section-content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 860px) {
    section#recovery .section-content-wrapper .section-img-wrapper {
        width: 100%;
        margin: auto;
    }
}
section#recovery .collapsed-text {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin-bottom: 30px;
    width: 100%;
    height: auto;
}
section#recovery .collapsed-text .text {
    color: var(--liana-light-grey);
}

input#recoveryCollapsable:not(:checked) ~ .collapsed-text.readmore-recovery {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    height: 0;
    display: none;
}

input#recoveryCollapsable:not(:checked) ~ .readmore-recovery .btn-open {
    display: block;
}

input#recoveryCollapsable:not(:checked) ~ .readmore-recovery .btn-close {
    display: none;
}

/********************* 2nd Section - LIANA USES ***************************************************************/
/* Keep because bitcoin cat style */

section#liana-uses {
    padding: 5%;
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
}
@media screen and (max-width: 768px) {
    section#liana-uses {
        gap: 30px;
    }
}
@media screen and (max-width: 600px) {
    section#liana-uses {
        gap: 30px;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        padding: 60px 40px;
    }
    section#liana-uses h3 {
        text-align: center;
    }
}
section#liana-uses .flex-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}
@media screen and (max-width: 1100px) {
    section#liana-uses .flex-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}
section#liana-uses .flex-buttons .btn-uses {
    height: 100px;
    padding: 0 30px;
    background-color: var(--liana-black);
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: var(--liana-green);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    border-radius: 0 40px;
    white-space: nowrap;
}
@media screen and (max-width: 1300px) {
    section#liana-uses .flex-buttons .btn-uses {
        font-size: 26px;
    }
}
@media screen and (max-width: 600px) {
    section#liana-uses .flex-buttons .btn-uses {
        width: 100%;
        font-size: 24px;
        white-space: normal;
        text-align: center;
    }
}
@media (hover: hover) {
    section#liana-uses .flex-buttons .btn-uses:hover {
        background-color: var(--liana-green);
        color: var(--liana-black);
        -webkit-filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
        filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.1));
    }
}
*/

/********************* 5th Section - BACKUPS ***************************************************************/
/* Keep because bitcoin cat style */


section#backups {
    background-color: var(--liana-black);
    padding: 7% 3% 7% 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
}
section#backups .section-content-wrapper {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
section#backups .section-content-wrapper h2 {
    color: #f4f4f4;
}
section#backups .section-content-wrapper p.text {
    color: var(--liana-light-grey);
}
section#backups .section-content-wrapper p.text.grey {
    color: #9b9b9b;
    font-size: 16px;
}
section#backups .section-content-wrapper .border-radius {
    border-radius: 0 100px;
    overflow: hidden;
}
@media screen and (max-width: 830px) {
    section#backups .section-content-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    section#backups .section-content-wrapper .section-img-wrapper {
        width: 100%;
        margin: auto;
    }
}
section#backups .btn-secondary-liana {
    padding: 0 80px;
}

.collapsed-text.flex-start-col.readmore-backups p.text {
    color: #9b9b9b;
    max-width: 1200px;
    text-align: center;
}

input#backupsCollapsable:not(:checked) ~ .collapsed-text.readmore-backups {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    height: 0;
    display: none;
}

input#backupsCollapsable:not(:checked) ~ .readmore-backups .btn-open {
    display: block;
}

input#backupsCollapsable:not(:checked) ~ .readmore-backups .btn-close {
    display: none;
}

/********************* PAGE - BITCOIN CAT CAMPAIGN ***************************************************************/

#bitcoincat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 6% 10%;
    margin-top: 94px;
    gap: 40px;
    background-color: #0c0c0c;
}

h1.title-green {
    font-size: 40px;
    color: var(--liana-green);
    text-align: center;
    line-height: 40px;
    text-transform: uppercase;
}

.container-video {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

#bitcoincat h2 {
    margin-bottom: 10px;
}

iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
}

#bitcoincat .btn-green:hover svg path {
    fill: var(--liana-green);
}

#bitcoincat .banner-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.center-text-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 700px;
    gap: 4px;
    width: auto;
}

.center-text-wrapper p,
.center-text-wrapper h2,
.center-text-wrapper h5 {
    text-align: center;
    white-space: wrap !important;
}
.center-text-wrapper h2 {
    line-height: 44px !important;
}
.center-text-wrapper p {
    margin-top: 10px;
}

/* Call2action section */

#btc-prague {
    background-color: var(--liana-black);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 14px;
    padding: 10% 2%;
}

h3.title-grey {
    font-size: 26px;
    text-transform: none;
    text-align: center;
    line-height: 30px;
    font-weight: 500;
}

#btc-prague p {
    color: var(--liana-green);
}

h2.title-green {
    font-size: 30px;
    color: var(--liana-green);
    text-align: center;
    line-height: 32px;
    text-transform: uppercase;
}

#btc-prague img {
    max-height: 400px;
    width: 100%;
}

.social-links {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 40px 0;
}

.social-links a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
@media (hover: hover) {
    .social-links a:hover svg path {
        fill: #fff;
    }
}

/********************* NEW SECTIONS COMPANIES - Keep for now ***************************************************************/
/* Not in use now */

/* #companies {
    padding: 3% 5%;
    background-color: #f4f4f4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 60px;
}
.wrapper-companies-logos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 20px;
    max-height: 60px;
}
.each-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 0;
}
.wrapper-companies-logos img {
    height: 100%;
    width: auto;
    max-width: 100%;
}
 */

/********************* NOT IN USE - MENU ITEM WITH ICON - Keep for now ***************************************************************/

/* .menu-item-support {
    font-size: 14px;
    color: #909090;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.menu-item-support svg {
    height: 20px;
    width: auto;
}

@media screen and (max-width: 534px) {
    .menu-item-support {
        display: none;
    }
}
 */

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

@media screen and (max-width: 1100px) {
    .wrapper-new-banner {
        max-width: 54%;
    }
    #partners {
        padding: 60px 20px;
    }

    #partners .content-partners {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }
    .card-partners {
        padding: 18px 30px;
    }
    .each-box img {
        max-height: 70px;
    }
    h3.new-subtitle {
        font-size: 28px;
    }
    .wrapper-boxes {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media screen and (max-width: 1000px) {
    .container-3col-start {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .item-start-using img {
        max-height: 70px;
    }
    .item-start-using:first-of-type {
        border-radius: 60px 60px 0px 0px;
    }
    .item-start-using:last-of-type {
        border-radius: 0px 0px 60px 60px;
    }
}

@media screen and (max-width: 850px) {
    #new-banner-liana {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .wrapper-new-banner {
        max-width: 70%;
    }
    .section-text-block {
        padding: 10%;
    }
    .container-2col {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .wrapper-text-block {
        max-width: none;
    }
    .main-title {
        font-size: 70px;
    }
    .description-banner {
        font-size: 20px;
    }
    h3.new-subtitle {
        font-size: 24px;
    }
    .section-text-block img.badge-liana-cryptosteel {
        top: 30px;
        height: 30px;
    }
    section#lianabox {
        padding-top: 80px;
        gap: 60px;
    }
}
@media screen and (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }
    #start-using {
        padding: 80px 20px;
    }
    #start-using .eyebrow {
        text-align: center;
    }

    .container-start-using {
        gap: 40px;
    }
    .center-title-wrapper {
        gap: 0;
    }
    .item-start-using:first-of-type {
        border-radius: 40px 40px 0px 0px;
    }
    .item-start-using:last-of-type {
        border-radius: 0px 00px 40px 40px;
    }
    #partners .header-partners {
        gap: 10px;
        padding: 0 20px;
    }
    #partners .wrapper-partners {
        gap: 20px;
    }
    .card-partners {
        width: 100%;
    }
    h2.new-title {
        font-size: 40px;
        line-height: 126%;
    }
    h2.new-title-gradient {
        font-size: 46px;
    }
    h4.eyebrow {
        font-size: 16px;
    }
    .btn-round {
        font-size: 16px !important;
    }
    section.safety-net {
        padding: 10% 5%;
    }
    .each-box h6 {
        font-size: 16px;
    }
}

@media screen and (max-width: 650px) {
    .wrapper-new-banner {
        max-width: none;
        gap: 12px;
    }
    .description-banner {
        font-size: 18px;
    }
    .banner-over {
        max-width: 95vw;
    }
    .community-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 40px;
    }
    .community-wrapper .right-container h2 {
        text-align: center;
    }
    #companies {
        padding: 5%;
        gap: 30px;
    }
    .wrapper-companies-logos {
        max-height: none;
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        width: 100%;
    }
    .each-logo {
        max-height: 46px;
    }
    .item-start-using {
        padding: 30px;
    }
    .main-title {
        font-size: 54px;
        margin-top: 10%;
    }
    h2.new-title-gradient {
        font-size: 38px;
    }
    .wrapper-boxes {
        grid-template-columns: repeat(2, 1fr);
    }
    #partners .content-partners {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-template-rows: auto;
    }
}
@media screen and (max-width: 450px) {
    .banner-over {
        max-width: 80vw;
    }
    h2.new-title {
        font-size: 32px;
        line-height: 126%;
    }
    .wrapper-companies-logos {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 48px;
        margin-top: 5%;
    }
}
