.footer {
    background: url('images/footer-bg.png') center/cover no-repeat;
    width: 100%;
    padding: 60px 0px;
}

.footer-container {
    max-width: 1235px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-col {
    margin-bottom: 10px;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* .footer-site-logo {
    margin-bottom: 20px;
} */

.col-one-p {
    margin-bottom: 0px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #36E1B2;
}

.color-white {
    color: white;
}

.contact-p {
    margin-bottom: 20px;
}

.footer-img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    align-items: flex-end;
}

.copyright {
    max-width: 1235px;
    margin: 30px auto 0;
    padding: 40px 20px 80px 20px;
    text-align: center;
    border-top: 1px solid #E5E5E5;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.copyright p {
    width: 70%;
    margin: auto;
}

.below-row {
    max-width: 1235px;
    display: flex;
    justify-content: space-between;
    margin: auto;
    gap: 20px;
}

.delow-row-content {
    width: 100%;
    text-align: center;
}

.footer-p {
    text-align: center;
    margin: auto;
    padding: 0px 20px 50px 20px;
    width: 55%;
}

@media screen and (max-width:768px) {
    .below-row {
        flex-direction: column;
        padding: 0px 20px;
        align-items: center;
    }

    .footer-p {
        width: 90%;
    }


}


@media screen and (max-width:556px) {
    .footer-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .footer-container {
        justify-content: center;
    }

    .copyright {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .copyright p {
        width: 100%;
    }

    .copyright {
        padding: 40px 20px 30px 20px;
    }


}