.column-desk{
    padding: 60px 0px;
}

.list-column-desk{
    display: flex;
    justify-content: center;
    gap: 60px;
}

.items-column-desk{
    width: 25%;
}

.items-column-desk-image{
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.items-column-desk-title{
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.items-column-desk-text{
    font-size: 20px;
}

@media only screen and (max-width: 1920px){
    
    .items-column-desk-image{
        height: 300px;
    }
    
}

@media only screen and (max-width: 1550px){
    
    .items-column-desk-image{
        height: 250px;
    }
    
    .items-column-desk-title{
        font-size: 25px;
    }
    
    .items-column-desk-text{
        font-size: 18px;
    }
    
}

@media only screen and (max-width: 1400px){
    
    .list-column-desk{
        flex-wrap: wrap;
    }
    
    .items-column-desk{
        width: calc(50% - 30px);
    }
    
}

@media only screen and (max-width: 768px){
    
    .items-column-desk{
        width: 100%;
    }
    
    .items-column-desk-image{
        height: 30vh;
    }
    
    
}