.docs-block {
    position: relative;
    overflow: hidden;
    background: var(--accent);
    border-radius: 20px;
    margin-top: 10px;
}

.docs-inner {
    padding-top: var(--sixty);
    padding-bottom: var(--sixty);
    display: flex;
    flex-direction: column;
    gap: var(--fourty);
}

.docs-block .dbTitle {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: var(--h2);
    line-height: 110%;
    color: var(--white);
}

.docs-block .docs-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: var(--twenty);
}

.docs-block .doc {
    background: var(--white);
    border-radius: 15px;
    display: flex;
    min-height: clamp(10rem, 9.225rem + 3.875vw, 13.875rem);
    width: 100%;
}

.docs-block .doc .doc-inner {
    padding: var(--thirty);
    display: flex;
    flex-direction: column;
    align-self: stretch;
    width: 100%;
    height: auto;
    gap: var(--thirty);
    justify-content: space-between;
}

.docs-block .doc .doc-bottom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
    justify-content: space-between;
}

.docs-block .doc .doc-icon {
    height: var(--5040);
    width: var(--5040);
    display: flex;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--stroke);
    align-items: center;
    place-content: center;
}

.docs-block .doc .doc-icon>* {
    max-width: 16px;
    max-height: 16px;
    object-fit: contain;
    display: flex;
    margin: auto auto;
}

.docs-block .doc .doc-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--light-text);
}

.docs-block .doc .doc-name {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: var(--2018);
    line-height: 120%;
    color: var(--main-text);
}

.docs-block .doc:hover {
    background: var(--elements-2);
}

.docs-block .doc:hover .doc-icon {
    background: var(--main-text);
}

.docs-block .doc:hover .doc-icon svg path {
    fill: var(--white);
}

.docs-block .doc:hover {
    color: inherit;
}

@media(max-width:1600px) {
    .docs-block .docs-holder {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
}

@media(max-width:1200px) {
    .docs-block .docs-holder {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media(max-width:850px) {
    .docs-block .docs-holder {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width:630px) {
    .docs-block .docs-holder {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:420px) {
    .docs-block .docs-holder {
        grid-template-columns: 1fr;
    }
}