@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body{
    scroll-behavior: smooth;
}

.preloader {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    z-index: 100000;
}

.outer-loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 85px;
    width: 85px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #C0ED5B;
    border-left-color: #C0ED5B;
    display: flex;
    align-items: center;
    justify-content: center;

    animation: spin1 2s infinite linear;
}

.inner-loading {
    height: 60px;
    width: 60px;
    border: 5px solid transparent;
    border-radius: 50%;
    border-bottom-color: black;
    border-right-color: black;

    animation: spin2 600ms infinite linear;
}

@keyframes spin1 {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes spin2 {
    100% {
        transform: rotate(360deg);
    }
}

.loader {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(1.5px);
    z-index: 1000000;
    display: none;
}

.l-outer-loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    height: 85px;
    width: 85px;
    border: 3px solid transparent;
    border-radius: 50%;
    border-top-color: #C0ED5B;
    border-left-color: #C0ED5B;
    display: flex;
    align-items: center;
    justify-content: center;

    animation: lspin1 2s infinite linear;
}

.l-inner-loading {
    height: 60px;
    width: 60px;
    border: 5px solid transparent;
    border-radius: 50%;
    border-bottom-color: black;
    border-right-color: black;

    animation: lspin2 600ms infinite linear;
}

@keyframes lspin1 {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes lspin2 {
    100% {
        transform: rotate(360deg);
    }
}


.top-punchline {
    width: 100%;
    height: fit-content;
    background-color: black;
    padding: 10px;
}

.top-punchline>p {
    color: white;
    text-align: center;
    font-family: 'Libre Franklin', sans-serif;
    letter-spacing: 1px;
    font-size: 90%;
}

.second-top-punchline {
    width: 100%;
    height: fit-content;
    background-color: #F8F8F8;
    padding: 20px;
}

.second-top-punchline>p {
    color: black;
    text-align: center;
    font-family: 'Libre Franklin', sans-serif;
    letter-spacing: 0.75px;
    font-size: 107%;
}

.top-navbar {
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-inner-navbar {
    width: 100%;
    max-width: 1000px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px 20px;
    gap: 40px;
}

.top-navbar>.top-inner-navbar>img {
    height: 110px;
    width: 110px;
}

.top-inner-navbar-menu {
    height: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-family: 'Libre Franklin', sans-serif;
}

.top-inner-navbar-menu>a {
    text-decoration: none;
    color: black;
    opacity: 0.8;
    letter-spacing: 0.7px;
    font-size: 95%;
}

.top-inner-navbar-menu>a:hover {
    opacity: 1;
    text-decoration: underline;
}

.top-inner-navbar-menu-responsive {
    position: absolute;
    right: 15px;
    top: 135px;
    flex-direction: column;
    align-items: left;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    animation: menu 200ms linear;
    background-color: white;
    z-index: 10;
    border: 1px solid #8f8f8f;
    border-radius: 0.3rem;
}

@keyframes menu {
    0% {
        transform: translateY(-20px);
        opacity: 0.5;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

.top-inner-navbar-menu-responsive>a {
    text-decoration: none;
    float: left;
    width: 200px;
    padding: 15px;
    color: black;
    font-family: 'Libre Franklin', sans-serif;
}

.top-inner-navbar-menu-responsive>a:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.responsive-menu {
    height: fit-content;
    width: fit-content;
    display: none;
}

.responsive-menu>i {
    font-size: 19px;
}


.swiper {
    width: 100%;
    height: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

#sliderButtons {
    color: black;
    font-weight: 800;
    padding: 40px 25px;
    border-radius: 10px;
    border: 2px solid #B03C35;
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(2px);
    scale: 0.6;
    box-shadow: 1px 1px 10px rgba(161, 161, 161, 0.3);
}

#sliderButtons:active {
    box-shadow: none;
    transform: translateY(1px);
}



.site-description {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-site-description {
    height: fit-content;
    width: 100%;
    max-width: 1000px;
    padding: 70px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.inner-site-description>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    scale: 0.82;
    letter-spacing: 1px;
    padding: 10px 0;
    border-top: 7px solid #B03C35;
    border-bottom: 7px solid #B03C35;    
}

.inner-site-description>p {
    font-family: 'Libre Franklin', sans-serif;
    text-align: center;
    scale: 1.05;
    line-height: 30px;
    letter-spacing: 0.7px;
    opacity: 0.8;
}

.product-card {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.inner-product-card {
    width: 100%;
    max-width: 940px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.inner-product-card>.image-block {
    width: 55%;
    box-sizing: border-box;
}

.inner-product-card>.image-block>img {
    height: auto;
    width: 100%;
    object-fit: cover;
    border-radius: 2rem;
}

.inner-product-card>.info-block {
    width: 45%;
    display: flex;
    flex-direction: column;
    padding-left: 70px;
}

.inner-product-card>.info-block>h6 {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #B03C35;
}

.inner-product-card>.info-block>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 2.5rem;
    text-transform: uppercase;
}

.inner-product-card>.info-block>h3 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 20px 0;
}

.inner-product-card>.info-block>p {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.7;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    margin-top: 5px;
}

.inner-product-card>.info-block>ul {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 5px;
    list-style-position: inside;
    margin-bottom: 25px;
}

.inner-product-card>.info-block>.gram-buttons {
    width: fit-content;
    height: fit-content;
    padding: 15px 0;
    display: flex;
    gap: 10px;
}

.inner-product-card>.info-block>.gram-buttons>button {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 2em;
    font-weight: 300;
    background-color: white;
    border: 0.1em solid rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.inner-product-card>.info-block>.gram-buttons>button:focus {
    background-color: black;
    color: white;
}

.inner-product-card>.info-block>.quantity-box {
    border: 0.1em solid rgba(0, 0, 0, 0.7);
    border-radius: 2em;
    width: fit-content;
    height: fit-content;
    padding: 5px 10px;
    margin: 15px 0;
}

.inner-product-card>.info-block>.quantity-box>button {
    font-family: 'Libre Franklin', sans-serif;
    border-radius: 50%;
    font-size: 21px;
    padding: 7px;
    border: none;
    background-color: white;
    cursor: pointer;
}

.inner-product-card>.info-block>.quantity-box>input {
    text-align: center;
    height: auto;
    font-family: 'Libre Franklin', sans-serif;
    font-size: 15px;
    font-weight: 300;
    width: 55px;
    border: none;
}

.inner-product-card>.info-block>.quantity-box>input:focus {
    outline: none;
}

.cod-button {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 21px;
    padding: 15px 20px;
    border-radius: 2em;
    font-weight: 300;
    background-color: black;
    border: 0.1em solid black;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin: 10px 0;
}

.vfd-link {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
    color: #2F744B;
    text-decoration: none;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 10px;
    height: fit-content;
    width: 100%;
    margin: 5px 0;
    padding-right: 10px;
}

.vfd-link:hover {
    text-decoration: underline;
}

.vfd-link:hover .fa-solid {
    transform: translateX(3px);
}




.e-products {
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-e-products {
    height: fit-content;
    width: 90%;
    max-width: 940px;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.inner-e-products>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    scale: 0.82;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 15px;
    border-left: 7px solid #B03C35;
    border-right: 7px solid #B03C35;
}

.products-here {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.one-product {
    width: 100%;
    height: auto;
    padding: 20px 15px;
    border-radius: 1rem;
    border: 1px solid #c5c5c5;
    transition: 200ms ease-out;
    display: flex;
    flex-direction: column;
}

.one-product:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.one-product:hover img {
    transform: scale(1.05);
}

.one-product>img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 0.7rem;
    margin-bottom: 15px;
    transition: 150ms ease-out;
}

.one-product>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.one-product>p {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 30px;

}

.one-product>h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.one-product>button {
    font-family: 'Libre Franklin', sans-serif;
    width: 100%;
    text-transform: capitalize;
    font-size: 17px;
    padding: 15px 0;
    border-radius: 1.5em;
    font-weight: 300;
    background-color: black;
    border: 0.1em solid black;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-top: auto;
}




.about-us {
    width: 90%;
    max-width: 940px;
    height: auto;
    padding: 30px 0;
    margin: auto;
    display: block;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 15px;
}

.about-img {
    width: 100%;
    height: 100%;
}

.about-img>img {
    width: 90%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 20px 30px 1px #B03C35;
}

.about-desc {
    grid-area: 1 / 2 / 2 / 4;
}

.about-desc>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 7px solid #B03C35;
    width: fit-content;
}

.about-desc>p {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.one-quality {
    width: 100%;
    height: auto;
    padding: 25px 20px;
    border-radius: 1rem;
    border: 1px solid #b03b35d7;
    transition: 200ms ease-out;
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 10px 10px #b03b352c;
}

.one-quality:hover {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, #b03b3528 0px 0px 0px 1px;
}

.one-quality:hover i {
    transform: scale(1.1);
    transition: 200ms ease-out;
}

.one-quality>i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.one-quality>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    color: #B03C35;
}

.one-quality>p {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.8rem;
    line-height: 1.35;
    text-align: center;
}







.contact-us {
    width: 90%;
    max-width: 940px;
    height: auto;
    padding: 30px 0;
    margin: auto;
    display: block;
    display: flex;
    gap: 15px;
}

.contact-det {
    width: 100%;
    height: auto;
}

.contact-det>h1 {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding-left: 10px;
    border-left: 7px solid #B03C35;
}

.contact-det>p {
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.contact-det>p:nth-child(2) {
    margin-bottom: 30px;
}


.contact-form {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 20px;
    box-shadow: 0px 10px 15px #B03C35;
}

.contact-form>form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form>form>input {
    height: 40px;
    width: 100%;
    border-radius: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.45);
    font-family: 'Libre Franklin', sans-serif;
    padding-left: 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.contact-form>form>textarea {
    min-height: 100px;
    width: 100%;
    border-radius: 0.7rem;
    border: 1px solid rgba(0, 0, 0, 0.45);
    font-family: 'Libre Franklin', sans-serif;
    padding: 10px 15px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    resize: vertical;
}

.contact-form>form>input:focus, .contact-form>form>textarea:focus{
    outline: none;
}

.contact-form>form>button {
    font-family: 'Libre Franklin', sans-serif;
    width: 100%;
    text-transform: capitalize;
    font-size: 17px;
    padding: 15px 0;
    border-radius: 1.5em;
    font-weight: 300;
    background-color: black;
    border: 0.1em solid black;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-top: auto;
}

.alert{
    font-family: 'Libre Franklin', sans-serif;
    font-size: 90%;
    margin: 10px 0 0 0;
}

.spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-left-color: #ffffff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
  }





.pre-footer {
    padding: 50px 0 30px 0;
    height: auto;
    width: 100%;
    background-color: black;
    border-bottom: 0.01em solid rgba(255, 255, 255, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
}

.pre-footer>img{
    height: 100px;
    width: auto;
    border-radius: 50%;
    margin-bottom: 20px;
}

.pre-footer>p{
    font-family: 'Libre Franklin', sans-serif;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: white;
    width: 90%;
    max-width: 700px;
    text-align: center;
}

.footer-links{
    display: flex;
    gap: 15px;
}

.footer-links>a{
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: white;
    text-decoration: none;
}

.footer {
    background-color: black;
    height: fit-content;
    width: 100%;
}

.footer>p {
    color: white;
    text-align: center;
    font-family: 'Libre Franklin', sans-serif;
    scale: 0.8;
    padding: 30px 0;
    opacity: 0.7;
}




















@media only screen and (max-width: 768px) {

    .top-punchline>p {
        font-size: 85%;
        padding: 0 10px;
    }

    .top-navbar>.top-inner-navbar>img {
        height: 90px;
        width: 90px;
    }

    .top-inner-navbar {
        justify-content: space-between;
    }

    .top-inner-navbar-menu {
        display: none;
    }

    .responsive-menu {
        display: block;
    }

    .front-banner {
        height: 300px;
    }

    .inner-site-description {
        padding: 30px;
    }

    .inner-site-description>h1 {
        scale: 0.77;
        text-align: center;
    }

    .inner-site-description>p {
        scale: 0.95;
    }

    .product-card {
        height: fit-content;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 40px;
    }

    .inner-product-card {
        flex-direction: column;
    }

    .inner-product-card>.image-block {
        width: 100%;
    }

    .inner-product-card>.image-block>img {
        height: auto;
        width: 100%;
        object-fit: cover;
        border-radius: 2rem;
    }

    .inner-product-card>.info-block {
        padding: 20px 0px;
        width: 100%;
    }

    .inner-product-card>.info-block>h6 {
        font-family: 'Libre Franklin', sans-serif;
        opacity: 0.7;
        font-weight: 400;
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .inner-product-card>.info-block>h1 {
        font-family: 'Libre Franklin', sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
        font-size: 2.7rem;
        text-transform: uppercase;
    }

    .inner-product-card>.info-block>h3 {
        font-family: 'Libre Franklin', sans-serif;
        font-weight: 400;
        letter-spacing: 1px;
        padding: 20px 0;
    }

    .inner-product-card>.info-block>p {
        font-family: 'Libre Franklin', sans-serif;
        opacity: 0.7;
        font-weight: 400;
        letter-spacing: 1px;
        font-size: 13px;
        margin-top: 5px;
    }

    .inner-product-card>.info-block>.gram-buttons {
        width: fit-content;
        height: fit-content;
        padding: 15px 0;
        display: flex;
        gap: 10px;
    }

    .inner-product-card>.info-block>.gram-buttons>button {
        font-family: 'Libre Franklin', sans-serif;
        font-size: 15px;
        padding: 10px 20px;
        border-radius: 2em;
        font-weight: 300;
        background-color: white;
        border: 0.1em solid rgba(0, 0, 0, 0.7);
        cursor: pointer;
    }


    .inner-product-card>.info-block>.quantity-box {
        border: 0.1em solid rgba(0, 0, 0, 0.7);
        border-radius: 2em;
        width: fit-content;
        height: fit-content;
        padding: 5px 10px;
        margin: 15px 0;
    }

    .inner-product-card>.info-block>.quantity-box>button {
        font-family: 'Libre Franklin', sans-serif;
        border-radius: 50%;
        font-size: 21px;
        padding: 7px;
        border: none;
        background-color: white;
        cursor: pointer;
    }

    .inner-product-card>.info-block>.quantity-box>input {
        text-align: center;
        height: auto;
        font-family: 'Libre Franklin', sans-serif;
        font-size: 15px;
        font-weight: 300;
        width: 55px;
        border: none;
    }

    .inner-product-card>.info-block>.quantity-box>input:focus {
        outline: none;
    }

    .cod-button {
        font-family: 'Libre Franklin', sans-serif;
        font-size: 21px;
        padding: 15px 20px;
        border-radius: 2em;
        font-weight: 300;
        background-color: black;
        border: 0.1em solid black;
        color: white;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        margin: 10px 0;
    }

    .vfd-link {
        font-family: 'Libre Franklin', sans-serif;
        font-weight: 500;
        color: #2F744B;
        text-decoration: none;
        display: flex;
        justify-content: right;
        align-items: center;
        gap: 10px;
        height: fit-content;
        width: 100%;
        margin: 5px 0;
        padding-right: 10px;
    }

    .vfd-link:hover {
        text-decoration: underline;
    }

    .vfd-link:hover .fa-solid {
        transform: translateX(3px);
    }

    .inner-e-products>h1 {
        scale: 0.72;
    }

    .products-here {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-us {
        width: 90%;
        max-width: 940px;
        height: auto;
        padding: 30px 0;
        margin: auto;
        display: block;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }
    
    .about-desc {
        grid-area: auto;
        margin-top: 50px;
    }

    .contact-us {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form {
        max-width: 100%;
    }

    .pre-footer {
        padding: 50px 5% 30px 5%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .pre-footer>img{
        margin-bottom: 50px;
    }
    
    .pre-footer>p{
        margin-bottom: 50px;
        text-align: left;
    }
    
    .footer-links{
        flex-direction: column;
    }
    
    .footer>p {
        scale: 0.7;
    }

}


@media only screen and (max-width: 576px) {
    .inner-e-products>h1 {
        scale: 0.65;
    }

    .products-here {
        grid-template-columns: repeat(1, 1fr);
    }
}