/*Common Section*/


@font-face {
    font-family: 'Mulish';
    src: url(../fonts/mulish/Mulish-Regular.ttf);
}

@font-face {
    font-family: 'Marcellus';
    src: url(../fonts/marcellus/Marcellus-Regular.ttf);
}

html {
    scroll-behavior: smooth;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;

}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--secondaryColor);
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}


:root {
    --themeColor: #302B6D;
    --themeColorRGBA: rgba(48, 43, 109, 1);
    --secondaryColor: #01A2D2;
    --BackgroundColor: #F0F8FF;
    --buttonColor: #F26F35;
    --primaryTextColor: #34312C;
    --secondaryTextColor: #535558;
    --fontFamilyMulish: 'Mulish';
    --fontFamilyMarcellus: 'Marcellus';
    --fontBold: 700;
    --fontWeightRegular: 400;
    --borderRadius10: 10px;
    --borderRadius5: 5px;
    --lineHeight: 1.7;
    --color-white: white;
    --line-height-titles: 1.2;
    --grid-gap: 40px 60px;
    --box-shadow10: 1px 5px 10px 0px #F2F7FA;
    --box-shadow20: 1px 5px 20px 0px #F2F7FA;
    --box-shadow30: 10px 15px 30px 0px rgb(91, 49, 69, 0.1);
    --box-shadow40L: 0 .5rem 2rem rgba(55, 62, 66, 0.2);
    --box-shadow40: 0 .5rem 2rem rgba(100, 16, 7, .2);
    --backgroundImageRight: linear-gradient(to right, #0c2233, #184361, #236692, #2c8cc7, #34b4ff);
    --Approved: #239B56;
    --New: #B03A2E;
    --InProgress: #F39C12;
    --OnHold: #FF5733;
    --Closed: #2ECC71;
    --Assigned: #0096CC;
}

h1,
h2,
h3 {
    color: var(--primaryTextColor);
    font-family: var(--fontFamily);
}

h4,
h5,
h6,
p {
    color: var(--secondaryTextColor);
    font-family: var(--fontFamily);
}

.sectionBody {
    padding: 5% 0%;
}

.sectionHeaderOuter .sectionHeaderTop h3 {
    color: var(--primaryTextColor);
    letter-spacing: 1px;
    font-weight: bold;
    line-height: 35px;
    text-align: center;
    font-family: var(--fontFamilyMarcellus);
}

.sectionHeaderOuter .sectionHeaderTop h5 {
    color: var(--secondaryTextColor);
    text-align: center;
    font-family: var(--fontFamilyMulish);
}

/*Common Section*/

.sectionHeaderTop {
    text-align: center;
}

.sectionHeaderTop h3 {
    text-align: center;
    color: var(--secondaryColor);
    font-weight: 800;
}

.sectionHeaderTop h3 span {
    font-weight: bold;
    font-size: 1.3em;
}

.sectionHeaderTop h5 {
    text-align: center;
    line-height: 25px;
    font-size: 1.1em;
    letter-spacing: 0px;
    color: var(--secondaryTextColor);
}

.sectionHeaderTop h6 {
    text-align: center;
    line-height: 22px;
    font-size: 1em;
}

.sectionHeaderTop a {
    text-align: center;
    line-height: 22px;
    font-size: 1em;
    color: grey;
    font-weight: 100;
}

/* ----------- INDEX PAGE --------------- */

/* background-image section */
#inProductsTypeCard .container-fluid {
    background-image: url(../../Assets/image/inProductsBg1.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#WhyChooseUs .container-fluid {
    background-color: var(--themeColor);
    background-image: url(../../Assets/image/inProductsBg2.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#inProducts .container-fluid {
    background-image: url(../../Assets/image/inProductsBg4.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#inMaterialTypeComp .container-fluid {
    background-color: white;
}

#inProductsType {
    background-color: var(--secondaryColor);
    background-image: url(../../Assets/image/inProductsBg6.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#inBannerCall {
    background-image: url(../../Assets/image/inProductsBg7.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

#inGalleryType {
    background-image: url(../../Assets/image/inProductsBg8.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}


/* background-image section */

/* =========== LANDING SECTION =========== */

#LandingSection .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    z-index: -1;
}

#LandingSection .slide.active {
    opacity: 1;
    z-index: 0;
}

/* Gradient Overlay from Bottom to Top */
#LandingSection .slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
    z-index: 1;
}

/* Slide content */


#LandingSection .slide.active .overlay {
    transform: translateY(0);
    opacity: 1;
}



#LandingSection .pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 111;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

#LandingSection .dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

#LandingSection .dot.active {
    background-color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========== LANDING SECTION =========== */

/*ABOUT SECTION*/


#inAboutUs .founderDesk .BtnPrimaryWhite {
    padding: 12px 15px;
    font-size: 0.9em;
    background-color: var(--themeColor);
    color: white;
}

