header {
  background: none;
  background-color: rgba(0, 0, 0, 0.25);
}

.welcome {
  overflow: hidden;
  width: 100vw;
  height: 100%;
}

video {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: ease 1.4s;
}

.locale {
  color: #ffffff;
}

.locale:visited {
  color: #ffffff;
}

.locale[active-locale] {
  color: #7CC34D;
}

#videoTwo {
  z-index: -2;
}

.content-block {
  position: absolute;
  bottom: 2vh;
  opacity: 0;
  left: 6vw;
  transition: ease 3s;
  will-change: transform;
}

.home-header {
  font-family: Bold;
  font-size: 2.6vw;
  text-transform: uppercase;
  transition: ease 0.9s;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
}

.subheader {
  text-transform: uppercase;
  font-size: 1.4vw;
  text-shadow: 0px 4px 8px rgb(0, 0, 0);
  margin-top: 10px;
}

.shimer-wrap {
  position: absolute;
  top: 48%;
  left: 57%;
  opacity: 0;
  transition: ease 0.9s;
}

.shimer-block {
  width: 80px;
  height: 80px;
  position: relative;
}

.circle-cont {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.circle-cont div {
  background: radial-gradient(50% 50% at 50% 50%, rgba(124, 195, 77, 0) 10.42%, #7CC34D 100%);
  border-radius: 50%;
}

.circle1 {
  animation: circle 5s infinite;
}

.circle2 {
  animation: circle 5s infinite 1s;
}

.circle3 {
  animation: circle 5s infinite 2s;
}

.closer {
  position: absolute;
  left: -150px;
  top: -30px;
  font-size: 20px;
  font-family: Semi;
  text-transform: uppercase;
}

.line {
  position: absolute;
  left: -10px;
  top: 10px;
  width: 40px;
  height: 1px;
  background: #ffffff;
  transform: rotate(45deg);
}

@keyframes circle {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}
.circle-cont .circle4 {
  width: 12px;
  height: 12px;
  background: #7CC34D;
}

.shimer-block:hover {
  cursor: pointer;
}

.home-header2, .subheader2 {
  display: none;
}

@media (max-width: 1366px) {
  .home-header {
    font-size: 3vw;
  }
  .subheader {
    font-size: 1.7vw;
  }
}
@media (max-width: 768px) {
  .content-block {
    text-align: center;
    position: unset;
    margin: 50% auto;
    width: fit-content;
    padding: 0 15px;
  }
  .home-header {
    font-size: 36px;
  }
  .subheader {
    font-size: 24px;
    margin-top: 20px;
  }
  .shimer-wrap {
    display: none;
  }
}