.wrapper {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;

}

.bgLeft {
    z-index: 1;
    position: absolute;
    top: 2.6rem;
    left: -2.6rem;
    width: calc(100vw * 448/1440);
    aspect-ratio: 477/448;
    object-fit: contain;
}

.bgRight {
    z-index: 1;
    position: absolute;
    top: 27.5rem;
    right: 0;
    width: calc(100vw * 466/1440);
    aspect-ratio: 416/466;
    object-fit: contain;
}

.logo {
    width: 14rem;
    height: 7.8rem;
    margin-top: 7rem;
}

.title {
    font-size: 3rem;
    line-height: 4.4rem;
    margin-top: 3rem;
    font-weight: bold;
}

.subTitle {
    font-size: 1.8rem;
    line-height: 2.6rem;
    margin-top: 1rem;
}

.imgApp {
    z-index: 5;
    width: 42rem;
    height: 44.5rem;
    object-fit: contain;
    margin: 3rem 0;
}

.rowBtn {
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;

}

.rowBtn a img {
    width: 18.3rem;
    height: 5.7rem;
}

.rowBtn a img:first-child {
    margin-right: 1rem;
}


.rowBtn>img {
    width: 18.3rem;
    height: 5.7rem;
}

.rowBtn>img:first-child {
    margin-right: 1rem;
}

.titleTerm {
    font-size: 4rem;
    line-height: 4rem;
    margin: 10rem 0 4rem;
    font-weight: bold;
}

.wrapTerm {
    width: 64rem;
    height: 40rem;
    overflow-y: scroll;
    border-radius: 4rem;
    border: 0.5rem solid var(--text-color);
    padding: 3rem;
    padding-bottom: 0;

}

.wrapTerm .termSection {
    font-size: 1.5rem;
    line-height: 2.1rem;
    font-weight: 900;
}

.wrapTerm .termContent {
    font-size: 1.5rem;
    line-height: 2.5rem;
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.wrapTerm::-webkit-scrollbar {
    display: none;
}

.btnMail {
    background: white;
    border-radius: 3rem;
    color: var(--bg-default);
    display: flex;
    font-size: 1.6rem;
    line-height: 2.4rem;
    align-items: center;
    justify-content: center;
    padding: 1.7rem 4.4rem 1.9rem;
    font-weight: bold;
    margin: 10rem 0;
    text-decoration: none;

}

.btnMail>img {
    width: 2.2rem;
    height: 2rem;
    object-fit: contain;
    margin-right: 1rem;
}

.wrapLink {
    display: flex;
    margin: 3rem 0;
}

.wrapLink a {
    color: white;
    font-size: 1.6rem;
    line-height: 2.4rem;
    font-weight: 300;
    text-decoration: underline;
    text-transform: uppercase;
}

.wrapLink>a:first-child {
    margin-right: 3rem;
}

.wrapper>p:last-child {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.7rem;
}

@media screen and (max-width: 990px) {
    .wrapper {
        display: flex;
        width: 100%;
        background: var(--bg-default);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        color: white;
        padding: 0 2rem;
    }

    .bgLeft {
        display: none;
    }

    .bgRight {
        display: none;
    }

    .logo {
        width: 10.8rem;
        height: 6rem;
        margin-top: 3rem;
    }

    .title {
        font-size: 2.5rem;
        line-height: 3.6rem;
        margin-top: 3rem;
        font-weight: bold;
    }

    .subTitle {
        font-size: 1.5rem;
        line-height: 2.1rem;
        margin-top: 1rem;
    }

    .imgApp {
        z-index: 5;
        width: 100%;
        aspect-ratio: 344/325;
        object-fit: contain;
        margin: 0 0 3rem 0;
    }

    .rowBtn {
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .rowBtn>img {
        width: 14.77rem;
        height: 4.6rem;
    }

    .rowBtn>img:first-child {
        margin-right: 1rem;
    }

    .titleTerm {
        font-size: 3rem;
        line-height: 3rem;
        margin: 6rem 0 3rem;
        font-weight: bold;
    }

    .wrapTerm {
        width: 100%;
        height: 40rem;
        max-width: 64rem;
        overflow-y: scroll;
        border-radius: 2rem;
        border: 0.4rem solid white;
        padding: 2.9rem 2rem 0 2rem;
    }

    .wrapTerm.termSection {
        font-size: 1.5rem;
        line-height: 2.1rem;
    }

    .wrapTerm.termContent {
        font-size: 1.5rem;
        line-height: 2.5rem;
        margin-top: 0.7rem;
        margin-bottom: 3rem;
    }

    .btnMail {
        background: white;
        border-radius: 3rem;
        color: rgb(73, 133, 254);
        display: flex;
        font-size: 1.6rem;
        line-height: 2.4rem;
        align-items: center;
        justify-content: center;
        padding: 1.7rem 4.4rem 1.9rem;
        font-weight: bold;
        margin: 6rem 0;
        text-decoration: none;
    }

    .btnMail>img {
        width: 2.2rem;
        height: 2rem;
        object-fit: contain;
        margin-right: 1rem;
    }

    .wrapLink {
        display: flex;
        margin: 3rem 0;
    }

    .wrapLink a {
        color: white;
        font-size: 1.2rem;
        line-height: 1.7rem;
        font-weight: 300
    }

    .wrapLink>a:first-child {
        margin-right: 3rem;
    }

    .wrapper>p:last-child {
        margin-bottom: 2rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }
}