.tem-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 70px;
    width: 100%;
    height: 100dvh;
    font-family: 'Helvetica Neue LT Std';
}

.tem-line {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

.tem-txt {
    font-weight: 100;
    font-size: 28px;
    display: flex;
    align-items: center;
}

.tem-txt--l {
    justify-content: flex-end;
}

.tem-logo img {
    margin: auto;
    width: auto;
    height: 45px;
}

.tem-copyright {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 100;
}

@media screen and (max-width: 1280px) {
    .tem-txt {
        font-size: 28px;
    }

    /*.tem-logo img {*/
    /*    height: 45px;*/
    /*}*/
}

@media screen and (max-width: 1024px) {
    .tem-wrap {
        padding: 40px 20px 20px;
    }

    .tem-line {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        height: 100%;
    }

    .tem-txt {
        display: flex;
        font-size: 18px;
        align-items: center;
    }

    .tem-txt--l {
        justify-content: flex-end;
    }

    .tem-logo img {
        height: 34.5px;
    }

    .tem-copyright {
        bottom: 20px;
    }
}