@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;
}

/****************************************** BANNER SUPPORT ******************************************/

.invisible {
    position: relative;
    top: -130px;
    visibility: hidden;
}

.jump-menu {
    width: 100%;
    background-color: var(--liana-black);
    padding: 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 94px;
    height: 50px;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 84px;
    scroll-behavior: smooth;
    z-index: 1;
}
.jump-menu .each-jump {
    font-size: 16px;
    color: var(--liana-grey);
    text-align: right;
    height: 30px;
    width: auto;
    padding: 2px 10px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.jump-menu .each-jump:hover {
    color: var(--liana-green);
    background-color: #2f2f2f;
}

#banner-support {
    padding: 5% 10% 40px;
    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;
    background-color: #111;
    gap: 40px;
    margin-top: 94px;
}

#banner-support h1 {
    font-weight: var(--bold);
    font-size: 68px;
    text-align: center;
    color: var(--liana-green);
}

h4 {
    color: var(--liana-grey);
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.24px;
}

.shortcuts-container {
    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;
    max-height: 125px;
    gap: 40px;
}

.shortcut-btn {
    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;
    border-radius: 4px;
    border: 1px solid #3c3c3c;
    padding: 20px 40px;
    gap: 20px;
}
.shortcut-btn img {
    max-height: 40px;
}
.shortcut-btn p {
    font-size: 16px;
    color: var(--liana-grey);
    text-align: center;
}
.link-text {
    font-weight: 500;
    color: grey;
    text-decoration: underline;
    font-size: 16px;
}
.link-text:hover {
    color: var(--liana-light-grey);
    text-decoration: underline;
}

/****************************************** RESOURCES ******************************************/

#resources {
    background-color: #0c0c0c;
    padding: 5% 10%;
    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;
    gap: 20px;
}

.title-and-expand {
    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;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    color: #f2f2f2;
    line-height: 109%;
    letter-spacing: 0.36px;
}

.text-btn-expand {
    font-size: 18px;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: var(--liana-green);
}

.text-btn-expand:hover {
    color: #fff;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
}

.resources-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.resource-item {
    background-color: var(--liana-black);
    border: 1px solid #373737;
    padding: 26px;
    border-radius: 0px 20px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 23.6%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
}

.resource-item svg {
    height: 60px;
    width: auto;
    margin-bottom: 10px;
}
.resource-item svg path {
    fill: #373737;
    /*   opacity: 100%; */
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.resource-item:hover {
    -webkit-transform: scale(103%);
    -ms-transform: scale(103%);
    transform: scale(103%);
    cursor: pointer;
    background-color: var(--liana-black);
    border-color: var(--liana-green);
}
.resource-item:hover .resource-description {
    color: var(--liana-grey);
}
.resource-item:hover svg path {
    fill: var(--liana-green);
    opacity: 100%;
}

h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f4f4f4;
    text-transform: none;
}

.resource-description {
    font-size: 13px;
    color: var(--grey);
    line-height: 18px; /* 128.571% */
}

/****************************************** FAQS ******************************************/

#questions {
    padding: 5% 10%;
    background-color: var(--liana-black);
}

/********************* 7th Section - FAQ's ***************************************************************/
section#faqs-support {
    background-color: #0c0c0c;
    padding: 5% 10%;
    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;
    gap: 60px;
}
@media screen and (max-width: 850px) {
    section#faqs-support {
        padding: 60px 20px;
        gap: 30px;
    }
}
section#faqs-support h4 {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: var(--liana-light-grey);
    text-align: center;
}

.faqs-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* CATEGORIES */

.faqs-categories {
    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;
    width: 100%;
    border-radius: 0 0 0 20px;
    overflow: hidden;
    gap: 4px;
    max-width: 500px;
}

.category-item {
    max-height: 45px;
    background-color: #212121;
    padding: 10px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    border-bottom: 1px solid #0c0c0c;
}

.category-item .icon.minus {
    display: none;
}
/* active */
.category-item.active {
    background-color: var(--liana-green);
}
.category-item.active p.text-category {
    color: var(--liana-black);
}

.category-item p.text-category {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--liana-light-grey);
}

.category-item.active .icon.more {
    display: none;
}
.category-item.active .icon.minus {
    display: block;
}

section#faqs-support .icon {
    width: 18px;
    height: auto;
    margin-left: 10px;
}

