.banner-placeholder {
    height: 480px;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    z-index: 0;
    background-color: #111;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: screen;
    z-index: 0;
}

.banner-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 2;
}

.banner-pretitle {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border: 1px solid #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0.05);
}

.banner-pretitle .dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    margin-left: 8px;
}

.en .dot {
    margin-left: 0px;
    margin-right: 8px;
}

.banner-title {
    max-width: 380px;
    font-size: 36px;
    font-weight: bold;
    line-height: 1.6;
    margin: 0 auto;
}

.en .banner-title {max-width: 460px;}

.banner-subtitle {
    max-width: 770px;
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.85;
    margin: 0 auto;
}

.banner-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.banner-buttons a {
    padding: 8px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 80px;
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
    white-space: nowrap;
    min-width: 240px;
}

.btn-white {
    background-color: white;
    color: #dc3545;
    border: 2px solid white;
}

.btn-transparent {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}
.btn-transparent:hover {
    color: #dc3545;
}

.banner-buttons a:hover {
    opacity: 0.9;
}


.blurred-words {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.blur-word {
    position: absolute;
    font-size: 22px;
    color: white;
    /* opacity: 0.3; */
    filter: blur(4px);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
}

.blur-word:nth-child(1) {
    top: 20%;
    right: 15%;
}

.blur-word:nth-child(2) {
    top: 22%;
    left: 15%;
}

.blur-word:nth-child(3) {
    bottom: 20%;
    right: 20%;
}

.blur-word:nth-child(4) {
    bottom: 15%;
    left: 20%;
}

.blur-word:hover {
    filter: blur(0);
    opacity: 1;
}


/* navbar */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

#header .scroll-hidden {
    display: none;
}

#header.scrolled .default {
    display: none;
}

#header.scrolled .scroll-hidden {
    display: inline;
}
nav.navbar.bootsnav {
    background-color: #F5F5F5;
}
#header.scrolled nav.navbar.bootsnav {
    background-color: #D53037;
    transition: background-color 0.3s ease;
}
nav.navbar.bootsnav ul.nav > li > a {
    color: #414141;
}
#header.scrolled nav.navbar.bootsnav ul.nav > li > a {
    color: #F5F5F5;
}
#header.scrolled nav.navbar.bootsnav ul.nav > li > a:hover {
border-bottom-color: #F5F5F5;
}
.attr-nav > ul > li > a {
    color: #D53037;
}
#header.scrolled .attr-nav > ul > li > a {
    color: #F5F5F5;
}