
body{
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(#DC432A,#CC531A,#BD600C);
}
.navbar-brand{
    font-size: 20px;
    font-weight: bold;
}
.nav-item .nav-link{
    color: black;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.nav-item.active .nav-link{ 
    color: #fe8331 !important ;
}
.header-text{
    max-width: 500px;
    margin: auto;
}
.title{
    font-size: 64px;
    font-weight: 600;
    line-height: 1.32;
    color:white;
    text-align: center;
}
.description{
    font-weight: 400;
    line-height: 34px;
    color: white;
    font-size: 20px;
    text-align: center;
}
.about-title{
    font-size: 32px;
    font-weight: 600;
    line-height: 1.32;
    color:black
}
.about-text{
    margin: auto;
    max-width: 930px;
    line-height: 30px;
    color: white;
    font-size: 20px;
}
.about-text p{
  margin-bottom: 1.5rem;
}
.sign-up{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.32;
    color:black
}
.get-early-access{
    background-color: #fe8331;
    color:white;
    height: 48px;
    border:1px solid #fe8331;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.form-group{
    height: 48px;
    padding: 16px;
    border:1px solid #fe8331;
    font-size: 20px;
}
.feature-description{
    font-size: 14px;
    line-height: 20px;
    max-width: 430px;
    width: 100%;
    color: #898989;
}
.container{
    max-width: 100%;
    width: 100%;
    padding:0 100px;
}
.bg-color-row{
    background-color: #fafcff;
}
.copy-right-text{
    font-size: 14px;
    color: white;
    text-align: center;
}
.video-class{
    height: 357px;
    width: 100%;
    /* object-fit: none; */
    background-color: white;
}
a:hover{
    color: black;
    text-decoration: none;
}
@media(max-width:767px){
  .video-class{
    height: unset;
  }
  .container{
    padding:0 20px;
    max-width: unset;
    width: 100%;
  }
  .change-direction{
    flex-direction: column-reverse;
  }
  .title{
    font-size: 36px;
  }
  .description{
    font-size: 16px;
    line-height: 28px;
  }
  .about-text{
    font-size: 16px;
    line-height: 28px;
  }
}
  /*
   * Animated CSS button
   * Copyright Alexander Bodin 2019-09-07
   *
   * Useage: .class {@import button($button-size, $hue, $sat);}
   */
  .animated-button1 {
    background: linear-gradient(-30deg, #D9D9D9 50%, #e9e9e9 50%);
    padding: 12px 27px;
    margin: 12px;
    display: inline-block;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    overflow: hidden;
    color: black;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
  }
  
  .animated-button1::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #ad8585;
    opacity: 0;
    -webkit-transition: .2s opacity ease-in-out;
    transition: .2s opacity ease-in-out;
  }
  
  .animated-button1:hover::before {
    opacity: 0.2;
  }
  
  .animated-button1 span {
    position: absolute;
  }
  
  .animated-button1 span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(black));
    background: linear-gradient(to left, rgba(43, 8, 8, 0), black);
    -webkit-animation: 2s animateTop linear infinite;
            animation: 2s animateTop linear infinite;
  }
  
  @keyframes animateTop {
    0% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
    100% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
  }
  
  .animated-button1 span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(43, 8, 8, 0)), to(black));
    background: linear-gradient(to top, rgba(43, 8, 8, 0), black);
    -webkit-animation: 2s animateRight linear -1s infinite;
            animation: 2s animateRight linear -1s infinite;
  }
  
  @keyframes animateRight {
    0% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
    100% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
  }
  
  .animated-button1 span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(43, 8, 8, 0)), to(black));
    background: linear-gradient(to right, rgba(43, 8, 8, 0), black);
    -webkit-animation: 2s animateBottom linear infinite;
            animation: 2s animateBottom linear infinite;
  }
  
  @keyframes animateBottom {
    0% {
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    100% {
      -webkit-transform: translateX(100%);
              transform: translateX(100%);
    }
  }
  
  .animated-button1 span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(43, 8, 8, 0)), to(black));
    background: linear-gradient(to bottom, rgba(43, 8, 8, 0), black);
    -webkit-animation: 2s animateLeft linear -1s infinite;
            animation: 2s animateLeft linear -1s infinite;
  }
  
  @keyframes animateLeft {
    0% {
      -webkit-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    100% {
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
    }
  }
  