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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/***************************************
*************** OVERFLOW ***********
****************************************/

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

/***************************************
*************** IMAGENS ***********
****************************************/

img {
  max-width: 100%;
  border: none !important;
  vertical-align: middle;
}

embed,
img,
picture,
video {
  max-width: 100%;
  height: auto;
}

/***************************************
*************** ALINHAMENTO ***********
****************************************/

.all {
  width: 100%;
}

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

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

/***************************************
*************** COLUNAS ***********
****************************************/
.ds-none {
  display: none;
}
.ds-flex {
  display: flex;
}
.ds-block {
  display: block;
}
/***************************************
*************** 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-20 {
  flex-basis: 20%;
}
.col-30 {
  flex-basis: 30%;
}
.col-40 {
  flex-basis: 40%;
}
.col-60 {
  flex-basis: 60%;
}
.col-70 {
  flex-basis: 70%;
}

/***************************************
*************** CORES ***********
****************************************/

.color-dark {
  color: #00446C;
}

/***************************************
*************** ALINHAMENTOS ***********
****************************************/
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}