.founderDesk {
    margin-top: 2%;
    background-image: url(../image/bgImg01.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.founderDesk .row .col-lg-6 {
    padding: 0px;
    margin: 0px;
}

.founderDesk img {
    border-radius: 10px;
    margin-top: 35px;
}

.founderDesk .founderQuote {
    padding: 0% 0% 0% 0%;
}

.founderDesk .founderQuote h3 {
    text-align: left;
    padding: 2% 0% 0% 0%;
    font-weight: bold;
    font-family: var(--fontFamilyMarcellus);
    text-transform: uppercase;
    font-size: 2.2em;
    color: var(--themeColor);
}

.founderDesk .founderQuote h5 {
    padding: 0% 0%;
    color: var(--secondaryTextColor);
    line-height: 25px;
    font-size: 16px;
    font-family: var(--fontFamilyMulish);
    text-align: left;
}

#inAboutUs .tellYourStory .BtnPrimaryWhite {
    padding: 12px 15px;
    font-size: 0.9em;
    background-color: var(--BackgroundColor);
    color: var(--themeColor);
}

.tellYourStory {
    margin-top: 0%;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--secondaryColor);
    background-image: url(../image/bgImg02.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.tellYourStory .row .col-lg-6 {
    padding: 0px;
    margin: 0px;
}

.tellYourStory .founderQuote {
    padding: 4% 10%;
}

.tellYourStory h3 {
    text-align: center;
    padding: 0% 0%;
    text-transform: uppercase;
    font-size: 30px;
    font-family: var(--fontFamilyMarcellus);
    color: white;
}

.tellYourStory h5 {
    padding: 0% 0%;
    color: white;
    line-height: 25px;
    font-size: 16px;
    font-family: var(--fontFamilyMulish);
    text-align: center;
}

.aboutIconHome {
    padding: 2% 2% 2% 2%;
    text-align: left;
    margin-top: 2%;
    overflow: hidden;
    margin-bottom: 2%;
    border-radius: 10px;
    background-color: white;
}


.aboutIconHome .aboutIconHomeImg img {
    height: 50px;
}




/*ABOUT SECTION*/

/*inProductsTypeCard SECTION*/

.productTypeCard .well {
    padding: 0px;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-top: 25px;
    margin-bottom: 35px;
    box-shadow: var(--box-shadow40L);
    transition: 0.3s ease-in;
}

.productTypeCard .well:hover {
    transition: 0.3s ease-in;
}

.productTypeCard .well h3 {
    color: var(--themeColor);
    line-height: 35px;
    letter-spacing: 1px;
    font-size: 22px;
    font-family: var(--fontFamilyMarcellus);
    margin-bottom: 5px;
    font-weight: bold;
}

.productTypeCard .well h4 {
    color: var(--themeColor);
    font-size: 14px;
    margin: 0px;
    font-family: var(--fontFamilyMulish);
    /* Golden ratio to subheading */
    font-weight: 700;
    line-height: 1.2;
}

.productTypeCard .well h5 {
    color: var(--primaryTextColor);
    line-height: 25px;
    font-family: var(--fontFamilyMulish);
    padding-left: 0px;
    font-size: 14px;
    line-height: 1.6;
}

.productTypeContent {
    background-color: var(--BackgroundColor);
    border-radius: 0px;
    text-align: center;
    padding: 10px;
}

.productTypeCard .well .workshopImage {
    transition: 0.5s ease-in;
    height: 100%;
    overflow: hidden;
}

.productTypeCard .well img {
    transition: 0.8s ease-in;
}

.productTypeCard .well:hover img {
    transform: scale(1.1);
    transition: 0.5s ease-in;
}

.productTypeImage {
    height: 200px;
    overflow: hidden;
}

.productTypeImage img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/*inProductsTypeCard SECTION*/


/*WhyChooseUs SECTION*/

.sectionHeaderOuterWhy .sectionHeaderTop h3 {
    color: white;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: left;
    font-size: 30px;
    font-family: var(--fontFamilyMarcellus);
}

.sectionHeaderOuterWhy .sectionHeaderTop h5 {
    color: white;
    text-align: left;
    font-size: 18px;
    font-family: var(--fontFamilyMulish);
}

.whyUsFeatures {
    margin-top: 25px;
}



.whyUsFeatures .well:hover {
    background-color: white;
    transition: 0.3s ease-in;
}

.whyUsFeatures .well:hover h4 {
    color: var(--themeColor);
    transition: 0.3s ease-in;
}

.whyUsFeatures .well h3 {
    color: white;
    font-size: 32px;
    text-align: center;
    line-height: 22px;
}



/*WhyChooseUs SECTION*/

/*inProducts SECTION*/

.inProducts .sectionHeaderTop h3 {
    color: var(--primaryTextColor);
    letter-spacing: 1px;
    font-weight: bold;
    font-family: var(--fontFamilyMarcellus);
}

.inProducts .sectionHeaderTop h5 {
    color: var(--secondaryTextColor);
    font-family: var(--fontFamilyMulish);
}

#inProducts .productShortComp {
    padding: 0%;
}

#inProducts .prodImgOuter {
    display: flex;
    justify-content: center;
}

