html {
	font-feature-settings: "kern" 1;
	-webkit-font-kerning: normal;
	font-kerning: normal;
	font-family: Helvetica Neue, Helvetica, Roboto, Arial, sans-serif;
	font-size: 18px;
	
}

.ici {font-size: smaller; background-color: azure; border-bottom: 1px solid gray; text-align: center;}
.ici img {max-width: 24px; }
.ici_read {max-width: 50rem;}

#about h2 {background-color: #27628E; color: white; padding: .5em;}

@media (max-width: 575.98px) { 
	.logo {max-width: 150px;   margin: auto;
		display: block;
	  }
}

#masthead {color: #27628E;}
header {
	
	margin-bottom: 3em;
}
footer {
	border-top: 5px solid #27628E;
	margin-bottom: 3em;
	background-color: #4C8EC9;
	color: white;

}
footer a {color: white;}
footer img {max-width: 150px;}
nav {font-weight: bold;}
nav.bg-dark {background-color: #27628E !important;}
.feature-video-container {
	margin: auto;
	max-width: 440px;
}
nav.bg-dark a {color: white;}
.centered {
	margin:auto
}

h2 {
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: solid 1px lightgrey;
  }
  
  .feature {margin: auto; max-width: 540px;}

  .card {margin-bottom: 1em;}
/*heydon pickerings responsive grid method */ 
  .grid-30 { 
	--min: 30ch;
  
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--min)), 1fr));
  
	gap: 1rem; */
}
#results article {
	margin: 1em;
	border: 2px solid #532E76;
	padding: 10px;
	padding-left: 3em;
	padding-right: 3em;
	box-shadow: 6px 4px #532E76;
}  

.feature_orange {background:#C96D2A; color:white; }

/*hide trial message */
/* This won't work in pure CSS, but works in Stylus or with jQuery-based selectors */
#map_inner > div:nth-child(2) > a:nth-child(1){
    display: none !important;
}




  /* TIMELINE
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.timeline a {color:white;}
.timeline ul {
	background: #white;
	padding: 50px 0;
  }
  
  .timeline ul li {
	list-style-type: none;
	position: relative;
	width: 6px;
	margin: 0 auto;
	padding-top: 50px;
	background: #9FDAF1;
  }
  
  .timeline ul li::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: inherit;
	z-index: 1;
  }
  
  .timeline ul li div {
	position: relative;
	bottom: 0;
	width: 400px;
	padding: 15px;
	background: #532F76;
	color:white
  }
  
  .timeline ul li div::before {
	content: "";
	position: absolute;
	bottom: 7px;
	width: 0;
	height: 0;
	border-style: solid;
  }
  
  .timeline ul li:nth-child(odd) div {
	left: 45px;
  }
  
  .timeline ul li:nth-child(odd) div::before {
	left: -15px;
	border-width: 8px 16px 8px 0;
	border-color: transparent #f45b69 transparent transparent;
  }
  
  .timeline ul li:nth-child(even) div {
	left: -439px;
  }
  
  .timeline ul li:nth-child(even) div::before {
	right: -15px;
	border-width: 8px 0 8px 16px;
	border-color: transparent transparent transparent #f45b69;
  }
  
  .timeline time {
	display: block;
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 8px;
  }
  
  
  /* EFFECTS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  .timeline ul li::after {
	transition: background 0.5s ease-in-out;
  }
  
  .timeline ul li.in-view::after {
	background: #f45b69;
  }
  
  .timeline ul li div {
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s ease-in-out;
  }
  
  .timeline ul li:nth-child(odd) div {
	transform: translate3d(200px, 0, 0);
  }
  
  .timeline ul li:nth-child(even) div {
	transform: translate3d(-200px, 0, 0);
  }
  
  .timeline ul li.in-view div {
	transform: none;
	visibility: visible;
	opacity: 1;
  }
  
  
  /* GENERAL MEDIA QUERIES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  @media screen and (max-width: 900px) {
	.timeline ul li div {
	  width: 250px;
	}
	.timeline ul li:nth-child(even) div {
	  left: -289px;
	  /*250+45-6*/
	}
  }
  
  @media screen and (max-width: 500px) {
	.timeline ul li {
	  margin-left: 20px;
	}
	.timeline ul li div {
	  width: calc(100vw - 91px);
	}
	.timeline ul li:nth-child(even) div {
	  left: 45px;
	}
	.timeline ul li:nth-child(even) div::before {
	  left: -15px;
	  border-width: 8px 16px 8px 0;
	  border-color: transparent #f45b69 transparent transparent;
	}
  }
  
  
  /* EXTRA/CLIP PATH STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .timeline-clippy ul li::after {
	width: 40px;
	height: 40px;
	border-radius: 0;
  }
  
  .timeline-rhombus ul li::after {
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }
  
  .timeline-rhombus ul li div::before {
	bottom: 12px;
  }
  
  .timeline-star ul li::after {
	clip-path: polygon(
	  50% 0%,
	  61% 35%,
	  98% 35%,
	  68% 57%,
	  79% 91%,
	  50% 70%,
	  21% 91%,
	  32% 57%,
	  2% 35%,
	  39% 35%
	);
  }
  
  .timeline-heptagon ul li::after {
	clip-path: polygon(
	  50% 0%,
	  90% 20%,
	  100% 60%,
	  75% 100%,
	  25% 100%,
	  0% 60%,
	  10% 20%
	);
  }
  
  .timeline-infinite ul li::after {
	animation: scaleAnimation 2s infinite;
  }
  
  @keyframes scaleAnimation {
	0% {
	  transform: translateX(-50%) scale(1);
	}
	50% {
	  transform: translateX(-50%) scale(1.25);
	}
	100% {
	  transform: translateX(-50%) scale(1);
	}
  }
  
.vid {max-width: 400px;}

.title {border-bottom: 1px solid #9EDAF1 ;}

.program {padding: 1em; max-width: 666px;}

#resource_grid section {margin-bottom: 2em; padding: 1em; border-left: #9EDAF1 solid 1px;}

/* calendar stuff */
.row-striped:nth-of-type(odd){
    background-color: #F8F9FA;
    border-left: 4px #27628E solid;
  }
  
  .row-striped:nth-of-type(even){
    background-color: #ffffff;
    border-left: 4px #532F76 solid;
  }
  
  .row-striped {
      padding: 5px 5px;
      padding-bottom: 10px;
      margin-bottom: 5px;
  }
  .row-striped details{
    border:none;
  }
  .row-striped summary {padding: 0px; margin: 0px;}

   /* the details stuff for the cool little dropdown */
   details {
    border: 1px solid #aaa;
    border-radius: 4px;
    padding: .5em .5em 0;
}

summary {
  font-size: large;
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
    color: #616161;
}

details[open] {
    padding: .5em;
}

details[open] summary {
    border-bottom: 1px solid #aaa;
    margin-bottom: .5em;
}
details[open] summary ~ * {
  animation: sweep .5s ease-in-out;
}

details .btn {margin-left: 3em; margin-bottom: 1em;}

@keyframes sweep {
  0%    {opacity: 0; transform: translateX(-10px)}
  100%  {opacity: 1; transform: translateX(0)}
}

summary {padding:1em;}
.lil_summary {font-size: small; color:#27628E; border-right:#532F76 1px solid; padding-right: .5em;}
.lil_summary .fa {color:#532F76;}
.no-right-border { border-right: 0px;}
