footer {
    background: #421c14;
    float: left;
    width: 100%;
    color: #FFF;
}

footer .footer-enquiry {
    padding: 50px 0px;
    border-bottom: 2px solid var(--white);
}

footer .footer-enquiry h3 {
    font-size: 34px;
    line-height: 46px;
    font-weight: 500;
}

footer .footer-enquiry .text-right {
    text-align: right;
}

footer .footer-enquiry .common-btn:hover{
    color: var(--maroon);
}

footer .footer-enquiry .common-btn::before{
    background: var(--maroon);
}

footer .footer-enquiry .common-btn::after{
    background: var(--white);
}

footer p {
    color: #FFF;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}

footer p strong{
    color: var(--white);
}

footer p a{
    color: var(--white);
    transition: all 0.6s ease;
}

footer p a:hover{
    color: var(--maroon);
    transition: all 0.6s ease;
}


footer h4 {
    margin-top: 40px;
    color: #FFF;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
}



footer ul.footer-links {
    margin: 0;
    padding: 0;
}

footer ul.footer-links li {
    list-style: none;
}

footer ul.footer-links li a {
    display: block;
    padding: 5px 5px 5px 0px;
    position: relative;
    font-size: 13px;
    font-weight: 300;
    color: #FFF;
    transition: all 0.3s ease;
}

footer ul.footer-links li.active a {
    color: var(--maroon);
    padding: 5px 5px 5px 20px;
    transition: all 0.3s ease;
}

footer ul.footer-links li a:before {
    position: absolute;
    left: -5px;
    top: 5px;
    opacity: 0;
    content: "\f105";
    font-family: FontAwesome;
    color: var(--maroon);
    transition: all 0.3s ease;
}

footer ul.footer-links li a:hover:before {
    opacity: 1;
    left: 5px;
    transition: all 0.3s ease;
}

footer ul.footer-links li.active a:before {
    opacity: 1;
    left: 5px;
    color: var(--maroon);
    transition: all 0.3s ease;
}

footer ul.footer-links li a:hover {
    padding: 5px 5px 5px 20px;
    color: var(--maroon);
    transition: all 0.3s ease;
}

footer ul.footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

footer ul.footer-socials li {
    list-style: none;
    margin: 0px 3px;
}

footer ul.footer-socials li a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 15px;
    background: #FFF;
    color: var(--black);
}

footer ul.footer-socials li a:hover {
    background: var(--maroon);
    color: #FFF;
}

footer .footer-bottom {
    margin-top: 50px;
    padding: 20px 0px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0px;
}


footer .footer-newsletter-form{
    display: flex;
    background: url(../images/email-submit.png) center right no-repeat;
    border-bottom: 1px solid var(--white);
}

footer .footer-newsletter-form::placeholder{
    color: var(--white);
}

footer .footer-newsletter-form input.form-control{
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 0px;
}


footer .footer-newsletter-form input.submit-btn{
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    color: transparent;
}

a.whatsapp{
    position: fixed;
    bottom: 70px;
    right: 15px;
    z-index: 99;
}

@media (max-width:992px) {

    
}

@media (max-width: 760px) {
    footer .footer-enquiry h3{
        margin-bottom: 30px !important;
    }
    footer .footer-enquiry h3, footer .footer-enquiry .text-right{
        text-align: center;
    }
}