.container-box{
    width: 100%;
    height:max-content;
    background-color: #F5F4F9;
}

.quick-access-wrapper{
    margin-top: 30px;


}
.quick-access-container{
    display: flex;
    flex-direction: column;

}
.quick-access-txt{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4a4f55;
}
.quick-access-items{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.quick-access-item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*width: 196px;*/
    /*height: 157px;*/
    background-color: white;
    border-radius: 11px;
    padding: 30px 0;
    box-shadow: 0 4px 10px #0000000a;
    cursor: pointer;
    text-align: center;
    width: 23%;
}
.quick-access-item:hover {
    margin-top: -5px;
}
.quick-access-item img{
    display: block;
    margin: 0 auto 18px auto;
    height: 55px;
    width: auto;
    opacity: 0.7;
    transition: 0.3s all;
}
.quick-access-item span{
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgb(109, 109, 109);

}
.fa-stack-quick-access{
    position: relative;
    right: -280px;
    top: 12px;
}
.quick-access-box{
    display: flex;
    /*flex-wrap: wrap;*/
    /*align-items: center;*/
    margin-right: 88px;
    padding: 60px 0;
}
.fa-stack{
    height: 57px;
    width: 50px;
}
.fa-stack-1x-quick-access{
    position: absolute;
    top: 12px;
    right: 0px;
    color: #fff;
    width: 100%;
    height: 57px;
    font-size: 30px;


}
/*Responsive*/
@media only screen and (max-width: 768px) {
    .quick-access-item{
        width: 50% !important;
    }
    .quick-access-items{
        display: flex;
        justify-content: center;
    }
    .quick-access-box{
        justify-content: center;
    }
}

@media only screen and (max-width: 375px) {
    .fa-stack-quick-access{
        right: -260px;

    }
}