#contentSolutions
{
    margin: 50px 0 0 0;
}

.solutionsElement
{
    margin: 25px 0;
}

#contentSolutions .solutionsLeft
{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#contentSolutions .solutionsLeft .right
{
    width: 400px;
    margin: 10px 0 0 0;
}


#contentSolutions .solutionsRight
{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#contentSolutions .solutionsRight .left
{
    width: 400px;
    margin: 10px 0 0 0;
}


        
#contentSolutions img{
    height: 300px;
    border-radius: 25px;
}
#contentSolutions h2{
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 10px;
}
#contentSolutions p{
    color: #fff;
    font-size: 1.5em;
    margin: 0 0 15px 0;
}

#contentSolutions a {
    text-decoration: none;
    font-size: 18px;
    color: #e1e1e1;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

#contentSolutions a:focus,
#contentSolutions a:hover {
    color: #fff;
}

#contentSolutions a:focus:after,
#contentSolutions a:hover:after {
    width: 100%;
    left: 0%;
}

#contentSolutions a:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}

@media(max-width:970px)
{
    .solutionsElement
    {
        margin: 70px 0;
    }
    #contentSolutions .solutionsLeft
    {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }
    #contentSolutions .solutionsRight
    {
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column-reverse;
    }
}

@media(max-width:550px)
{
    #contentSolutions img{
        height: 250px;
        border-radius: 25px;
    }
}
@media(max-width:460px)
{
    #contentSolutions img{
        height: 200px;
        border-radius: 25px;
    }

    #contentSolutions h2 {
        color: #fff;
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    #contentSolutions p {
        color: #fff;
        font-size: 1.2em;
        margin: 0 0 15px 0;
    }
    #contentSolutions .solutionsRight .left {
        width: 340px;
    }
    #contentSolutions .solutionsLeft .right {
        width: 340px;
    }
}
@media(max-width:415px)
{
    #contentSolutions img{
        height: 180px;
        border-radius: 25px;
    }

    #contentSolutions h2 {
        color: #fff;
        font-size: 1.5em;
        margin-bottom: 10px;
    }
    #contentSolutions p {
        color: #fff;
        font-size: 1.2em;
        margin: 0 0 15px 0;
    }
    #contentSolutions .solutionsRight .left {
        width: 240px;
    }
    #contentSolutions .solutionsLeft .right {
        width: 240px;
    }
}