/**
Theme Name: ACCSES
Author: FSA Management
Author URI: https://www.aboutfsa.com/
Description: Custom theme for ACCSES
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: accses
Template: astra
*/




/* ============== BOARD MEMBERS PAGE =========== */

.shfm-wrapper {
	width:1400px;
	max-width: 100%;
	margin: 0 auto;
	display: block;
	/* padding-left: 20px; */
	/* padding-right: 20px; */
}
.shfm-wrapper h3{
	font-weight: bold;
	color: #fba000;
	font-size: min(max(25px, 5vw), 34px);
	margin-bottom:10px;
}
.shfm-wrapper p{
	font-size: 20px;
}
ul.board-members {
	list-style: none;
	display: block;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	/* justify-content: flex-start; */
	width: 100%;
}
ul.board-members li {/* 	width: calc(25% - 30px); */display: flex;margin: 20px 15px;justify-content: flex-start;flex-wrap: wrap;}
ul.board-members.past-presidents li{
	width: 100%;
	max-width: 100%;
}

ul.board-members li .board-img {
	/* width: 50%; */
	width: 210px;
	width: 13%;
}
ul.board-members li .board-img img {
	/* width:100%; */
	/* height: auto; */
}
ul.board-members li .board-info{
	width: 83%;
	margin-left: 10px;
	/* margin-right: 30px; */
}
ul.board-members li .board-info h4 {
	margin-bottom:0;
	font-weight:
	bold;
	font-size: 22px;
	line-height:1.3;
}
ul.board-members li .board-info p{
	font-size:15px;
	line-height: 1.4;
	margin-bottom: 5px;
}
@media only screen and (max-width: 1024px){
/* 	ul.board-members li {
		width: calc(33.333% - 30px);
	}
	ul.board-members.past-presidents li{
		width: calc(100% - 30px);
	} */
}
@media only screen and (max-width: 768px){
	ul.board-members li {
		width: calc(100% - 20px);
		margin: 20px 10px;
	}
	ul.board-members li .board-img {
		/* width: 50%; */
		width: 110px;
		width: 30%;
	}
	ul.board-members li .board-info{
		width: 65%; margin-right: 0;
	}
}
ul.board-nav{
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
	background: #3f3f3f;
	color:#fff;
	margin-bottom:20px;
/* 	position: -webkit-sticky;
	position: sticky;
	top: 120px;
	left: 0; */
}
ul.board-nav li a{
	color:#fff;
	padding: 5px 15px;
	display: inline-block;
	position:relative;
	text-transform:uppercase;
}
ul.board-nav li:after{
	content:"/";
}
ul.board-nav li:last-child:after{
	content:"";
}
ul.board-nav li a:hover{
	color:#fba000;
}
/* Accordion styles */
.tabs {
  overflow: hidden;
}
.tab {
  width: 100%;
  overflow: hidden;
}
.tab-label {
  display: inline-block;
  justify-content: space-between;
  padding: 1em;
  cursor: pointer;
  /* Icon */
  padding: 0;
  font-size: 15px;
  /* color: #3f3f3f; */
  position: relative;
  color: #d3203e;
  font-weight: bold;
}
.tab-label:hover {
}
.tab-label::after {
  content: "";
  background:
  url(images/caret-right-solid.svg) 0 0 no-repeat;
  width: 20px;
  height: 20px;
  text-align: center;
  transition: all 0.35s;
  margin-left: 10px;
  background-size: contain;
  position: absolute;
  top: .0;
  /* right: 0; */
}
.tab-content {
  max-height: 0;
  padding: 0;
  color: #3f3f3f;
  background: white;
  transition: all 0.35s;
  font-size: 15px;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
/*   background: #2c3e50; */
  cursor: pointer;
}
.tabs input:checked + .tab-label {
/*   background: #1a252f; */
}
.tabs input:checked + .tab-label::after {
  transform: rotate(90deg);
  top: 4px;
}
.tabs input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 0;
  margin-top: 10px;
}
.tabs input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}