body{
    --bs-text-primary: #004 !important;
    scroll-behavior: smooth;
}

#navbar{
    width: 100%;
    height: auto;
    padding: 1rem 0;
    background: var(--bs-light);
    z-index: 90 !important;
}

#navbarItems{
    display: flex;
    flex-flow: row;
    align-items: flex-start;
    justify-content: flex-start;
}

#navBrand{
    display: block;
    width: 150px;
    text-decoration: none;
    color: var(--bs-dark);
    font-weight: bolder;
    font-size: 1.2rem;
    text-align: center;
}

#navList{
    display: block;
    width: 100%;
    text-align: center;
}

#navList .btn{
    display: none;
}

#navList a{
    text-decoration: none;
    color: var(--bs-dark);
    font-size: 1.1rem;
    padding: 0 1rem;
}

#navList a.brands{
    padding: 0;
}

#navBtn{
    display: none;
    font-size: 1.2rem;
}

@media (max-width: 994px){
    #navBrand{
        width: 100%;
        text-align: left;
    }

    #navList{
        display: none;
    }

    #navbar.active #navList{
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 60%;
        max-width: 250px;
        height: 100vh;
        background: var(--bs-white);
        padding: 10px 0;
        z-index: 91;
        box-shadow: -10px 0 3px rgb(0,0,0,0.2);
        transition: all, .4s ease-in-out;
        animation: fadeIn 1 .6s ease-in forwards;
    }

    #navbar.active #navList a{
        display: block;
        width: 100%;
        height: 50px;
        text-align: left;
        font-size: 1.4rem;
        animation: slideInRight 1 .6s ease-out forwards;
    }

    #navbar.active #navList a.brands{
        display: inline-block;
        padding: 0 10px;
        width: auto;
    }

    #navList .btn{
        display: block;
    }

    #navBtn{
        display: block;
        width: 50%;
        text-align: right;
    }
}

#main{
    background-image: url(../img/homem-negocio-trabalhando-em-um-escritorio_23-2148179098.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
}

#header{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(57, 57, 107, 0.9);
    padding: 4rem 0;
}

#header h1,
#header h2{
    text-wrap: wrap;
}

#aboutUs{
    padding: 5rem 0;
    background-color: rgba(255,255,255,0.8);
    background-color: white;
}

#aboutUs h1:after{
    content: "";
    display: block;
    position: relative;
    width: 40%;
    max-width: 100px;
    height: 3px;
    background: #00a;
    margin: 1rem 0;
}

#services{
    padding: 5rem 0;
    background-color: var(--bs-light);
}

#services h1:after{
    content: "";
    display: block;
    position: relative;
    width: 70%;
    max-width: 400px;
    height: 3px;
    margin: 30px auto;
    border-radius: 10px;
    background: rgb(230, 230, 230);
}

#services .card{
    width: 50%;
    padding: 2rem;
}

#services .card .card-title{
    color: #0000cc;
}

#services .card .fa{
    font-size: 1rem;
}

#services .card .card-text{
    color: var(--bs-dark);
}

@media (max-width: 768px){
    #services .card{
        width: 100%;
        padding: 0.8rem;
    }
}

#beneficts{
    padding: 5rem 0;
    background: rgba(255,255,255,0.9);
}

#depoiments{
    padding: 5rem 0;
    background: rgba(57, 57, 107, 0.9);
}

#depoiments .carousel-item .col-md-3{
    opacity: 0;
}

#depoiments .carousel-item.active .col-md-3{
    animation: fadeIn 1 .6s ease-out forwards;
}

#ctaSection{
    padding: 5rem 0;
    background: var(--bs-light);
}

#footer{
    padding: 1rem 0;
    background: #004;
}

#btnToTop{
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateX(150px);
    transition: all, .4s ease-in-out;
}

#btnToTop.active{
    transform: translateX(0);
}