.footer-section {
    background: linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0.8)), var(--footer-bg-img) center center;
    /* background: var(--primary);
    background-image: url(../img/home/city-background.jpeg); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-section .footer-content {
    border-bottom: 1px solid var(--gray-800);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.footer-section .footer-content .footer-logo {
    width: 160px;
}
.footer-section .footer-content .link-content .footer-link-wrap .footer-link a {
    text-decoration: none;
}
.footer-section .footer-content .footer-link-wrap .footer-link a span.icon{
    font-size: 8px;
}
.footer-section .footer-content .footer-link-wrap .footer-link a span.icon .svg-inline--fa{
    vertical-align: 1px;
}
/* ---------------------search footer-------- */
.footer-section .newsletter {
    position: relative;

    input {
        font-size: 16px;
        font-weight: 400;
        height: 53px;
        padding: 6px 130px 6px 16px;
        background: var(--basic-white);
        /* border: 1px solid $white-and-gray-light-gray; */
        /* color: $white-and-gray-light-gray; */
        outline: none;
        border-radius: 30px;
        font-size: 16px;
        width:100%;
        border: none;
    }

    button {
        position: absolute;
        padding: 8px 20px;
        height: 41px;
        border-radius: 35px;
        border: none;
        background-color: var(--primary);
        font-size: 16px;
        font-weight: 500;
        color: var(--basic-white);
        right: 2%;
        top: 22px;
        transition: all .5s;

        &:hover {
            cursor: pointer;
            border-radius: 70px 63px 70px 10px;
        }
    }
}
/* ------------------------responsive-css--------------- */
@media (max-width: 1400px) {
    
}
@media (max-width: 1200px) {
    
}
@media (max-width: 768px) {
    .footer-section .newsletter {
        input{
        height: 40px;
        font-size: 13px;
        }
    }
    .footer-section .newsletter {
        button {
            height: 35px;
            font-size: 13px;
            right: 1%;
            top: 19px;
        }
    }
    .title-wrap .sub-title {
        font-weight: 500;
        font-size: 15px;
    }
    .footer-section .footer-content .link-content .footer-link-wrap .footer-link a {
        font-size: 14px;
    }
}
