
/* font Be Vietnam Pro */
/* @import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* font Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');


* { box-sizing: border-box; }

body,
html {	
    min-width: 100%;
    font-weight: 400;
    font-size: var(--font-size-base);
    line-height: 22px;
    font-family: var(--font-family-base);
    background: var(--background-gray-default-opt2);
    color: var(--text-color);
}


/* style scroll */
body,
html,
.scroll_bar {
  scrollbar-width: thin; /* pode ser 'auto', 'thin' ou 'none' */
  scrollbar-color: #CCCCCC #EEEEEE; /* thumb e track respectivamente */
}


.container {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	width: 90%;
}

.container:before,
.container:after {
  content: '.';
  display: block;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  width: 0;
  height: 0;
}

.container:after {
  clear: both;
}

.container {
  zoom: 1;
}









