main .pdf-menu-container{
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 30px;
}
.pdf-card{
    display:flex;
    justify-content: space-between;
    background-color: var(--color-green);
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px var(--color-green);
    min-width: 360px;
}
.pdf-card .pdf-options{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.pdf-card .pdf-options a{
    display: flex;
}
.pdf-card .pdf-options img{
    height: 40px;
    width: 100px;
    padding: 10px 40px;
    box-sizing: border-box;
    cursor: pointer;
}
.pdf-card .pdf-options img:hover{
    filter: drop-shadow(0 0 5px var(--color-white));
    transform: scale(1.05);
    transition: 0.3s;
}
.pdf-card h2{
    text-align: center;
    color: var(--color-white);
    font-size: 16px;
    height: 40px;
    overflow: hidden;
    margin: 10px;
}
.pdf-card .embed-container{
    display: none;
    flex-direction: column;
    align-items: end;
    flex-grow: 1;
    position:fixed;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border-radius: 5px;
    max-width: 1200px;
    height: calc(100dvh - 100px);
    background-color: var(--color-gray);
    border: var(--color-green) 2px solid;
    z-index: 2;
    box-shadow: 0 0 10px var(--color-white);
    transform: translate(0);
}
.pdf-card .embed-container embed{
    width: calc(100% - 60px);
    height: calc(100% - 60px);
    margin: 0 30px 30px;
}
.pdf-card .embed-container img{
    height: 60px;
    width: 60px;
    padding: 17px;
    margin: 13px 13px 0 0;
    box-sizing: border-box;
}
.pdf-card .embed-container img:hover{
    filter: drop-shadow(0 0 5px var(--color-white));
    transform: scale(1.05);
    transition: 0.3s;
}

.visible-flex-pdf{
    animation-name: swipe-right;
    animation-duration: 0.5s;
    animation-delay: 0s;
}
.animation{
    animation-name: swipe-left;
    animation-duration: 0.5s;
    animation-delay: 0s;
}

@media (max-width: 500px) {
    .pdf-card{
        min-width: 0 !important;
    }
}

@keyframes swipe-right {
    0% {
        will-change: transform;
        opacity: 0;
        transform: translate(-200%);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }
    100% {
        opacity: 1;
        transform: translate(0);
    }
}
@keyframes swipe-left {
    0% {
    will-change: transform;
    opacity: 1;
    transform: translate(0);
    transition: opacity 0.5s ease-in, transform 1s ease-in;
    }
    100% {
    opacity: 0;
    transform: translate(+200%);
    }
}