.footer .footer-bg{
    background-color: #f4f4f4;
    padding: 30px;
}
.footer .footer-logo{
    width: 40%;
}
.footer .fafa-div{
    background-color: #12a6e5;
    border-radius:5px;
    width: 31px;
    height: 31px;
    text-align: center;    
    margin-right: 15px;
}
.footer .foot-fafa {
    color: #fff;
    font-size: 15px;
    padding: 10px 10px 10px 10px;
}
.footer .foot-menu-text{
    font-size: 14px;
    color: #000;
    text-decoration: none;
}
.footer .foot-title{
    color: #000000;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Times New Roman', 'sans-serif';
}
.footer .social-icon-img{
    width: 34px;
    margin-right: 12px;
}
.footer .border-foot {
    border-bottom: 1px solid #000;
    width: 85%;
    margin: auto;
    padding-top: 10px;
}
.copyright-p {
    font-size: 14px;
    color: #000;
    margin-bottom: 0px;
    margin-top: 20px;
}
.copyright-span , .copyright-span:hover{
    font-weight: 600;
    color: #ff8422;
    margin-bottom: 0px;
    margin-top: 20px;
    text-decoration: none;
}

@media (max-width:319px){
    .footer .footer-logo {
        width: 20%;
    }
    .footer .foot-title {
        font-size: 15px;
    }
    .copyright-p {
        font-size: 10px;
    }
    .footer .foot-menu-text {
        font-size: 11px;
    }
}

@media (min-width:320px) and (max-width:484px){
    .footer .footer-logo {
        width: 20%;
    }
    .footer .foot-title {
        font-size: 20px;
    }
    .footer .foot-menu-text {
        font-size: 13px;
    }
    .copyright-p {
        font-size: 10px;
    }
}
@media (min-width:485px) and (max-width:574px){
    .footer .footer-logo {
        width: 20%;
    }
    .footer .foot-title {
        font-size: 18px;
    }
    .copyright-p {
        font-size: 12px;
    }
}
@media (min-width:575px) and (max-width:767px){
    .footer .footer-logo {
        width: 20%;
    }
    .footer .foot-title {
        font-size: 20px;
    }
}
@media (min-width:768px) and (max-width:991px){
    .footer .foot-title {
        font-size: 20px;
    }
    .footer .foot-menu-text {
        font-size: 13px;
    }
}
@media (min-width:992px) and (max-width:1023px){

}
@media (min-width:1024px) and (max-width:1199px){

}
@media (min-width:1200px) and (max-width:1399px){

}

#button {
    display: inline-block;
    background-color: #0660a4;
    width: 50px;
    height: 50px;
    text-align: center;
    border-radius:100px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
      opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
  }
  #button::after {
    content: "\f062";
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    font-size: 26px;
    line-height: 50px;
    color: #fff;
  }
  #button:hover {
    cursor: pointer;
    background-color: #333;
  }
  #button:active {
    background-color: #555;
  }
  #button.show {
    opacity: 1;
    visibility: visible;
  }