#page-partners-document {
    .section-search {
        padding-top: 100px;
        padding-bottom: 66px;

        @media (max-width: 992px) {
            padding: 40px 0;
        }
    }

    .product-overview {
        h1 {
            @media (min-width: 992px) {
                font-size: 48px;
            }
        }

        h2 {

            @media (min-width: 992px) {
                font-size: 40px;
            }
        }

        h3 {
            @media (min-width: 992px) {
                font-size: 32px;
            }
        }

        h4 {
            @media (min-width: 992px) {
                font-size: 24px;
            }
        }

    }
}

.document-row {
    gap: 20px 0;

    &:not(:last-child) {
        margin-bottom: 33px;
    }
}

.document-item {
    position: relative;
    z-index: 1;
}

.document-item-image {
    display: block;

    .hover-effect {
        padding-top: 100%;
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 20px;

        img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
    }
}

.document-item-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    background: var(--color-2);
    border: 1px solid var(--color-2);
    border-radius: 10px;
    padding: 10px;
    z-index: 2;
    transition: all 0.3s ease;

    &:hover {
        background: #fff;
        border-color: var(--color-4);

        .document-item-title {
            color: var(--color-4);
        }

        .document-item-icon {
            background-color: var(--color-4);
        }
    }
}

.document-item-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    padding-right: 35px;
    transition: all 0.3s ease;
}

.document-item-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    mask-image: url(../images/icon-download.png);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #fff;
    transition: all 0.3s ease;
}

.Chapter-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 15px;
    margin-bottom: 30px;

    @media (max-width: 992px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.product-detail {
    padding: 50px 0;
    margin-top: 0;

    @media (max-width: 992px) {
        padding: 30px 0;
    }
}

.detail-block {
    >.row {
        gap: 30px 0;
    }
}

.Chapter-list__item {
    border: 1px solid var(--color-2);
    border-radius: 10px;
    padding: 10px;
}

.Chapter-list__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-2);
}

.Chapter-list__title:not(:last-child) {
    margin-bottom: 15px;
}

.aside-register {
    background: var(--color-2);
    border-radius: 20px;
    padding: 30px 25px;
    margin-bottom: 30px;
}

.aside-register__header {
    text-align: center;
    margin-bottom: 25px;
    position: relative;

    &::after {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.5);
        margin-top: 20px;
    }
}

.aside-register__title {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
}

.aside-register__form {
    .form-group {
        margin-bottom: 15px;

        label {
            color: #fff;
            font-weight: 700;
            font-size: 20px;
            margin-bottom: 10px;
            display: block;
        }

        .form-control {
            background: #fff !important;
            border: none !important;
            height: 44px !important;
            border-radius: 10px !important;
            padding: 10px 15px !important;
            width: 100%;
            color: var(--color-4);

            &:focus {
                box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
            }
        }
    }
}

.aside-register__note {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    margin: 25px 0;
}

.btn-download {
    width: 100%;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    cursor: pointer;

    &:hover {
        background: #fff;
        color: var(--color-2);
    }
}

@media (max-width: 992px) {
    .aside-register {
        padding: 20px;
    }

    .aside-register__title {
        font-size: 24px;
    }
}

.Chapter-list__item.active {
    background: var(--color-2);
    color: #fff;
}

.Chapter-list__item.active span {
    color: #fff;
}