.direction{
    text-align: center;
}
.direction button{
    display: none;
    font-family: cursive;
    font-weight: bold;
    background-color: #ffffff44;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.5s;
    margin: 0 10px;
}

.direction button:hover{
    background-color: #ffffff;
}

.itemc{
    border-radius: 15px;
    width: 300px;
    /*height: 500px;*/
    background-image: linear-gradient(to top, rgb(71, 167, 71), rgb(169, 236, 169));
    overflow: hidden;
    transition: 0.5s;
    margin: 10px;
}

.itemc .avatar{
    display: block;
    margin: 50px auto 10px;
    /*width: 80%;*/
    height: 40%;
    object-fit:cover;
    border-radius: 20px;
    box-shadow: 0 10px 15px #7e878d;
}

.itemc .contenta{
    padding: 30px;
    font-family: monospace;
}

.itemc .contenta table td{
    color: white;
    font-weight: 600;
    font-family: "Roboto Slab", serif;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #AEC0CE;
}


.tab{
    width:100%;
}
.itemc .nameGroup{
    text-align: center;
    border-bottom: none !important;
}

#list{
    display: flex;
    width: max-content;
}
#formList{
    max-width: 100%;
    overflow: auto;
    margin: 10px auto;
    width: 1280px;
}
#formList::-webkit-scrollbar{
    display: none;
}

@media screen and (max-width:1024px){
    .itemc{
        width: calc(33.3vh - 20px);
    }
}

@media screen and (max-width:700px){
    .itemc .contenta{
        padding: 0px;
        font-family: monospace;
    }
    .itemc{
        width: 55vw;
    }
}


.promo{
    background-image: linear-gradient(to right, #FF512F 0%, #F09819  51%, #FF512F  100%);
    background-size: 200% auto;
    padding: 15px;
    border-radius: 10px;
}

