@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;
}

h1,
h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.underline {
    background-color: var(--primary);
    width: 5%;
    height: 4px;

    margin: 0 auto;
    margin-bottom: 1rem;
}

:root {
    --white: #fff;
    --black: #000;
    --primary: #01ab90;
    --secoundry: #00826d;
}

.primaryBtn {
    font-size: 16px;
    color: var(--white);
    background-color: var(--primary);
    padding: 12px 20px;
    border-radius: 7px;
    transition: all 0.3s ease;
    font-weight: 500;
}



.primaryBtn:hover {
    background-color: var(--secoundry);
}

.secBtn {
    font-size: 15px;
    color: var(--white);
    background-color: var(--primary);
    padding: 10px 17px;
    border-radius: 7px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    grid-row: 500;
}

.secBtn:hover {
    background-color: var(--secoundry);
    border-color: #fff;
}

p {
    line-height: 30px;
}


.navbar-toggler,
.navbar-toggler:focus {
    border: none;
    outline: none;
    box-shadow: none;
}


/* Header Start */

.topstrip {
    background-color: var(--secoundry);
    padding: 1rem 0;
    color: #fff;
}

.topstrip p {
    line-height: unset;
    margin: 0;
    font-weight: 600;

}

.topstrip a {
    color: #fff;
    display: inline-block;
    margin-right: 2rem;
    font-weight: 500;
}

.topstrip a:hover {
    text-decoration: underline;
}

.right_strip {
    text-align: right;
}


header {
    padding-block: 0.3rem;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
}

header .navbar-brand {
    width: 15%;
}

header .navbar-collapse {
    width: 85%;
}

header .navbar-brand img {
    width: 220px;
}

header .nav-link {
    /* color: var(--blue) !important; */
    margin-left: 1.5rem;
    color: #000;
    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(--primary);
    bottom: -3px;
    left: 0;
    transition: all 0.7s ease;
}

header .nav-link:hover:before {
    width: 100%;
}



header .nav-link:hover {
    color: var(--primary);
    transition: all 0.3s ease;
}

header .active,
header .nav-link:focus {
    color: var(--primary) !important;
    border-bottom: 3.5px solid var(--primary);
}

header .dropdown-menu {
    background-color: var(--secoundry);
    border-radius: unset;
    padding-block: unset;
    width: 250px;
}

header .dropdown-menu .dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 16px;
    color: var(--white) !important;
    transition: all 0.3s ease;
    border-bottom: 1px dashed var(--primary);
}

header .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary) !important;
    padding-left: 22px;
}

.cta_btn {
    background-color: var(--secoundry);
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.cta_btn:hover {
    color: #fff !important;
    background-color: var(--primary);
    transform: scale(1.05);
}

.cta_btn:hover::before {
    width: 0 !important;
}





/* Header End */


/* Carousel Start */

.carousel-item {
    position: relative;
}

.carousel_caption {
    text-align: center;
    width: 100%;
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel_caption h3 {
    width: max-content;
    margin: 0 auto;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    /* background: rgba(65, 144, 200, 0.7); */
    /* background: rgba(0, 0, 0, 0.7); */
    /* background: rgba(22, 50, 89, 0.7); */
    padding: 0.5rem 2rem;
    border-radius: 8px;
    color: #fff;
    text-shadow: 0 0 2px #000;
}

.carousel_caption p {
    color: #fff;
    text-shadow: 0 0 2px #000;
    font-size: 20px;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.carousel-inner img {
    height: 600px;
    object-fit: cover;

}

.carousel-item {
    position: relative;
    overflow: hidden;
}

.carousel-item::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);

}


/* Carousel End */

/* Welcome Start */
.welcome_section {
    padding-block: 5rem;
    background: #eee;
}

.welcome_section h3 {
    font-size: 18px;
    font-weight: 600;
}

.welcome_section h1 {
    line-height: 45px;
    font-weight: 700;
    width: 60%;
    color: var(--primary);
}

.welcome_section p {
    margin-bottom: 1.5rem;
    text-align: justify;
    padding-right: 2rem;
}

.welcome_section img {
    border: 1px solid #000;
    padding: 0.5rem;
}

.welcome_big {
    width: 100%;
    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-block: 2rem;
}

.service_section h2 {
    text-align: center;
}

.service_section p {
    text-align: center;
}


.swiper-slide>div {
    text-align: center;
    width: 97%;
    height: 520px;
    box-shadow: #ccc 4px 4px 24px;
    margin: 10px 10px 28px;
    border-radius: 1rem;
    overflow: hidden;
    transition: all linear 0.3s;
    padding: 20px;
    cursor: pointer;

}

.swiper-slide>div:hover {
    background-color: var(--secoundry);
    color: #fff;
}

.serviceimg {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.serviceimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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 .servicesContent {
    position: relative;
    height: 200px;
}

.swiper-slide>div h4 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 0.5rem;
    color: var(--primary)
}

.swiper-slide>div:hover .hoverWhite {
    color: var(--white);
}

.swiper-slide .servicesContent a {
    position: absolute;
    bottom: -5%;
    left: 50%;
    transform: translateX(-50%);
}


/* Service End */

/* Why Choose Start */


.whyChooseUs {
    padding-block: 2rem;

    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../imgs/demo2.jpg) center;

}


