.bannerSection .bannerGroup {
    margin-bottom: 3rem;
}

.bannerSection .bannerGroup .header {
    color: #000;
    font-family: var(--secondary-font), sans-serif;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    margin: 3.5rem 0.5rem 1.5rem 0.5rem;
}

.bannerSection .bannerGroup .bannerList {
    display: flex;
    flex-wrap: wrap;

    row-gap: 10px;
    column-gap: 10px;
}

.bannerSection .bannerList > .banner {
    overflow: visible;
    width: var(--banner-width);
    height: var(--banner-height);
    border-radius: 0.5em;
    background: var(--secondary-color-sat25);
    display: flex;
    justify-content: center;
    border: 2px solid rgba(100, 100, 100, 0);
    transition: border 0.2s, box-shadow 0.5s ease;
    padding: 15px;

    font-size: 2rem;
    text-align: center;
    line-height: 3rem;
    font-weight: 600;
}

.bannerImgWrap {
    width: 100%;
}

.bannerSection .bannerList .banner a {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none;
}

.bannerSection .bannerList .banner a > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerSection .bannerList .banner h3{
    margin-top: -5px;
}

.bannerSection .bannerList .banner h3, p{
    text-align: left;
    width: 100%;
}

.bannerSection .bannerList > .banner img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.bannerSection .bannerGroup .bannerList.thinMediumTiles {
    row-gap: 1.19rem;
    column-gap: 1.54rem;
}

.bannerSection .bannerList.thinMediumTiles > .banner {
    width: var(--medium-banner-width);
    height: var(--thinMedium-banner-height);
}

.bannerSection .bannerGroup .bannerList.mediumTiles {
    row-gap: 15px;
    column-gap: 15px;
}

.bannerSection .bannerList.mediumTiles > .banner {
    width: var(--medium-banner-width);
    height: var(--medium-banner-height);
}

.bannerSection .bannerGroup .bannerList.bigTiles {
    row-gap: 15px;
    column-gap: 15px;
}

.bannerSection .bannerList.bigTiles > .banner {
    width: var(--medium-banner-width);
    height: var(--medium-banner-height);
}

.bannerSection .bannerList.bigTiles > .banner img {
    border-radius: 0.625rem;
}

#content > div:nth-child(even) .bannerSection .bannerList > .banner {
    background: #FFFFFF;
}

:root {
    --glow-color-0: rgba(0, 158, 226, 0);
    --glow-color-1: rgba(0, 158, 226, 0.5);
    --glow-color-b0: rgba(0, 158, 226, 0);
    --glow-color-b1: rgba(0, 158, 226, 0.5);
}

/* Optional: Adding a smooth glow transition */
@keyframes glowing {
    0% {
        box-shadow: 0 0 0px var(--glow-color-0);
        border: 2px solid var(--glow-color-b0);
    }
    100% {
        box-shadow: 0 0 15px var(--glow-color-1);
        border: 2px solid var(--glow-color-b1);
    }
}

.bannerSection .bannerList > .banner:hover {
    border: 2px solid var(--glow-color-b1);
    box-shadow: 0 0 15px var(--glow-color-1);
}

.expo-item{
    border: 0px solid rgba(100, 100, 100, 0);
    transition: border 0.2s, box-shadow 0.5s ease;
}

.expo-item:hover {
    border: 2px solid var(--glow-color-b1);
    box-shadow: 0 0 35px var(--glow-color-1);
}

.jobSummaryInfo {
    display: flex;
    margin-bottom: 10px;
}

.jobSummaryInfoList {
    display:flex;
}

.jobSummaryInfo p {
    font-size: 1.1rem !important;
}
