/*Copyright*/
.global-copyright-symbol {
  position: fixed;
  width: 70px;
  height: 70px;
  z-index: 100;
  bottom: 20px;
  right: 20px;
  border-radius: 100%;
  font-size: 25px;
  line-height: 1;
  display: flex;
  justify-content: center;
  font-weight: 400;
  align-items: center;
  color: #2a3b6c;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.8);
  transform: scale(1);
  animation: pulse 3s infinite;
  display: block;
}
.global-copyright-symbol:hover {
  opacity: .8;
}

@media screen and (max-width: 765px) {
    .global-copyright-symbol {
      width: 60px;
      height: 60px;
    }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.6);
  }

  70% {
    box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.footer-copyrightText {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}