.quote{
    position: relative;
    text-align:center;

    .ing{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        font-size:48px;
        font-weight: 500;
        .img{
            max-width:300px;
            margin-bottom:50px
        }
    }
}

.float_btn{
    position:fixed;
    width:100px;
    height:100px;
    right:50px;
    bottom:50px;
    border-radius:50%;
    box-shadow: 0px 0px 4px 3px #cbcbcb;
    background-color:#fff;
    text-align: center;
    z-index:100;
    a{
        .info_box{
            position:absolute;
            width:100%;
            top:50%;
            left:50%;
            transform: translate(-50%,-50%);
            img{
                width:45px;
                height:45px;
            }
            p{
                margin-top:5px;
                margin-bottom:0;
                font-size:10px;
                font-weight:700;
            }
        }
    }

}

@media(max-width:480px){
    .float_btn{
        width:60px;
        height:60px;
        right:20px;
        bottom:20px;
        img {
        width: 40px;
        height: 40px;
        }
        p{
            display:none;
        }
    }
}