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

.banner__item{
  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;
  text-align: center;
  color: #fff;
  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;
  text-align: center;
  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;
}