
.goog-logo-link, .goog-te-gadget span {
        display: none !important;
    }
.topNav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: var(--secondory-color);
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.topNav_img img {
    width: 100px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.myNav_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.myNav {
    background-color: var(--white-color);
    padding: 14px 4rem;
    border-bottom: 1px solid #ccc;
}

.logo img {
    width: 400px;
}

.call a {
    color: #fff;
    font-weight: 600;
    display: block;
    text-transform: capitalize;
}

.call a:hover {
    color: whitesmoke;
}

.address p {
    max-width: 500px;
    color: var(--white-color);
    font-weight: 500;
}

.menu ul,
.header_icon {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.menu ul li a {
    text-transform: capitalize;
    color: green;
    font-weight: 600;
}

.header_icon i {
    color: var(--white-color);
    font-size: 24px;
}

.menu_list {
    position: absolute;
    left: 0;
    padding-block: 0 10px;
    background-color: #fff;
    width: 400px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    border: 1px solid #ccc;
    transition: all .2s ease;
    transform: translateY(10px);
}

.profile_menu {
    position: relative;
}

.profile_menu__list {
    position: absolute;
    padding-block: 0;
    left: 0;
    background-color: var(--white-color);
    z-index: 99;
    width: 200px;
    box-shadow: 0 0 2px rgba(0, 0, 0, .46);
    opacity: 0;
    visibility: hidden;
}

.profile_menu:hover .profile_menu__list {
    opacity: 1;
    visibility: visible;
    transition: .3s ease;
}

.profile--list li a::after {
    content: '' !important;
}

.profile_menu__list a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.profile_menu__list a:hover {
    background-color: var(--main-color);
    color: var(--white-color);
    transition: .3s ease;
}
.drop_down{
    position: relative;
}
.drop_down a,
.profile_menu a {
    display: flex;
    gap: 5px;
    align-items: center;
    transition: .3s ease-in;
}

.drop_down a i,
.profile_menu a i {
    font-size: 25px;
}

.drop_down:hover a i {
    transform: rotate(180deg);
    transition: .3s ease-in;
}

.drop_down:hover .menu_list {
    transform: translateY(0px);
    visibility: visible;
    opacity: 1;
    transition: all .2s ease;
}

/*.menu_list__grid {*/
/*    display: grid;*/
/*    gap: 2rem;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*}*/

.header_img {
    margin-top: 2rem;
}



.grid_box h3 {
    color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
    display: none;
}

.grid_box a {
    display: block;
    margin-top: 10px;
    color: var(--black-color) !important;
    font-weight: 500;
    margin-left: 1rem;
    position: relative;
    transition: .2s ease-in;
}

.grid_box a:hover {
    color: var(--main-color) !important;
    transition: .2s ease-in;
    transform: translateX(10px);
}

.grid_box a::before {
    /*content: '';*/
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 7px;
    width: 7px;
    border-radius: 100%;
    background-color: var(--main-color);
}

.banner_img img {
    width: 100%;
    height: 900px;
    object-position: top;
    object-fit: cover;
}

.banner_img {
    position: relative;
}

.banner_img::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .565);
    height: 100%;
    width: 100%;
}

.banner_slider_item {
    position: relative;
}

.banner_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.banner_content h1 {
    color: var(--white-color);
    font-size: 70px;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.banner_content p {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 10px !important;
    color: var(--white-color);
    font-size: 18px;
    line-height: 1.7;
}

.categories_box {
    border: 1px solid #ccc;
    transition: .3s ease;
    border-bottom: 0;
}

.categories_box h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--main-color);
    padding: 12px;
}

.categories_box__list h3 {
    font-size: 18px;
    padding: 12px;
    /* border-bottom: 1px solid #ccc; */
    border-top: 1px solid #ccc;
    font-weight: 600;
    cursor: pointer;
}

.categories_box__list.active ul {
    padding: 12px !important;
    transition: .3s ease;
    border-top: 1px solid #ccc;
}

.categories_box__list.active ul li a {
    margin-bottom: 10px;
    transition: .3s ease;
    height: auto;
}

.categories_box__list ul {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 0 12px !important;
    padding-bottom: 0 !important;
}



.categories_box__list ul li a {
    color: #555;
    cursor: pointer;
    /* margin-bottom: 10px; */
    margin-bottom: 0px;
    display: block;
    font-size: 15px;
    height: 0;
    overflow: hidden;
}

