/** top of the page **/

.top-of-the-page {
	height: 357px;
	display: grid;
	grid-template-columns: auto 1fr auto;
}

.top-of-the-page .desktop-background-image {
	grid-column: 1 / -1;
	grid-row: 1 / -1;
}

.top-of-the-page .container-1019 {
	height: 100%;
	display: flex;
	align-items: center;
	grid-column: 2 / 3;
	grid-row: 1 / -1;
}

.top-of-the-page .headline-icons-b {
	width: 60%;
	max-width: 100%;
	display: grid;
	margin: 0 auto;
}

.top-of-the-page h1,
.top-of-the-page .site-white
{
	font-size: 2em;
	align-self: center;
	color:#fff;
}



/** search engine **/

.search-engine {
	margin-top: 20px;
}

.search-engine {
	position: relative;
}

.search-engine form {
	position: relative;
}

.search-engine form button {
	width: 25px;
	height: 25px;
	background-color: transparent;
	border: none;
	display: block;
	position: absolute;
	top: 7.5px;
	right: 7.5px;
	z-index: 1;
	cursor: pointer;
}

.search-engine form label {
	position: relative;
	display: block;
}

.search-engine form label:before,
.search-engine form label:after {
	content: '';
	position: absolute;
}

.search-engine form label:before {
	top: 11px;
	right: 15px;
	width: 12px;
	height: 12px;
	border: 1px solid #777;
	border-radius: 100%;
}

.search-engine form label:after {
	height: 8px;
	width: 1px;
	background-color: #777;
	position: absolute;
	top: 22px;
	right: 13px;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.search-engine form input {
	border: 1px solid #ddd;
	border-radius: 30px;
	box-sizing: border-box;
	height: 40px;
	padding-right: 40px;
	padding-left: 20px;
	width: 65%;
	outline: none;
}

.search-engine .results-hidden:focus {
	width: auto;
	height: auto;
	clip: unset;
	overflow: unset;
	margin: 0;
	top: calc(100% - -4px);
	padding: 2px 5px;
	background-color: #F2F2F2;
	outline: none;
	border: 1px solid black;
}

.search-engine ul {
	position: absolute;
	top: calc(100% + 32px);
	right: 0;
	background-color: #fff;
	width: 100%;
	max-height: 594px;
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
	display: none;
	z-index:9;
}

.search-engine ul li:not(:last-child) {
	border-bottom: 1px solid #ddd;
}

.search-engine ul li a {
	display: block;
	padding: 30px 20px;
}

.search-engine ul li a:hover {
	background-color: #f5f5f5;
}

.search-engine ul li a .se-breadcrumbs {
	display: block;
	color: #aaa;
	margin-top: 5px;
	font-size: 0.9em;
}


#myList li{ display:none;
}

#myList li.active-q{ display:block;
}

.more-or-less{
	display: flex;
	gap: 20px;
	margin-top: 10px;
}
#loadMore {
	color:#fff;
	cursor:pointer;
	background-color: var(--darkgreen);
}

#showLess {
	color:#fff;
	cursor:pointer;
	background-color: var(--black3);
}
#showLess:hover,#loadMore:hover{
	background-color: var(--gray);
	color:var(--black);
}

#showLess, #loadMore{
	padding:5px 10px;
	border-radius:5px;
}

#myList li.active-q a{
	display: flex;
	justify-content: space-between;
}




.four-links__container {
	margin: 42px auto;
	width: 1410px;
	max-width:95%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 30px;
	grid-row-gap: 30px;
	align-items: center;
	text-align: center;
	height: 100%;
}

.four_links__link-container {
	height: min-content !important;
}


.four-links ul li {
	height: 100% !important;
	padding: 36px 63px;
	border: 1px solid #e1e1e1;
	border-radius: 8px;
}

.four-links-image-container {
	margin: 0 auto;
	height: 180px;
	width: 100%;
	max-width: 100%;
	position: relative;
}

picture.four_links_link-icon{
	height: 100%;
	width: 100%;
	object-fit: cover;
	display: block;
}

picture.four_links_link-icon img{
	position:absolute;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.four-links-image {
	width: 100%;
	height: auto;
}

.four_links__title {
	margin: 15px auto 0;
	font-weight: 700;
	font-size: 1.5em;
}



.no-search-results{
	max-width: 1075px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
	    font-size: 1.5em;
	font-weight:600;
	text-align:center;
}

.no-search-results h3{ font-size: .9em;}


@media (max-width: 900px) {

	.four-links__container{
		grid-template-columns: repeat(2, 1fr);
		max-width:95%;
	}
	.four-links ul li {
		padding: 26px 20px;
	}

	.four-links-image-container {
		max-width: 130px;
		height:90px;
	}

	.four_links__title {

		font-weight: 700;
		font-size: 0.9em;
	}
}


/** search engine **/





@media (min-width: 1024px) {
	.top-of-the-page .mobile-background-image {
		display: none;
	}
}

@media (max-width: 1023px) {
	.top-of-the-page {
		height: 290px;
	}

	.top-of-the-page .desktop-background-image {
		display: none;
	}

	.top-of-the-page .mobile-background-image {
		grid-column: 1 / -1;
		grid-row: 1 / -1;
	}

	.top-of-the-page .headline-icons-b {
		margin: 0 auto;
		align-self: center;
		width: 90%;
	}

	.top-of-the-page .headline-icons-b h1 {
		font-size: 3.125em;
	}

	.top-of-the-page .headline-icons-b h1 br {
		display: none;
	}



}

@media (max-width: 640px) {
	.top-of-the-page {
		height: 65.782vw;
	}

	.top-of-the-page .headline-icons-b h1 {
		font-size: 7.8vw;
	}

	#myList li.active-q a{
		display: grid;
	}

	#myList li.active-q a .faq-date{
		margin-top:10px;
	}
}

/** top of the page **/



.main-questions {
	max-width: 1410px;
	margin: 0 auto;
	padding: 15px 15px 40px;
}

.recent-activity-header {
	font-size: 28px;
}

.questions {
	max-width: 1410px;
	margin: 0 auto;
	padding: 15px;
}

.single-question {
	padding: 20px 0;
	border-bottom: 1px solid #ddd;
	color: #4b61c3;
}

.question-category-container {
	margin: 0 0 20px 0;
	font-size: 22px;
	font-weight: 600;
}

.question-category-container a{
	color: var(--darkgreen);
}

.question-container a{
	color: var(--darkgreen);
}