.file-list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.file-box {
padding: 24px 42px;
margin-bottom: 50px;
flex: 0 0 451px;
width: 451px;
height: 121px;
border-radius: 4px;
border: 1px solid rgba(212, 213, 214, 1);
transition: all 0.3s ease;
}
.file-list:after {
content: "";
width: 451px;
}
.file-title {
padding-bottom: 10px;
margin-bottom: 10px;
font-size: 20px;
font-weight: 500;
color: rgba(36, 38, 43, 1);
transition: all 0.3s ease;
border-bottom: 1px solid rgba(204, 204, 204, 1);
}
.icon-file-pdf {
color: rgba(212, 48, 48, 1);
font-size: 18px !important;
margin-right: 10px;
}
.file-box:hover {
scale: 1.03;
box-shadow: 4px 4px 24px rgba(191, 201, 219, 0.5);
}
.file-box:hover .file-title {
color: var(--main-color);
}
.file-text {
font-size: 16px;
font-weight: 400;
color: rgba(102, 107, 122, 1);
}
