@media (min-width: 1250px){
    .files-container{
        width: 1240px;                       
    }    
    .title{
        width: 1240px;
        font-size: 26px;
    }    
}
@media (min-width: 1024px) and (max-width:1250px){
    .files-container{
        width: 90%;        
    }    
    .title{
        width: 90%;
        font-size: 26px;
    }
}
@media (max-width: 1024px){
    .files-container{
        width: 90%;        
    }    
    .title{
        width: 90%;
        font-size: 22px;
    }
}
.title{
    font-weight: 500;    
    line-height: 130%;
    color: #232F4F;
    margin: 50px 0 30px 0;
}

.files-row-title{
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: #232F4F;
}
.files-row{
    display: flex;
}
.files-row{
    margin: 40px 0 60px 0;
}
.files-row{
    gap: 65px;
}   
@media (max-width: 800px){
    .files-row{
        flex-direction: column;
    }
    .file{
        width: 100%;
    }
}
@media(min-width: 800px){
    .file{
        width: 30%;
    }
}
.file{
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.file > img{
    width: 50px;
}
.file > p{
    font-family: 'LatoItalic';
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #232F4F;
}