*,
html {
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    position: relative;
    letter-spacing: 1.2px;
    line-height: 1.3;
    font-family: Inter;
}

body {
    width: 100%;
    height: 100vh;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
}

.background-container img {
    object-fit: cover;
    width: 100%;
    height: 100vh;
}

.background-container .bg-mb {
    width: 100%;
    height: max-content;
    display: none;
}

.background-container .bg-pc {
    display: block;
    width: 100%;
    height: max-content;
}

.logo-company {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    margin: 50px auto 20px;
}

.logo-company .logo {
    width: 500px;
    height: auto;
}

.btn-accept {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo-club {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: auto;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.btn-accept img {
    width: 80%;
    max-width: 530px;
    height: auto;
}

.btn-accept .btn_act {
    background-image: url("./../images/btn_home.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 20px 30px 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin: -20px auto 10px;
    color: #fff;
    animation: zoom-in-zoom-out 1s ease infinite;
}

.nhapnhay {
    animation: my 1s infinite;
    text-align: center
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
        color: #fff;
    }

    50% {
        transform: scale(1.025, 1.025);
        color: #FF9800;
    }

    100% {
        transform: scale(1, 1);
        color: #fff;
    }
}

.wp-footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.tt-footer {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 0px;
}

.footer-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0px;
    gap: 30px
}

.footer-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
    gap: 10px;
}

.footer-item p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 1024px) {
    .footer-group {
        width: 90%;
        gap: 0px;
    }

    .footer-item p {
        color: #fff;
        font-size: 12px;
        font-weight: 400;
    }

    .footer-item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 200px;
        gap: 0px;
    }
}

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

    .footer-item {
        width: unset;
        padding: 0px 20px;
    }

    .footer-item p {
        display: none;
    }


    .btn-accept img {
        width: 80%;
        max-width: 450px;
        height: auto;
    }
}

@media screen and (max-width: 500px) {
    .footer-group {
        width: 95%;
        gap: 2px;
    }

    .footer-item {
        width: auto;
        padding: 0px 10px;
    }

    .footer-item p {
        display: none;
    }

    .footer-item img {
        height: 40px;
    }

    .btn-accept img {
        width: 80%;
        max-width: 350px;
        height: auto;
    }

    .btm-accept .btn_act {
        font-size: 10px;
    }

    .logo-company {
        width: 50%;
    }


}