/* Charter Oak Styles */

/* TYPOGRAPHY */

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.75;
	color: #222222;
	padding-top: 50px;
}

body.fixed {
	padding-top: 50px;
}

body.fixed .sticky {
    position: absolute;
    top:0; left:0;
    width: 100%;
	z-index: 1000; 
}

/* issue #54 */

body.fixed .search {
	margin-top: 50px !important;
}

.no-scroll {
    overflow: hidden !important;
    height:100% !important;
   /* when modal active */
    touch-action: none;
    -webkit-overflow-scrolling: none;
    overflow: hidden;
    /* Other browsers */
    overscroll-behavior: none;	 
 }

.overlay {
	height: 100%;
	width: 100%;
	position: fixed;
	background: rgba(0,0,0,.85);
	z-index: 300;
	opacity: 0;
	display: none;
}

body.no-scroll .overlay {
	display:block;
	opacity: 1;
}

.collapsing {
-webkit-transition: height .2s ease;
-o-transition: height .2s ease;
transition: height .2s ease;
}

.navbar-collapse {
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

.collapsing {
  overflow-y: hidden;
  overflow-x: hidden;
}

.form-control:focus {
  border-color: inherit;
  -webkit-box-shadow: none;
  box-shadow: none;
}

h1 {
	font-size: 42px;
	font-weight: 400;
	line-height: 28px;
	/*color: rgba(0, 0, 0, 0.87);*/
}

h2 {
	font-size: 18px;
  	font-weight: 700;
 	line-height: 24px;
 	/*color: rgba(0, 0, 0, 0.87);*/
	margin: 40px 0 10px 0;
}

h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 23px;
  /*color: rgba(0, 0, 0, 0.87);*/
}

h4 {
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  /*color: rgba(0, 0, 0, 0.87);*/
}

h5 {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  /*color: rgba(0, 0, 0, 0.87);*/
}


.page-content a {
	color: #0148a7;
	text-decoration: underline;
}

/*.page-content button, .page-content a.btn {
	color: #ffffff;
}*/

/*.card button {
	color: #ffffff;
}*/

button.close span {
	color: #495057;
}

a:hover {
	text-decoration: underline;
}

a{
 /** overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all !important;
  display: inline-block;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens:auto !important;
  /*white-space: pre-wrap !important;*/
}

/*CHOA-1, CHOA-15 accessibility*/
a:focus,
button:focus,
btn:focus { 
	outline: 3px solid #6a104f !important;
	box-shadow: none !important;
}

ul li {
	margin-bottom: 5px;
}


p.lead {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #0148a7;
  margin: 35px 0;
}

/** top bar **/

#top-banner {
	background-color: #f4f6f9;
}

ul.inline-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

ul.inline-list li {
	display: inline-block;
	margin-right: 10px;
}

ul.inline-list li:last-child {
	margin-right: 0;
}

ul.inline-list.top-bar a {
	font-size: 14px;
	color: #5e646a;
}

ul.inline-list.top-bar a:hover {
	color: #2d6394;
	text-decoration:  none;
}

ul.inline-list.top-bar li {
	padding: 10px 20px;
	margin-bottom: 0;
	float: right;
}

ul.inline-list.top-bar li span,
.site-footer span {
	margin-right: 10px;
}

ul.inline-list.top-bar li:first-child {
	margin-right: 0;
}


ul.inline-list.top-bar li:first-child {
	background-color: #e3e6eb;
}

#main-header {
	padding: 20px 0;
	background: #fff;
	transition: transform 500ms ease-in-out;
	transform-origin: left top
}

#main-header .ca-logo-lrg {
	transition: transform 500ms ease-in-out;
	transform-origin: center center;
}

body.fixed #main-header {
	padding: 10px 0;
}


body.fixed #main-header .ca-logo-lrg {
	transform: scale(.8);
}

.info-buttons {
	padding-top: 20px;
	transition: transform 500ms ease-in-out;
}

body.fixed .info-buttons {
	padding-top: 10px;
}


.ca-button {
	padding: 10px 30px;
	border-radius: 26px;
	min-width: 185px;
	margin-right: 10px;
	text-align: center;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	display: inline-block;
}

.ca-button.small {
    padding: 8px 19px;
    border-radius: 26px;
    min-width: 52px;
    margin-right: 0px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 20px;
    display: inline-block;
}

