.topNav {
    background-color: var(--main-color);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    font-size: 14px;
    color: var(--white-color);
    padding: 10px 2rem;
}

.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-text p {
    font-size: 18px;
}

.topNav_right {
    justify-content: end;
}

.topNav_left,
.topNav_right {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.service_single {
    padding: 0 !important;
    border-bottom: 0 !important;
}

.topNav a {
    color: var(--white-color);
    font-size: 16px;
    display: flex;
    gap: 3px;
    align-items: center;
}

.cart {
    position: relative;
}

.cart span {
    height: 18px;
    width: 18px;
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: var(--main-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 100%;
}

.topNav a:hover {
    color: whitesmoke;
}

.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    padding: 1rem 0;
}

.myNav {
    border-bottom: 1px solid #ccc;
    padding: 0 1.2rem;
}

.myNav.sticky {
    position: fixed;
    left: 0;
    background-color: #E3FFEE;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0 0 4px rgba(0, 0, 0, .6);
}

.menu ul {
    display: flex;
    gap: 1.3rem;
    align-items: center;
}

.menu ul li a {
    color: var(--black-color);
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.menu ul li a:hover {
    color: var(--white-color);
    background-color: var(--main-color);
}

.header_icon {
    display: flex;
    gap: 24px;
    align-items: center;
}

.header_icon i {
    font-size: 22px;
    cursor: pointer;
    color: var(--black-color);
}

.dropdown_menu {
    position: relative;
}

.dropdown_menu:hover .dropdown_menu__list {
    visibility: visible;
    opacity: 1;
    transition: .3s ease all;
    transform: translateX(0);
}

.dropdown_menu__list {
    position: absolute;
    opacity: 0;
    transform: translateX(10px);
    transition: .3s ease all;
    visibility: hidden;
    top: 100%;
    right: 0;
    background-color: var(--white-color);
    z-index: 99;
    width: 250px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .6);
}

.dropdown_menu__list ul {
    flex-direction: column;
    gap: 0 !important;
    justify-content: start;
    align-items: start;
}

.dropdown_menu__list ul li {
    width: 100%;
}

.dropdown_menu__list ul li a {
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    display: block;
    font-size: 15px;
}

.dropdown_menu__list ul li a:hover {
    background-color: var(--main-color);
}

.megaDrop {
    position: relative;
}

.megaDrop:hover .megaDrop_list {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: .3s ease all;
}

.megaDrop_list {
    position: absolute;
    box-shadow: 0 0 4px rgba(0, 0, 0, .6);
    left: 100%;
    top: 0;
    transform: translateX(10px);
    width: 300px;
    transition: .3s ease all;
    opacity: 0;
    visibility: hidden;
    border-left: 1px solid #ccc;
    background-color: var(--white-color);
}



.centerparra {
    display: flex;
    height: 100%;
    justify-content: center;
    flex-direction: column;
}

.centerparra p {
    margin-top: 0 !important;
}

/* table_right__img */
.table_right__img img {
    width: 100%;
    border: 1px solid #ccc;
}

.table_right__content p {
    margin-top: 1rem;
    font-size: 14px;
}

.table_right {
    position: sticky;
    top: 8rem;
}

/* banner_wrapper */
.banner_wrapper {
    /* padding: 120px 0; */
}

.banner_img img {
    width: 100%;
}

.banner_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.banner_right span {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    color: var(--main-color);
}

.banner_right h1 {
    font-size: 60px;
    font-weight: 500;
    max-width: 700px;
    text-transform: uppercase;
    margin-top: 12px;
}

.banner_right p {
    font-size: 18px;
    line-height: 30px;
    max-width: 500px;
}

/* banner_bottom */
.banner_bottom {
    display: grid;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    grid-template-columns: repeat(4, 1fr);
}

.back_bg {
    background-color: #E3FFEE;
}

.banner_bottom__box {
    background-color: whitesmoke;
    padding: 2rem 1rem;
    text-align: center;
    transition: .3s ease all;
    border-right: 1px solid #ccc;
}

.banner_bottom__box:hover a {
    color: var(--white-color);
}

.banner_bottom__box:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease all;
}

