#footer {
    font-size: 14px;
    background: var(--tts-buttton-bg1);
    border-top: 1px solid #dedede;
}


#footer .footer-top {
    padding: 100px 0 50px 0;
    background: var(--bg-white);
    width: 100%;
    position: relative;
    
}

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

#footer .footer-top .footer-widget h4 {
    font-size: 18px;
    font-weight: bold;
    color: #37517e;
    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 .footer-top .footer-widget .social-default {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    justify-content: start;
    margin: -5px;
}

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

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

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

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

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

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

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

#footer .copyright {
    color: #fff;
}

.footer_newsletter{
    margin-bottom: -100px;
}
.footer_newsletter .footer-bottom{
    background-color: var(--tts-buttton-bg);
    border-radius: 10px;
    background-size: 95% 95%;
    padding: 30px 30px;
    position: relative;
    z-index: 3;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_newsletter .footer-bottom .newsletter-title {
    color: #fff;
    margin-bottom: 0;
    font-size: 30px;
}

.footer_newsletter .footer-bottom .newsletter-form {
    gap: 10px;
    display: flex;
    align-items: center;
}

.footer_newsletter .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_newsletter .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-bg1);
    color: var(--tts-buttton-txt1);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

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

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

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


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