main {
    z-index: 1;
    overflow-x: hidden;
}

h1 {
    font-family: "Gabarito", sans-serif;
    font-size: 55pt;
    font-weight: bold;
}

h2 {
    font-family: "Gabarito", sans-serif;
    font-size: 35pt;
}

p, span {
    font-family: "Afacad Flux", sans-serif;
    font-size: 20pt;

}

header {
    z-index: 10;
}

header img{
    height: 50px;
    width: auto;
}

.navbar {
    transition: all 0.5s;
    backdrop-filter: blur(10px);
}

.navbar-scrolled {
    background-color : #38BCCC;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.nav-item {
    padding-right: 20px;
}

.nav-link {
    font-size: 16pt;
    font-weight: bold;
    display: inline-block;
    transition: all 0.5s;

}

.nav-link:hover {
    scale: 1.2;
    color: #000;
}

.dropdown-toggle:hover{
    color: black;
}

.png-container {
    overflow: hidden;
    height: 100%;
    width: auto;
}

.png-container img {
    filter: drop-shadow(0px 100px 0 #000);
    transform: translateY(-100px);
    height: 30px;
}

.dropdown-item > img{
    filter: drop-shadow(0px 100px 0 gray);
    transform: translateY(-100px);
}

.dropdown-active{
    filter: drop-shadow(0px 100px 0 #000);
    transform: translateY(-100px);
}

.dropdown-menu{
    --bs-dropdown-link-active-bg: #f1f1f1;
}


.icon-link {
    font-size: 20px;
    color: black;
}

.footer-nabu {
    background-color: rgba(0, 0, 0, 0.05);
    position: absolute;
    bottom: 0;
    width: 100%;
}

.footer-nabu > div {
    padding: 0 !important;
}

.footer-nabu > div > a {
    display: inline-block;
    color: black;
}

.footer-nabu img{
    height: 25px;
    width: auto;
}

.footer-text-links {
    padding-right: 25px;
}


.footer {
    position: relative;
    width: 100%;
    background: #38BCCC;
    min-height: 100px;
    padding: 20px 50px 60px 50px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.social-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

.social-icon__item {
    list-style: none;
    margin: 0 10px;
}


.social-icon__link {
    font-size: 2rem;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}

.social-icon__link:hover {
    transform: translateY(-10px);
}

.footer p {
    color: #fff;
    margin: 15px 0 10px 0;
    font-size: 1rem;
    font-weight: 300;
}

.wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("https://i.goopics.net/qq4d9r.png");
    background-size: 1000px 100px;
}

.wave#wave1 {
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: animateWaves 4s linear infinite;
}

.wave#wave2 {
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: animate 4s linear infinite !important;
}

.wave#wave3 {
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
    z-index: 999;
    opacity: 0.7;
    bottom: 20px;
    animation: animate 3s linear infinite;
}

@keyframes animateWaves {
    0% {
        background-position-x: 1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}

@keyframes animate {
    0% {
        background-position-x: -1000px;
    }
    100% {
        background-positon-x: 0px;
    }
}
