.list-solutions{
    display: flex;
    flex-wrap: wrap;
}

.items-solutions{
    flex-basis: 50%;
    height: 45vh;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.items-solutions-shadow{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
}

.items-s-content{
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    top: 45%;
    left: 50%;
}

    .items-s-title{
        font-size: 37px;
        text-transform: uppercase;
        font-weight: bold;
        margin-bottom: 10px;
        width: 430px;
        color: #0B52A0;
        line-height: 40px;
    }
    
    .items-s-desk-title{
        color: #67696B;
        font-size: 20px;
        width: 430px;
        
    }
    
    .items-s-title.white-title{
        color: #FFF;
        text-align: center;
    }
    
    .items-s-navigation{
        display: flex;
        margin-top: 30px;
        text-align: center;
        justify-content: center;
    }
    
    .items-s-navigation .button{
        margin-right: 10px;
        background-color: #fff;
        color: #0B52A0;
        border: 2px solid rgba(0,0,0,0);
    }
    
    .items-s-navigation .button:hover{
        background-color: #FF9B26;
        color: #fff;
    }
    
    .items-s-navigation a{
        width: calc(50% - 7px);
    }
    
    .items-s-navigation .button:nth-child(2n){
        margin-right: 0px;
    }
    
        .fon-buttons{
            display: flex;
            margin-top: 30px;
            text-align: center;
            justify-content: center;
            width: 100%;
        }
    
        .fon-buttons .button{
            color: #fff;
            width: calc(50% - 7px);
        }
        
        .fon-buttons a .button{
            width: 100%;
        }
        
        .fon-buttons .button:hover{
            opacity: 0.8;
        }
        
        
@media only screen and (max-width: 1200px){

    .items-solutions{
        height: 35vh;
    }
    
    .items-s-title{
        font-size: 30px;
    }
    
    .items-s-content{
        width: 60%;
    }
    
    .items-s-title{
        width: 100%;
    }
    
    .items-s-desk-title{
        width: 100%;
        font-size: 18px;
    }
    
}


@media only screen and (max-width: 768px){
    
    .items-s-content{
        top: 50%;
        width: 80%;
    }
    
    .items-s-title{
        font-size: 24px;
    }
    
    .items-s-desk-title{
        font-size: 16px;
    }
    
    .items-solutions{
        flex-basis: 100%;
        height: 50vh;
    }
    
    .fon-buttons{
        gap: 10px;
    }
    
}