.footer-section{
    padding:40px;
    background-color: #000000;
    margin-top:90px;
}
.ct-subscriptions{
    background-color: #4A3E3F;
    color: #fff;
    padding: 24px;
    border: 1px solid #969696;
    border-radius: 10px;
}
.ct-subscriptions h4{
    text-transform: uppercase;
    font-weight: 800;
}
.ct-subscriptions p{
    font-weight: 400;
}
.subscriptions-form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 15px;
    width: 60%;
    margin: 0 auto;
}
.subscriptions-form input{
    height: 45px;
}
.subscriptions-form button{
    width: 200px;
}
.company-info p{
    font-weight: 400;
    font-size: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.footer-links h5{
    color:#ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}
.footer-links ul {
    padding:0;
    margin: 0;
}
.footer-links ul li{
    margin: 10px 0;
}
.footer-links ul li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
    transition: all ease 0.5s;
}
.footer-links ul li a:hover{
    color:#FFA800;
    padding-left: 5px;
}
.footer-links ul li a i{
    font-size: 5px;
    margin-right: 10px;
}
.footer-link-top{
    border-bottom: 1px solid #8F8F8F;
    padding-bottom: 24px;
}
.social-links{
    text-align: right;
}
.social-links ul{
    margin: 0;
}
.social-links ul li { display: inline-block; }
.social-links ul li a { 
    font-size: 17px;
    color: #fff;
    margin: 0px 5px;
    display: flex;
    width: 40px;
    height: 40px;
    background: #F82643;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    -ms-transition: all .6s ease;
    -o-transition: all .6s ease;
    transition: all .6s ease;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
 }
.social-links ul li:hover a { border-radius: 50%; background: #AD1328; -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); -o-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); }
.payments-links{
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #8F8F8F;
}
.copyrights{
    padding-top: 24px;
}
.copyrights p{
    font-size: 14px;
    font-weight: 400;
    color:#ffffff;
}
.help-links{
    text-align: right;
}
.help-links ul{
    padding:0;
    margin: 0;
}
.help-links ul li{
    border-right: 1px solid #ffffff;
    padding: 0 10px;
    display: inline-block;
}
.help-links ul li:last-child{
    border: 0;
}
.help-links ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
}
/* Responsive */
@media only screen and (max-width: 767px){
    .social-links{
        text-align: left;
        margin-top: 15px;
    }
    .social-links ul{
        padding: 0;
    }
    .social-links ul li a:first-child{
        margin-left: 0;
    }
    .help-links {
        text-align: left;
        margin-top: 15px;
    }
    .help-links ul{
        padding:0;
    }
    .help-links ul li:first-child{
        padding-left: 0;
    }
    .footer-links h5{
        margin-bottom: 15px;
    }
}