.parallaxContainer.FirstParallax {
  width: 100%;
  /* height: 1800px; */
  /* overflow: hidden; */
  position: sticky;
  top: 0;
  padding-top: 50px;
}
.FirstParallax .parallaxInner {
  position: sticky;
  top: 0;
  width: 100%;
  height: 700px;
  display: block;
  overflow: hidden;
}

.FirstParallax .displayTextContainer {
  z-index: 999;
  overflow: hidden;
  top: 100px;
  right: 50px;
  height: 300px;
  padding-top: 16px;
}
.FirstParallax .displayTextContainer:after {
  content: "";
  position: absolute;
  width: 1100%;
  height: 1100%;
  top: 20px;
  right: -495%;
  background: #093188;
  transform-origin: 58.5% 0;
  transform: rotate(135deg);
  z-index: -1;
}
.FirstParallax .staticTitle {
  position: absolute;
  display: block;
  top: -10px;
  left: 40px;
}

.FirstParallax .parallaxNav {
  position: absolute;
  display: block;
  top: 250px;
  left: 40px;
  color: #ffffff;
  background: #093188;
}
.FirstParallax .parallaxNav span {
  color: #b6b6b6;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  background: #093188;
}
.FirstParallax .parallaxNav span.active {
  color: #ffffff;
  font-weight: 400;
}

.FirstParallax .displayTextContainer h6 {
  font-weight: 300;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1;
  position: relative;
  width: fit-content;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.FirstParallax .displayTextContainer h6:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.FirstParallax .displayTextContainer h2 {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 42px;
  padding-bottom: 4px;
  margin-bottom: 20px;
  width: fit-content;
}
.FirstParallax .displayTextContainer h2::after {
  content: '';
  background-color: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.FirstParallax .displayTextContainer h6,
.FirstParallax .displayTextContainer h2,
.FirstParallax .displayTextContainer p {
  color: #ffffff;
}
.FirstParallax .displayText {
  display: block;
  position: absolute;
  width: 100%;
  height: 300px;
  top: 300px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
  padding: 0px 50px 20px 40px;
}
.FirstParallax .displayTextContainer .displayText:nth-child(1) {
  top: 0;
}
.FirstParallax .displayTextBox_Container {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  top: 20px;
}

.FirstParallax .displayImage {
  width: 100%;
  height: 900px;
  display: block;
  position: absolute;
  -webkit-transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
  transition: all 500ms linear;
  background-position: center center;
  background-size: cover;
}
.FirstParallax .displayImage:nth-child(1) {
  top: 0;
}
.FirstParallax .displayImage:nth-child(2) {
  background-color: black;
  top: -900px;
}

.FirstParallax .triangleContainer {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  -webkit-transition: all 100ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 100ms ease;
  -o-transition: all 100ms ease;
  transition: all 100ms ease;
  overflow: hidden;
}
.FirstParallax .movingTriangles {
  position: absolute;
  z-index: 1;
  display: block;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
.FirstParallax .triangleOne {
  width: 500px;
  transform: rotate(20deg);
  top: 50px;
  left: 100px;
}
.FirstParallax .triangleOne svg {
  width: 500px;
  height: 500px;
}
.FirstParallax #triangleOneAngle {
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: dash 6000ms linear alternate infinite;
}
.FirstParallax .triangleTwo {
  width: 350px;
  transform: rotate(0deg);
  top: 200px;
  left: 30px;
}
.FirstParallax .triangleTwo svg {
  width: 350px;
  height: 350px;
}
.FirstParallax #triangleTwoAngle {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: dash 6000ms linear alternate infinite;
}

.FirstParallax .movingTriangles {
  perspective: 8px;
  perspective-origin: 0%;
}

.FirstParallax .movingTriangles svg {
  transform: translateZ(0px);
  transform: translateX(0px);
  animation: animateZ 40000ms alternate infinite;
}

.displayText a{
  color: #fff;
  text-decoration: underline;
}
.displayText a:hover{
  color: #000;
}

@keyframes animateZ {
  from {
    transform: translateZ(0px);
  }
  to {
    transform: translateZ(4px);
  }
}

@media screen and (max-width: 1199.98px) {
  .FirstParallax .displayTextContainer h2 {
    font-size: 44px;
  }
}

@media screen and (max-width: 991.98px) {
  .FirstParallax .displayTextContainer {
    height: 330px;
    padding-top: 30px;
  }
  .FirstParallax .displayTextContainer:after {
    top: 120px;
  }
  .FirstParallax .displayText {
    padding: 0px 20px 20px 20px;
  }
  .displayTextBox_Container {
    height: 300px;
  }
  .FirstParallax .staticTitle {
    left: 20px;
  }
  .FirstParallax .parallaxNav {
    top: 260px;
    left: 20px;
  }
  .FirstParallax .displayTextBox_Container {
    top: 0px;
    overflow: visible;
  }
}

@media only screen and (max-width: 901px) {
  .FirstParallax .displayImage {
    height: 500px !important;
  }
  .FirstParallax .displayTextContainer:after {
    right: -520%;
  }
  .FirstParallax .displayTextContainer {
    top: 125px;
  }
  .FirstParallax .displayImageContainer {
    left: -20px;
  }
  .FirstParallax .staticTitle {
    left: 25px;
  }
}
@media only screen and (max-width: 767.98px) {
  .FirstParallax .displayImageContainer {
    height: 300px;
    overflow: hidden;
    left: unset;
  }
  .FirstParallax .displayTextContainer {
    top: 0;
    right: unset;
  }
  .FirstParallax .displayImage{
    height: 300px !important;
  }
  .FirstParallax .triangleContainer{
    display: none;
  }
}
