.bg-img {
    overflow: hidden;
    box-sizing: border-box;
    background-image: url('/assets/images/home/bg-image.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

}

#content {
    height: 100vh;
    display: flex;
    width: 100%;
    flex-direction: column;
    padding-right: 100px;
    padding-left: 100px;
    padding-bottom: 24px;
    /* Ensures padding doesn’t increase size */
    box-sizing: border-box;
}

.intro {
    max-width: 640px;
    flex: 1;
    box-sizing: border-box;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.intro-hd {
    font-size: 28px;
    color: white;
    text-align: center;
    font-family: "Inter-SemiBold";
}

.intro-tle {
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
    color: var(--custom-FDFDFD);
    font-family: 'Inter-Regular';
    font-weight: 400;
    line-height: 32px;
}

.intro-inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8px;
    margin-top: 17px;
}

.intro-inner-shield {
    height: 23px;
    width: 23px;
}

.intro-inner-shield>img {
    height: 100%;
    width: 100%;
}

.intro-inner-tle {
    color: var(--custom-FDFDFD);
}

.copy-right {
    display: flex;
    gap: 6px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.copy-right-img {
    height: 24px;
    width: 24px;
}

.copy-right-img>img {
    height: 100%;
    width: 100%;
}

.copy-right-tle,
.intro-inner-tle {
    font-family: 'Inter-Regular';
    font-weight: 400;
    font-size: 16px;
}

.copy-right-tle {
    color: white;
}


@media only screen and (max-width: 700px) {

    #content {
        padding-right: 50px;
        padding-left: 50px;

    }
}


@media only screen and (max-width: 500px) {

    #content {
        padding-right: var(--mobile-padding);
        padding-left: var(--mobile-padding);

    }

    .intro {
        max-width: 358px;
    }

    .intro-hd {
        font-size: 24px;
    }

    .intro-tle {
        margin-top: 12px;
        font-size: 12px;
        line-height: 19.2px;

    }

    .intro-inner-tle {
        font-size: 12px;
    }
}