* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Bebas Neue", sans-serif;
}

h1 {
    color: #1a1a1a;
    font-size: 30px;
    line-height: 64px;
}

h2 {
    font-size: 20px;
    line-height: 64px;
    color: #1a1a1a;
}

h4 {
    font-size: 20px;
    color: #1a1a1a;
}

h6 {
    color: #1a1a1a;
    font-size: 20px;
}

p {
    font-size: 26px;
    margin: 15px 0 20px 0;
    color: #1a1a1a;
}



#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    background: #e3e6f3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.66);
    z-index: 999;
    position: sticky;
    top: 0;
    left: 0;
}

body {
    width: 100%;
}

.logo {
    width: 90px;
    height: 20px;
}

/*? nav bar*/
#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}
#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}
#navbar li a:hover,
#navbar li a.active {
    color: #d59500;
}
#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #fa3c08;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

.descripcion{
    background: url("/fadisa/imagenes/fondo2.jpg") no-repeat center;
    height: 90.3vh;
    width: 100%;
    background-size: cover;
    padding: 80px;
}

.descripcion h1{
    padding: 5px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.descripcion h2{
    margin-top: 10px;
    padding: 5px;
    width: 100%;
}

.descripcion h6{
    margin-top: 5px;
    padding: 5px;
    width: 100%;
}

.descripcion h4{
    margin-top: 30px;
    padding: 0 5px;
    width: 100%;
}

#btn-whats {
    position: fixed;
    width: 50px;
    height: 90px;
    bottom: 30px;
    right: 30px;
    font-size: 50px;
    color: #00ff00;
}