#inProducts .productShortComp .productImageComp {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    height: 200px;
    aspect-ratio: 1;
    transition: 0.5s ease-in;
}

.productDashWrapper {
    transition: 0.5s ease-in;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(48, 43, 109, 0.2);
}

.productDashWrapper:hover {
    border: 1px solid rgba(48, 43, 109, 0.5);
    border-radius: 10px;
    margin-top: -10px;
    transition: 0.3s ease-in;
}

.productDashWrapper h4 {
    font-family: var(--fontFamilyMarcellus);
    text-align: center;
    font-size: 22px;
}

.productDashWrapper h5 {
    font-family: var(--fontFamilyMulish);
    text-align: center;
    line-height: 22px;
    font-size: 14px;
}

.tblProductTypes .well {
    padding: 0px;
    overflow: hidden;
    background-color: white;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    margin-bottom: 35px;
    box-shadow: var(--box-shadow40L);
}

.tblProductTypes .well .tblProductImage {
    transition: 0.5s ease-in;
    height: 220px;
    overflow: hidden;
}

.tblProductTypes .well img {
    transition: 0.4s ease-in;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.tblProductTypes .well:hover img {
    transform: scale(1.2);
    transition: 0.3s ease-in;
}

.tblProductContent {
    padding: 15px;
}

.tblProductTypes .well h3 {
    color: var(--primaryTextColor);
    line-height: 25px;
    padding-left: 0px;
    font-family: var(--fontFamilyMarcellus);
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 0px;
}

.tblProductTypes .well h4 {
    color: var(--secondaryTextColor);
    font-family: var(--fontFamilyMulish);
    line-height: 25px;
    font-size: 14px;
}

#inProducts .BtnPrimaryWhite {
    padding: 12px 10px;
    border: 1px solid var(--secondaryColor);
    background-color: white;
}

#inProducts:hover .BtnPrimaryWhite {
    background-color: var(--secondaryColor);
    color: white;
    transition: 0.3s ease-in;
}

/*inProducts SECTION*/


/*inProductsType SECTION*/

#inProductsType .container-fluid {
    padding: 2% 10%;
}

#inProductsType .sectionHeaderTop h5 {
    color: #CDCED0;
}

.productUseType .well .productUseImg {
    height: 230px;
    overflow: hidden;
    border-radius: 0px 0px 25px 25px;
}

.productUseType {
    padding-top: 2%;
}

.productUseType .well {
    padding: 0px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--secondaryColor);
    background-color: white;
    box-shadow: var(--box-shadow30);
}

.productUseType .well img {
    transition: 0.3s ease-in;
}

.productUseType .well:hover img {
    transform: scale(1.1);
    transition: 0.3s ease-in;
}

.productUseContent {
    padding: 10px 25px;
}