/* about css */
.global_wrapper {
    padding: 80px 0;
}

.global_content {
    margin-top: 3rem;
}

.about_img,
.faq_box,
.about_content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.about_img img,
.faq_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about_content {
    padding-left: 3rem;
}

.about_content h2 {
    font-size: 50px;
    font-weight: 600;
    color:  #ff5b5b;
}

.about_content p {
    margin-top: 12px;
    line-height: 26px;
}

/* product_wrapper */
.product_wrapper {
    border-top: 1px solid #ccc;
    background-color: #fafafa;
}

.main_heading {
    text-align: center;
}

.main_heading h2 {
    color: var(--main-color);
    font-size: 55px;
    font-weight: 600;
}

.main_heading p {
    margin-top: 7px !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.product_img img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    object-position: top;
}

.product_content {
    background-color: #ff5b5b;
    padding: 10px;
}

.product_content a {
    color: var(--white-color);
    text-align: center;
    display: block;
    font-weight: 600;
}

.product_content a:hover {
    color: var(--white-color);
}

.rating {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: 4px;
    gap: 4px;
}

.product_content i {
    color: var(--white-color);
}

/* parralex_wrapper */
.parralex_wrapper {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .46)), url('../images/parralex2.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 160px 0;
}

.parralex_wrapper__content {
    text-align: center;
}

.parralex_wrapper__content h6 {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--white-color);
    letter-spacing: 1px;
}

.parralex_wrapper__content h2 {
    margin: 0 auto;
    font-size: 50px;
    color: var(--white-color);
    max-width: 800px;
    font-weight: 600;
    margin-top: 12px !important;
}

/* home_slider */


/* testimonial_wrapper__content */
.testimonial_wrapper {
    background-image: url('../images/pattern.jpg');
    background-position: left top;
    background-size: auto;
    background-repeat: repeat;
    border-top: 1px solid #ccc;
    background-attachment: fixed;
}

.testimonial_wrapper__content {
    text-align: center;
}

.ratings i {
    font-size: 20px;
    color: var(--secondory-color);
}

.testimonial_wrapper__content h2 {
    max-width: 930px;
    margin: 0 auto;
    font-size: 30px;
    color: #000;
    margin-top: 1rem !important;
    line-height: 1.4;
    font-weight: 400;
}

.clients_info {
    margin-top: 2rem;
}

.clients_info img {
    height: 70px;
    width: 70px;
    border-radius: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
    object-fit:cover;
}

.clients_info h3 {
    font-size: 21px;
    font-weight: 600;
    color: #000;
    margin-top: 2rem;
}

.clients_info span {
    text-transform: uppercase;
    color: var(--secondory-color);
    font-size: 15px;
    font-weight: 800;
    font-family: "Cinzel", serif;
}

.testimonial_slider .slick-dots {
    line-height: 0 !important;
    bottom: -4rem;
}

.testimonial_slider .slick-dots li {
    background-color: #ddd;
    border-radius: 100%;
    margin: 0 3px;
    height: 15px;
    width: 15px;
}

.slick-dots li button:before {
    display: none;
}

.testimonial_slider .slick-dots li.slick-active {
    background-color: var(--main-color) !important;
}



/* faqs */
.faq_wrapper {
    border-top: 1px solid #ddd;
}




.form_box {
    border: 1px solid #ccc;
    padding: 2rem;
}

.form_box h3 {
    font-size: 30px;
    font-weight: 600;
    color: #ff5b5b;
}

.form_box p {
    margin-top: 7px;
    max-width: 460px;
    margin-bottom: 2rem !important;
}

.form_input input::placeholder {
    color: #000;
}

.form-select:focus {
    border: none !important;
}

.form_input input,
.form_input .form-select, .form_input textarea {
    width: 100%;
    background-color: var(--white-color);
    padding: 7px;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none;
    border: 1px solid #ccc !important;
    margin-bottom: 16px;
    color: #000;
}

.form_input button {
    display: block;
    max-width: max-content;
    margin-top: 12px;
    background-color:  #ff5b5b;
    color: var(--white-color);
    text-transform: capitalize;
    font-weight: 600;
    padding: 7px 30px;
}

/* certificate_content */
.certificate_content {
    border-top: 1px solid #ccc;
}

.certficate_img img {
    height: 400px;
    width: 400px;
    object-fit: contain;
}

