/*@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Pacifico&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins: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');

body {
    overflow-x: hidden;
}

/*:root {*/
/*    --primary-font: "Montserrat", serif;*/
/*    --secondary-font: "Dosis", serif;*/
/*    --third-font: "Pacifico", serif;*/
/*    --primary-color: #ee8107;*/
/*    --secondary-color: #f7cc0b;*/
/*}*/

:root {
    --primary-font: "Poppins", serif;
    --secondary-font: "Noto Sans", serif;
    --third-font: "Open Sans", serif;
    --primary-color: #ee8107;
    --secondary-color: #f7cc0b;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

a {
    text-decoration: none;
    color: #000;
    display: block;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

h1,
h2,
h3,
h4,
h5
 {
    margin: 0;
    font-family: var(--secondary-font);
}

p {
    font-family: var(--primary-font);
    font-size: 1rem;
}

h6{
    margin: 0;
    font-family: var(--third-font);
}


/* top header section style start */

.top-header {
    background: #ed1c24;
}

.top-header .top-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0px;
}

.top-header .top-header-box .top-header-title {}

.top-header .top-header-box .top-header-title h6 {
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
}

.top-header .top-header-box .top-header-call {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header .top-header-box .top-header-call p {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0!important;
}

.top-header .top-header-box .top-header-call a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header .top-header-box .top-header-call a span.fa-solid {
    width: 25px;
    height: 25px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ed1c24;
    font-weight: 600;
    transition: all .3s ease;
    font-size: 0.9rem;
}

.top-header .top-header-box .top-header-call a:hover span.fa-solid {
    background: var(--secondary-color);
}

.top-header .top-header-box .top-header-call a span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* top header section style end */

/* header section style start */

.header {
    box-shadow: 0px 1px 5px rgb(0 0 0 / 4%);
    padding: 10px 0px;
    background: #c5ffff;
}

.header .header-box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.header .header-box .header-logo {
    width: 55%;
}

.header .header-box .header-logo a {}

.header .header-box .header-logo a img {
    width: 100%;
}

.header-lowerbox {
    background: #ed1c24;
}

.header-lowerbox .header-menubox {}

.header-lowerbox .header-menubox ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.header-lowerbox .header-menubox ul li {
    position: relative;
}

.header-lowerbox .header-menubox ul li.dropdown {}

.header-lowerbox .header-menubox ul li.dropdown a {}

.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box {
    position: absolute;
    z-index: 1;
    background: var(--primary-color);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box:before {
    content: "";
    position: absolute;
    top: -3px;
    left: 2.2em;
    width: 14px;
    height: 14px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background: var(--primary-color);
}

.header-lowerbox .header-menubox ul .dropdown-li:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
}

.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box ul {
    display: block;
    padding: 1.45em 0;
}

.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box ul li {}

.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box ul li a {
    margin: 0 1.1em;
    color: #fff;
    transition: all .3s ease;
    letter-spacing: -0.48px;
    border-bottom: 1px dashed #fff;
    padding: 10px 0px;
}

.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box ul li:last-child a {
    border: unset;
}

.header-lowerbox .header-menubox ul .dropdown-li .dropdown-box ul li a:hover {
    color: var(--secondary-color);
}

.header-lowerbox .header-menubox ul li a {
    padding: 0.8em 0.6em;
    font-weight: 600;
    color: #ffffff;
    transition: all .3s ease;
}

.header-lowerbox .header-menubox ul li a i {
    font-size: 14px;
}

.header-lowerbox .header-menubox ul li a:hover {
    color: #ffffff;
}


/* header section style end */

/* heading box style start */

.heading-box {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.heading-box .heading-img {}

.heading-box .heading-img img {width: 60px;}

.heading-box .heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.heading-box .heading h6 {
    color: #000;
    font-size: 1.3rem;
    text-transform: capitalize;
    font-family: var(--secondary-font);
}

.heading-box .heading h3 {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: var(--primary-font);
}

/* heading box style end */

/* banner section style start */

.banner-box {
    position: relative;
    overflow: hidden;
}

.banner-img img {
    width: 100%;
}

.banner-box .banner-text {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    gap: 20px;
    width: 70%;
    margin: 0px 100px 20px;
}

.banner-box .banner-text .banner-subhead {}

.banner-box .banner-text .banner-subhead h6 {
    font-size: 1.5rem;
    color: #fff;
}

.banner-box .banner-text .banner-head {}

.banner-box .banner-text .banner-head h2 {
    font-size: 7rem;
    color: var(--secondary-color);
    font-weight: 700;
    font-family: var(--primary-font);
}

.banner-box .banner-text a.banner-link {
    padding: 20px 40px;
    background: #fff;
    width: max-content;
    border-radius: 40px;
    color: #000;
    font-weight: 700;
    transition: all .3s ease;
}

.banner-box .banner-text a.banner-link:hover {
    background: var(--secondary-color);
}

/* banner section style end */

/* about us section style start */

.about-section {
    padding: 110px 70px;
    position: relative;
    background: #f3f2ee;
    width: 75%;
}

.about-section-box {
    position: absolute;
    bottom: 0;
}

.about-section-box img {
    width: 160px;
}

.about-section .about-img {width: 45%;position: absolute;padding: 30px;background: #fff;right: -20%;top: 50%;transform: translateY(-50%);}

.about-section .about-img img {
    width: 100%;
    /* height: 100%; */
    /* width: 100%; */
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: -1;
}

.about-section .about-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 70%;
}

.about-section .about-box .heading-box {}

.about-section .about-box .heading-box .heading-img {}

.about-section .about-box .heading-box .heading-img img {}

.about-section .about-box .heading-box .heading {}

.about-section .about-box .heading-box .heading h6 {}

.about-section .about-box .heading-box .heading h3 {
    font-size: 4.4rem;
    font-weight: 700;
}

.about-section .about-box .about-description {}

.about-section .about-box .about-description p {
    font-size: 1rem;
    color: #747474;
    font-weight: 400;
    font-weight: 400;
    padding: 0 0 10px;
}

.about-section .about-box .about-description a {
    margin: 10px 0px;
}

.readmorebtn {
    padding: 10px 20px;
    display: inline-block;
    font-size: 1rem;
    text-transform: capitalize;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
}

.readmorebtn:hover {
    background: var(--secondary-color);
    color: #000;
    border: 1px solid var(--secondary-color);
}

/* about us section style end */

/* what we offer section style start */

.whatweoffer-section {
    background: #fbfbfb;
    padding: 50px 0px;
}

.whatweoffer-section .heading-box {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.whatweoffer-section .heading-box .heading-img {}

.whatweoffer-section .heading-box .heading-img img {}

.whatweoffer-section .heading-box .heading {}

.whatweoffer-section .heading-box .heading h6 {}

.whatweoffer-section .heading-box .heading h3 {
    color: #b34a9b;
}

.whatweoffer-section .whatweoffer-box {
    margin: 30px 0px;
    padding: 0px 10px;
    transition: all .3s ease;
    border-radius: 5px;
}

.whatweoffer-section .whatweoffer-box .whatweoffer {
    border-radius: 5px;
    transition: all .3s ease;
}

.whatweoffer-section .whatweoffer-box:hover, .whatweoffer-box.active {
    box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.whatweoffer-section .whatweoffer-box .whatweoffer a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 30px 10px 30px;
}

.whatweoffer-section .whatweoffer-box .whatweoffer a .whatweoffer-icon-box {}

.whatweoffer-section .whatweoffer-box .whatweoffer a .whatweoffer-icon-box svg {
    width: 50px;
    transition: all 0.3s ease;
}

.whatweoffer-section .whatweoffer-box:hover .whatweoffer a .whatweoffer-icon-box svg {
    fill: #b34a9b;
}

.whatweoffer-section .whatweoffer-box:hover .whatweoffer a .whatweoffer-icon-box svg path,
.whatweoffer-section .whatweoffer-box.active .whatweoffer a .whatweoffer-icon-box svg path {
    fill: #b34a9b;
}

.whatweoffer-section .whatweoffer-box .whatweoffer a p.name {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--primary-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.whatweoffer-section .whatweoffer-box:hover a p.name, .whatweoffer-section .whatweoffer-box.active a p.name {
    color: #b34a9b;
}

/* what we offer section style end */

/* product section style start */

.product-section {
    padding: 50px 0px 30px;
}

.product-section .heading-box {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.product-section .heading-box .heading-img {}

.product-section .heading-box .heading-img img {}

.product-section .heading-box .heading {}

.product-section .heading-box .heading h6 {}

.product-section .heading-box .heading h3 {
    color: #ed1c24;
}

.product-section .product-section-box {
    padding: 40px 0px 0px;
}

.category-heading {
    margin: 0 0 20px;
}

.category-heading h3 {
    padding: 5px 20px;
    font-size: 2rem;
    color: #ffffff;
    background: var(--primary-color);
    display: inline-block;
    border-radius: 5px;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.product-section .product-box {
    margin: 0px 0px 10px;
    padding: 0 5px;
    padding: 0 15px;
}


.product-section .product-box .product-img {
    display: flex;
    flex-direction: column;
}

.product-section .product-box .product-img a {
    box-shadow: 0 0.688em 2.375em rgba(165, 159, 139, 0.16);
    position: relative;
    transition: all .3s ease;
}

.product-section .product-box .product-img a img {
    width: 100%;
}

.product-section .product-box .product-img a .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.product-section .product-box .product-img a .hover-img img {
    width: 100%;
}

.product-section .product-box .product-img a:hover .hover-img {
    opacity: 1;
    visibility: visible;
}

.product-section .product-box .product-img .product-details {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
}

.product-section .product-box .product-img .product-details a {
    box-shadow: unset;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    font-family: var(--primary-font);
    transition: all .3s ease;
}

.product-section .product-box .product-img .product-details a:hover {
    color: var(--primary-color);
}

.product-section .product-box .product-img .product-details p {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--secondary-font);
    color: var(--primary-color);
}

.product-section .product-box .product-img .product-details button.request-buy {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
    height: 40px;
    border-radius: 5px;
    transition: all .3s ease;
    font-size: 1rem;
    font-weight: 500;
}

.product-section .product-box .product-img .product-details button.request-buy:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #000;
}

/* product section style end */

/* testimonial section style start */

.testimonials-section {
    padding: 50px 0px;
    /* background-position: top center; */
    /* background-size: cover; */
    /* background-repeat: no-repeat; */
    background: #4e1c76;
}

.testimonials-section .heading-box {
    width: 60%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-section .heading-box .heading-img {}

.testimonials-section .heading-box .heading-img img {}

.testimonials-section .heading-box .heading {}

.testimonials-section .heading-box .heading h6 {
    color: #fff;
}

.testimonials-section .heading-box .heading h3 {
    color: #ffcb05;
}

.testimonials-section .testimonial-box {
    margin: 50px 0px 0px;
    padding: 0 10px;
}

.testimonials-section .testimonial-box .testimonial-area {
    text-align: center;
    padding: 0rem 2rem 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #532974;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-quote {
    margin-top: 2em;
    font-weight: 500;
    font-size: 1.5em;
    line-height: 1.3em;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-quote svg {
    width: 40px;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-quote svg polygon {
    fill: var(--primary-color);
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-description {
    min-height: 200px;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-description p {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--primary-font);
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-details .testimonial-img {
    width: 50%;
    display: none;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-details .testimonial-img img {
    width: 100%;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-details .testimonial-name {}

.testimonials-section .testimonial-box .testimonial-area .testimonial-details .testimonial-name h4 {
    color: #ffffff;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    font-family: var(--primary-font);
    margin: 0 0 5px;
}

.testimonials-section .testimonial-box .testimonial-area .testimonial-details .testimonial-name h5 {
    color: #feb400;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    font-family: var(--primary-font);
}

/* testimonial section style end */

/* gallery section style start */


.gallery-section {
    padding: 50px 0 50px;
    overflow: hidden;
}

.gallery-section .heading-box {
    width: 60%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section .gallery-section-box {
    padding: 0 10px;
    position: relative;
    text-align: center;
    margin: 0px 0px 20px;
    overflow: hidden;
}

.gallery-section .gallery-section-box .gallery-img {height: 250px;}

.gallery-section .gallery-section-box .gallery-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.gallery-section .gallery-section-box .gallery-image-inner {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    width: 95%;
    background: #ff8a4891;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 30px;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.gallery-section .gallery-section-box:hover .gallery-image-inner {
    opacity: 1;
    visibility: visible;
}

.gallery-section .gallery-section-box .gallery-image-inner h5 {
    font-size: 1.4rem;
    font-family: var(--primary-font);
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
}

.gallery-section .gallery-section-box .gallery-image-inner .icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0px 50% 50%;
    transition: all .3s ease;
}

.gallery-section .gallery-section-box .gallery-image-inner .icon:hover {
    border-radius: 50% 50% 0px;
}

.gallery-section .gallery-section-box .gallery-image-inner .icon i {
    font-size: 1.3rem;
    color: #fff;
}

/* gallery section style end */

/* contact section home style start */

.contact-section-home {
    padding: 50px 0px;
    background: #f7f7f7;
}

.contact-section-home .heading-box {
    text-align: center;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.contact-section-home .heading-box .heading-img {}

.contact-section-home .heading-box .heading-img img {}

.contact-section-home .heading-box .heading {}

.contact-section-home .heading-box .heading h6 {}

.contact-section-home .heading-box .heading h3 {}

.contact-section-home .contact-form-home-box {
    margin: 50px 0px 0px;
}

.contact-section-home .contact-form-home-box form {}

.contact-section-home .contact-form-home-box form input.input-form,
.contact-section-home .contact-form-home-box form textarea.textarea-form {
    width: 100%;
    height: 50px;
    padding: 20px;
    margin: 10px 0px;
    background: #fff;
    border: 1px solid transparent;
    transition: all .3s ease;
}

.contact-section-home .contact-form-home-box form textarea.textarea-form {
    height: unset;
}

.contact-section-home .contact-form-home-box form .formbutton {
    text-align: center;
}

.contact-section-home .contact-form-home-box form .formbutton input[type="submit"] {
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 40px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid;
    transition: all .3s ease;
    border-radius: 5px;
}

.contact-section-home .contact-form-home-box form input[type="submit"]:hover {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    color: #000;
}

/* contact section home style end */

/* blog section style start */

.blog-section {
    padding: 50px 0px;
    background: #ededee;
}

.blog-section .heading-box {
    width: 60%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.blog-section .heading-box .heading-img {}

.blog-section .heading-box .heading-img img {}

.blog-section .heading-box .heading {}

.blog-section .heading-box .heading h6 {}

.blog-section .heading-box .heading h3 {
}

.blog-section .blog-box {
    display: flex;
    flex-direction: column;
    margin: 50px 0px 0px;
    background: #fff;
}

.blog-section.blog-page .blog-box {
    margin: 0;
}

.blog-section .blog-box .blog-img-box {
    position: relative;
}

.blog-section .blog-box .blog-img-box .blog-img {}

.blog-section .blog-box .blog-img-box .blog-img img {
    width: 100%;
}

.blog-section .blog-box .blog-img-box .blog-inner {
    position: absolute;
    background: #0000007d;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.blog-section .blog-box .blog-img-box:hover .blog-inner {
    opacity: 1;
    visibility: visible;
}

.blog-section .blog-box .blog-img-box .blog-inner svg {
    width: 50px;
    fill: var(--primary-color);
}

.blog-section .blog-box .blog-details {
    text-align: center;
    margin: 20px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.blog-section .blog-box .blog-details .blog-author a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 15px;
    font-family: var(--primary-font);
    color: #9c9c9c;
    transition: all .3s ease;
}

.blog-section .blog-box .blog-details .blog-author a:hover {
    color: #feae00;
}

.blog-section .blog-box .blog-details a h3.title {
    font-size: 1.5rem;
    color: #2b2b2b;
    font-weight: 600;
    font-family: var(--primary-font);
    transition: all .3s ease;
}

.blog-section .blog-box .blog-details a h3.title:hover {
    color: var(--primary-color);
}

.blog-section .blog-box .blog-details a p {
    color: #9d9c9b;
    font-size: 1rem;
    font-family: var(--primary-font);
    font-weight: 600;
    transition: all .3s ease;
}

.blog-section .blog-box .blog-details a p:hover {
    color: var(--primary-color);
}

.blog-section .blog-box .blog-img {}

.blog-section .blog-box .blog-img img {
    width: 100%;
}

.blog-section .blog-box .blog-details .blog-author {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.blog-section .blog-box .blog-details .blog-title {}

.blog-section .blog-box .blog-details .blog-title h2 {
    color: #ed1c24;
    font-size: 1.7rem;
    font-family: var(--secondary-font);
    font-weight: 400;
}

.blog-section .blog-box .blog-details .blog-title h2 a {
    font-family: var(--secondary-font);
    color: #df030f;
    font-weight: 500;
    transition: all .3s ease;
}

.blog-section .blog-box .blog-details .blog-title h2 a:hover {
    color: #fcaf17;
}

.blog-section .blog-box .blog-details a.readmorebtn {
    width: max-content;
    padding: 5px 10px;
}

/* blog section style end */

/* footer section style start */

.footer {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer .footer-top {
    padding: 20px 0px;
}

.footer .footer-top .footer-box {
    padding: 20px 0px;
}

.footer .footer-top .footer-box h5 {
    color: #fff;
    margin: 0 0 20px;
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.375em;
    letter-spacing: -0.6px;
}

.footer .footer-top .footer-box a {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 1.3em;
    letter-spacing: -0.6px;
    color: var(--secondary-color);
    transition: all .3s ease;
}

.footer .footer-top .footer-box a:hover {
    color: #fff;
}

.footer .footer-top .footer-box ul {}

.footer .footer-top .footer-box ul li {
    padding: 5px 0px;
}

.footer .footer-top .footer-box ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all .3s ease;
    display: inline-block;
}

.footer .footer-top .footer-box ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background: #f58220;
    padding: 10px 0px;
}

.footer-bottom .copyright {}

.footer-bottom .copyright p {
    color: #ffffff;
    text-align: center;
    font-family: var(--primary-font);
    font-weight: 500;
    margin: 0;
}

.footer-bottom .copyright p a {
    color: #ffffff;
    display: inline;
    transition: all .3s ease;
    font-weight: 500;
    font-family: var(--primary-font);
}

.footer-bottom .copyright p a:hover {
    color: var(--secondary-color);
}

.footer .footer-top .footer-box .logo {
    display: block;
    text-align: center;
    margin: 0;
}

.footer .footer-top .footer-box .logo a {}

.footer .footer-top .footer-box .logo a img {
    width: 100%;
}

.footer .footer-top .footer-box .footer-address {
    padding: 0px 0px 0px;
}

.footer .footer-top .footer-box .footer-address ul {}

.footer .footer-top .footer-box .footer-address ul li {
    position: relative;
    transition: all .25s ease;
    margin: 15px 0px;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
}

.footer .footer-top .footer-box .footer-address ul li i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    -webkit-transition: .3s;
    transition: .3s;
    color: #fff;
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-top .footer-box .footer-address ul li span {
    color: #000000;
    font-weight: 400;
    padding-left: 3rem;
    display: inline-block;
}

.footer .footer-top .footer-box .footer-social {
    padding: 20px 0px;
}

.footer .footer-top .footer-box .footer-social ul {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer .footer-top .footer-box .footer-social ul li {
    display: flex;
    gap: 6px;
}

.footer .footer-top .footer-box .footer-social ul li a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer .footer-top .footer-box .footer-social ul li a img {
    width: 40px;
}

.footer .footer-top .footer-box .footer-social ul li a.facebook {
    background: #0866ff;
}

.footer .footer-top .footer-box .footer-social ul li a i {
    color: #fff;
    font-size: 20px;
}

.footer .footer-top .footer-box .footer-social ul li a.twitter {
    background: #1c9cea;
}

.footer .footer-top .footer-box .footer-social ul li a.youtube {
    background: #ff0000;
}

.footer .footer-top .footer-box .footer-social ul li a.instagram {
    background: #fe0b84;
}

/* footer section style end */

/* breadcrumb style start */

.breadcrumb-box {
    padding: 20px 0;
    text-align: center;
    background: #ffc9c5;
}
.breadcrumb-box h3 {
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 1.5em;
    color: #393939;
    font-family: var(--primary-font);
}
.breadcrumb-box i {
    font-size: 14px;
    padding-left: 5px;
    padding-right: 5px;
}
.breadcrumb-box ul {
    margin: 5px 0 0;
    padding: 0;
}
.breadcrumb-box ul li {
    display: inline-block;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 500;
}
.breadcrumb-box ul li a {
    color: #000000;
    position: relative;
    text-transform: uppercase;
    font-family: var(--secondary-font);
    font-weight: 400;
}

/* breadcrumb style end */

/* contact page style start */

.contact-page {
    padding: 3rem 0;
}

.contact-box {
    -webkit-box-shadow: 0 0px 20px 0 rgb(0 0 0 / 7%);
    box-shadow: 0 0px 20px 0 rgb(0 0 0 / 7%);
}

.contact-page .form-box {
    padding: 50px;
}

.contact-page .form-box h3 {
    text-transform: uppercase;
    color: var(--primary-color);
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    padding: 0px 0px 10px;
}

.contact-page .form-box form .form-group textarea {
    height: 100px!important;
}

.contact-page .form-box h3:before {
    content: "";
    position: absolute;
    width: 50px;
    height: 2.5px;
    background: var(--secondary-color);
    bottom: 0;
    border-radius: 10px;
}

.contact-page .form-box form {}

.contact-page .form-box form .form-group {
    margin: 10px 0px;
}

.contact-page .form-box form .form-group .col-form-label {
    color: #000;
    font-family: var(--secondary-font);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-page .form-box form .form-group .form-control {
    height: 50px;
    outline: unset;
    box-shadow: unset;
    border: 1px solid #dee2e6;
}

.contact-page .form-box form .form-group input::placeholder, .contact-page .form-box form .form-group textarea::placeholder {
    color: #676767;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-page .form-box form .form-group input[type=submit] {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 500;
    text-transform: uppercase;
    width: 100%;
}

.contact-page .form-box form .form-group input[type=submit]:hover {
    border-color: var(--secondary-color);
    background: var(--secondary-color);
    color: #000;
}

.contact-page .contact-info {
    background: var(--primary-color);
    height: 100%;
    padding: 50px 15px;
    background: linear-gradient(119deg, var(--primary-color), var(--secondary-color));
}

.contact-page .contact-info h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 10px;
    font-family: var(--secondary-color);
}

.contact-page .contact-info p {
    color: #f2f2f2;
    margin: 0 0 20px;
    font-family: var(--secondary-font);
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.contact-page .contact-info ul {margin: 20px 0px 0px;}

.contact-page .contact-info ul li {
    display: flex;
    gap: 10px;
    padding: 5px 0px;
}

.contact-page .contact-info ul li .wrap-icon {
}

.contact-page .contact-info ul li .wrap-icon svg {
    width: 30px;
    fill: #fff;
}

.contact-page .contact-info ul li .wrap-icon svg path {}

.contact-page .contact-info ul li .text {
    font-size: 1rem;
    font-family: var(--secondary-font);
    color: #fff;
    font-weight: 600;
}

.contact-page .contact-info .bank-info {
    border-top: 1px solid #fff;
    margin: 10px 0px;
    padding: 20px 0px 0px;
}

.contact-page .contact-info .bank-info h3 {
    margin: 0;
}

.contact-page .contact-info .bank-info ul {margin: 10px 0px 0px;}

.contact-page .contact-info .bank-info ul li {
}

.contact-page .contact-info .bank-info ul li .heading {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
}

.contact-page .contact-info .bank-info ul li .details {
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
}

.map-box {
    height: 350px;
}

.map-box iframe {
    width: 100%;
    height: 350px;
}

/* contact page style end */

/* category page style start */

.product-section .product-sorting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0px;
}

.product-section .product-sorting .product-cat-name {
    display: flex;
    gap: 10px;
}

.product-section .product-sorting .product-cat-name a {
    padding: 5px 20px;
    position: relative;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    background: #ffcb08;
    border-radius: 5px;
    transition: all .3s ease;
}
.product-section .product-sorting .product-cat-name a:hover {
    background: #ff8848;
    color: #fff;
}

.product-section .product-sorting .product-cat-name a.active {
    color: #ffffff;
    background: #ff8848;

}

.product-section .product-sorting .product-cat-name a:before {
    left: 1rem;
    right: 1rem;
    width: auto;
    height: 3px;
    bottom: 0;
    content: "";
    position: absolute;
    display: block;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    opacity: 0;
}
.product-section .product-sorting .product-cat-name a.active:before {
    opacity: 1;
    background: #ff8a48;
}

.product-section .product-sorting .product-cat-name h3 {
    font-weight: 600;
    font-size: 28px;
}

.product-section .product-sorting .product-sort-option {}

.product-section .product-sorting .product-sort-option .sort-options {
    padding: 8px 15px;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--secondary-font);
    border-radius: 30px;
    cursor: pointer;
    border: 1px solid #9B9B9B;
    outline: none;
    min-width: 200px;
}

.product-section .product-sorting .product-sort-option .sort-options option {}

/* category page style end */

/* latex colors book page style start */

.colorsbook-section {
    padding: 50px 0px;
}

.colorsbook-section .colorsbook-box {}

.colorsbook-section .colorsbook-box .colorsbook-category {
    margin: 20px 0px;
}

.colorsbook-section .colorsbook-box .colorsbook-category h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #464646;
    font-family: var(--secondary-font);
    padding: 20px 0px;
}

.colorsbook-section .colorsbook-box .colorsbook-category .colorsbook {}

.colorsbook-section .colorsbook-box .colorsbook-category .colorsbook a {
    padding: 20px;
    text-align: center;
}

.colorsbook-section .colorsbook-box .colorsbook-category .colorsbook a .colorbook-img {}

.colorsbook-section .colorsbook-box .colorsbook-category .colorsbook a .colorbook-img img {
    width: 100%;
}

.colorsbook-section .colorsbook-box .colorsbook-category .colorsbook a .name {}

.colorsbook-section .colorsbook-box .colorsbook-category .colorsbook a .name p {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 1rem;
}

/* latex colors book page style end */

/* product details section style start */

.product-details-box {
    padding: 50px 0px;
}

.product-details-box .productview_img {
    padding: 0 20px 0 0;
    text-align: center;
}

.product-details-box .productview_img .mutliimg {
    padding: 0 10px 0 0;
    width: 20%;
    float: left;
}

.product-details-box .productview_img .mutliimg img {
    width: 100px;
    margin-bottom: 10px;
    display: block;
    cursor: pointer;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    border: 1px solid #eee;
}

.product-details-box .productview_img  .main_img {
    width: 50%;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    border: 1px solid #eee;
}

.product-details-box .product-details-text {}

.product-details-box .product-details-text h3 {
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.2;
    color: #333333;
    font-family: var(--primary-font);
}

.product-details-box .product-details-text p {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: #727272;
    letter-spacing: 0.5px;
    text-align: justify;
}

.product-details-box .product-details-text ul {
    margin: 0 0 20px;
    margin-left: 1.5rem;
}

.product-details-box .product-details-text ul li {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: #555555;
    letter-spacing: 0.5px;
    text-align: justify;
    list-style: disc;
}

.product-details-box .product-details-text .product-details-price {
    font-size: 30px;
    font-weight: 500;
    margin: 15px 0px;
    font-size: 22px;
    line-height: 1.2;
    color: var(--primary-color);
}

.product-details-box .product-details-text ul li strong {
    text-decoration: none;
    margin-left: 0px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 105%;
    color: var(--primary-color);
}

.product-details-box .product-details-text .price .after-discount-price {
    text-decoration: none;
    margin-left: 0px;
    display: inline-block;
    font-weight: 500;
    margin-bottom: 0px;
    font-size: 30px;
    color: var(--primary-color);
}

.product-buy-button {
}

.product-buy-button .request-buy {
    padding: 10px 20px;
    border-radius: 5px;
    background: var(--primary-color);
    outline: none;
    border: none;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
    color: #ffffff;
    transition: .3s;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--primary-font);
}

.product-buy-button .request-buy:hover {
    background: var(--secondary-color);
    color: #000;
}

.description-tabs .nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin: 40px 0px 30px;
    padding: 0px 0px 0px;
    border-bottom: 1px solid #e9e9e9;
}

.description-tabs .nav .nav-item {
    margin-right: 45px;
    border-bottom: 3px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.description-tabs .nav .nav-item .nav-link {
    font-size: 18px;
    color: #666666;
    font-weight: 600;
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 10px 0px;
    position: relative;
    background: transparent;
    text-transform: uppercase;
}

.description-content {}

.description-content h3 {
    margin: 10px 0px;
    font-size: 22px;
    display: block;
    color: #242424;
    text-transform: uppercase;
    font-weight: 400;
    font-family: var(--primary-font);
    line-height: 1.4;
}

.description-content p {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: #727272;
    letter-spacing: 0.5px;
    text-align: justify;
    margin-bottom: 1rem;
}

.description-content ul {
    margin-left: 1.5rem;
}

.description-content ul li {
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 400;
    color: #727272;
    letter-spacing: 0.5px;
    text-align: justify;
    list-style: disc;
}

/* product details section style end */

/*============ enquiry form ===========*/

.enquiry-popup-show {
    position: fixed;
    top: 0;
    bottom: 0px;
    right: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    transition: all 0.4s ease;
    background: #0000008c;
}

.enquiry-popup-show.show {
    opacity: 1;
    visibility: visible;
}

.enquiry-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 6px;
    outline: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.enquiry-body {
    padding: 0;
    border-bottom: 5px solid var(--primary-color);
    z-index: 99;
    position: relative;
    height: 560px;
    overflow: hidden;
    overflow-y: auto;
}

.enquiry-body a.close {
    position: absolute;
    top: 5px;
    right: 5px;
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 0 BLACK#fff;
    opacity: 1;
}

.enquiry-body a.close svg {
    width: 25px;
}

.enquiry-body .enquirymsgbox{
    text-align: center;
}
.enquiry-body .enquirymsgbox p{
    font-weight: 600;
    letter-spacing: .5px;
    font-size: 16px;
    color: red;
}
.enquiry-body .enquirymsgbox p.success{
    color: green;
}
.enquiry-body .enquirymsgbox p.failed{}
.enquiry-body .form-title {
    padding: 15px 10px;
    border-bottom: 1px solid var(--primary-color);
    background: var(--primary-color);
    letter-spacing: 1px;
    text-align: center;
}

.enquiry-body .form-title h3 {
    font-size: 24px;
    display: inline-block;
    color: #fff;
    margin-bottom: 0px;
    font-weight: 600;
    text-transform: uppercase;
}


.enquiry-body .form-title h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.enquiry-body form {
    padding: 15px 10px;
    margin: 0;
}

.enquiry-body form .fields {
    padding-bottom: 10px;
}

.enquiry-body form .fields input, .enquiry-body form .fields select {
    border-radius: 10px;
    border-color: #ddd;
    height: 40px;
    border: 1px solid #ddd;
    outline: none;
    box-shadow: none;
}
.enquiry-body form .fields textarea {
    outline: none;
    box-shadow: none;
    border: 1px solid #ddd;
}
.enquiry-body form .fields label {
    font-weight: 500;
    font-size: 17px;
    padding-bottom: 2px;
}

.enquiry-body form .fields-btn {
    text-align: center;
}

.m-auto {
    margin-left: 50%;
    transform: translateX(-50%);
}
.enquiry-popup {position: relative;top: 50%;transform: translateY(-50%);}
form .fields-btn input[type=submit].mainbtn {
    padding: 15px 0;
    border-radius: 0px;
    background: var(--primary-color);
    border: none;
    display: block;
    width: 100%;
    text-transform: uppercase;
    color: #fff;
    font-family: var(--secondary-font);
    font-weight: 500;
    transition: all .3s ease;
}

form .fields-btn input[type=submit].mainbtn:hover {
    background: var(--secondary-color);
    color: #000;
}

.product-thumb figure img {
    width: 100%;
    border-radius: 10px;
}

.widget-product .product-thumb .otherimgbox {
    padding: 10px 10px;
}
form#enquiryForm::-webkit-scrollbar {
    width: 2px;
}

form#enquiryForm::-webkit-scrollbar-track {
    background: transparent;
}

form#enquiryForm::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.enquiry-body::-webkit-scrollbar {
    width: 2px;
}

.enquiry-body::-webkit-scrollbar-track {
    background: #e1e1e1;
}

.enquiry-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

/*============ enquiry form End ===========*/

/* blog details section style start */

.blog-detatils {
    padding: 50px 0px;
}

.blog-detatils .blog-details-box {
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
}

.blog-detatils .blog-details-box .blog-img {
    text-align: center;
}

.blog-detatils .blog-details-box .blog-img img {
    width: 60%;
    border-radius: 10px;
}

.blog-detatils .blog-details-box .blog-description {}

.blog-detatils .blog-details-box .blog-description .authorinfo {
    padding: 15px 0 10px;
}

.blog-detatils .blog-details-box .blog-description .authorinfo ul {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
    justify-content: center;
}

.blog-detatils .blog-details-box .blog-description .authorinfo ul li {
    display: inline-flex;
    gap: 20px;
}

.blog-detatils .blog-details-box .blog-description .authorinfo ul li a {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ed1c24;
    font-family: var(--secondary-font);
    transition: all .3s ease;
}

.blog-detatils .blog-details-box .blog-description .authorinfo ul li a:hover {
    color: var(--secondary-color);
}

.blog-detatils .blog-details-box .blog-description .fulldescription {}

.blog-detatils .blog-details-box .blog-description .fulldescription p {
    font-size: 1rem;
    font-family: var(--primary-font);
    padding: 0 0 10px;
    color: #343434;
}



/* blog details section style end */

/* mobile header style start */

.mobile.header-lowerbox {
    display: none;
}
.mobile-header {
    background: var(--theme-light-color);
    display: none;
    padding: 20px 0px;
}

.mobile-header .mobile-header-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-header .mobile-header-box .mobile-logo {
    width: 100%;
}

.mobile-header .mobile-header-box .mobile-logo a {}

.mobile-header .mobile-header-box .mobile-logo a img {
    width: 100%;
}

.mobile-header .mobile-header-box .mob-menu-open {
    position: relative;
    z-index: 99;
    right: 6%;
    top: 0;
    padding: 6px 5px 4px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile-header .mobile-header-box .mob-menu-open span.bar {
    background: #000000;
    height: 4px;
    width: 30px;
    display: block;
    margin-bottom: 7px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}


.mobile.header-lowerbox .header-menubox ul {
    justify-content: space-between;
    gap: unset;
}

/* mobile header style end */

/* mobile sidebar style start */

.mobile-sidebar {
    position: fixed;
    inset-block: .001px 0;
    z-index: 11;
    overflow: hidden;
    overflow-y: auto;
    width: 80%;
    background: #ff8a4833;
    right: auto;
    left: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    width: 100%;
    z-index: 100;
}

.mobile-sidebar.show {
    opacity: 1;
    transform: unset;
    visibility: visible;
}

.mobile-sidebar .mobile-sidebar-boxx {

}

.mobile-sidebar .mobile-sidebar-box {
    width: 80%;
    height: 100vh;
    overflow: scroll;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    background: var(--primary-color);
    background: #fff;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header .mobile-sidebar-logo {
    width: 95%;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header .mobile-sidebar-logo a {}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header .mobile-sidebar-logo a img {
    width: 100%;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header .mobile-sidebar-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header .mobile-sidebar-close a {}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebar-header .mobile-sidebar-close a i {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu {
    padding: 0px 0px;
    height: 100%;
    background: #fff6c4;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul {
    display: flex;
    flex-direction: column;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #000;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li {
    display: block;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li .megadropmenu {
    background: var(--primary-color);
    display: block;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: all 0.4s linear;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li .megadropmenu ul {
    margin: 0;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li .megadropmenu ul li {border-color: #fff;}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li:last-child {
    border: unset;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li .megadropmenu ul li a {
    color: #fff;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li a {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    width: 100%;
    padding: 10px;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li .megadropmenu.show {
    opacity: 1;
    height: auto;
}
.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu ul li.dropdown-li a i {}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu .social-links {
    bottom: 0;
    position: fixed;
    background: var(--secondary-color);
    width: 80%;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu .social-links ul {
    display: inline-flex;
    margin: 0 10px 0px;
    flex-direction: row;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu .social-links ul li {
    border: unset;
}

.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu .social-links ul li a {
    color: #000000;
    padding: 10px;
    border: unset;
}


.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu .social-links ul li:last-child {
    border: unset;
}
.mobile-sidebar .mobile-sidebar-box .mobile-sidebarmenu .social-links .socail-links-title {
    color: #000000;
    font-family: var(--secondary-font);
    font-weight: 400;
}

/* mobile sidebar style end */

/* pagemessage section style start */

.successmessage {
    display: inline-flex;
    padding: 0px 10px;
    background: #309100;
    border-radius: 20px;
    color: #fff;
    font-weight: 600;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
}

.successmessage p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.pagemessage {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
    z-index: 100;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5%;
    border-radius: 20px;
}

.pagemessage .warningmessage {
    background: #ff0000;
    color: #fff;
    padding: 7px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    text-transform: capitalize;
}

/* pagemessage section style end */


/* tlt style start */

.animtaion-text .letter {
    line-height: 1em;
  }

  h6.animtaion-text1 .letter {
    line-height: 1em;
    font-family: var(--third-font);
  }

/* tlt style end */

/* about new style start */

.about-section2 {
    padding: 50px 0px;
}

.about-section2 .about-box {
    position: relative;
}

.about-section2 .about-link a.readmorebutton:hover {
    background: var(--primary-color);
    color: #fff;
}

.about-section2 .about-box .about-header {
    margin-bottom: 20px;
    position: relative;
}

.about-section2 .about-box .about-header h6 {
    color: #ed1c24;
    font-weight: 500;
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: -5px;
    font-family: var(--secondary-font);
}

.about-section2 .about-box .about-header .about-title {
    font-size: 35px;
    font-family: var(--primary-font);
    font-weight: 600;
    color: #1e2637;
}

.about-section2 .about-box .about-header .about-title span {
    font-weight: 700;
    color: var(--primary-color);
    font-style: italic;
    letter-spacing: 1.2px;
    transition: all 0.5s ease;
    display: block;
    font-size: 20px;
}

.about-section2 .about-box .about-title-desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 35px;
    color: #2f2f2f;
}

.about-section2 .about-box .about-title-desc p {
    margin: 0 0 15px;
    font-family: var(--primary-font);
    text-align: justify;
}

.about-section2 .about-link {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.about-section2 .about-link a.phonelink {
    display: inline-block;
    line-height: normal;
    z-index: 9;
    font-size: 16px;
    text-transform: capitalize;
    font-weight: 400;
    border: 1px solid transparent;
    font-family: var(--primary-font);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .3s ease;
}

.about-section2 .about-img {
    text-align: center;
}

.about-section2 .about-img img {
    width: 75%;
    border-radius: 10px;
}
.about-section2 .about-page-img img {
    width: 80%;
}

.about-section2 .about-box .about-header:before {
    width: 90px;
    bottom: -10px;
    height: 4px;
    left: 0;
    top: auto;
    position: absolute;
    content: '';
    border: 4px solid transparent;
    border-bottom: 0;
    background: var(--primary-color);
}

.about-section2 .about-link a.readmorebutton {
    display: inline-block;
    font-size: 16px;
    line-height: normal;
    padding: 11px 32px 11px 31px;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    font-weight: 600;
    overflow: hidden;
    z-index: 9;
    vertical-align: middle;
    text-transform: capitalize;
    border-color: var(--primary-color);
}

.about-section2 .about-link a.phonelink:hover {
    color: var(--primary-color);
}

.about-section2 .about-link a.phonelink i {
    color: #000;
}

.about-section2 .about-description {}

.about-section2 .about-description h3 {
    font-size: 35px;
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 10px;
}

.about-section2 .about-description p {
    text-align: justify;
}

.about-section2 .about-description ul {
    margin: 10px 0 20px 20px;
}

.about-section2 .about-description ul li {
    list-style: decimal;
    margin: 0 0 10px;
    font-family: var(--primary-font);
    text-align: justify;
}

/* about new style end */

/* factories image section style start */

.factories-image-section {
    padding: 30px 0px;
    border-top: 1px solid #f2f2f2;
}

.factories-image-section .heading-box {text-align: center;width: 60%;margin-left: auto;margin-right: auto;}

.factories-image-section .heading-box .heading-img {}

.factories-image-section .heading-box .heading-img img {}

.factories-image-section .heading-box .heading {}

.factories-image-section .heading-box .heading h6 {}

.factories-image-section .heading-box .heading h3 {}

.factories-image-section .gallery-section-box {
    margin: 30px 0px 0px;
}

/* factories image section style end */

/* whatsappicon section style start */

.whatsappicon {
    width: 50px;
    height: 50px;
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
.whatsappicon img {
    width: 100%;
}

/* whatsappicon section style end */