/* FAQS */

section#faqs-support .faqs-wrapper {
    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;
    border-radius: 0 20px 0 0;
    overflow: hidden;
}
.faq-item {
    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;
}
section#faqs-support .arrow-icon {
    width: 28px;
    height: 28px;
    margin-left: 10px;
}
section#faqs-support .faqs-wrapper .faq-item .arrow_open {
    display: none;
    -webkit-transition: display 1s;
    -o-transition: display 1s;
    transition: display 1s;
}
section#faqs-support .faqs-wrapper .faq-item .arrow_close {
    -webkit-transition: display 1s;
    -o-transition: display 1s;
    transition: display 1s;
}
section#faqs-support .faqs-wrapper .faq-item .question-container {
    max-height: 45px;
    background-color: #212121;
    background-color: var(--liana-green);
    padding: 10px 26px;
    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%;
    cursor: pointer;
    border-bottom: 1px solid #0c0c0c;
}
@media screen and (max-width: 850px) {
    section#faqs-support .faqs-wrapper .faq-item .question-container {
        max-height: 60px;
    }
}
@media (hover: hover) {
    section#faqs-support .faqs-wrapper .faq-item .question-container:hover {
        background-color: var(--liana-green);
    }
}
section#faqs-support .faqs-wrapper .faq-item .question-container .text-question {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: var(--liana-light-grey);
    color: var(--liana-black);
}
@media screen and (max-width: 850px) {
    section#faqs-support .faqs-wrapper .faq-item .question-container .text-question {
        font-size: 16px;
    }
}
section#faqs-support .faqs-wrapper .faq-item .answer-container {
    width: 100%;
    height: auto;
    background-color: var(--liana-black);
    -webkit-transition: height 0.5s;
    -o-transition: height 0.5s;
    transition: height 0.5s;
    -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;
}
section#faqs-support .faqs-wrapper .faq-item .answer-container .text-answer {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #f4f4f4;
    -webkit-transition: 0ms;
    -o-transition: 0ms;
    transition: 0ms;
}
section#faqs-support input:checked ~ .answer-container {
    padding: 10px 26px;
}
/* Start here */
/* Merging transform, and height properties */
section#faqs-support input#faq1:not(:checked) ~ .answer-container.one,
section#faqs-support input#faq2:not(:checked) ~ .answer-container.two,
section#faqs-support input#faq3:not(:checked) ~ .answer-container.three,
section#faqs-support input#faq4:not(:checked) ~ .answer-container.four,
section#faqs-support input#faq5:not(:checked) ~ .answer-container.five,
section#faqs-support input#faq6:not(:checked) ~ .answer-container.six,
section#faqs-support input#faq7:not(:checked) ~ .answer-container.seven,
section#faqs-support input#faq8:not(:checked) ~ .answer-container.eight,
section#faqs-support input#faq9:not(:checked) ~ .answer-container.nine,
section#faqs-support input#faq10:not(:checked) ~ .answer-container.ten,
section#faqs-support input#faq11:not(:checked) ~ .answer-container.eleven,
section#faqs-support input#faq12:not(:checked) ~ .answer-container.twelve,
section#faqs-support input#faq13:not(:checked) ~ .answer-container.thirteen,
section#faqs-support input#faq14:not(:checked) ~ .answer-container.fourteen,
section#faqs-support input#faq15:not(:checked) ~ .answer-container.fifteen,
section#faqs-support input#faq16:not(:checked) ~ .answer-container.sixteen,
section#faqs-support input#faq17:not(:checked) ~ .answer-container.seventeen,
section#faqs-support input#faq18:not(:checked) ~ .answer-container.eighteen,
section#faqs-support input#faq19:not(:checked) ~ .answer-container.nineteen {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    height: 0;
}

