/*============================
 Mobile Footer
=============================*/
@media (max-width: 991px) {
    .d-footer {
        display: none;
    }
}

.mobile-footer {
    display: none;
    background: #171b1f;
    padding: 30px 20px;
    color: #fff;
    font-family: 'Lexend Deca', sans-serif;
}

.footer-logo img {
    width: 95px;
}

.footer-text {
    margin: 20px 0;
    color: #C8CDD4;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: #19D27A;
    border-color: #19D27A;
}

.footer-accordion details {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-accordion details:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.footer-accordion summary::-webkit-details-marker {
    display: none;
}

.footer-accordion summary::after {
    content: "⌄";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #A8AFB8;
    transition: .3s;
}

.footer-accordion details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.footer-accordion ul {
    padding-bottom: 15px;
}

.footer-accordion li {
    list-style: none;
    margin: 12px 0;
}

.footer-accordion a {
    text-decoration: none;
    color: #C7CDD5;
    font-size: 14px;
    font-weight: 300;
    transition: .3s;
}

.footer-strip {
    display: none;
}

.footer-accordion a:hover {
    color: #19D27A;
}

.footer-trust {
    display: block;
    gap: 14px;
    margin-top: 28px;
    align-items: flex-start;
}

.trust-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8A929B;
    flex-shrink: 0;
}

.footer-trust h6 {
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 400;
    color: #D8DCE2;
    line-height: 1.5;
}

.footer-trust p {
    margin: 0;
    font-size: 12px;
    color: #8F98A3;
    line-height: 1.7;
}

.footer-bottom-links {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer-bottom-links a {
    color: #BFC5CD;
    text-decoration: none;
    font-size: 12px;
    transition: .3s;
}

.footer-bottom-links a:hover {
    color: #19D27A;
}

.footer-bottom-links span {
    color: #555;
}

/*============================
 Tablet
=============================*/

@media (max-width:991px) {

    .mobile-footer {
        display: block;
    }

}

/* Hide on desktop */

@media (min-width:992px) {

    .mobile-footer {
        display: none;
    }

}