.menu__container {
    position: relative;
    width: 250px;
    height: 350px;
    border-radius: 5px;
    transform-origin: center center 0;
    transition: all 0.5s ease-out;
    animation-name: animate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    z-index: 0;
}

.menu__container:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 40px 2px rgba(0, 0, 0, 0.4);
    background: url('../download-center_docs/download_center_images/fake-certificate.png') center/cover;
    transform-origin: center center 0;
    transition: all 0.5s ease-out;
    animation-name: animate;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    transform: perspective(1000px) rotateX(35deg) rotateY(4deg) rotateZ(-30deg);
    overflow: hidden;
    opacity: 0.7;
}

.menu__container:hover {
    cursor:grab;
    z-index: 3;
    
}

.menu__container:hover:before {
   
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg) !important;
    z-index: 3;


}

.menu__container .menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    height: 100%;
    color: black;
}

@media(max-width:950px){
    
    .menu__container {
        width: 200px;
        height: 265px;
    
    }
    }




.slide-up-animation {
    animation: jump_img 0.9s infinite;
    animation-direction: alternate;
}



@keyframes jump_img {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-7px);
    }
}





.xxxmodal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 5;
}

.xxxmodaaal-content {
background-color: #fff;
margin: 15% auto;
padding: 20px;
width: 50%;
border-radius: 5px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
text-align: center;
position: relative;
}

.xxxclose {
color: #f90606;
float: right;
font-size: 28px;
font-weight:bold;
cursor: pointer;
position: absolute;
right: 5px;
top: 0px;
}

.xxxclose:hover {
color: #000;
}

.classic-ceard-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width:950px) {
    .classic-ceard-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .xxxmodaaal-content {
        background-color: #fff;
        margin: 40% auto 0 auto;
        padding: 20px;
        width: 95%;
       
        }

}


@media(max-width:950px) and (orientation:landscape) {
    .classic-ceard-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .xxxmodaaal-content {
        background-color: #fff;
        margin: 100px auto !important;
        padding: 20px;
        width: 95%;
       
        }

}





.anchor-btn:before,
.anchor-btn:after {
box-sizing: border-box;
margin: 0;
padding: 0;
}

.anchor-btn {
position: relative;
display: inline-flex;
align-items: center;
gap: 10px;
color: inherit;
font-size: 18px;
letter-spacing: -0.03em;
padding: 6px;
border-bottom: 1px solid #181717;
cursor: pointer;
text-transform: uppercase;
z-index: 1;
}
.anchor-btn:before {
content: "";
background: linear-gradient(to right, rgb(207 181 200 / 19%) 0%, rgba(176, 212, 191, 0.542) 100%);
position: absolute;
top: 0;
left: 0;
width: 0;
height: 100%;
transition: 0.3s ease-in-out;
z-index: -1;
padding-bottom: 1px;
box-sizing: unset;

}
.anchor-btn:hover:before {
width: 100%;
}

.anchor-btn-white{
color: white;
border-bottom: 1px solid white !important;

}

.anchor-btn-white:before {
content: "";
}