/* Merging display properties for .arrow_open */
section#faqs-support input#faq1:not(:checked) ~ .question-container.one .arrow_open,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two .arrow_open,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three .arrow_open,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four .arrow_open,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five .arrow_open,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six .arrow_open,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven .arrow_open,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight .arrow_open,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine .arrow_open,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten .arrow_open,
section#faqs-support input#faq11:not(:checked) ~ .question-container.eleven .arrow_open,
section#faqs-support input#faq12:not(:checked) ~ .question-container.twelve .arrow_open,
section#faqs-support input#faq13:not(:checked) ~ .question-container.thirteen .arrow_open,
section#faqs-support input#faq14:not(:checked) ~ .question-container.fourteen .arrow_open,
section#faqs-support input#faq15:not(:checked) ~ .question-container.fifteen .arrow_open,
section#faqs-support input#faq16:not(:checked) ~ .question-container.sixteen .arrow_open,
section#faqs-support input#faq17:not(:checked) ~ .question-container.seventeen .arrow_open,
section#faqs-support input#faq18:not(:checked) ~ .question-container.eighteen .arrow_open,
section#faqs-support input#faq19:not(:checked) ~ .question-container.nineteen .arrow_open {
    display: block;
}

/* Merging display properties for .arrow_close */
section#faqs-support input#faq1:not(:checked) ~ .question-container.one .arrow_close,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two .arrow_close,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three .arrow_close,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four .arrow_close,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five .arrow_close,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six .arrow_close,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven .arrow_close,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight .arrow_close,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine .arrow_close,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten .arrow_close,
section#faqs-support input#faq11:not(:checked) ~ .question-container.eleven .arrow_close,
section#faqs-support input#faq12:not(:checked) ~ .question-container.twelve .arrow_close,
section#faqs-support input#faq13:not(:checked) ~ .question-container.thirteen .arrow_close,
section#faqs-support input#faq14:not(:checked) ~ .question-container.fourteen .arrow_close,
section#faqs-support input#faq15:not(:checked) ~ .question-container.fifteen .arrow_close,
section#faqs-support input#faq16:not(:checked) ~ .question-container.sixteen .arrow_close,
section#faqs-support input#faq17:not(:checked) ~ .question-container.seventeen .arrow_close,
section#faqs-support input#faq18:not(:checked) ~ .question-container.eighteen .arrow_close,
section#faqs-support input#faq19:not(:checked) ~ .question-container.nineteen .arrow_close {
    display: none;
}

/* Merging background-color property */
section#faqs-support input#faq1:not(:checked) ~ .question-container.one,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten,
section#faqs-support input#faq11:not(:checked) ~ .question-container.eleven,
section#faqs-support input#faq12:not(:checked) ~ .question-container.twelve,
section#faqs-support input#faq13:not(:checked) ~ .question-container.thirteen,
section#faqs-support input#faq14:not(:checked) ~ .question-container.fourteen,
section#faqs-support input#faq15:not(:checked) ~ .question-container.fifteen,
section#faqs-support input#faq16:not(:checked) ~ .question-container.sixteen,
section#faqs-support input#faq17:not(:checked) ~ .question-container.seventeen,
section#faqs-support input#faq18:not(:checked) ~ .question-container.eighteen,
section#faqs-support input#faq19:not(:checked) ~ .question-container.nineteen {
    background-color: #212121;
}

section#faqs-support input#faq1:not(:checked) ~ .question-container.one .text-question,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two .text-question,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three .text-question,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four .text-question,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five .text-question,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six .text-question,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven .text-question,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight .text-question,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine .text-question,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten .text-question,
section#faqs-support input#faq11:not(:checked) ~ .question-container.eleven .text-question,
section#faqs-support input#faq12:not(:checked) ~ .question-container.twelve .text-question,
section#faqs-support input#faq13:not(:checked) ~ .question-container.thirteen .text-question,
section#faqs-support input#faq14:not(:checked) ~ .question-container.fourteen .text-question,
section#faqs-support input#faq15:not(:checked) ~ .question-container.fifteen .text-question,
section#faqs-support input#faq16:not(:checked) ~ .question-container.sixteen .text-question,
section#faqs-support input#faq17:not(:checked) ~ .question-container.seventeen .text-question,
section#faqs-support input#faq18:not(:checked) ~ .question-container.eighteen .text-question,
section#faqs-support input#faq19:not(:checked) ~ .question-container.nineteen .text-question {
    color: var(--liana-light-grey);
}

/****************************************** CONTACTS ******************************************/

#help-contacts {
    padding: 5% 10%;
    background-color: var(--liana-black);
    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: 20px;
}

.title-contacts {
    color: var(--liana-green);
    font-size: 48px;
}

.container-contacts {
    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: 14px;
}

.each-contact {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #121212;
    border: 1px solid #3c3c3c;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 20px;
    gap: 6px;
    border-radius: 4px;
}

