.access-request-section{
    margin-block: 5rem 7.5rem;
    display: flex;
    flex-direction: column;
    gap:2rem;
}
.access-box {
    display: flex;
    padding: 2.5rem 2rem;
    align-items: center;
    gap: 0.625rem;
    border-radius: 1.5rem;
    background: var(--Tertiary, #FBBF24);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.access-box.visible {
    opacity: 1;
}
.access-box h4{
    color: var(--Gray, #262626);
    text-align: center;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.access-box .number{
    color: var(--Primary, #1A7EEE);
    text-align: right;
    font-size: 4.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
/* تنظیم opacity اولیه */
.access-box.initial-opacity-100 {
    opacity: 1;
}
.access-box.initial-opacity-70 {
    opacity: 0;
}
.access-box.initial-opacity-40 {
    opacity: 0;
}

/* انیمیشن موجی */
@keyframes wave {
    0% {
        opacity: 0; /* برای مورد دوم */
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 1;
    }
}

.access-box.wave-animation {
    animation: wave 2s ease-in-out forwards;
}
.notification-section{
    margin-block: 7.5rem;
    padding-block: 2rem;
}
.submit-access-request-section{
    margin-block: 7.5rem;
    display: flex;
    flex-direction: column;
    gap:2rem
}
form{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
form label{
    color: var(--Gray, #262626);
    text-align: justify;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
form select{
    display: flex;
    height: 3.5rem;
    padding: 0rem 78.8125rem 0rem 1.5rem;
    align-items: center;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: var(--Medium, 1rem) !important;
    border: 0.5px solid var(--Gray, #262626);
}
.approved-requests-section{
    margin-block: 7.5rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.approved-request-card{
    width: 100%;
    position: relative;
    padding-top: 56.87%;
    z-index: 0;
    border-radius: var(--Large, 1.5rem);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
.approved-request-card:after{
    content:'';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 33.62%, #000 106.37%);
}
.approved-request-card .title{
    color: #FFF;
    z-index: 2;
    position: absolute;
    bottom: -1.5rem;
    right: 3rem;
    transition: all .3s ease;
    opacity: 0;
}
.approved-request-card:hover .title{
    bottom: 1.5rem;
    opacity: 1;
}

@media only screen and (max-width: 720px) {
    p{
        font-size: 1rem;
    }
    .access-box h4{
        font-size: 1rem;
    }
    .notification-section h4{
        color: var(--Gray, #262626);
        text-align: right;
        font-size: 1rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    .notification-section h5{
    color: var(--Gray, #262626);
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    }
    .approved-requests-section,.submit-access-request-section,.notification-section{
        margin-block: 5rem;
        gap: 1.5rem;
    }
    .access-request-section{
        margin-block: 2.5rem 5rem;
    }
}
