::-webkit-scrollbar {
    width: 15px;
}
::-webkit-scrollbar-thumb:hover {
    background: #D3D3D3;
}
::-webkit-scrollbar-thumb {
    background: #A8A8A8;
    border-radius: 0.25rem;
}
::-webkit-scrollbar-track {
    background: #F1F1F1;
}

.gradient-animation-god {
    background: linear-gradient(90deg,
                                rgba(255, 0, 0, 1) 0%,
                                rgba(255, 154, 0, 1) 10%,
                                rgba(208, 222, 33, 1) 20%,
                                rgba(79, 220, 74, 1) 30%,
                                rgba(63, 218, 216, 1) 40%,
                                rgba(47, 201, 226, 1) 50%,
                                rgba(28, 127, 238, 1) 60%,
                                rgba(95, 21, 242, 1) 70%,
                                rgba(186, 12, 248, 1) 80%,
                                rgba(251, 7, 217, 1) 90%,
                                rgba(255, 0, 0, 1) 100%
                            );
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
    min-height: 800px;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

body {
    font-family: 'Audiowide';
}

.bg-body-tertiary {
    --bs-bg-opacity: 1;
    width: 100%;
    background-color: #FFFFFF !important;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
    z-index: 1000;
    position: fixed;
    padding: 5px 40px;
}

.navbar-brand img {
    width: 140px;
}

.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: 0;
    margin-left: 0;
}

.row>* {
    padding-right: 0;
    padding-left: 0;
}

.btn-login-default {
    width: 100%;
    padding: 2px 10px 2px 10px;
    background: linear-gradient(45deg, #4B90F5, #005ADE);
    color: #FFFFFF;
    border-radius: 100px;
    transition: .6s;
}

.btn-login-default:hover {
    box-shadow:rgb(29 120 255 / 50%) 0px 0px 0px 3px;
    color: #F9F9F9;
}

.conteudo {
    background: linear-gradient(to bottom, gainsboro, #F4F4F4, #FFFFFF);
    width: 100%;
    height: auto;
    text-align: left;
    padding: 0px;
}

.content-0 {
    background: url('../images/background-top-home.jpg') no-repeat /*fixed*/ #ffffff;
    color: #f1f1f1;
    width: 100%;
    height: 100%;
    padding: 40px;
    background-size: cover;
    background-position: bottom;
}

.content-default {
    width: 100%;
    min-height: 340px;
    height: auto;
    padding: 50px 40px 10px 40px;
}

#about-us {
    background: #005ADE;
    color: #FFFFFF;
    background-size: cover;
}

#team{
    background: url('../images/garage.png') no-repeat fixed #ffffff;
    color: #FFFFFF;
    background-size: cover;
    text-align: center;
}

#contact {
    background: /* url('../images/background-contact.png') no-repeat fixed*/ #ffffff;
    color: #08101c;
    background-size: cover;
}

#rodape {
    background: url('../images/god_is_our_strength.png') no-repeat;
    min-height: 800px;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 650px) {
    #rodape {
        background: url('../images/god_is_our_strength-mobile.png') no-repeat;
        min-height: 800px;
        background-size: cover;
        background-position: center;
    }
}

#copy {
    padding: 10px;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.container-text-home {
    padding-top: 200px;
    position: sticky;
}

.text-home {
    font-size: 6rem;
}

.title-shadow {
    text-shadow: 1px 3px 6px #042147;
}

.truck-0 {
    width: 100%;
    position: relative;
    bottom: 100px;
}
.description-work {
    text-align: center;
    padding: 40px;
}

.box-items {
    margin: 10px;
    color: #ffffff;
    background: rgb(0 0 0 / 30%);
    min-height: 300px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    text-align: center;
    padding: 5px;
    border-radius: 20px;
}

.box-items i {
    font-size: 60px;
}

.intern-box {
   background: radial-gradient(transparent, #0a1f6c);
    min-height: 290px;
    padding: 90px 10px 10px 10px;
    border-radius: 15px;
}

.card-team {
    width: 250px;
    height: 250px;
    color: #ffffff;
    padding: 10px;
    border-radius: 168px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    margin-top: 150px;
}

.card-team span {
    font-size: 1.5rem;
}

.card-team img {
    width: 70%;
    border-radius: 200px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    box-shadow: rgba(255, 255, 255, 80%) 0px 0px 0px 3px;
    transition: 1.5s;
    margin-bottom: 10px;
}

.card-team img:hover {
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
    box-shadow: rgb(0 90 255) 0px 3px, rgb(0 90 222) 2px 3px, rgb(0 90 222) 3px 0px 0px 0px, rgb(255 255 255) 0px 0px 0px 3px;
}