.ca-button:hover {
	color: #fff;
	text-decoration:  none;
}

/**rebrand 7-9-21-begin**/
.ca-button.navy {
	background-color: #001f48;
	color: #ffffff;
}

.ca-button.navy:hover,
.ca-button.blue:hover {
	text-decoration:  none;
	background: #093a7b;
}
/**rebrand 7-9-21-end**/
.ca-button.dark-blue {
	background-color: #001f48;
	color: #ffffff;
}

.ca-button.dark-blue:hover,
.ca-button.blue:hover {
	text-decoration:  none;
	background: #093a7b;
}

.ca-button.blue {
	background-color: #2d6394;
	color: #ffffff;
}
/**rebrand 7-9-21-begin**/
.ca-button.bright-blue {
	background-color: #146ef5;
	color: #ffffff;
}

.ca-button.bright-blue:hover {
	background:  #418dff;
}
/**rebrand 7-9-21-end**/
.ca-button.red {
	background-color: #146ef5;
	color: #ffffff;
}

.ca-button.red:hover {
	background:  #418dff;
}

.ca-button.white {
	background-color: #fff;
}

.ca-button.shallow {
	border-radius: 4px;
	margin-top: 20px;
}

.ca-button.single {
	margin-right: 0;
}

.ca-button.mobile {
	width: 100%;
	max-width: 95%;
	font-size: 16px;
	margin: 5px;
}

.ca-button.mobile.dark-blue {
	margin-bottom: 20px;
}

span.fa-search,
span.fa-times{
  display: inline-block;
  padding: 0.5em 0.2em;
  font-size:  18px;
  margin-top: 8px;
}

button .fa-search {
	margin-top: 0;
}

/* Navigation */

.main-menu .navbar {
	padding: 0 0;
}

.container.main-menu {
	max-width: 100%;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

#main-nav {
	background-color: #fff;
	padding-top: 0px;
	position: fixed;
	top: 0;
	z-index: 1000;
	width: 100%;	
}

#navbar {
	max-width: 100%; 
/* 	height: 500px;
	max-height: 700px; */
	width: 100%;
	/*overflow-y: scroll;*/
	-webkit-overflow-scrolling:touch;
	cursor: pointer;
}

.dropdown-item {
	display:inline-block;
	box-sizing: border-box;
}

.megamenu-li {
	position: static;
}

.megamenu-li.show,
.nav-item.dropdown.show{
	background-color: #f8fdff;
}

.megamenu-li.show .nav-link, .nav-item.dropdown.show .nav-link {
	background-color: #f8fdff !important;
	color: #222222;
}

.nav-link {
	display: inline-block !important;
}

/*CHOA-15 accessibility*/
button.nav-link {
	border: none;
}

.megamenu {
	position: absolute;
	width: 100%;
	left: 0;
	right: 0;
	padding: 30px;
	background: #f1f1f1;
	margin-top: 0;
	color: #306400;
}

.navbar-nav.main {
	background: #f8fdff;
	padding: 0 20px 0 20px;
}

.navbar-nav .dropdown-menu {
	padding: 10px;
	color: #222222;
	background: #f8fdff;
	margin-top: 0;
	width: auto !important;
	overflow: visible;
	border: none !important;
}

.navbar-nav .dropdown-menu .row {
	-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;         /* OLD - Firefox 19- */
	width: 100%;               /* For old syntax, otherwise collapses. */
	-webkit-flex: 1;          /* Chrome */
	-ms-flex: 1;              /* IE 10 */
	flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */	
}

.megamenu a,
.navbar-nav .dropdown-menu a {
	color: #222222;
	font-weight: 600;
}
.dropdown-menu {
	border-radius: 0;
}

