@font-face {
    font-family: 'BeTheBest';
    src: url('/pre_launch/css/Bethebest-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'BeTheBest';
    src: url('/pre_launch/css/Bethebest-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'BeTheBest';
    src: url('/pre_launch/css/Bethebest-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

.title {
    font-family: 'BeTheBest', 'Open Sans', Roboto, Arial, sans-serif;
    font-weight: 700;
}

.paragraph {
    font-family: 'BeTheBest', 'Open Sans', Roboto, Arial, sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    color: white;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    z-index: -1;
}

.form-control::placeholder {
    color: #ccc;
}

.form-control,
.btn {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn:hover {
    background-color: #fff;
    color: #000;
}

.lang-link {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding-bottom: 3px;
    transition: color 0.2s ease;
}

.lang-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.lang-link:hover::after,
.lang-link.active::after {
    width: 100%;
}

.first-letter-featured {
    &::first-letter {
        font-feature-settings: "ss01";
    }

    i {
        font-family: BeTheBestExt;
        font-style: normal;
    }
}

.flag-icon {
    width: 25px;
    height: 25px;
    background-image: url('../imgs/idiomasSkinPageRE.png');
    background-repeat: no-repeat;
    display: inline-block;
    background-size: auto;
}

.flag-es {
    background-position: -4px  -4px;
}
.flag-pt {
    background-position: -33px -4px;
}
.flag-it {
    background-position: -62px -4px;
}
.flag-fr {
    background-position: -91px -4px;
}
.flag-en {
    background-position: -120px -4px;
}

.dropdown-menu-auto {
    min-width: auto !important;
}

@media (max-width: 576px) {
    .logo-centered {
        max-width: 130px;
    }
}