@keyframes ticker {
  0% {
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.ticker-heading {
  position: absolute;
  background: #0087D2;
  display: block;
  left: 0;
  top: 0;
  height: 2rem;
  padding: 6px 30px;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.ticker-wrap .ticker__item:before {
  content: "";
  height: 11px;
  width: 11px;
  display: inline-block;
  background-color: #1074bc;
  border-radius: 100%;
  position: relative;
  margin-right: 15px;
}

@media screen and (max-width: 600px) {
  .ticker-wrap {
    width: auto !important;
  }
}
.ticker-wrap {
  position: relative;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 2rem;
  background-color: #f9f9f9;
  padding-left: 100%;
  box-sizing: content-box;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.ticker-wrap .ticker:hover {
  animation-play-state: paused;
}
.ticker-wrap .ticker {
  display: inline-block;
  height: 2rem;
  line-height: 1.9rem;
  white-space: nowrap;
  padding-right: 100%;
  box-sizing: content-box;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 150s;
}
.ticker-wrap .ticker__item {
  display: inline-block;
  padding: 0 2rem;
  font-size: 0.875rem;
  color: #454545;
}

.responsive-table li {
  border-radius: 3px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
.responsive-table .table-header {
  background-color: #95A5A6;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.responsive-table .table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}
.responsive-table .col-1 {
  flex-basis: 10%;
}
.responsive-table .col-2 {
  flex-basis: 40%;
}
.responsive-table .col-3 {
  flex-basis: 25%;
}
.responsive-table .col-4 {
  flex-basis: 25%;
}
.mobile {
    margin-right: 20px;
    text-decoration: none;
}

    .mobile span {
        font-family: 'Outfit';
        font-style: normal;
        font-weight: 400;
        font-size: 20px;
        line-height: 25px;
        color: #000000;
    }

    .mobile i {
        align-items: center;
        display: flex;
        color: #0087D2;
    }
@media all and (max-width: 767px) {
  .responsive-table .table-header {
    display: none;
  }
  .responsive-table li {
    display: block;
  }
  .responsive-table .col {
    flex-basis: 100%;
  }
  .responsive-table .col {
    display: flex;
    padding: 10px 0;
  }
  .responsive-table .col:before {
    color: #6C7A89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 50%;
    text-align: right;
  }
}/*# sourceMappingURL=style1.css.map */