.whyChooseUs h2 {
    color: var(--primary);
    text-align: center;
}



.whyChooseUs h6 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
}


.chooseSmallImg>div {
    padding: 1rem;
    background-color: var(--secoundry);
    border-radius: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    gap: 10px;
    margin-top: 1rem;
    position: relative;
    z-index: 9;
    overflow: hidden;
}

.chooseSmallImg>div:first-child {
    margin-top: unset;
}

.chooseSmallImg>div h6,
.chooseSmallImg>div p,
.chooseSmallImg>div img {
    position: relative;
    z-index: 99;
}

.chooseSmallImg>div::before {
    content: '';
    background-color: var(--primary);
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-radius: 1rem;
    z-index: 1;
    transition: all 0.5s ease;
}

.chooseSmallImg>div:hover:before {
    height: calc(100% + 10px);
    width: calc(100% + 10px);
    ;
}

.chooseSmallImg img {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    object-fit: contain;
    background-color: var(--white);
    border-radius: 50%;
    padding: 0.5rem;
    text-align: center;
}

/* .chooseSmallImg>div:hover .ChangeDark {
    background-color: var(--secoundry);

} */

.chooseMainImg {
    width: 100%;
    height: 530px;
    padding: 0.5rem;
    border: 1px solid #333333;
    object-fit: cover;
}

.whyChooseUs .col-12 {
    padding: 0.5rem;
}

/* .whyChooseUs .col-12>div:hover {
    transform: translateY(-20px);
} */

.whyChooseUs .col-12>div p {
    color: #fff !important;
}

/* Why Choose End */

/* Tagline Start */

.tagline_sec {
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0, 130, 109, 0.4), rgba(0, 130, 109, 0.4)), url(../banner/banner1.jpg) center no-repeat;
    background-size: cover;
    padding-block: 3rem;
}

.about_tagline {
    text-align: center;
    background: linear-gradient(rgba(1, 171, 144, 0), rgba(255, 255, 255, 0)), url(../imgs/background.jpg) fixed no-repeat;
    background-size: cover;
    padding-block: 3rem;
    margin-bottom: 0;
}

.tagline_sec h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.tagline_sec a {
    display: inline-block;
    margin-top: 0.5rem;
    background-color: #fff;
    color: #000;
    border: 2px solid #fff;
    transition: all 0.3s ease !important;

}

.tagline_sec a:hover {
    background-color: transparent;
    color: #fff;
}

.tagline_sec .container,
.about_tagline .container {
    background: linear-gradient(rgba(1, 171, 144, 0.7), rgba(1, 171, 144, 0.7)), url(../banner/banner2.jpg) no-repeat center;
    background-size: cover;
    padding: 2rem;
}