.navbar {
	padding-top: 0;
	padding-bottom: 0;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus{
	color: #001f48;
	font-size: 20px;
	background-color:#f8fdff;
	padding-left: 10px;
}
/*Nav was not totally visible in mobile - 4/30/20*/
/*.navbar-nav .nav-link:first-child {
	padding-top: 20px;
}*/

.dropdown-item {
	padding: .25rem 0;
}

.dropdown-item:hover {
	background: none;
	color: #fff;
	text-decoration: underline;
}

.menu-heading {
	font-weight: 600;
	display: block;
	font-size: 20px;
	color: #222222;
	line-height: 40px;
	margin-bottom: 10px;
}

.menu-heading.inline {
	margin-top: 20px;
}

.menu-callout {
  border-radius: 8px;
  border: solid 1px #989ea2;
  background-color: #ffffff;
  text-align: center;
	padding: 30px;
}

.menu-callout .lead {
	color: #fb591d;
	font-size: 18px;
	line-height: 24px;
	font-weight: 700;
}

.menu-callout .number {
	color: #19456d;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
}

.circle-icon {
    background: #000;
    padding:10px 12px;
    border-radius: 100%;
	color: #fff
}

.navbar-brand-charter-oak {
    font-family: "Adobe Garamond Pro",Garamond;
}

.navbar-brand-state-college {
    font-family: "Adobe Garamond Pro",Garamond;
    text-transform: uppercase;
    font-size: 0.75em;
}

.navbar-light .navbar-toggler {
	border-color: rgba(0, 0, 0, 0.0);
	padding: 0.25rem 0.5rem;
}

#navbar {
	background-color: #f1f1f1;
	color: #306400;
	padding: 0;
}

.navbar-brand img {
	width: 175px;
}

.small-menu {
	margin-left: 2.2rem;
}

.mobile-first-item {
	/*margin-top: 20px;*/
	padding-top: 10px;
	position: relative;
}

.mobile-first-item a:before {
	position: absolute;
	content: '';
	border-top: 1px solid #000;
	width: 94%;
	transform: translateX(-5%);
	top: 0;
	left: 7%;
}

.mobile-only a {
	color: #222222 !important;
	font-size: 16px !important;
}

.dropdown-toggle::after {
	border: none !important;
	font: normal normal normal 14px/1 "Font Awesome 5 Pro";
	content: "\f078"!important; 
	float: right !important;
	margin-right: 10px;
	margin: .7rem 25px 0 10px;
	color: #5e646a;
}

li.nav-item.show a.dropdown-toggle::after {
content: "\f077"!important 
}

.carousel-control-prev, .carousel-control-next {
	width: 0%;
	opacity: 1;
}

.search-button,
.search-button-mobile {
	cursor: default;
}

.search-btn-header {
	border: 1px solid #989ea2;
	background: white;
	padding: 10px;
	border-radius: 50%;
}

.search {
    padding: 20px 0;
    display: none;
    position: fixed;
    width: 100%;
    left: 0;
    z-index: 1000;
	background: #fff;
	margin: auto;
}

.search .fa-search,
.earch .fa-times {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
}

.search #search-input::placeholder {
  color: #fff;
}

.search #search-input,
.search .btn
 {
	background: #001f48;
	color: #fff;
	border: 0;
	padding: 0;
	 height: 50px;
	 padding-left: 15px;
}

.search-box {
    background-color: #001f48;
	color: #fff;
    width: 100%;
    border-radius: 25px;
    padding: 0px 20px;
    height: 50px;
}

#search-input:focus {
	outline: none;
}

#mycarousel {
	margin-top: 10px;
}

#mycarousel .carousel-control-prev, 
#mycarousel .carousel-control-next {
	width: 5%;
}

#mycarousel .fa-angle-left,
#mycarousel .fa-angle-right {
	font-size: 48px;
}

#mycarousel .carousel-caption {
	padding: 20px 10px 30px 10px;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 10;
	color: #fff;
	font-size: 14px;
	line-height: 21px;
	text-align: center;
	background-color: #0148a7;
	position: relative;
}

#mycarousel .carousel-inner {
    position: relative;
    width: 100%;
}

#mycarousel .carousel-indicators {
	bottom: 0;
}	

#mycarousel .carousel-caption h2 {
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	margin-top:  10px;
}

#main-slider .carousel-control-prev {
	left: 50px !important;
}

#main-slider .carousel-control-next {
	right: 50px !important;
}


.carousel-control-prev .far,
.carousel-control-next .far {
	color: #444444;
	font-size: 48px;
	background-color: #EDFCFC;
	padding: 4px;
}

#newsCarousel a h3 {
	font-size: 16px;
	line-height: 23px;
	color: #0148a7;
}

#newsCarousel {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 20px;
}


.under-slider {
	background-color: #fff;
	color: #222;
	padding: 30px;
	margin: 0;
}

