.hide-on-load {
    visibility: hidden;
}

.exhibitor-archive-loop article {
    max-width: 500px;
    position: relative;
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    margin-bottom: 0;
}

.exhibitor-archive-loop article .site-number {
    position: absolute;
    right: 0;
    background-color: black;
    color: white;
    z-index: 2;
    padding: 1% 3%;
    border-radius: 0 5px 0 0;
}

.exhibitor-archive-loop article .post-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 5px 5px 0 0px;
}

.exhibitor-archive-loop article .post-thumbnail>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.exhibitor-archive-loop article .post-content {
    padding: 1.2rem
}

.exhibitor-archive-loop article .post-cta {
    padding: 1.2rem !important;
}

.exhibitor-archive-loop article .post-content .category-name::before {
    content: "\e078";
    position: relative;
    font-family: 'ETmodules';
}




/* ajax filter */
.exhibitor-filters {
    border: 1px solid black;
    border-radius: 5px;
    padding: 20px;
}

.exhibitor-filters .et_pb_de_mach_search_posts_item {
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid #aaa;
}

.exhibitor-filters .et_pb_de_mach_search_posts_item .divi-filter-item {
    margin: 0 !important;
    padding: 0;
}

.exhibitor-filters .search_filter_cont p {
    margin: 0;
}


.select2-selection,
.select2.select2-container {
    min-height: 50px;
}

.select2-selection {
    display: flex !important;
    align-items: center;
    border: none !important;
    /* border-bottom: 1px solid #aaa !important; */
    border-radius: 0 !important;
}

.exhibitor-filters .et_pb_contact_field[data-filtertype="select"]:after {
    right: 10px !important;
    transform: translate(20px, 0) !important;
    top: 40% !important;
}


.exhibitor-filters .et_pb_de_mach_search_posts_item:last-child * {
    height: 100%;
}

.exhibitor-filters .et_pb_de_mach_search_posts_item:last-child .et_pb_contact_field_options_title {
    height: auto;
    /* Or you can set a specific height if needed */
}

.exhibitor-filters .et_pb_de_mach_search_posts_item:last-child .divi-filter-item {
    padding: 10px;
    color: black;
}

/* card image effects */
/* Target the article element */
article .post-thumbnail img {
    transition: transform 1.0s ease;
    /* Adjust the duration as needed */
    transform-origin: center;
    /* Ensures the zoom effect is centered */
}

article .post-thumbnail img:hover {
    transform: scale(1.1);
    /* Adjust the scale value as needed for the desired zoom level */
}