@import url('https://fonts.googleapis.com/css2?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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
    font-family: "Poppins", sans-serif;
}




ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
    font-size: 15px !important;
}

h1,
h2 {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--third-color);

}

p {
    font-size: 15px;
    margin-bottom: 0;
}

:root {
    --primary-color: rgb(59, 181, 171);
    --secoundary-color: rgb(107, 168, 56);
    --third-color: rgb(54, 48, 97);
    --margin-block: 3rem;
    --padding-block: 3rem;
}

.primaryBtn {
    transition: all 0.3s ease;
    line-height: 26px;
    /* border-width: 1px; */
    display: inline-block;
    padding: 10px 36px;
    letter-spacing: 0px;
    font-weight: 500;
    background-color: var(--third-color);
    color: #fff;
    border: 1px solid #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
}



.primaryBtn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
}

.primaryBtn:hover::before {
    width: 100%;
    height: 100%;
}




.navbar-toggler,
.navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
}


/* Header Start */

header {
    /* padding-block: 0.3rem; */
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 1);
}

header .navbar-brand img {
    width: 170px;
}

header .nav-link {
    /* color: var(--blue) !important; */
    margin-left: 1.5rem;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

header .nav-link::before {
    content: '';
    width: 0%;
    height: 3px;
    position: absolute;
    background-color: var(--third-color);
    bottom: -3px;
    left: 0;
    transition: all 0.3s ease;
}

header .nav-link:hover:before {
    width: 100%;
}



header .nav-link:hover {
    color: var(--third-color);
    transition: all 0.3s ease;
}

header .active,
header .nav-link:focus {
    color: var(--third-color) !important;
    border-bottom: 3.5px solid var(--third-color);
}

header .dropdown-menu {
    background-color: var(--third-color);
    border-radius: unset;
    padding-block: unset;
    width: 300px;
}

header .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 15px;
    color: #fff !important;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--primary-color);
}

header .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color) !important;
    padding-left: 22px;
}


.pro_active {
    background-color: var(--primary-color) !important;
}


.cta_btn {
    background-color: var(--third-color);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.cta_btn:hover {
    color: #fff !important;
    background-color: var(--primary-color);
}



.cta_btn:hover::before {
    width: 0 !important;
}

.cta_btn i {
    margin-right: 5px;
}

.cta_btn:focus {
    color: #fff !important;
    background-color: var(--primary-color);

}

/* Popup */



.popup {

    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease;
    display: none;

}

.popup-content {
    background-color: #fff;
    /* margin: 15% auto; */
    padding: 25px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 1rem;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    background-color: var(--third-color);
    color: #fff;
    border-radius: 50%;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;

}

.close-btn:hover {
    background-color: var(--primary-color);
}

.phone-container {
    display: flex;

}



.phone-container select {
    font-size: 14px;
}


#contactForm h5 {
    /* text-align: center; */
    margin-bottom: 1rem;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 1px solid #000;
    padding-bottom: 1rem;
}

#contactForm button {
    background-color: var(--third-color);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-radius: 25px;
    border: unset;
    margin-top: 1rem;
    transition: all 0.3s ease;
}


#contactForm button:hover {
    background-color: var(--primary-color);
}

#contactForm select,
#contactForm textarea,
#contactForm select:focus,
#contactForm select:active,
#contactForm input,
#contactForm input:focus,
#contactForm input:active {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 5px 8px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

input::placeholder,
textarea::placeholder {
    font-size: 14px;
}

.phone-container select {
    width: 100%;
}

.phone-container input {
    width: 100%;
}

#contactForm div {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#contactForm p {
    text-align: center;
    margin-top: 1rem;
    font-size: 13px;
}


/* Header End */



/* Carousel Start */

.carousel-item {
    position: relative;
}

