:root {
    --movie-width: 15.5vw;
    --movie-height: 200px;
    --arrow-width: 50px;
    --slider-py: 50px;
    --base: #000;
    --primary: #141414;
    --light: #F3F3F3;
    --dark: #686868;
    --basico: #8976ff;
    --intermediario: #03d8d8;
    --avancado: #eea039;
  }
  
  @font-face {
    font-family: 'Sansation Regular';
    src: url(/static/assets/fonts/Sansation_Regular.ttf);
   
  }
  @font-face {
    font-family: 'Sansation Light';
    src: url(/static/assets/fonts/Sansation_Light.ttf);
  }
  @font-face {
    font-family: 'Sansation Light Italic';
    src: url(/static/assets/fonts/Sansation_Light_Italic.ttf);
  }
  @font-face {
    font-family: 'Sansation Italic';
    src: url(/static/assets/fonts/Sansation_Italic.ttf);
  }
  
  @font-face {
    font-family: 'Sansation Bold Italic';
    src: url(/static/assets/fonts/Sansation_Bold_Italic.ttf);
  }
  
  @font-face {
    font-family: 'Sansation Bold';
    src: url(/static/assets/fonts/Sansation_Bold.ttf);
  }
  
  body {
      background-color: #fff !important;
      font-family: "Sansation Regular" !important;
      margin: 0;
      padding: 0;
  }
  
  #sitebanner {
    background-image: url("/static/assets/images/banner1_site.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      padding-top: 0px;
      padding-bottom: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      position:relative;
  }
  
  #sitebanner::after {
    opacity: 0.5;
    background-color: #3371FF;
  }
  
  .sitebanner-overlay:after {
    content: "";
    position: absolute;
    z-index: 1 !important;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  
  .row {
    display: flex;
    padding: 0 10vw;
    z-index: 9;
  }
  
  .coluna.cont1 {
    width: 60%;
  }
  .coluna.cont2 {
    width: 40%;
    display: flex;
    align-items: center;
  }
  h1.sitebanner-heading {
    color: #F9BA40;
    font-family: Sansation Bold;
    font-size: 90px;
    line-height: 1em;
    letter-spacing: -4px;
  }
  .sitebanner-content {
    font-family: Sansation Regular;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }
  
  #sitelogo {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    position: relative;
  }
  
  .imglogo {
    width: 220px;
    padding: 10px 0;
  }
  
  .siteiframe {
    border-style: solid;
      border-color: #F9BA40;
      overflow: hidden;
      border-width: 0px 1px 0px 4px;
      border-radius: 8px 8px 8px 8px;
  }
  
  .sitebloco1 {
    background-color: #000;
    color: #fff;
    padding: 3vw 10vw 6vw 10vw;
    text-align: center;
  }
  
  .sitebloco1 h2 {
    font-family: Sansation Bold;
      font-size: 50px;
      text-align: center;
  }
  .sitebloco1 h3 {
    text-align: center;
    font-size: 1.75rem;
      font-weight: 500;
      line-height: 1.2;
  }
  .sitebloco1 span {
    font-size: 24px;
    font-weight: 400;
      line-height: 1.5;
  }
  
  #sitebloco2 {
    background-image: url("/static/assets/images/sitebanner2.png");
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      position: relative;
      color: #fff;
      padding: 3vw 10vw 6vw 10vw;
  
  }
  
  #sitebloco2::after {
    opacity: 0.5;
    background-color: #3371FF;
  }
  
  
  #sitebloco2 h2 {
    font-family: Sansation Bold;
      font-size: 50px;
      text-align: center;
      z-index: 9;
      position: relative;
  }
  #sitebloco2 span {
    font-size: 24px;
    font-weight: 400;
      line-height: 1.5;
      z-index: 9;
      position: relative;
  }
  
  
  #siterodape {
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  
  .siterodape {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    width: 100%;
  }
  
  .site-email {
    color: #fff;
    font-size: 18px;
    padding: 0 5%;
    text-decoration: none;
  }
  
  .bloco-email {
    width: 50%;
  }
  
  /* width */
  ::-webkit-scrollbar {
    height: 3px;
    background: #000; 
    width: 6px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track { 
    box-shadow: outset 0 0 5px rgb(0, 0, 0); 
    border-radius: 10px;
    background: #000; 
    
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #000; 
    border-radius: 10px;}
    
  ::-webkit-scrollbar-thumb:vertical {
  background: #242424; 
    border-radius: 10px;}
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #000; 
  }
  ::-webkit-scrollbar-corner {display: none;}
  
  @media (max-width:900px) {
    .row {
      flex-direction: column;
  
  }
  h1.sitebanner-heading {
    font-size: 50px;
  }
  .coluna.cont1 {
    width: 100%;
    margin-bottom: 40px;
  }
  .coluna.cont2 {
    width: 100%;
  
  }
  iframe {
    width: 100%;
  }
  .sitebloco1 h2 {
    font-size: 40px;
    text-align: center;
  }
  .sitebloco1 span {
    font-size: 18px;
  }
  #sitebloco2 h2 {
    font-size: 40px;
  }
  #sitebloco2 span {
    font-size: 18px;
  }
  .siterodape {
    flex-direction: column;
    padding: 30px 0;
  }
  .bloco-email {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  }
  
  .btnsite {
    padding: 10px 40px;
    background-color: #eea039;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    text-align: center;
  }