html {
    scroll-behavior: smooth;
}

main {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

main {
    width: 80% !important;
}

h2,
h3,
h4 {
    color: #ad52a7;
}

#btnMenu {
    width: 30px;
    height: 30px;
    margin-left: 50px;
    margin-top: 10px;
}

nav {
    background-color: #ad52a7;
}

.navbar-custom .nav-item .nav-link {
    color: white;
}

.navbar-custom .nav-item:hover .nav-link {
    font-weight: bold;
}

.navbar-custom .navbar-brand {
    color: white;
}

#navbar-primary.navbar-default.navbar-nav {
    width: 100%;
    text-align: center;
}

#logo-main {
    display: block;
    margin: 20px auto;
}


/*
*
* ==========================================
* FOOTER
* ==========================================
*
*/

.page-footer {
    justify-content: center;
    background-color: #ad52a7;
}

footer i {
    color: #fff;
}

footer i:hover {
    color: #468C00;
}

.footer-copyright {
    color: #fff;
    background-color: #E694E0;
}

.footer-copyright a {
    color: #468C00;
}


/*=====Scroll========*/

.gotop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    color: #468C00;
    font-size: 42px;
}

.gotop:hover {
    font-size: 52px;
}

#slogan {
    font-family: 'Dancing Script', cursive;
    text-align: center;
}


/*============================
        Loader
==============================*/

.water {
    width: 300px;
    height: 300px;
    background-color: #ad52a7;
    border-radius: 50%;
    position: fixed;
    box-shadow: inset 0 0 30px 0 rgba(0, 0, 0, .5), 0 4px 10px 0 rgba(0, 0, 0, .5);
    overflow: hidden;
}

.water:before,
.water:after {
    content: 'CHARGEMENT';
    color: #fff;
    position: absolute;
    width: 300px;
    height: 300px;
    top: -150px;
    background-color: #fff;
}

.water:before {
    border-radius: 45%;
    background: rgba(255, 255, 255, .7);
    animation: wave 5s linear infinite;
}

.water:after {
    border-radius: 35%;
    background: rgba(255, 255, 255, .3);
    animation: wave 5s linear infinite;
}

.spinner-wrapper {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes wave {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}