/* Header Search */
header .header_search_content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    padding: 10px 0 30px;
    display: none;
}

header .header_search_content.active {
    display: block;
}

.header_search_content h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-theme);
    margin-bottom: 10px;
}

.header_search_content .search_content {
    position: relative;
    max-width: 500px;
    margin: auto;
    /* padding: 0 20px; */
}

.search_items .product_name {
    font-size: 16px;
    line-height: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    max-height: 54px;
}

.search_items .item_type {
    color: var(--color-theme);
}

.search_product_image {
    max-width: 80px;
    height: 80px;
    object-fit: cover;
}

.search_list {
    max-height: 200px;
    overflow: auto;
    position: absolute;
    background: white;
    border-radius: 8px;
    width: 100%;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
    margin-top: 12px;
}

.search_list .search_items:last-of-type+hr {
    display: none;
}

/* mobile_menu_btn
close_mobile_menu*/

@media screen and (max-width: 1024px) {
    .navigation {
        left: -100%;
        transition: all 0.3s;
    }

    .navigation.active {
        left: 0;
    }
}

/* Home Page */
.client-item img {
    max-width: 172px;
    width: 100%;
    margin: auto;
}

/* About Us Page */
.about_intro_section {
    padding-bottom: 72px;
}


.intro.list li {
    padding-left: 40px;
    position: relative;
}

.intro.list li:before,
.award-section ul li::before {
    content: '';
    background-image: url('../../assets/images/check-icon.svg');
    background-position: center;
    background-size: cover;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
}

.award-section .award-image:first-of-type {
    flex: 0 0 57.8%;
}

.award-section .award-image:last-of-type {
    flex: 1;
}

.award-image:last-of-type .image-container {
    padding-top: 100%;
}

.award-section .image-container {
    padding-top: 70.146%;
}

.award-section .content-title {
    color: #3C8643;
    font-weight: 600;
}

.award-section ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding-left: 10px;
    margin-bottom: 7px;
}

.award-section ul li {
    position: relative;
    padding-left: 35px;
}

/* product detail */
.specification_section {
    padding-bottom: 56px;
}

.specification_section .technical_specification:last-of-type {
    border: 0;
}

/* page_not_found} */

.page_not_found {
    margin-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 767px) {

    header .header_search_content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header_search_content h2 {
        text-align: center;
        font-size: 24px;
    }

    .about_intro_section {
        padding-bottom: 40px;
    }

    .intro.list li:before,
    .award-section ul li::before {
        top: 0;
        transform: unset;
    }

    .industries_serve_card_container {
        width: calc(100% - 20px);
    }

    .award-section ul {
        padding-left: 0;
    }

    .specification_section {
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 580px) {

    /* Home Page */
    .clientList .client-item {
        flex: calc((100% /2) - 20px);
    }

    .clientList .client-item img {
        max-width: 142px;
    }

    .clientList .client-img-container {
        padding-top: 120px;
    }

    .industries_serve_content {
        flex-direction: column;
    }

    .industries_serve_card_container {
        width: 100%;
    }

    .specification_section {
        padding-bottom: 30px;
    }
}

.post_comment_alert {
    background-color: #f8d7da;
    color: #58151c;
    border: 1px solid 3f1aeb5;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
}

/* service-slider */

.service-slider .slick-track {
    display: flex;
    align-items: stretch;
}

.service-slider .slick-slide {
    display: flex !important;
    flex-direction: column;
}

.video_content_section {
    padding-left: 0;
    padding-right: 0;
}
.brochure_alert{
 background-color: #dbeafe;
  border-left: 4px solid #3b82f6; 
  color: #1e40af;
   padding: 1rem;
    margin-bottom: 1.5rem;
     border-radius: 0.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);   
}