.list_soluctions{
    width: 100%;
    height: 100%;
}
.solutions{
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,231,255,1) 0%, rgba(0,231,255,1) 100%, rgba(255,255,255,1) 100%, rgba(255,255,255,1) 100%);
}
.list_solutions ul{
    display: flex;
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    justify-content: space-between;
}
.list_solutions ul li{
    width: 48.45%;
    margin-bottom: 6.2rem;
}
.list_solutions h1{
    font-weight: 300;
    font-size: 7.3rem;
    line-height: 8.7rem ;
    text-align: left;
    color: #09252f;
    padding: 1rem 0 9rem;
}
.list_solutions h1 strong{
    font-weight: bold;
}
.list_solutions .list_solution{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.list_solutions .list_solution li{
    width: 31%;
    height: 39.8rem;
    background-color: #FFFFFF;
    margin: 1.1%;
    margin-bottom: 6.3rem;
    position: relative;
    border-radius: 2rem;
    box-shadow: 0.7rem 0.7rem 1rem 0rem rgba(0,0,0,0.4);
}
.list_solutions .list_solution li a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2.6rem;
}
.list_solutions .list_solution li h2{
    font-weight: bold;
    font-size: 2.4rem;
    line-height: 3rem;
    text-align: left;
    color: #000;
    padding-bottom: 2.3rem;
    margin-top: 2.7rem;
}
.list_solutions .list_solution li p{
    font-weight: 300;
    font-size: 1.7rem;
    line-height: 2.5rem;
    text-align: left;
    color: #7d7d7d;
    width: 100%;
}
.list_solutions .list_solution li .border{
    width: 5.5rem;
    height: 5.5rem;
    border: 0.2rem solid #00D8FF;
    border-radius: 50%;
    position: absolute;
    top: -2.5rem;
    transition: all 0.5s linear;
    background-color: #FFFFFF;
}
.list_solutions .list_solution li:hover .border{
    background-color: #00D8FF;;
    border: 0.2rem solid #00D8FF;
}
.list_solutions .list_solution li .border svg{
    position: absolute;
    bottom: 0rem;
    padding: 1rem;
    width: 100%;
    height: 100%;
    transition: all 0.5s linear;
}
.list_solutions .list_solution li .border svg *{
    fill: #00D8FF;
}
.list_solutions .list_solution li:hover .border svg *{
    fill: #FFFFFF;
}