/* ==========================================
    OMBUDS HEADER / NAV
========================================== */

header.full.ombuds-header {
	min-height: 148px !important;
    box-shadow: none;
    border-bottom: 0;
}
	@media (max-width: 991.98px) {
		header.full.ombuds-header {
			min-height: 100px !important;
		    box-shadow: none;
		    border-bottom: 0;
		}
	}
.row.ombuds-bar { background-color: #013152; min-width: 100%; padding: 0; }

.row.ombuds-bar > .row {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 12px;
	padding-left: 0;
	padding-right: 0;
}

/*.ghost {
	height: 80px;
}
	@media screen and (max-width: 1100px) { 
		.ghost {
			height: 0;
		}
	}*/


.ombuds-preheader {
	background-color: #fff;
	color: #013152;
	padding: 10px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	max-width: 1280px;
	margin: auto;
}
.ombuds-preheader .phone {
	text-align: right;
}
.ombuds-header .logo-wrap {
  display: flex;
  flex-direction: row;
  color: #fff;
  margin: 0;
  flex: 0 0 auto;
  min-width: fit-content;
}
.ombuds-header .logo-wrap img {
    max-width: 95px;
	margin: 20px 15px 20px 0;
}
	@media (max-width: 991.98px) {
		.ombuds-header .logo-wrap img {
		    max-width: 70px;
		}
	}
.ombuds-header .logo-wrap .header-text {
	font-size: 2rem;
}
nav#ombuds-nav {
  margin-left: auto;
  flex: 0 1 auto;
}
nav#ombuds-nav a,
nav#ombuds-nav a:visited {
  color: #fff;
}
nav#ombuds-nav .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav#ombuds-nav ul.menu li {
  position: relative;
  display: block;
  float: none;
  text-transform: uppercase;
  padding: 10px;
}

nav#ombuds-nav ul.menu li a {
  position: relative;
  font-family: Nunito Sans, Arial, sans-serif;
  font-size: 1.3rem;
  padding: 15px 6px 0 6px;
  margin: 0;
  border-bottom: 10px solid transparent;
}

nav#ombuds-nav ul#menu-main-menu.menu li a {
  font-weight: bold;
  font-size: 1.3rem;
}
nav#ombuds-nav ul.menu li:not(.nav-btn) a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 40%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  border-bottom: 1px solid #f9c200;
  pointer-events: none;
  transition: transform 200ms ease;
}

nav#ombuds-nav ul.menu li:not(.nav-btn) a:hover::after,
nav#ombuds-nav ul.menu li:not(.nav-btn) a:focus::after,
nav#ombuds-nav ul.menu li:not(.nav-btn).current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1);
}

nav#ombuds-nav ul.menu .nav-btn {
    text-transform: uppercase;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    background-color: #fbc120;
    transition: all .2s ease-in-out;
	padding: 10px 0;
	margin-left: 20px;
}
nav#ombuds-nav ul.menu .nav-btn a {
	color: #000;
}
nav#ombuds-nav ul.menu .nav-btn:hover a {
    color: #fff;
}
nav#ombuds-nav ul.menu .nav-btn:hover {
    background-color: #006EB8;
}

/* Mobile */


#ombuds-nav-trigger {
  display: none;
  color: #fff;
  padding: 8px 10px;
  cursor: pointer;
  line-height: 1;
  font-size: 25px;
}
#ombuds-nav-trigger .icon-open::before,
#ombuds-nav-trigger .icon-close::before {
  font-family: "Font Awesome 6 Pro" !important;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 1;
}

#ombuds-nav-trigger .icon-open { display: inline-block; }
#ombuds-nav-trigger .icon-close { display: none; }
#ombuds-nav-trigger.is-active .icon-open { display: none; }
#ombuds-nav-trigger.is-active .icon-close { display: inline-block; }

@media (max-width: 991.98px) {
  .row.ombuds-bar > .row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
	gap: 0;
  }
  .ombuds-header .logo-wrap {
    padding-left: 20px;
	}

  .logo-wrap { 
  	order: 0; 
  	flex: 0 0 auto; 
  }
  .ombuds-header .logo-wrap .header-text {
  	font-size: 1.6rem;
  }
  #ombuds-nav-trigger { order: 1; display: inline-block; margin-left: auto; }

