/* FOOTER */
a[href^=tel] { 
    color: inherit;
    /* text-decoration: none; */
}

.footer{
    position: relative;
    color: #FFF;
    background: var(--primary-color-pure-black, #000);
}
.footer-wrapper{
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}
.menu-footer-wrapper{
    display: flex;
    justify-content: end;
    width: 70%;
}
.footer-container-menu{
    display: flex;
    width: 100%;
    justify-content: end;
    gap: 35px;
}
.menu-footer-item .title{
    color: #FFF;
    font-family: 'promptsemibold';
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.8px;
    text-transform: capitalize;
    text-decoration: none;
}
.menu-footer-item .content{
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.menu-footer-item .content a{
    color: #FFF;
    font-family: 'promptextralight';
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.2px;
    text-decoration: none;
}

.logo-footer{
    /* height: 46px; */
}
.footer-office .title{
    color: #FFF;
    font-family: 'promptmedium';
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.5px;
    margin: 20px 0 10px 0;
}
.footer-office .content{
    color: #FFF;
    font-family: 'promptextralight';
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}
.footer-follow-us-wrapper{
    background: var(--neta-auto-brand-guideline-10-gray-k-90, #3E3A39);
}
.footer-follow-us{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 85%;
    margin: auto;
    height: 60px;

    font-family: 'promptlight';
    font-size: 12px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 1.2px;
}
.footer-follow-us div:last-child{
    display: flex;
    align-items: center;
    gap: 10px;
}
@media only screen and (max-width: 1199px) {
    .logo-footer{
        padding: 15px;
        border-bottom: solid 1px #494746;
    }
    .footer-wrapper{
        flex-direction: column;
        text-align: center;
    }
    .footer-office .title{
        text-align: center;
    }
    .footer-container-menu {
        flex-direction: column;
        gap: 30px;
    }
    .menu-footer-wrapper{
        width: 100%;
    }
    .accordion:first-child {
        margin-top: 15px;
    }
    .accordion {
        font-family: 'promptregular';
        background-color: #000;
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        cursor: pointer;
        padding: 15px 0;
        width: 100%;
        text-align: left;
        border: none;
        outline: none;
        transition: 0.4s;
        border-bottom: solid 1px #494746;
    }
    .active, .accordion:hover {
        /* background-color: #ccc; */
    }
    button.accordion:after {
        content: '';
        background-image: url("/assets/image/icon/Icon-accordion.svg");
        color: #000;
        font-weight: bold;
        float: right;
        margin-left: 5px;
        width: 16px;
        height: 16px;
    }
    button.accordion.active:after {
        content: '';
        background-image: url("/assets/image/icon/Icon-accordion.svg");
        transform: rotate(180deg);
        color: #000;
        font-weight: bold;
        float: right;
        margin-left: 5px;
        width: 16px;
        height: 16px;
    }
    .panel {
        padding: 0 18px;
        /* background-color: white; */
        display: none;
        overflow: hidden;
        flex-direction: column;
        align-items: baseline;
        gap: 5px;
    }
    .panel a{
        color: #fff;
        text-align: left;
        font-family: 'promptlight';
        font-size: 14px;
        font-style: normal;
        font-weight: 300;
        line-height: normal;
        text-decoration: none;
        padding: 5px 0;
    }
    .footer-follow-us{
        height: 57px;
        flex-direction: column-reverse;
        justify-content: start;
        gap: 15px;
        padding: 20px 0 100px;
    }
    .footer-follow-us div span{
        display: none;
    }
}