.productUseContent h4 {
    font-weight: bold;
    font-size: 26px;
    font-family: var(--fontFamilyMarcellus);
}

.productUseContent h5 {
    font-size: 16px;
    line-height: 25px;
    font-family: var(--fontFamilyMulish);
}

#inProductsType .sectionHeaderOuter .sectionHeaderTop h3 {
    color: white;
}

#inProductsType .sectionHeaderOuter .sectionHeaderTop h5 {
    color: white;
}

/*inProductsType SECTION*/

/*inBannerCall SECTION*/
#inBannerCall .container-fluid {
    background-color: white;
}

.callUsBannerNum a {
    text-decoration: none;
    font-family: var(--fontFamilyMulish);
}

.callUsBannerNum a:hover {
    text-decoration: none;
}

.callUsBannerNum {
    padding: 5% 0% 0% 0%;
}

.callUsBannerNum h2 {
    line-height: 35px;
    font-size: 30px;
    font-weight: bold;
    font-family: var(--fontFamilyMarcellus);
}

.callUsBannerNum h4 {
    line-height: 30px;
    padding-top: 15px;
    font-size: 18px;
    font-family: var(--fontFamilyMulish);
}


.callUsBannerNum span {
    background-color: var(--secondaryColor);
    padding: 10px 25px;
    color: white;
    border-radius: 10px;
}

/*inBannerCall SECTION*/

/* inMaterialType SECTION STARTS */
.materialTypeComp img {
    border-radius: 10px;
}

.materialHead h3 {
    font-size: 1.5em;
    margin: 0px;
    font-weight: bold;
    padding: 0px;
    font-family: var(--fontFamilyMarcellus);
    color: var(--primaryTextColor);
}

.materialHead h5 {
    font-size: 1.1em;
    margin: 0px;
    line-height: 25px;
    font-family: var(--fontFamilyMulish);
    padding: 10px 0px 0px 0px;
    color: var(--secondaryTextColor);
}

/* inMaterialType SECTION ENDS*/

/* inGalleryType SECTION STARTS */


.inGalleryType img:hover {
    transition: 0.5s ease-in;
}

/* inGalleryType SECTION ENDS */

/* inTestimonials SECTION STARTS */

#inTestimonials .testimonialComp .sectionHeadComp h2 {
    font-size: 2em;
    line-height: 45px;
    font-weight: bold;
    padding: 0px 0px;
    font-family: var(--fontFamilyMarcellus);
    color: var(--primaryTextColor);
}

.testimonialComp .sectionHeadComp h4 {
    font-size: 1.2em;
    text-transform: uppercase;
}


.happyClients {
    position: absolute;
    background-color: rgba(48, 43, 109, 1.0);
    top: 25px;
    z-index: 111;
    border-radius: 15px;
    right: 25px;
    padding: 15px;
}

.happyClients h2 {
    font-size: 2.2em;
    text-align: center;
    padding: 0px 35px 0px 0px;
    margin: 0px;
    font-family: var(--fontFamilyMulish);
    font-weight: 600;
    color: var(--secondaryColor);
}

.happyClients h5 {
    line-height: 25px;
    margin: 0px;
    color: white;
    font-family: var(--fontFamilyMulish);
    padding: 5px 0px;
}

.ratingCompTesti {
    color: var(--secondaryColor);
    padding-left: 0px;
    display: flex;
    width: 150px;
    margin-bottom: 10px;
    border-radius: 0px;
    justify-content: space-between;
    font-size: 1em;
}

.imageSliderTesti {
    position: relative;
    width: 100%;
    height: 50vh;
}

.slideContainerTesti {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    margin-top: 25px;
    overflow: hidden;
}

.slideContainerTesti .slideItemTesti img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.slideItemTesti {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease, transform 4s ease;
    z-index: 0;
}

.slideItemTesti.active {
    opacity: 1;
    z-index: 0;
}

#inTestimonials .imageSliderComment h4 {
    font-size: 1em;
    margin: 0px;
    padding: 15px 0px 0px 0px;
    font-family: var(--fontFamilyMulish);
}

#inTestimonials .imageSliderComment h5 {
    font-size: 1em;
    line-height: 25px;
    margin: 0px;
    padding: 5px 0px;
    font-family: var(--fontFamilyMulish);
}

