#footer {
    font-size: 14px;
    background: var(--footer-Bg);
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    width: 100%;
    background: url(../../../../webroot/img/footer/footer-bg.png) top center no-repeat;
    background-size: cover;
    position: relative;
    background-color: #ffffff;
    border-top: 5px solid var(--tts-buttton-bg1);
  
}

#footer .footer-top .footer-widget {
    margin-bottom: 40px;
}

#footer .footer-top .footer-widget h4 {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    position: relative;
    padding-bottom: 12px;
}

/* #footer .footer-top .footer-widget h4::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-top: none;
    height: 3px;
    width: 100px;
    background-image: linear-gradient(to right, var(--tts-buttton-bg), transparent);
} */

#footer .footer-top .footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


#footer .footer-top .footer-widget ul li+li {
    margin-top: 10px;
}

#footer .footer-top .footer-widget ul li span {
    font-weight: 500;
}

#footer .footer-top .footer-widget ul li a {
    color: #000000;
    transition: 0.3s;
    position: relative;
}

#footer .footer-top .footer-widget ul li a:hover {
    color: var(--tts-buttton-bg);
}

#footer .footer-widget .logo a {
    display: block;
}

#footer .footer-widget .logo a img {
    max-height: 50px;
    object-fit: cover;
}

#footer .footer-widget .description {
    font-size: 14px;
    line-height: 25px;
    margin-top: 20px
}


#footer  .social-default {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: start;
    margin: -5px;
}

#footer  .social-default li {
    margin: 5px;
}

#footer  .social-default li a {
    width: 40px;
    background-color: #F6F6F6;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    border-radius: 100%;
    transition: 0.3s;
    color: #000000;
    z-index: 2;
    position: relative;
}

#footer  .social-default a i {
    vertical-align: middle;
}

#footer  .social-default li a:hover {
    color: var(--tts-buttton-txt);
}

#footer  .social-default li a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--tts-buttton-bg);
    transform: scale(0.5);
    opacity: 0;
    transition: 0.3s;
    border-radius: 100%;
}

#footer  .social-default li a:hover::after {
    transform: scale(1);
    opacity: 1;
}

#footer  .social-default li a:hover::after i {
    transform: scale(1);
    opacity: 1;
}

#footer .copyright {
    color: #000000;
}


.footer-bottom {
    border-top: 1px solid #dedede;
}

.footer-bottom .newsletter-title {
    color: #fff;
    margin-bottom: 0;
    margin-left: 25px;
}

.footer-bottom .newsletter-form {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    max-width: 460px;
    gap: 0px;
    margin-left: auto;
}

.footer-bottom .form-control {
    background-color: #ffffff;
    border-color: #ffffff;
    border-radius: 4px 0 0 4px;
    color: #4D5765;
    height: 55px;
    padding: 0 25px 0 25px;
    padding-right: 45px;
    border: 1px solid transparent;
}

.footer-bottom .SUBCRIBE_BTN {
    border-radius: 0 4px 4px 0;
    min-width: 155px;
    padding: 20px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    vertical-align: middle;
    display: inline-block;
    border: none;
    text-transform: uppercase;
    text-align: center;
    background-color: var(--tts-buttton-bg);
    color: var(--tts-buttton-txt);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.footer-bottom .SUBCRIBE_BTN:hover{
    color: var(--tts-buttton-txt1);
}

.footer-bottom .SUBCRIBE_BTN:before {
    content: "";
    position: absolute;
    height: 100%;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--tts-buttton-bg1);
    z-index: -1;
    transition: all 0.4s ease-out;
    border-radius: inherit;
}

.footer-bottom .SUBCRIBE_BTN:hover::before, .footer-bottom .SUBCRIBE_BTN.active::before {
    width: 100%;
}


@media only screen and (max-width: 600px) {
    .footer-bottom .newsletter-title{
        margin-left: 0;
        margin-bottom: 20px;
    }
    .footer-bottom .form-control{
        padding-right:0;
        padding: 0.375rem 0.75rem;
    }
}