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

body {
    font-family: "Quicksand", sans-serif !important;
}

a {
    text-decoration: none !important;
}

.blue_f {
    color: #52A5B1 !important;
}

.Custome_Active {
    color: #000000;
    font-weight: 700 !important;
}

.Sec_Title .min_title {
    color: #93C01C;
    font-size: 30px;
    font-family: "Salsa", cursive;
    text-decoration: underline;
    text-decoration-color: #62C2CF;
}

.Sec_Title .big_title {
    color: #000;
    font-weight: 700;
    font-size: 34px;
    font-family: "Andika", sans-serif;
}

.Sec_Title .long_title {
    color: #171717;
    font-size: 24px;
    font-weight: 500;
}

.Custome_comun_button {
    border: 1px solid #52A5B1;
    border-radius: 30px;
    padding: 8px 20px;
    color: #52A5B1;
    font-weight: 600;
    font-size: 20px;
    cursor: pointer;
}

.Custome_comun_button:hover {
    background-color: #52A5B1;
    color: #FFF;
}

.Custome_comun_button:hover svg path {
    fill: #FFF;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.preloader-logo {
    width: 100px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.Custome_Navbar .HeaderLogo {
    width: 100px;
}

.Custome_Navbar .Menu_List li a span {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}

.Custome_Navbar .Custome_Header_btn {
    background-image: linear-gradient(to right, #93C01C, #52A5B1);
    border-radius: 30px;
    padding: 7px 20px;
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
}

.Custome_Navbar .fullscreen-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #111;
    color: white;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: top 0.5s ease, opacity 0.3s ease;
    opacity: 0;
    /* text-align: center; */
    /* padding: 2rem 1rem; */
}

.Custome_Navbar .fullscreen-menu.active {
    top: 0;
    opacity: 1;
}

.no-scroll {
    overflow: hidden;
}

.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* background: rgba(0, 0, 0, 0.9); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


/* 
.fullscreen-menu.active {
    top: 0;
    opacity: 1;
} */

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.Custome_Navbar .fullscreen-nav {
    list-style: none;
    padding: 0;
}

.Custome_Navbar .fullscreen-nav .nav-item {
    margin: 1.5rem 0;
}

.Custome_Navbar .fullscreen-nav .nav-link {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

.Custome_Navbar .close-fullscreen-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.Custome_Navbar .fullscreen-nav .nav-link {
    transition: transform 0.2s ease;
}

.Custome_Navbar .fullscreen-nav .nav-link:hover {
    transform: scale(1.1);
    color: #52A5B1;
}

.Main_Banner_Sec h1 {
    color: #000;
    font-size: 34px;
    font-weight: 700;
    font-family: "Andika", sans-serif;
    line-height: 55px;
}

.Main_Banner_Sec .Main_Banner_Video video {
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.InsideHygieneCircle .Counter_Custome_Card {
    position: relative;
    background-image: linear-gradient(to right, rgba(227, 251, 255, 0.7), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(82, 165, 177, 0.2);
    border-radius: 15px;
    padding: 15px 30px;
}

.InsideHygieneCircle .Counter_Custome_Card::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 5px;
    background-image: linear-gradient(#52A5B1, rgba(82, 165, 177, 0));
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.InsideHygieneCircle .Counter_Custome_Card h3 {
    color: #52A5B1;
    font-size: 38px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.InsideHygieneCircle .Counter_Custome_Card p {
    color: #1B1B1B;
    font-size: 22px;
    font-weight: 500;
}

.About_Us_Sec {
    position: relative;
    background-color: #62C2CF;
}

.About_Us_Sec .Sec_Title .min_title {
    color: #171717;
    font-size: 30px;
    font-family: "Salsa", cursive;
    text-decoration: underline;
    text-decoration-color: #93C01C;
}

.About_Us_Sec .Sec_Title .big_title {
    color: #FFF;
    font-weight: 700;
    font-size: 34px;
    font-family: "Andika", sans-serif;
}

.About_Us_Sec p {
    color: #FFF;
    font-size: 26px;
}

.Our_Products_sec .Custome_Product_Slider {
    position: relative;
}

.Our_Products_sec .Custome_Product_Slider .MyCustomeSlider {
    width: 89%;
}

.Our_Products_sec .Custome_Product_Slider .Custome_Product_Slider_Card {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1019607843);
    border-radius: 20px;
    padding: 10px;
    margin: 10px 0px;
}

.Our_Products_sec .Custome_Product_Slider .Custome_Product_Slider_Card .Image_Box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.Our_Products_sec .Custome_Product_Slider .Custome_Product_Slider_Card .Image_Box .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), #000000);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.Our_Products_sec .Custome_Product_Slider .Custome_Product_Slider_Card .Image_Box .overlay .text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.Our_Products_sec .Custome_Product_Slider .Custome_Product_Slider_Card .Image_Box .overlay .text h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.Our_Products_sec .Custome_Product_Slider .Custome_Product_Slider_Card .Image_Box:hover .overlay {
    height: 40%;
}

.Our_Products_sec .Sliders_Arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

.Our_Products_sec .swiper-button-prev:after,
.Our_Products_sec .swiper-rtl .swiper-button-next:after {
    content: "prev";
    display: none;
}

.Our_Products_sec .swiper-button-next:after,
.Our_Products_sec .swiper-rtl .swiper-button-prev:after {
    content: "next";
    display: none;
}

.Industries_We_Serve {
    position: relative;
    background-color: #62C2CF;
}

.Industries_We_Serve .Sec_Title .min_title {
    color: #171717;
    font-size: 30px;
    font-family: "Salsa", cursive;
    text-decoration: underline;
    text-decoration-color: #93C01C;
}

.Industries_We_Serve .Sec_Title .big_title {
    color: #FFF;
    font-weight: 700;
    font-size: 34px;
    font-family: "Andika", sans-serif;
}

.Industries_We_Serve .Indu_Custome_Card {
    border-radius: 15px;
    background-image: linear-gradient(to right, rgba(227, 251, 255, 0.6), rgba(255, 255, 255, 0.2));
    padding: 20px;
    height: 150px;
    width: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
}

.Insights_Sec .Insights_Card p {
    color: #171717;
    font-size: 20px;
}

.Insights_Sec .Insights_Card h4 {
    color: #171717;
    font-size: 24px;
    font-weight: 700;
}

.Footer .footer_sec {
    background-color: #FBFBFB;
    border-radius: 30px;
    margin-top: 109px;
    /* background-color: #FBFBFB;
    border-radius: 30px;
    margin-top: 109px;
    position: relative;
    overflow: visible; */
}

.Footer .footer_sec .Logo_Set {
    margin-top: -109px;
    text-align: center;
    /* position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%; */
    /* position: absolute;
    top: 8.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%; */
}

.Footer .footer_sec h3 {
    color: #52A5B1;
    font-size: 24px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.Footer .footer_sec ul li a {
    color: #171717;
    font-size: 18px;
    font-weight: 500;
}

.Footer .footer_sec p {
    color: #171717;
    font-size: 18px;
    font-weight: 500;
}

.Footer .footer_sec p a {
    color: #171717;
    font-size: 18px;
    font-weight: 500;
}

.Footer .footer_sec .footer_rights {
    border-top: 1px solid #000;
    padding: 15px 0px;
    margin-top: 15px;
}

.About_Page_banner {
    position: relative;
    background-color: #62C2CF;
}

.About_Page_banner h1 {
    color: #FFF;
    font-size: 34px;
    font-weight: 700;
}

.About_Hygiene_Circle .Sec_Title .min_title {
    color: #93C01C;
    font-size: 30px;
    font-family: "Salsa", cursive;
    text-decoration: underline;
    text-decoration-color: #62C2CF;
}

.About_Hygiene_Circle .Sec_Title .big_title {
    color: #000;
    font-weight: 700;
    font-size: 34px;
    font-family: "Andika", sans-serif;
}

.About_Hygiene_Circle .Sec_Title p {
    color: #171717;
    font-size: 18px;
    font-weight: 500;
}

.Our_Team .custometext {
    background-color: #93C01C;
    border-radius: 30px;
    color: #FFF;
    font-size: 24px;
    font-weight: 500;
    padding: 5px 20px;
}

.Mission_Vision .Custome_card {
    position: relative;
    background-image: linear-gradient(to right, rgba(227, 251, 255, 0.7), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(82, 165, 177, 0.2);
    border-radius: 15px;
    padding: 20px 35px;
}

.Mission_Vision .Custome_card .miss_vis {
    position: relative;
}

.Mission_Vision .Custome_card .miss_vis::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 5px;
    background-image: linear-gradient(#52A5B1, rgba(82, 165, 177, 0));
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.Mission_Vision .Custome_card .miss_vis h3 {
    color: #52A5B1;
    font-size: 28px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.Mission_Vision .Custome_card .miss_vis p {
    color: #1B1B1B;
    font-size: 22px;
    font-weight: 500;
}

.Mission_Vision .progresh_Count_Box {
    position: relative;
}

.Mission_Vision .progresh_Count_Box::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 6px;
    background-color: #52A5B1;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.Mission_Vision .progresh_Count_Box .Countt {
    position: relative;
    padding: 24px 10px;
}

.Mission_Vision .progresh_Count_Box .Countt::before {
    position: absolute;
    content: "";
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #52A5B1;
    left: -27px;
    top: 27px;
}

.Mission_Vision .progresh_Count_Box .Countt h4 {
    color: #171717;
    font-size: 32px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.Mission_Vision .progresh_Count_Box .Countt p {
    color: #1B1B1B;
    font-size: 20px;
    font-weight: 500;
}

.Why_Hygiene_Circle .Counter_Custome_Card {
    position: relative;
    background-image: linear-gradient(to right, rgba(227, 251, 255, 0.7), rgba(255, 255, 255, 0.2));
    border: 1px solid rgba(82, 165, 177, 0.2);
    border-radius: 15px;
    padding: 15px 35px;
    height: 100%;
}

.Why_Hygiene_Circle .Counter_Custome_Card::before {
    position: absolute;
    content: "";
    height: 80%;
    width: 5px;
    background-image: linear-gradient(#52A5B1, rgba(82, 165, 177, 0));
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.Why_Hygiene_Circle .Counter_Custome_Card h3 {
    color: #52A5B1;
    font-size: 28px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.Why_Hygiene_Circle .Counter_Custome_Card p {
    color: #1B1B1B;
    font-size: 22px;
    font-weight: 500;
}

.Product_Details_Sec h3 {
    color: #93C01C;
    font-size: 18px;
    font-family: "Salsa", cursive;
    text-decoration: underline;
    text-decoration-color: #62C2CF;
}

.Product_Details_Sec h1 {
    color: #000;
    font-weight: 700;
    font-size: 34px;
    font-family: "Andika", sans-serif;
}

.Product_Details_Sec h2 {
    color: #000;
    font-weight: 700;
    font-size: 34px;
    font-family: "Andika", sans-serif;
}

.Product_Details_Sec p {
    color: #171717;
    font-size: 20px;
    font-weight: 500;
}

.Product_Details_Sec ul li {
    color: #171717;
    font-size: 20px;
    font-weight: 500;
}

.Key_Feature_Sec .Custome_Feature_card {
    position: relative;
    border: 1px solid #52A5B1;
    border-radius: 10px;
    background: #F0FDFF;
    padding: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

.Key_Feature_Sec .Custome_Feature_card .card_title {
    color: #171717;
    font-size: 24px;
    font-weight: 700;
    background-color: #FFF;
    border-radius: 40px;
    border-top: 1px solid #52A5B1;
    display: flex;
    justify-content: center;
    padding: 5px 20px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: -moz-max-content;
    width: max-content;
}

.Key_Feature_Sec .Custome_Feature_card p {
    color: #171717;
    font-size: 20px;
    font-weight: 500;
}

.Key_Feature_Sec .Custome_Feature_card ul li {
    color: #171717;
    font-size: 20px;
    font-weight: 500;
}

.Key_Feature_Sec .Custome_Feature_card span {
    color: #171717;
    font-size: 18px;
}

.custom-table {
    border-collapse: separate;
    border-spacing: 0;
    width: 80%;
    font-family: Arial, sans-serif;
    border: 1px solid #52A5B1;
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.custom-table th,
.custom-table td {
    border: 1px solid #52A5B1;
    padding: 20px 20px !important;
    vertical-align: middle;
    font-size: 15px;
    background-color: #F0FDFF !important;
}

.custom-table th {
    font-weight: 600;
    background-color: #F0FDFF !important;
}


/* Remove double borders */

.custom-table th:first-child,
.custom-table td:first-child {
    border-left: none;
}

.custom-table th:last-child,
.custom-table td:last-child {
    border-right: none;
}


/* Rounded corners */

.custom-table tr:first-child th:first-child {
    border-top-left-radius: 12px;
}

.custom-table tr:first-child th:last-child {
    border-top-right-radius: 12px;
}

.custom-table tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.custom-table tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}

.All_Product_List .tab_Box {
    border-bottom: 2px solid #000;
}

.All_Product_List .nav-pills .nav-link.active,
.All_Product_List .nav-pills .show>.nav-link {
    color: #FFF;
    background-color: #52A5B1;
}

.All_Product_List .nav-pills .nav-link {
    border-radius: 26px;
    color: #171717;
    font-size: 24px;
    font-weight: 500;
    border-bottom: 2px solid #52A5B1;
}

.All_Product_List .Custome_Product_Slider_Card {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1019607843);
    border-radius: 20px;
    padding: 10px;
    margin: 10px 0px;
}

.All_Product_List .Custome_Product_Slider_Card .Image_Box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.All_Product_List .Custome_Product_Slider_Card .Image_Box .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), #000000);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: 0.5s ease;
}

.All_Product_List .Custome_Product_Slider_Card .Image_Box .overlay .text {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.All_Product_List .Custome_Product_Slider_Card .Image_Box .overlay .text h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.All_Product_List .Custome_Product_Slider_Card .Image_Box:hover .overlay {
    height: 40%;
}

.Our_Client_testimonial .Card_testimonials {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.1019607843);
    border-radius: 20px;
    padding: 30px;
    margin: 10px;
}

.Our_Client_testimonial .Card_testimonials h3 {
    color: #171717;
    font-size: 30px;
    font-weight: 700;
}

.Our_Client_testimonial .Card_testimonials h4 {
    color: #171717;
    font-size: 18px;
    font-weight: 700;
}

.Our_Client_testimonial .Card_testimonials p {
    color: #171717;
    font-size: 16px;
}

.contact_detail_box {
    border-bottom: 1px solid #C6C6C6;
    padding: 15px 0px;
}

.contact_detail_box p {
    color: #BABABA;
    font-size: 18px;
}

.contact_detail_box h4 {
    color: #52A5B1;
    font-size: 22px;
    font-weight: 700;
}

.Contact_Form_Card {
    box-shadow: 0px 50px 50px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 30px;
}

.Contact_Form_Card h3 {
    color: #04000B;
    font-size: 32px;
    font-weight: 700;
}

.Contact_Form_Card p {
    color: #666666;
    font-size: 20px;
}

.Contact_Form_Card h5 {
    color: #52A5B1;
    font-size: 20px;
    font-weight: 700;
}

.Contact_Form_Card .input_field {
    border: 1px solid #52A5B1;
    border-radius: 30px;
    padding: 8px 20px;
}

.Contact_Form_Card .input_field .input_f {
    border: none;
    outline: none;
}

.Career_all_List .Career_list {
    border-top: 1px solid #CBCBCB;
    border-bottom: 1px solid #CBCBCB;
}

.Career_all_List .Career_list h3 {
    color: #52A5B1;
    font-size: 24px;
    font-weight: 700;
    font-family: "Mulish", sans-serif;
}

.Career_all_List .Career_list p {
    color: #1B1B1B;
    font-size: 18px;
    font-weight: 500;
}

.Career_Popup .input_field {
    border: 1px solid #52A5B1;
    border-radius: 30px;
    padding: 8px 20px;
}

.Career_Popup .input_field .input_f {
    border: none;
    outline: none;
}


/*# sourceMappingURL=style.css.map */
