#slider {
    margin-bottom: 4.5rem;
}

.items-container {
    max-width: 1350px;
    width: 100%;
    margin: 0 auto 7rem;
    background-image: url("../images/bg1.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
}

.items-container .toolbox-title {
    width: 90%;
    margin: auto;
}

.items-container .items {
    width: 80%;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    column-gap: 2.5rem;
    row-gap: 4rem;
}

.card {
    height: 26rem;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 15px;
    border-radius: 17px;
    overflow: hidden;
    padding-bottom: 1rem;
}

.card .video {
    width: 100%;
    height: 13rem;
    margin-bottom: 0.1rem;
    position: relative;
}
.card .video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card .video::after {
    content: "";
    background-color: rgba(65, 78, 98, 75%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}

.card .video .play-btn {
    background-color: transparent;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #fff;
    position: absolute;
    z-index: 50;
    top: 44%;
    right: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 1px;
}

.card .video .play-btn i {
    color: #fff;
}

.card .video img {
    width: 100%;
    height: 100%;
}

.card .scoring {
    padding: 0.5rem 0.8rem 0;
    display: flex;
    align-items: center;
    justify-content: end;
    column-gap: 2px;
}

.card .title {
    border: none;
    padding: 0.3rem 0.8rem 0;
    font-size: 14px;
    color: rgb(46, 46, 46);
    font-family: var(--semibold-font);
    height: 3rem;
    display: flex;
    align-items: center;
}

.card .price {
    width: 91%;
    margin: 8px auto 0.4rem;
    padding-bottom: 14px;
    font-family: var(--bold-font);
    color: var(--primary-color);
    font-size: 14px;
    border-bottom: 2px dotted #acacac;
}

.card .tool-info {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card .tool-info span {
    display: inline-block;
    color: #acacac;
    margin-left: 0.2rem;
    font-size: 13.5px;
}

.pagination {
    column-gap: 0.5rem;
    justify-content: center;
    margin-bottom: 7rem;
}

.page-item.disabled .page-link {
    background-color: #c4cdd5;
}

.page-item.disabled .page-link i {
    color: #fff;
}

.page-item.active .page-link {
    color: #4200ff;
    border-color: #4200ff;
    background-color: #fff;
}

.page-link {
    color: #212b36;
    font-family: var(--bold-font);
    border-color: #dfe3e8;
    border-radius: 6px;
    width: 2.3rem;
    height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-link i {
    color: #c4cdd5;
    font-size: 13px;
}

@media screen and (max-width: 1050px) {
    .items-container .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .items-container .items {
        grid-template-columns: repeat(1, 1fr);
        row-gap: 2.2rem;
    }
}
