.footer {
    margin-top: 40px;
}

/* ! policy start  */
.footer .policy {
    padding: 60px 0;
    background-color: #fcfcfc;
    border-top: 2px solid #000;
    border-bottom: 1px solid #eee;
}

.footer .policy .policy-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .policy .policy-list .policy-item {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 220px;
}

.footer .policy-list .policy-item i {
    font-size: 38px;
    margin-right: 15px;
    color: #000;
}

.footer .policy-list .policy-item .policy-texts {
    display: flex;
    flex-direction: column;
}

.footer .policy-list .policy-item .policy-texts strong {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer .policy-list .policy-item .policy-texts span {
    font-size: 14px;
    color: #777;
    margin-top: 2px;
}

/* ! policy end */

/* ! widgets start */
.widgets-row {
    padding: 60px 0;
    border-top: 1px solid #dee0ea;
}

.widgets-row .footer-widgets {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.widgets-row .footer-widgets>div {
    flex: 1;
    min-width: 200px;
}

.widgets-row .footer-widgets .brand-info {
    flex: 2;
}

.footer-widgets .brand-info .footer-logo {
    margin-bottom: 20px;
}

.footer-widgets .brand-info .footer-logo img {
    max-width: 200px;
}

.footer-widgets .brand-info .footer-desc {
    max-width: 400px;
    font-size: 15px;
    margin: 15px 0;
    line-height: 1.6;
    color: #555;
}

.footer-widgets .brand-info .footer-contact {
    font-size: 15px;
    margin-top: 10px;
}

.footer-widgets .brand-info .footer-contact a {
    color: #000;
    font-weight: 500;
}

.footer-widgets .widget-nav-menu h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widgets .widget-nav-menu ul {
    font-size: 14px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.footer-widgets .widget-nav-menu ul li a {
    transition: .2s ease all;
    color: #555;
}

.footer-widgets .widget-nav-menu ul li a:hover {
    color: #000;
    padding-left: 5px;
}

/* ! widgets end */

/*! copyright start  */
.copyright-row {
    padding: 30px 0;
    border-top: 1px solid #dee0ea;
}

.footer-copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright .site-copyright {
    font-size: 13px;
    color: #777;
    text-align: center;
}

/*! copyright end  */

@media(max-width:770px) {
    .widgets-row .footer-widgets .brand-info {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }

    .widgets-row .footer-widgets .widget-nav-menu {
        flex: 1 1 45%;
        /* Force columns to share space */
        min-width: 140px;
        /* Allow them to fit side-by-side on small phones */
    }

    .footer-widgets .brand-info .footer-desc {
        width: 100%;
    }

    .footer-copyright {
        flex-direction: column;
        text-align: center;
        row-gap: 10px;
    }
}