.bannerContainer{
  padding: 30px 25px 100px;
  text-align: center;
  overflow: visible;
  box-sizing: border-box;
  position: relative;
  background-size: cover;
}
.trLogo {
  display: inline-block;
  vertical-align: middle;
  width: 178px;
  padding: 0 10px 0 5px;
}
.trLogo-section{
  text-align: left;
}
.banner {
    padding-top: 55px;
    max-width: 1223px;/*1120px;*/
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.bannerTop {
    max-width: 1223px; /*1120px;*/
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.bannerLeft{
  width: 65%;
  padding-right: 5%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
}
.moreInfo {
    height: 15px;
    width: 100%;
    background-color: #22b0b9;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

    .moreInfo:before {
        content: 'More Information';
        background: #fff;
        border: 1px solid #808080;
        position: absolute;
        top: -17px;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        left: 50%;
        display: inline-block;
        font-size: 20px;
        padding: 12px 40px;
    }
body {
    font-family: 'Ubuntu', sans-serif;
}
.bannerLeft-header{
  font-size: 60px;
  line-height: 55px;
  padding-bottom: 15px;
  margin: 20px 0;
  font-weight:700;
}
.bannerLeft-description{
  font-size: 20px;
  line-height: 30px;
  margin: 0 0 30px;
}
.bannerLeft-partners{
  padding: 5px 0;
  text-align: left;
  border-top: 1px solid #eee;
  margin: 0 0 0 0;
}
.bannerLeft-partners_inner{
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 15px 0;
  background: #fff;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all ease .7s;
}
.bannerLeft-partners_inner h4{
  font-size: 20px;
  padding-bottom: 25px;
}
.bannerLeft-partners_inner span{
  margin: 0 0 30px 4px;
  vertical-align: middle;
}
.aaia {
  width: 105px;
  height: 55px;
  display: inline-block;
  object-fit: contain;
  background-repeat: no-repeat;
  background-image: url('../images/AAA.png');
}
.nw {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/NW.png');
}
.wiaa {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/wiaa.png');
}
.hawksoft {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/hawksoft.png');
}
.agencymatrix {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/agencymatrix.png');
}
.xanatek {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/xanatek.png');
}
.partnerxe {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/partnerplatform.png');
}
.nasa {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/NASA.png');
}
.jenesis {
  width: 105px;
  height: 55px;
  display: inline-block;
  background-repeat: no-repeat;
  background-image: url('../images/jenesis.png');
}
.bannerRight{
  width: 34%;
  padding-left: 4%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  box-sizing: border-box;
}
.bannerRight-box{
  width: 100%;
  margin: 0 auto;
  float: right;
  box-sizing: border-box;
}
.form-group {
  margin-bottom: 15px;
  width: 100%;
}
input {
    color: #000;
    padding: 14px 12px;
    border: 1px solid #d5d5d5;
    display: block;
    width: 100%;
    margin: 15px 0 0;
    font-size: 14px;
    background: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    z-index: 1;
    transition: .5s ease;
    border-radius: 0;
}
.bannerScroll{
  font-size: 10px;
  padding-top:60px;
}
.bannerArrow{
  display: block;
  color: #000;
  font-size: 22px;
  line-height: 18px;
  padding: 0;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 4000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: spin;
  -moz-animation-duration: 4000ms;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: spin;
  -ms-animation-duration: 4000ms;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 4000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -moz-animation: bounce 1s infinite;
  -webkit-animation: bounce 1s infinite;
  animation: bounce 1s infinite;
}
@-ms-keyframes spin {
    from { -ms-transform: rotate(90deg); }
    to { -ms-transform: rotate(900deg); }
}
@-moz-keyframes spin {
    from { -moz-transform: rotate(90deg); }
    to { -moz-transform: rotate(90deg); }
}
@-webkit-keyframes spin {
    from { -webkit-transform: rotate(90deg); }
    to { -webkit-transform: rotate(90deg); }
}
@keyframes spin {
    from {
        transform:rotate(90deg);
    }
    to {
        transform:rotate(90deg);
    }
}
@-webkit-keyframes bounce {
            0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
            40% {-webkit-transform: translateY(-5px);}
            60% {-webkit-transform: translateY(-5px);}
}

 @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-5x);}
    60% {transform: translateY(-5px);}
 }

 .bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
 }
.pageTwo{
    padding: 75px 0px;
    max-width: 1120px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}
.movieContainer{
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
}
.trMovie{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}



@media only screen and (max-width: 600px) {
  .bannerVideo{
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
  }
  .bannerVideo-frame{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .container {
    margin: 0 auto;
    text-align: center;
  }
  .bannerLeft{
    text-align: center;
    width: 100%;
    padding-right: 0;
  }
  .bannerLeft-partners {
    margin: 0;
  }
  .bannerRight{
    width: 100%;
    padding-left: 0;
  }
  .bannerScroll{
    display: none;
  }
  .bannerContainer{
    padding: 30px 25px 50px;
    text-align: center;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
  }
  .pageTwo{
    text-align: center;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    background-size: cover;
    padding: 30px 25px 50px;
  }
  .trLogo-section{
    text-align: center;
  }
}
