@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900');


:root{
    --primary-color: #f16a33;

}


.ecommerce-header{
    background: var(--primary-color);
}
.nav-on-banner{
    background: transparent;
}
.nav-dark .navbar-nav .nav-link{
    color: #fff;
}

/* footer */
.footerSec {
    background-color: var(--primary-color);
    padding: 5rem 0 1rem;
}

.foCont ul.Icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.foCont ul.Icons li a {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--theme-white-color);
    border-radius: 50%;
    color: var(--theme-white-color);
}

.foCont ul.Icons li a:hover {
    background-color: #58af64;
}


.foCont h3 {
    font-size: 2.125rem;
    font-family: 'Poppins';
    font-weight: 600 !important;
    margin-bottom: 1rem;
    color: var(--theme-white-color);
}
.foCont ul.text li a:before {
    content: '';
    height: 2px;
    width: 12px;
    background-color: var(--theme-white-color);
    position: absolute;
    left: -2px;
}
.foCont ul.text li a {
    color: var(--theme-white-color);
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.foCont ul.text li {
    padding: 10px 0;
}
.foCont ul.locate li a {
    display: flex;
    gap: 10px;
    font-size: 1.125rem;
    color: var(--theme-white-color);
}

.foCont ul.locate li a span {
    flex: 0 0 10%;
    color: var(--theme-white-color);
}

.foCont ul.locate li a p {
    color: var(--theme-white-color);
}
.foCont ul.locate li {
    padding: 10px 0;
}
.galist {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    grid-auto-flow: row;
    grid-template-areas:
      ". . ."
      ". . .";
}
.copyCont {
    border-top: 1px solid white;
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.copyCont p {
    color: var(--theme-white-color);
}
/* footer End */