.carousel-item::before {
    content: '';
    background-color: rgba(54, 48, 97, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* z-index: 1; */
    /* clip-path: polygon(0% 0%, 0% 200%, 100% 0%); */
}

.carousel_caption {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;



}

.carousel_caption h3 {
    transition: none;
    line-height: 62px;
    border-width: 0px;
    margin: 0px 0px 20px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 700;
    font-size: 50px;
}

.carousel_caption p {
    transition: none;
    line-height: 26px;
    border-width: 0px;
    margin: 0px;
    padding: 0px;
    letter-spacing: 0px;
    font-weight: 500;
    font-size: 18px;
}

.carousel_caption a {
    transition: all 0.3s ease;
    line-height: 26px;
    border-width: 1px;
    margin-top: 20px;
    display: inline-block;
    padding: 10px 36px;
    letter-spacing: 0px;
    font-weight: 500;
    color: #fff;
    border: 1px solid #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 5px;
}



.carousel_caption a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background-color: var(--primary-color);
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: all 0.4s ease;
}


.carousel_caption a:hover::before {
    width: 100%;
    height: 100%;
}

.carousel-inner img {
    height: 600px;
    object-fit: cover;
}


/* Carousel End */


/* Welcome Start */
.welcome_section {
    margin-block: 3rem;
}

.welcome_section h3 {
    font-size: 18px;
    font-weight: 600;
}

.welcome_section h1 {
    font-size: 30px;
    font-weight: 700;
    color: var(--third-color);
}

.welcome_section p {
    margin-bottom: 1.5rem;
}

.ab_imgs {
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
}

.ab_imgs img {
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .welcome_big {
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    right: 0;
}

.welcome_section .welcome_small {
    width: 50%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 0;
} */


/* Welcome End */


/* Service Start */

.service_section {
    margin-top: 3rem;
    background-color: var(--third-color);
    padding-block: var(--padding-block);
}

.service_section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

.service_section p {
    text-align: center;
    max-height: 90px;
    overflow: hidden;
}


.swiper-slide>div {
    text-align: center;
    width: 98%;
    min-height: 200px;
    /* box-shadow: #ccc 4px 4px 24px; */
    background-color: #fff;
    /* margin: 10px 10px 28px; */
    margin-bottom: 20px;
    border-radius: 1rem;
    overflow: hidden;
    transition: all ease 0.2s;
    padding: 20px;
    cursor: pointer;

}

.swiper-slide>div:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.serviceimg {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.serviceimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

/* .servSecImg {
    transition: all linear 0.5s;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
} */

/* .swiper-slide>div:hover .servSecImg {
    opacity: 1;
    transform: scale(1.2);
} */

.swiper-slide>div:hover img {
    transform: scale(1.2);
}

.swiper-slide .servicesContent {
    position: relative;
    height: 200px;
}

.swiper-slide>div h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--third-color)
}

.swiper-slide>div:hover .hoverWhite {
    color: var(--white);
}

.swiper-slide .servicesContent a {
    width: max-content;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}

.swiper-slide .servicesContent a:hover {
    background-color: transparent;
    border-color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
    color: #fff;

}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--third-color);
    height: 35px;
    width: 35px;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--primary-color);
}

/* Service End */

/* Why Choose Us Start */

.why_choose_us {
    padding-block: var(--padding-block);
    background-color: rgb(245, 245, 245);
    text-align: center;
}