/* Mobile Nav */
  #ombuds-nav {
    order: 2;                        
    flex: 1 1 100%;
    background: #013152;
    border-top: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  #ombuds-nav.is-open {
    max-height: 60vh;
  }
  #ombuds-nav .menu {
    display: block;
    margin: 0;
    padding: 8px 12px;
    list-style: none;
  }
  #ombuds-nav .menu > li {
    float: none;
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  #ombuds-nav .menu > li:last-child { border-bottom: 0; }
  #ombuds-nav .menu > li > a {
    display: block;
    padding: 14px 10px;
    font-size: 1.1rem;
    border: 0;
  }

  #ombuds-nav ul.menu li:not(.nav-btn) a::after { content: none; }
  #ombuds-nav ul.menu .nav-btn { margin: 10px 0 0; padding: 0; background: transparent; border: 0; }
  #ombuds-nav ul.menu .nav-btn a { display: block; color: #000; background-color: #fbc120; padding: 14px 12px; border-radius: 4px; }
  #ombuds-nav ul.menu .nav-btn:hover a { color: #fff; background-color: #006EB8; }
  #ombuds-nav-trigger { color: #fff; padding: 8px 10px; cursor: pointer; line-height: 1; }
  #ombuds-nav-trigger .icon-open::before,
  #ombuds-nav-trigger .icon-close::before {
    font-family: "Font Awesome 6 Pro" !important; font-style: normal; font-weight: 300 !important; line-height: 1;
  }
  #ombuds-nav-trigger .icon-close.fa-solid::before { font-weight: 900 !important; }
  #ombuds-nav-trigger .icon-open { display: inline-block; }
  #ombuds-nav-trigger .icon-close { display: none; }
  #ombuds-nav-trigger.is-active .icon-open { display: none; }
  #ombuds-nav-trigger.is-active .icon-close { display: inline-block; }
}

@media (max-width: 991.98px) {
  #ombuds-nav-trigger { order: 1; margin-left: auto; }
  nav#ombuds-nav { 
  	order: 2; 
  	flex: 1 1 100%; 
  }
  nav#ombuds-nav .menu {
    display: block !important;
    margin: 0;
    padding: 8px 15px 50px 15px;
    list-style: none;
  }
  nav#ombuds-nav ul.menu > li {
    float: none;
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  nav#ombuds-nav ul.menu > li:last-child { border-bottom: 0; }
  nav#ombuds-nav ul.menu > li > a {
    display: block;
    width: 100%;
    padding: 14px 10px;
    font-size: 1.5rem;
    border: 0;
  }
  #ombuds-nav {
    background: #013152;
    border-top: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 6px 20px rgba(0,0,0,.15);
    overflow: hidden;
    max-height: 0;
    transition: max-height .3s ease;
  }
  #ombuds-nav.is-open { max-height: 60vh; }
  nav#ombuds-nav ul.menu li:not(.nav-btn) a::after { content: none; }
  nav#ombuds-nav ul.menu .nav-btn { margin: 10px 0 0; padding: 0; background: transparent; border: 0; }
  nav#ombuds-nav ul.menu .nav-btn a { display: block; color: #000; background-color: #fbc120; padding: 14px 12px; border-radius: 1px; }
  nav#ombuds-nav ul.menu .nav-btn:hover a { color: #fff; background-color: #006EB8; border-radius: 1px;  }
}


/* ==========================================
    FLEX PANELS
========================================== */

