/* 
1. footer
2. footer-bar
3. logo
4. contact-bar
5. head-list-footer
6. list-footer
*/

/* ========== */
/* | footer | */
/* ========== */
#ccrc-footer {
    background-color: #0C3F28;
    padding: 48px 80px;
    /* font */
    color: var(--ccrc-theme_c-white);
}

@media screen and (max-width: 767px) {
    #ccrc-footer {
        padding: 40px 0;
    }
}

#ccrc-footer .container {
    max-width: 1280px;
}

/* footer-bar */
#ccrc-footer .footer-bar {
    display: grid;
    /* grid-gap: 56px;
    grid-template-columns: minmax(362px, auto) minmax(295px, auto) 1fr; */
    gap: 32px;
}


/* @media screen and (max-width: 1040px) {
    #ccrc-footer .footer-bar {
        grid-gap: 32px;
        grid-template-columns: 1fr 1fr 1fr;
    }
} */

@media screen and (max-width: 992px) {
    #ccrc-footer .footer-bar {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 24px;
    }
}

/* logo */
#ccrc-footer .logo {
    max-width: 80px;
}

/* head-list-footer */
#ccrc-footer .footer-list-head {
    /* font */
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    /* layout */
    margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
    #ccrc-footer .footer-list-head {
        font-size: 16px;
        /* layout */
        margin-bottom: 16px;
    }
}

/* list-footer */
#ccrc-footer .footer-lists {
    /* set up */
    list-style: none;
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* layout */
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#ccrc-footer .footer-list {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: #A4A7AE;
}

@media screen and (max-width: 767px) {
    #ccrc-footer .footer-list {

        line-height: 1.5;
    }
}


/* footer-bar-wrap */

.footer-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* .footer-bar-wrap:not(:first-child) {
    margin-top: 8px;
} */

.footer-bar-wrap .contact-bar {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 16px;
}

.footer-bar-wrap .contact-bar .icon-circle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
}

.footer-bar-wrap .contact-bar .icon-circle .icon {
    width: 32px;
}

.footer-bar-wrap .contact-bar .icon-circle p {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .footer-bar-wrap {
        align-items: center;
    }
}
.footer-line {
    width: 100%;
    border: 1px solid #E9EAEB;
}