/************************ 
        footer  
************************/
.footer {
  position: relative;
  margin: 0;
  padding: 20px 20px;
  width: 100%;
  padding-top: 2%;
  padding-bottom: 2%;
  background-color: #333333;
  overflow: hidden;
  width: 100%;
}

.footer * {
  color: #aaa;
}


.footer ul {
  list-style-type: square;
}


.footer-bottom {
  font-size: 16px;
  letter-spacing: 2px;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #999;
}

.footer a:hover {
  color: var(--Color5);
}
.ob-logo {
  max-width: 150px;
  vertical-align: text-bottom;
}
.it-info {
  font-size: 15px;
}
.it-info a::after {
  content: "|";
  padding: 2px 5px;
  color: #ffffff;
}

.foot-bottom a::after {
  content: "|";
  padding: 5px 10px;
  color: #fff;
}
.it-info a:last-child:after,
.foot-bottom a:last-child:after {
  content: "";
  padding: 0;
}

@media(max-width: 576px) {
  .foot-top .year ul {
      padding: 10px 0 0;
  }

  .foot-bottom a {
      display: grid;
  }

  .foot-bottom a::after {
      display: none;
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
#gotopBtn {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed/sticky position */
  bottom: 30px;
  /* Place the button at the bottom of the page */
  right: 30px;
  /* Place the button 30px from the right */
  z-index: 99;
  /* Make sure it does not overlap */
  border: none;
  /* Remove borders */
  outline: none;
  /* Remove outline */
  background-color: var(--Color5);
  color: var(--Color2);
  cursor: pointer;
  /* Add a mouse pointer on hover */
  padding: 12px 20px;
  border-radius: 0.3em;
  transform: rotate(45deg);
  font-size: 18px;
  border: 2px solid var(--Color2);
  transition-duration: .3s;
}
#gotopBtn i{
  transform: rotate(-45deg);
}
#gotopBtn:hover {
  transform: rotate(-45deg);
}
#gotopBtn:hover i{
  transform: rotate(45deg);
}