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

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

#header {
    width: 88%;
    height: 72px;
    position: fixed;
    top: 1.3rem;
    left: 50%;
    transform: translate(-50%);
    z-index: 49;
    display: flex;
    padding: 13px 23px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgb(223, 223, 247);
    border-radius: 16px;
    background-color: #ffffffbf;
    backdrop-filter: blur(10px);
}
.header-right a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 16px;
}

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

#mainbg {
    width: 100%;
    height: 100vh;
    position: fixed;
    background-image: url("../assets/images/background.png");
    background-repeat: no-repeat;
    background-size: 100% 120%;
    background-position: 0rem -2rem;
    z-index: -1;
}

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

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

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

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

.hero-logo {
    width: 150px;
    position: sticky;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%);
    z-index: 2;
}

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

.arc-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 174.4px;
    height: 197px;
    transform: translate(-50%, -50%);
    animation: spin 2s linear infinite;
    overflow: hidden;
    border-radius: 31%;
}

.arc-wrapper .arc {
    width: 237px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.arc-wrapper .arc .arc-img {
    width: 100%;
    transform: rotate(-64deg);
    margin-top: -18px;
    margin-right: 55px;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-content {
    font-weight: 300;
    font-size: 16px;
    line-height: 17px;
    color: rgb(34, 61, 115);
    text-align: center;
    max-width: 1300px;
}

.launching-text {
    font-size: 63px;
    font-style: normal;
    font-weight: 700;
    background: radial-gradient(
        104% 100% at 55.1% 50%,
        #221d58 0%,
        rgba(36, 90, 199, 0.5) 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: 9.5rem;
    }

    .hero-logo {
        width: 152px;
    }
    .hero-content {
        font-size: 15px;
        max-width: 900px;
        font-weight: 400;
    }
    .launching-text {
        font-size: 65px;
    }

    #mainbg {
        background-position: 0rem 0rem;
        background-size: 101% 106%;
    }
}

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

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

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

    #mainbg {
        background-position: 0rem 0rem;
        background-size: 103% 112%;
    }

    #hero {
        margin-top: 10rem;
    }

    .hero-logo {
        width: 9.6rem;
    }
    .hero-content {
        font-size: 15px;
        max-width: 900px;
        font-weight: 400;
    }
    .launching-text {
        font-size: 64px;
    }
}

@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;
    }

    #mainbg {
        background-position: 0rem 0rem;
        background-size: 103% 112%;
    }

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

    #hero {
        margin-top: 9.8rem;
    }

    .hero-logo {
        width: 9.6rem;
    }
    .hero-content {
        font-size: 15px;
        max-width: 720px;
        font-weight: 300;
    }
    .launching-text {
        font-size: 46px;
        text-align: center;
    }
}

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

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

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

    #mainbg {
        background-position: 0rem 0rem;
        background-size: 120% 102%;
    }
    .wrapper {
        width: 94%;
        margin: 0 auto;
    }

    #hero {
        margin-top: 8rem;
    }

    .hero-container {
        gap: 36px;
    }

    .hero-logo {
        width: 9.6rem;
    }
    .hero-content {
        font-size: 14px;
        max-width: 345px;
        font-weight: 400;
    }
    .launching-text {
        font-size: 44px;
        margin-top: -11px;
    }
}
