/*!
Theme Name: DHSS
Theme URI: https://www.veltris.com/
Author: Veltris
Author URI: https://www.veltris.com/
Description: Description
Version: 1.0.0
Tested up to: 6.4
Requires PHP: >7
Text Domain: dhss
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

DHSS is based on dhss https://www.veltris.com/, (C) 2024 Veltris.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
 @import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); 
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}


/* CODE FROM SAYALI */

*{
    margin:0;
    padding:0;
}

body {
    font-family: "Poppins", serif;
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    color: #000;
}
.main-container-wrapper {
    padding: 0 64px;
    /* width: 1440px; */
    margin: auto;
}
.row,
.custom-row {
    width:100%;
    display: flex;
    flex-wrap: wrap;
}
.desktop-view {
	display: block;
	height: 100%;
}
.mobile-view {
	display: none;
}
.align-items-center{
    align-items: center;
}
.justify-content-space-between{
    justify-content: space-between;
}
.ml-0 {
    margin-left: 0 !important;
}
/* Top header */
.top-header {
    background: #00415B;
    padding: 10px 0px;
}
.top-header .top-header-logo {
    margin-right: 64px;
}
.top-header .top-header-logo img {
    width:113px;
}
.top-header .top-header-txt {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
	line-height: normal;
}
.top-header .top-header-txt a {
    color: #fff;
    font-weight: 600;
    line-height: normal;
    display: inline-block;
    font-size: 16px;
    margin-left: 10px;
	text-decoration: none;
}
.top-header .top-header-txt a span {
	border-bottom: 1px solid #fff;
	padding-bottom: 2px;
}
.top-header .top-header-txt a  img {
    vertical-align: middle;
    /* margin-left: 3px; */
    width: 18px;
}
.top-links {}
.top-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
}
.top-links ul li {}
.top-links ul li a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    padding: 0 10px;
}
.header {
    padding: 24px 0;
	background: #fff;
}
.header .logo-header {
    display: flex;
    align-items: center;
}
.header .logo-header img {
    width: 88px;
    margin-right: 24px;
}
.header .logo-header span {
    font-weight: 600;
    font-size: 24px;
}
.header .search-header {}
.header .search-header .search-wrap {
    border: 1px solid #595959;
    border-radius: 4px;
}
.header .search-header .search-wrap .input-search {
    border: 0;
    padding: 10px 10px;
    background: none;
    font-size: 16px;
    font-family: "Poppins", serif;
    width: 350px;
}
.header .search-header .search-wrap .input-search:focus {
    outline: 0;
	box-shadow: none;
}
.header .search-header .search-wrap .search-btn {
    width: 74px;
    border: 0;
    height: 47px;
    background: url('assets/images/header/search-white-icon.png'), #005F85;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30%;
    cursor: pointer;
	border-radius: 0 3px 3px 0;
	color: transparent;
}
.navbar {
    /*background: rgba(0, 65, 91, 69%);*/
	background: rgba(10, 101, 136, 1);
    height: 66px;
    padding: 12px 0;
}
.home .navbar {
    /*background: rgba(10, 101, 136, 0.9); */
}
.mobile-header-search {
	padding: 10px;
    background: rgba(63, 108, 126, 1);
}
.mobile-header-search {
	width: 100%;
}
.mobile-header-search .search-wrap {
	width: 100%;
    gap: 0 !important;
}
.mobile-header-search .search-wrap .input-search {
	flex: 1;
    width: 100%;
    height: 40px;
    border-radius: 4px 0 0 4px;
	background: #fff;
	text-indent: 10px;
	font-size: 16px;
    font-family: "Poppins", serif;
	color: #000;
}
.mobile-header-search .search-wrap .input-search:focus {
	outline: 0;
	box-shadow: none;
}
.mobile-header-search .search-wrap .search-btn {
	background: url('assets/images/header/search-white-icon.png'), #005F85;
    background-repeat: no-repeat;
    background-position: center;
	width: 74px;
    height: 40px;
    text-align: center;
    padding: 0;
	color: transparent;
    border: 0;
    border-radius: 0 4px 4px 0;
} 
/*Footer css*/
.footer {
    background: rgba(0, 65, 91, 1);
    padding: 32px 0;
	padding-bottom: 0;
}
.footer-logo {
width:75px;}
.footer-section {
    margin: 0 25px;
}
.footer-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 27px;
}
.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-section ul li {
    color: #fff;
    margin-bottom: 15px;
}
.footer-section ul li h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}
.footer-section ul li p,
.footer-section ul li p a {
    font-size: 16px;
    color: #fff;
	text-decoration: none;
}
.footer-section .social-footer-links {
    display: flex;
    align-items: center;
}
.footer-section .social-footer-links li {}
.footer-section .social-footer-links li a {}
.footer-section .social-footer-links li a img {}
.footer-section .delaware-links {}
.footer-section .delaware-links li {
    display: inline-block;
    position: relative;
    padding-left: 15px;
    margin-right: 8px;
}
.footer-section .delaware-links li a {
	color: #fff;
	margin:0;
	font-size: 16px;
}
.footer-section .delaware-links li::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(234, 215, 136, 1);
    border-radius: 3px;
    transform: rotate(45deg);
    top: 7px;
    left: 0;
}
.footer-section .delaware-links a {
    display: block;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
.footer-section .delaware-links > a {
	    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}
.middle-footer-section {
    flex:1;
}
.footer-section .delaware-links li a img {}
.footer-privacy-wrap {
	padding: 16px 0px;
	border-top: 1px solid #fff;
}
.footer-privacy-wrap ul {
	list-style: none;
	margin: 0;
    padding: 0;
}
.footer-privacy-wrap ul li:first-child {
	padding-left: 0;
} 
.footer-privacy-wrap ul li {
	display: inline-block;
    padding: 0 10px;
}
.footer-privacy-wrap ul li a {
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	display: inline-block;
	text-decoration: none;
}
.powered-wrap {
	display: flex;
	align-items: center;
	color: #fff;
	margin-top: 10px;
	font-size: 16px;
}
.powered-wrap img {
	width: 20px; 
}
.powered-wrap .powered-content {
	flex: 1;
    margin-left: 6px;
}
.powered-wrap .powered-content a {
	color: #fff;
    display: inline-block;
    margin: 0 5px;
}

@media (min-width:1400px) {
	.main-container-wrapper {
    padding: 0 64px;
    width: 1400px;
    margin: auto;
}
}
@media (max-width:992px) {
    .main-container-wrapper {
        padding: 0 20px;
		width:100%;
    }
    .footer-section {
        margin: 0 0px;
        width: 100%;
    }
	.powered-wrap {
		font-size: 12px;
	}
	.footer-privacy-wrap {
		padding: 16px 0px;
	}
	.powered-wrap .powered-content a {
		margin: 0;
		display: block;
	}
	.footer-privacy-wrap ul li a {
		font-size: 12px;
	}
	.middle-footer-section {
    flex:none;
}
}

/* CODE FROM SAYALI ENDS HERE */

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	/* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; */
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", courier, monospace;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: rgba(57, 127, 142, 1);
}

