/*
* **********************************
* ################################## ESTILOS DE LISTING
* **********************************
*/


/*
========================
======================== ALTERA HEADER
========================
*/

.main-header {
    -webkit-box-shadow: 0px 2px 25px 0px rgba(61, 66, 75, 0.15);
    -moz-box-shadow: 0px 2px 25px 0px rgba(61, 66, 75, 0.15);
    box-shadow: 0px 2px 25px 0px rgba(61, 66, 75, 0.15);
}

.main-header-nav{
    border-bottom: transparent !important;
}

.main-header .content{
    padding: 0 !important;
}

.main-header-nav-item > a {
    padding: 30px 15px !important;
}

@media (max-width: 1600px) {

    .main-header-nav-item > a {
        font-size: 0.875em;
        padding: 30px 10px !important;
    }
}


/*
========================
======================== SOLUTIONS
========================
*/

.solutions {
    margin-top: 80px;
}

.solutions-header {
    text-align: center;
    z-index: 9;
    position: relative;
    padding: 60px 0 80px 0;
}

.solutions-header h1 {
    font-size: 2em;
    color: #293847;
    font-weight: 300;
    line-height: 1.125;
    white-space: pre-line;
}

.solutions-header h1 strong {
    font-weight: 600;
}

.solutions-item {
    margin-bottom: 160px;
    height: 340px;

    background-color: #f1f2f2;

    padding: 50px 30px;

    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media (max-width: 1024px) {
    .solutions-item {
        margin-bottom: 40px;
        height: auto !important;
        flex-direction: column;
        padding: 30px;
    }
}


.solutions-item-cover {
    width: 25%;
    margin-top: -90px;
}

@media (max-width: 1024px) {
    .solutions-item-cover {
        width: 100%;
        margin-top: 0;
    }
}

.solutions-item-cover img {
    min-width: 100%;
    height: 420px;
    object-fit: cover;

    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.solutions-item-header {
    flex-basis: 70%;
}

@media (max-width: 1024px) {
    .solutions-item-header {
        width: 100%;
        text-align: center;
        margin-top: 30px;
    }
}

.solutions-item-header h1 {
    font-size: 1.625em;
    line-height: 1.385;
    font-weight: 600;
}

.solutions-item-header p {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
    margin-top: 10px;
}

.solutions-item-header .btn {
    background-color: #a8cf45;
    margin-top: 20px;
    display: inline-block;
    padding: 20px;
    font-weight: 600;
}

.solutions-item-header .btn:hover {
    background-color: #90b72c;
}


