/* header */
#nav-area-fullwidth {
    align-items: center;
}

/* logo */
#nav-area-fullwidth .logo {
    width: auto;
}

#nav-area-fullwidth .logo img {
    height: auto;
    width: 50%;
    margin-left: 0;
    max-width: 240px;
}

/* loading logo */
.loading-screen {
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    max-width: 454px;
    width: 80%;
}

.loading-logo {
    width: 100%;
    height: auto;
    animation: fadeIn 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

/* title */
.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
}

.section-title h2 {
    color: #333;
    margin-bottom: 0;
    position: relative;
    width: 100%;
}

.section-title h2::before {
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    font-size: 60px;
    z-index: -1;
    color: rgba(186, 186, 234, 0.1);
}

.section-title span {
    color: #0000cc;
}

.section-title div {
    border-bottom: 3px solid;
    padding: 0 6em .75em 6em;
    font-weight: 500;
}

.information-section .section-title h2::before {
    content: "Information";
}

@media screen and (max-width: 1023.98px) {
    #nav-area-fullwidth .logo img {
        max-width: 160px;
    }

    .menu-trigger {
        top: 32px !important;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}
