.a-news {
  color: black;
  text-decoration: none;
  border: 0px;
}

.a-news:hover {
  color: blue;
}

.gap-ticker {
  background-color: #f0f0f0;
  /* margin-top: 29px; */
}

.gap-ticker .span-news {
  grid-column: 8;
  margin-top: -35px;
  grid-row: 3;
}

.new-news-h {
  color: #e69f1a;
  height: 43;
  text-align: center;
  border-radius: 0px 20px 20px 0px;
  width: 138px;
  margin-top: -8px;
  font-weight: bold;
  padding-top: 79px;
  padding-bottom: 8px;
  font-size: 19px;
}

/* (A) FIXED WRAPPER */
.gap-ticker .hwrap {
  overflow: auto;
  /* width: 50%; */
  /* max-width: 600px; */
  position: relative;
  /* margin: 17px auto 0; */
  overflow: hidden;
  /* HIDE SCROLL BAR */
  /*! background: #fff; */
  /* border-radius: 20px 0px 0px 20px; */
  grid-column: 4 / span 4;
  /*! box-shadow: 1px 1px 3px #bdbdbd; */
  grid-row: 3;
  margin-top: 31;
  margin-bottom: 31px;
  /* background-color: black; */
}

/* (B) MOVING TICKER WRAPPER */

/* (C) ITEMS - INTO A LONG HORIZONTAL ROW */
.hitem {
  flex-shrink: 0;
  width: 43%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
}

/* (D) ANIMATION - MOVE ITEMS FROM RIGHT TO LEFT */
/* 4 ITEMS -400%, CHANGE THIS IF YOU ADD/REMOVE ITEMS */
@keyframes tickerh {
  0% {
    transform: translate3d(100%, 0, 0);
  }

  100% {
    transform: translate3d(-400%, 0, 0);
  }
}

.hmove {
  animation: tickerh linear 50s infinite;
  animation-direction: reverse;
  display: flex;
}

.hmove:hover {
  animation-play-state: paused;
}

.gap-ticker .ticker-tile {
  grid-column: 4 / span 4;
}

.gap-ticker .ticker-tile .tricker-title {
  font-weight: 800;
  text-align: center;
  padding-top: 57;
  line-height: 2.4;
  font-size: 17;
}

.gap-ticker .ticker-tile .tricker-title .ticker-span-sup-title {
  font-weight: 600;
  color: #e59d17;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
  unicode-bidi: plaintext;
}

@media only screen and (max-width: 1024px) {
  /*phone*/

  .gap-ticker {
    /* height: 211px; */
  }

  .gap-ticker .ticker-tile {
    grid-column: 1 / span 10;
  }

  .gap-ticker .span-news {
    display: none;
  }

  .gap-ticker .hwrap {
    overflow: hidden;
    width: auto;
    border-radius: 0px;
    grid-column: 1 / 11;
    height: 138px;
    margin-top: 31;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1219px) {
  .gap-ticker {
    height: 269;
  }

  .gap-ticker .ticker-tile {
    grid-column: 4 / span 4;
  }

  .gap-ticker .span-news {
    display: none;
  }

  .gap-ticker .hwrap {
    overflow: hidden;
    width: auto;
    border-radius: 0px;
    grid-column: 1 / 11;
  }
}

@media only screen and (min-width: 1219px) and (max-width: 1397px) {
  .gap-ticker {
    /*! height: 269; */
  }

  .gap-ticker .ticker-tile {
    grid-column: 4 / span 4;
  }

  .gap-ticker .span-news {
    display: none;
  }

  .gap-ticker .hwrap {
    overflow: hidden;
    width: auto;
    border-radius: 0px;
    grid-column: 1 / 11;
  }
}

@media only screen and (min-width: 760px) and (max-width: 1697px) {
  .gap-ticker .ticker-tile {
    grid-column: 1 / span 10;
  }

  .gap-ticker .span-news {
    display: none;
  }

  .gap-ticker .hwrap {
    overflow: hidden;
    width: auto;
    border-radius: 0px;
    grid-column: 1 / 11;
    height: 60;
    margin-top: 41;
  }
}