@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

body {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

::selection {
    color: #161616;
    background: #666666;
}

nav#menu-top {
    position: relative;
    top: 0;
    left: 0;
    width: 15vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, .4);
    /* backdrop-filter: blur(7px); */
    border-right: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    z-index: 9;
}

nav#menu-top .logo {
    position: relative;
    height: 350px;
    cursor: pointer;
    margin-top: -30px;
}

.btn-open {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 35px;
    height: 35px;
    background-color: rgba(2, 59, 255, 0);
    border: 1px solid #ddd;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    z-index: 9;
    transition: .4s;
}

.btn-open hr {
    width: 15px;
    height: 2px;
    background: #023bfe;
    border: none;
    transition: .4s;
}

.btn-open:hover {
    background-color: rgba(2, 59, 255, 1);
    border: 1px solid #023bfe;
    transition: .4s;
}

.btn-open:hover hr {
    background: #eee;
    transition: .4s;
}

#side-menu {
    position: fixed;
    right: 0;
    width: 0;
    height: 100vh;
    background-color: #023bfe;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 9999;
    transition: .4s;
}

.open {
    width: 44vw !important;
    padding: 50px !important;
}

#side-menu ul {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: flex-end;
    float: bottom;
    right: 100px;
    bottom: 50px;
    opacity: 0;
    transition: 1s;
}

#side-menu ul li {
    font-family: 'Plus Jakarta Display';
    font-size: 28px;
    color: #eee;
}

#side-menu ul li:first-child {
    opacity: .5;
}

#side-menu div.btn-hide {
    position: absolute;
    top: 50px;
    right: 50px;
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#side-menu div.btn-hide .material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    color: #023bfe;
    font-size: 20px;
    margin-right: -2px;
    transition: .4s;
}

header#slogan {
    position: absolute;
    top: 50px;
    left: 20vw;
    height: calc(100vh - 144px);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header#slogan h1 {
    position: fixed;
    left: 20vw;
    font-family: 'Plus Jakarta Display';
    font-weight: normal;
    font-size: 44px;
    white-space: nowrap;
}

header#slogan h2 {
    position: fixed;
    left: 20vw;
    margin-top: 55px;
    font-family: 'Plus Jakarta Display';
    font-weight: normal;
    font-size: 44px;
    color: #023bfe;
    line-height: 1;
    white-space: nowrap;
    margin-left: -2px;
}

.cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    50.01%,
    100% {
        opacity: 0;
    }
}

header#slogan main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header#slogan main p {
    font-family: 'Plus Jakarta Display';
    font-size: 14px;
    width: 28vw;
    color: #666666;
    margin-top: 135px;
}

header#slogan main p span {
    color: #000;
}

header#slogan .btn-scroll {
    position: relative;
    width: 35px;
    height: 35px;
    background-color: #dddddd;
    border: 2px solid #dddddd;
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .4s;
    margin-top: 50px;
}

header#slogan .btn-scroll:hover {
    background-color: rgba(2, 59, 255, 1);
    border: 2px solid #023bfe;
    transition: .4s;
}

header#slogan .btn-scroll:hover {
    background-color: rgba(2, 59, 255, .4);
}

header#slogan .btn-scroll .material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    color: #161616;
    font-size: 20px;
    margin-right: -2px;
    transition: .4s;
}

header#slogan .btn-scroll:hover .material-symbols-outlined {
    color: #023bfe;
    transition: .4s;
}

header#slogan .simbolo {
    position: fixed;
    width: 83%;
    right: -20%;
    bottom: -50%;
}

#pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #161616;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: .4s;
}

#pre-loader img {
    width: 45px;
}