html {
    scroll-behavior: smooth;
}

html ,body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: white;
}

body {
    font-weight: bolder;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6rem;
    margin: 0;
    background: rgb(230, 230, 230);
}

h3 {
    font-size: 50px;
    padding-bottom:2rem;
}

@media (max-width: 720px) {
    h3 {
        font-size: 25px;
        padding:1rem;
    }
}

nav {
    position: fixed;
    width: 100%;
    z-index: 10;
}

nav ul {
    list-style: none;
    background-color: rgba(27, 45, 80);
    overflow: hidden;
    padding: 0;
    text-align: center;
    margin: 0;
    transition: 1s;
}

nav ul li {
    display: inline-block;
    padding: 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    font-family: sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;

}

.menu a {
    position: relative;
    display: block;
    padding: 0.5rem;
    text-decoration: none;
    color: white;
  }
  
  .menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    text-decoration: none;
    background: linear-gradient(to right, #d41414, #d41414, #d41414);
    z-index: 1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease-in-out;
  }
  
  .menu a:hover::before {
    transform: scaleX(1);
  }

  .menu[data-animation="center"] a::before {
    transform-origin: center;
  }

  .toggle {
    flex: 1;
    text-align: right;
    visibility: hidden;
    order: 1;
  }

 

  @media all and (max-width: 720px) {
    .menu {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
      flex: 1;
    }
    .toggle {
        visibility: visible;
      flex: 1;
      text-align: right;
    }
    .toggle {
      order: 2;
    }
    .navitem {
        width: 100%;
        text-align: center;
        order: 3;
        display: none;
      }
      .navitem.active {
        display: block;
      }
  }

  .btn-top {
    position: fixed;
    width: 3rem;
    height: 3rem;
    line-height: 2rem;
    bottom: 2rem;
    right: 2rem;
    text-decoration: none;
    background: darkblue;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 100;
    box-shadow:  0 2px 2px 2px rgb(0, 0, 0, 0.7);
}

header {
    background: white;
}

.sect-aviso {
    text-align: justify;
    padding-top: 12rem;
    padding-bottom: 3rem;
    background: white;
}

@media (max-width: 720px) {
    .sect-aviso {
        font-size: 15px;
        margin: 0 1;
        width: auto;
        height: auto;
     }
    
}

footer {
    width: 100%;
    height: 35%;
    background: rgb(12, 12, 12);
}

@media (max-width: 720px) {
    footer {
        width: 100%;
        height: auto;
    }
}

.logof {
    width: 150px;
    height: 130px;
    padding-top: 2rem;
}

.foot-text {
    padding-top: 2rem;
}

.foot-text h5 {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.foot-text p {
    font-size: 0.8rem;
    text-align: justify;
    color: rgba(255, 255, 255, 0.8);
}

.copy-text {
    color: black;
}

.copy-text p {
    font-size: 0.75rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.486);
}

.copy-text p a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.486);
}

body::-webkit-scrollbar {
    width: 12px;
    background: rgb(230, 230, 230);
}

body::-webkit-scrollbar-thumb{
    border-radius: 6px;
    border-left: 1px solid lightgray;
    border-right: 1px solid lightgray;
    background: darkblue;
}