.tagline_sec .container div {
    padding: 1.5rem;
    border: 2px solid #fff;
}

/* Tagline End */

.recent_project {
    padding-block: 3rem;
}









#blog-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}




#blogs {
    float: left;
    width: 75%;
    padding-left: 20px;
}

#blog-container {
    margin-top: 2rem !important;
    width: 90%;
    margin: 0 auto;
    /* display: flex; */
    flex-wrap: wrap;
}



#categories {
    flex: 1;
    width: 40%;

}

#blog-posts {
    width: 60%;
}

#categories ul {
    padding: 0 !important;
    list-style: none;
    background-color: var(--secoundry);

}

#categories ul li {
    margin: 0;
    padding: 0;
}

#categories ul li:last-child {
    border-bottom: none;
}

#categories ul li a {
    width: 100%;
    display: inline-block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding: 0.5rem 2.5rem;
    border-bottom: 1px dashed #fff;
}



#categories ul li a:hover {
    color: #fff;
    background: var(--primary);
    border-radius: 0;
}

.pro_active {
    background-color: var(--primary);
    color: #fff;
}

.latest_boxes_img {
    width: 100%;
    height: 265px;
    overflow: hidden;
}

.latest_boxes_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.latest_boxes_content{
    box-shadow: 0 0 20px #ccc;
    padding: 1rem;
}

.latest_boxes_content p{
    margin-bottom: 0;
}

.latest_boxes_content h4 {
    font-size: 22px;
    font-weight: 600;
}

.blog-post {
    display: none;
    margin-bottom: 20px;
}



.blog-post:nth-child(1) {
    display: block;
}

[data-category]:hover {
    cursor: pointer;
}



/* Blog Section */

.blog_section {
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../imgs/demo2.jpg) center;
    padding-block: 3rem;
    padding-top: 2rem;
    position: relative;
}

.blog_section .container-fluid {
    margin-top: 2rem;
}

.blog_box {
    box-shadow: 0 0 25px #ccc;
    border-radius: 1rem;
    padding: 1.5rem;
    height: 280px;
    position: relative;
    cursor: pointer;
    transition: all 1s ease;
    background-color: rgba(255, 255, 255, 0.7);

}

.blog_box img {
    width: 100%;
    height: 230px;
    padding: 0.5rem;
    border: 1px solid #ccc;
    object-fit: cover;
    transition: all 1s ease;
}

.blog_box:hover .imgBig {
    transform: scale(1.1);
}

/* .blog_box:hover{
    box-shadow: 0 0 10px var(--primary);

} */


.blog_content a {
    position: absolute;
    bottom: 30px;
    border: unset !important;
}

.blog_btn {
    text-align: center;
    margin-top: 3rem;
}

.blog_btn a {
    transition: all 0.3s ease !important;
}

.owl-nav {
    width: 100%;
    position: absolute;
    top: 40%;
    transform: translateY(-50%);

}

.owl-prev,
.owl-next {
    background-color: var(--secoundry);
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
}

.owl-prev {
    left: 0%;
}

.owl-next {
    right: 0%;
}

/* Client Start */


.partnerSection {
    margin-top: 2rem;
    padding-block: 3rem;
    padding-top: 1rem;
    /* background: linear-gradient(rgba(34, 73, 106, 0.6), rgba(34, 73, 106, 0.6)), url(../imgs/background1.jpg) center no-repeat; */
    background-size: cover;
}

/* .partnerSection h2 {
    color: #fff;
}

.partnerSection .underline {
    background-color: #fff;
} */


.partnerSection h2 {
    text-align: center;
    color: var(--primary);
}

.partnerSection .underline {
    background-color: var(--primary);
}

.partnerSection .primaryBtn {
    background-color: var(--primary) !important;
    color: #fff;
    transition: all 0.3s ease !important;
}

.partnerSection .primaryBtn:hover {
    background-color: var(--secoundry) !important;
}

