@font-face {
    font-family: 'Avenir';
    src: URL('fonts/Avenir.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Light';
    src: URL('fonts/Avenir-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Avenir-Bold';
    src: URL('fonts/Avenir-Bold.ttf') format('truetype');
}

:root {
    --color-white: #FFFFFF;
    --color-title-blue: #0F5397;
    --text-color: #605E5E;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    font-family: Avenir;
    vertical-align: baseline;
    color: var(--text-color);
}

body {
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-family: Avenir-Light;
    vertical-align: baseline;
    color: var(--color-white) !important;
}

.one-text{
    font-family: Avenir-Light;
        vertical-align: baseline;
        color: var(--color-white) !important;
}

.bg-linear {
    background: rgb(24, 84, 161);
    background: linear-gradient(180deg, rgba(24, 84, 161, 1) 0%, rgba(15, 83, 151, 1) 80%);
    color: var(--color-white) !important;
}

.color-white {
    color: var(--color-white) !important;
}

.color-title-blue {
    color: var(--color-title-blue) !important;
}


.navbar img {
    height: 100px;
}

#banner {
    background: url(../../assets/fundo-carro.jpg);
    background-size: 100% 100%;
    height: auto;
    width: auto;

}

#banner .nav-link:not(.dropdown-toggle) {
    color: var(--color-white) !important;
}

#banner .nav-link.dropdown-toggle {
    background-color: #fff;
    color: black;
    border-radius: .25rem;
}

.f10 {
    font-size: 10px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f20 {
    font-size: 20px;
}

.f50 {
    font-size: 50px;
}

.title {
    font-size: 50px;

    text-transform: uppercase !important;
    font-family: Avenir-Bold;
}

.title:not(.color-white) {
    color: var(--color-title-blue) !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.subtitle {
    font-size: 20px;
    font-family: Avenir-Bold;
    padding: 1rem 0 1rem 0;
}

.subtitle:not(.color-white) {
    color: var(--color-title-blue) !important;
}

.subtitle2 {
    font-size: 24px;
    text-transform: uppercase !important;
    font-family: Avenir-Bold;
}

.subtitle2:not(.color-white) {
    color: var(--color-title-blue) !important;
}

.footer-title {
    font-size: 14px;
    font-family: Avenir-Bold;
    color: var(--color-white) !important;
    text-transform: uppercase !important;
}

.imgtext {
    color: var(--color-white) !important;
    font-size: 13px;
}

.addonimg {
    width: 300px;
    height: 305px;
}

.footer-container {
    background-color: var(--color-title-blue) !important;
    color: var(--color-white) !important;
}

.footer-container .nav-link {
    color: var(--color-white) !important;
    padding: 0;
    font-size: 14px;
    font-family: Avenir-Bold;
}

.footer-container .linkedin-icon {
    -webkit-filter: invert(100%);
    /* safari 6.0 - 9.0 */
    filter: invert(100%);
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.footer-container {
    text-align: center;
}

.footer-container hr {
    border: 2.5px solid var(--color-white);
    opacity: 1;
}

.footer-text {
    font-family: Avenir-Bold;
}

.footer-container a {
    color: var(--color-white) !important;
    text-decoration: none;
}

.chevron-compact-down-icon {
    -webkit-filter: invert(100%);
    /* safari 6.0 - 9.0 */
    filter: invert(100%);
    position: absolute;
    margin: auto;
    bottom: 2rem;
    left: 50%;
    height: 50px;
    display: none;
}

.vjs-poster.vjs-poster.vjs-poster {
    display: none;
}

video {
    border: 2px solid var(--color-title-blue);
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5;
    color: var(--text-color);
}


#scroll-link-controlelr {
    position: fixed;
    top: 45%;
    right: 0;
    display: grid;
    z-index: 99999;
}

@media (min-width: 992px) {
    .title {
        font-size: 60px;
    }

    .chevron-compact-down-icon {
        display: block;
    }

    #banner {
        background: url(../../assets/fundo-carro.jpg);
        background-size: 100% 100%;
        height: 100vh;
        width: 100vw;
        display: grid;

    }

    #banner .navbar {
        max-height: 130px;
    }

    .page-container {
        max-width: 980px;
    }

    .footer-container {
        text-align: left;
    }
}