
/********************** CONTENT **********************/

.content{
	min-height: 90vh;
	flex: 1 0 auto;
	width: 100%;
	max-width: 1400px;
	margin: auto;
	display: flex;
	flex-direction: row;
}
/********* CONTENT LEFT **********/
.content-col-left{
	width: 100%;
	position: relative;
	margin: 1em;
	padding: 1em;
	background: #fff;
}
/********* SITE TEXT CONTENT ******/
.content-col-left-text{
  font-family: arial, sans-serif;
  overflow: hidden;
  padding: 1em;
}
.content-col-left-text a{
	padding: 1em;
	display: inline-block;
	background: none;
	color: #4d4d4d;
}
.content-col-left-text a:hover{
	background: #0094dd;
	color: #fff;
}

.content-col-left-text h2{
  text-align: center;
  margin: 1em 0;
}
.content-col-left-text h2:before,
.content-col-left-text h2:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 2px;
    background-color: #4d4d4d;
    position: relative;
}
.content-col-left-text h2:before {
    margin-left: -100%;
    left: -14px;
}
.content-col-left-text h2:after {
    margin-right: -100%;
    right: -14px;
}
.content-col-left-text h3, h4{
  margin: 1em 0;
}
.content-col-left-text p{
  text-indent: 1em;
  margin: 1em 0;
}
.content-col-left-text ul {
    margin: 1em;
    padding:0;
    list-style: none;
    counter-reset: li;
}    
.content-col-left-text li {
    position: relative;
    border: 2px solid #0094dd;
    padding:16px 20px 16px 28px;
    margin:12px 0 12px 40px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.content-col-left-text li:hover {
    background: #FFF;
}
.content-col-left-text li:before {
    line-height: 32px;
    position: absolute;
    top: 0.5em;
    left:-40px;
    width:40px;
    text-align:center;
    font-size: 16px;
    font-weight: bold;
    color: #FFF;
    background: #0094dd;
    counter-increment: li;
    content: counter(li);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}
.content-col-left-text li:hover:before {
    width:46px;
}
.content-col-left-text li:after {
    position: absolute;
    left: 0;
    top: 0.5em;
    content: "";
    height: 0;
    width: 0;
    border: 16px solid transparent;
    border-left-color: #0094dd;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s
}
.content-col-left-text li:hover:after {
    margin-left: 6px;
}

/********* SLIDER **********/
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 25%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}


/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a #4d4d4d background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active-dot, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/********* CONTENT RIGHT **********/
.content-col-right{
	width: 25%;
	background: #fff;
	margin: 1em 1em 1em 0;
}
.content-col-right h3{
	padding: 1em;
}
.content-col-right a{
	display: block;
	width: 100%;
	box-shadow: none;
	padding: 1em 1em;

}
.content-col-right a:hover{
	width: 100%;
	box-shadow: none;
	background: #0094dd;
}

/* BODY INDEX CONTENT LEFT COLUMN */
.category {
	display: block;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, .25);
	margin-bottom: 1em; 
}

.content-col-left-text a:hover {
	padding: 0;
	background: none;
    color: #4d4d4d;
    box-shadow: none;
}

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}


/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

/* Six columns side by side */
.column {
  float: left;
  width: 25%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

@media screen and (max-width: 900px){
	h1{display: none;}
.content-col-left-text h2::before, .content-col-left-text h2::after{
	display: none;
}
.content-col-right{
	display: none;
}

@media screen and (min-width: 600px){
.card {
  flex: 0 0 40%;
}
}
@media screen and (max-width: 600px){
  table.info-table {display: none;}
