/*
  BANNER v 1.1;
  05/2023;
  João Diogo Pereira;
*/

.banner__item{
  min-height: 100vh;
  min-height: 100svh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner__item__title{
  font-family: var(--primaryTextFont);
  font-size: 55px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.23;
  letter-spacing: 3.82px;
  color: var(--primaryColor);
  text-transform: uppercase;
}

.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;
  color: var(--primaryColor);
}

.banner__item__content h3, .banner__item__content h3 * {
  font-size: 50px;
  margin-bottom: 1.5rem;
  color: var(--primaryColor);
  font-family: var(--primaryTextFont);
  font-weight: bolder;
  text-shadow: 3px 3px 3px #000000B2;
}

.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;
}

@media only screen and (max-width: 767px){
  .banner__item__content h3, .banner__item__content h3 *{
    font-size: 30px;
  }
}