* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Figtree", sans-serif;
}

#header {
    width: 82%;
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translate(-50%, -140%);
    z-index: 49;
    display: flex;
    padding: 13px 23px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #f6f6fd;
    border-radius: 16px;
    background-color: #ffffffbd;
    backdrop-filter: blur(11px);
    animation: slideDown 0.3s ease-out 0.4s forwards;
}
.header-right a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.header-right a span {
    font-size: 12px;
    color: #000;
    font-weight: 300;
}

@keyframes slideDown {
    0% {
        transform: translate(-50%, -100%);
    }
    100% {
        transform: translate(-50%, 0);
    }
}

#mainbg {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-image: url("../assets/images/HomeBG.png");
    background-repeat: no-repeat;
    background-size: auto;
    background-color: #f2f6ff;
    z-index: -1;
}

.wrapper {
    width: 82%;
    height: 100vh;
    margin: 0 auto;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.wrapper::-webkit-scrollbar {
    width: 0px;
}

#hero {
    width: 100%;
    margin-top: 13rem;
}

.hero-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-logo {
    width: 19rem;
    opacity: 0;
    transform: scale(0);
    animation: fadeScaleIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-content {
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    font-size: 15.5px;
    line-height: 21px;
    color: #7a7a7a;
    max-width: 900px;
    text-align: center;

    opacity: 0;
    transform: scale(0);
    animation: contentScaleIn 1.4s forwards;
    animation: contentScaleIn 1s cubic-bezier(0.3, 0, 0.3, 1) 0.3s forwards;
}

@keyframes contentScaleIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.launching-text {
    font-family: "Figtree", sans-serif;
    font-size: 95px;
    font-style: normal;
    font-weight: 800;
    background: linear-gradient(
        90deg,
        var(--color-dark-blue, #0a1a4f) 0%,
        var(--color-mixed, #4b3c88) 50%,
        var(--color-chartreuse-green-48, #805ea8) 100%
    );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -30px;
}

@media (min-width: 1440px) {
}

@media (max-width: 1046px) {
    #header {
        width: 90%;
        padding: 11px 24px;
    }

    #hero {
        margin-top: 13rem;
    }

    .hero-logo {
        width: 17rem;
    }
    .hero-content {
        font-size: 15px;
        max-width: 570px;
    }
    .launching-text {
        font-size: 70px;
    }
}

@media (max-width: 906px) {
    #header {
        width: 95%;
        padding: 11px 24px;
    }

    .header-right a {
        gap: 10px;
    }

    .header-right a span {
        font-size: 11px;
    }
    .header-right a img {
        width: 38px;
        height: 38px;
    }

    #hero {
        margin-top: 13rem;
    }

    .hero-logo {
        width: 15rem;
    }
    .hero-content {
        font-size: 15px;
        max-width: 570px;
    }
    .launching-text {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    #header {
        padding: 11px 24px;
    }

    .header-right a img {
        width: 37px;
        height: 37px;
    }

    .header-left-icon {
        width: 58px;
    }

    .header-right-icon {
        width: 110px;
    }

    .wrapper {
        width: 95%;
        margin: 0 auto;
    }

    #hero {
        margin-top: 13rem;
    }

    .hero-logo {
        width: 14rem;
    }
    .hero-content {
        font-size: 15px;
        max-width: 564px;
    }
    .launching-text {
        font-size: 52px;
        text-align: center;
    }
}

@media (max-width: 425px) {
    #header {
        width: 91%;
        padding: 10px 16px;
        border-radius: 14px;
    }

    .header-right a {
        gap: 10px;
    }

    .header-right a span {
        font-size: 9px;
    }
    .header-right a img {
        width: 35px;
        height: 36px;
    }

    .header-left-icon {
        width: 58px;
    }

    .header-right-icon {
        width: 95px;
    }
    .wrapper {
        width: 94%;
        margin: 0 auto;
    }

    #hero {
        margin-top: 12rem;
    }

    .hero-container {
        gap: 36px;
    }

    .hero-logo {
        width: 10rem;
    }
    .hero-content {
        font-size: 14px;
        max-width: 275px;
    }
    .launching-text {
        font-size: 42px;
    }
}
