/* ============================================
   HIRICH HOVER EFFECTS - Add to your site
   ============================================ */

/* === IMAGE HOVER === */
.brxe-image,
.brxe-sxfkry,
.brxe-bsinde,
.brxe-zolzmm {
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.3s ease;
}

.brxe-image:hover,
.brxe-sxfkry:hover,
.brxe-bsinde:hover,
.brxe-zolzmm:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

/* === BUTTON HOVER === */
.brxe-button,
.btn-white,
.btn-header {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brxe-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.brxe-button:hover::before {
    width: 300px;
    height: 300px;
}

.brxe-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 177, 243, 0.4);
}

/* === CARD HOVER === */
.brxe-hmvrdq,
.brxe-uqnzvm,
.brxe-hmzvih {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.brxe-hmvrdq:hover,
.brxe-uqnzvm:hover,
.brxe-hmzvih:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* === TEXT LINK HOVER === */
.brxe-text-link,
.brxe-kcxqib,
.brxe-hboivy {
    position: relative;
    transition: color 0.3s ease;
}

.brxe-text-link::after,
.brxe-kcxqib::after,
.brxe-hboivy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width 0.3s ease;
}

.brxe-text-link:hover::after,
.brxe-kcxqib:hover::after,
.brxe-hboivy:hover::after {
    width: 100%;
}

/* === VIDEO OVERLAY HOVER === */
.bricks-video-overlay {
    transition: background-color 0.3s ease;
}

.brxe-video:hover .bricks-video-overlay {
    background-color: rgba(30, 177, 243, 0.5) !important;
}

.bricks-video-overlay-icon {
    transition: transform 0.3s ease;
}

.brxe-video:hover .bricks-video-overlay-icon {
    transform: scale(1.2);
}

/* === NAVIGATION MENU HOVER === */
.bricks-nav-menu>li,
.bricks-mobile-menu>li {
    transition: transform 0.3s ease;
}

.bricks-nav-menu>li:hover,
.bricks-mobile-menu>li:hover {
    transform: translateY(-2px);
}

.bricks-nav-menu>li>a,
.bricks-mobile-menu>li>a {
    position: relative;
    transition: color 0.3s ease;
}

.bricks-nav-menu>li>a::after,
.bricks-mobile-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1eb1f3;
    transition: width 0.3s ease;
}

.bricks-nav-menu>li:hover>a::after,
.bricks-mobile-menu>li:hover>a::after {
    width: 80%;
}

/* === SUB-MENU HOVER === */
.sub-menu li>a {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.sub-menu li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1eb1f3;
    transition: width 0.3s ease;
}

.sub-menu li:hover>a::after {
    width: 100%;
}

/* === TAB TITLE - NO HOVER EFFECT === */
.tab-title {
    transition: none;
}
/* === JOB BOARD PAGE — content width ===  */
#brx-content.wordpress {
    width: unset;
    max-width: 1290px !important;
}
