@use '../custom' as *;
@use '../components/mixins' as *;


.footer {
    padding-top: 1rem;
    background-color: #151414;
}

.contact-box {
    position: relative;
}


.contact-box-icon {
    width: 2rem;
    stroke: #9926f0; 
    padding-top: 0.5rem;
}

.contact-box-info {
    padding: 0.4rem;
    font-weight: 600;
}

.info-title {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 1rem;
}

.info-subtitle {
    font-size: 0.8rem;
    color: rgba(152, 152, 152, 0.85);
    text-decoration: none;
}


@media only screen and (max-width: 425px){
	.contact-box-icon{
        width: 4rem;
    }
    .info-title {
        font-size: 1.4rem;
    }
    .info-subtitle{
        font-size: 1rem;
    }
}





.contact-box {
        

        
}

// STYLE THE SOCIAL MEDIA CONTENT 
.footer-sm {


    a {
        color: $white;

        i {
            font-size: 1rem;
            margin-left: 1rem;

            @include media-breakpoint-up(sm) {
                font-size: 1.6rem;
               }


        }
        &:hover {
            color: $primary;
        }
    }
}

// STYLE THE CAMPANY INFO CONTENT 
.campany-list {
    display: block;
    list-style-type: none;
    position: relative;

    li {
        margin-bottom: 0.5rem;
        text-decoration: none;

        a {
            color: $white;
            text-decoration: none;

            &:hover {
                color: $primary;
            }
        }
    }
}

// STYLE THE COPYRIGHT  CONTENT 
.footer-bottom {
    background-color: $black;

    &__copyright {
        color: $gray-600;
        font-weight: 400;
        

        a {
            color: $gray-300;
            text-decoration: none;

            &:hover {
                color: $primary;
                text-decoration: underline;
             
            }
        }
    }
}


// STYLE THE BACK TO TOP BUTTON 
.back-to-top {
    position: fixed;
    width: 3rem;
    height: 3rem;
    right: 1.875rem;
    bottom: 1.875rem;
    z-index: 9999;

    i {
        color: $white;
        font-size: 1rem;
        @include absoluteCenter;
    }
}