 /* maps, tabs, and flipcards
---------------------------------------------------------- */
.key-issues-tabs li {
	display: inline-block;
	width: 16%;
    color: #000;
    background: #fff;
}
.key-issues-tabs li a {
    color: #000;
    padding: 0.5rem;

    text-align: left;
    border-bottom: none;
}
.key-issues-tabs li a:hover { color: #000; }
.key-issues-tabs h5 {
	padding: 0.75em;
    font-size: 0.8rem;
}
.key-issues-tabs .nav-link {
    margin-left: 0;
}

ul.tabs li h3 {
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 20pt;
	text-align: center;
}

ul.tabs li.current {
}

.key-issues-tabs a.active h5 {
	margin: 0;
	color: #fff;
	background: #000;
}


.tab-content>.tab-pane {
	display: none;
	padding: 2em;
	min-height: 350px;
}

.tab-content>.active {
	margin-top: 0.75em;
	display: inherit;
	padding: 50px;
	border-top: 1px solid #c9c9c9;
}
.tab-content>.active p {
	font-size: 14pt;
}

.tab-container {
	margin-bottom: 2em;
	padding: 15px 25px;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.key-issues-tabs a.active:after {
	content: '';
	height: 0;
	width: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 10px solid black;
	left: 0;
	right: 0;
	top: 100%;
	margin: auto;
	display: block;
}



/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    /* width: 300px;
    height: 200px; */
    width: 100%;

    border: 1px solid #eee;
    /* perspective: 1000px; Remove this if you don't want the 3D effect */
    clear: both;
}

.flip-card--container {
    height: 480px;
}
/* This container is needed to position the front and back side */
.flip-card-inner {
    /* position: relative; */
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 500px;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #000;
    color: #fff;
}

.flip-card-front img { width: 50%; }

.flip-card-front h4 {
    line-height: 1.5;
    font-weight: 600;
    font-size: 1.25rem;
}

.corner {
	position: absolute;
	width: 0;
	height: 0;
	right: 0;
	border-top: 70px solid #f4721a;
	border-bottom: 70px solid transparent;
	border-left: 70px solid transparent;
}

.corner span {
	position: absolute;
	/* position: absolute;
	top: -110px; */
	top: -55px;
	width: 100px;
	right: -25px;
	/* left: -100px; */
	display: block;
	color: #fff;
}

.card-content {
	padding: 25% 20%;
	border: none;
}

.card-content hr {
	margin-top: 2.25em;
	border-top: 3px solid #f4721a;
	width: 50%;
}

/* Style the back side */
.flip-card-back {
    background-color: #f4721a;
  	border: none;
  	text-align: left;
  	color: #fff;
  	padding: 50px;
    transform: rotateY(180deg);
}

.cta-footer {
    color: #fff;
}
