@font-face {
  font-family: 'EuclidCircularB-LightItalic';
  src: url('fonts/EuclidCircularB-LightItalic.woff') format('WOFF');
}

@font-face {
  font-family: 'EuclidCircularB-Light';
  src: url('fonts/EuclidCircularB-Light.woff') format('WOFF');
}

body {
  background: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  background: #333333;
}

.content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  position: absolute;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-container {
  position: relative;
}

.logo-container img {
  width: 100%;
  max-width: 550px;
  margin: auto;
}

.tagline-main {
  font-family: 'EuclidCircularB-Light';
  font-size: 36px;
  max-width: 500px;
  /* color: #ffa2a2; */
  color: #f0f0f0;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: center;

  margin: 10px 20px 10px 20px;
}

#cta-bg {
  position: relative;
  border: none;
  outline: none;
  width: 190px;
  height: 40px;
  background-color: #ffa2a2;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 25px;
}

#cta-text {
  font-family: 'EuclidCircularB-Light';
  font-size: 20px;
  color: #f0f0f0;
  letter-spacing: 0px;
  line-height: 37px;
  text-align: center;
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  background-color: #666;
  /* background-image: repeating-linear-gradient(
    to bottom right,
    #273e7c 0%,
    #2969a1 100%
  ); */
}

.shape-bottom {
  position: absolute;
  width: 100%;
  right: 0px;
  bottom: -65px;
  opacity: 0.85;
  display: none;
}

.shape-top {
  fill: #172b61;
  position: absolute;
  width: 100%;
  top: -5px;
  opacity: 0.75;
  display: none;
}

video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(calc((100% - 100vw) / 2));
}

#mute-main {
  position: absolute;
  cursor: pointer;
  bottom: 8px;
  right: 0px;
  width: 30px;
  height: 30px;
  z-index: 5;
}

#mute-btn {
  position: absolute;
  visibility: hidden;
  left: 1px;
  z-index: 5;
}

#unmute-btn {
  position: absolute;
  visibility: visible;
  z-index: 5;
}

@media screen and (max-width: 1024px) {
  .tagline-main {
    /* font-size: 45px; */
    /* line-height: 50px; */
  }
}

@media screen and (max-width: 800px) {
  .tagline-main {
    font-size: 30px;
    /* line-height: 43px; */
  }
}

@media screen and (max-height: 600px) {
  .tagline-container {
    position: fixed;
    top: 250px;
  }

  #cta-bg {
    position: fixed;
    top: 390px;
  }
}
