body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background-size: cover;
    color: #fff;
    line-height: 1.5;
    margin: 0;
    background-color: #131c39;
}
a{
    display: inline-block;
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    display: inline-block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    background: linear-gradient(to bottom, #feffaa 0, #faffdb 29%, #ffbb43 80%, #fede5e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: .5rem;
    line-height: normal;
    text-transform: uppercase;
}
h1 {
    font-size: 1.5em;
}
h2 {
    font-size: 1.2em;
}
h3 {
    font-size: 1em;
}
a{
    color: #ffe748;
}
p{
    margin-bottom: 1rem;
}

ul,ol{
    margin-bottom: 1rem;
}
ul{
    list-style: inherit;
}
ul li{
    margin-bottom: 10px;
}
.only-mobile{
    display: none;
}
table{
    border-collapse: collapse;
}
table th,
table td{
    border: 1px solid rgba(255,255,255,.2);
    text-align: left;
    padding: 5px;
}
.button__wap,
.logo{
    text-align: center;
}
.site-content{
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 100;
    padding: 0 15px;
}
.intro{
    text-align: center;
    padding-top: 30px;
}
.intro img{
    width: 85%;
}
.footer{
    text-align: center;
    padding: 0 0 30px 0;
    font-size: 12px;
}
.footer-menu{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 12px;
}
.footer-menu>li{
    padding: 0 10px;
    margin: 0;
    border-right: 1px solid rgba(255,255,255,.1);
}
.footer-menu>li>a{
    color: #fff;
}
.footer-menu>li:first-child{
    padding-left: 0;
}
.footer-menu>li:last-child{
    padding-right: 0;
    border: none;
}
.icon-box{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    list-style: none;
    gap: 15px;
    padding: 0;
    margin: 20px 0;
}
.icon-box>li{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
}
.icon-box>li img{
    width: 50px;
}
.intro.mobile{
    padding: 0;
    margin-top: -30px;
}
.intro.mobile img{
    width: 100%;
}
.rem{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
}
.rem img{
    width: 100%;
}
.logo-pc{
    margin-top: -30px;
}
.logo{
    display: block;
    position: relative;
    width: 260px;
    margin: 0 auto;
    overflow: hidden;
}
.logo .text, .logo .xoay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.logo .text {
    z-index: 2;
    width: 135px;
    left: 62px;
    top: 55px;
    overflow: hidden;
}
.logo .xoay {
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
    width: 82px;
    top: 45px;
    left: 52px;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes shine {
    0% {
        top: -120%;
        left: -120%;
    }
    10% {
        left: 100%;
        top: 100%;
    }
    20% {
        left: 100%;
        top: 100%;
    }
    100% {
        left: 100%;
        top: 100%;
    }

}
@media (max-width: 480px) {
    .rem{
        display: none;
    }
    .only-mobile{
        display: block;
    }
    .intro.pc{
        display: none;
    }
    .button__wap img{
        width: 80%;
    }
    .footer-menu{
        display: block;
        margin: 10px 0;
    }
    .footer-menu>li{
        display: inline-block;
    }
    .icon-box{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        grid-gap: 10px;
    }
    .icon-box>li{
        white-space: nowrap;
        display: block;
        text-align: center;
    }
    .icon-box>li img{
        width: 30px;
        margin: 0 auto;
    }
    .icon-box>li>span{
        display: block;
    }
    .logo-pc{
        display: none;
    }
}