.why_choose_box {
    /* box-shadow: 0 0 25px #ccc; */
    border: 1px solid var(--primary-color);
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    height: 170px;
    background-color: var(--primary-color);

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.why_choose_box i {
    font-size: 40px;
    height: 70px;
    width: 70px;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.why_choose_box::before {
    content: '';
    background-color: var(--secoundary-color);
    width: 30px;
    height: 30px;

    border-bottom-right-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    /* display: none; */
}

.why_choose_box:hover::before{
    width: 100%;
    height: 100%;
}

.why_choose_box h5 {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 19px;
    color: #fff;
    transition: all 0.3s ease;

}

.why_choose_box p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 96%;
    color: #fff;
    opacity: 0;
    transition: all 0.3s ease;

}

.why_choose_box:hover:before {
    width: 100%;
    height: 100%;
    border-radius: unset;
}

.why_choose_box:hover i {
    opacity: 0;
}

.why_choose_box:hover h5 {
    opacity: 0;
}

.why_choose_box:hover p {
    opacity: 1;
}


.why_choose_box * {
    transition: all 0.3s ease;
}


/* .why_choose_box:hover * {
    position: relative;
    z-index: 3;
    color: #fff;
} */

.why_choose_box:hover i {
    background-color: #fff;
    color: var(--primary-color);
}




/* Why Choose Us End */

.tagline {
    background-color: var(--third-color);
    padding-block: var(--padding-block);
    color: #fff;
}

.tagline h2 {
    text-transform: unset;
    color: #fff;
}

.tagline p {
    width: 90%;
}

.tagline a {
    width: max-content;
}

.tagline2 {
    text-align: center;
    padding-block: 5rem;
    color: #fff;
    background: linear-gradient(rgba(107, 168, 56, 0.8), rgba(107, 168, 56, 0.8)), url(../banners/slide4.jpg) center fixed;
}

.tagline2 h3 {
    font-size: 30px;
    font-weight: 700;
}

.tagBox h3 {
    width: 50%;
    margin: 0 auto;
    margin-bottom: 1rem;
}

.tagBox p {
    width: 65%;
    margin: 0 auto;
}

/* Footer Start */

footer {
    /* background-color: var(--third-color); */
    background: linear-gradient(rgba(54, 48, 97, 0.95), rgba(54, 48, 97, 0.95)), url(../imgs/footer-banner.jpg) center no-repeat;
    background: linear-gradient(rgba(59, 181, 171, 0.9), rgba(59, 181, 171, 0.9)), url(../imgs/footer-banner.jpg) center no-repeat;
    background-size: cover;
    padding-block: 3rem;
    color: #fff;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
    padding-left: 5px;
}

.footUnderline {
    width: 20%;
    background-color: #fff;
    height: 3px;
}

.footHeading {
    margin-bottom: 1rem;
}

footer img {
    width: 170px;
}

.footAddress a {
    text-transform: unset;
}

/* .footAddress ul{
    padding-left: 0;
    padding-right: 2rem;
} */

footer li {
    margin-bottom: 0.5rem;
    font-size: 15px;
}

.subfooter {
    background-color: var(--secoundary-color);
    text-align: center;
    padding: 0.5rem;
    color: #fff;
}

.subfooter p {
    font-size: 16px;
}

/* Footer End */


/* Back To Top */

.backToTop {
    width: auto;
    position: fixed;
    bottom: -1%;
    right: 5%;
    transition: all 0.3s ease;
}

.backToTop a {
    background-color: var(--primary-color);
    padding: 0.6rem;
    color: #fff;
    font-size: 1.2rem;
    border-radius: 5px;
}

.backToTop:hover {
    bottom: 1%;
}


/* whatsap css */
#whatsapp {
    position: fixed;
    right: 40px;
    bottom: 10%;
    width: 70px;
    height: 70px;
    cursor: pointer;
    opacity: 1;
    z-index: 99990;
}

#whatsapp #whatsappMain {
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0);
    width: 70px;
    height: 70px;
    color: #40c351;
    z-index: 9;
    -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
    -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
    animation: zcwmini2 1.5s 0s ease-out infinite;
}

#whatsapp #whatsappMain:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    background-image: url('../imgs/whatsapp.png');
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-animation: zcwphone2 1.5s linear infinite;
    -moz-animation: zcwphone2 1.5s linear infinite;
    animation: zcwphone2 1.5s linear infinite;
}

