@charset "utf-8";

.menu-btn {
    position: fixed;
    right: 10px;
    bottom: 50px;
    cursor: pointer;
    transition: all 0.5s;
    z-index: 99999;
}

.menu-btn a {
    display: block;
    transition: all 0.5s;
}

.menu-btn a:hover {
    scale: 1.2;
}


.menu-btn i {
    display: block;
    color: #fff;
    font-size: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 53px;
    overflow: hidden;
    margin-bottom: 20px;
}

.menu-btn p {
    font-size: 14px;
    line-height: 0;
}

.menu-btn a:nth-child(1) i {
    background-color: #28623d;
}

.menu-btn a:nth-child(2) i {
    background-color: #284362;
}

.menu-btn a:nth-child(3) i {
    background-color: #e74c63;
}

footer {
    position:relative;
    transform:translateY(0%);
    background-color: #000000;
    box-shadow: 4px 11px 20px 0px #33333373;
    padding: 20px 0 10px;
    font-size: 13px;
    line-height: 1.2;
    color: #fff;
    
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    z-index:9999;

}

footer h2 {
    width: 200px;
}

footer h2 img {
    width: 100%;
}


footer strong {
    font-weight: normal;
}

.f-s3 {
    margin-top: 10px;
}

.f-s2 {
    margin-top: 6px;
}

.f-s {
    margin-top: 8px;
}

.f-r a {
    font-size: 0;
    overflow: hidden;
    margin-left: 25px;
}

.f-r a i {
    font-size: 30px;
}

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

    footer{
        flex-direction: column;
        text-align: center;
    }
    footer h2 {
        width: 150px;
        margin: 0 auto;
    }
    .f-r {
        margin-top: 20px;
    }

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

    footer {
        text-align: center;
    }
 

    footer h2 img {
        width: 100%
    }

    .f-r i {
        font-size: 18px;
    }

   

}