
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}
section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.glass {
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    z-index: 1;
    backdrop-filter: blur(15px);
    box-shadow: 10px 0 15px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    transition-delay: 0s;
}
section.active .glass {
    width: 100%;
    backdrop-filter: blur(120px);
    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;
    z-index: 10;
    color: #fff;
    font-size: 5vw;
    line-height: 0.55em;
    text-shadow: 3px 3px 0 rgb(86, 9, 138);
    transform: translateY(200px);
}
section .content h2 span {
    font-size: 0.2em;
    font-weight: 300;
    letter-spacing: 5px;
    color: #fff;
    padding: 0 10px;
    text-shadow: 2px 2px 0 rgb(86, 9, 138);
    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;
    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: #fff;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}


.hero {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -100;

}
.logo {
    width: 100px;
    cursor: pointer;
    z-index: 100;
}
.navbar {
    width: 85%;
    height: 15%;
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: space-between;
}
.show-btn {
    color: #fbfcfd;
    padding: 10px 25px;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
}
.show-btn:hover {
    color: rgb(214, 192, 228);
}

section.active .container {
    opacity: 1;
    visibility: visible;
    top: 50%;
    left: 50%;
}

section .container {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%,-50%);
    width: 410px;
    background: rgba(0,0,0,0.3);
    padding: 30px;
    box-shadow: 0 0 8px rgba(0,0,0,0.1);
    z-index: 5;
    border-radius: 10px;
    transition: 0.3s;
    transition-delay: 1s;
}
section .container .text {
    font-size: 35px;
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
section .container .data {
    margin-top: 20px;
}
section .container .data form {
    height: 100%;
    width: 100%;
    margin: 40px 0;
}
section .container  img{
    width: 100px;
    display: block;
    text-align: center;
    margin: auto;
}
form .group label {
    font-size: 18px;
    color: #fff;
}
form .group input {
    width: 100%;
    height: 30px;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid lightgray;
    border-radius: 10px;
    margin-bottom: 10px;
}
.container .btn{
    width: 100%;
    height: 100%;
    padding-left: 10px;
    font-size: 17px;
    border: 1px solid lightgray;
    margin-top: 10px;
}
.container .group button {
    height: 30px;
    background: transparent;
    color: white;
    border-radius: 10px;
}
.container .group button:hover {
    color: rgb(214, 192, 228);
}
.container .group h5 {
    font-size: 12px;
    color: white;
    padding: 0 10px;
    margin-bottom: 10px;
}
.container .close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    cursor: pointer;
    color: #fff;
}
.container .close-btn:hover {
    color: red;
}
i {
    margin-right: 10px;
    margin-bottom: 5px;
}