section.content .support .desktop.items a {
    color: var(--gps-orange);
}

section.content .support .background {
    background: url(../images/poster/support/support.jpg) no-repeat;
    background-size: cover;
    aspect-ratio: 16/9;
    max-width: 80%;
    margin: auto;
    border-radius: 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

section.content .support .desktop.items {
    width: 33%;
    float: right;
    color: var(--gps-font-color);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    height: 90%;
    box-sizing: border-box;
    border-radius: 30px;
    margin-right: 36px;
}

section.content .support .mobile.items {
    width: 100%;
    box-sizing: border-box;
}

section.content .support .mobile.items a {
    color: var(--gps-orange);
}

section.content .faqs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

section.content .faqs .faq-wrapper {
    max-width: 90%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

section.content .faqs .faq-wrapper img {
    max-width: 84%;
}

section.content .faqs .faq-wrapper .faq-lower-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section.content .faqs .faq-wrapper .faq-lower-wrapper {
    width: 70%;
}

@media (max-width: 1800px) {
    section.content .support .background {
        max-width: 100%;
    }

    section.content .support .items {
        display: none;
    }

    section.content .support .mobile {
        display: block !important;
    }
}

@media (max-width: 900px) {
    section.content .faqs .faq-wrapper {
        max-width: 100%;
    }

    section.content .faqs .faq-wrapper .faq-lower-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    section.content .faqs .faq-wrapper .faq-lower-wrapper a {
        width: 50%;
        margin: auto;
    }
}

@media (max-width: 777px) {
    section.content .faqs .faq-wrapper img {
        max-width: 100%;
    }

    section.content .faqs .faq-wrapper .faq-lower-wrapper {
        width: 100%;
    }
}