.flex-row {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	justify-content: space-between;
	display: flex;
	padding: 0 20px;
	flex-wrap: wrap;
	position: relative;
}
.flex-row:before,
.flex-row:after { clear: both; }
.flex-row.full {
    min-width: 100% !important;
	padding: 0;
}
.middle {
	align-self: center;
}
.btn-wrap {
	margin-top: 20px;
}
.alt-btn {
    color: #000 !important;
    font-size: 1.3rem;
	line-height: 1.3rem;
    text-transform: uppercase;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-weight: 700;
    text-decoration: none;
    background-color: #fbc120;
    padding: 10px 20px;
	transition: all .2s ease-in-out;
}
.alt-btn:hover {
    color: #fff !important;
    background-color: #006EB8;
}
.bg-white {background-color: #fff;}
.bg-gray {background-color: #eee;}
.bg-blue {background-color: #013152;}
.bg-light-blue {background-color: #006EB8;}
.bg-yellow {background-color: #fbc120;}

.bg-light-blue h1,
.bg-light-blue h2,
.bg-light-blue h3,
.bg-light-blue h4,
.bg-light-blue p,
.bg-light-blue li,
.bg-blue h1,
.bg-blue h2,
.bg-blue h3,
.bg-blue h4,
.bg-blue p,
.bg-blue li {
    color: #fff !important;
}
.bg-yellow h1,
.bg-yellow h2,
.bg-yellow h3,
.bg-yellow h4 {
    color: #013152 !important;
}
.bg-yellow p,
.bg-yellow li {
    color: #000 !important;
}
.flex-row.flex-header,
.flex-row.flex-header h2 {
	font-family: Georgia, Serif;
    font-size: 3.5rem;
    line-height: 3.5rem;
	font-weight: 300;
	margin-bottom: 10px;
    justify-content: flex-start;
}

.dot-pattern-fade {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-position: center;
  background-size: auto;
  opacity: .2;
  pointer-events: none;
  z-index: 0;
}

/* Keyframes */
@keyframes fadeUpHold {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInArrow {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pushHeadline {
  to {
    transform: translateX(20px);
  }
}


/* ------------------------------------------
    Accordion Panel 
------------------------------------------ */

.padding-on {
	padding: 40px 0 !important;
}
ul.accordion-list {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	list-style: none;
	padding: 0;
}

ul.accordion-list li {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 0 20px 0;
    margin: 0;
    cursor: pointer;
}
li.accordion-white {
    border-bottom: 1px solid #eee;
}
li.accordion-gray {
    border-bottom: 1px solid #fff;
}

ul.accordion-list li h3 {
	font-family: Georgia, Serif;
    font-size: 2.2rem;
    line-height: 2.2rem;
	font-weight: 300;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
div.answer {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 20px 0 0 0;
}
div.answer p {
	padding: 10px 0 0 0;
	margin: 0 0 15px 0;
}
ul.accordion-list .answer ol,
ul.accordion-list .answer ul {
	padding: 0 0 0 20px;
}
ul.accordion-list .answer ol li {
	padding: 0;
    border-bottom: none;
    list-style-type: auto;
    display: list-item;
}
ul.accordion-list .answer ul li {
    border-bottom: none;
	list-style-type: circle;
    display: list-item;
	margin: 0;
	padding: 0;
}
ul.accordion-list li h3:after {
    content: '\f055';
    font-size: 2.5rem;
    margin-left: 10px;
    font-family: 'Font Awesome 6 Pro';
    font-weight: 600;
    transition: transform 0.3s ease;
}
ul.accordion-list li.active h3:after {
    content: '\f056';
    transform: rotate(180deg);
}

@media screen and (max-width: 1024px) {
	.accordion-panel.flex-row.full {
		padding: 20px 0;
	}
	.flex-row.accordion-header,
	.flex-row.accordion-container {
		padding: 0 20px;
	}
}


/* ------------------------------------------
    BASIC CONTENT PANEL
------------------------------------------ */

.basic-content-panel.flex-row.full {
	text-align: left;
    display: flex;
    align-items: center;
}
.basic-content-panel-wrap {
    width: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.basic-content-panel-wrap li {
    list-style: disc;
    margin-left: 20px;
}
.basic-content {
	justify-content: flex-start;
}
.basic-content p {
	margin-bottom: 10px;
}


/* ------------------------------------------
    HERO PANEL
------------------------------------------ */

.flex-row.full.hero-panel {
	overflow: hidden;
	background-color: #eee;
}
.flex-row.full.hero-panel.hero-large {
	height: fit-content;
	min-height: 660px;
}
.flex-row.full.hero-panel.hero-medium {
	height: fit-content;
	min-height: 500px;
}
.flex-row.full.hero-panel.hero-small {
	height: fit-content;
	min-height: 500px;
}
.flex-row.hero-text-wrap {
    width: 100%;
    flex-direction: row;
	padding-top: 20px;
	padding-bottom: 20px;
	z-index: 3;
}
.hero-text {
    display: flex;
    flex: 1;
	justify-content: flex-start;
}

.hero-left {
	max-width: 790px;
	z-index: 1;
}
.hero-text h1 {
	font-size: 6rem;
	line-height: 6rem;
	font-family: Georgia, Serif;
    font-weight: 300;
	color: #fff;
	display: flex;
	gap: 1rem;
	z-index: 1;
	opacity: 0;
	animation: fadeUpHold 0.6s ease-out forwards;
	animation-delay: 0.2s;
	position: relative;
	padding-bottom: 20px;
}
.hero-text h2 {
	font-size: 3rem;
	line-height: 3.2rem;
	color: #fff;
	z-index: 1;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeSlideUp 0.6s ease-out forwards;
	animation-delay: 0.6s;
	padding-bottom: 20px;
}
.hero-text p {
	font-size: 2rem;
	line-height: 2.4rem;
	max-width: 900px;
	color: #fff;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeSlideUp 0.6s ease-out forwards;
	animation-delay: 0.9s;
    margin-bottom: 0;
    padding-bottom: 0;
}
.hero-text .btn {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeSlideUp 0.6s ease-out forwards;
	animation-delay: 1.2s;
	margin: 30px 0;
}
#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
    opacity: 1;
    object-fit: cover;
}
.hero-panel .controls {
	position: absolute;
	z-index: 3;
	bottom: 1em;
	right: 1em; 
}
.hero-panel .controls .playpause {
	padding: 1rem;
	border: none;
	background: rgba(0, 0, 0, 0.1);
	color: white;
	font-size: .65rem;
	min-width: inherit;
	width: auto; 
	z-index: 3;
}

.hero-video-wrap {
  position: relative;
}
.hero-video-wrap video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-img {
	position: absolute;
	background-size: cover;
	min-width: 100%;
    min-height: 100%;
	opacity: 1;
	top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
	background-position-x: right;
    background-position-y: center;
    background-repeat: no-repeat;
	z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 2;
}
	@media screen and (max-width: 1024px) {
		.flex-row.full.hero-panel.hero-large, 
		.flex-row.full.hero-panel.hero-medium,
		.flex-row.full.hero-panel.hero {
			height: fit-content;
			min-height: unset;
		}
		.flex-row.hero-text-wrap {
			padding: 40px;
		}
		.hero-left {
		    max-width: unset;
		}
		.hero-text h1 {
			font-size: 3.5rem;
			line-height: 3.5rem;
			color: #006EB8;
		}
		.hero-text h2 {
			font-size: 2.2rem;
			line-height: 2.2rem;
			color: #000;
		}
		.hero-text p {
			font-size: 1.6rem;
			line-height: 2rem;
			color: #000;
		}
		.hero-gradient-overlay {
			height: 0;
		}
		.hero-img {
	        position: unset;
	        max-height: 300px;
	        min-height: 300px;
		}
	}
	@media screen and (max-width: 680px) {
	    .flex-row.hero-text-wrap {
	        padding: 20px;
	    }
	}	
	
/* ------------------------------------------
    ICON REPEATER PANEL
------------------------------------------ */

section.flex-row.full.icon-panel {
  text-align: center;
  background-color: #013152;
  color: #fff;
  padding: 60px 0;
}

.icon-panel .flex-row {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.icon-panel h2 {
  font-size: 3rem;
  font-family: Georgia, Serif;
  font-weight: 300;
  color: #fff;
  margin-bottom: 30px;
}

.icon-slider {
    margin: 0 40px;
}
.icon-panel .slick-slide {
  opacity: 0;
  transform: translateY(14px);
}
.icon-panel .inview .slick-slide {
  animation: fadeUp 400ms ease-out forwards;
}

/* no stagger; all together */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* accessibility */
@media (prefers-reduced-motion: reduce) {
  .icon-panel .slick-slide,
  .icon-panel .inview .slick-slide {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.icon-panel .icon-item {
  text-align: center;
  padding: 0 20px;
}
.icon-item i {
    font-size: 5rem;
    color: #fbc120;
	margin-bottom: 20px;
}
.icon-panel h3 {
  margin: 0 0 10px 0;
  padding: 0;
  color: #fff;
}
.icon-panel p {
  color: #fff;
}
.icon-item a,
.icon-item a:link,
.icon-item a:visited {
  color: #fff;
  text-decoration: underline;
}
.icon-item a:hover,
.icon-item a:focus {
  color: #fff;
  text-decoration: none;
}

/* Slick arrows */
.icon-panel .slick-prev,
.icon-panel .slick-next {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.icon-panel .slick-prev { left: -50px; }
.icon-panel .slick-next { right: -50px; }

.icon-panel .slick-prev i,
.icon-panel .slick-next i {
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.icon-panel .slick-next.slick-arrow {
	top: 90px;
	margin-right: -40px;
	z-index: 1 !important;
}
.icon-panel .slick-prev.slick-arrow {
	top: 90px;
	margin-left: -40px;
	z-index: 1 !important;
}
.icon-panel .slick-dots {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .icon-panel .slick-prev { left: -30px; }
  .icon-panel .slick-next { right: -30px; }
}

@media (max-width: 680px) {
  .icon-panel .slick-prev,
  .icon-panel .slick-next {
    width: 30px;
    height: 30px;
  }
  .icon-panel .slick-prev i,
  .icon-panel .slick-next i {
    font-size: 18px;
  }
}

/* ------------------------------------------
    SPACER PANEL
------------------------------------------ */

.spacer-panel {
	height: 60px;
}

/* ------------------------------------------
    SPLIT HERO PANEL
------------------------------------------ */

.split-hero-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "content image";
	min-height: 500px;
	flex: 1;
}
.split-hero-container.photo-left{
	grid-template-areas: "image content";
}
	.split-hero-content {
		grid-area: content;
		padding: 50px;
	}
	.split-hero-image {
		grid-area: image;
		min-height: 400px;
		background-size: cover;
		background-position: top center;
		background-repeat: no-repeat;
		width: 100%;
		height: 100%; 
	}

.split-hero pre {
    color: #006EB8;
    font-family: 'Nunito Sans', Arial, sans-serif;
	margin-bottom: 10px;
}

.split-hero h1 {
    font-size: 4rem;
    font-weight: 500;
    font-family: Georgia, Serif;
	text-align: left;
    width: 100%;
    margin-bottom: 10px;
}
.split-hero ul {
    list-style-type: disc;
	margin-left: 20px;
}
.split-hero li {
    text-align: left;
	margin-bottom: 8px;
}

	@media screen and (max-width: 1024px) {
	  .split-hero-container,
	  .split-hero-container.photo-left {
	    grid-template-columns: 1fr;
	    grid-template-areas:
	      "image"
	      "content";
		  gap: 5px;
	  }
		.split-hero-modal-tile-grid {
		    grid-template-columns: 1fr;
		}	
		.split-hero-content {
			margin: 20px;
			padding: 0;
		}

	}
	@media screen and (max-width: 680px) {
		.tile-info h1 {
		    font-size: 1.6rem;
		    line-height: 1.6rem;
		}
			.split-hero-image {
				min-height: 300px;
			}

	}
		
/* ------------------------------------------
    MULTI COLUMN CONTENT PANEL
------------------------------------------ */

.flex-row.full.multicol-content-panel {
	padding: 60px 40px;
}
.multicol-content {
	display: flex;
	gap: 80px;
  --divider-color: #eee;
  --divider-width: 1px;
}

.multicol-content > * {
  position: relative; 
}
.multicol-content > * + *::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;
  width: var(--divider-width);
  background: var(--divider-color);
  pointer-events: none; 
}

.multicol-content-text {
	flex: 1;
}
.multicol-content h2 {
	font-size: 3.5rem;
	line-height: 3.6rem;
	font-family: Georgia, Serif;
    font-weight: 300;
}
.multicol-content h3 {
	font-size: 2.5rem;
    font-weight: 500;
    margin: 0;
	padding: 15px 0 5px 0;
}
.multi-text-container {
/*	margin-bottom: 20px;*/
}
.multicol-content p {
    margin: 0;
	padding: 0 0 15px 0;
}
.multicol-content ul {
    margin-left: 20px;
	margin-bottom: 0;
	padding: 0 0 15px 0;
}
.multicol-content li {
    text-align: left;
    list-style-type: disc;
	padding: 0;
}
.multicol-content-img {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeSlideUp 0.6s ease-out forwards;
	animation-delay: 0.6s;
}

.flex-contact-form {
	background-color: #013152;
	padding: 30px;
	border-radius: 8px;
	min-width: 450px;
	max-width: 450px;
	max-height: fit-content;
}
.flex-contact-form p,
.flex-contact-form a {
	color: #fff;
}
.flex-contact-form h2 {
	font-size: 3.5rem;
    font-weight: 500;
	font-family: Georgia, Serif;
	color: #fff;
}
.flex-contact-form a:hover {
	color: #fff;
	text-decoration: underline;
}
div#gform_wrapper_6 {
	margin-top: 0 !important;
}
#gform_fields_6 input {
	min-height: 50px;
}

	@media screen and (max-width: 1024px) {
		.flex-row.full.multicol-content-panel {
			padding: 40px 20px;
		}
		.multicol-content {
		    max-width: 100%;
			flex-direction: column;
			gap: 40px;
		}	
		.flex-contact-form {
			background-color: #013152;
			padding: 30px;
			border-radius: 8px;
			min-width: 100%;
			max-width: 100%;
		}
		.multicol-content h2 {
			font-size: 3rem;
			line-height: 3.2rem;
		}
		.multicol-content h3 {
			font-size: 2.2rem;
		}
	}
	@media screen and (max-width: 680px) {
		.flex-row.full.multicol-content-panel {
			padding: 40px 0;
		}
	}
/* ------------------------------------------
    TEAM PANEL (Feed) — merged with slider
------------------------------------------ */

.flex-row.full.team-panel {
  padding: 40px 0;
}
.flex-row.team-wrap.has-slider {
    padding: 0 40px;
}
.team-wrap h2 {
  margin-bottom: 20px;
  width: 100%;
  margin: auto;
  font-size: 3rem;
}
.team-group {
  margin-bottom: 40px;
}



/* GRID */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* TILE */
.team-tile {
  display: block;
  text-align: left;
  transition: opacity 0.3s ease;
  color: inherit;
  text-decoration: none;
}
.team-tile img {
  width: 100%;
  display: block;
}
.team-tile:hover {
  opacity: 0.7;
  text-decoration: none;
}
.team-tile h4 {
  font-size: 1.8rem;
  line-height: 1.8rem;
  margin-bottom: 4px;
  font-weight: normal;
}
.team-tile-wrap {
  margin: 10px 0;
}

/* BREAKPOINTS (grid) */
@media screen and (max-width: 1140px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 760px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* SLIDER VARIANT (Slick) */
.team-slider {
  width: 100%;
  opacity: 0;
}
.team-slider.slick-initialized { opacity: 1; transition: opacity .2s ease; }
.team-slider:not(.slick-initialized) .team-slide { display: none; }
.team-slider .team-slide {
  padding: 0 10px;
}
.team-slider .team-tile img {
  width: 100%;
  display: block;
}
.team-slider .slick-list {
  margin: 0 -10px;
}
.team-slider .slick-arrow {
  z-index: 2;
}
.team-slider .slick-prev,
.team-slider .slick-next {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.team-slider .slick-prev { left: -50px; }
.team-slider .slick-next { right: -50px; }
.team-slider .slick-prev i,
.team-slider .slick-next i {
  font-size: 24px;
  color: #fff;
  line-height: 1;
}
.team-slider .slick-next.slick-arrow {
	top: 120px;
	margin-right: -50px;
  z-index: 1 !important;
}
.team-slider .slick-prev.slick-arrow {
	top: 120px;
	margin-left: -50px;
  z-index: 1 !important;
}
.icon-panel .slick-dots {
  display: none !important;
}

/* ------------------------------------------
    NEWS PANEL (Feed)
------------------------------------------ */

.flex-row.full.news-feed-panel {
  background-color: #fff;
  padding: 60px 0;
}
.news-feed-wrapper {
  width: 100%;
}
.news-feed-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  align-items: stretch; 
}

@media (min-width: 768px) {
  .news-feed-articles {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.news-feed-item {
  display: flex; 
  flex-direction: column;
  justify-content: flex-start;
  text-decoration: none;
  background: #eee;
  padding: 24px 16px;
  border-left: 4px solid #f9c200;
  transition: background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.news-feed-item:hover {
  background: #eee;
  border-color: #013152;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  outline: none;
}

.news-feed-item date,
.news-feed-item span {
  font-size: .85rem;
  line-height: 1.2;
  color: #6b7280;
  margin-bottom: 4px;
}
 

.news-feed-item .title {
  font-size: 2rem;
  line-height: 2.2rem;
}

@media (max-width: 360px) {
  .news-feed-item {
    padding: 12px;
  }
  .news-feed-item .title {
    font-size: .95rem;
  }
}
