.footer-client-logo {
    width: 100%;
    background: rgb(255, 255, 255);
    padding: 5px 0px;
    margin: 10px 0px 0px auto;
}
.footer-client-logo ul {
    display: block;
    width: 350px;
    padding: 0px;
    margin: 0px auto;
}
.social-icons li img {
    width: 15px;
    height: 15px;
    text-align: center;
    margin: 6px;
    display: inline-block;
}
.footer-client-logo ul li {
    display: inline-block;
}
.social-icons li a .fa {
    font-size: 18px;
}
.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    margin-right: 0px;
    margin-top: 4px;
    float: left;
}
.social-icons li {
    display: inline-block;
    margin-right: auto;
    border: 2px solid var(--white-color);
    width: 30px;
    border-radius: 6px;
    height: 30px;
    line-height: 30px;
    text-align: right;
    background: var(--primary-color);
    float: right;
    margin-bottom: 20px;
}
.social-icons li a {
    color: var(--white-color);
}
#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #9E9E9E;
    color: var(--white-color);
    border: none;
    border-radius: 5px;
    padding: 3px 10px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 0 2em 0 rgba(0, 0, 0, .25);
    transition: all .3s ease-in-out;
    display: inline-block;
    opacity: 0;
    text-decoration: none;
}
#back-to-top.visible {
    opacity: 1;
}
#back-to-top:hover {
    background-color: var(--black-color);
}
footer {
    background: #fff;
    padding: 40px 0 20px;
}

.ft-logo {
    margin-bottom: 50px;
}
.ft-title {
    font-size: 13px;
    color: #4c4c4c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.newsletter .news-field {
    width: 100%;
    padding: 6px;
    border-radius: 3px;
    float: right;
    border: 1px solid #4c4c4c;
    font-size: 12px;
    outline: 0;
}
.news-btn {
    background: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    border: none;
    margin-top: 10px;
    float: none;
    padding: 6px 14px;
    font-weight: 500;
}
.news-btn:hover {
    background: var(--secondary-color);
}
.social-icons li a .fa {
    font-size: 18px;
}
.social-icons li:hover {
    background: var(--secondary-color);
}

ul.links li {
    font-size: 13px;
    color: #eee;
    list-style-type: none;
    position: relative;
    line-height: 22px;
}
ul.links li:before {
    content: "";
    left: 0px;
    top: 8px;
    position: absolute;
    width: 6px;
    height: 6px;
    background-repeat: no-repeat;
    background: var(--primary-color);
}
.social-icons a {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
ul.links li a {
    color: #4c4c4c;
    line-height: 20px;
    padding-left: 0;
    text-decoration: none;
    margin-left: 14px;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}
ul.links li a:hover {
    padding-left: 5px;
    color: var(--primary-color);
    text-decoration: underline;
}

.patners-list {
    padding-left: 0;
    margin-top: 6px;
}
.patners-list li {
    background: #1c1c1c;
    list-style-type: none;
    margin: 6px 6px 6px 0;
    position: relative;
    font-size: 10px;
    width: 60px;
    height: 35px;
    text-align: center;
}
.patners-list li a {
    text-decoration: none;
    color: #eee;
}
.patners-list li img {
    overflow: hidden;
    height: 100%;
    opacity: 0.8;
    object-fit: cover;
    width: 100%;
}
.patners-list li span {
    word-break: break-all;
    line-height: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 999;
    font-size: 10px;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 700;
}

.ft-btn-list {
    padding-left: 0;
    margin-bottom: 0;
}
.ft-btn-list li {
    width: 46%;
    float: left;
    margin-right: 8px;
    list-style-type: none;
}
.ft-btn-list a {
    font-size: 14px;
    color: #fff;
    line-height: 33px;
    border-radius: 0;
    width: 100%;
    font-weight: 600;
    border: none;
}
.ft-btn-list li a .fa {
    font-size: 14px;
    padding-right: 10px;
}

.hover-red {
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hover-red:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 6px 0;
    bottom: 0;
    background: var(--primary-color);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hover-red:hover,
.hover-red:focus,
.hover-red:active {
    color: white;
}
.hover-red:hover:before,
.hover-red:focus:before,
.hover-red:active:before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.cont-details li {
    color: #4c4c4c;
    list-style-type: none;
    display: inline-block;
    width: auto;
    position: relative;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
}
.cont-details li:after {
    color: #969090;
    content: "";
    height: 30px;
    top: -6px;
    margin-left: 20px;
    position: absolute;
    width: 1px;
    background: #969090;
}
.cont-details li:nth-child(4):after {
    display: none;
}
.cont-details {
    margin: 0;
    width: 100%;
    margin: 0 auto;
    border-top: 1px solid #969090;
    padding-top: 20px;
}
.cont-details .txtbold {
    color: #4c4c4c !important;
    font-weight: normal;
}

.copyright {
    background: var(--black-color);
    padding: 15px 0;
}
.copyright .copyright-txt {
    display: block;
    color: #f0f0f0;
    text-align: left;
    font-weight: 500;
    font-size: 13px;
}

#back-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #9E9E9E;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 3px 10px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 0 2em 0 rgba(0, 0, 0, .25);
    transition: all .3s ease-in-out;
    display: inline-block;
    opacity: 0;
    text-decoration: none;
}
#back-to-top.visible {
    opacity: 1;
}
#back-to-top:hover {
    background-color: var(--primary-color);
}
.enquiry-Icon {
    background: var(--primary-color);
}
.wtsapp-icon {
    display: none;
}

@media (max-width: 1024px) {
    .ft-btn-list {
        position: fixed;
        bottom: 0px;
        left: 0;
        right: 0;
        z-index: 99999;
        padding: 0;
        width: 100%;
        margin: 0 auto;
        display: flex;
    }
    .wtsapp-icon {
        background: #4AC959;
        display: block;
    }
    .cpy-moble {
        margin-bottom: 40px !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 992px) {
    .ft-btn-list {
        position: fixed;
        bottom: 0px;
        left: 0;
        right: 0;
        z-index: 99999;
        padding: 0;
        width: 100%;
        margin: 0 auto;
        display: block;
    }
    .cont-details{
        padding-left:0;
    }
    .ft-btn-list li {
        width: 33.2%;
        float: left;
        list-style-type: none;
        margin-right: 0;
    }
    .ft-btn-list li a {
        width: 98%;
        padding: 5px;
        font-size: 10px;
    }
    .copyright .copyright-txt {
        margin: 0px 0 5px 0;
    }
}

