body {
    font-family: 'Arial' !important;
    font-style: normal !important;
    display: flex;

    /*overflow: hidden;*/
    height: 100vh;
    flex-direction: column;
}
body .header {
    display: flex;
    padding: 24px 256px 0 256px;
}
body .header .logo {
    height: 32px;
}

body .header .langs button {
    font-family: 'Arial';
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: flex;
    align-items: center;
    color: #233B53;
    border: 0;
    background: none;
}
body .header .langs button::after {
    color: #E34234;
    margin-left: 4px;
}

.content {
    padding: 50px 16px;
    margin: 0 auto;
    flex: 1;
}
.content h1 {
    color: #2C384B;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    max-width: 662px;
}
.content h1 .word {
    color: #E02C25;
}

.description {
    font-size: 18px;
    line-height: 150%;
    color: #2C384B;
    max-width: 662px;
}

.submitted-notify {
    font-weight: 600;
}

footer {
    background-image: url(../assets/apay_bg.jpg);
    padding: 32px 256px;
    background-position: center;
    display: flex;
    align-items: center;
    /*position: fixed;*/
    /*bottom: 0;*/
    width: 100%;
}
footer .copyright {
    font-weight: 400;
    font-size: 12px;
    line-height: 200%;
    color: #A1A1A1;
}
footer img{
    height: 32px;
    margin-right: 16px;
    margin-left: auto;
}
footer .solution {
    font-weight: 400;
    font-size: 12px;
    line-height: 200%;
    color: #FFFFFF;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    /*width: 968px;*/
    /*height: 1310px;*/
    right: 0;
    top: 0;
    z-index: -1;
    background-image: url(../assets/frame.png);
    background-size: 968px 1310px;
    background-repeat: no-repeat;
    background-position: right 0 top 0;
}

@media screen and (max-width: 992px) {
    body {
        width: fit-content;
    }
    body .header {
        padding: 16px 16px 0 16px;
    }

    .content h1 {
        max-width: 100%;
        font-size: 24px;
    }
    .description {
        max-width: 100%;
        font-size: 16px;
    }
    footer {
        padding: 24px;
        flex-direction: column;
        align-items: center;
    }
    footer img{
        margin: 0;
    }
    footer .solution{
        margin: 8px 0;
    }

    footer :nth-child(1) { order: 3; }
    footer :nth-child(2) { order: 1; }
    footer :nth-child(3) { order: 2; }
    .circle {
        display: none;
    }
}
