@media all and (min-width: 1400px) {

    body {
        background-color: var(--BackgroundColor);
        transition: background-color .5s;
        padding: 0px;
        margin: 0px;
    }

    #hiddenSection {
        height: 0px;
    }

    #LandingSection .container-fluid {
        padding: 0% 0px 0px 0px;
        margin: 0px;
    }

    #LandingSection .slider {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    #LandingSection .overlay {
        position: absolute;
        bottom: 80px;
        left: 50px;
        margin-left: 8%;
        z-index: 2;
        width: 50%;
        /* above the gradient */
        background-color: rgba(0, 0, 0, 0.5);
        color: #fff;
        padding: 30px;
        border-radius: 10px;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.8s ease;
    }

    #LandingSection .overlay h2 {
        color: white;
        font-weight: bold;
        font-size: 2.5em;
        font-family: var(--fontFamilyMarcellus);
    }

    #LandingSection .overlay p {
        color: white;
        font-family: var(--fontFamilyMulish);
    }

    #inProductsTypeCard .container-fluid {
        padding: 2% 10%;

    }

    .whyUsFeatures .well {
        padding: 10px 5px;
        background-color: transparent;
        border-radius: 15px;
        border: 1px solid white;
        transition: 0.3s ease-in;
    }

    .whyUsFeatures .well h4 {
        color: white;
        font-size: 16px;
        padding-top: 10px;
        transition: 0.3s ease-in;
        font-family: var(--fontFamilyMulish);
        text-align: center;
        line-height: 22px;
    }

    #inAboutUs .container-fluid {
        padding: 2% 10%;
    }

    .aboutIconHome h2 {
        font-weight: bold;
        font-size: 1.7em;
        margin: 0px;
        font-family: var(--fontFamilyMulish);
        padding: 0px 0px 5px 0px;
        letter-spacing: 1px;
    }

    .aboutIconHome h4 {
        font-size: 1em;
        margin: 0px;
        font-family: var(--fontFamilyMulish);
        padding: 0px;
    }


    #WhyChooseUs .container-fluid {
        padding: 2% 10%;
    }

    #inProducts .container-fluid {
        padding: 2% 10%;
    }

    #inMaterialTypeComp .container-fluid {
        padding: 2% 2%;
    }

    #inProductsType .container-fluid {
        padding: 2% 10%;
    }

    #inBannerCall .container-fluid {
        padding: 4% 10%;
    }

    .callUsBannerNum h1 {
        font-weight: bold;
        padding-top: 10px;
        font-family: var(--fontFamilyMulish);
    }

    #inGalleryType .container-fluid {
        padding: 2% 10%;
    }

    .galleryImage {
        height: 290px;
        aspect-ratio: 1;
        border-radius: 10px;
        margin: 15px 0px 5px 0px;
        overflow: hidden;
        border: 1px solid rgba(48, 43, 109, 0.1);
        transition: 0.3s ease-in;
    }

    .galleryImage:hover {
        border: 1px solid rgba(48, 43, 109, 0.7);
        transition: 0.3s ease-in;
    }

    .galleryImage img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    #inTestimonials .container-fluid {
        padding: 2% 10%;
    }

    #footerHome .container-fluid {
        padding: 2% 10%;
        background-color: var(--themeColor);
    }

    .copyright h4 {
        margin: 0px;
        color: white;
        font-size: 0.8em;
        font-family: var(--fontFamilyMulish);
    }

    .copyright a {
        text-decoration: none;
        color: white;
        font-family: var(--fontFamilyMulish);
    }

    .copyright h5 {
        margin: 0px;
        text-align: center;
        color: white;
        font-size: 0.8em;
        font-family: var(--fontFamilyMulish);
    }

    .copyright h6 {
        margin: 0px;
        color: white;
        text-align: right;
        font-size: 0.7em;
        font-family: var(--fontFamilyMulish);
    }

    .toTheTopIcon {
        left: 97.5%;
        top: 86%;
    }

    .whatsappIcon {
        left: 97.5%;
        top: 92%;
    }

    .footerLinks h3 {
        color: white;
        font-weight: 800;
        font-size: 1em;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-family: var(--fontFamilyMarcellus);
        padding-bottom: 15px;
        padding-top: 0px;
    }

    .copyright {
        padding: 0% 0% 0% 0%;
    } 
    #sectionOurProduct .container-fluid{
        padding: 6% 10% 2% 10%;
    }
    .paggination h5 {
    color: var(--secondaryColor);
    font-size: 0.9em;
    padding-bottom: 15px;
    font-family: var(--fontFamilyMulish);
}

.paggination h5 a {
    font-weight: 200;
    font-size: 0.8em;
    text-decoration: none;
    color: var(--secondaryColor);
    font-family: var(--fontFamilyMulish);
}
    .cardinProductsType {
opacity: 0;
transform: translateX(-50px);
transition: opacity 1s ease, transform 1s ease;
}
.cardinProductsType.show {
opacity: 1;
transform: translateX(0);
}
    .cardinMaterial {
opacity: 0;
transform: translateY(-50px);
transition: opacity 1s ease, transform 1s ease;
}
.cardinMaterial.show {
opacity: 1;
transform: translateY(0);
}
    .cardAboutUs {
opacity: 0;
transform: translateX(80px);
transition: opacity 1s ease, transform 1s ease;
}
.cardAboutUs.show {
opacity: 1;
transform: translateX(0);
}
    .cardinProducts {
opacity: 0;
transform: translateX(-50px);
transition: opacity 1s ease, transform 1s ease;
}
.cardinProducts.show {
opacity: 1;
transform: translateX(0);
}
    .cardProductTypeCard {
opacity: 0;
transform: translateX(120px);
transition: opacity 1s ease, transform 1s ease;
}
.cardProductTypeCard.show {
opacity: 1;
transform: translateX(0);
}
    .cardWhyChooseUs {
opacity: 0;
transform: translateY(50px);
transition: opacity 1s ease, transform 1s ease;
}
.cardWhyChooseUs.show {
opacity: 1;
transform: translateY(0);
}
}