
:root{
    --colorfirst: #b4b91e; 
    --colorsecond: #b4b4b4;
    --white: #fff;
    --black: #000000;
    --verydarkgrey: #191919;
    --darkgrey: #1e1e1e; 
    --grey: #646464;
    --lightgrey: #8c8c8c;
    --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: 'SourceSansPro-Bold';
  font-style: normal;
  src: url('../fonts/SourceSansPro-Bold.otf');
}

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

@font-face {
  font-family: 'SourceSansPro-Light';
  font-style: normal;
  src: url('../fonts/SourceSansPro-Light.otf');
}
 
/*a {
    color: var(--colorfirst) !important;
}*/

a{
    text-decoration: none !important;
    color: inherit !important;
}


h1,
.h1 {
  /*font-family: SourceSansPro-Bold;*/
  font-family: SourceSansPro-Regular;
  font-size: 50px;
  line-height: 60px;
  color: var(--colorfirst);
  font-weight: normal !important;
}
h2,
.h2 {
  font-family: SourceSansPro-Regular;
  font-size: 22px;
  line-height: 30px;
  color: var(--colorfirst);
  font-weight: normal !important;
}
h3,
.h3 {
  font-family: SourceSansPro-Light;
  font-size: 24px;
  line-height: 34px;
  color: var(--lightgrey);
  font-weight: normal !important;
}
h4,
.h4 {
  font-family: NotoSans-bold;
  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: SourceSansPro-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;
}

 
.img-zoom{
    position: relative !important;
    overflow: hidden !important;
}

.img-zoom img{
    max-width: 100% !important;
  
  -moz-transition: transform 3s !important;
  -webkit-transition: transform 3s !important;
  transition: transform 3s !important;
}
.img-zoom:hover img {
   margin: 0 !important;
  -moz-transform: scale(1.06) !important;
  -webkit-transform: scale(1.06) !important;
  transform: scale(1.06) !important;
}

.img-zoom-less img{
    max-width: 100% !important;
  
  -moz-transition: transform 5s !important;
  -webkit-transition: transform 5s !important;
  transition: transform 5s !important;
}
.img-zoom-less:hover img {
   margin: 0 !important;
  -moz-transform: scale(1.05) !important;
  -webkit-transform: scale(1.05) !important;
  transform: scale(1.05) !important;
}

.checkbox_item_custom label{
    font-size: 12px !important; 
    color: white !important;
}
.checkbox_item_custom label p{
    font-size: 12px !important;
    display: inline;
    color: white !important;
}
.checkbox_item_custom label a{
    font-weight: bold;
}

.automatic-form_handler input[type="text"], 
.automatic-form_handler input[type="mail"], 
.automatic-form_handler input[type="email"], 
.automatic-form_handler input[type="number"], 
.automatic-form_handler input[type="password"], 
.automatic-form_handler select, 
.automatic-form_handler 
.checkbox_holder, 
.automatic-form_handler textarea, 
.styled-form input, 
.styled-form select{
   background-color: #1e1e1e !important;
   color: var(--lightgrey) !important;
}

.checkbox_item_custom p,
.checkbox_item_custom .p{
 line-height: unset !important;   
}

@media (max-width : 800px){
    
    h1,
    .h1 {
      /*font-family: SourceSansPro-Bold;*/
      font-family: SourceSansPro-Regular;
      font-size: 30px;
      line-height: 40px;
      color: var(--colorfirst);
      font-weight: normal !important;
    }
    h2,
    .h2 {
      font-family: SourceSansPro-Regular;
      font-size: 18px;
      line-height: 26px;
      color: var(--colorfirst);
      font-weight: normal !important;
    }
    h3,
    .h3 {
      font-family: SourceSansPro-Light;
      font-size: 16px;
      line-height: 24px;
      color: var(--lightgrey);
      font-weight: normal !important;
    }
    
}
 