.under-slider h2 {
	color: #222;
	margin-bottom: 20px;
	text-align: center;
}

.under-slider ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
	text-align: center;
	width: 100%;
}

.site-footer {
	background-color: #002f6c;
	color: #fff;
	padding: 50px 0;
	margin-top: 30px;
	font-size: 14px;
}

.site-footer h3 {
	color: #fff;
	margin-bottom: 15px;
}

.site-footer .address {
	border-right: none;
	margin-bottom: 30px;
	padding-bottom: 20px;
}

.site-footer .address:after {
  position: absolute;
  content: '';
  border-bottom: 1px solid #fff;
  width: 95%;
  transform: translateX(-4%);
  bottom: -15px;
  left: 7%;
}

.site-footer .contact {
	padding-left: 15px;
}

.site-footer .site-info {
	font-size: 12px;
}


.site-footer span.fa-instagram,
.site-footer span.fa-youtube,
.site-footer span.fa-linkedin-in,
.site-footer span.fa-twitter,
.site-footer span.fa-facebook-f {
  display: inline-block;
  border-radius: 50%;
  /*box-shadow: 0px 0px 2px #fff;*/
  padding: 0.5em 0.5em;
  font-size:  14px;
}

.site-footer span.fa-facebook-f {
	padding: 0.5em 0.7em;
}


.site-copyright {
	padding: 15px 0;
	background-color: #2b2b2b;
	color: #fff;
	font-size: 12px;
	line-height: 16px;
}

.copyright {
	text-align:  center;
}

.footer-links {
	text-align: center;
}

ul.footer-menu {
	display: inline-block;
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.footer-menu li {
	display: inline-block;
	padding: 0 10px;
	border-right: 1px solid #595959;
}

ul.footer-menu li:last-child {
	border-right: none;
}

ul.footer-menu li a {
	color: #fff;
}

.carousel-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FFF;
  border: 1px solid #222;
}

.carousel-indicators .active {
    background-color: #fff;
}

.carousel-indicators .active {
    background-color: #000;
}

.carousel-indicators {
    bottom: -30px;
}

.grey {
	background: #f4f6f9;
	color: #5e646a;
	padding: 0 30px 30px 30px;
	margin-bottom: 30px;
}

.message {
	margin-top: 30px;
	margin-bottom: 10px;
	font-size: 16px;
	color: #5b507a;
	font-weight: 600;
}

.message a {
	margin-left: 10px;
	color: #2d6394;
	font-size: 14px;
	font-weight: 700;
}


/** section headings **/

h2.section-heading {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.87);
  line-height: 24px;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 15px;
}

.grey h2.section-heading::before {
	/*left: -30px;*/
}

.grey h2.section-heading {
	margin-left: -30px;
}

h2.section-heading::before {
  content: "";
  display: block;
  border-bottom: 4px solid #002f6c;
  width: 215px;
  position: relative;
  top: -15px; 
}

.grey .carousel-control-prev, .grey .carousel-control-next {
    position: absolute;
    bottom: auto;
	top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 10px;
    color: #fff;
    text-align: center;
    opacity: 1;
}
.grey .carousel-control-prev {
    right: 40px;
    top: -60px;
	left: auto;
}

.grey .carousel-control-next {
    right: -20px;
    top: -60px;
}

.grey .fas {
	font-size: 32px;
	color: #19456d;
}

.grey .carousel-indicators {
    top: 350px;
}

#testimonials {
	font-size: 16px;
	line-height: 24px;
	color: #5e646a;
}

#testimonials .carousel-item.active {
	display:  inline-block !important;
	vertical-align: middle;
}

.logos {
	margin: 40px 0;
}

.copyright {
	margin-bottom: 10px;
}