@-webkit-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-moz-keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes zcwphone2 {
    0% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    25% {
        -ms-transform: rotate(30deg);
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    50% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    75% {
        -ms-transform: rotate(-30deg);
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    100% {
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@-webkit-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-webkit-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@-moz-keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

@keyframes zcwmini2 {
    0% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(207, 8, 8, 0);
    }

    10% {
        box-shadow: 0 0 8px 6px, 0 0 12px 10px rgba(0, 0, 0, 0), 0 0 12px 14px;
    }

    100% {
        box-shadow: 0 0 8px 6px rgba(207, 8, 8, 0), 0 0 0 40px rgba(0, 0, 0, 0), 0 0 0 40px rgba(207, 8, 8, 0);
    }
}

/* whatsap css */


/* Comman Banner */
.banner-area {
    width: 100%;
    text-align: center;
    height: auto;
    position: relative;
}

.banner-area img {
    display: block;
    width: 100%;
    margin: auto;
    height: 400px;
    object-fit: cover;
}

/* Comman Heading */

.abou-hed {
    width: 100%;
    height: 41px;
    position: absolute;
    z-index: 9;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.abou-hed h1 {
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    font-size: 37px;
    font-weight: 400;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 5px 22px;
}

/* Comman Strip */
.breadcrumb_bg {
    background: var(--secoundary-color);
}

.breadcrumb {
    margin: 0;
    font-size: 16px;
    color: #fff;
    background: none;
    padding: 6px 0px;
    font-weight: 400;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.breadcrumb a,
.breadcrumb a:visited,
.breadcrumb a:hover {
    font-weight: 500;
    color: #fff;
}

.breadcrumb li.active {
    color: #fff;
}

/* About Page Start */

.ab_imgs_page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--third-color);

}

.ab_imgs_page img {
    width: 100%;
    height: 250px;
    border: 5px solid #fff;
    object-fit: cover;
}

.ab_page_imgs {
    width: 100%;
    
    position: relative;
    height: 500px;
}

.ab_page .welcome_big {
    width: 80%;
    float: right;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.ab_page .welcome_small {
    width: 50%;
    height: 300px;
    position: absolute;
    object-fit: cover;
    bottom: 20%;
    left: 0%;
    transform: translateY(50%);
    border-radius: 10px;
    background-color: #fff;
    border: 20px solid #fff;
}

.welcome_small img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* .ab_why_choose {
    margin-top: 5rem;
} */

/* About Page End */


/* contact page section start */
.contact_top_sect {
    background: #fff;
    margin-top: 3rem;
}

.contact_top_sect h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--third-color);
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.get-txt {
    text-align: center;
    color: var(--third-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
}

.con_sec1 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding-bottom: 15px;
    margin-top: 15px;
    text-transform: uppercase
}

.con_sec2 {
    text-align: left;
    font-size: 21px;
    font-weight: 600;
    color: #141d4a;
    letter-spacing: 1px;
}

.contact_form_cont {
    height: 100%;
}

.contact_form_cont input[type=text],
.contact_form_cont textarea,
.contact_form_cont select,
.contact_form_cont select option {
    border: #b5b5b5 1px solid !important;
    padding: 12px;
    width: 100%;
}

#pageCountryCode {
    font-size: 14px;
}

.contact_form_L {
    width: 100%;
    float: left;
}

.contact_form_R {
    width: 100%;
    float: left
}

.cont_frm_hed {
    font-size: 20px;
    font-weight: 600;
    color: #141d4a;
}

.cont_frm_subhed {
    font-size: 17px;
    font-weight: 600;
    color: #7f2a2a;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: left
}


.cont_sub {
    text-align: center;
    border-radius: 5px;
    padding: 10px 40px;
    font-size: 15px;
    color: #FFFFFF;
    background: var(--third-color);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin-right: 10px;
}

.cont_sub:hover {
    background: var(--primary-color);
}

.cont_sub1 {
    text-align: center;
    border-radius: 5px;
    padding: 10px 40px;
    font-size: 15px;
    color: #000;
    background: #ccc;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.cont_sub1:hover {
    background: var(--secoundary-color);
    color: #fff;
}

.com_name {
    color: var(--third-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    text-align: left;
}

.contact_list ul {
    margin: 10px 0 0 0;
    padding: 0;
    list-style: none;
}

.contact_list ul li {
    padding: 14px 0;
    transition: all 0.3s linear;
    position: relative;
    border-bottom: 1px solid #000;
}

.contact_list ul li .circle_sec span {
    width: 40px;
    margin: 0 auto;
    display: inline-block;
    padding: 15px 0px;
}

.contact_list ul li .circle_sec {
    float: left;
    width: 50px;
    height: 50px;
    color: #fff;
    margin: auto;
    font-size: 1.4em;
    text-align: center;
    background: var(--primary-color);
    padding: 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
}

.cnt_heading {
    font-size: 18px;
    font-weight: 600;
    color: var(--third-color);
}

/* .sec_cnt {
    font-size: 15px;
} */

.contact_desc a {
    color: #000;
    font-size: 18px;
}

.contact_form_cont {
    font-size: 1.1em;
    background: #fff;
    padding: 25px;
    border: 1px solid #ccc;
    box-shadow: 0 0 8px #dbdbdb
}

.contact_form_cont input[type=text],
.contact_form_cont textarea,
.contact_form_cont select {
    padding: 6px 10px;
    width: 100%;
    font-size: .9em;
    background: none;
}

.contact_desc {
    float: right;
    width: 88%;
    text-align: left
}

.contact_form_cont video {
    width: 100%;
    height: 100%;
}

/* contact page section ends */

/* Product Page */

.product_sec {
    margin-block: var(--margin-block);
}

.product_details {
    border: 1px solid rgb(55, 56, 55);
    /* padding: 0.5rem; */
    /* box-shadow: 0 0 25px #ccc; */
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-top: 1.5rem;
}

.product_img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product_img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product_details h5 {
    text-align: center;
    width: 90%;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    color: #fff;
    transition: all 0.4s ease;
}

.product_details p {
    text-align: center;
    background-color: var(--third-color);
    color: #fff;
    position: relative;
    z-index: 9;
    padding: 0.5rem;
}

.product_img::before {
    content: '';
    width: 0%;
    height: 0%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(107, 168, 56, 0.6);
    transition: all 0.5s ease;
}

.product_details:hover .product_img:before {
    width: 100%;
    height: 100%;
}

.product_details:hover h5 {
    transform: translate(-50%, -50%) scale(1);
}

.product_page_sec1 {
    padding-block: 2rem;
    /* background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url(../imgs/background.jpg) fixed no-repeat; */
    background-color: rgb(245, 245, 245);
    background-size: cover;
}




.product_sec h3 {
    color: var(--white);
    font-size: 24px;
}

.product_page_sec2 {
    /* margin-top: 2rem; */
    color: #fff;
    padding-block: 2rem;
    /* background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) fixed no-repeat; */
    background-color: var(--primary-color);
    background-size: cover;
    margin-bottom: 0;

}

.product_page_sec3 {
    background-color: var(--secoundary-color);
}

.product_page_sec2 img,
.product_page_sec1 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.product_heading {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    /* width: 40%; */
    margin: 0 auto;
    background-color: var(--third-color);
    color: #fff;
    text-transform: unset;
    padding: 0.5rem;
    margin-top: 2rem;

    border-radius: 100px 0 100px 0;
}

.chemical_page_sec .product_img::before {
    display: none;
}

.chemical_page_sec img {
    transition: all 0.5s ease;
}

.chemical_page_sec .product_details:hover img {
    transform: scale(1.15);
}

/* Contact form delivery status */
.form-honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { margin: 10px 0; font-size: 14px; line-height: 1.4; }
.form-status.is-success { color: #1b7f3a; }
.form-status.is-error { color: #b42318; }
.js-contact-form button[disabled], .js-contact-form input[type="submit"][disabled] { opacity: .65; cursor: not-allowed; }
