 
:root{
    --colorfirst: #b4b4b4; 
    --colorsecond: #b4b4b4;
    --white: #fff;
    --black: #000000;
    --verydarkgrey: #191919;
    --darkgrey: #1e1e1e; 
    --grey: #646464;
    --lightgrey: #b4b4b4;
    --verylightgrey: #dcdcdc;
}
.var_use_example {
    background-color: var(--white);
}

.bg_colorfirst {
  background-color: var(--colorfirst) !important;
}
.color_colorfirst {
  color: var(--colorfirst) !important;
}
.bg_colorsecond {
  background-color: var(--colorsecond) !important;
}
.color_colorsecond {
  color: var(--colorsecond) !important;
}
.bg_black {
  background-color: var(--black) !important;
}
.color_black {
  color: var(--black) !important;
}
.bg_verydarkgrey {
  background-color: var(--verydarkgrey) !important;
}
.color_verydarkgrey {
  color: var(--verydarkgrey) !important;
}
.bg_darkgrey {
  background-color: var(--darkgrey) !important;
}
.color_darkgrey {
  color: var(--darkgrey) !important;
}
.bg_grey {
  background-color: var(--grey) !important;
}
.color_grey {
  color: var(--grey) !important;
}
.bg_lightgrey {
  background-color: var(--lightgrey) !important;
}
.color_lightgrey {
  color: var(--lightgrey) !important;
}
.bg_verylightgrey {
  background-color: var(--verylightgrey) !important;
}
.color_verylightgrey {
  color: var(--verylightgrey) !important;
}
.bg_white {
  background-color: var(--white) !important;
}
.color_white {
  color: var(--white) !important;
}

@font-face {
  font-family: 'OpenSans-Regular';
  font-style: normal;
  src: url('../fonts/OpenSans-Regular.ttf');
}

@font-face {
  font-family: 'OpenSans-Bold';
  font-style: normal;
  src: url('../fonts/OpenSans-Bold.ttf');
}

@font-face {
  font-family: 'Abel-Regular';
  font-style: normal;
  src: url('../fonts/Abel-Regular.ttf');
}

@font-face {
  font-family: 'NotoSans-Regular';
  font-style: normal;
  src: url('../fonts/NotoSans-Regular.ttf'); 
}

@font-face {
  font-family: 'NotoSans-bold';
  font-style: normal;
  src: url('../fonts/NotoSans-Bold.ttf'); 
}
 
@font-face {
  font-family: 'NotoSans-light';
  font-style: normal;
  src: url('../fonts/NotoSans-Light.ttf'); 
}

/*a {
    color: var(--colorfirst) !important;
}*/


h1,
.h1 {
  font-family: Abel-Regular;
  font-size: 50px;
  line-height: 60px;
  color: var(--darkgrey);
  font-weight: normal !important;
}
h2,
.h2 {
  font-family: NotoSans-Regular;
  font-size: 40px;
  line-height: 50px;
  color: var(--darkgrey);
  font-weight: normal !important;
}
h3,
.h3 {
  font-family: NotoSans-light;
  font-size: 24px; 
  line-height: 32px;
  color: var(--lightgrey);
  font-weight: normal !important;
}
h4,
.h4 {
  font-family: NotoSans-Regular;
  font-size: 18px;
  line-height: 20px;
  color: var(--lightgrey);
  font-weight: normal !important;
}
h5,
.h5 {
  font-family: RobotoSlab-Bold;
  font-size: 24px;
  line-height: 32px;
  color: var(--lightgrey);
  font-weight: normal !important;
}
h6,
.h6 {
  font-family: RobotoSlab-Bold;
  font-size: 18px;
  line-height: 24px;
  color: var(--lightgrey);
  font-weight: normal !important;
}
h7,
.h7 {
  font-family: OpenSans-Bold;
  font-size: 80px;
  line-height: 80px;
  color: var(--white);
  font-weight: normal !important;
}

h8,
.h8 {
  font-family: Bitter-Regular;
  font-size: 20px;
  line-height: 28px;
  color: var(--lightgrey);
  font-weight: normal !important;
}

h12,
.h12 {
  font-family: Raleway-Regular;
  font-size: 18px;
  line-height: 28px;
  color: var(--white);
  font-weight: normal !important;
}

h13,
.h13 {
  font-family: OpenSans-Regular;
  font-size: 16px;
  line-height: 16px;
  color: var(--darkgrey);
  font-weight: normal !important;
}

p,
.p {
  font-family: NotoSans-Regular;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey);
  font-weight: normal !important;
}
.row > .h1 *,
.row > .h2 *,
.row > .h3 *,
.row > .h4 *,
.row > .h12 * {
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-style: inherit !important;
  color: inherit !important;
}
/* fim de estilos pré definidos */

.loadingwrapper{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(255,255,255,0.8);
    z-index: 99999;
}


.checkbox_item_custom label{
    font-size: 12px !important; 
}

.bold_grey_link{
    text-decoration: none;
    color: var(--lightgrey);
    font-weight: bold;
}
.bold_grey_link:hover{
    text-decoration: none;
    color: var(--grey);
    
}

.verProjectos:hover{
    font-weight: bold !important;
}

@media (max-width: 575px) {
    h1,
    .h1 {
      font-size: 32px;
      line-height: 42px;
    } 
    
    h2,
    .h2 {
      font-size: 28px;
      line-height: 36px;
    }
    h3,
    .h3 {
      font-size: 20px; 
      line-height: 28px;
    }
}