.each-contact:hover {
    border-color: var(--liana-green);
    background-color: #000;
    cursor: pointer;
}

.each-contact svg {
    height: 40px;
    width: auto;
}
.c-description {
    font-size: 16px;
    color: var(--grey);
    text-align: center;
    font-size: 16px;
    line-height: 109%; /* 17.44px */
    letter-spacing: 0.16px;
}
@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;
}

/****************************************** BANNER SUPPORT ******************************************/

/* Jump menu top */
.invisible {
    position: relative;
    top: -130px;
    visibility: hidden;
}

.jump-menu {
    width: 100%;
    background-color: var(--liana-black);
    padding: 0 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 84px;
    height: 50px;
    border-bottom: 1px solid #000;
    position: sticky;
    top: 84px;
    scroll-behavior: smooth;
    z-index: 1;
}
.jump-menu .each-jump {
    font-size: 16px;
    color: var(--liana-grey);
    text-align: right;
    height: 30px;
    width: auto;
    padding: 2px 10px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (hover: hover) {
    .jump-menu .each-jump:hover {
        color: var(--liana-green);
        background-color: #2f2f2f;
    }
}

/* Banner section */

#banner-support {
    padding: 5% 10%;
    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: 40px;
    background-image: url(/assets/images/liana/bg_community.jpg);
    background-position: center;
    background-size: cover;
}

#banner-support h1 {
    font-weight: var(--light);
    font-size: 96px;
    text-align: center;
    color: #000;
    line-height: 100%;
    letter-spacing: -2.92px;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono';
}

h4 {
    color: var(--grey-darker);
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.24px;
    text-transform: lowercase;
    font-family: 'IBM Plex Mono';
}

.shortcuts-container {
    display: grid;
    /*  grid-template-columns: 1fr 1fr 1fr 1fr; */
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    width: 100%;
}

.shortcut-btn {
    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;
    padding: 40px 30px;
    gap: 20px;
    background-color: #121212;
    border-radius: 82px;
    color: var(--liana-green);
    text-align: center;
    font-family: 'IBM Plex Mono';
    font-size: 28px;
    font-weight: 500;
    line-height: 109%; /* 34.88px */
    letter-spacing: 0.32px;
    text-transform: uppercase;
    transition: all 0.3s;
}
@media (hover: hover) {
    .shortcut-btn:hover {
        color: white;
        /*     color: var(--liana-green); */
        background-color: #000;
        transform: scale(1.05);
    }
}
/* .shortcut-btn img {
  max-height: 40px;
}
.shortcut-btn p {
  font-size: 16px;
  color: var(--liana-grey);
  text-align: center;
} */
/* .link-text {
  font-weight: 500;
  color: grey;
  text-decoration: underline;
  font-size: 16px;
.link-text:hover {
  color: var(--liana-light-grey);
  text-decoration: underline;
} */

/****************************************** RESOURCES ******************************************/

.resources-layout {
    background-color: #0c0c0c;
    padding: 5% 10%;
    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;
    gap: 40px;
}
.title-and-expand {
    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: 10px;
    flex-wrap: wrap;
}
h2 {
    font-size: 34px;
    font-weight: 300;
    color: var(--liana-green);
    line-height: 109%;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}
