.site-footer {
    background: #3c3c3c;
    width: 100%;
    padding: 100px 0;
}

.site-footer .inner-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.site-footer .inner-content .menu-001 h4 {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 14px;
}

.site-footer .inner-content .menu-001 span {
    display: block;
    width: 40px;
    height: 2px;
    background: #0eb2e7;
    margin-bottom: 30px;
}

.site-footer .inner-content .list ul {
    display: flex;
    align-items: center;
    margin: 0 -12px;
}

.site-footer .inner-content .list ul li {
    padding: 0 12px;
}

.site-footer .inner-content .list ul li i {
    color: #0eb2e7;
}

.site-footer .inner-content .list ul li a {
    color: #b4b4b4;
}

.site-footer .inner-content ul.top-listing li {
    margin: 0 0 8px;
}

.site-footer .inner-content .email-001 {
    display: flex;
    margin-bottom: 12px;
}

.site-footer .inner-content .email-001 input {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, 0);
    height: 46px;
    border-radius: 12px 0px 0px 12px;
    padding: 0 15px;
    border: none;
    outline: none;

}

.site-footer .inner-content .email-001 button {
    width: 50px;
    height: 46px;
    border: none;
    background: #0eb2e7;
    border-radius: 0px 12px 12px 0px;
    transition: 0.5s;
}

.site-footer .inner-content .email-001 button i {
    color: #fff;
    font-size: 18px;
}

.site-footer .inner-content .email-001 button:hover {
    background: #ff9000;
}

.site-footer .inner-content .text-area a {
    color: #b4b4b4;
}

@media (max-width:767px) {
    .site-footer {
        padding: 40px 0;
    }

    .site-footer .inner-content {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .site-footer .inner-content .menu-001 h4 {
        font-size: 24px;
        line-height: 34px;
    }
}

@media (min-width:768px) and (max-width:960px) {
    .site-footer .inner-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-footer .inner-content .menu-001 h4 {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (min-width:961px) and (max-width:1024px) {
    .site-footer .inner-content {
        grid-template-columns: repeat(3, 1fr);
    }
}