a:visited {
	color: rgba(57, 127, 142, 1);
}

a:hover,
a:focus,
a:active {
	color: #1f515c;
}

a:focus {
	outline: none !important;
    box-shadow: none !important;
}

a:hover,
a:active {
	outline: 0;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}

.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main
.post-navigation {
	margin: 0 0 1.5em;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: end;
	flex: 1 0 50%;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.page-links {
	clear: both;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
.mt-20,
.mb-20 {
	margin-top: 20px;
}
/*MegaMenu css*/
#mega-menu-wrap-max_mega_menu_ {
	padding-left: 130px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ {
	position: static;
	text-align: center;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item > a.mega-menu-link {
	line-height: 22px;
    height: auto;
	background: rgba(0, 65, 91, 0.36);
	border: 1px solid rgba(255, 255, 255, 0.5);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 8px 20px 8px 20px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item > a.mega-menu-link:hover {
	border: 1px solid rgba(167, 201, 87, 1);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item {
	margin:0 10px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child {
	margin-right: 64px !important;
	margin-left: 0;
	width: 354px;
    position: relative;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child .mega-sub-menu .mega-menu-item .mega-menu-link {
	font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child .mega-sub-menu .mega-menu-item .mega-menu-link {
	font-size: 14px;
	text-transform: capitalize;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child .mega-sub-menu .mega-menu-item {
	padding: 10px 15px 10px 15px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child > a.mega-menu-link {
	background: #fff;
	color: #000;
	border: 1px solid rgba(57, 127, 142, 1);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-52.mega-menu-megamenu > ul.mega-sub-menu {
    background: white;
    border-radius: 5px;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	width: 30%;
	background: transparent;
    color: rgba(0, 0, 0, 1);
	padding: 14px 14px 0px 60px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
	width: 70%;
	left: 30%;
	background: #fff;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
    background: transparent;
    font-weight: normal;
    text-decoration: none;
    color: rgba(0, 65, 91, 1);
    font-weight: 600;
	padding: 14px 14px 14px 40px;
	    border: 0 !important;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	background: rgba(255, 255, 255, 1);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-18 > ul.mega-sub-menu {
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
	padding-bottom:25px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
    color: #666;
    font-family: inherit;
    font-size: 14px;
    text-transform: capitalize;
    text-decoration: none;
    font-weight: 400;
    text-align: left;
    margin: 0px 0px 0px 0px;
    padding: 14px 14px 14px 40px;
    vertical-align: top;
    display: block;
    border: 0;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	font-size: 18px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu.need-assistance-dropdown > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	padding: 0px 14px 0px 20px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_media_image {
	display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid rgba(57, 127, 142, 1);
	margin-bottom: 12px;
    padding-bottom: 5px;
	margin-top: 12px;
} 
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.tab-menu-inner-col .mega-sub-menu .widget_media_image a .image,
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_media_image > .image {
	width: 40px;
    height: 40px !important;
    object-fit: contain;
	padding-bottom:10px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row.tab-menu-inner-row {
	padding: 24px 32px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column.tab-menu-inner-col > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	padding: 8px 0;
    font-size: 16px;
    font-weight: 600;
	color: rgba(57, 127, 142, 1);
	padding-left: 20px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column.tab-menu-inner-col > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	text-decoration: underline;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.tab-menu-inner-col {
	padding: 0 12px;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: rgba(57, 127, 142, 1);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.tab-menu-inner-col .mega-sub-menu .widget_media_image .mega-block-title {
	margin-left: 10px;
	font-size: 20px;
	font-weight: 600;
	color: rgba(0, 65, 91, 1);
	text-transform: capitalize;
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
    border-radius: 5px;
	    border: 2px solid rgba(167, 201, 87, 1);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu {
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
}
#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-item a.mega-menu-link:before {
	position: absolute;
    left: 0;
}
.navmobile-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.navbar-mobile .logo-wrapper {
	display: flex;
	align-items: center;
}
.navbar-mobile .logo-wrapper img {
	width: 73px;
	max-width: none;
}
.navbar-mobile .logo-wrapper span {
	display: inline-block;
    font-weight: 700;
    font-size: 16px;
    margin: 0 10px 0 24px;
}
.align-navdesktop {
	/* display: flex;
	align-items: center;
	justify-content: space-between; */
	position: relative;
}
.translete-wrapper {
	position: absolute;
    right: 0;
    top: -3px;
}
#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner, 
#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::before, 
#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated-inner::after {
	background-color: #070707;
}
.assistance-dropdown {
	background: rgba(63, 108, 126, 1);
    padding: 10px 17px;
	z-index: 1;
}
.assistance-dropdown .nav-menu .menu-item-has-children > a.submenu-toggle {
	background: #fff;
    width: 100%;
    display: block;
    border-radius: 5px;
    padding: 10px 20px;
    text-decoration: none;
    color: #000;
    height: 40px;
    line-height: 20px;
}
.nav-menu {
	position: relative;
	list-style: none;
    padding: 0;
    margin: 0;
}
.nav-menu li {
    position: relative;
}


.sub-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
}

.sub-menu.open {
    display: block;
}
.assistance-dropdown .nav-menu .menu-item-has-children .sub-menu {
	position: absolute;
    width: 100%;
    background: #fff;
    margin: 0;
    padding: 16px;
    border-radius: 5px;
    margin-top: 5px;
}
.assistance-dropdown .nav-menu .menu-item-has-children a.submenu-toggle::after {
	content: '';
	background: url(./assets/images/down-arrow.svg);
	width: 13px;
    position: absolute;
    height: 10px;
    background-repeat: no-repeat;
    right: 10px;
    top: 17px;
}
.assistance-dropdown .nav-menu .menu-item-has-children .sub-menu.open ~  a.submenu-toggle::after {
	transform: rotate(-180deg);
}

.assistance-dropdown .nav-menu .menu-item-has-children .sub-menu .menu-item a.submenu-toggle {
	font-size: 14px;
    font-weight: 600;
    color: rgba(57, 127, 142, 1);
    text-decoration: none;
    margin-bottom: 16px;
    display: block;
    position: relative;
	padding-left: 22px;
}
.assistance-dropdown .nav-menu .menu-item-has-children .sub-menu .menu-item a.submenu-toggle::after {
	content: '';
	width: 14px;
	height: 14px;
	background: url(./assets/images/green-arrow-icon.svg);
	background-repeat: no-repeat;
	position: absolute;
    left: 0;
    background-size: contain;
    top: 5px;
}
.navbar .assistance-dropdown {
	position: absolute;
    left: 0;
    top: 0;
	background: none;
    padding: 0;
	width: 284px;
    height: 40px;
}
.translete-wrapper {

}
.gt_switcher .gt_selected {
	background: none !important;;
}
.gt_switcher .gt_selected a {
    border: 0 !important;
    color: #fff;
    padding: 0;
    width: 161px;
	height: 40px;
    line-height: 40px;
	padding-left: 35px !important;
    position: relative;
}
.gt_switcher .gt_selected a:after {
	top: 12px;
}
.gt_switcher .gt_selected a img,
.gt_switcher .gt_option a img {
	display: none !important;
}
.gt_switcher {
	overflow: inherit !important;
}
.gt_switcher .gt_option {
	background: #fff;
    border-radius: 5px;
    border: 0 !important;
    overflow: inherit !important;
    height: auto !important;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.15);
    max-height: 100% !important;
}
.gt_switcher .gt_option a {
    color: rgba(57, 127, 142, 1) !important;
    padding: 15px 10px !important;
    font-size: 14px !important;
    font-weight: 600;
}
.gt_switcher .gt_selected a:hover {
    background: transparent !important;
}
.alert-banner-wrap {
	border: 3px solid rgba(210, 65, 70, 1);
    border-radius: 7px;
    margin: 12px;
	display: flex;
}
.alert-banner-wrap .alert-icon {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
	background-color: rgba(210, 65, 70, 1);
}
.alertbannercolor_red {
	border: 3px solid rgba(210, 65, 70, 1);
}
.alertbannercolor_red .alert-icon {
	background: #d24146;
}
.alertbannercolor_orange {
	border-color: #f39c51;
}
.alertbannercolor_orange .alert-icon {
	background: #f39c51;
}
.alertbannercolor_yellow {
	border-color: #e9d98e;
}
.alertbannercolor_yellow .alert-icon {
	background: #e9d98e;
} 

.alert-banner-wrap .alert-info {
	flex: 1;
    padding: 13px 26px;
	position: relative;
}
.alert-banner-wrap .alert-info h3 {
	font-size: 16px;
    margin-bottom: 5px;
    line-height: normal;
}
.alert-banner-wrap .alert-info p {
	font-weight: 400;
	font-size: 16px;
	margin-bottom: 5px;
	color: rgba(32, 32, 32, 1);
}
.alert-banner-wrap .alert-info .close-icon {
	position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}
.alert-banner-wrap .alert-info a {
	text-decoration: underline;
    color: #000;
}
.alert-banner-wrap .alert-info a img {
	margin-left: 5px;
    vertical-align: middle;
}
.header-section {
	position: relative;
    z-index: 9;
    /* background: #fff; */
    width: 100%;
    top: 0;
	transition: 0.5s;
}
.logo-wrap-mobile {
	display: flex;
    align-items: center;
	justify-content: space-between;
    width: 100%;
}
.logo-wrap-mobile .menu-logo-mobile {
	display: flex;
	align-items: center;
}
.logo-wrap-mobile .menu-logo-mobile img {
	width: 73px;
    margin-right: 15px;
}
.logo-wrap-mobile .menu-logo-mobile span {
	font-size: 16px;
    font-weight: 700;
    margin-right: 20px;
    display: inline-block;
}
.logo-wrap-mobile .mega-close {
	background: none;
    border: 0;
	cursor: pointer;
}
.logo-wrap-mobile .mega-close img {
	width: 20px;
}
.gt_switcher .gt_selected a:after {
    right: auto !important;
    padding-left: 20px;
}
.gt_switcher .gt_selected a::before {
    content: '';
    background: url(./assets/images/glob-icon.svg);
    background-repeat: no-repeat;
	position: absolute;
    left: 0px;
    width: 24px;
    height: 24px;
    top: 12px;
}
.breadcrumb-wrapper {
	padding: 15px 0;
}
.breadcrumb-wrapper ul {
	list-style: none;
	padding: 0;
	margin: 0;
	padding: 0px 0;
	display: flex;
}
.breadcrumb-wrapper ul li,
.breadcrumb-wrapper .breadcrumbs > span {
	position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0px 0px;
	padding: 0 20px;
}
.breadcrumb-wrapper ul li a,
.breadcrumb-wrapper .breadcrumbs > span a {
	text-decoration: none;
    color: rgba(0, 65, 91, 1);
	/* padding: 0 20px; */
	display: block;
}
.breadcrumb-wrapper ul li::after,
.breadcrumb-wrapper .breadcrumbs > span::after {
	content:'';
	background: url(./assets/images/arrow-icon-bredcrum.svg);
	width: 9px;
    height: 12px;
    position: absolute;
    right: -5px;
    top: 8px;
    background-repeat: no-repeat;
    background-size: contain;
}
.breadcrumb-wrapper ul li:last-child:after,
.breadcrumb-wrapper .breadcrumbs > span:last-child::after {
	display: none;
}
.breadcrumb-wrapper ul li a img {}
.breadcrumb-wrapper span a {
	color: rgba(0, 65, 91, 1);
    text-decoration: none;
}
.home-banner.banner-inner-pages {
	margin-top: 0;
	height: 378px;
}
.header-section.fixed {
    top: 0;
	background: #fff;
	position: fixed;
	width:100%;
	z-index: 99;
}
.header-section.fixed .top-header,
.header-section.fixed .alert-banner-wrap {
	display: none;
}
.header-section.fixed .header {
	padding: 8px 0;
}
 .fixed-header-blank {
	height: 277px;
    width: 100%;
    position: relative;
 }
.header-section.fixed .header .logo-header img {
	width: 58px;
}
.header-section.fixed .header .logo-header span {
	    font-size: 22px;
}
/* .items-inner .letter-section {
    display: none;
} */
.items-inner .letter-section.active {
display: block;
}
.custom-form-wrapper .nf-field-label label,
.custom-form-wrapper .nf-field-label .nf-label-span {
    font-weight: 400;
    font-size: 20px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 0;
}
.custom-form-wrapper .nf-field-element input[type="text"],
.custom-form-wrapper .nf-field-element input[type="tel"] {
    border: 1px solid rgba(57, 127, 142, 1);
    height: 47px;
	text-indent: 10px;
	width: 530px;
}
.custom-form-wrapper .field-wrap input[type=submit] {
	background: rgba(13, 59, 102, 1);
    border: 0;
    color: #fff;
    width: 130px;
    padding: 12px;
	cursor: pointer;
}
.custom-form-wrapper .field-wrap input[type=submit]:hover {
	background: rgb(13 90 161);
}
.inner-form-heading .field-wrap .nf-field-element p {
	font-size: 32px;
    margin-bottom: 10px;
}
.no-sidebar-wrapper {
	padding: 30px 0;
}
.mega-toggle-on > .mega-menu-link .mega-indicator::after {
	transform: rotate(-180deg) !important;
	color: #a7c957 !important;
} 
.mega-sub-menu .mega-toggle-on > .mega-menu-link .mega-indicator::after {
	    transform: rotate(0deg) !important;
		color: #a7c957 !important;
}
#leftCol {
    display: none;
}
.program-spotlight p,
.services-tpl p {
	margin-bottom: 1.5em;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}
.program-spotlight ul ,
.services-tpl ul {
	padding-left: 20px;
}
.program-spotlight ul li ,
.services-tpl ul li {
	margin-bottom: 1.5em;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
}
.program-spotlight .post-thumbnail img,
.services-tpl .post-thumbnail img  {
	    width: 100%;
    margin-bottom: 20px;
}
/*ltco-form*/
.ltco-form {}
.ltco-form .form-group {}
.ltco-form .form-group .from-group-title {
	margin-bottom: 24px;
}
.ltco-form .form-group p {}
.ltco-form .form-group p label {
	font-size: 20px;
    font-weight: 400;
    color: rgba(0, 0, 0, 1);
	display: block;
}
.ltco-form .form-group p .wpcf7-form-control-wrap {
	display: block;
    margin-top: 12px;
}
.ltco-form .form-group p .wpcf7-form-control-wrap .wpcf7-form-control {
	width: 50%;
    height: 48px;
    text-indent: 15px;
    border-color: rgba(57, 127, 142, 1);
	color: #000;
	border-radius: 4px;
}
.ltco-form .form-group p .wpcf7-form-control-wrap .wpcf7-textarea {
	resize: vertical;
    text-indent: 15px;
    width: 100%;
    padding: 15px;
    height: 190px;
}
.ltco-form .form-group p .custom-submit {
	background: rgba(13, 59, 102, 1);
    color: #fff;
    border: 0;
    width: 130px;
    height: 44px;
    line-height: normal;
    cursor: pointer;
}
.ltco-form .form-row,
.ltco-form .dob-row {
	display: flex;
}
.ltco-form .form-row .form-col {
	width: 375px;
}
.ltco-form .form-row .form-col:nth-child(2) {
	margin-left: 10px;
	width: 100px;
}
.ltco-form .form-group .city-zip-wrap p .wpcf7-form-control-wrap .wpcf7-form-control,
.ltco-form .form-group .dob-row p .wpcf7-form-control-wrap .wpcf7-form-control {
	width:100%;
}
.ltco-form .form-group .dob-row .dob-col:last-child p .wpcf7-form-control-wrap .wpcf7-form-control {
	min-width: 80px;
}
.ltco-form .dob-row .dob-col p label {
	margin-right: 10px;
}

.sub-home-banner {
    position: relative;
    height: 378px;
    /* height: auto; */
}
.sub-home-banner .desktop-view-sub-banner {
    height: 100%;
    background-repeat: no-repeat;
    background-position: right 35%;
    background-size: 70%;
}
.sub-home-banner .desktop-view-sub-banner.mobile-view-sub-banner {
	display: none;
}
.sub-home-banner .home-banner-info {
    position: absolute;
    top: 40%;
    line-height: 50px;
    width: auto;
    padding-left: 62px;
    z-index: 1;
    left: 0;
}
.sub-home-banner .home-banner-info h1 {
    position: relative;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
	width:50%;
	margin: 0;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}
.sub-home-banner .home-banner-info h1::before {
    content: '';
    width: 122px;
    height: 4px;
    background: rgba(167, 201, 87, 1);
    position: absolute;
    top: -19px;
    border-radius: 6px;
}
.sub-home-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sub-home-banner:after {
    content: '';
    background: linear-gradient(90deg, #00415B 0%, #397F8E 50%, rgba(57, 127, 142, 0) 100%);
    height: 100%;
    width: 70%;
    position: absolute;
    top: 0;
    left: 0;
}
#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated {
	position: relative;
}
#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle .mega-toggle-block-1 .mega-toggle-animated:after {
    content: 'Menu';
    position: absolute;
    top: 16px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
}
.wp-block-esab-accordion .esab__head {
	padding: 16px 24px !important;
}
.wp-block-esab-accordion .esab__heading_tag {
	font-weight: 700;
	font-size: 20px;
}
.wp-block-esab-accordion .wp-block-esab-accordion-child > .esab__active.esab__body, 
.wp-block-esab-accordion.nested-accordion .wp-block-esab-accordion-child > .esab__active.esab__body {
    border-color: rgba(57, 127, 142, 1);
    background: #fff !important;
	padding: 10px 24px !important;
}
.wp-block-esab-accordion .wp-block-esab-accordion-child > .esab__body p {
	font-size: 20px;
}
.wp-block-esab-accordion .esab__container > .wp-block-esab-accordion-child.esab__active_accordion, 
.wp-block-esab-accordion.nested-accordion .esab__container > .wp-block-esab-accordion-child.esab__active_accordion, 
.wp-block-esab-accordion .block-editor-block-list__block > .wp-block-esab-accordion-child.esab__active_accordion, 
.wp-block-esab-accordion.nested-accordion .block-editor-block-list__block > .wp-block-esab-accordion-child.esab__active_accordion {
	border-color: rgba(57, 127, 142, 1);
}
.wp-block-esab-accordion .esab__container > .wp-block-esab-accordion-child {
	    border-color: rgba(57, 127, 142, 1) !important;
}
.wp-block-esab-accordion .esab__active_accordion > .esab__head .esab__icon svg path {
	    fill: #000;
}
.wp-block-esab-accordion .esab__active_accordion .esab__icon.esab__active_icon svg path {
	    fill: #000 !important;
}
.wp-block-esab-accordion-child:hover .esab__head .esab__heading_txt .esab__heading_tag {
	color: rgba(57, 127, 142, 1);
}
#readspeaker_button1 {
	display: none !important;
}
#data-table-container {
overflow: auto;
}
#data-table-container .datagrid .datagridHeader {
	background: rgba(57, 127, 142, 1);
    color: #fff;
}
#data-table-container .datagrid .datagridHeader td a {
	color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
.type-page #data-table-container table tbody tr td:first-child {
	font-weight: normal;
}
/* top-left border-radius */
#data-table-container table tr:first-child td:first-child {
    border-top-left-radius: 6px;
}

/* top-right border-radius */
#data-table-container table tr:first-child td:last-child {
    border-top-right-radius: 6px;
}

/* bottom-left border-radius */
#data-table-container table tr:last-child td:first-child {
    border-bottom-left-radius: 6px;
}

/* bottom-right border-radius */
#data-table-container table tr:last-child td:last-child {
    border-bottom-right-radius: 6px;
}
/*adult-abuse-search page css*/
.inner-custom-form-adult-abuse-search .formTitle {
	display: inline-block;
    background: #065778;
    padding: 5px 10px;
    border-radius: 4px 4px 0 0;
    color: #fff;
}
.inner-custom-form-adult-abuse-search .formRowsFrame .formRow {
	border: 1px solid #ccc;
    padding: 10px 50px;
    background: #f6f6f6;
    border-radius: 0 4px 4px 4px;
}
.inner-custom-form-adult-abuse-search .formRowsFrame .formRow .formColumnLabel {
	margin-bottom: 10px;
}
.inner-custom-form-adult-abuse-search .formRowsFrame .formButtons input[type="submit"] {
	background: #096588;
    color: #fff;
    border: 0;
    height: 40px;
    line-height: normal;
    cursor: pointer;
	padding: 0 10px;
}
.inner-custom-form-adult-abuse-search .formRowsFrame .formButtonsRow {
	text-align: right;
    margin-top: 10px;
}
table.adult-abuse-table tbody tr:nth-child(odd) {
    background-color: #f2f2f2;
}
table.adult-abuse-table tbody tr.datagridHeader {
	background: #096588;
    color: #fff;
}
table.adult-abuse-table tbody tr.datagridHeader td {
	padding: 8px;
} 
table.adult-abuse-table tbody tr td {
	padding: 8px;
}
.datagridHeadline {
	background: #f2f2f2;
    padding: 10px;
    width: 100%;
}

@media (min-width:1400px) {
	.sub-home-banner .home-banner-info {
    position: absolute;
    top: 40%;
    line-height: 50px;
    width: 1400px;
    /* padding-left: 62px; */
    z-index: 1;
    left: 0;
    right: 0;
    margin: auto;
    padding: 0 64px;
	}
	.sub-home-banner .home-banner-info h1 {
    position: relative;
    font-size: 44px;
    font-weight: 700;
    color: #fff;
	}
}

@media (max-width:1300px) {
    .programs-services-wrapper .services-section .services-box {
        width: 30% !important;
    }
}
@media (max-width: 1190px) {
	.desktop-view {
		display: none;
	}
	.mobile-view {
		display: block;
	}
	.assistance-dropdown.mobile-view {
		display: block;
		padding: 10px 64px;
	}
	#mega-menu-wrap-max_mega_menu_:has(.mega-menu-open) #mega-menu-max_mega_menu_[data-effect-mobile^="slide_right"] + button.mega-close {
        left: auto;
        right: 0;
		width: 100%;
        background: rgba(40, 93, 113, 1);
        text-align: right;
        height: 40px;
    }
	#mega-menu-wrap-max_mega_menu_ {
		padding-left: 0px;
	}
	#mega-menu-wrap-max_mega_menu_:has(.mega-menu-open) #mega-menu-max_mega_menu_[data-effect-mobile^="slide_"] + button.mega-close:before {
		position: absolute;
        right: 0px;
	}
	#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle + #mega-menu-max_mega_menu_ {
		padding-top: 0px;
		background: rgba(40, 93, 113, 1);
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child {
		margin-right: 0 !important;
		margin-left: 0;
		width: 100%;
		position: relative;
		margin-left: 0;
		margin: 0;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-52 > a.mega-menu-link {
		background: white;
		margin: 10px;
		border-radius: 5px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item {
		margin: 0;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item > a.mega-menu-link {
		line-height: 22px;
		height: auto;
		background: none;
		border: 0;
		border-bottom: 1px solid #fff;
		padding: 10px 10px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
		border-radius: 0;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
        /* color: #ffffff; */
        background: none;
		border: 0;
    }
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > ul.mega-sub-menu {
		width: 100%;
		left: 0;
		background: #fff;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		width: 100%;
		background: transparent;
		color: rgba(0, 0, 0, 1);
		padding: 10px 14px 10px 14px;
		border-bottom: 1px solid #fff;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link, 
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, 
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-tabbed > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
		background: transparent;
		font-weight: normal;
		text-decoration: none;
		color: rgba(0, 65, 91, 1);
		font-weight: 600;
		padding: 14px 14px 14px 40px;
	}
	.header {
		display: none;
	}
	.navbar {
		background: #fff;
		padding: 12px 0;
    height: auto;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row.tab-menu-inner-row {
		padding: 0px 0px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.tab-menu-inner-col {
		padding: 0 0px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.widget_media_image {
		margin-bottom: 5px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column.tab-menu-inner-col > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		font-size: 14px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.tab-menu-inner-col .mega-sub-menu .widget_media_image .mega-block-title {
		font-size: 18px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column.tab-menu-inner-col .mega-sub-menu .widget_media_image a .image {
		width: 24px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item > a.mega-menu-link:hover {
		border: 0;
		border-bottom: 1px solid #fff;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
		padding: 0px 0px 0px 20px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child .mega-sub-menu .mega-menu-item {
		padding: 10px 0px 10px 0px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child .mega-sub-menu .mega-menu-item .mega-menu-link{
		padding-left: 20px;
	}
	#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle + #mega-menu-max_mega_menu_ {
		width: 100%;
	}	
	#mega-menu-wrap-max_mega_menu_ .mega-menu-toggle + #mega-menu-max_mega_menu_ {
        left: -100%;
		max-height: 100vh;
        top: 0;
    }	
	.top-header .top-header-txt {
		display: none;
	}
	.max-mega-menu .menu-item-gtranslate {
		display: block;
		width: 100%;
		position: relative !important;
		clear: both;
	}
	.max-mega-menu .menu-item-gtranslate > div {
		width:100%;
		position: relative !important;
	}
	.max-mega-menu .menu-item-gtranslate .gt_container--ybl891,
	.max-mega-menu .menu-item-gtranslate .gt_switcher {
		width: 100%;
	}
	.gt_switcher .gt_option {
		width:100% !important
	}
	.gt_switcher .gt_selected a {
		padding: 3px 10px 3px 33px !important;
        width: 86% !important;
        font-size: 14px !important;
		margin-left: 10px;
	}
	.gt_switcher .gt_option a {
		color: #000;
		padding: 12px 11px !important;
		font-size: 14px !important;
	}
	.alert-banner-wrap .alert-info {
		padding: 13px 11px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item:first-child > a.mega-menu-link {
		border: 0;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search-wrap {
		margin: 12px 0;
		height: 40px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search {
		width: 94%;
        margin: 0 10px;
        background: #fff;
        border-radius: 4px;
    }
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search .search-icon {
		right: 0;
		top: 0px;
		position: absolute;
		cursor: pointer;
		height: 100%;
		width: 60px;
		height: 40px;
		border-radius: 0 5px 5px 0;
		right: 10px;
		background: rgba(0, 65, 91, 1);
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search input[type=text] {
		color: #333;
		background-color: rgba(0, 0, 0, 0);
		width: 100%;
		margin: 0;
		padding: 0 60px 0 10px;
		height: 40px;
		border: 0;
		transition: width 0.6s, background-color 0.6s, color 1s;
		box-sizing: border-box;
		border-radius: 5px;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search input[type=text]:focus-visible {
		outline: 0;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search .search-icon.dashicons-search:before {
		content: "\f179";
		color: #fff;
		font-size: 28px;
		line-height: 40px;
	}
	.mega-menu-wrap .mega-close {
		display: none !important;
	}
	.logo-wrap-mobile .mega-close {
		display: block !important;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ li#mega-menu-item-93 .mega-search-wrap input[type="submit"] {
		display: none;
	}
	.mega-toggle-on > .mega-menu-link .mega-indicator::after {
		transform: none !important;
		color: #a7c957 !important;
	}
	#mega-menu-wrap-max_mega_menu_ #mega-menu-max_mega_menu_ > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link {
		color: #ffffff;
        background: #285d71;
		border-color: rgba(255, 255, 255, 1);
	}
}
@media (max-width: 992px) {
	.leftbar-overflow {
	overflow: hidden;
}
	.custom-form-wrapper .nf-field-element input[type="text"],
	.custom-form-wrapper .nf-field-element input[type="tel"] {
		border: 1px solid rgba(57, 127, 142, 1);
		height: 47px;
		text-indent: 10px;
		width: 100%;
	} 
	.ltco-form .form-group p label .wpcf7-form-control-wrap .wpcf7-form-control {
		width: 100%;
	}
	.sub-home-banner {
		height: auto;
		display: flex;
		flex-direction: column-reverse;
	}
	.sub-home-banner:after {
		display: none;
	}
	.sub-home-banner .home-banner-info {
		position: relative;
		top: 0;
		line-height: normal;
		background: linear-gradient(0deg, #00415B 0%, #397F8E 100%);
		padding: 30px 20px;
	}
	.sub-home-banner .home-banner-info {
		padding-left: 20px;
		width:100%;
	}
	.sub-home-banner .home-banner-info h1 {
		font-size: 32px;
		width:100%;
		padding-top: 30px;
	}
	.sub-home-banner .home-banner-info h1::before {
		top: 10px;
	}
	.footer-section .delaware-links li {
		display: block;
	}
	.not-found .search-form .search-field {
		width:300px !important;
	}
	.mobile-view {
		display: block;
	}
	.assistance-dropdown.mobile-view {
		display: block;
		padding: 10px 20px;
	}
	.sub-home-banner .desktop-view-sub-banner {
		display: none;
	}
	.sub-home-banner .desktop-view-sub-banner.mobile-view-sub-banner {
		display: block;
		--aspect-ratio: 1 / 1;
	}
	.sub-home-banner .desktop-view-sub-banner.mobile-view-sub-banner img {
		aspect-ratio: var(--aspect-ratio);
	}
	.breadcrumb-wrapper {
		display: none;
	}
	.fixed-header-blank {
		height: 213px;
	}
	#data-table-container {
		width: 100%;
    	overflow: auto;
	}
}
@media (min-width:993px) {
	.max-mega-menu .menu-item-gtranslate {
		display: none;
	}
}
@media (max-width:768px) {
	/* .sub-home-banner {
		height: 150px;
	} */
	.sub-home-banner .desktop-view-sub-banner {
		height: 100%;
	}
	.sub-home-banner .desktop-view-sub-banner img {
		    object-fit: cover;
	}
	.sub-home-banner .home-banner-info {
		padding-left: 20px;
	}
	.sub-home-banner .home-banner-info h1 {
		font-size: 32px;
	}
	.not-found .search-form .search-field {
		width:260px !important;
	}
	.not-found .page-content p {
    font-size: 14px;
    color: #000;
	}
	.not-found .page-header .page-title {
    font-size: 24px;
	}
}
.locations-links ul li:last-child {
	border-right: none !important;
    /* your styles here */
}
#toclist ul li, #toclist ul{
	padding: 0 !important;
    line-height: 1.5 !important;
    padding-bottom: 3px !important;
    list-style: none !important;
}
.gutentoc ul ul {
  margin-left: 15px !important;
  padding-left: 20px !important;
}
.audience-dropdown{
	display: none;
}
.gutentoc-toc-title-wrap .gutentoc-toc-title {
    display: inline-block;
	font-weight: bold !important;
}