html {
  scroll-behavior: smooth;
}

#Footer .footer_copy .one {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#Footer .footer_copy a#back_to_top {
    float: initial;
    margin: 0;
    order: 3;
}

#Footer .footer_copy span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    order: 2;
    font-size: 1rem;
}

#Footer .footer_copy span a {
    display: flex;
    align-items: center;
}

#Footer .footer_copy .copyright {
    float: initial;
    margin: 0;
    order: 1;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  position:fixed;
  width:48px;
  height:48px;
  bottom:16px;
  right:24px;
  background-color:#25d366;
  color:#FFF;
  border-radius:9999px;
  font-size:28px;
  z-index:100;
}

.btn-whatsapp:hover i {
  color:#FFF;
}

@media (max-width: 767px) {
    #Footer .footer_copy .one {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    #Footer .footer_copy span {
        font-size: 0.75rem;
    }
}