@media (max-width: 768px) {
    .news .carousel-inner .carousel-item > div {
        display: none;
    }
    .news .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.news .carousel-inner .carousel-item.active,
.news .carousel-inner .carousel-item-next,
.news .carousel-inner .carousel-item-prev {
    display: flex;
	align-items: flex-start;
	background:  #fff;
}

/* display 3 */
@media (min-width: 768px) {
    
    .news .carousel-inner .carousel-item-right.active,
    .news .carousel-inner .carousel-item-next {
      transform: translateX(33.333%);
    }
    
    .news .carousel-inner .carousel-item-left.active, 
    .news .carousel-inner .carousel-item-prev {
      transform: translateX(-33.333%);
    }
}

.news .carousel-inner .carousel-item-right,
.news .carousel-inner .carousel-item-left{ 
  transform: translateX(0);
}

/* sub page styles */

.page-title {
	padding-top: 20px;
	padding-bottom: 20px;
	background: rgb(0,31,72);
	background: -moz-linear-gradient(360deg, rgba(0,31,72,1) 0%, rgba(1,72,167,1) 100%);
	background: -webkit-linear-gradient(360deg, rgba(0,31,72,1) 0%, rgba(1,72,167,1) 100%);
	background: linear-gradient(360deg, rgba(0,31,72,1) 0%, rgba(1,72,167,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001f48",endColorstr="#0148a7",GradientType=1); 
	margin-bottom: 40px;

}

.page-title h1 {
	font-size: 24px !important;
	line-height: 28px !important;
	color: #ffffff !important;
	font-weight: 400 !important;
	text-align: center;
}

.breadcrumbs {
	margin-bottom: 30px;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #222222;
    content: ">";
	font-size: 12px;
	line-height: 24px;
}

.breadcrumbs ol.breadcrumb {
    padding: 0;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #fff;
    border-radius: 0;
}

.breadcrumbs li.breadcrumb-item a,
.breadcrumbs li.breadcrumb-item.active {
	font-size: 12px;
	line-height: 24px;
	color: #2d6394;
	line-height: 32px;
}

.breadcrumbs li.breadcrumb-item.active {
	line-height: 32px;
	color: #222222 !important;
}

h2.page-intro {
	font-size: 16px;
	line-height: 24px;
	color: #306400;
	margin: 30px 0;
	font-weight:400;
}

h2.page-intro.green {
	color: #306400;
}

h2.page-intro.no-header-img {
	margin-top: 0 !important;
}


.small-text {
	font-size: 12px;
	line-height: 20px;
}

.page-callout {
	font-size: 14px;
	line-height: 24px;
	color: rgba(0, 0, 0, 0.87);
	font-weight: 600;
	padding: 30px;
	background-color: #f7eede;
	margin: 40px 0;
}

.sidebar-section {
	padding: 30px 20px 30px 20px;
	border-radius: 8px;
	border: solid 1px #989ea2;
	background-color: #ffffff;
	margin-bottom: 20px;
}

.sidebar-section:first-child {
	margin-top: 30px;
}

.sidebar-section h3.section-title {
	font-size: 18px;
	line-height: 23px;
	color: rgba(0, 0, 0, 0.87);
	margin-bottom: 20px;
}

.sidebar-section img {
	margin-bottom: 20px;
}

ul.section-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.section-menu li {
	padding-bottom: 0;
	border-bottom: 1px solid #e3e6eb;
}

ul.section-menu li:last-child {
	border-bottom: none;
}

ul.section-menu li a {
	font-size: 14px;
	line-height: 45px;
	color: #225b8f !important;
	font-weight: 600;
}

ul.section-menu li:hover {
	background: #f4f6f9;
}

ul.section-menu li:hover a {
	margin-left: 10px;
	text-decoration: none !important;
}	


.sidebar-section span[class*=" fa-"] {
	margin-right: 10px;
	margin-bottom: 10px;
	color: #009ca6;
}

a span[class*=" fa-"] {
	margin-right: 10px;
}

span.fa-edit {
	color: #19456d;
}

a.strong-link {
	font-weight: 600;
}

ul.striped-list {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 24px;
}

ul.striped-list li {
	padding: 10px 20px;
}

ul.striped-list li:nth-child(odd) {
	background: #f4f6f9;
}

.accordion {
	margin: 40px 0;
}

.accordion .card-header:after {
    font-family: 'Font Awesome 5 Pro';  
    content: "\f106";
    float: right;
	font-weight: 400 !important; 
}
.accordion .card-header.collapsed:after {
    content: "\f107";
	font-weight: 400 !important; 
}

.accordion .card {
    background-color: #fff;
	border: 0;
    border-radius: 0;
}

.accordion .card-header:first-child {
    border-radius: 0;
	border-bottom: none;
}


.accordion .card-header {
    padding: 10px 20px;
    margin-bottom: 0;
    background-color: #FFF;
	border-top: 1px solid rgba(0, 0, 0, 0.125);
	border-left: none;
	border-right: none;
	text-align: left;
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
	color: #222222 !important;
}

.accordion .card-header:hover {
	text-decoration: none !important;
}

a.card-header span.card-title {
	color: #222222 !important;
}

.accordion .card-header:last-child {
	border-bottom: 2px solid rgba(0, 0, 0, 0.125) !important;
}


.accordion .card-header a.card-title {
	color: rgba(0, 0, 0, 0.87) !important;
}

.cta {
	padding: 30px;
	position:relative;
	width: 100%;
	overflow:hidden;
}

.cta.blue {
	background: #449dd1;
}

.cta .ca-button {
	float:none;
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	margin: 0 0 20px 0;
}

.cta p {
	float: none;
	text-align:center;
	width: 100%;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
}

.social-icons a {
	color: #fff;
}


.mobile-logo {
	margin-left: 10px;
}

#main-slider.container,
#under-slides.container {
	width: 100%;
	padding: 0 !important;
	max-width: 100%;
}


/*
####################################################
M E D I A  Q U E R I E S
####################################################
*/

/*
::::::::::::::::::::::::::::::::::::::::::::::::::::
Bootstrap 4 breakpoints
*/

/* 
Extra small devices (portrait phones, less than 576px) 
No media query since this is the default in Bootstrap because it is "mobile first"
*/


/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) { 

.navbar-brand img {
	width: 245px;
} 

}

/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (min-width: 768px) { 

	.under-slider {
		background-color: #5e646a;
		color: #fff;
		padding: 30px;
		margin: 0 0 30px 0;
	}

	.under-slider h2 {
		color: #fff;
		font-size: 20px;
		line-height: 19px;
		text-align: center;
		margin-bottom: 20px;
	}

	.page-title {
		padding-top: 30px;
		padding-bottom: 30px;	
	}
	
	.page-title h1 {
		font-size: 28px !important;
		line-height: 28px !important;
		color: #ffffff !important;
		font-weight: 400 !important;
		text-align: center;
	}
	
	h2.page-intro {
		font-size: 24px;
		line-height: 36px;
		color: #306400;
		margin: 50px 0;
		font-weight:400;
	}

	body {
		font-size: 16px;
	}
	
	.small-text {
		font-size: 14px;
		line-height: 24px;
	}
	
	.page-callout {
		font-size: 16px;
		line-height: 24px;
		color: rgba(0, 0, 0, 0.87);
		font-weight: 600;
		padding: 30px;
		background-color: #f7eede;
		margin: 40px 0;
	}
	
	.sidebar-section {
		padding: 50px 40px 60px 40px;
		border-radius: 8px;
		border: solid 1px #989ea2;
		background-color: #ffffff;
		margin-bottom: 30px;
	}
	
	.sidebar-section:first-child {
		margin-top: 30px;
	}
	
	.sidebar-section h3.section-title {
		font-size: 18px;
		line-height: 23px;
		color: rgba(0, 0, 0, 0.87);
		margin-bottom: 20px;
	}
	
	ul.section-menu {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	
	ul.section-menu li {
		padding-bottom: 0;
		border-bottom: 1px solid #e3e6eb;
	}
		
	ul.section-menu li:last-child {
		border-bottom: none;
	}
	
	ul.section-menu li a {
		font-size: 16px;
		line-height: 45px;
		color: #225b8f !important;
		font-weight: 600;
	}
	
	#mycarousel .carousel-caption {
		position:absolute;
		padding: 10px 0 30px 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 10;
		color: #fff;
		font-size: 14px;
		line-height: 21px;
		text-align: center;
  		background-color: rgb(1, 72, 167, 0.8);
	}

	.carousel-indicators {
		bottom: -30px;
	}	

	#mycarousel .carousel-caption h2 {
		color: #fff;
		font-size: 24px;
		line-height: 24px;
	}

	.cta p {
		float: none;
		text-align:center;
		width: 100%;
		margin: 0;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600;
	}
	
	.site-footer .address {
		border-bottom: none;
		border-right: 1px solid #fff;
	}
	
	.site-footer .address:after {
		border-bottom: none;
	}
		
 	.site-footer .contact {
		padding-left: 70px;
	}
	
	.grey h2.section-heading {
		margin-left: -0;
	}
	
	.grey h2.section-heading::before {
		left: -30px;
	}
	
	.grey .carousel-control-prev {
		right: 70px;
		top: -60px;
		left: auto;
	}
	
	.grey .carousel-control-next {
		right: 10px;
		top: -60px;
	}
	
	
	
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
	
	body {
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		font-size: 16px;
		line-height: 24px;
		color: #222222;
		padding-top: 0;
	}	
	
	h1 {
		font-size: 42px;
		font-weight: 400;
		line-height: .86;
		/*color: rgba(0, 0, 0, 0.87);*/
	}

	h2 {
		font-size: 24px;
		font-weight: 700;
		line-height: 1.25;
		/*color: rgba(0, 0, 0, 0.87);*/
		margin: 20px 0 10px 0;
	}

	h3 {
	  font-size: 18px;
	  font-weight: 700;
	  line-height: 1.28;
	  /*color: rgba(0, 0, 0, 0.87);*/
	}

	h4 {
	  font-size: 16px;
	  font-weight: 700;
	  line-height: 1.19;
	  /*color: rgba(0, 0, 0, 0.87);*/
	}

	h5 {
	  font-size: 14px;
	  font-weight: 700;
	  line-height: 1.29;
	  /*color: rgba(0, 0, 0, 0.87);*/
	}
	

	.dropdown-toggle::after {
		font-weight: 800;
		content: "\f0d7"!important; 
		margin: .3rem 10px 0 5px;
	}
	
	li.nav-item.show a.dropdown-toggle::after {
		content: "\f0d8"!important 
	}


   #main-nav {
    background-color: #002f6c;
	z-index: 1000;
	} 

	.megamenu {
		position: absolute;
		width: 100%;
		left: 0;
		right: 0;
		padding: 30px;
		background: #001f48;
		margin-top: 0;
		color: #fff;
	}
	
	.container.main-menu {
		max-width: 960px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	
	
	#navbar {
		background-color: #002f6c;
		color: #fff;
		padding: 0px;
		height:auto;
		max-height: 700px;
		width: 100%;
		overflow-y:unset;
		-webkit-overflow-scrolling:touch; 

		
	}
	
	
	
	.navbar-light .navbar-nav .nav-link,
	.navbar-light .navbar-nav .nav-link:hover,
	.navbar-light .navbar-nav .nav-link:focus{
		color: #fff;
		font-size: 16px;
		background-color:#002f6c;
		padding: 20px 10px;
		font-weight: 600;
	}
	
	.navbar-light .navbar-nav {
		background-color: #002f6c;
	}
	
	.navbar-nav .dropdown-menu {
		padding: 30px;
		color: #fff;
		background: #001f48;
		margin-top: 0;
		z-index: 1100;
		overflow: visible;
		width: auto !important;
	}
	
	/*CHOA-10 accessibility old #4e78b1*/
	.dropdown-toggle::after {
		color: #abcfff !important;
	}
	
	
	
	#mycarousel {
		margin-top: 30px;
	}
	

	
	#mycarousel .carousel-caption h2 {
		font-size: 32px;
		line-height: 43px;
		color: #fff;
	}
	
	#mycarousel .carousel-caption {
		position:absolute;
		padding: 10px 0 30px 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 10;
		color: #fff;
		font-size: 18px;
		line-height: 21px;
		text-align: center;
  		background-color: rgb(1, 72, 167, 0.8);
	}

	.carousel-indicators {
		bottom: 0;
	}	

	
	
	#main-nav {
		padding-top: 0px;
	}
	
	.megamenu-li.show .nav-link, .nav-item.dropdown.show .nav-link {
		background-color: #001f48 !important;
		color: #fff;
	}
	
	.nav-item.dropdown.show .nav-link:after {
		color: #fff !important;
	}	
	
	.menu-heading {
		font-weight: 600;
		display: block;
		font-size: 20px;
		color: 
		#fff;
		line-height: 40px;
		margin-bottom: 10px;
	}
	
	.megamenu a, .navbar-nav .dropdown-menu a {
		color: #fff;
	}
	
	.menu-heading {
		color: #fff;
	}
	
	#main-header span.fa-search,
	#main-header span.fa-times {
	  border-radius: 60px;
	  box-shadow: 0px 0px 2px #e3e6eb;
	  padding: 0.5em 0.6em;
	  font-size:  20px;
	}
	
	#newsCarousel a h3 {
		font-size: 18px;
	}
	
	#newsCarousel {
		font-size: 16px;
		line-height: 28px;
		margin-bottom: 30px;
	}
	
	h2.section-heading {
	  font-size: 24px;
	  color: rgba(0, 0, 0, 0.87);
	  line-height: 30px;
	  margin-top: 30px;
	}

	.under-slider h2 {
		color: #fff;
		font-size: 22px;
		line-height: 21px;
		text-align: left;
		margin-top: 0;
	}

	.ca-button.shallow {
		margin-top: 0;
	}
	
	.under-slider ul {
		list-style: none;
		margin: 15px 0;
		padding: 0;
		display: inline-block;
	}

	#testimonials {
		font-size: 18px;
		line-height: 28px;
	}

	.site-footer .address {
		border-bottom: none;
		border-right: 1px solid #fff;
	}
	
	.site-footer .address:after {
		border-bottom: none;
	}		

	.site-footer .contact {
		padding-left: 70px;
	}

	.site-copyright {
		font-size: 14px;
	}

	.message {
		font-size: 22px;
	}
	
	.message a {
		font-size: 16px;
	}
	
	.sidebar-section:first-child {
		margin-top: 0;
	}

	.page-title {
		padding-top: 70px;
		padding-bottom: 20px;
		background: none;
		margin-bottom: 0;
	}
	
	.page-title h1 {
		font-size: 42px !important;
		line-height: 3rem !important;
		color: #6a104f !important;
		text-align: left;
	}

	.cta .ca-button {
		float:left;
		width: 35%;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600;
	}
	
	.cta p {
		float: right;
		width: 58%;
		margin: 0;
		font-size: 16px;
		line-height: 24px;
		font-weight: 600;
	}

	.accordion .card-header {
		padding: 20px;
		margin-bottom: 0;
		background-color: #FFF;
		/*border-top: 1px solid rgba(0, 0, 0, 0.125);
		border-bottom: 2px solid rgba(0, 0, 0, 0.125);*/
		border-left: none;
		border-right: none;
		text-align: left;
		font-size: 24px;
		line-height: 30px;
		font-weight: 600;
		cursor: pointer;
	}

	.cta {
		padding: 50px;
		position:relative;
		width: 100%;
		overflow:hidden;
	}
	
	#main-nav {
		background-color: #002f6c;
	}	

		
	#main-slider.container,
	#under-slides.container {
		width: 100%;
		padding: inherit 15px;
		max-width: 1140px;
	}
	
	.under-slider {
		margin: 0 0 30px 0;
	}
	
	.under-slider ul {
		text-align: left;
	}
	
	.navbar-nav li {
		margin-bottom: 0;
	}
	
	.logos img {
		width: 80%;
	}
	
	.copyright {
		text-align:  right;
	}

	.footer-links {
		text-align: left;
	}
	
	#main-nav {
		position: relative;
	}
	
	.sidebar-section {
		padding: 40px 30px 40px 30px;
		border-radius: 8px;
		border: solid 1px #989ea2;
		background-color: #ffffff;
		margin-bottom: 30px;
	}

	
	.search {
		margin: 20px 0;
		display: none;
		position: relative;
		width: 100%;
		left: 0;
		z-index: 1000;
		background: #fff;
	}


	body.fixed {
		padding-top: 190px;
	}


}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  

	.container.main-menu {
		max-width: 1140px;
		width: 100%;
		margin-right: auto;
		margin-left: auto;
	}
	
	
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	
	.navbar-nav .dropdown-menu {
		min-width: 375px !important;
		width: auto !important;
	}

}

/** Added 5/5/20 **/
.page-sidebar-news {
	padding-left: 0px;
}

.home-slide {
	font-size: 32px;
	line-height: 43px;
	color: #fff;
	text-decoration: underline;
}
/** Added 6/15/20 **/
button.card-header {
	border-left: none;
	border-right: none;
	text-align: left;
}

button.card-header:hover,
button.card-header:focus {
	background-color: #f9fafd;
}

/* CHOA-24 Accessibility */
h2.sideasset {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 16px;
}