.header-content {
    position: relative;
    width: 100%;
    height: 100vh;
    /* altura da viewport inteira */
    overflow: hidden;
}

.header-content video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: none;
    /* só aparece quando estiver pronto */
}

.header-content .fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 0;
    transition: opacity 1s ease;
}

/* Filtro escuro sobre o vídeo */
.overlay1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
    /* ajuste a opacidade como quiser */
    z-index: 2;
}

.header-content .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    font-family: sans-serif;
    padding: 0 20px;
}

@media (max-width: 500px) {
    .header-content .content {
        margin-top: -180px
    }
}

h1.header-content-title {
    color: #0045FF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .5);
    font-size: 4em;
    font-weight: 900;
    margin-top: 30px;
}

@media (max-width: 1250px) {
    h1.header-content-title {
        font-size: 3em;
    }
}

@media (max-width: 992px) {
    h1.header-content-title {
        font-size: 2em;
    }
}

@media (max-width: 700px) {
    h1.header-content-title {
        font-size: 2em;
        margin-top: 10px;
    }
}

/* navbar */
/* .main-header .fixed-header .header-upper { */
.main-header .header-upper {
    top: 0;
    position: fixed;
    padding-top: 15px;
    background: rgba(0, 0, 0, .3);
    padding-bottom: 15px;
    animation: sticky 1s;
    -webkit-animation: sticky 1s;
    box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
    -webkit-box-shadow: 0px 0px 30px 0px rgb(87 95 245 / 10%);
}

.main-header.fixed-header .header-upper {
    background: rgba(0, 0, 0, .9);
}

body:not(.page-home) .main-header .header-upper {
    background: rgba(0, 0, 0, .9);
}

.header-upper .main-menu .navigation li a {
    color: white;
    font-size: 16px;
    text-transform: uppercase;
}

.header-upper .main-menu .navigation li a:hover,
.header-upper .main-menu .navigation li a.active {
    color: #0045FF;
}

.header-upper .main-menu .navigation li.cliente-dropdown.show a {
    color: #0045FF;
}

.cliente-dropdown .dropdown-menu .dropdown-item {
    padding: 5px 12px;
    color: white !important
}

.cliente-dropdown .dropdown-menu .dropdown-item:hover {
    background: #232528;
    color: white !important
}

.logo-outer .logo {
    max-width: 120px;
}

.logo-mobile img {
    max-width: 120px;
}

.fixed-header .logo-outer .logo {
    max-width: 120px
}

@media only screen and (max-width: 1199px) {
    .main-menu .navigation {
        background: #020202;
    }

    .main-menu .navigation>li:last-child {
        border: none
    }

    .main-menu .navigation li {
        border: none
    }

    .main-menu .navigation>li>a>i {
        display: inline-block;
    }

    .icon-bar {
        background: white;
    }
}

/* carousel */
.event-page-section .container-custom {
    max-width: 1300px;
}

@media(max-width: 1440px) {
    .event-page-section .container-custom {
        max-width: 1100px;
    }
}

@media(max-width: 1200px) {
    .event-page-section .container-custom {
        max-width: 900px;
    }
}

@media(max-width: 1030px) {
    .event-page-section .container-custom {
        max-width: 800px;
    }
}

@media (max-width: 550px) {

    .event-image img,
    .gallery-item img {
        max-height: 165px;
        min-height: 165px;
    }
}

.page-wrapper {
    margin-top: 100px;
}

.page-home .page-wrapper {
    margin-top: 0;
}
