/*RODAPE*/
.rodape {
    display: flex;
    justify-content: center;
}

.rodape .maincontainer {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
}

.rodape__col {
    width: 25%;
    display: flex;
    flex-flow: column;
    /* justify-content: center; flex-flow: row wrap; */
    align-items: flex-start;
    margin: 40px 0;
    padding: 0 5.8%;
    border-right: 1px solid #E9E9E9;
}

.rodape_logo{align-items: center; padding:1%;     flex-flow: inherit;}
.rodape_logo img{max-width:100%;}


.rodape__col:last-child {
    border-right: none;
}

.rodape__logo {
    align-self: center;
}

.rodape__logo img {
    display: block;
    width: 100%;
}

.rodape__col p{
    width: 100%;
    color: #5C5C5C;
}

.rodape__link {
    width: 100%;
    color: #5C5C5C;
    transition: .5s ease;
}

.rodape__link:hover {
    padding-left: 10px;
}

.rodape__col i {
    font-size: 20px;
	margin-right: 5px;
}

.rodape__title {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    color: #000;
    position: relative;
}

.rodape__title::after {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    height: 2px;
    width: 25%;
}

.rodape__assinatura {
    display: flex;
    justify-content: center;
    border-top: 1px solid #E9E9E9;
}

.rodape__assinatura .maincontainer {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.rodape__assinatura img {
    display: block;
}
/*END RODAPE*/

@media (max-width: 1600px) {
    .rodape__col {
        padding: 0 3%;
    }
}

@media (max-width: 720px) {
    .rodape__col {
        width: 100%;
        margin: 20px 0;
		display: grid;
		text-align:center;
    }

    .rodape__col p {
        text-align: center;
    }

    .rodape__link {
        text-align: center;
    }

    .rodape__title::after {
        left: calc(50% - 12.5%);
    }

    .rodape__assinatura .maincontainer {
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
    }
}