@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.header {
  position: relative;
  display: flex;
  height: 100vh;
  max-height: 100vh;
  background: #000;
  overflow: hidden;
}
.header__background {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 0;
  padding-bottom: 66.25%;
  transform: translate(-50%, -50%);
  pointer-events: none;

}
.header__video-overlay {
  background:rgb(0 0 0 / 50%);
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s linear;
}
/*.header__video-overlay--fadeOut {
  opacity: 0;
  visibility: hidden;
}*/
.header iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.header__title {
  position: absolute;
  flex: 0 0 auto;
  align-self: center;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.header__title h1{
  width: 100%;
  font-family:'Tangerine', cursive;
  font-size:55px;
  font-weight: 700;
  text-align: center;
  color:#fff;
  line-height: 140%;
}

.header__title p{
  width: 100%;
  font-family:'Tangerine', cursive;
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  color:#fff;
  line-height: 150%;
}


.redd_morr{
  width: 140px;
  float: none;
  margin: 1% auto;
}

.btnn {
  padding: 10px 10px;
  color:#fff;
  background-color: #16649d;
  text-align: center;
  border-radius:5px;
}

.btnn:hover {
  background-color: #02111e;
  color:#fff;
}