/* gotop */
.gotopLink{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;  
  transition: transform 0.3s ease;
}
.gotopLink>.gotop{
  width: 60px;
  height: 60px;
  border-radius: 360px;
  position: fixed;
  bottom: 1%;
  right: 1%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #6b230a;
  transition: transform 0.3s ease;
  z-index: 99;
}

.gotopLink>.gotop:hover{
 transform: scale(1.1);
}

.gotopLink>.gotop p{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFF;
}

@media(max-width:430px){
.gotopLink>.gotop{
  width: 45px;
  height: 45px;  
  font-size: 0.8rem;
}
}