@keyframes innershow {
  0% {
    opacity: 0;
    transform: translateY(5%); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
body {
  background: none; }

.inner {
  animation: innershow .4s forwards;
  animation-delay: 1200ms;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0; }

.about-us {
  margin-top: 40px; }
  .about-us::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    background-color: rgba(255, 255, 255, 0.2); }
  .about-us::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(255, 255, 255, 0.2); }
  .about-us::-webkit-scrollbar-thumb {
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
    background-color: white; }
  .about-us .row {
    background-color: rgba(1, 167, 199, 0.5);
    display: flex;
    align-items: stretch;
    justify-content: center; }
    .about-us .row .col {
      line-height: 1.6;
      font-size: 14px;
      padding: 10px 10px 10px 20px;
      flex: 1; }
      .about-us .row .col:first-child {
        max-width: 180px;
        min-width: 180px;
        text-align: right;
        padding: 10px;
        font-weight: bold; }
    .about-us .row:nth-child(2n-1) {
      background-color: rgba(4, 10, 21, 0.25); }

@media (max-width: 780px) {
  .about-us .row .col {
    flex: initial;
    width: 70%;
    text-align: left; }
    .about-us .row .col:first-child {
      width: 30%;
      text-align: left;
      max-width: inherit;
      min-width: inherit; } }

/*# sourceMappingURL=company.css.map */