@charset "UTF-8";

/*PRINCIPAIS CORES DO CLIENTE*/
#061C52 / #103fc2 / #6be36f / #404040 / #00cceb  / #FFFFFF / #EFEDEC

/*FONTES DO CLIENTE*/
@font-face {
  font-family: 'poppinsextrabold';
  src: url('../fonts/poppins-extrabold-webfont.woff2') format('woff2'),
       url('../fonts/poppins-extrabold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal
}

@font-face {
  font-family: 'poppinsregular';
  src: url('../fonts/poppins-regular-webfont.woff2') format('woff2'),
       url('../fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/*FORMATAÇÕES DO SITE*/
body, html{
  padding: 0px;
  margin: 0px;
  background-color: #EFEDEC;
  font-family: 'poppinsregular';
}

a:hover{
  color: #6be36f;
  color: #6be36f;
}

::-moz-selection{
  background: #6be36f;
  color: #EFEDEC;
}

::selection{
  background: #6be36f;
  color: #EFEDEC;
}

.pagination .active a,
.pagination .active a:hover{
  background-color: #6be36f;
  border-color: #6be36f;
  color: #EFEDEC;
}

.website{
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
}
/*FINAL FORMATAÇÕES DO SITE*/