.nos-solutions{
    padding:50px 80px 80px 80px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    & h1{
        color:var(--black);
        font-size:5rem;
        font-family:'Didot';
        width:100%;
    }
}

.nos-solutions-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.solutions-item{
    background-color:var(--white);
    box-shadow: rgba(0, 0, 0, 0.061) 0px 0px 20px;
    width:23%;
    margin:15px;
    padding: 30px;
    border-radius: 20px;
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    & img{
        width:150px;
        height:150px;
        border-radius:100%;
        opacity:50%;
        transition:opacity 0.3s;
        object-fit: cover;
    }
    & h3{
        font-family:'ProximaNovaSemiBold';
        color:var(--orange);
        font-size:1.3rem;
    }
    & p{
        font-family: 'ProximaNovaRegular';
        color:var(--black);
        font-size:1rem;
        text-align:center;
    }
    & button{
        width:200px;
        & a{
            font-size:1rem;
        }
    }
}

.item-img{
    background-color:var(--beige);
    border-radius:100%;
}

.solutions-item:hover img{
    opacity:100%;
    transition:opacity 0.3s;
}

@media screen and (max-width:1280px){
    .nos-solutions-container{
        gap:0;
    }

    .solutions-item{
        width:22%;
    }
}

@media screen and (max-width:1024px){
    .nos-solutions{
        padding: 50px 80px;
        & h1{
            font-size:4rem;
        }
    }

    .solutions-item{
        width:35%;
        padding:20px;
        & h3{
            font-size:1.1rem;
            text-align:center;
        }
        & p{
            font-size:0.9rem;
        }
        & img{
            width:120px;
            height:120px;
        }
        & button{
            padding:7px 20px;
            & a{
                font-size:0.9rem;
            }
        }
    }
}

@media screen and (max-width:768px){
    .nos-solutions{
        padding: 50px;
        & h1{
            font-size:3.5rem;
        }
    }

    .solutions-item{
        width:34%;
        margin:10px;
        & h3{
            font-size:1rem;
        }
        & p{
            font-size:0.8rem;
        }
        & img{
            width:100px;
            height:100px;
        }
        & button{
            width:150px;
            & a{
                font-size:0.8rem;
            }
        }
    }
}

@media screen and (max-width:480px){
    .nos-solutions{
        padding: 50px 30px;
        & h1{
            font-size:3rem;
            line-height:1;
        }
    }

    .solutions-item{
        width:100%;
        margin:10px;
        gap:15px;
        & h3{
            font-size:0.9rem;
        }
    }
}