 
  @import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i');

  body {
    margin: 0;
    -webkit-perspective: 1000;
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
  }

  body, html {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: inherit;
  }

  h1 {
    color: #2a2a2a;
    font-size: 2em;
  }

  h2 {
    color: #2a2a2a;
    font-size: 1.2em;
  }
  
  h3 {
    color: #2a2a2a;
    font-size: 0.9em;
  }  

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #2a2a2a;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #2a2a2a;
    outline: none;
  }

  table {
    width: 99%;
    border: 1px solid black;
  }

   .tdA {
    width: 25%;
    color: green;
    text-align: left;
    font-size: 12px;
   }

   .tdB {
    width: 75%;
    color: green;
    text-align: left;
    font-size: 12px;
   }

   .tdAE {
    width: 25%;
    color: red;
    text-align: left;
    font-size: 12px;
   }

   .tdBE {
    width: 75%;
    color: red;
    text-align: left;
    font-size: 12px;
   }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

.sub-footer {
    display: flex;
    justify-content: center;
}

.logo1 {
  margin: 0 5px;
}

@media (max-width: 400px) {
  .sub-footer {
      flex-direction: column;
      align-items: center;
  }
}

.sub-footer .logo1 span {
  color: #0e78c2;
  font-size: 28px;
  font-weight: 900;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sub-footer .logo1 span em {
  font-style: normal;
  color: #383f42;
  font-weight: 700;
}

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }

  .tm-submit-btn {
        background-color: #383f42;
        border: none;
        color: white;
        padding: 15px 35px;
        border-radius: 10px;
  }  

  .tm-submit-btn:hover,
  .tm-submit-btn:focus {
        background-color: #0e78c2;
  }

  #home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
  }

  #home .container {
    width: 100%;
  }

  .home-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
  }
  
  
  @media screen and (max-width: 480px) {

    .home-info {
      padding: 0 1em 0 1em;
    }

  }

  @media screen and (max-width: 360px) {

    h1 {
      font-size: 1.50em;
    }

  }