/* Extra Slider */

.slider {
    margin: auto;
    margin-top: -3rem;
    margin-bottom: -1.5rem;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.E-btn {
    position: absolute;
    bottom: 30px;
}


.slide-track {
    display: flex;
    width: calc(250px * 36);
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 3));
    }
}

.E-slide {
    height: 180px;
    width: 250px;
    margin-left: 0.6rem;

    padding: 15px;
    perspective: 100px;
    margin-left: 1.5rem;
    text-align: center;
    margin-top: 4rem;
}

.E-slide img {
    height: 100px;
    width: 250px;
    text-align: center;
    object-fit: contain;
    transition: all 1s;
    border-radius: 1rem;
    border: 1px solid #ccc;
    cursor: pointer;
    padding: 1rem;
}

.E-slide img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #ccc;
}

.partnerSection a {
    display: block;
    width: max-content;
    margin: 0 auto;
    color: #000;
}




/* Client End */





/* Footer Start */

footer {
    background-color: var(--secoundry);
    padding-block: 3rem;
    padding-bottom: 2rem;
    color: #fff;
}

footer a {
    color: #fff;
    transition: all 0.3s ease;
}

footer a:hover {
    text-decoration: underline;
    /* padding-left: 5px; */
}

.footUnderline {
    width: 20%;
    background-color: #fff;
    height: 3px;
}

.footHeading {
    margin-bottom: 1.5rem;
}

.copywrite {
    text-align: right;
}

footer img {
    box-sizing: unset;
    width: 220px;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

footer li {
    margin-bottom: 0.5rem;
}

/* 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);
    padding: 0.6rem;
    color: var(--white);
    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(--darkBlue);
}

.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 */

.about_introduction {
    margin-block: 2rem;
}

.about_introduction img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.about_introduction img,
.mission_vision img {
    height: 300px;
}


.vision {
    background-color: var(--secoundry);
    background-size: cover;
    padding-block: 3rem;
    margin-top: 3rem;
    color: #fff;
}

.vision h2 {
    color: #fff;
}

.mission {
    background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url(../imgs/background.jpg) no-repeat center;
    background-size: cover;
    padding-block: 3rem;
}

.mission_vision img {
    width: 100%;
    height: 300px;
    background-color: #fff;
    object-fit: contain;
}

.mission img{
    object-fit: cover;
    border: 1px solid #ccc;
    padding: 0.5rem;
}

/* About Page End */

/* Career */


.career label {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.career input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
}

.career input[type="submit"] {
    background-color: var(--blue);
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: max-content;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: -10px;
}

.career input[type="submit"]:hover {
    background-color: var(--darkBlue);
}


/* Contact Page Start */







.contact_top_sect {
    background: #fff;
    padding-block: 2rem;
}

.contact_top_sect h1 {
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.get-txt {
    text-align: center;
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.con_sec1 {
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    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 input[type=text],
.contact_form_cont textarea,
.contact_form_cont select {
    border: #b5b5b5 1px solid !important;
    padding: 12px;
    width: 100%;
    font-size: 16px;
}

.contact_form_cont input::placeholder,
.contact_form_cont textarea::placeholder{
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.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: #000;
    letter-spacing: 1px;
    margin-top: 5px;
    margin-bottom: 10px;
    text-align: left
}


.cont_sub {
    text-align: center;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 15px;
    color: #FFFFFF;
    background: var(--primary);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cont_sub:hover {
    background: var(--secoundry);
}

.cont_sub1 {
    text-align: center;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 15px;
    color: #000;
    background: #ccc;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cont_sub1:hover {
    background: var(--primary);
    color: #fff;
}

.com_name {
    font-size: 28px;
    color: var(--primary);
    text-align: left;
    font-weight: 600;
}

.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);
    padding: 0px 0px;
    border-radius: 50px;
}

.cnt_heading {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0;

}

.sec_cnt {
    font-size: 16px;
}

.contact_desc a {
    color: #000;
    font-size: 16px;
}

.contact_desc a:hover{
    text-decoration: underline;
}

.contact_form_cont {
    font-size: 1em;
    background: #fff;
    padding: 25px;
    border: 1px solid #ccc;
    box-shadow: 0 0 8px #dbdbdb;
    min-height: 430px;
}

.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;
    margin-bottom: -2rem;
}

.page-address {
    margin-bottom: -1rem;
}

.contact_form_cont video {
    width: 100%;
    height: 100%;
}

/* Contact Page End */

/* Service Page Start */

/* Web Design */
.servicepage {
    margin-top: 2rem;
}


.servicepage img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #ccc;
}

.coloumHeight {
    height: 400px;
    margin-bottom: -5rem;

}

.servicepage h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--blue);
}

