/***************************************
*************** RESETS GERAIS***********
****************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-family: 'Lato', sans-serif;

}

/***************************************
*************** OVERFLOW ***********
****************************************/
html, body {
    max-width: 100%;
    overflow-x: hidden;
}


a {
    text-decoration: none;
}

img {
    width: 100%;
}

/***************************************
*************** ALINHAMENTO ***********
****************************************/
.all {
    width: 100%;
}

.container {
    width: 1000px;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

/***************************************
*************** COLUNAS ***********
****************************************/
.col-1 {
    flex-basis: 100%;
}

.col-2 {
    flex-basis: 50%;
}

.col-3 {
    flex-basis: 33.33%;
}

.col-4 {
    flex-basis: 25%;
}

.col-5 {
    flex-basis: 20%
}

.col-30 {
    flex-basis: 30%;
}

.col-40 {
    flex-basis: 40%;
}

.col-60 {
    flex-basis: 60%;
}

.col-70 {
    flex-basis: 70%;
}

.col-90 {
    flex-basis: 90%;
}

.col-10 {
    flex-basis: 10%;
}
/***************************************
*************** COLUNAS ***********
****************************************/
.center{
    text-align: center;
}


.white{
    color: #fff;
}
.dark{
    color: #000000;
}
.p-30{
    padding: 30px;
}

.des-flex{
    display: flex;
}
.ds-none{
    display: none !important;
}