
.docs__items {
    display: flex;
    row-gap:1.5rem;
    column-gap:0.5rem;
    flex-wrap: wrap;
    --gap: 0.5rem;
    --columns: 4;
    gap: var(--gap);
}
.docs__item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.5rem;
    width: calc((100% / var(--columns)) - var(--gap) + (var(--gap) / var(--columns)));
}

.docs__item-image {width: 100%;height: 0;padding-top: 100%;display: inline-block;position: relative}

.docs__item-image img {
    width: 100%;
    height: 100%;object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
}

.docs__item-title {
    margin: 0;
    color: #072626;
    font-family: "Inter Tight";
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
}
.docs__item-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    text-decoration: none;
}
.docs__item-button img {
    display: none;
}
@media (min-width: 768px) {
    .docs__item {
        gap: 1rem;
    }
    .docs__item-title {
        font-size: 20px;
    }
    .docs__item-button {
        margin-top: auto;
    }
    .docs__item-button img {
        display: block;
    }
}
@media (min-width: 1200px) {
    .docs__item {
        padding: 0.75rem;
    }
}

body .lg-backdrop {
    background: rgba(7, 38, 38, 0.6);
}

body .lg-toolbar {
    margin: 2.5rem 0 0;
    padding-right: 1rem;
}
body .lg-toolbar .lg-icon {
    width: 3rem;
    height: 3rem;
    padding: 0;
}
body .lg-toolbar .lg-close::after {
    content: "";
    background: url("/local/templates/inno-2025/images/svg/lg-close.svg") no-repeat center center;
    width: 3rem;
    height: 3rem;
    display: block;
}
@media (min-width: 768px) {
    body .lg-toolbar {
        margin: 2.5rem 0 0 0;
        padding-right: 2.5rem;
    }
}

body .lg-outer .lg-next {
    padding: 0;
    background: transparent;
}
body .lg-outer .lg-next:before {
    content: "";
    background: url("/local/templates/inno-2025/images/svg/lg-next.svg") no-repeat center center;
    width: 3.75rem;
    height: 3.75rem;
    display: block;
    border-radius: 10px;
}
body .lg-outer .lg-prev {
    padding: 0;
    background: transparent;
}
body .lg-outer .lg-prev:after {
    content: "";
    background: url("/local/templates/inno-2025/images/svg/lg-prev.svg") no-repeat center center;
    width: 3.75rem;
    height: 3.75rem;
    display: block;
    border-radius: 10px;
}
body .lg-outer .lg-thumb-outer {
    background: transparent;
}
@media (max-width: 768px) {
    body .lg-outer .lg-next {
        top: 90%;
    }
    body .lg-outer .lg-prev {
        top: 90%;
    }
}

body .lg-outer .lg-object {
    height: 100%;
}

.faq--group {margin: 30px 0 16px 0;width: 100%}
.faq--group-title {background-color: var(--main);padding:10px 16px;color:#fff;border-radius: 12px;margin-bottom: 10px}

@media (max-width: 1024px) {
    .docs__items {
        --columns: 3;
    }
}

@media (max-width: 767px) {
    .docs__items {
        --columns: 2;
    }
}

@media (max-width: 400px) {
    .docs__items {
        --columns: 1;
    }
}

.faq--group-desc {margin: 10px 0;}