@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700&family=Playfair+Display:wght@400;700;900&family=STIX+Two+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: auto;
  margin: 0;
  padding: 0;
  background: #15100F;
  overflow: hidden;
}

.websiteoverlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: black;
  z-index: 9999999;
}

.titlecontainer {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.voicestitlewrapper1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.verticaltext {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  text-transform: uppercase;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2vw;
}

.horitext {
  text-transform: uppercase;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 9vw;
  margin-top: -2vh;
}

.voicestitlewrapper2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -10px;
}

.horitext2 {
  text-transform: uppercase;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2vw;
  letter-spacing: 6px;
}

.redbar {
  width: 25vw;
  height: 0.5vw;
  background: red;
}

.voicestitlewrapper3 {
  margin-top: -10px;
}

.horitext3 {
  text-transform: uppercase;
  color: white;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 5.5vw;
}

.box span {
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -10px;
  -webkit-animation: animate 2s infinite;
          animation: animate 2s infinite;
}

.box span:nth-child(2) {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.box span:nth-child(3) {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

@-webkit-keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-20px, -20px);
            transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(20px, 20px);
            transform: rotate(45deg) translate(20px, 20px);
  }
}

@keyframes animate {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(-20px, -20px);
            transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(45deg) translate(20px, 20px);
            transform: rotate(45deg) translate(20px, 20px);
  }
}

.appVideos {
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 100vh;
  background: #15100F;
}

.videoPlayer {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5vw;
  margin-bottom: 10vh;
}

.video {
  height: 100%;
}

.voliconwrapper {
  background: black;
}

.volicons {
  width: 3vw;
  z-index: 9999;
  padding: 2vw;
}

.profiletextcontainer {
  padding: 3vw;
}

.siptitlecontainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.siptitletext {
  font-family: "montserrat", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  color: white;
  padding: 1vh;
  border-left: 3px solid red;
  border-right: 3px solid red;
}

.veteranname {
  color: #FA8700;
  font-family: 'Playfair Display', serif;
  text-transform: uppercase;
  padding-bottom: 2vh;
  padding-top: 3vh;
}

.veteranparatext {
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 1.2vw;
}

@media only screen and (max-width: 900px) {
  .videoPlayer {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .video {
    width: 100%;
  }
  .veteranparatext {
    font-size: 3vw;
  }
  .volicons {
    width: 5vw;
  }
  .verticaltext {
    font-size: 4vw;
  }
  .horitext {
    font-size: 18vw;
    margin-top: -2vh;
  }
  .horitext2 {
    font-size: 4vw;
  }
  .redbar {
    width: 50vw;
  }
  .horitext3 {
    font-size: 11vw;
  }
}

@media only screen and (max-width: 450px) {
  .veteranparatext {
    font-size: 5vw;
  }
}
/*# sourceMappingURL=voicesstyle-v2.css.map */