.btn_track span {
  /*cursor: pointer;*/
  display: inline-block;
  position: relative;
  transition: 0.2s;
}
.btn_track span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.2s;
}

.btn_track:hover span {
  padding-right: 20px;
}



.btn_track:hover span:after {
  opacity: 1;
  right: 0;
}
  .hero-text {
  text-align: center;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/*.hero-text button {
  border: none;
  outline: 0;
  display: inline-flex;
  padding: 10px 25px;
  color: black;
  background-color: #ddd;
  text-align: center;
  cursor: pointer;
}*/

/*.hero-text button:hover {
  background-color: #555;
  color: white;
}*/
.center2 {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  height:80px;
  width:220px;
  margin-bottom: 30px;
  margin-top: 10px;
  display: none;
}
  .flex-container1 {
      display: flex;
      flex-direction: row;
      
      font-size: 10px;
      text-align: center;
    }
    .flex-item-right1 {
      padding: 0px;
      flex: 50%;
      padding: 10px;
    flex: 50%;
    margin-top: inherit;
    }

    @media (max-width: 800px) {
      .flex-container1 {
        flex-direction: column;
       margin:5px;
      }
      
    }
     @media (max-width: 800px) {
      .flex-item-right1{
        margin-top: 80px;
        flex-direction: column;
       /*margin:5px;*/
      }
      
    }
    @media (max-width: 800px) {
      .btn_track{
        margin-top: 30px;
      }
      
    }
    @media (max-width: 800px) {
      .txt_track{
        margin-top: 30px;
      }
      
    }
      .marquee {
            height: 30px;
            overflow: hidden;
            position: relative;
            background: #fff;
            color: #000;
            border: 1px solid #fff;
            
        }
        
        .marquee p {
            position: absolute;
            width: 100%;
            height: 100%;
            font-family:'Roboto',sans-serif;
            font-weight:bold;
            text-transform:uppercase;
            margin: 0;
            line-height: 30px;
            text-align: center;
            -moz-transform: translateX(100%);
            -webkit-transform: translateX(100%);
            transform: translateX(100%);
            -moz-animation: scroll-left 2s linear infinite;
            -webkit-animation: scroll-left 2s linear infinite;
            animation: scroll-left 18s linear infinite;
        }
        
        @-moz-keyframes scroll-left {
            0% {
                -moz-transform: translateX(100%);
            }
            100% {
                -moz-transform: translateX(-100%);
            }
        }
        
        @-webkit-keyframes scroll-left {
            0% {
                -webkit-transform: translateX(100%);
            }
            100% {
                -webkit-transform: translateX(-100%);
            }
        }
        
        @keyframes scroll-left {
            0% {
                -moz-transform: translateX(100%);
                -webkit-transform: translateX(100%);
                transform: translateX(100%);
            }
            100% {
                -moz-transform: translateX(-100%);
                -webkit-transform: translateX(-100%);
                transform: translateX(-100%);
            }
        }
        #submit{
   background-color: #4D148C;
   border:0px;
}
        #submit:focus {     
    background-color:#ff6200; 
    border:0px;   
}