@charset 'UTF-8';

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .imglog {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
}

header .logo {
    position: relative;
    font-size: 2em;
    color: #D0C7C7;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
}

header .toggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(../../images/menu/mnu_menu.png);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .toggle.active {
    background: url(../../images/menu/mnu_close_1.png);
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    background-size: 25px;
}

header .toggle::before {
    content: 'menu';
    position: absolute;
    right: 45px;
    text-transform: uppercase;
    color: gray;
    letter-spacing: 2px;
    font-size: 0.7em;
    padding: 2px 5px;
    background-color: white;
}

header .toggle.active::before {
    content: 'Close';
}

section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 5%;
    height: 100%;
    backdrop-filter: blur(15px);
    z-index: 1;
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    transition-delay: 1s;

}

section.active .glass {
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.1);
    transition-delay: 0s;

}

section .content {
    position: relative;
    z-index: 10;
    text-align: center;
    transition: 0.5s;
    transition-delay: 1s;
}

section.active .content {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-200px);
    transition-delay: 0s;
}

section .content h2 {
    position: relative;
    color: white;
    font-size: 10vw;
    line-height: 0.55em;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Dancing Script', sans-serif;
}

section .content h2 span {
    font-size: 0.2em;
    font-weight: 300;
    letter-spacing: 5px;
    background-color: #fff;
    color: #111;
    padding: 0 10px;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

section .content h3 {
    position: relative;
    color: white;
    font-size: 10vw;
    line-height: 0.55em;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    font-family: 'Dancing Script', sans-serif;
}

section .content span {
    font-size: 0.2em;
    font-weight: 300;
    letter-spacing: 5px;
    background-color: #d0c7c74b;
    color: #fcf9f9;
    padding: 0 10px;
    line-height: 0.15em;
    text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    /* text-transform: uppercase; */
}


section .sci {
    position: absolute;
    bottom: 40px;
    right: 100px;
    display: flex;
    z-index: 100;
}

section .sci li {
    list-style: none;
    margin: 5px;
    padding: 0 6px;
    background-color: #fff;
    transition: 0.5s;
    transition-delay: calc(0.2s * var(--i));
}

section.active .sci li {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
}

section .sci li a {
    color: #111;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

section .navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

section .navigation li {
    list-style: none;
    text-align: center;
    margin: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: translateX(200px);
    transition-delay: calc(0.2s * var(--i));
}

section.active .navigation li {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}

section .navigation li a {
    color: #111;
    font-size: 1.5em;
    letter-spacing: 4px;
    text-decoration: none;
    font-weight: 300;
    text-transform: uppercase;
    background-color: #fff;
    padding: 4px 10px;
    display: inline-block;
}

section .navigation li a:hover {
    background-color: #111;
    color: #fff;
    letter-spacing: 10px;
    text-transform: lowercase;
}

@media(max-width: 991px) {
    header {
        padding: 20px;
    }

    section .sci {
        bottom: 20px;
        right: 20px;
    }

    .glass {
        width: 50%;
    }

    section .content h2 {
        font-size: 18vw;
    }

    section .content h2 span {
        font-size: 0.12em;
        letter-spacing: 2px;
        padding: 0 5px;
    }
}

/*
*/