.imageSliderComment {
    position: relative;
    width: 100%;
    height: 40vh;
}

.slideContainerComment {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    margin-top: 25px;
    overflow: hidden;
}

.slideItemComment {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1);
    background-size: cover;
    background-position: center;
    transition: opacity 1.5s ease, transform 4s ease;
    z-index: 0;
}

.slideItemComment.active {
    opacity: 1;
    z-index: 0;
}

/* inTestimonials SECTION ENDS */


/*ART MATERIAL SECTION*/

/*ART MATERIAL SECTION*/
/* ----------- INDEX PAGE --------------- */


/*OHTER PAGES*/
#hiddenSection {
    height: 55px;
}



.paggigSmallDevice {
    text-align: center;
}

.paggigSmallDevice h3 {
    text-align: center;
    font-size: 1em;
}

#bodyWrapper .sectionHeaderTop h3 {
    font-size: 1.5em;
    font-weight: bold;
    font-family: var(--fontFamilyMarcellus);
}

#bodyWrapper .sectionHeaderTop h5 {

    font-family: var(--fontFamilyMulish);
}

#bodyWrapper .productImageComp img {
    border-radius: 10px;
}

#sectionOurServices .WorkshopTypes .well:hover {
    background-color: white;
    transition: 0.5s ease-in;
}

/*OTHER PAGES*/

/*FOOTER SECTION*/

.footerImage img {
    height: 55px;
}

.footerLinks a {
    text-decoration: none;
    font-family: var(--fontFamilyMulish);
}

.footerLinks h4 {
    color: white;
    margin: 0px;
    font-size: 0.9em;
    line-height: 25px;
    font-family: var(--fontFamilyMulish);
}

.footerLinks h5 {
    color: white;
    font-size: 1.5em;
    font-weight: 800;
    font-family: var(--fontFamilyMulish);
}

.footerLinks h6 {
    color: white;
    font-size: 1em;
    text-align: left;
    line-height: 30px;
    font-family: var(--fontFamilyMulish);
}

.footerLinks i {
    padding-right: 10px;
}

.footerIcons {
    padding-bottom: 5%;
}

.footerIcons i {
    background-color: var(--secondaryColor);
    height: 35px;
    width: 35px;
    cursor: pointer;
    color: white;
    border-radius: 10px;
    margin: 15px 15px 0px 0px;
    padding: 11px;
    font-size: 1em;
    transition: 0.5s ease-in;
}

.footerIcons i:hover {
    background-color: white;
    color: var(--secondaryColor);
    border-radius: 50%;
    transition: 0.3s ease-in;
}



.toTheTopIcon {
    height: 40px;
    width: 40px;
    font-size: 1.4em;
    position: fixed;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.4s ease-in;
    padding: 5px 0px 0px 14px;
}

.toTheTopIcon a {
    text-decoration: none;
}

.whatsappIcon {
    height: 40px;
    width: 40px;
    color: white;
    font-size: 1.3em;
    position: fixed;
    border-radius: 5px;
    cursor: pointer;
    z-index: 555555;
    background-color: #25d366;
    transition: 0.4s ease-in;
    padding: 5px 0px 0px 14px;
}

.whatsappIcon a {
    color: white;
    text-decoration: none;
}

/*FOOTER SECTION*/


.PrivacySection .sectionPrivacy h2 {
    font-size: 1.4em;
    font-weight: 600;
    line-height: 30px;
    font-family: var(--fontFamilyMulish);
}

.PrivacySection h3 {
    font-size: 1.2em;
    text-align: center;
    padding-bottom: 20px;
    line-height: 30px;
    font-family: var(--fontFamilyMulish);
    
}

.PrivacySection h4 {
    font-size: 1.2em;
    line-height: 30px;
    font-weight: bold;
    font-family: var(--fontFamilyMulish);
}

.PrivacySection .sectionPrivacy h5 {
    font-size: 1.1em;
    text-align: justify;
    line-height: 35px;
    font-family: var(--fontFamilyMulish);
}


/*CONTACT US PAGE*/
.secContactComp iframe {
    margin-top: 5%;
    border-radius: var(--borderRadius10);
}

.contactForm h4 {
    text-align: left;
    padding-top: 20px;
}

.contactForm span {
    color: var(--themeColor);
}

