/*
  BANNER v 1.1;
  05/2023;
  João Diogo Pereira;
*/

/* .banner{
  margin-top: 86px;
} */

.banner__item{  
  height: calc(75vh - 86px);
  height: calc(75svh - 86px);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner__item__title{
  font-family: var(--primaryTextFont);
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 3.82px;
  text-align: left;
  color: #fff;
}

.banner__item__content{
  font-family: var(--primaryTextFont);
  font-size: 20px;
  font-weight: normal;
  font-stretch: normal;
  font-style: italic;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff;
}

.banner__item__content *:last-child{
  margin-bottom: 0;
}

.banner__item__video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

.banner__item__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  z-index: 0;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .1), rgba(0, 0, 0, .1));
}

.banner__item__container {
  /* position: relative; */
  z-index: 1;
}

.banner__assinatura {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: rgb(255, 255, 255, 0.3);
  width: fit-content;
  font-style: italic;
}

.banner__item__content h3, .banner__item__content h3 *{
  font-size: 30pt;
  margin-bottom: 1.5rem;
}

@media only screen and (max-width: 767px){
  .banner__item__content, .banner__item__title{
    font-size: 16px;
  }

  .banner__item__content h3, .banner__item__content h3 *{
    font-size: 22px;
    margin-bottom: 1rem;
    line-height: 1;
  }
}

@media only screen and (max-width: 767px) and (orientation: landscape){
  .banner__item{
    height: auto;
    min-height: calc(100svh - 75px);
  }
}