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

.banner__item{
  min-height: 90vh;
  min-height: 90svh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner__item__title{
  font-family: var(--primaryTextFont);
  font-size: 50px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.1;
  letter-spacing: 3..1rem;
  text-align: left;
  color: var(--terciaryColor);
}

.banner__item__content{
  font-family: var(--primaryTextFont);
  font-size: 18px;
  font-stretch: normal;
  line-height: 1.1;
  letter-spacing: .1rem;
  text-align: left;
  color: var(--terciaryColor);
}

.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;
}

.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__overlay{
  width: 100%;
  position: absolute;
  bottom:0;
  left:0;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: -2rem;
  /* background: color-mix(in srgb, var(--primaryColor) 50%, transparent);
  background: rgb(from var(--primaryColor) r g b / 50%); */
}

.banner__overlay{
  
}

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