.contactForm label {
    margin-top: 10px;
    font-size: 0.9em;
    padding-bottom: 5px;
    color: var(--themeColor);
}

.contactForm input {
    border-radius: 7px;
    padding: 24px 15px;
    font-size: 1em;
    box-shadow: none;
    background-color: white;
    border: 1px solid var(--secondaryColor);
    margin-bottom: 5px;
}

.contactForm textarea {
    border-radius: 7px;
    padding: 15px 15px;
    font-size: 1em;
    box-shadow: none;
    background-color: white;
    border: 1px solid var(--secondaryColor);
    margin-bottom: 5px;
}

.secContactComp h6 {
    font-size: 1.1em;
    text-align: center;
    background-color: var(--themeColor);
    color: white;
    line-height: 25px;
    padding: 10px 120px;
    float: right;
    margin-top: -70px;
    margin-right: 130px;
    border-radius: 5px;
}

/*CONTACT US PAGE*/

/*AUTHENTICATE*/
.containerBackUser {
    background-repeat: no-repeat;
    background-image: url(../../Assets/image/bgImg14.png);
    background-size: cover;
}

.AuthwrapperUser .container-fluid {
    padding: 10% 10% 3% 10%;
}

.authCompImg img {
    height: 60px;
}

.aboutProfile {
    padding-top: 2%;
}

.loginCardUser .well {
    background-color: white;
    box-shadow: var(--box-shadow40);
    z-index: 2;
    padding: 15px 20px 15px 20px;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: transparent;
}

.loginCardUser .well h1 {
    font-size: 1.4em;
    color: var(--themeColor);
    margin: 0px;
    padding-bottom: 5px;
}

.loginCardUser .well h4 {
    font-size: 1em;
    margin: 0px;
    font-style: italic;
    padding-top: 7px;
}

#sectionUserComp .formPannelAuth .formPannel input {
    border: 1px solid var(--themeColor);
    border-radius: var(--borderRadius5);
    background-color: transparent;
    font-size: 1em;
    border-radius: 10px;
    padding: 27px 25px;
    margin-top: 15px;
}

#sectionUserComp .formPannelAuth input::placeholder {
    font-size: 1em;
    letter-spacing: 1px;
}

.loginCardUser .well .actionBtnDark {
    padding: 15px 25px;
    border-radius: 10px;
    margin-top: 10px;
    background-color: var(--themeColor);
    width: 100%;
    color: white;
    border: none;
}

.incorrectBaner {
    height: 50px;
    background-color: transparent;
    padding-top: 15px;
    text-align: center;
}

#incorrect {
    color: red;
    padding: 5px;
    border-radius: 15px;
}

#sectionUserComp .actionBtnBack {
    background-color: transparent;
    border: none;
    padding-top: 15px;
}

#sectionUserComp .createOneComp .well {
    background-color: white;
    border-radius: var(--borderRadius10);
    box-shadow: var(--box-shadow40);
    padding: 10px;
    margin: 0px;
    border-radius: 10px;
    text-align: center;
    margin-top: 20px;
}

#sectionUserComp .createOneComp p {
    font-size: 1em;
    padding: 0px;
    padding-top: 10px;
    text-align: center;
}

#sectionUserComp .createOneComp p a {
    font-size: 1em;
    font-weight: bold;
    color: var(--themeColor);
}

#AllFields {
    text-align: center;
    color: red;
}

.AuthwrapperUser .infoBottom h6 {
    text-align: center;
    font-size: 0.9em;
    line-height: 22px;
    padding-top: 10px;
    margin: 0px;
}

.showPassword {
    padding-top: 10px;
}

.errorPane {
    background-color: var(--New);
    color: white;
    font-size: 1em;
    text-align: center;
    padding: 8px 55px;
    border-radius: 40px;
}

/*AUTHENTICATE*/

.sideDashComp a h4.Active {
    background-color: rgba(203, 124, 50, 1);
    color: white;
    font-size: 1em;
    text-align: center;
    border-radius: 10px;
    padding: 15px;
}

.myAccount .well .sideDashComph4 {
    font-size: 1.1em;
    text-align: center;
}

.myAccount .well .sideDashComp h4 a {
    color: var(--secondaryColor);
    font-weight: bold;
}

