.downloading {
    position: relative;
    overflow: hidden;
}

.downloading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}
.downloading::before {
    content: "Waiting download";
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,20px);
    z-index: 999;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.download-picture-iconfont-box {
    position: absolute;
    display: flex;
    justify-content: end;
    align-items: end;
    top: 0;
    height: 100%;
    background: #000;
    width: 100%;
    transition-duration: .5s;
    opacity: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 80%), rgb(255 255 255 / 9%));
}

.download-picture-image-box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

img.download-picture-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.download-picture-image-once {
    width: 100%;
    padding-top: 66.7%;
    position: relative;
}

.download-picture-image-once-box {
    width: 48%;
    transition: 0.5s;
    margin-bottom: 4%;
    box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0 #0000, 0 0.3125rem 0.9375rem 0 rgba(24, 26, 29, .1);
}
#presskit-container{
    margin: 0 auto;
    max-width: 1200px;
    padding: var(--advc-container-padding-top) var(--advc-container-padding-right) var(--advc-container-padding-bottom) var(--advc-container-padding-left);
    width: 100%;
}
.download-picture-title{
    font-size: 25px;
    padding-bottom: 12px;
    margin-bottom: 40px;
    border-bottom: 1px solid #000;
}
.download-picture-iconfont-box:hover{
    opacity: 1;
}
i.download-picture-iconfont {
    padding: 0 10px 10px 0;
}
.download-picture-image-once-box:hover{
    transform: translateY(-10px);
}
div#presskit-container {
            padding: 0 20px;
        }
@media screen and (max-width:749.99px){
    .download-picture-image-once-box{
        width: 100%;
    }
    .download-picture-title{
        font-size: 18px;
    }
}