.certficate_img {
    border: 1px solid #ccc;
    padding: 2rem 0;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* footer */
.footer_row {
    background-color: var(--main-color);
}

.footer_left p {
    color: var(--white-color);
    font-size: 14px;
    margin-top: 10px;
    line-height: 24px;
    max-width: 380px;
}

.footer_png {
    margin-top: 1rem;
    display: flex;
    gap: 12px;
}

.footer_png img {
    width: 60px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.footer_box {
    padding-left: 1rem;
}

.footer_box h3 {
    color: var(--white-color);
    font-weight: 600;
}

.footer_links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 25px;
}

.footer_links a {
    color: var(--white-color);
    text-transform: capitalize;
    display: flex;
    gap: 5px;
    font-size: 15px;
    flex-wrap: wrap;
    overflow: hidden;
}

.footer_links a i {
    margin-top: 3px;
}

.footer_links a:hover {
    color: whitesmoke;
}

.footer_logo img {
    width: 220px;
}

.copyright {
    text-align: center;
    padding: 10px 0;
    background-color: var(--secondory-color);
    color: var(--white-color);
}


/* clients_slider_item */
.clients_wrapper {
    background-color: #ff5b5b;
    padding: 40px 0;
}

.clients_wrapper .main_heading h2 {
    color: var(--white-color);
}

.clients_slider_item {
    display: flex !important;
    justify-content: center;
    align-items: center;
    border: 1px solid #000;
    background: #fff;
    margin-right: 10px;
}

.clients_slider_item img {
    width: 210px;
    aspect-ratio: 3/2;
    object-fit: contain;
}

.menu_btn {
    display: none;
}


/* mobile nav */
.mobile_nav {
    position: fixed;
    right: -100%;
    transition: .3s ease;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .46);
    backdrop-filter: blur(3px);
    z-index: 99;
}

.mobile_nav.active {
    right: 0;
    transition: .3s ease;
}

.last_menu__list p {
    padding: 12px 1rem;
    padding-bottom: 0;
}

.mobile_sidebar {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    background-color: var(--white-color);
}

.mobile_header {
    padding: 1rem;
    border-bottom: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cancel_menu i {
    font-size: 30px;
    height: 40px;
    width: 40px;
    border-radius: 100%;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}



.mobile_menu ul li {
    border-bottom: 1px solid #ccc;
}

.mobile_menu ul li a {
    padding: 12px 1rem;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    display: block;
}

.mobile_drop a {
    position: relative;
}

.last_menu__list a::after {
    content: '' !important;
}

.mobile_drop a::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    font-size: 22px;
    color: #555;
    transform: translateY(-50%);
    transition: .3s ease-in;
}

.mobile_drop__list li .mega_menu::after {
    content: '+' !important;
    right: 0;
}


.mobile_drop.active .active-menu::after {
    color: var(--white-color) !important;
}

.mobile_drop.active .active-menu {
    background-color: var(--main-color) !important;
    color: var(--white-color) !important;
}

.mobile_drop__list li a {
    padding: 0 !important;
    border-bottom: 0 !important;
    font-weight: normal !important;
    font-size: 15px !important;
    position: relative;
}

.mobile_drop.active a::after {
    content: '-';
    transition: .3s ease-in;
}

.last_menu__list {
    position: absolute;
    top: 5rem;
    transition: .3s ease-in;
    background: #fff;
    height: 100%;
    width: 100%;
    z-index: 99;
        overflow: scroll;
    right: -100%;
}

.last_menu.active .last_menu__list {
    right: 0;
    transition: .3s ease;
}

.last_menu__list a {
    margin: 12px 1rem !important;
    display: block;
    border-bottom: 1px solid #ccc !important;
}

.mobile_drop {
    transition: .3s ease-in;
}

.mobile_drop__list {
    height: 0;
    overflow: hidden;
    transition: .3s ease-in;
}

.mobile_drop.active .mobile_drop__list {
    height: auto;
    transition: .3s ease-in;
}

.mobile_drop.active .mobile_drop__list li {
    padding: 12px 1rem !important;
    transition: .3s ease-in;
    text-transform: capitalize;
}

.mobile_drop.active a {
    border-bottom: 1px solid #ccc;
    transition: .3s ease-in;
}

.mobile_drop__list li {
    padding: 0px 1rem !important;
    border-bottom: 0;
    transition: .3s ease-in;
}


.back_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--main-color);
    font-weight: 600;
}

.banner_mob {
    display: none;
}

.product_box {
    margin-bottom: 40px;
}

