.ugrtp-web {
  background-image: url("../img/bg-rtp-ug899.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-color: #333;
}

.btn-ug {
  display: block;
  padding: 5px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid #27374c;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-ug-primary {
  background: linear-gradient(90deg, #858585, #d2bfcc);
}

.btn-ug-secondary {
  background: linear-gradient(90deg, #dbbe91, rgba(121, 70, 29, .95));
}
.text-ug-cyan {
  color: #27374c;
  text-decoration: none;
}
.header-ug {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(180deg, #ffffff 18.18%, #00edfd 69.12%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.bg-ug-silver {
  background: linear-gradient(90deg, #535353, #918e9e);
}

.bg-ug-black {
  background: linear-gradient(90deg, #2b3a66, #27374c);
}

.mask-screen {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
  opacity: 0;
  background-color: rgba(0, 0, 0, .65);
  transition: all .45s ease-in-out;
  z-index: 10;
  text-decoration: none;
}

.mask-screen:hover {
  opacity: 100%;
}

.provider-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
}

.brand-container {
  display: flex;
  height: 60px;
  font-size: 2vh;
  align-items: center;
  text-align: center;
  border: 3px solid aqua;
}

@media screen and (min-width: 480px) {

  .brand-container {
    height: 100px;
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  .provider-container {
    grid-template-columns: repeat(7, 1fr);
  }

  .brand-container {
    height: 130px;
  }
}

@media screen and (max-width: 768px) {
  .footer-mobile {
    background: linear-gradient(90deg, #858585, #d2bfcc);
    color: #304866;
    z-index: 997;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 2px solid #304866;
  }

  .footer-mobile .footer-item {
    text-align: center;
    padding: 12px 5px 8px;
    color: #304866;
    position: relative;
  }

  .footer-mobile .footer-item.footer-login {
    position: relative;
    z-index: 999;
    align-self: flex-end;
  }

  .footer-mobile .footer-item.footer-login .footer-icon {
    position: absolute;
    top: 0;
    top: -62px;
    right: 0;
    left: 0;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 3px solid #304866;
    background: linear-gradient(90deg, #858585, #d2bfcc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    -webkit-animation: 1.5s ease 0s infinite beat;
    animation: 1.5s ease 0s infinite beat;
  }

  .footer-mobile .footer-item.footer-login .footer-icon i {
    font-size: 30px;
    border-radius: 50px;
    color: #304866;
  }

  .footer-mobile .footer-item .footer-title {
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
  }

}

@keyframes beat {

  0%,
  50%,
  100% {
    transform: scale(1, 1);
  }

  30%,
  80% {
    transform: scale(0.92, 0.95);
  }
}

.article-title{
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

.article-content{
  text-align: justify;
  padding: 1.5rem;
}