.service_page_sec1 {
    padding-block: 2rem;
}



.service_page_sec2 h3 {
    color: var(--white);
}

.service_page_sec2 {
    color: #fff;
    padding-block: 2rem;
   background-color: var(--secoundry);
    margin-bottom: 0;

}




/* Service Page End */


/* Partner Page Start */

.partnersPage {
    padding-block: 3rem;
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../imgs/bg-3.jpg) fixed center no-repeat;
    background-size: cover;
}

.partnersPage .col-xl-3>div {
    width: 90%;
    height: 100%;
    overflow: hidden;
    padding: 1rem;
    border: 2px solid #ccc;
    margin: 0 auto;
    margin-top: 1rem;
    text-align: center;
    background-color: rgb(255, 255, 255);
}

.partnersPage img {
    width: 65%;
    height: 110px;
    object-fit: contain;
    cursor: pointer;
    transition: all 1s ease;
}

.partnersPage img:hover {
    transform: scale(1.2);
}

/* Partner Page end */

/* Products Page Start */

.product_page {
    margin-block: 2rem;
}



.product_page h2 {
    text-align: center;

}

.product_page h5 {
    text-align: center;
    color: var(--darkBlue);
}

.product_sec1 {
    margin-block: 5rem;

}

.product_sec1 h2,
.modules_sec1 h2 {
    text-align: unset;
    font-size: 28px;
    font-weight: 600;
}

.product_page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
}

.modules {
    margin-top: 3rem;
}

.modules_sec1 {
    margin-block: 5rem;
}

/* Products Page End */

/* Query Form */


.queryForm {
    background-color: #f0eeee;
    padding-block: 3rem;
    padding-top: 2rem;
}

.queryForm h1 {
    text-align: center;
}

.queryForm form {
    margin-top: 2rem;
    width: 100%;
    padding: 3rem 2rem;
    border: 2px solid #eee;
    box-shadow: 0px 0px 15px #aaa9a9;
    background: #FFF;
    border-radius: 1rem;
}

.queryForm form input {
    width: 100%;
    border: 1px solid #d8d8d8;
    margin-top: 1rem;
    border-radius: 0.5rem;
    height: 50px;
}

.queryName {
    display: flex;
}

.queryName input:nth-child(1),
.queryName input:nth-child(2) {
    width: 50%;


}

.queryForm form input,
.commentInput {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 0.6rem 2rem;
    margin-top: 1rem;
    border-radius: 0.5rem;
}


.queryEmail {
    margin-top: 0rem !important;
}



.queryForm .queryBtn {
    display: block;
    width: max-content;
    padding: 10px 24px;
    margin: 0 auto;
    margin-top: 2rem;
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    transition: all linear .3s;
    border-radius: 5px;
    text-transform: uppercase;
    background: var(--blue);
    transition: all 0.3s ease;
}

.queryForm .queryBtn:hover {
    background: var(--darkBlue);

}

.commentInput {
    height: 80px;
}

.queryName {
    display: flex;
    margin-top: -2rem;
}


/* About Us Page */

/* 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(--secoundry);
}

.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_introduction h6{
    font-weight: 600;
    font-size: 18px;
    color: #b6b5b5;
}