.myAccount .well h5 {
    font-size: 1em;
    line-height: 30px;
    margin-top: 10%;
    text-align: center;
}

.myAccount .well h5 a {
    color: var(--secondaryColor);
    font-weight: bold;
}

.myAccount .well {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow40L);
    padding: 5px 20px 5px 15px;
    height: 100%;
}

.myAccount .well label {
    padding-top: 15px;
}

.myAccount .well input {
    border-radius: 7px;
    padding: 30px 25px;
    font-size: 1em;
    background-color: white;
    border: 1px solid var(--secondaryColor);
    margin-bottom: 5px;
}

.sideDashComp a h4 {
    background-color: rgba(203, 124, 50, 0.2);
    color: var(--themeColor);
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    padding: 15px;
}

.sideDashComp a:hover {
    text-decoration: none;
}

.notSignIn h4 {
    text-align: center;
    font-size: 1em;
}

.notSignIn h4 a {
    font-weight: 600;
    color: var(--themeColor);
    font-size: 1em;
}

.moveBack h5 {
    padding: 5px 5px;
    font-size: 1em;
    color: var(--secondaryColor);
    float: right;
    transition: 0.5s ease-in;
}

.moveBack a {
    text-decoration: none;
    color: var(--secondaryColor);
    transition: 0.5s ease-in;
}

.moveBack i {
    transition: 0.3s ease-in;
}

.moveBack a:hover i {
    padding-right: 5px;
    transition: 0.3s ease-in;
}

/*PRODUCTS PAGES STARTS*/
 
.productWrapper h4 {
    padding: 15px;
    font-size: 1em;
    margin: 0px 0px 20px 0px;
    font-family: var(--fontFamilyMulish);
}

.productWrapper .productImage {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    padding: 5px;
    height: 250px;
    background-color: white;
    transition: 0.5s ease-in;
}

.productWrapper .productImage img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s ease-in;
}

.ProductQuality {
    padding: 2%;
}

.ProductQuality img {
    border-radius: 25px;
}

.ProductQuality h3 {
    font-weight: bold;
    font-size: 1.3em;
}

.ProductQuality h4 {
    font-size: 1em;
    line-height: 20px;
}

.foamQuality {
    padding: 2%;
}

.foamQuality img {
    border-radius: 25px;
}

.foamQuality h3 {
    font-weight: bold;
    font-size: 1.3em;
    font-family: var(--fontFamilyMarcellus);
}

.foamQuality h4 {
    font-size: 1em;
    font-family: var(--fontFamilyMulish);
    line-height: 20px;
}

#bodyWrapper .ProductCompCardTypes {
    padding: 2% 0%;
}

#bodyWrapper .ProductCompCard .well {
    padding: 0px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow30);
    border: none;
}

#bodyWrapper .ProductCompCard .well h3 {
    color: var(--primaryTextColor);
    font-weight: bold;
    font-family: var(--fontFamilyMarcellus);
    margin: 0px;
    font-size: 22px;
    padding: 0px;
    text-transform: uppercase;
}

#bodyWrapper .workshopContent {
    padding: 15px;
}

#bodyWrapper .ProductCompCard .well h4 {
    color: var(--secondaryTextColor);
    line-height: 25px;
    font-size: 14px;
       font-family: var(--fontFamilyMulish);
    padding: 0px 0px;
}

#bodyWrapper .ProductCompCard .well .productImage {
    transition: 0.7s ease-in;
    height: 250px;
    overflow: hidden;
}

#bodyWrapper .ProductCompCard .well .productImage img {
    transition: 0.7s ease-in;
}

#bodyWrapper .ProductCompCard .well:hover img {
    transform: scale(1.1);
    transition: 0.1s ease-in;
}

#sectionOurProduct .productShortComp {
    padding-left: 0%;
}

.mySwiperGallery {
    padding-bottom: 5%;
}

.swiperWrapperBig {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.swiperWrapperBig img {
    height: 250px;
    margin: 0px 0px 25px 0px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.swiperWrapperBig img:hover {
    transition: 0.5s ease-in;
}

.swiperWrapperSmall img {
    height: 250px;
    margin: 0px 0px 25px 0px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in;
}

.swiperWrapperSmall img:hover {
    transition: 0.5s ease-in;
}

/*PRODUCTS PAGES ENDS*/