/* ------------------ footer ------------------ */

footer {
    border-top: 1px solid var(--border1);
    background-position: top center;
    background-repeat: repeat-x;
    padding-top: 10px;
    background: var(--footer);
    color: var(--text5);
}

footer a {
    color: var(--link4);
}

.owner-line a {
    color: var(--link6);
    text-decoration: none;
}

/* Footer 1 */

#footer-1 {
    background: transparent;
    margin: 0 auto;
    padding: 2.5rem 0 2rem;
}

#footer-1>.d-flex {
    padding: 0 5%;
}

#footer-1 .footer-left {
    margin-top: 2rem;
}

#footer-1 .footer-left .h2 {
    padding: 0rem;
    letter-spacing: .125rem;
    font-weight: 600;
    font-size: 1rem;
}

#footer-1 .navbar-brand svg {
    max-width: 100%;
    color: var(--color3);
}

#footer-1 .footer-right {
    width: 35%;
    text-align: left;
    color: white;
    font-weight: 400;
}

#footer-1 .footer-right a {
    color: white;
}

#footer-1 .footer-right a:hover {
    color: var(--text9);
}

#footer-1 .footer-right .address {
    line-height: 2;
}

#footer-1 .footer-right .address .name {
    font-weight: 600;
    font-size: 1.25rem;
}

#footer-1 .footer-right .contact {
    margin: 2rem 1rem 0;
}

#footer-1 .footer-right .contact p {
    margin-bottom: .25rem;
}


#footer-1 .footer-right .phone {
    font-weight: bold;
    margin: 1rem 0;
}

#footer-1 .footer-right .mail {
    font-weight: bold;
    margin-bottom: .5rem;
}

#footer-1 .phone a {
    display: block;
    font-weight: initial;
}

#footer-1 .mail a {
    display: block;
    font-weight: initial;
}

#footer-1 .phone ul,
#footer-1 .mail ul {
    list-style: none;
    padding: 0;
    margin-bottom: .25rem;
}


#footer-1 .d-flex {
    justify-content: space-between;
    gap: 2rem;
}



@media (max-width: 992px) {
    #footer-1 {
        padding: 1.25rem 0 1rem;
    }

    #footer-1 .footer-left {
        margin: 0 auto;
    }

    #footer-1 .footer-right {
        margin-top: 2rem;
        width: 100%;
        text-align: center;
    }

    #footer-1 .footer-right .contact {
        display: inline-block;
        width: 21rem;
        margin: 1rem 0;
    }


}

@media (max-width: 768px) {

    #footer-1 {
        flex-direction: column;
    }

    #footer-1 .footer-logo {
        margin-bottom: 2rem;
    }

    #footer-1 .footer-right .address,
    #footer-1 .footer-right .contact {
        text-align: left;
        margin-top: 0;
    }

    #footer-1 .footer-right .phone,
    #footer-1 .footer-right .phone ul,
    #footer-1 .footer-right .mail,
    #footer-1 .footer-right .mail {
        justify-content: flex-start;
    }

}

@media (max-width: 576px) {

    #footer-1 {
        padding: 4rem 2rem 1rem;
    }

    #footer-1 .footer-logo {
        margin-bottom: 1rem;
    }

}


/* end Footer 1 */





/* Footer 2 */

#footer-2 nav.menu-mid ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer-2 nav.menu-mid ul li {
    margin: .5rem;
    padding: .5rem;
}

#footer-2 nav.menu-mid ul a {
    text-transform: uppercase;
    color: var(--text9);
    /* padding: .5rem; */
    display: inline-block;
}


@media (max-width: 992px) {
    #footer-2 {
        padding: 0 1.5rem 1.5rem;
    }
}

@media (max-width: 576px) {
    #footer-2 hr {
        padding-bottom: 1rem;
    }
}



/* end Footer 2 */




/* footer-3 */

#footer-3 {
    background: transparent;
    padding: 1.5rem 0 1.5rem;
    opacity: 0.44;
}

#footer-3 hr {
    margin: 0;
    padding: 0 0 1.5rem;
}

#footer-3 {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem 0rem;
    font-size: clamp(16px, 1vw, 18px);
    font-weight: 600;
    border-top: 1px solid var(--text5);
}

#copywrite {
    text-align: left;
}

#develop {
    text-align: right;
}

@media (max-width: 992px) {
    #footer-3 {
        grid-template-columns: 1fr;
    }

    #copywrite,
    #develop {
        text-align: center;
    }
}