.eachDownldBx {
    margin-bottom: 20px;

    .downldImgBx {
        width: 100%;
        height: 300px;
        margin-bottom: 20px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        a {
            display: block;
            width: 100%;
            height: 100%;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

    }

    .downldTxt {
        a {
            display: flex;
            justify-content: space-between;

            p {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                width: calc(100% - 50px);
                padding-right: 10px;
                transition: .4s;
                margin-bottom: 0;
            }

            .downldBtn {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                background-color: #E3E3E3;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 5px;
                transition: .4s;
            }

            &:hover {
                p {
                    color: #E30011;
                }

                .downldBtn {
                    background-color: #E30011;

                    img {
                        filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(160%) hue-rotate(267deg) brightness(118%) contrast(100%);
                    }
                }
            }
        }
    }
}

.downloadWrap {
    .row {
        row-gap: 25px;
    }
}

.pagination {
    justify-content: center;
}

/* Responsive */
@media (max-width: 1199px) {
    .eachDownldBx {
        .downldImgBx {
            height: 250px;
            margin-bottom: 12px;
        }

        .downldTxt {
            a {
                .downldBtn {
                    width: 42px;
                    height: 42px;
                    padding: 8px;
                }
            }
        }
    }
}

@media (max-width: 575px) {
    .eachDownldBx {
        .downldImgBx {
            height: 220px;
        }
    }
}