@media(max-width:1500px) {
    .footer_box h3 {
        font-size: 23px;
    }

    .logo img {
        width: 360px;
    }

    .myNav {
        padding: 14px 2rem;
    }
}

@media(max-width:1320px) {
    .logo img {
        width: 300px;
    }

    .menu ul {
        gap: 20px;
    }

    .menu ul li a {
        font-size: 14px;
    }

    .address p,
    .call a {
        font-size: 14px;
    }

    .topNav_img img {
        width: 65px;
    }

    .footer_box h3 {
        font-size: 20px;
    }

    .footer_box {
        padding-left: 0;
    }
}

@media(max-width:1200px) {
    .about_img img {
        object-position: left;
    }

    .footer_left p {
        max-width: 100%;
    }

    .product_box {
        margin-bottom: 30px;
    }

    .logo img {
        width: 220px;
    }

    .footer_box {
        margin-top: 2rem;
    }

    .about_content {
        padding-left: 0;
    }

    .about_content h2 {
        font-size: 36px;
    }

    .about_content p {
        font-size: 14px;
        margin-top: 8px;
    }

    .certficate_img {
        padding: 1rem 0;
    }

}

@media(max-width:1100px) {
    .menu ul {
        display: none;
    }

    .menu_btn i {
        font-size: 30px;
        color: var(--main-color);
    }

    .menu_btn {
        display: block;
    }

    .logo img {
        width: 320px;
    }

    .main_heading h2 {
        font-size: 40px;
    }

    .main_heading p {
        font-size: 15px;
    }

}

@media(max-width:992px) {
    .form_box {
        margin-top: 1rem;
        padding: 20px;
    }

    .about_content {
        margin-top: 1rem;
    }

    .address p,
    .call a {
        font-size: 11px;
    }

    .product_section__content {
        margin-top: 2rem;
    }

    .product_content a,
    .product_content i {
        font-size: 14px;
    }

    .testimonial_wrapper__content h2 {
        font-size: 22px;
    }
}

@media(max-width:768px) {
    .mobile_drop__list ul li {
        font-size: 15px;
    }

    .mobile_sidebar {
        width: 100%;
    }

    .clients_wrapper {
        padding: 30px 0 16px 0;
    }

    .about_content h2 {
        font-size: 28px;
    }

    .certficate_img img {
        height: 260px;
    }

    .form_box h3 {
        font-size: 25px;
    }

    .form_box p {
        max-width: 100%;
        margin-bottom: 1rem !important;
        font-size: 15px;
    }

    .form_input input,
    .form_input .form-select {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .about_content p {
        margin-top: 4px;
    }

    .global_wrapper {
        padding: 50px 0;
    }

    .global_content {
        margin-top: 2rem;
    }

    .address p {
        max-width: 262px;
    }

    .main_heading h2 {
        font-size: 30px;
    }

    .main_heading p {
        font-size: 14px;
    }

    .testimonial_slider .slick-dots {
        bottom: -3rem;
    }

    .footer_logo img {
        width: 140px;
    }

    .footer_links {
        gap: 12px;
        margin-top: 15px;
    }

    .footer_links a {
        font-size: 13px;
    }

    .copyright p {
        font-size: 13px;
    }
}

@media(max-width:576px) {
    .topNav .address,     .topNav .call {
        display: none;
    }

    .myNav {
        padding: 8px 12px;
    }

    .logo img {
        width: 250px;
    }

    .product_img img {
        height: auto;
    }

    .product_section {
        padding: 30px 0 50px 0;
    }

    .address p,
    .call a {
        font-size: 9px;
    }

    .product_content a,
    .product_content i {
        font-size: 15px;
    }

    .clients_info,
    .clients_info h3 {
        margin-top: 1rem;
    }

    .testimonial_wrapper__content h2 {
        font-size: 18px;
        margin-top: 12px !important;
    }

    .ratings i {
        font-size: 15px;
    }

    .about_wrapper {
        padding: 30px 0 50px 0;
    }

    .about_content {
        margin-top: 10px;
    }

    .about_content p,
    .main_heading p,
    .footer_left p {
        font-size: 13px;
        line-height: 1.75;
    }

    .certficate_img {
        margin-right: 5px;
        padding: 0;
    }

    .banner_mob {
        display: block;
    }

    .banner_desktop {
        display: none;
    }

    .banner--img img {
        width: 100%;
    }

    /* .banner--img img {
        height: 400px;
        object-fit: cover;
    } */
}