


/*===========================
      14.Footer css 
===========================*/


.footer-area{}

.footer-widget{
    & .footer-title{
        font-size: 14px;
        text-transform: uppercase;
        margin-top: 0;
        letter-spacing: 0;
        position: relative;
        color: $white;
        font-weight: 500;
        letter-spacing: 0.2em;
        padding-bottom: 20px;
        margin-bottom: 20px;
        
        &::before {
            content: "";
            width: 50px;
            height: 1px;
            background: $theme-color;
            position: absolute;
            bottom: 0;
            left: 0;
            text-align: center;
        }
    }
}

.footer-contact{
    & ul{
        & li{
            color: $white;
            font-size: 14px;
	        margin-top: 22px;
            
            & i{
                margin-right: 5px;
            }
            
            & a{
                color: $white;
            }
        }
    }
}

.footer-link-wrapper{
    & .footer-link{
        
        @media #{$xs}{
            width: 100%;
        }
        @media #{$sm}{
            width: 50%;
        }
        
        & .link{
            & li{
                & a{
                    font-size: 16px;
                    line-height: 36px;
                    padding: 0;
                    display: block;
                    text-transform: capitalize;
                    color: $white;
                    margin-bottom: 0px;
                    display: block;
                    position: relative;
                    @include transition(0.3s);
                    
                    &:hover{
                        padding-left: 6px;
                        color: $theme-color;

                        @media #{$md}{
                            padding-left: 0;
                        }
                    }
                }
            }
        }
    }
}


.footer-copyright{
    padding-top: 14px;
    padding-bottom: 28px;
    border-top: 1px solid rgba($white, 0.15);
}

.footer-copyright-payment{
    
    & .copyright-text{
        margin-top: 14px;
        
        & p{
            font-size: 16px;
            color: $white;
            
            & a{
                color: $white;
                @include transition(0.3s);
                
                &:hover{
                    color: $theme-color;
                }
            }
        }
    }
    & .payment{
        margin-top: 14px;
    }
}



/*===== Back To Top =====*/

.back-to-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    text-align: center;
    display: none;
    @include box-shadow (0px 0px 30px 0px rgba(156,156,156,0.25));
    @include transition(0.4s);
    color: $white;
    background-color: $theme-color;
    
    &:hover{
        color: $theme-color;
        background-color: $white;
    }
}


























