/* .footer start here */
.footer {
    background: #1b1b1b;
    .container

{
    max-width: 90%;
}

}

.inner-footer-wrapper {
    padding-block: 50px;
}


.copy-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #525252;
    color: #fff;
    margin: 0;
    padding: 15px 7%;
    p span

{
    color: #aa7f6e;
}

.media-icon-list {
    display: flex;
    flex-direction: row;
    justify-content: end;
    align-items: center;
    gap: 10px;
}

.media-icon-link {
    color: #fff;
    transition: 0.5s;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #AA7F6E;
    &:hover

{
    color: #fff;
}

}
}

.footer-contact {
    height: 100%;
    place-content: center;
    .footer-heading

{
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

h3 {
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.5em;
    letter-spacing: 0.3em;
    color: #FFFFFF;
    margin-bottom: 15px
}

a {
    color: #fff;
    text-decoration: none;
    &:hover

{
    color: #c18a54;
}

}

p {
    color: #fff;
    margin-top: 20px;
    text-align: justify;
    padding-right: 30px;
}

}

.nav-group {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-page-list {
    margin-top: 20px;
    list-style: none;
    padding: 0;
    width: 50%;
    /* row gap, column gap */
}

    .footer-page-list li {
        margin-bottom: 20px;
    }

    .footer-page-list a {
        color: #fff;
        text-decoration: none;
        font-family: "Lato", sans-serif;
        font-size: 15px;
        transition: color 0.3s ease;
    }

        .footer-page-list a:hover {
            color: #c18a54;
            /* hover color */
        }

        .footer-page-list a.active {
            color: #c18a54;
            /* hover color */
        }

/* Responsive */
@media (max-width: 576px) {
    .footer-page-list {
        grid-template-columns: 1fr;
        /* single column on small screens */
    }
}

/* .footer start here */
@media (max-width: 767px) {
    .footer {
        padding: 20px 0 0;
    }

    .footer-contact {
        margin-bottom: 30px;
    }

    .inner-footer-wrapper {
        padding-block: 50px;
    }

    .copy-right {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        padding-block: 10px;
    }
}
