/* footer start */
.main-footer {
    background-color: #1A1C1F;
    padding: 38px 0 31px;
}

.footer-in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.footer-left {
    width: 75%;
}

.footer-right {
    width: 25%;
}

.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-wrap: wrap;

}

.footer-left ul li {
    margin: 0 20px;
}

.footer-left ul li:first-child {
    margin-left: 0;
}

.footer-left ul li:last-child {
    margin-right: 0;
}

.footer-left ul li a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #FFFFFF;
}

.footer-left ul li a:hover,
.footer-left ul li.current-menu-item a {
    color: var(--golden-color);
}

.footer-left p {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.1;
    color: #9B9C9E;
    margin: 0;
}

.footer-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-right ul li {
    margin: 0 5px;
}

.footer-right ul li:first-child {
    margin-left: 0;
}

.footer-right ul li:last-child {
    margin-right: 0;
}

.footer-right ul li a {
    width: 39px;
    height: 39px;
    background-color: #26282A;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-right ul li a:hover {
    background-color: var(--golden-color);
}

.footer-right ul li a:hover img {
    filter: brightness(0) saturate(100%) invert(6%) sepia(4%) saturate(2253%) hue-rotate(177deg) brightness(101%) contrast(90%);
}

/* footer end */
/* responsive */
@media (max-width: 1199px) {}

@media (max-width: 991px) {}

@media (max-width: 767px) {
    .footer-left {
        width: 100%;
    }

    .footer-right {
        width: 100%;
        margin-bottom: 15px;
    }

    .footer-in {
        flex-direction: column-reverse;
    }

    .footer-right ul {
        justify-content: center
    }

    .footer-left ul {
        justify-content: center;
    }

    .footer-left p {
        text-align: center;
    }

    .main-footer {
        padding: 20px 0 15px;
    }

    .footer-left ul li {
        margin-bottom: 10px;
    }
}

@media (max-width: 575px) {}

@media (max-width: 479px) {
    .footer-left ul li {
        margin: 0 0px 10px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 375px) {}