.footer {
    display: none !important;
}

body {
    margin-bottom: 0 !important;
}

.i2c-footer {
    background-color: #ffffff;
    padding: 40px 0 0 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.i2c-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* gap: 40px; */
    padding: 0 120px;
}

.i2c-footer-left {
    flex: 1;
}

.i2c-logo-container {
    margin-bottom: 20px;
}

.i2c-logo {
    height: 50px;
    width: auto;
}

.i2c-company-name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.i2c-address {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.i2c-contact-info {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.i2c-contact-info a {
    color: #666;
    text-decoration: none;
}

.i2c-contact-info a:hover {
    color: #0066cc;
}

.i2c-social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.i2c-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.i2c-social-icon:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
}

.i2c-social-icon.i2c-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
}

.i2c-social-icon.i2c-twitter:hover {
    background-color: #1da1f2;
    border-color: #1da1f2;
}

.i2c-social-icon.i2c-linkedin:hover {
    background-color: #0077b5;
    border-color: #0077b5;
}

.i2c-social-icon.i2c-instagram:hover {
    background-color: #e4405f;
    border-color: #e4405f;
}

.i2c-social-icon.i2c-youtube:hover {
    background-color: #ff0000;
    border-color: #ff0000;
}

.i2c-footer-bottom-background {
    background-color: #F3F8FB;
}

.i2c-footer-bottom {
    /* border-top: 1px solid #e9ecef; */
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 10px;
    padding: 20px 120px;
}

.i2c-copyright {
    width: 50%;
}

.i2c-privacy {
    text-align: right;
    width: 50%;
}

.i2c-privacy-link {
    text-align: right;
    color: #666;
    text-decoration: none;
    margin-left: 10px;
}

.i2c-privacy-link:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* @media (max-width: 802px) {

    .i2c-copyright {
        width: 40%;
    }

    .i2c-privacy {
        text-align: center;
        width: 40%;
    }

    .i2c-social-icons {
        justify-content: center;
    }
} */

@media (max-width: 767px) {

    .i2c-footer-content {
        /* flex-direction: column; */
        padding: 20px 60px;
    }

    .i2c-footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 20px 60px;
    }

    .i2c-copyright {
        width: 80%;
    }

    .i2c-privacy {
        text-align: center;
        width: 80%;
    }

    .i2c-social-icons {
        justify-content: center;
    }
}