/* ------------------------ Footer Base ------------------------ */

.footer__area-one {
    background: radial-gradient(circle at top left, #0f1f1c 0%, #000 100%);
    padding: 80px 20px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer__logo img {
    max-height: 80px;
    padding: 8px 12px;
    border-radius: 10px;
    background-color: white;
    padding: 4px;
    border-radius: 7px;
}


.footer__widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #f5f5f5;
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

.footer__content {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer__links .list-wrap {
    list-style: none;
    padding-left: 0;
    text-align: start;
    margin: 0;
}

.footer__links .list-wrap li {
    margin-bottom: 10px;
}

.footer__links .list-wrap li a {
    color: #fff9f9;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__links .list-wrap li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00A5DF;
    border-radius: 50%;
    opacity: 0.6;
}

.footer__links .list-wrap li a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer__bottom {
    color: #888888;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    /* padding-top: 20px; */
    text-align: center;
}

.footer__bottom a {
    color: #00A5DF;
    text-decoration: none;
}

.footer__bottom a:hover {
    color: #fff;
}

.footer__copyright {
    margin: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #ccc;
}

.xelans-footer-legal p {
    font-size: 13px;
    color: #a3a3a3;
    text-align: start;
    margin-bottom: 10px;
}


/* ------------------------ Social Links ------------------------ */

.social-links ul {
    display: flex;
    gap: 12px;
    padding-left: 0;
    list-style: none;
    justify-content: flex-start;
    flex-wrap: wrap;
}


@media (max-width: 1024px) {
    .footer__area-one {
        padding: 60px 20px 25px;
    }
    .footer__widget-title {
        font-size: 17px;
        /* text-align: center; */
    }
    .footer__content {
        font-size: 13.5px;
        text-align: center;
    }
    .footer__links .list-wrap li a {
        font-size: 15px;
    }
    .social-links ul {
        justify-content: center;
        gap: 10px;
    }
    .social-links a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

/* Mobile Devices (max-width: 767px) */

@media (max-width: 767px) {
    .footer__area-one {
        padding: 50px 15px 20px;
    }
    .footer__logo img {
        max-height: 60px;
    }
    .footer__widget-title {
        font-size: 16px;
    }
    .footer__content {
        font-size: 13px;
    }
    .footer__links .list-wrap li a {
        font-size: 14.5px;
        padding-left: 18px;
    }
    .footer__bottom {
        font-size: 12px;
    }
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 13.5px;
    }
    .footer__logo.mb-3{
        margin-right: auto;
        display: flex;
    }
}

/* Extra Small Devices (max-width: 480px) */

@media (max-width: 480px) {
    .footer__widget-title {
        font-size: 15px;
    }
    .footer__content,
    .footer__bottom,
    .footer__copyright {
        font-size: 12.5px;
    }
    .footer__logo.mb-3{
        margin-right: auto;
        display: flex;
    }
    .footer__links .list-wrap li a {
        font-size: 14px;
    }
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .footer__copyright {
    margin: 5px 0;
}
}