.footer-section {
    width: 100%;
    background-color: #AB7765;
    padding: 40px 0 0;
}

.foot {
    width: 100%;
}

.foot-logo {
    width: 150px;
    height: 45px;
    display: block;
    margin-bottom: 8px;
    position: relative;
    top: -10px;
}

.foot-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.foot-desc {
    width: 90%;
    font-weight: 400;
    font-size: 14px;
    color: #F3F3F3;
    margin-bottom: 20px;
}

.foot-social {
    width: 100%;
    display: flex;
    gap: 15px;
}

.foot-social li {
    width: 36px;
    height: 36px;
    border: 1px solid #fff;
    border-radius: 50%;
    overflow: hidden;
}

.foot-social li a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-links strong {
    display: block;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    color: #FFF;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.foot-links li,
.foot-links li a {
    margin-bottom: 10px;
    text-decoration: none;
    color: #f3f3f3;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

.foot-links li a::before,
.foot-links li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    height: 2px;
    background-color: #391e15;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.foot-links li a::before {
    left: 0;
    right: 50%;
    transform-origin: bottom left;
}

.foot-links li a::after {
    right: 0;
    left: 50%;
    transform-origin: bottom right;
}

.foot-links li a:hover::before,
.foot-links li a:hover::after {
    transform: scaleX(1);
}

/* .subscribe-foot {
    width: 100%;
    height: 60px;
    padding: 0 10px;
    border-radius: 50px;
    background: #FFF0EB;
    border: 1px solid #FFF0EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.subscribe-foot input {
    width: 50%;
    background: transparent;
    border: none;
    color: #696969;
    font-weight: 400;
    font-size: 13px;
    padding-left: 10px;
}

.subscribe-foot input:focus {
    outline: none;
}

.subscribe-foot:focus-within {
    border: 1px solid #7666d2ad;
    box-shadow: 0 0px 3px #7666d2ab;
} */

.contact-us {
    width: 150px;
    height: 45px;
    background: #391E15;
    border-radius: 50px;
    color: #fff;
    font-weight: 400;
    margin-top: 25px;
}

.foot-copy {
    width: 100%;
    text-align: center;
    border-top: 1px solid #ffffff2f;
    padding: 15px 0;
    color: #FEFEFE;
    margin: 60px 0 0;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .foot-links strong {
        margin: 5px 0 15px;
    }    
}

@media only screen and (max-width: 767px) {
    .foot-links strong {
        margin: 10px 0 20px;
    }    
}