.text-btn-expand {
    font-size: 16px;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    color: var(--liana-light-grey);
    border: 1px solid var(--liana-light-grey);
    font-weight: 300;
}
@media (hover: hover) {
    .text-btn-expand:hover {
        color: var(--liana-green);
        border: 1px solid var(--liana-green);
        background-color: var(--grey-darker);
    }
}
.resources-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-gap: 20px;
}
.resource-item {
    background-color: var(--liana-black);
    border: 1px solid #373737;
    padding: 20px;
    border-radius: 30px;
    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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    min-width: 180px;
}
@media (hover: hover) {
    .resource-item:hover {
        -webkit-transform: scale(1.03);
        -ms-transform: scale(1.03);
        transform: scale(1.03);
        cursor: pointer;
        background-color: var(--liana-black);
        border-color: var(--liana-green);
    }
    .resource-item:hover .resource-description {
        color: var(--liana-grey);
    }
    .resource-item:hover svg path {
        fill: var(--liana-green);
        opacity: 100%;
    }
}
.resource-item svg {
    height: 40px;
    width: auto;
    margin-bottom: 10px;
}
.resource-item svg path {
    fill: #373737;
    /*   opacity: 100%; */
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/* Text */
h3 {
    font-size: 18px;
    line-height: 105%;
    font-weight: 400;
    color: #e4e4e4;
    margin-bottom: 6px;
}
.resource-description {
    font-size: 14px;
    color: var(--grey);
    line-height: 15px;
    font-weight: 300;
}

/****************************************** ISSUES ******************************************/

.issues-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}
.issue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    border: 1px solid var(--grey-darker);
    background: var(--liana-black);
    padding: 14px 20px;
    transition: all 0.3s;
}
@media (hover: hover) {
    .issue-item:hover {
        -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01);
        cursor: pointer;
        background-color: var(--liana-black);
        border-color: var(--liana-green);
    }
    .issue-item:hover svg path {
        fill: var(--liana-green);
    }
}
.issue-item .flexstart {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}
.issue-item svg {
    height: 20px;
    width: auto;
}
.issue-item svg path {
    fill: var(--grey);
}
.issue-item h6 {
    color: #f4f4f4;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 109%; /* 19.62px */
    letter-spacing: 0.18px;
}

/****************************************** FAQS ******************************************/

section#faqs-support {
    background-color: #0c0c0c;
    padding: 5% 10%;
    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;
    gap: 40px;
}
@media screen and (max-width: 850px) {
    section#faqs-support {
        padding: 60px 20px;
        gap: 30px;
    }
}
.faqs-chips-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 6px;
    flex-wrap: wrap;
}
.chip-faq {
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #303030;
    background: #262626;
    color: var(--Liana-Light-Grey, #e6e6e6);
    font-family: 'IBM Plex Sans';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
@media (hover: hover) {
    .chip-faq:hover {
        color: var(--liana-green);
        background-color: #0c0c0c;
    }
}
.chip-faq.selected {
    border-color: var(--liana-green);
    color: var(--liana-green);
    background-color: #121212;
}
section#faqs-support .faqs-wrapper {
    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;
    border-radius: 20px;
    overflow: hidden;
}
/* Each FAQ Item */

.faq-item {
    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;
}
section#faqs-support .arrow-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}
section#faqs-support .faqs-wrapper .faq-item .arrow_open {
    display: none;
    /*   -webkit-transition: display 1s;
  -o-transition: display 1s;
  transition: display 1s; */
}
/* 
section#faqs-support .faqs-wrapper .faq-item .arrow_close {
   -webkit-transition: display 1s;
  -o-transition: display 1s;
  transition: display 1s;
}
   */
/* Questions */
section#faqs-support .question-container {
    max-height: fit-content;
    background-color: var(--grey-darker);
    padding: 16px 26px;
    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%;
    cursor: pointer;
    border-top: 1px solid #0c0c0c;
}
@media (hover: hover) {
    /*    section#faqs-support .faq-item:hover .text-question {
           color: #00ff66 !important;
    } */
}
section#faqs-support .text-question {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: 16px;
    line-height: 24px;
    color: var(--liana-green);
}

section#faqs-support .faqs-wrapper .faq-item .answer-container {
    width: 100%;
    height: auto;
    background-color: var(--grey-darker);
    /*   -webkit-transition: height 0.2s;
  -o-transition: height 0.2s;
  transition: height 0.2s;
  -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;
    border-left: 1px solid #2e2e2e;
    border-right: 1px solid #2e2e2e;
}
section#faqs-support .faqs-wrapper .faq-item .answer-container .text-answer {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.2px;
    color: var(--liana-light-grey);
    margin-top: 20px;
    /*   -webkit-transition: 0ms;
  -o-transition: 0ms;
  transition: 0ms; */
    line-height: 140%;
}
section#faqs-support input:checked ~ .answer-container {
    padding: 0px 26px 20px;
}
/* Start here FAQ effects */
/* Merging transform, and height properties */
section#faqs-support input#faq1:not(:checked) ~ .answer-container.one,
section#faqs-support input#faq2:not(:checked) ~ .answer-container.two,
section#faqs-support input#faq3:not(:checked) ~ .answer-container.three,
section#faqs-support input#faq4:not(:checked) ~ .answer-container.four,
section#faqs-support input#faq5:not(:checked) ~ .answer-container.five,
section#faqs-support input#faq6:not(:checked) ~ .answer-container.six,
section#faqs-support input#faq7:not(:checked) ~ .answer-container.seven,
section#faqs-support input#faq8:not(:checked) ~ .answer-container.eight,
section#faqs-support input#faq9:not(:checked) ~ .answer-container.nine,
section#faqs-support input#faq10:not(:checked) ~ .answer-container.ten {
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    height: 0;
}
/* Merging display properties for .arrow_open */
section#faqs-support input#faq1:not(:checked) ~ .question-container.one .arrow_open,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two .arrow_open,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three .arrow_open,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four .arrow_open,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five .arrow_open,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six .arrow_open,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven .arrow_open,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight .arrow_open,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine .arrow_open,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten .arrow_open {
    display: block;
}

