.Lpage {
    background: url('./img/bg_mb.webp') no-repeat center center;
    background-size: cover;
}



.heroFake {
    font-family: sans-serif;
    padding: 20px 0 0 0
}

.heroFake .title {
    font-size: 16px;
    text-align: center;
}

.heroFake button {
    background-color: rgba(193, 40, 114, 1);
    border-color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    font-size: 11pt;
    line-height: normal;
    border: none;
    padding: 12px 55px;
    border-radius: 7px;
    display: flex;
    margin: 10px auto;
}

.heroFake h4 {
    font-size: 25px;
    text-align: center;
    margin: 9px 0 19px 0;
    color: rgba(127, 17, 70, 1);
    font-weight: bold;
    letter-spacing: normal;
    line-height: 1.2;
}

.heroFake .categoryPro .itemCate p {
    padding: 10px 0 25px 0;
    text-align: center;
    font-size: 23px;
}

.desNail {
    font-size: 19px;
    text-align: justify;
    color: rgba(127, 17, 70, 1);
    font-weight: 500;
}

.containerFake {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.logoNails {
    width: 36%;
    display: flex;
    justify-content: center;
    margin: -20px auto 0 auto;
}

.footerNails {
    margin: 15px 0px 0 0px;
    background: #C12872;
    color: #fff;
    text-align: center;
    padding: 25px 0 25px 0;
    font-size: 17px;
}


@media (min-width: 768px) {
    .Lpage {
        background: url('./img/bg_desktop.webp') no-repeat center center;
        background-size: cover;
    }
}

.animate-pulse-custom {
    animation: pulse 2s infinite;
}



@media (min-width: 1024px) {


    .categoryPro {
        display: flex;
        gap: 24px;
    }

    .categoryPro .itemCate img {
        max-height: 325px;
    }

    .logoNails {
        width: 16%;
        display: flex;
        justify-content: center;
        margin: -60px auto 0 auto;
    }

    .heroFake h4 {
        font-size: 53px;
        margin: 20px 0 20px 0;
    }

    .desNail {
        font-size: 23px;
    }

    .footerNails {
        margin: 31px 0px 0 0px;
        font-size: 27px;
        padding: 30px 0 30px 0;
    }
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}