/* Sectors */
.sector-grid-container {
    display: table;
    width: 100%;
}

.sector-grid-container > ul {
    display: table-row;
}

.sector-grid-container > ul > li {
    display: table-cell;
    width: 25%;
    text-align: center;
    vertical-align: middle;
    height: 180px;
    background-size: cover;
}

.sector-grid-container > ul > li > a {
    color: #fff;
    position: relative;
	text-decoration: none;
	padding: 0 15px;
	display: block;
}
.sector-grid-container > ul > li > a.active { background-color: transparent; }
.sector-grid-container > ul > li > a::after {
    content: '';
    display: block;
    margin: auto;
    width: 28px;
    height: 29px;
    background: url('../svg/expand.svg') no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -35px;
    transform: rotate(0deg);
    transition: .11s all ease;
}
.sector-grid-container > ul > li > a[aria-expanded="true"]::after {transform: rotate(45deg);}
.sector-grid-content .card {
    background-color: var(--e-global-color-secondary);
    background-size: cover !important;
    border-radius: 0;
    color: #fff;
    padding: 2vw;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.sector-grid-content .card::after {
    content: '';
    display: block;
    width: 17vw;
    height: 16vw;
    position: absolute;
    bottom: -2vw;
    left: 0vw;
    background: url('../svg/ng-sectors-logo.svg') no-repeat center;
    background-size: cover;
    z-index: -1;
}
.sector-grid-content .card .col-md-6 p,
.sector-grid-content .card .col-md-6 ul {
    font-weight: 300;
    font-size: 14px;
}

.sector-grid-content .card .col-md-6 ul {
	margin-bottom: 20px;
}

/* 
 * Sectors
 * */

.lead-content a {
    background-color: #fff;
    font-size: 12px;
    padding: 5px 6px;
    border-radius: 4px;
    text-decoration: none;
    color: #34374C;
}

.lead-content a:hover {
    background-color: #21AAFF;
    color: #fff;
}

.industry-lead-card {
    padding: 32px;
    background-color: #262a47;
    border-radius: 3px;
    margin-top: 25px;
}

.lead-photo {
    display: inline-block;
    vertical-align: top;
}

.lead-content {
    display: inline-block;
    width: 80%;
    padding-left: 16px;
}
.industry-lead-photo {
    width: 60px;
    border-radius: 120px !important;
}
.industry-lead-card h4 {
    font-size: 17px;
    display: inline-block;
	margin: 0;
    margin-right: 10px;
}

.industry-lead-card span {
    font-size: 12px;
    text-transform: capitalize;
    display: block;
    line-height: normal;
    letter-spacing: 1px;
    padding-bottom: 5px;
}

.page-id-20634 .industry-lead-card {
	background-color: rgb(0 26 42 / 50%);
}

@media screen and (max-width: 414px) {
	/* Sectors */
    .sector-grid-container > ul > li {
        display: inline-block;
        width: 50%;
        height: 100px;
    }
    .sector-grid-container > ul > li > a {
        margin-top: 20px;
        display: block;
        font-size: 14px;
        line-height: normal;
    }
    .sector-grid-container > ul > li > a::after {
        height: 20px;
        width: 20px;
        bottom: -25px;
    }
    .sector-grid-content .card::after {
        width: 250px;
        height: 250px;
        display: none;
    }
}