.para {
  color: #325288;
  font-size: 3em;
}

.hard-shadow {
  text-align: center;
  color: black;
  margin: 10px;
  margin-bottom: 0px;
  margin-top: 0px;
}
a {
  color: #000;
}

#yellowGradientContainer {
  display: flex;
  flex-wrap: wrap;
  padding: 4em 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-around;
}

.listStyle {
  border-radius: 6px;
  padding: 1em;
  margin: 2em;
  flex: 0 0 17.3vw;
  height: 17.3vw;
  display: block;
  background: #fff;
  transition: all 300ms;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.listStyle:not(.copied):hover {
  cursor: pointer;
}

.listStyle:not(.copied):hover :not(.credits) {
  text-decoration: underline;
}

.listStyle.copied {
  cursor: pointer;
}

@media all and (min-width: 375px) {
  .listStyle {
    flex: 0 0 22vw;
    height: 22vw;
  }
}

@media all and (min-width: 768px) {
  #yellowGradientContainer {
    padding: 4em 0;
  }

  .listStyle {
    margin: 2.7em;
    padding: 1em;
    flex: 0 0 110px;
    height: 110px;
  }
}

.gradientBoxTab #gradientBoxTab-flters {
  padding: 0;
  /* margin-left:30%; */
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.gradientBoxTab #gradientBoxTab-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}

.gradientBoxTab #gradientBoxTab-flters li:hover,
.gradientBoxTab #gradientBoxTab-flters li.filter-active {
  color: #149ddd;
}

.gradientBoxTab #gradientBoxTab-flters li:last-child {
  margin-right: 0;
}
.gradientBoxTab .borderTab-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.gradientBoxTab .borderTab-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.gradientBoxTab .borderTab-wrap .borderTab-links {
  opacity: 1;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.gradientBoxTab .borderTab-wrap .borderTab-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}

.gradientBoxTab .borderTab-wrap .borderTab-links a:hover {
  background: rgba(20, 157, 221, 0.95);
}

