@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prata&display=swap');

@media (max-width: 1100px) {
    nav > ul {
        display: none !important;
    }
}

@media (min-width: 1101px) {
    #mobile-menu-icon {
        display: none;
    }
}

h1, h2, h3, h4, h5 {
    font-family: Prata, serif;
    font-weight: normal;
}

ul {
    font-family: Poppins;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 25px;
}

p {
    font-family: Poppins, serif;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: white;
    width: 100%;
    position: fixed;
    max-height: 90px;

    overflow: hidden;
}

header #main-logo {
    height: auto;
    max-height: 100px;
}

nav {
    display: flex;
    align-items: center;
    font-size: 110%;
}

nav > ul {
    display: flex;
    flex-direction: row;
    padding: 0;
}

nav div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

nav li {
    display: flex;
    flex-direction: row;
    margin: 1rem;
}

nav a {
    color: black;
    text-decoration: none;
}

nav img {
    margin-left: 3px;
    max-width: 20px;
    max-height: 15px;
}

nav a:hover {
    color: #efaa2f;
}

nav ul ul {
    display: none;
    margin-top: 25px;
    padding: 0 1em;
    list-style: none;
}

nav ul:hover ul {
    display: inline;
    position: fixed;
    background-color: white;
    border-radius: 10px;
}

#mobile-menu {
    display: none;
    position: fixed;
    overflow-y: scroll;
    height: 60vh;
    margin-top: 90px;
    padding: 1em;

    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 100%;
}

#mobile-menu a {
    color: black;
    text-decoration: none;
}

#mobile-menu ul {
    list-style: none;
    margin: 5px;
    padding: 0;
}

#mobile-menu li {
    margin: 5px;
}

#mobile-menu strong {
    font-weight: 500;
}

article {
    margin-top: 3rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer {
    margin-top: 6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #ffffff;
    color: #000000;

    box-shadow: rgba(0, 0, 0, 0.24) 0px -1px 8px;
}

footer > img {
    max-width: 300px;
}

footer > span {
    margin: 0em 1em 1em 1em;
    font-size: 20px;
}

footer > hr {
    width: 50%;
    padding: 0;
    margin: 0;
}

footer > div {
    display: flex;
    flex-direction: row;
    margin-bottom: 2em;
}

footer > div > a {
    margin: 0em 1em;
}

footer i {
    color: #000000;
}

#whatsapp-icon {
    position: fixed;
    bottom: 10px;
    right: 10px;

    color: #25d266;
}