.banner_bottom__box p {
    margin: 10px 0 !important;
    font-size: 18px;
}

.banner_bottom__box a {
    text-transform: capitalize;
    display: block;
    color: var(--main-color);
    font-weight: 600;
    font-size: 20px;
}

.banner_bottom__box a:hover {
    color: var(--white-color);
}

/* product */
.global_wrapper {
    padding: 40px 0;
    border-bottom: 1px solid #ccc;
}

.global_content {
    margin-top: 2rem;
}

.main_heading {
    text-align: center;
}

.main_heading h2 {
    font-size: 52px;
    text-transform: capitalize;
    font-weight: 500;
    color: var(--main-color);
}

.main_heading p {
    max-width: auto;
    margin: 0 auto;
    margin-top: 1rem !important;
    font-size: 18px;
    line-height: 30px;
}

.product_box {
    background-color: #fff;
    border: 1px solid #ccc;
    margin-bottom: 24px;
}

.product_box__img img {
    width: 100%;
    height: 175px;
    border-bottom: 1px solid #ccc;
    object-fit: contain;
}

.product_box__content {
    padding: 1rem;
}

.product_box__content h2 {
    font-size: 20px;
    font-weight: 600;
}

.product_box__content p {
    font-size: 16px;
    color: #434343;
    margin: 10px 0 !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.product_box__content a {
    text-transform: uppercase;
    color: var(--main-color);
    font-weight: 700;
}

.product_box__content a:hover {
    color: var(--main-color);
    opacity: .98;
}

.center_btn {
    text-align: center;
}

/* parralex_wrapper */
.parralex_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .76)), url('../images/parralex.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 50px 0;
    text-align: center;
    color: var(--white-color);
    background-attachment: fixed;
}

.parralex_wrapper h2 {
    font-size: 45px;
    color: var(--white-color);
}

.parralex_wrapper p {
    font-size: 20px;
    line-height: 1.54;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 1rem !important;
}

.parralex_wrapper a {
    background-color: var(--main-color);
    color: var(--white-color);
    padding: 10px 20px;
    text-transform: capitalize;
    font-weight: 600;
    font-size: 17px;
    transition: .3s ease;
    border-radius: 5px;
}

.parralex_wrapper a:hover {
    background-color: var(--white-color);
    color: var(--main-color);
    transition: .3s ease;
}

/* clients_wrapper */
.clients_wrapper {
    padding: 50px 0;
}

.clients_wrapper__content {
    text-align: center;
}

.clients_wrapper__content h2 {
    text-transform: capitalize;
    font-size: 32px;
    font-weight: 600;
}

.clients_wrapper__content p {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 600;
    color: #434343;
}

.clients_box {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: var(--white-color);
}

.clients_box img {
    aspect-ratio: 3/2;
    object-fit: contain;
    width: 160px;
}

.clietns_slider .slick-track {
    margin-bottom: 3px;
}

/* blog_box__img */
.blog_box__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog_box {
    border: 1px solid #ccc;
    margin-bottom: 24px;
}

.blog_box__content {
    background-color: whitesmoke;
    padding: 1rem;
}

.blog_box__content h3 {
    font-size: 24px;
    text-transform: capitalize;
    margin: 10px 0 !important;
}

.blog_box__content p {
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #434343;
}

.blog_box__content a {
    display: block;
    margin-top: 1rem;
    text-transform: capitalize;
    font-size: 18px;
    color: var(--main-color);
    font-weight: 700;
}

.menu_icon {
    display: none;
}

.menu_icon i {
    font-size: 32px;
    cursor: pointer;
}




.mobileNav {
    position: fixed;
    right: -100%;
    top: 0;
    background-color: rgba(0, 0, 0, .4);
    backdrop-filter: blur(3px);
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: .3s ease all;
}

.mobileNav.active {
    right: 0;
    transition: .3s ease all;
}

.mobileNav_content {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    width: 40%;
    background-color: var(--white-color);
}

.mobile_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    box-shadow: 0 0 4px rgba(0, 0, 0, .14);
    border-bottom: 1px solid #ccc;
}

.drop_btn__list {
    height: 0;
    overflow: hidden;
}

