@media only screen and (max-width: 767px) {
  .globalFooter {
    padding-bottom: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .globalFooter {
    padding-bottom: 120px;
  }
}
.globalFooter .globalFooter_logo {
  margin-bottom: 12px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .globalFooter .globalFooter_logo .logoImg {
    height: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .globalFooter .globalFooter_logo .logoImg {
    height: 90px;
  }
}
.globalFooter .copyright {
  color: #777;
  text-align: center;
  font-family: "Roboto Slab", sans-serif;
}
@media only screen and (max-width: 767px) {
  .globalFooter .copyright {
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 768px) {
  .globalFooter .copyright {
    font-size: 1.2rem;
  }
}

.pageTop {
  width: 30px;
  display: block;
  position: fixed;
  bottom: 30px;
  right: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.pageTop.hide {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
.pageTop .btnImg {
  width: 100%;
}
