/* home */
section.home_cover centerwrap{
        max-width: 100%;
}

section.home_cover {
        text-align: center;
        overflow: hidden;
}
section.home_cover .photo{
        width: 100%;
        background-image: url(../images/home/cover_pc.png);
        padding-bottom: 48%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
}
section.home_cover .photo .pets{
        width: 100%;
        background-image: url(../images/home/cover_pets_pc.png);
        height: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: absolute;

}

section.home_bg_bottom{
    background-image: url(../images/home/bg_bottom.jpg);
    text-align: center;
    background-position: center bottom;
    background-size: 100% auto;
    background-repeat: no-repeat;
    min-height: 69vw;
    padding-bottom: 250px;
}

.petPulse{
    animation: petPulse 15s infinite ease-in-out;
    transform-origin: center center;
}

@keyframes petPulse{
    0%{
        opacity: 0;
        transform: scale(0.87);
    }
    5%{
        opacity: 1;
        transform: scale(0.89);
    }
    90%{
        opacity: 1;
        transform: scale(1.1);
    }
    100%{
        opacity: 0;
        transform: scale(1.15);
    }
}
section.home_brand{
        text-align: center;
}
section.home_brand h2{
        color: #FFF;
        font-size: 31px;
        letter-spacing: 5px;

}
section.home_brand .text{
        text-align: center;
        color: #FFF;
        line-height: 1.8;
        font-size: 20px;
}


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

    section.home_cover .photo{
        width: 100%;
        background-image: url(../images/home/cover_m.png);
        padding-bottom: 75%;
        background-size: 197%;
        background-position: center top 36%;
    }
    section.home_bg_bottom{
        background-image: url(../images/home/bg_bottom_m.jpg);
 
    }


    section.home_brand .text {
        font-size: 16px;
    }
    section.home_cover .photo .pets{
        width: 150%;
        height: 150%;
        left: -25%;
        top: -25%;

    }
}