@font-face {
    font-family: Circular-Black;
    src: url("../fonts/CircularStd-Black.otf");
}

@font-face {
    font-family: Circular-Medium;
    src: url("../fonts/CircularStd-Medium.otf");
}


  body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }

  main {
    flex: 1 0 auto;
  }

@media only screen and (min-width: 993px) {
  #t_nav {
    padding-left: 18%;
  }
}

.disclaimer {
  font-size: 0.6em;
  text-align: center;
}

.hero {

}
h1{
	margin-left:-10px
}
h5{
	margin-left:-1px
}

.hero__inner {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 50px 20px;
}

.hero__title {
    font-family: Circular-Black, sans-serif;
    font-weight: 900;
    font-size: 54px;
    line-height: 60px;
	padding-left: 5px;
}

.hero__body {
    margin: 15px 0;
    line-height: 24px;
    font-size: 18px;
    color: #FFFFFF;
    display: block;
}

.hero__logo {
    position: relative;
}

.hero__logo > video {
    width: 320px;
    height: 320px;
}

.hero__logo:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background-image: linear-gradient(-90deg, #000000 0%, rgba(0, 0, 0, 0.00) 15%, rgba(0, 0, 0, 0.00) 85%, #000000 100%);
}

.btns {
    margin-top: 30px;
}

.btns > * {
    margin-right: 15px;
    margin-bottom: 15px;
}

.clients {
  /*display: flex;*/
}

/* tablet */
@media (max-width: 735px) {
    .hero__logo > video, .hero__logo:after {
        width: 200px;
        height: 200px;
    }
    
    .hero__title {
        font-size:44px;
        line-height:50px;
    }

    .page-footer h5:last-of-type {
      margin-top: 20px;
    }
}

/* mobile */
@media (max-width:615px) {
    .hero__inner {
        flex-direction:column;
    }
}

/* tiny mobile */
@media (max-width:420px) {
    .hero .btn {
        width:100%;
        display:block;
        text-align:center;
    }
    .btns > *:last-child {
        margin-bottom:0;
    }
}