/* Merging display properties for .arrow_close */
section#faqs-support input#faq1:not(:checked) ~ .question-container.one .arrow_close,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two .arrow_close,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three .arrow_close,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four .arrow_close,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five .arrow_close,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six .arrow_close,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven .arrow_close,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight .arrow_close,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine .arrow_close,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten .arrow_close {
    display: none;
}
/* Merging background-color property */
section#faqs-support input#faq1:not(:checked) ~ .question-container.one,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten {
    background-color: #212121;
}
section#faqs-support input#faq1:not(:checked) ~ .question-container.one .text-question,
section#faqs-support input#faq2:not(:checked) ~ .question-container.two .text-question,
section#faqs-support input#faq3:not(:checked) ~ .question-container.three .text-question,
section#faqs-support input#faq4:not(:checked) ~ .question-container.four .text-question,
section#faqs-support input#faq5:not(:checked) ~ .question-container.five .text-question,
section#faqs-support input#faq6:not(:checked) ~ .question-container.six .text-question,
section#faqs-support input#faq7:not(:checked) ~ .question-container.seven .text-question,
section#faqs-support input#faq8:not(:checked) ~ .question-container.eight .text-question,
section#faqs-support input#faq9:not(:checked) ~ .question-container.nine .text-question,
section#faqs-support input#faq10:not(:checked) ~ .question-container.ten .text-question,
section#faqs-support .faq-item:hover input#faq10:not(:checked) ~ .question-container.ten .text-question {
    color: var(--liana-light-grey);
}

/* FAQ CATEGORIES (OLD DESIGN - KEEP FOR NOW) */
/* 
.faqs-categories {
  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;
  width: 100%;
  border-radius: 0 0 0 20px;
  overflow: hidden;
  gap: 4px;
  max-width: 500px;
}

.category-item {
  max-height: 45px;
  background-color: #212121;
  padding: 10px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  border-bottom: 1px solid #0c0c0c;
}

.category-item .icon.minus {
  display: none;
}

.category-item.active {
  background-color: var(--liana-green);
}
.category-item.active p.text-category {
  color: var(--liana-black);
}

.category-item p.text-category {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--liana-light-grey);
}

.category-item.active .icon.more {
  display: none;
}
.category-item.active .icon.minus {
  display: block;
}

section#faqs-support .icon {
  width: 18px;
  height: auto;
  margin-left: 10px;
} */

/****************************************** CONTACTS ******************************************/

section#help-contacts {
    padding: 5% 10%;
    background-color: var(--liana-black);
    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: 20px;
    background-image: url(/assets/images/liana/bg_community.jpg);
    background-position: center;
    background-size: cover;
}
.title-contacts {
    font-weight: var(--light);
    font-size: 72px;
    text-align: center;
    color: #000;
    line-height: 109%; /* 104.64px */
    letter-spacing: -2.92px;
    text-transform: uppercase;
    font-family: 'IBM Plex Mono';
}
.container-contacts {
    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;
    flex-wrap: wrap;
    gap: 30px;
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1500px;
    margin: 3% auto;
}
.each-contact {
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #121212;
    border: 1px solid #3c3c3c;
    padding: 40px;
    gap: 6px;
    border-radius: 40px;
    width: 100%;
}
.each-contact h5 {
    color: var(--liana-light-grey);
    text-align: center;
    font-family: 'IBM Plex Sans';
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 109%; /* 37.06px */
    letter-spacing: 0.34px;
}
@media (hover: hover) {
    .each-contact:hover {
        border-color: var(--liana-green);
        background-color: #000;
        cursor: pointer;
    }
    .each-contact:hover h5 {
        color: #00ff66;
    }
}
.each-contact svg {
    height: 50px;
    width: auto;
}
.c-description {
    font-size: 20px;
    color: var(--grey);
    text-align: center;
    line-height: 130%; /* 17.44px */
    letter-spacing: 0.16px;
    max-width: 360px;
}

