.mediakits-container {
    display: flex;
}

.mediakits-container .box {
    position: relative;
    width: 300px;
    height: 400px;
    overflow: hidden;
}

.mediakits-container .box:not(:first-child) {
    margin-left: 1rem;
}

.mediakits-container .box .imgBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 1.5s ease-in-out;
    background: var(--color-courses);
}

.mediakits-container .box .imgBx .btn.btn-primary {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.mediakits-container .box .btn.btn-primary.download {
    line-height: normal;
    padding: 1rem;
}

.mediakits-container .box:hover .imgBx {
    transform: translateY(-100%);
}

.mediakits-container .box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mediakits-container .box .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 1.5s ease-in-out;
}

.mediakits-container .box .layer.layer1 {
    background: var(--color-courses);
    transform: translateY(100%);
}

.mediakits-container .box:hover .layer.layer1 {
    transform: translateY(-100%);
}

.mediakits-container .box .layer.layer2 {
    background: var( --color-reports);
    transform: translateY(200%);
}

.mediakits-container .box:hover .layer.layer2 {
    transform: translateY(-100%);
}

.mediakits-container .box .contentBx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    transition: 1.5s ease-in-out;
    transform: translateY(300%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.mediakits-container .box:hover .contentBx {
    transform: translateY(0);
}

.mediakits-container .box .contentBx div {
    transition: 2s ease-in-out;
    transform: translateY(400%);
}

.mediakits-container .box:hover .contentBx div {
    transform: translateY(0);
}

.mediakits-container .box .contentBx div h2 {
    color: #fff;
    padding: 1rem;
}

.mediakits-container .box .contentBx div p {
    color: #fff;
    padding: 1rem;
}