.drop_btn.active .drop_btn__list {
    height: auto;
    background-color: whitesmoke;
}

.close_icon {
    border-bottom: 1px solid #ccc;
}

.close_icon i {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    cursor: pointer;
    background-color: var(--main-color);
    color: var(--white-color);
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile_menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    color: var(--black-color);
}


.drop_btn__list ul {
    height: 0;
    overflow: hidden;
    transition: .3s ease all;
}

.drop_btn.active .drop_service {
    background-color: var(--main-color);
    color: var(--white-color);
}

.drop_btn.active .drop_service::after {
    content: '\2212';
}

.drop_service {
    position: relative;
}

.drop_service::after {
    content: '\002B';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

.drop_btn.active .drop_btn__list ul {
    height: auto;
    overflow: auto;
    transition: .3s ease all;
}

.drop_btn.active .drop_btn__list ul li {
    padding: 1rem;
    transition: .3s ease all;
}

.drop_btn__list ul li {
    padding: 0 1rem 0 2rem;
    border-bottom: 1px solid #ccc;
    text-transform: capitalize;
    transition: .3s ease all;
}

.mobile_menu {
    height: 550px;
    overflow-y: scroll;
}

.service_name {
    position: relative;
}

.service_name::after {
    content: '\002B';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
}

.service_name__list {
    position: fixed;
    right: -100%;
    transition: .3s ease all;
    top: 5.2rem;
    width: 40%;
    background-color: var(--white-color);
    z-index: 99;
    height: 100%;
}

.single_service {
    padding: 0 !important;
}

.single_service a {
    border-bottom: 0 !important;
}

.service_name.active .service_name__list {
    right: 0;
    transition: .3s ease all;
}

.back_btn {
    display: flex;
    justify-content: start !important;
    gap: 5px;
    align-items: center;
}

.social_icon {
    position: absolute;
    left: 0;
    bottom: 0;
    padding-bottom: 2rem;
    text-align: center;
    width: 100%;
    background-color: var(--white-color);
}

.social_icon p {
    text-transform: capitalize;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 1rem !important;
}

.social_icon__list img {
    width: 32px;
    aspect-ratio: 3/2;
    object-fit: contain;
}




/* map_wrapper */
.map_img img {
    width: 100%;
}

.map_wrapper__content h3 {
    font-weight: 600;
    color: var(--main-color);
    font-size: 26px;
}

.map_wrapper__content p {
    font-size: 16px;
    line-height: 26px;
    margin-top: 10px;
}

.map_wrapper__content ul {
    margin-top: 1rem;
    padding-left: 2rem !important;
}

.map_wrapper__content ul li a {
    display: block;
    margin-top: 10px;
    color: var(--black-color);
}

.map_wrapper__content ul li {
    list-style: disc !important;
}


@media(max-width:1675px) {
    .logo img {
        width: 130px;
    }

    .menu ul li a {
        font-size: 14px;
    }

    .menu ul {
        gap: 1rem;
    }

    .topNav a,
    .center-text p {
        font-size: 14px;
    }

    .topNav_right {
        justify-content: end;
        max-width: max-content;
        margin: 0 0 0 auto;
    }
}

@media(max-width:1440px) {

    .center-text p {
        text-align: center;
    }

    .center-text {
        width: max-content;
        margin: 0 auto;
    }

    .topNav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .topNav_left,
    .topNav_right {
        width: max-content
    }

    .logo img {
        width: 140px;
    }

    .product_box__content h2 {
        font-size: 17px;
    }

    .product_box__content p {
        font-size: 13px;
    }

    .menu ul {
        gap: 1rem;
    }

    .menu ul li a {
        font-size: 13px;
    }

    .myNav {
        padding: 0 7px;
    }

    .banner_bottom__box h2 {
        font-size: 25px;
    }

    .banner_bottom__box p {
        font-size: 16px;
    }
}

@media(max-width:1200px) {

    .topNav {
        flex-wrap: wrap;
    }

    .topNav_right {
        justify-content: center;
    }

    .menu_icon {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .service_name__list {
        top: 8rem;
    }



    .menu ul {
        display: none;
    }

    .logo img {
        width: 250px;
    }

    .product_box__content h2 {
        font-size: 20px;
    }

    .main_heading h2 {
        font-size: 42px;
    }
}

@media(max-width:992px) {
    .topNav_right {
        justify-content: center;
        width: auto;
        max-width: none;
        margin: inherit;
    }
    .center-text{
        margin: inherit;
    }

    .map_img {
        display: none;
    }

    .map_wrapper__content {
        margin-bottom: 1rem;
    }

    .mobileNav_content,
    .service_name__list {
        width: 60%;
    }

    .banner_bottom {
        grid-template-columns: repeat(2, 1fr);
        border-bottom: 0;
    }

    .banner_bottom__box {
        border-bottom: 1px solid #ccc;
    }

    .logo img {
        width: 200px;
    }

    .blog_box__img img {
        height: 220px;
    }

    .blog_box {
        margin-bottom: 2rem;
    }

    .center_box {
        margin: 0 50%;
        width: 100%;
    }

    .parralex_wrapper h2 {
        font-size: 32px;
    }
}

@media(max-width:768px) {
    .center-text p {
        font-size: 11px;
    }

    .banner_img img {
        width: 100%;
        height: 191px;
        object-fit: cover;
    }



    .mobileNav_content,
    .service_name__list {
        width: 100%;
    }

    .map_wrapper__content h3 {
        font-size: 18px;
    }

    .map_wrapper__content ul li a,
    .map_wrapper__content p {
        font-size: 14px;
    }

    .service_name__list {
        top: 6rem;
    }

    .global_wrapper {
        padding: 20px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .center_box {
        margin: auto;
    }

    .main_heading h2 {
        font-size: 32px;
    }

    .main_heading p,
    .product_box__content p,
    .parralex_wrapper p,
    .clients_wrapper__content p,
    .blog_box__content p,
    .banner_bottom__box p,
    .topNav a {
        font-size: 14px;
        line-height: 24px;
    }
}

@media(max-width:576px) {
    .topNav {
        padding: 5px 12px;
        flex-wrap: wrap;
        gap: 5px;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        width: 100px;
    }

    .clients_wrapper {
        padding: 30px 0;
    }

    .myNav {
        padding: 0;
    }

    .banner_bottom__box,
    .blog_box__content {
        padding: 1rem 6px;
    }

    .banner_bottom__box p,
    .product_box__content p {
        margin: 5px 0 !important;
        font-size: 14px;
    }

    .product_box {
        margin-bottom: 1rem;
    }

    .topNav_right {
        display: none;
    }

    .topNav_left {
        flex-wrap: wrap;
        gap: 3px;
        justify-content: center;
    }

    .breadcrumb_btn a {
        font-size: 13px;
        padding: 5px 10px !important;
    }

    .topNav {
        justify-content: center;
        gap: 0;
    }
    .center-text p{
        font-weight: bold;
    }

    .product_box__img img {
        height: 160px;
    }

    .product_box__content h2 {
        font-size: 20px;
    }

    .product_box__content p {
        font-size: 16px;
    }

    .banner_bottom__box a,
    .product_box__content a {
        font-size: 16px;
    }

    .product_box__content {
        padding: 10px;
    }

    .banner_bottom__box h2 {
        font-size: 20px;
    }

    .parralex_wrapper {
        padding: 30px 0 50px 0;
    }

    .parralex_wrapper h2,
    .clients_wrapper__content h2 {
        font-size: 24px;
    }

    .clients_wrapper__content p {
        margin-top: 2px;
    }

    .clients_box img {
        width: 88px;
    }

    .parralex_wrapper p {
        margin-top: 10px !important;
    }

    .blog_box__content h3 {
        font-size: 18px;
        margin: 5px 0 !important;
    }

    .blog_box__content a {
        font-size: 16px;
        margin-top: 5px;
    }
}

@media(max-width:450px) {
    .banner_bottom__box h2 {
        font-size: 16px;
    }
    .topNav_left a,.topNav_right a{
        font-size: 11px;
    }

    .banner_bottom__box p {
        font-size: 13;
    }
}

@media (max-width: 350px) {
    .topNav a {
        font-size: 12px;
    }
}