/* Community Box */
.each-contact.community {
    grid-column-start: 1;
    grid-column-end: 3;
    padding: 40px 60px;
}
.each-contact.community .community-wrapper {
    max-width: none;
}
@media (hover: hover) {
    .each-contact.community:hover {
        cursor: default;
        transform: none;
        background-color: var(--liana-black);
    }
}
.each-contact.community h5 {
    font-size: 50px;
    text-align: left;
    color: var(--liana-light-grey);
    border-color: var(--liana-black);
}
.each-contact.community p {
    font-size: 20px;
    color: var(--grey);
    text-align: left;
    line-height: 140%; /* 17.44px */
    letter-spacing: 0.16px;
}
.social-links.community {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    padding: 0;
    margin-top: 24px;
}
.social-links.community svg {
    height: 34px;
    width: auto;
}
.each-contact.community .right-container {
    align-items: flex-start;
    max-width: none;
    gap: 6px;
}
.each-contact.community .left-container {
    max-width: 500px;
}
.each-contact.community .btn-community {
    border: 1px solid var(--grey-darker);
    background-color: var(--liana-black);
    color: #7c7c7c;
}

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

@media screen and (min-width: 2500px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
}
@media screen and (min-width: 2000px) {
    .resources-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 1200px) {
    #banner-support,
    .resources-layout,
    section#faqs-support,
    section#help-contacts {
        padding: 80px 5%;
    }
    .each-contact.community h5 {
        font-size: 40px;
    }
}
@media screen and (max-width: 1000px) {
    #banner-support {
        gap: 20px;
    }
    #banner-support h1,
    .title-contacts {
        font-size: 70px;
    }
    h4 {
        font-size: 20px;
    }
    .shortcuts-container {
        gap: 10px;
        margin-top: 14px;
    }
    .shortcut-btn {
        padding: 30px 10px;
        font-size: 24px;
    }
    .resources-grid {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 16px;
    }
    .each-contact {
        padding: 30px 20px;
    }
    .each-contact.community {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .shortcut-btn {
        padding: 30px 6px;
        font-size: 20px;
    }
    h2 {
        font-size: 26px;
        line-height: 120% !important;
    }
    .resources-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 16px;
    }
    .resource-item {
        padding: 16px;
    }
    section#faqs-support .question-container {
        padding: 12px 16px;
    }
    section#faqs-support input:checked ~ .answer-container {
        padding: 0 16px 12px;
    }
    .container-contacts {
        grid-gap: 14px;
    }
    .each-contact h5 {
        font-size: 28px;
    }
    .title-contacts {
        font-size: 56px;
    }
    .c-description {
        font-size: 16px;
    }
    .each-contact.community h5 {
        font-size: 32px;
    }
    .each-contact.each-contact.community p {
        font-size: 16px;
    }
    .social-links.community {
        margin-top: 4px;
        gap: 4px;
        flex-wrap: wrap;
    }
    .community-wrapper .left-container .btn-community {
        padding: 10px;
    }
}
@media screen and (max-width: 630px) {
}

@media screen and (max-width: 550px) {
    #banner-support h1 {
        font-size: 60px;
    }
    h4 {
        font-size: 18px;
    }
    h3 {
        font-size: 16px;
    }
    .shortcuts-container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        grid-column-gap: 8px;
    }
    .resources-layout {
        gap: 30px;
        padding: 40px 5%;
    }
    .resources-grid {
        grid-template-columns: 1fr;
        grid-gap: 16px;
    }
    .resource-item {
        padding: 10px 16px;
        border-radius: 20px;
    }
    .resource-item svg {
        height: 24px;
    }
    .issue-item {
        padding: 10px 16px;
    }
    .container-contacts {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .each-contact.community {
        grid-column-start: auto;
        grid-column-end: auto;
    }
    .each-contact.community .community-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .each-contact.community .left-container {
        max-width: none;
        width: 100%;
    }
}

/* extra fix */

.only-one {
    grid-column-start: 1;
    grid-column-end: 3;
}
