/*
Theme Name: activ
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: activ
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 with others.

activ is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

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:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
@import 'assets/fonts/icomoon/icomoon.css';

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-family: 'Helvetica', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5rem;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-weight: 700;
	margin-bottom: 1rem;
}

h1,
h2,
h4 {
	color: #002c57;
}

.h1,
h1 {
	font-size: 2.5rem;
}

.h2,
h2 {
	font-size: 2.15rem;
}

p {
	margin-bottom: 1.15rem;
}

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;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	overflow-x: hidden;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ebebeb;
	border: 0;
	height: 1px;
	margin-top: 25px;
	margin-bottom: 25px;
}

ul,
ol {
	margin: 0 0 1.5em;
	padding-left: 1.25rem;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}


li>ul,
li>ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 2px solid;
	border-color: #002c57;
	border-radius: 4px;
	background: transparent;
	color: #002c57;
	padding: 9px 30px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	cursor: pointer;
	border-color: #002c57;
	background: #002c57;
	color: #fff;
}

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: #002c57;
	background: #002c57;
	color: #fff;
}

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,
select {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 10px 15px;
	width: 100%;
	height: auto;
}

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,
select:focus {
	color: #111;
	border-color: rgba(0, 44, 87, 0.25);
	-webkit-box-shadow: 0 0 0 0.2rem hsla(210, 100%, 17%, 0.25);
	box-shadow: 0 0 0 0.2rem hsla(210, 100%, 17%, 0.25);
}

select {
	border: 1px solid #ccc;
	padding: 13px 15px !important;
}

textarea {
	width: 100%;
}

/*------------ New checkbox style---------------*/
/** Checkbox styles */

/* The container */

.checkbox-container {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */

.checkbox-container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 23px;
	border-radius: 4px;
	border: 2px solid #f67d1d;
}

/* On mouse-over, add a grey background color */

.checkbox-container:hover input~.checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */

.checkbox-container input:checked~.checkmark {
	background-color: #f67d1d;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */

.checkbox-container input:checked~.checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */

.checkbox-container .checkmark:after {
	left: 7px;
	top: 2px;
	width: 6px;
	height: 13px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*------ Donation form and common for form element---------*/
.fields-set {
	margin-bottom: 46px;
}

.field-view {
	margin-bottom: 24px;
}

.field-view label {
	display: block;
	color: #002c57;
	font-size: 1.2rem;
	font-weight: 500 !important;
}

.field-view select,
.field-view input[type="text"],
.field-view input[type="email"],
.field-view input[type="tel"],
.field-view input[type="number"],
.field-view input[type="date"] {
	border: 2px solid #002c57;
	border-radius: 8px;
	padding: 14px 15px;
}

.field-view textarea {
	border: 2px solid #002c57;
	border-radius: 8px;
	padding: 14px 15px;
}

.field-view select {
	padding: 16px 15px !important;
	background: #ffffff url(assets/img/down-arrow.svg) no-repeat 98% 45%;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

.field-view button[type="submit"],
.field-view input[type="submit"] {
	padding: 16px 30px;
	font-weight: 700;
	background: #fff;
	min-width: 176px;
}

.field-view button[type="submit"]:hover,
.field-view input[type="submit"]:hover {
	background: #002c57;
}

/*---- Contact 7 form Checkbox style related change --------*/
.checkbox-container-w-50 .wpcf7-checkbox {
	display: block;

}

.checkbox-container-w-50 input[type=checkbox] {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.checkbox-container-w-50 .wpcf7-list-item {
	width: 50%;
	margin-left: 0px;
	padding-right: 24px;
	margin-top: 4px;
	display: inline-block;
}

.checkbox-container-w-50 .wpcf7-list-item:nth-child(2n) {
	padding-left: 15px;
}

.checkbox-container-w-50 .wpcf7-list-item-label {
	position: relative;
	margin-bottom: 0;
	vertical-align: top;
	padding-left: 36px;
	display: inline-block;
}

.checkbox-container-w-50 .wpcf7-list-item-label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0px;
	display: block;
	width: 20px;
	height: 20px;
	pointer-events: none;
	background-color: #fff;
	border-radius: 4px;
	border: 2px solid #f67d1d;
}

.checkbox-container-w-50 .wpcf7-list-item-label:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0px;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 4px;
	background: no-repeat 50%/50% 50%;
}

.checkbox-container-w-50 input[type=checkbox]:checked~.wpcf7-list-item-label:before {
	color: #fff;
	border-color: #f67d1d;
	background-color: #f67d1d;
}

.checkbox-container-w-50 input[type=checkbox]:checked~.wpcf7-list-item-label:after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

@media (max-width: 767px) {
	.checkbox-container-w-50 .wpcf7-list-item {
		width: 100%;
	}

	.checkbox-container-w-50 .wpcf7-list-item:nth-child(2n) {
		padding-left: 0px;
	}
}

/*---- Contact 7 form Checkbox style related change end --------*/

/*------ Donation form other style ----------*/
#bambora-donationform {
	font-size: 1.2rem;
}

#bambora-donationform {
	font-size: 1.2rem;
}

#bambora-donationform .dollar-amount {
	color: #002c57;
	background: #fff;
	display: inline-block;
	margin-bottom: 16px;
	padding: 18px;
	min-width: 190px;
	border: 2px solid #002c57;
	border-radius: 8px;
	margin-right: 24px;
	font-size: 1.2rem;
	text-align: center;
	cursor: pointer;
}

#bambora-donationform .d-amount-container {
	margin-bottom: 46px;
}

#bambora-donationform .dollar-amount.active,
#bambora-donationform .dollar-amount:hover {
	color: #fff;
	background: #002c57;
	-webkit-box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 02);
	box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 0.2);
}

.d-amount-container #amount {
	padding: 18px 15px;
	padding-left: 40px;
	border-radius: 8px;
	border: 2px solid #002c57;
}

.d-amount-container .currency-input {
	position: relative;
}

.currency-input .currency-symbol {
	pointer-events: none;
	position: absolute;
	top: 20px;
	left: 20px;
}

.medium-blue-text {
	color: #002c57;
	font-size: 1.2rem;
}

/*----------  Contact Form 7  ----------*/

.form-control {
	height: auto;
	padding: 10px 15px;
}

.form-control:focus {
	border-color: rgba(0, 44, 87, 0.25);
	-webkit-box-shadow: 0 0 0 0.2rem hsla(210, 100%, 17%, 0.25);
	box-shadow: 0 0 0 0.2rem hsla(210, 100%, 17%, 0.25);
}

span.wpcf7-list-item.first {
	margin-left: 0;
}

.wpcf7-form-control-wrap {
	display: block;
	margin-top: 0.25rem;
}

.wpcf7-checkbox {
	display: inline-block;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
}

.wpcf7 label {
	font-weight: 600;
	display: block;
}

span.wpcf7-not-valid-tip {
	margin-top: 0.25rem;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.logged-in .site-header {
	top: 32px;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #002c57;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

a:hover,
a:focus,
a:active {
	color: #002c57;
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	background: #002c57;
	color: #fff;
	border-color: #002c57;
}

a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	text-decoration: none;
	background: #002c57;
	color: #fff;
	border-color: #002c57;
}

a:hover,
a:active {
	outline: 0;
	-webkit-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
}

a,
.site-footer a {
	border-bottom: 1px solid;
	padding: 0 1px 2px 1px;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/

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

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	-webkit-clip-path: inset(50%);
	clip-path: inset(50%);
	height: 1px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

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

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

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

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

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

.updated:not(.published) {
	display: none;
}

.entry-summary {
	margin: 1.5em 0 0;
}

/*.entry-content {
	margin-bottom: 2rem;
}*/

.home .entry-content {
	margin-bottom: 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

.post-thumbnail {
	margin-bottom: 1rem;
}

.entry-meta {
	padding-bottom: 1.65rem;
	font-size: 95%;
}

.single article {
	margin-bottom: 2rem;
}

.search.search-results article {
	padding-bottom: 1.5rem;
	border-bottom: 1px solid #ddd;
	margin-bottom: 1.5rem;
}

.search.search-results .entry-summary p:last-child {
	margin-bottom: 0;
}

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

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# 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 embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* 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;
}

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

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*==============================
=            Header            =
==============================*/

/*----------  Topbar  ----------*/

.top-bar {
	background-color: #002c57;
	padding: 0.55rem 0;
}

.top-header-icon-btn{
	display: none;
}

.topbar-left-column-1 a {
	color: #fff;
	margin-right: 0.5rem;
}

.topbar-left-column-1 a i {
	display: inline-block;
	color: #002c57;
}

.topbar-left-column-1 .skip-link {
	font-size: 15px;
}

.top-bar .topbar-nav-menu {
	float: right;
	font-size: 15px;
	margin-left: -0.5rem;
	margin-right: -0.5rem;
}

.site-header {
	background: #fff;
	-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.site-header.sticky-header {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 9400;
	-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
	-webkit-animation-name: wpmmfadeInDown;
	animation-name: wpmmfadeInDown;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
}

.site-header.sticky-header .top-bar {
	display: none;
}

.top-bar a:hover,
.top-bar a:focus {
	background-color: #fff;
	color: #002c57 !important;
}

/*----------  Navbar  ----------*/

/*- Logo -*/

.navbar-brand {
	margin-right: 0.5rem;
}

.navbar-brand img {
	width: auto;
	max-height: 100px;
}

.navbar-brand:hover,
.navbar-brand:focus {
	background: transparent !important;
}

/*- Menu -*/

.main-navigation a {
	border-bottom: none;
}

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

.main-nav ul li {
	position: relative;
	z-index: 999999;
}

.main-nav ul li a {
	font-size: 16px;
	padding: 0.75rem 1.5rem;
	display: block;
	color: #002c57;
	font-weight: 600;
}

.main-nav>ul>li {
	float: left;
}

.main-nav>ul>li {
	margin-top: 2.25rem;
	margin-bottom: 1.75rem;
}

.main-nav>ul>li>a {
	font-size: 18px;
	padding: 15px 6px;
	margin-left: 0.125rem;
	margin-right: 0.125rem;
}

.main-nav>ul>li>a>i {
	margin-right: 0.75rem;
}

/*- Menu Button -*/

.primary-nav li.btn-outline-primary {
	border: none;
	margin-top: 2.5rem;
	margin-bottom: 1.5rem;
	padding: 0;
}

.primary-nav li.btn-outline-primary a {
	padding: 0.6rem 1.70rem;
}

.primary-nav li.btn-outline-primary a {
	border: 2px solid #002c57;
	border-radius: 5px;
	display: inline-block;
}

.primary-nav li.btn-outline-primary .phone-no {
	border: none;
	padding: 0;
	margin-bottom: 0.25rem;
}

.primary-nav li.btn-outline-primary:hover {
	background-color: transparent;
}

.primary-nav li.btn-outline-primary:not(:disabled):not(.disabled).active,
.primary-nav li.btn-outline-primary:not(:disabled):not(.disabled):active,
.primary-nav li.show>.btn-outline-primary.dropdown-toggle {
	background-color: transparent;
	border-color: transparent;
}

.main-nav ul li.btn-contact {
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

.main-nav ul li.btn-primary a {
	color: #fff;
	font-size: 16px;
}

.main-nav ul li.menu-search-item {
	margin-top: 0.82rem;
}

.main-nav ul li.menu-search-item .header_call_no {
	text-align: right;
	padding-right: 0.25rem;
}

.main-nav ul li.menu-search-item .phone-no {
	padding: 0;
}

/*- Submenu -*/

.main-nav ul ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0.15rem;
	z-index: 99;
	background: #fff;
	min-width: 16rem;
	-webkit-backface-visibility: hidden;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.05);
}

.main-nav ul ul ul {
	top: 0;
	left: 100%;
}

.main-nav ul ul li a:hover {
	background-color: #002c57;
	color: #fff;
}


/*- Menu Dropdown Arrow -*/

.primary-nav li.menu-item-has-children a {
	padding-right: 1.40rem;
}

.primary-nav li i {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 1rem 0.75rem 1rem 0;
	font-size: 16px;
	color: #002c57;
	line-height: initial;
}

.primary-nav>ul>li>i {
	line-height: 1.5rem;
}

.main-nav ul .sub-menu li a {
	color: rgba(0, 44, 87, 0.75);
}

.main-nav ul .sub-menu li+li a {
	border-top: 1px solid #eee;
}

.main-nav ul li a:hover,
.main-nav ul li a:focus,
.main-nav ul li.sfHover>a,
.main-nav ul li.current-menu-item>a,
.main-nav ul li.current-menu-ancestor>a {
	color: #fff;
	background-color: #002c57;
}

.main-nav ul li.current-menu-ancestor>i,
.main-nav li.current-menu-item>i,
.main-nav li.sfHover>i {
	color: #fff;
}


/*- Mobile Menu -*/

body.mobile-nav-active {
	overflow: hidden;
}

body.mobile-nav-active #main-nav {
	right: 0;
	display: block;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.mobile-nav-toggle {
	cursor: pointer;
	color: #002c57;
	padding: 0;
	border: none;
}

.primary-nav .mobile-nav-toggle {
	display: none;
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	font-size: 1.2rem;
}

.mobile-body-overly {
	width: 100%;
	height: 100%;
	z-index: 99999;
	top: 0;
	left: 0;
	position: fixed;
	background: #0b0b0b;
	display: none;
	opacity: 0.85;
}

.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999999;
	background-color: rgba(255, 255, 255, 0.95);
	right: -70%;
	width: 70%;
	overflow-y: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.mobile-phone-icon {
	display: none;
}

.mobile-nav .topbar-right {
	padding-top: 1rem;
}

.mobile-nav .topbar-right ul li a {
	margin: 0;
	padding: 0.5rem 1.25rem;
}

.mobile-nav .inline-nav-menu li {
	display: block;
}

.mobile-nav .inline-nav-menu li:after {
	display: none;
}

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

.mobile-nav ul li {
	position: relative;
	margin: 0;
}

.mobile-nav ul li a {
	color: #44647e;
	padding: 0.5rem 0.65rem;
	display: block;
}

.mobile-nav ul li.menu-item-has-children>a {
	padding-right: 2.25rem;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:focus,
.mobile-nav ul li.active a {
	color: #fff
}

.mobile-nav ul li .sub-menu {
	padding-bottom: 0.75rem;
	padding-left: 1.25rem;
	width: auto !important;
}

.mobile-nav ul li .sub-menu .sub-menu {
	padding-left: 0.9rem;
	padding-bottom: 0.25rem;
}

.mobile-nav ul li li a {
	font-size: 16px;
}

.mobile-nav>ul {
	clear: both;
	padding-top: 2.5rem;
}

.mobile-nav>ul>li {
	border-bottom: 1px solid #e7e7e7;
}

.mobile-nav>ul>li>a {
	padding: 1rem 1.5rem;
	font-weight: 600;
	color: #002c57;
}

.mobile-nav ul .menu-item-has-children i {
	position: absolute;
	right: 0;
	z-index: 99;
	padding: 1rem;
	cursor: pointer;
}

.mobile-nav ul .sub-menu .menu-item-has-children i {
	padding: 0.25rem 1.15rem;
	color: #002c57;
	font-size: 16px;
}

.mobile-nav ul .sub-menu .menu-item-has-children .i:before {
	font-size: 12px;
}

.mobile-nav ul .menu-item-active {
	color: #16a4c8;
}

.mobile-nav li.btn-outline-primary a {
	padding: 0.6rem 1.65rem;
}

.mobile-nav li.btn-outline-primary .phone-no {
	padding: 0 0 0.5rem;
	margin-top: 0rem;
}

.mobile-nav li.btn-outline-primary {
	border-bottom: none;
	padding-top: 1rem;
	margin: 0;
	padding-left: 1.25rem;
	display: block;
	text-align: left;
}

.mobile-nav li.menu-search-item {
	padding: 1rem;
}

/*----------  Under Menu  ----------*/

.secondary-bar {}

#secondary-nav {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	color: #fff;
	margin-left: -25px;
	margin-right: -25px;
}

#secondary-nav li {
	width: 50%;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	position: relative;
}

#secondary-nav li:first-child a::after {
	/* content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -20px;
	border-width: 0px 0px 70px 20px;
	border-style: solid;
	border-color: transparent transparent transparent #f5821f;
	z-index: 1; */
}

#secondary-nav li a {
	font-size: 1.25rem;
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
	text-transform: capitalize;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
	border-right:none;
}

#secondary-nav li a:focus {
	-webkit-box-shadow: none;
	box-shadow: none;
}

#secondary-nav li:first-child a .hover-border::before {
	content: "";
	border-top: 2px solid #002c57;
	width: 30px;
	position: absolute;
	right: -17px;
	top: 0;
	z-index: 1;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

#secondary-nav li:first-child a .hover-border {
	display: block;
	position: absolute;
	border-bottom: 2px solid #002c57;
	right: -2px;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: 5px;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

#secondary-nav li:first-child a:hover .hover-border,
#secondary-nav li:first-child a:focus .hover-border {
	display: block;
	position: absolute;
	border-bottom: 2px solid #f5821f;
	right: -1px;
	bottom: 0;
	z-index: 1;
	width: 5px;
	-webkit-transition: 0.75s all;
	transition: 0.75s all;
}

#secondary-nav li:first-child a:hover .icon-Home:before{
	color: #f5821f;
}

#secondary-nav li:first-child a:hover .hover-border::before,
#secondary-nav li:first-child a:focus .hover-border::before {
	border-color: #f5821f;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

#secondary-nav li a svg {
	overflow: hidden;
	vertical-align: middle;
	height: 100%;
	position: absolute;
	right: -22.33px;
	top: 0;
	bottom: 0;
	z-index: 1;
	fill: #fff;
	stroke: #fff;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

#secondary-nav li a:hover svg,
#secondary-nav li a:focus svg {
	fill: #002c57;
	stroke: #002c57;
	-webkit-transition: 0.5s all;
	transition: 0.5s all;
}

#secondary-nav li:first-child a .text-icon-inner {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

#secondary-nav li:last-child a .text-icon-inner {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-transform: skewX(15deg);
	transform: skewX(15deg);
}

#secondary-nav li:last-child a {
	-webkit-transform: skewX(-15deg);
	transform: skewX(-15deg);
	margin-left: 0.57rem;
	border-left: 2px #002c57 solid;
}

#secondary-nav li a .text-icon-inner {
	/*padding: 0 1rem;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}


#secondary-nav li a .text-icon-inner .icomoon {
	font-size: 2.5rem;
	margin-right: 1rem;
}

/*=====  End of Header  ======*/


/*==============================
=            Footer            =
==============================*/

.footer-widget-area {
	background-color: #002c57;
	padding-top: 30px;
	padding-bottom: 10px;
}

.footer-widget ul {
	list-style: none;
	padding-left: 0;
}

.footer-widget ul li {
	padding: 0 0 1rem 1.15rem;
	position: relative;
	font-size: 15px;
}

.footer-widget ul li:before {
	content: "\f105";
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	position: absolute;
	left: 1px;
	line-height: 24px;
	color: #f4821f;
}

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

.footer-widget a:hover,
.footer-widget ul li a:hover,
.footer-widget .text-white a:hover,
.footer-widget a:focus,
.footer-widget ul li a:focus,
.footer-widget .text-white a:focus {
	background-color: #fff;
	color: #002c57;
}

.footer-widget .text-white a:hover,
.footer-widget .text-white a:focus {
	color: #002c57 !important;
}

.footer-widget a:focus i {
	color: #002c57;
}

.footer-widget a i {
	font-size: 14px;
}

.footer-widget .widget-title {
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	text-transform: capitalize;
	color: #fff;
	font-size: 1.5rem;
}

.footer-widget .widget-title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	border-bottom: 3px solid #f5821f;
	width: 40px;
	display: block;
}

.footer-widget .phone-no svg {
	fill: #fff;
}

.footer-widget .phone-no:hover svg,
.footer-widget .phone-no:focus svg {
	fill: #002c57;
}

/*----------  Footer Info  ----------*/

.site-info {
	padding: 1.5rem 0;
}

.site-info .site-url {
	font-weight: 600;
}

/*=====  End of Footer  ======*/


/*======================================
=            Owl Carousel 2            =
======================================*/

.owl-nav .owl-prev,
.owl-nav .owl-next {
	background-color: transparent;
	text-align: center;
	width: 30px;
	height: 30px;
	line-height: 30px;
	position: absolute;
	display: block !important;
	border: none;
	margin: auto;
}

.owl-nav .owl-prev {
	left: 0;
}

.owl-nav .owl-next {
	right: 0;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
	color: #ccc;
	line-height: 30px;
}

.owl-nav .owl-prev:hover i,
.owl-nav .owl-next:hover i {
	color: #999;
}

.owl-nav .owl-prev .flaticon:before,
.owl-nav .owl-next .flaticon:before {
	line-height: 30px;
	font-size: 16px;
}

.owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	margin-top: 40px;
}

.owl-dot {
	display: inline-block;
	zoom: 1;
	outline: none;
	opacity: 0.5;
}

.owl-dot.active {
	opacity: 1;
}

.owl-dots .owl-dot span {
	width: 13px;
	height: 13px;
	margin: 4px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
	border-radius: 30px;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
	background: #fff;
}

/*=====  End of Owl Carousel 2  ======*/


/*==========================================
=            Theme Common Class            =
==========================================*/

.text-color2 {
	color: #f5821f;
}

.btn-icon {
	background-color: #002c57;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 38px;
	display: inline-block;
	border: 2px solid #002c57;
	border-radius: 50%;
	color: #fff;
}

.btn-icon:hover {
	background-color: transparent;
	color: #002c57;
}

.phone-no svg {
	width: 16px;
	height: 16px;
	margin-bottom: 0.2rem !important;
	margin-right: 0.3rem;
	fill: #002c57;
}

.phone-no:hover svg,
.phone-no:focus svg {
	fill: #fff;
}

.text-white.phone-no svg {
	fill: #fff;
}

.text-white.phone-no:hover svg,
.text-white.phone-no:focus svg {
	fill: #002c57 !important;
}

/*----------  Horizontal Inline Nav Menu   ----------*/

.inline-nav-menu {
	margin: 0;
	padding: 0;
}

.inline-nav-menu li {
	display: inline-block;
	position: relative;
	margin-bottom: 0;
}

.inline-nav-menu li:after {
	content: '';
	position: absolute;
	top: 4px;
	bottom: 4px;
	right: -2px;
	border-right: 1px solid #9d9ea3;
}

.inline-nav-menu li:last-child:after {
	display: none;
}

.inline-nav-menu li a {
	margin: 0.5rem;
}

/*----------  Social List  ----------*/

.widget_activ_social_profile {
	margin-bottom: 0;
}

.social-icons-list a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 34px;
	height: 34px;
	color: #002c57;
	background-color: #fff;
	line-height: 30px;
	margin-right: 0.5rem;
	border: 1px solid #fff;
	border-radius: 50%;
	text-align: center;
	-webkit-box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.1);
}

.social-icons-list a svg {
	width: 16px;
	height: 16px;
	fill: #002c57;
}

.social-icons-list a:hover,
.social-icons-list a:focus {
	background-color: #002c57;
}

.social-icons-list a:hover svg,
.social-icons-list a:focus svg {
	fill: #fff;
}

/*----------  Icon List  ----------*/

.icon-list,
.icon-list ul {
	list-style: none;
	overflow: hidden;
}

.icon-list li,
.icon-list ul li {
	position: relative;
	padding-left: 1.5rem;
	padding-bottom: 0.65rem;
}

.icon-list li i {
	position: absolute;
	left: 0;
	line-height: 24px;
	color: #f4821f;
}

.icon-list.column-2 li,
.icon-list .column-2 li,
.icon-list.column-3 li,
.icon-list .column-3 li {
	float: left;
	padding-right: 0.5rem;
}

.icon-list.column-2 li,
.icon-list .column-2 li {
	width: 50%;
}

.icon-list.column-3 li,
.icon-list .column-3 li {
	width: 33.33%;
}

.icon-list ul li {
	padding: 0 0 1rem 1.15rem;
}

.icon-list ul li:before,
.icon-list li:before {
	content: "\f105";
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	position: absolute;
	left: 2px;
	line-height: 24px;
	color: #f4821f;
}

.text-white.icon-list li a:hover,
.text-white.icon-list li a:focus {
	background-color: #fff;
	color: #002c57 !important;
}

.icon-list.icon-hide li:before {
	display: none;
}

.icon-list.icon-primary-color li i {
	color: #002c57;
}

/*----------  Fullwidth Section  ----------*/

.full-width {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

/*=====  End of Theme Common Class  ======*/


/*================================================
=            Visual Composer Override            =
================================================*/

/*----------  Override Default CSS  ----------*/

#vc_load-inline-editor {
	display: none;
}

.site-main .vc_col-has-fill>.vc_column-inner,
.site-main .vc_row-has-fill+.vc_row-full-width+.vc_row>.vc_column_container>.vc_column-inner,
.site-main .vc_row-has-fill+.vc_row>.vc_column_container>.vc_column-inner,
.site-main .vc_row-has-fill>.vc_column_container>.vc_column-inner {
	padding-top: 0px;
}

/*----------  Button  ----------*/

.vc_general.vc_btn3.vc_btn3-size-md {
	font-size: inherit;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 30px;
	padding-right: 30px;
}

/*----------  Button Fill  ----------*/

.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2 {
	color: #fff;
	border: 2px solid;
}

.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:hover,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:focus {
	background-color: #002c57;
	border-color: #002c57;
}

.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:hover,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:focus {
	background-color: #f5821f;
	border-color: #f5821f;
}

.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:hover,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:focus,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:hover,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:focus {
	background: transparent;
	border-width: 2px;
	color: initial;
}

.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:hover,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:focus {
	color: #002c57;
}

.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:hover,
.vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:focus {
	color: #f5821f;
}

/*----------  Button Outline  ----------*/

.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline {
	padding-top: 14px;
	padding-bottom: 14px;
	padding-right: 30px;
	padding-left: 30px;
}

.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1,
.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2 {
	border: 2px solid;
}

.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1 {
	border-color: #002c57;
	color: #002c57;
}

.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2 {
	border-color: #f5821f;
	color: #f5821f;
}

.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1:hover,
.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1:focus {
	background-color: #002c57;
	border-color: #002c57;
	color: #fff;
}

.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2:hover,
.vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2:focus {
	background-color: #f5821f;
	border-color: #f5821f;
	color: #fff;
}

/*----------  Heading  ----------*/


h1.vc_custom_heading {
	position: relative;
	padding-bottom: 1.25rem;
	margin-top: 1.75rem;
	margin-bottom: 1.5rem;
}

h1.vc_custom_heading:after {
	content: "";
	position: absolute;
	border-bottom: 5px solid #f5821f;
	width: 45px;
	margin-left: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

h1.vc_custom_heading.text-left:after {
	margin-left: 0;
}

h1.vc_custom_heading.text-center:after {
	margin: auto !important;
}

h1.vc_custom_heading.text-right:after {
	margin-right: 0;
}

h1 span,
h1.vc_custom_heading span,
h2 span,
h2.vc_custom_heading span {
	color: #f5821f;
}

.entry-content h2:first-child,
.entry-content h2.vc_custom_heading:first-child {
	margin-top: 0;
}

/*=====  End of Visual Composer Override  ======*/


/*==========================================
=            Bootstrap Override            =
==========================================*/

/*----------  Typography  ----------*/

.lead {
	font-size: 1.15rem;
	line-height: 2rem;
}

.lead-big {
	font-size: 1.25rem;
	line-height: 2rem;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
	color: #fff;
}

.text-white a {
	color: #fff;
}

.text-white a:hover {
	color: #f5821f;
}

/*----------  Background  ----------*/

.bg-light {
	background-color: #f9fcff !important;
}

/*----------  Button  ----------*/

.btn {
	border-width: 2px;
	padding: 20px 0;
}

.btn-primary {
	background-color: #002c57;
	border-color: #002c57;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
	color: #002c57;
	background-color: transparent;
	border-color: #002c57;
}

.btn-secondary {
	background-color: #fff;
	border-color: #002c57;
	color: #002c57;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
	color: #fff;
	background-color: #002c57;
	border-color: #f5821f;
}

.btn-outline-primary {
	color: #002c57;
	border-color: #002c57;
}

.btn-secondary:hover::before {
	display: none;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 44, 87, 0.5);
	box-shadow: 0 0 0 0.2rem rgba(0, 44, 87, 0.5);
}

.btn.focus,
.btn:focus {
	-webkit-box-shadow: 0 0 0 0.2rem rgba(0, 44, 87, 0.25);
	box-shadow: 0 0 0 0.2rem rgba(0, 44, 87, 0.25);
}

.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary:focus {
	color: #fff;
	background-color: #002c57;
	border-color: #002c57;
}

/*=====  End of Bootstrap Override  ======*/

/*=============================================
=            Font Awesome Override            =
=============================================*/

.fa-phone {
	-webkit-transform: rotate(95deg);
	transform: rotate(95deg);
}

/*=====  End of Font Awesome Override  ======*/


/*==================================
=            Page Title            =
==================================*/

/*----------  Simple BG Style  ----------*/

.page-title-background {
	padding: 1.75rem 0;
}

.page-title-background .entry-title {
	margin: 0;
	position: relative;
	padding-bottom: 1.15rem;
}

.page-title-background .entry-title:after {
	content: "";
	position: absolute;
	bottom: 0;
	border-bottom: 5px solid #f5821f;
	width: 45px;
	display: block;
}


/*----------  Rounded BG Style  ----------*/

.title-background {
	position: relative;
	background-color: #f9fcff;
	margin-bottom: 50px;
	-webkit-box-shadow: inset 0px 10px 5px -10px rgba(0, 0, 0, 0.1), inset 0px -10px 5px -10px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 10px 5px -10px rgba(0, 0, 0, 0.1), inset 0px -10px 5px -10px rgba(0, 0, 0, 0.1);
}

.title-body {
	height: 330px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.title-bg-img {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
	width: 100%;
	min-height: 300px;
}

.title-bg-img:before {
	content: '';
	background-image: url('assets/img/curve-EDITED.svg');
	position: absolute;
	left: -2px;
	top: 0;
	bottom: 0;
	z-index: 9;
	display: none;
	width: 145px;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-box-shadow: inset 0px 10px 5px -10px rgba(0, 0, 0, 0.1), inset 0px -10px 5px -10px rgba(0, 0, 0, 0.1);
	box-shadow: inset 0px 10px 5px -10px rgba(0, 0, 0, 0.1), inset 0px -10px 5px -10px rgba(0, 0, 0, 0.1)
}

.title-body h1 {
	margin-top: 0;
	margin-bottom: 1rem !important;
}

.home .title-body .lead {
	font-size: 20px;
	line-height: 34px;
}

.title-bg-img .video-container {
	width: 100%;
}

.title-bg-img .video-container .wp-video {
	width: 100% !important;
}

.title-bg-img .video-container .mejs-container {
	height: 330px !important;
}

.title-bg-img .video-container .mejs-container iframe {
	height: 100% !important;
}

.title-bg-img .video-container .mejs-controls {
	opacity: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	.title-bg-img:before {
		width:121px;
	}
 }


@media (min-width: 600px) {
	.title-bg-img:before {
		left: -25px;
	}
}

@media (min-width: 768px) {
	.title-bg-img:before {
		display: block;
		left: -20px;
	}
	.support-icon-block h3{		
		font-size: 16px;
	}
}

@media (min-width: 1200px) {
	.title-bg-img:before {
		left: -15px;
	}
}

@media (min-width: 1367px) {
	.title-bg-img:before {
		left: -20px;
	}
}

@media (min-width: 1400px) {
	.title-bg-img:before {
		left: -15px;
	}
}

@media (min-width: 1500px) {
	.title-bg-img:before {
		left: -10px;
	}
}

@media (min-width: 1600px) {
	.title-bg-img:before {
		left: -4px;
	}
}

/*=====  End of Page Title  ======*/



/*==================================
=            Newsletter            =
==================================*/

/*----------  Newsletter  ----------*/

.newsletter-section {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #002c57;
	background-image: url('assets/img/subscribe-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}

/*----------  Heading  ----------*/

.newsletter-section h1 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 400;
	color: #fff;
}

.newsletter-section p {
	margin-bottom: 0;
}

/*----------  Subscription Form  ----------*/

.newsletter-form {
	padding-bottom: 1rem;
}

.newsletter-form input[type="email"] {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.newsletter-form input[type="submit"] {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0
}

.newsletter-form input[type="submit"] {
	border-color: #fff;
	color: #fff;
	margin-top: 1.75rem;
	padding-left: 50px;
	padding-right: 50px;
}

.newsletter-form input[type="submit"]:hover,
.newsletter-form input[type="submit"]:focus {
	border-color: #fff;
	background: #fff;
	color: #002c57;
}

.newsletter-section .wpcf7-validation-errors {
	display: none !important;
}

.newsletter-section .wpcf7-response-output {
	background: #fff;
	margin-top: 0;
	margin-left: 0;
}

.newsletter-section span.wpcf7-not-valid-tip {
	background-color: #fff;
	color: #000;
	margin-top: 0.5rem;
	padding: 0 0.25rem;
}

/*----------  Call Phone  ----------*/

.newsletter-section .phone-no {
	font-size: 1.1rem;
}

.newsletter-section .phone-no:hover,
.newsletter-section .phone-no:focus {
	background-color: #fff;
	color: #002c57 !important;
}

.newsletter-section .phone-no:hover svg,
.newsletter-section .phone-no:focus svg {
	fill: #002c57 !important;
}

/*----------  Social Media  ----------*/

.newsletter-section .widget_activ_social_profile {
	display: inline-block;
}

/*=====  End of Newsletter  ======*/

.location-filter-block button {
	padding: 10px 50px;
}

/*==================================
=            Contact Us            =
==================================*/

.contactus-section {
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
	background-image: url("assets/img/supportus-bg.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.contactus-section:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 0.35);
}

.contactus-section .icon-list li {
	color: #ddd;
	font-size: 18px !important;
}

.contactus-section .icon-list li a {
	color: #ddd !important;
}

.contactus-section .icon-list li a:hover {
	color: #f4821f !important;
}

.contactus-section .contactus-body h2 {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 2.25rem
}

.contactus-section .contactus-body h2:after {
	display: none;
}

.contactus-section .contactus-body .vc_btn3-size-lg {
	padding: 1.15rem 1.75rem;
	font-size: 18px;
	text-transform: capitalize;
	font-weight: 700;
	display: inline-block;
}

.contactus-section .contactus-body .vc_btn3-size-lg i {
	margin-left: 0.5rem;
}

.contactus-section p {
	font-size: 24px;
	color: #f5821f;
}

.contactus-section .phone-no {
	display: inline-block;
	margin-bottom: 1.25rem;
	margin-right: 0.35rem;
	border-bottom: none;
	font-size: 1.2rem;
}

/*----------  Contact Page  ----------*/

.map-link a:hover {
	background-color: #ccc !important;
}

.map-link a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	background-color: #ccc !important;
}


/*=====  End of Contact Us  ======*/



/*=====================================
=            Service Block            =
=====================================*/

.service-section {
	background-color: rgba(249, 252, 255, 0.3);
}

.service-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.service-block {
	border-radius: 50%;
	margin-bottom: 35px;
	text-align: center;
	position: relative;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	-webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.06);
	box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.06);
}

.service-block-inner img {
	width: 60px;
}

.service-block-inner .title,
.service-block-inner h5 {
	margin-top: 0.75rem;
	margin-bottom: 0;
	font-size: 1.1rem;
}

.service-block-inner .btn-arrow-icon {
	position: absolute;
	right: -15px;
	top: 50%;
	background: #002c57;
	color: #fff;
	width: 30px;
	height: 30px;
	border-radius: 500%;
	text-align: center;
	font-size: 14px;
	display: inline-block;
	line-height: 30px;
	z-index: 4;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.service-block-hover-img,
.service-block-hover-overlay,
.service-block-hover-text {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	text-align: center;
	margin: 0 auto;
	opacity: 0;
	border-radius: 50%;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.service-block-hover-overlay {
	background-color: #002c57;
}

.service-block .service-block-hover-text {
	/*color: #fff;*/
	padding: 0 20px;
	font-size: 16px;
}

.service-block:hover,
.service-block:focus {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	background-color: #002c57;
	color: #fff;
}

.service-block-hover,
.service-block:hover .service-block-hover {
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.service-block:hover .service-block-inner h4,
.service-block:focus .service-block-inner h4 {
	color: #fff !important;
}

.service-block:hover .service-block-inner img,
.service-block:focus .service-block-inner img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.service-block:hover .service-block-hover-img,
.service-block:focus .service-block-inner img {
	opacity: 1;
	z-index: 1;
	-webkit-transition: all 0.4s ease-in-out;
	transition: all 0.4s ease-in-out;
}

.service-block:hover .service-block-hover-overlay,
.service-block:focus .service-block-hover-overlay {
	opacity: 1;
	z-index: 2;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.service-block-hover-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.service-block:hover .service-block-hover-text,
.service-block:focus .service-block-hover-text {
	opacity: 1;
	z-index: 3;
}

.service-block:hover .btn-arrow-icon,
.service-block:focus .btn-arrow-icon {
	background-color: #ddd;
	color: #002c57;
}



/*=====  End of Service Block  ======*/



/*----------  Box Icon List  ----------*/

.box-icon-list {
	list-style: none;
	padding-left: 0;
}

.box-icon-list li a {
	position: relative;
}

.box-icon-list li a {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.box-icon-list li a {
	color: #002c57;
	padding: 0.9rem 3.25rem 0.9rem 1rem;
	background-color: #f7f9fa;
	border: 1px solid rgba(13, 58, 96, 0.12);
	border-radius: 3px;
	margin-bottom: 0.8rem !important;
	position: relative;
	display: block;
	font-weight: 700;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.box-icon-list li a i {
	color: #F5821F;
	font-weight: 900;
	position: absolute;
	right: 0.75rem;
	top: 0.65rem;
	bottom: 0.65rem;
	background-color: #002c57;
	line-height: 30px;
	width: 34px;
	height: 34px;
	border: 2px solid #002c57;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.box-icon-list li a:hover,
.box-icon-list li a:focus {
	color: #fff;
	background: #002c57;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0 3px 25px 1px rgba(0, 0, 0, 0.1);
	box-shadow: 0 3px 25px 1px rgba(0, 0, 0, 0.1);
}

.box-icon-list li a:hover i,
.box-icon-list li a:focus i {
	background-color: #fff;
	color: #002c57;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}



/*========================================
=             Location Module            =
========================================*/

/*----------  Home Location  ----------*/

.location-section .bg-map-image {
	padding: 0px 0 0px 20px;
}

.location-section .location-content-block {
	background-color: #002c57;
}

@media(min-width: 992px) {
	.location-section .location-content-block {
		padding: 0 25px 25px 0;
	}
}

.location-content-block:after {
	content: '';
	position: absolute;
	left: -99%;
	top: 0;
	bottom: 0;
	background-color: #002c57;
	display: block;
	width: 100%;
}

/*----------  Filter Section  ----------*/

.location-filter-block {
	padding-bottom: 2rem;
	font-size: 16px;
	border-bottom: 1px solid #ebebeb;
}

.location-filter-block .form-group {
	margin-bottom: 15px;
}

.location-filter-block .search-text {
	display: block;
}

.location-filter-block label {
	font-weight: 600;
	margin-bottom: -8px;
	display: inline-block;
}

.location-filter-block>label {
	font-size: 18px;
}

.location-filter-block legend {
	font-size: 16px;
	margin-bottom: .3rem;
}

.location-filter-block input {
	margin-top: 10px;
}

.checkbox-list {
	margin-left: -5px;
	margin-right: -5px;
	margin-top: -0.7rem;
}

.checkbox-list label {
	display: inline-block;
	padding: 5px;
	min-width: 225px;
	font-weight: normal;
	font-size: 15px;
}

.checkbox-list input {
	margin-right: 6px;
	margin-left: 0;
}

.location-filter-block .filter-submit {
	padding-top: 8px;
	padding-bottom: 8px;
}

.location-filter-block .filter-submit {
	padding-top: 8px;
	padding-bottom: 8px;
}

/* Dropdown Multiselect */
.checkbox-list .multiSel {
	margin-bottom: 0;
}

.location-filter-block .dropdown a {
	position: relative;
	font-weight: 500;
}

.location-filter-block .dropdown a:after {
	content: "\f107";
	position: absolute;
	right: 10px;
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
}

.dropdown dd,
.dropdown dt {
	margin: 0px;
	padding: 0px;
	background: #fff;
	border-radius: 4px;
}

.dropdown ul {
	margin: -1px 0 0 0;
}

.dropdown dd {
	position: relative;
}

.dropdown a,
.dropdown a:visited {
	color: #666;
	text-decoration: none;
	outline: none;
	background-color: #fff;
}

.dropdown a:hover,
.dropdown a:focus {
	color: #666;
}

.dropdown dt a {
	background-color: transparent;
	display: block;
	margin-top: 10px;
	overflow: hidden;
	border: 1px solid #ccc;
	width: 100%;
	border-radius: 4px;
	padding: 10px 25px 10px 13px;
}

.dropdown dt a span,
.multiSel span {
	cursor: pointer;
	display: inline-block;
}

.multiSel span {
	padding-right: 4px;
}

.dropdown dd ul {
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	color: #666;
	display: none;
	left: 0px;
	padding: 5px 15px 15px;
	position: absolute;
	top: 2px;
	width: 100%;
	list-style: none;
	min-height: 100px;
	overflow: auto;
	z-index: 9999;
	-webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15);
}

.dropdown span.value {
	display: none;
}

.dropdown dd ul li a {
	padding: 5px;
	display: block;
}

.dropdown dd ul li a:hover {
	background-color: #fff;
}

/*----------  Homepage Filter Override  ----------*/

.home .location-filter-block button,
.home .location-filter-block input[type="button"],
.home .location-filter-block input[type="reset"],
.home .location-filter-block input[type="submit"] {
	border-color: #fff;
	color: #fff;
}

.home .location-filter-block button:hover,
.home .location-filter-block input[type="button"]:hover,
.home .location-filter-block input[type="reset"]:hover,
.home .location-filter-block input[type="submit"]:hover,
.home .location-filter-block button:focus,
.home .location-filter-block input[type="button"]:focus,
.home .location-filter-block input[type="reset"]:focus,
.home .location-filter-block input[type="submit"]:focus {
	border-color: #fff;
	background: #fff;
	color: #002c57;
}

.home .checkbox-list label {
	min-width: 185px;
}

.location-section .location-content-block .vc_custom_heading {
	font-weight: 500;
	display: inline-block;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
	position: relative;
	font-size: 1.25rem;
}

.location-section .location-content-block .vc_custom_heading:after {
	content: "";
	border-bottom: 2px solid #f5821f;
	width: 40px;
	position: absolute;
	left: 0;
	bottom: 0;
}

/*----------  Location Image Mapping  ----------*/

.location-section .bg-map-image .drag_element a {
	border-bottom: none;
	padding: 0;
}

.location-section .bg-map-image .vc_custom_heading a:hover,
.location-section .bg-map-image .vc_custom_heading a:focus {
	color: #fff !important;
}

.location-section .bg-map-image .drag_element a:hover img,
.location-section .bg-map-image .drag_element a:focus img {
	background-color: #fff !important;
}

.location-section .bg-map-image .drag_element a:focus img.pins_image_hover,
.location-section .bg-map-image .drag_element a:hover img.pins_image_hover {
	display: block !important;
}

.location-section .bg-map-image .drag_element .pins_image {
	width: 34px;
	padding: 3px;
}

.box_view_html p {
	margin-bottom: 0;
}

/*----------  Locations List  ----------*/

#location-list {
	padding-bottom: 3rem;
	padding-top: 2rem;
}

.location-box {
	background-color: #fff;
	border: 1px solid rgba(0, 44, 87, 0.15);
	border-radius: .3rem;
	width: 100%;
	margin-bottom: 2rem;
	position: relative;
	-webkit-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.1);
}

.location-box .location-header {
	background-color: #002c57;
	padding: 1rem 1.25rem;
	border-top-left-radius: .3rem;
	border-top-right-radius: .3rem;
}

.location-box .location-header .title {
	color: #fff;
	margin: 0;
	padding: 0;
	border: none;
	font-weight: 400;
	font-size: 1.125rem;
}

.location-box .location-body {
	padding: 1.25rem;
	-ms-flex: 1 1 auto;
	-webkit-box-flex: 1;
	flex: 1 1 auto;
}

.location-box .location-body h6 {
	font-size: 1.05rem;
}

.location-box .location-body .icon-list li {
	padding-bottom: 0.75rem;
}

.location-box .location-footer a {
	position: absolute;
	right: 1.25rem;
	bottom: 1.25rem;
}

.location-box .icon-list a:hover,
.location-box .icon-list a:focus {
	background-color: #002c57;
	color: #fff !important;
}

/*----------  Single Location Page  ----------*/

.single-location .suburb-content {
	padding-bottom: 1.15rem;
}

/*----------  Single Taxonomy Page  ----------*/

.suburb-content .contactus-section {
	margin-top: 3.5rem;
}

.suburb-content .icon-list a:hover,
.suburb-content .icon-list a:focus {
	background-color: #002c57;
	color: #fff !important;
}

.googlemap-img-block {
	border-top: 1px solid #ebebeb;
	margin-top: 2rem;
	padding-top: 2.5rem;
}

.googlemap-img-block a {
	padding: 6px;
	background-color: #ebebeb;
}

.googlemap-img-block a:hover,
.googlemap-img-block a:focus {
	background-color: #ccc;
}

.googlemap-img-block a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
}

/*=====  End of Location Module  ======*/


/*==========================================
=            Support Us Section            =
==========================================*/

.supportus-section {
	background-image: url(assets/img/supportus-bg.jpg);
	background-size: cover;
	padding-top: 35px;
	padding-bottom: 25px;
	position: relative;
}

.supportus-section:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	display: block;
	background-color: rgba(255, 255, 255, 0.45);
}

.supportus-section h2.vc_custom_heading {
	margin-top: 0;
	margin-bottom: 2.15rem;
}

.supportus-section .col {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.support-icon-block {
	background-color: rgb(247, 249, 250);
	padding: 0;
	text-align: center;
	position: relative;
	border-radius: 8px;
	margin: 0 0 35px;
	border: 1px solid rgba(13, 59, 95, 0.1);
	z-index: 1;
	-webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.05);
	-webkit-transition: all .3s;
	transition: all .3s;
}

.support-icon-block:before {
	content: " ";
	width: 100%;
	height: 95%;
	position: absolute;
	top: auto;
	bottom: 3px;
	left: 0;
	z-index: -3;
	border-radius: 8px;
	background-image: linear-gradient(100deg, rgba(243, 132, 33, 0.85), rgba(246, 130, 32, 0.6));
	background-repeat: repeat-x;
	outline: 1px solid transparent;
	-webkit-transition: all .5s;
	transition: all .5s;
}

.support-icon-block.icon-active:before,
.support-icon-block:hover:before,
.support-icon-block:focus:before {
	-webkit-transform: rotate(2deg) translateX(-5px) translateY(16px);
	transform: rotate(2deg) translateX(-5px) translateY(16px);
}

.support-icon-block.icon-active,
.support-icon-block:hover,
.support-icon-block:focus {
	margin-top: -8px;
	margin-bottom: 43px;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.support-icon-block a {
	border-radius: 8px;
	display: block;
	background: #fff;
	border: 2px solid #fff;
	min-height: 160px;
}

.support-icon-block a img {
	max-width: 75%;
	margin: auto;
}

.support-icon-block h3 {
	font-weight: 600;
	color: #002c57;
	margin: 0;
	padding-bottom: 1.15rem;
}

.support-icon-block.two-lines h3 {
	padding-bottom: 0.5rem;
	margin-top: -0.75rem;
}

/*=====  End of Support Us Section  ======*/



/*=========================================
=            Go To Page Module            =
=========================================*/

.go-to-page-block {
	width: 100%;
	padding: 2.25rem 2.5rem 1.85rem;
	background-color: #f7f9fa;
	border: 1px solid rgba(13, 58, 96, 0.08);
	border-radius: 5px;
	overflow: hidden;
	display: block;
	margin-bottom: 35px !important;
	position: relative;
	-webkit-box-shadow: 0 2px 13px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 13px 0px rgba(0, 0, 0, 0.1);
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}

.go-to-page-block:hover {
	margin-top: -3px;
	margin-bottom: 38px !important;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	-webkit-box-shadow: 0 3px 25px 2px rgba(0, 0, 0, 0.13);
	box-shadow: 0 3px 25px 2px rgba(0, 0, 0, 0.13);
}

.go-to-page-block .title {
	font-size: 1.5rem;
	margin-top: 0;
}

.go-to-page-block p {
	padding-right: 3rem;
}

.go-to-page-block .btn-icon {
	background-color: #002c57;
	text-align: center;
	width: 40px;
	height: 40px;
	line-height: 40px;
	display: inline-block;
	position: absolute;
	right: 1.75rem;
	bottom: 1.75rem;
	border: 2px solid #002c57;
	border-radius: 50%;
}

.go-to-page-block .btn-icon:hover,
.go-to-page-block .btn-icon:focus {
	background-color: #fff;
}

.go-to-page-block .btn-icon:hover i,
.go-to-page-block .btn-icon:focus i {
	color: #002c57;
}

.go-to-page-block .btn-icon i {
	color: #fff;
	line-height: 36px;
	font-size: 24px
}
.high-contrast-body .post-5177 .vc_custom_1571219355105,
.high-contrast-body .post-4428 .activ-pathway-rto-icon-box,
.high-contrast-body .post-5252 .vc_custom_1571200749490,
.high-contrast-body .post-5252 .vc_custom_1571200759577,
.high-contrast-body .post-5262 .vc_custom_1571230043179{
	background: #000 !important;
}

.high-contrast-body .training-faq .title-border::after{
	display: none;
}

.high-contrast-body .pagination-div span,
.high-contrast-body .pagination-div .page-numbers{
	background: #000 !important;
	color: #fff !important;
	border: 2px #fff solid;
}

.high-contrast-body .pagination-div span:hover,
.high-contrast-body .pagination-div span:focus,
.high-contrast-body .pagination-div .page-numbers:hover,
.high-contrast-body .pagination-div .page-numbers:focus{
	background: #fff !important;
	color: #000 !important;
	border: 2px #fff solid;
}

.high-contrast-body .our-program-block .btn-our-program{
	background: #000;
	border: 2px #fff solid;
}
.high-contrast-body .our-program-block .btn-our-program:hover,
.high-contrast-body .our-program-block .btn-our-program:focus{
	background: #fff;
	border: 2px #fff solid;
	color: #000;
}

.our-program-block{
	border-radius: 15px;
	background: #FAFAFA;
	margin-right: 20px;
}
.our-program-block img{
	width: 60px;
	height: 60px;
}

.btn-our-program{
	float: right;
	background: #fff;
	border: 2px #002c57 solid;
	padding: 10px 20px;
	border-radius: 6px;
}

/*=====  End of Go To Page Module  ======*/

/*============================
=            News            =
============================*/

.news-block {
	margin-bottom: 35px !important;
	border: 1px solid rgba(13, 58, 99, 0.1);
	background-color: #fff;
	position: relative;
}

.news-block img {
	border-bottom: 1px solid rgba(13, 58, 99, 0.1);
}

.news-block .news-body {
	position: relative;
	padding: 1.25rem 1.25rem 1.75rem;
	background: #fff;
	border-radius: 0 0 5px 5px;
	font-size: 15px;
	min-height: 180px;
}

.news-block .news-body .title {
	font-size: 1rem;
	margin-bottom: 0.75rem;
	line-height: 1.4rem;
}

.news-block .news-body .title a {
	color: #002c57;
	border-bottom: none;
	padding: 0;
}

.news-block:hover .news-body .title a,
.news-block:focus .news-body .title a {
	color: #fff;
	background: #002c57;
}

/*.news-block .news-body .title a:hover,
.news-block .news-body .title a:focus {
	color: #fff;
}*/

.news-block .news-body .date {
	position: absolute;
	left: -8px;
	background: #002c57;
	color: #fff;
	padding: 3px 30px 3px 30px;
	font-size: 13px;
	top: -27px;
	-webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

.news-block .news-body .date:before {
	content: "";
	position: absolute;
	display: block;
	border-style: solid;
	border-color: #0f548a transparent transparent transparent;
	bottom: -8px;
	left: 0px;
	border-width: 8px 0 0 8px;
}

.news-block .item-btn,
.news-block .item-btn:hover {
	display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    background: transparent;
    border: 0px;
}

/*=====  End of News  ======*/

/*============================
=            Blog            =
============================*/

.blog-block {
	margin-bottom: 35px !important;
	border: 1px solid rgba(13, 58, 99, 0.1);
	background-color: #fff;
	position: relative;
}

.blog-block img {
	border-bottom: 1px solid rgba(13, 58, 99, 0.1);
}

.blog-block .blog-body {
	position: relative;
	padding: 1.25rem 1.25rem 1.75rem;
	background: #fff;
	border-radius: 0 0 5px 5px;
	font-size: 15px;
	min-height: 180px;
}

.blog-block .blog-body .title {
	font-size: 1rem;
	margin-bottom: 0.75rem;
	line-height: 1.4rem;
}

.blog-block .blog-body .title a {
	color: #002c57;
	border-bottom: none;
	padding: 0;
}

.blog-block:hover .blog-body .title a,
.blog-block:focus .blog-body .title a {
	color: #fff;
	background: #002c57;
}

/*.blog-block .blog-body .title a:hover,
.blog-block .blog-body .title a:focus {
	color: #fff;
}*/

.blog-block .blog-body .date {
	position: absolute;
	left: -8px;
	background: #002c57;
	color: #fff;
	padding: 3px 30px 3px 30px;
	font-size: 13px;
	top: -27px;
	-webkit-box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 1px 2px 5px 0px rgba(0, 0, 0, 0.25);
}

.blog-block .blog-body .date:before {
	content: "";
	position: absolute;
	display: block;
	border-style: solid;
	border-color: #0f548a transparent transparent transparent;
	bottom: -8px;
	left: 0px;
	border-width: 8px 0 0 8px;
}

.blog-block .item-btn,
.blog-block .item-btn:hover {
	display: block;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 3;
    background: transparent;
    border: 0px;
}

/*=====  End of News  ======*/


/*==================================
=            Case Study            =
==================================*/

.case-study-block {
	background-color: #fff;
	padding: 2.5rem;
	-webkit-box-shadow: 0 2px 10px 1px rgba(0, 44, 87, 0.08);
	box-shadow: 0 2px 10px 1px rgba(0, 44, 87, 0.08);
}

.training-faq{
	padding: 20px 15px 20px 0;
	border-radius: 16px;
	margin-bottom: 50px;
}

.high-contrast-body .training-faq{
	box-shadow: 0 0 20px -2px #fff;
	margin-bottom: 50px;
	overflow: hidden;
}

.cs-title {
	margin-top: 0.75rem;
}

.title-border {
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}

.title-border::after {
	content: "";
	position: absolute;
	border-bottom: 5px solid #f5821f;
	width: 45px;
	margin-left: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

/*=====  End of Case Study  ======*/

/*=========================================
=            Pagination            =
=========================================*/

.pagination-div{

}
.pagination-div span{
	font-size: 28px;
	padding: 5px 15px;
	background: #002c57 !important;
	color: #fff !important;
	border-radius: 6px;
	margin-right: 10px;
	box-shadow: 0 2px 10px 1px rgba(0, 44, 87, 0.08);
}
.pagination-div .page-numbers{
	font-size: 20px;
	padding: 10px 15px;
	background: #fff;
	color: #002c57;
	border-radius: 6px;
	margin-right: 10px;
	box-shadow: 0 2px 10px 1px rgba(0, 44, 87, 0.08);
	border-bottom: 0px;
}
.pagination-div .prev,
.pagination-div .next{
	font-size: 18px!important;
	display: none;
}
.training-faq .title-border{
	padding-bottom: 0;
	margin-bottom: 1rem;
	color: #002c57;
}
.training-faq .title-border:after{
	border-bottom: 0;
}

/*=====  End of Pagination  ======*/

/*=========================================
=            Contact List Item            =
=========================================*/

.listing-group {
	padding-top: 0.25rem;
	padding-bottom: 0.5rem;
}

.listing-group.width-10 .list-row .col-left {
	width: 10%;
}

.listing-group.width-20 .list-row .col-left {
	width: 20%;
}

.listing-group.width-30 .list-row .col-left {
	width: 30%;
}

.listing-group.width-40 .list-row .col-left {
	width: 40%;
}

.listing-group.width-50 .list-row .col-left {
	width: 50%;
}

.listing-group.width-60 .list-row .col-left {
	width: 60%;
}

.listing-group.width-70 .list-row .col-left {
	width: 70%;
}

.listing-group.width-80 .list-row .col-left {
	width: 80%;
}

.listing-group.width-90 .list-row .col-left {
	width: 90%;
}

.listing-group.width-100 .list-row .col-left {
	width: 100%;
}

.listing-group .list-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 1.25rem;
}

.listing-group .list-row .list-title {
	font-weight: 600;
	position: relative;
	padding-left: 20px;
	padding-right: 25px;
}

.listing-group .list-row .list-title:before {
	content: "\f105";
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	position: absolute;
	left: 1px;
	line-height: 22px;
	color: #f4821f;
	font-size: 1.15rem;
}

.listing-group .list-row .list-title:after {
	content: "-";
	position: absolute;
	right: 1rem;
	line-height: 22px;
}

.listing-group .list-row .list-content {
	position: relative;
}

.listing-group .contact-list-row .list-content .lable {
	margin-right: 0.25rem;
}

/*=====  End of Contact List Item  ======*/


/*============================
=            Team            =
============================*/

/*----------  Grid Team  ----------*/

.team-list .team-block:last-child {
	border-bottom: none;
}

.team-block {
	padding-bottom: 2.75rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

.team-grid .team-block .team-figure,
.team-block .team-figure {
	max-width: 100%;
	width: 100%;
	margin: 0 0.5rem;
	padding: 0;
	border: 1px solid rgba(0, 44, 87, 0.05);
	background-color: transparent;
	-webkit-box-flex: unset;
	-ms-flex: unset;
	flex: unset;
	-webkit-box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.10);
	box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.10);
}

.team-block .team-figure:hover,
.team-block .team-figure:focus {
	-webkit-box-shadow: 0 4px 13px 1px rgba(0, 0, 0, 0.25);
	box-shadow: 0 4px 13px 1px rgba(0, 0, 0, 0.25);
}

.team-block .team-figure img {
	width: 100%;
}

.team-block .team-figure .team-info {
	padding: 1.15rem;
}

.team-block .team-figure .chair {
	font-size: 1.15rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
	color: #404040;
}

.team-block .team-figure .designation,
.team-block .team-figure .committee {
	margin-bottom: 0.5rem !important;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	color: #404040;
}

.team-block .media-body p:last-child {
	margin-bottom: 0;
}

/*----------  Single Team Page  ----------*/

.single-team .team-block .team-figure {
	-ms-flex: 0 0 20%;
	-webkit-box-flex: 0;
	flex: 0 0 20%;
	max-width: 20%;
	margin-right: 2rem;
}

/*=====  End of Team  ======*/


/*===================================
=            Event Block            =
===================================*/

.event-block {
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 2rem;
	margin-bottom: 2rem;
}

.event-figure {
	-ms-flex: 0 0 30%;
	-webkit-box-flex: 0;
	flex: 0 0 30%;
	max-width: 30%;
	margin-right: 1.75rem;
}

.event-meta {
	margin-bottom: 0.6rem;
}

.event-block .title {
	font-size: 1.75rem;
	margin-top: 0.5rem;
}

.event-block .event-body p {
	margin-bottom: 1rem;
}

.event-content {
	padding-bottom: 2rem;
}

/*=====  End of Event Block  ======*/


/*================================
=            Programs            =
================================*/

/*----------  Parent Grid  ----------*/

.card-item {
	position: relative;
	margin-bottom: 30px;
	border-radius: calc(.25rem - 1px);
	-webkit-box-shadow: 0 -1px 8px 2px rgba(0, 0, 0, 0.10);
	box-shadow: 0 -1px 8px 2px rgba(0, 0, 0, 0.10);
}

a.card-item {
	display: block;
	border: none;
	padding: 0;
}

a.card-item:hover {
	background: transparent;
	-webkit-box-shadow: 0 -1px 15px 6px rgba(0, 0, 0, 0.15);
	box-shadow: 0 -1px 15px 6px rgba(0, 0, 0, 0.15);
}

.card-item .card-img {
	overflow: hidden;
	border-bottom-left-radius: unset;
	border-bottom-right-radius: unset;
	position: relative;
}

.card-item:hover {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.card-item:hover .card-img:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: rgba(0, 44, 87, 0.25);
	z-index: 1;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.card-item .card-title {
	font-size: 1.25rem;
	line-height: 2rem;
	padding: 1rem;
	margin-bottom: 0;
}

.card-item img {
	width: 100%;
	-webkit-transition: all 0.35s linear;
	transition: all 0.35s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.card-item:hover img {
	-webkit-transform: scale3d(1.15, 1.15, 1);
	transform: scale3d(1.15, 1.15, 1);
}

/*----------  Post Grid  ----------*/

.post-grid .post-block a {
	-webkit-box-shadow: 0 1px 13px 1px rgba(0, 0, 0, 0.10);
	box-shadow: 0 1px 13px 1px rgba(0, 0, 0, 0.10);
	border-bottom: 3px #f5821f solid !important;
	display: block;
	width: 100%;
}

.post-grid .post-block a:hover,
.post-grid .post-block a:focus {
	background: transparent;
	color: #404040;
	-webkit-box-shadow: 0 -2px 18px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0 -2px 18px 5px rgba(0, 0, 0, 0.2);
}

.program-block a {
	display: block;
}

.program-block img {
	width: 100%;
}

.program-list .media {
	border-bottom: 1px solid #ebebeb;
	margin-top: 1.6rem;
	margin-bottom: 1.6rem;
	padding-bottom: 1.6rem;
}

.program-list .media:last-child {
	border-bottom: none;
}

.program-list .media .icon-file {
	margin-right: 1rem;
	width: 50px;
	margin-top: 0.15rem;
}

.program-list .media .title {
	font-size: 1.25rem;
	margin-top: 0;
	margin-bottom: 1rem;
	display: inline-block;
}

.program-list .media .title:after {
	display: none;
}

.program-list .media-body p:last-child {
	margin-bottom: 0;
}

/*----------  Course Sidebar  ----------*/

.course-sidebar {
	padding: 0 1rem 1rem 1rem;
	border: 1px solid #ebebeb;
	margin-bottom: 4rem;
	margin-top: 2.5rem;
}

.course-sidebar ul {
	overflow: visible;
	margin-bottom: 0;
}

.course-sidebar ul li:first-child:before {
	display: none;
}

.course-sidebar ul li {
	border-bottom: 1px solid #ebebeb;
	padding-bottom: 0;
	margin-bottom: 1.25rem;
}

.course-sidebar ul li:first-child {
	padding-left: 0;
	margin-left: -1rem;
	margin-right: -1rem;
	margin-bottom: 1.5rem;
}

.course-sidebar ul li:last-child {
	margin-bottom: 0;
	border-bottom: none;
}

.course-sidebar ul li p:first-child {
	font-weight: 600;
	margin-bottom: 0.75rem;
	font-size: 1.15rem;
	color: #002c57;
}

/*=====  End of Programs  ======*/

/*=================================
=            PDF Block            =
=================================*/

.pdf-download-list {}

.pdf-download-list ul {
	padding-left: 0;
	margin-left: -1%;
	margin-right: -1%;
}

.pdf-download-list ul li {
	width: 33.33%;
	float: left;
	padding: 1%;
	position: relative;
}

.pdf-download-list ul li:before {
	display: none;
}

.pdf-download-list ul li a {
	position: relative;
	display: block;
	border: 1px solid #f5f5f5;
	border-radius: 2px;
	padding: 20px 60px 20px 20px;
	font-size: 18px;
	background-color: #f5f5f5;
	-webkit-box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.13);
	box-shadow: 0 3px 10px 2px rgba(0, 0, 0, 0.13);
}

.pdf-download-list ul li a:after {
	content: '\f019';
	font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	width: 36px;
	height: 36px;
	text-align: center;
	background: #002c57;
	color: #fff;
	border-radius: 50%;
	padding: 0;
	top: 15px;
	right: 20px;
	margin-left: 15px;
	position: absolute;
	line-height: 32px;
}

.pdf-download-list ul li a:hover,
.pdf-download-list ul li a:focus {
	background-color: #002c57;
}

.pdf-download-list ul li a:hover:after,
.pdf-download-list ul li a:hover:focus {
	background-color: #fff;
	color: #002c57;
}

/*=====  End of PDF Block  ======*/


/*==================================
=            Icon Block            =
==================================*/

.iconbox-block {
	position: relative;
	display: block;
	overflow: hidden;
	text-align: center;
	max-width: 100%;
	width: 100%;
	height: auto;
	border: 1px solid rgba(0, 44, 87, 0.05);
	border-radius: 13px;
	padding: 1rem 0 0.5rem;
	margin-bottom: 1.5rem;
	background-color: #f8f9fa;
	-webkit-box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 0.08);
	box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 0.08);
}
.supported-employment-hover-div .iconbox-block:focus{
	background: transparent!important;
}
.supported-employment-hover-div .iconbox-block .title{
	color: #002c57;
}

.hover-box-section-homapage img{
    max-width: 60% !important;
    margin: 0 auto;
}

.iconbox-block:not([href]) {
	cursor: inherit;
}

.iconbox-block img {
	max-width: 100%;
	/*max-height: 105px;*/
	max-height: auto;
	width: auto;
}

.iconbox-block .title {
	font-weight: 600;
	margin-top: 0.75rem;
}

a.iconbox-block .title {
	color: #002c57;
}

a.iconbox-block:hover .title,
a.iconbox-block:focus .title {
	color: #ffffff;
}

.iconbox-block.two-line .title {
	font-weight: 600;
	margin-top: 0rem;
	margin-bottom: 0.5rem;
}

.iconbox-block .iconbox-hover {
	padding: 0 1rem 1rem;

}

/* button.iconbox-block:focus {
	background-color: #f8f9fa;
	outline: none;
	border-color: rgba(0, 44, 87, 0.05);
} */

.pathway-training-program .iconbox-block{
	width: 75%;
	border-radius: 50px;
	-webkit-box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 0.08);
	box-shadow: 0 15px 14px 5px rgba(0, 44, 87, 0.08);
	margin: 0 auto;
	color: #002c57;
	border-color: #fff;
	padding: 40px 0 10px 0;
	min-height: 232px;
}
.pathway-training-program .iconbox-block .iconbox-hover,
.pathway-training-program .iconbox-block .iconbox-hover{
	background: none !important;

}

.pathway-training-program .title{
	color: #002c57;
}

.vet-training-box{
	background: #fff;
	padding: 40px 20px 20px 20px;
	border-radius: 50px;
	box-shadow: 0 0 20px 3px #ccc;
}


@media (min-width: 768px) {
	.iconbox-block .iconbox-hover {
		opacity: 0;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		padding: 0;
		background: #002c57;
		color: #fff;
		-webkit-transition: all 0.4s ease-in-out 0s;
		transition: all 0.4s ease-in-out 0s;
		/*display: none;*/
	}

	.iconbox-block:hover .iconbox-hover,
	.iconbox-block:focus .iconbox-hover,
	.iconbox-block.active .iconbox-hover {
		opacity: 1;
	}

	.iconbox-block .iconbox-text {
		text-align: center;
		font-size: 14px;
		display: inline-block;
		position: absolute;
		width: 90%;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
	}

	/*----------  Accommodation Page  ----------*/

	.accom-icon-box img {
		height: 78px;
	}

}

/*----------  Accommodation Page  ----------*/

.accom-icon-box .title {
	font-size: 1.5rem;
}

/*----------  Community Page  ----------*/

.com-icon-box .title {
	font-size: 16px;
}

/*=====  End of Icon Block  ======*/


/*===========================================
=            Bootstrap Accordion            =
===========================================*/

.accordion-tab {
	margin-bottom: 0.5rem;
}

.accordion-tab .accordion-header {
	position: relative;
	display: block;
	background: #002c57;
	color: #fff;
	padding: 0.85rem 2.75rem 0.85rem 1.25rem;
	border: 2px solid #002c57;
}

.accordion-tab .accordion-header .title {
	display: inline;
}

.accordion-tab .accordion-header .accordion-icon {
	position: absolute;
	right: 1.25rem;
	line-height: 1.5rem;
}

.accordion-tab .accordion-body {
	padding: 1.25rem;
	border: 1px solid #ebebeb;
}

.accordion-tab .accordion-body ul li {
	padding-bottom: 0;
}

.accordion-tab .accordion-header:hover,
.accordion-tab .accordion-header:focus {
	background: transparent;
	color: #002c57;
}

/*=====  End of Bootstrap Accordion  ======*/


/*=====================================
=            Career Pageup            =
=====================================*/

.career-pageup-content .entry-content {
	margin: 0;
}

.career-pageup-content h2 {
	margin-top: 0;
}

.career-pageup-content #search-filters h3 {
	background: #002c57;
	color: #fff;
	margin-bottom: 0;
	padding: 0.75rem 1.25rem;
	font-size: 1.35rem;
}

.career-pageup-content #search-filters .filter-wrapper {
	background: #f5f5f5;
	padding: 1.25rem;
	margin-bottom: 2rem;
	-webkit-box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
	box-shadow: 0 1px 5px 0px rgba(0, 0, 0, 0.15);
}

.career-pageup-content #search-filters .filter {
	margin-bottom: 0;
}

.career-pageup-content #search-filters .filter.icon-list li:before {
	display: none;
}

.career-pageup-content #search-filters ul.filter li input {
	margin-top: 5px;
}

.career-pageup-content #search-filters .filter-wrapper .filter-group {
	margin-bottom: 0.5rem;
}

.career-pageup-content #search-filters .filter-wrapper .filter-group .filter-group-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #002c57;
}

.career-pageup-content .col-md-4 .d-block {
	display: inline-block !important;
}

.career-pageup-content .col-md-4 .d-block .app-login {
	display: inline-block;
	border-radius: 5px;
	margin-right: 0.5rem;
	margin-bottom: 1.25rem;
}

.career-pageup-content #jobs-form .job-mail-subscribe-link.button {
	color: #fff;
	background-color: #002c57;
	border: 2px solid #002c57;
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 25px;
	padding-right: 25px;
	background-image: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-weight: 400;
	border-radius: 5px;
	margin-bottom: 1.25rem
}

.career-pageup-content #jobs-form .job-mail-subscribe-link.button:hover,
.career-pageup-content #jobs-form .job-mail-subscribe-link.button:focus {
	background-color: transparent;
	color: #002c57;
}

.career-pageup-content #jobs-form input[type=text],
.career-pageup-content #jobs-form input[type=email] {
	width: 75%;
	border: 1px solid #ccc;
	padding: 10px 15px;
	margin-bottom: 1.25rem;
}

.career-pageup-content #recent-jobs table {
	width: 100%;
	margin-bottom: 1rem;
	border: 1px solid #dee2e6;
}

.career-pageup-content #recent-jobs table thead {
	color: #fff;
	background-color: #002c57;
	border-color: #002c57;
}

.career-pageup-content #recent-jobs table td,
.career-pageup-content #recent-jobs table th {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}

.career-pageup-content #recent-jobs table tbody tr:nth-of-type(odd) {
	background-color: #f5f5f5;
}

.career-pageup-content #recent-jobs table .job-link {
	padding: 0;
	border: none;
	display: inline-block;
}

/*=====  End of Career Pageup  ======*/

.single-post .addtoany_content {
	margin-top: 0;
}

.addtoany_list a:hover,
.widget .addtoany_list a:hover,
.addtoany_list a:focus,
.widget .addtoany_list a:focus {
	background-color: transparent;
}

/*=====================================
=            High Contrast            =
=====================================*/

/*----------  High Contrast Toggle  ----------*/

.high-contrast-toggle a {
	cursor: pointer;
}

/*----------  Apply All Common Class  ----------*/

body.high-contrast-body,
.high-contrast-body h1,
.high-contrast-body h2,
.high-contrast-body h3,
.high-contrast-body h4,
.high-contrast-body h5,
.high-contrast-body h6,
.high-contrast-body p,
.high-contrast-body a,
.high-contrast-body i,
.high-contrast-body .icon-list ul li:before,
.high-contrast-body .icon-list li:before,
.high-contrast-body .footer-widget ul li:before,
.high-contrast-body .listing-group .list-row .list-title:before {
	color: #fff !important;
}

body.high-contrast-body,
.high-contrast-body div,
.high-contrast-body header,
.high-contrast-body site-content,
.high-contrast-body footer,
.high-contrast-body .bg-light,
.high-contrast-body .wp-megamenu-wrap>.wpmm-nav-wrap>ul.wp-megamenu>li.wpmm_mega_menu>.wpmm-strees-row-container>ul.wp-megamenu-sub-menu,
.high-contrast-body .wpmm-strees-row-container>ul.wp-megamenu-sub-menu>li.wpmm-row:before,
.high-contrast-body .wpmm-strees-row-container>ul.wp-megamenu-sub-menu>li.wpmm-row:after,
.high-contrast-body .print-icon,
.high-contrast-body .social-icons-list a,
.high-contrast-body .news-block .news-body,
.high-contrast-body .contactus-section:before,
.high-contrast-body .supportus-section:before {
	background-color: #000;
}

.high-contrast-body a:hover,
.high-contrast-body a:focus {
	background-color: #fff;
	color: #000 !important;
}

.high-contrast-body a:focus {
	outline: 5px auto -webkit-focus-ring-color;
	outline-offset: -2px;
	background-color: #fff;
	color: #000 !important;
}

/*----------  Form  ----------*/

.high-contrast-body button,
.high-contrast-body input[type="button"],
.high-contrast-body input[type="reset"],
.high-contrast-body input[type="submit"] {
	border-color: #fff;
	color: #000;
}

.high-contrast-body button:hover,
.high-contrast-body input[type="button"]:hover,
.high-contrast-body input[type="reset"]:hover,
.high-contrast-body input[type="submit"]:hover {
	color: #fff;
	border-color: #fff;
}

.high-contrast-body button:focus,
.high-contrast-body input[type="button"]:focus,
.high-contrast-body input[type="reset"]:focus,
.high-contrast-body input[type="submit"]:focus {
	background-color: #000;
	color: #fff;
	border-color: #fff;
}

/*----------  Bootsrtap Override  ----------*/

.high-contrast-body .bg-light {
	background-color: #000 !important;
}

/*----------  Visual Composer  ----------*/

.high-contrast-body h2.vc_custom_heading:after {
	border-color: #fff;
}

.high-contrast-body .vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1,
.high-contrast-body .vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2 {
	color: #000;
	border-color: #fff;
	background-color: #fff;
}

.high-contrast-body .vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:hover,
.high-contrast-body .vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:hover,
.high-contrast-body .vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color1:focus,
.high-contrast-body .vc_general.vc_btn3-style-flat.vc_btn3-color-theme-color2:focus {
	background: #000;
	border-color: #fff;
	color: #fff;
}

.high-contrast-body .vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1,
.high-contrast-body .vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2 {
	border-color: #fff;
	background-color: #000;
}

.high-contrast-body .vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1:hover,
.high-contrast-body .vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2:hover,
.high-contrast-body .vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color1:focus,
.high-contrast-body .vc_general.vc_btn3-style-outline.vc_btn3-color-theme-color2:focus {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

/*----------  Common Theme Class  ----------*/

.high-contrast-body .btn-icon {
	background-color: #fff;
	color: #000;
	border-color: #fff;
}

.high-contrast-body .btn-icon i {
	color: #000 !important;
}

.high-contrast-body .btn-icon:hover,
.high-contrast-body .btn-icon:focus {
	background-color: #000;
	border-color: #fff;
}

.high-contrast-body .btn-icon:hover i,
.high-contrast-body .btn-icon:focus i {
	color: #fff !important;
}

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

.high-contrast-body .accordion-tab .accordion-header,
.high-contrast-body .accordion-tab .accordion-header .title {
	background: #fff;
	color: #000;
	border-color: #fff;
}

.high-contrast-body .accordion-tab .accordion-header:hover,
.high-contrast-body .accordion-tab .accordion-header:focus,
.high-contrast-body .accordion-tab .accordion-header:hover .title,
.high-contrast-body .accordion-tab .accordion-header:focus .title {
	background: transparent;
	color: #fff;
}

/*----------  Top Bar Header  ----------*/

.high-contrast-body .site-header .top-bar {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/*----------  Nav Menu  ----------*/

.high-contrast-body .navbar-brand img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	-ms-filter: brightness(0) invert(1);
}

.high-contrast-body .main-nav ul li a:hover,
.high-contrast-body .main-nav ul li a:focus,
.high-contrast-body .main-nav ul li.sfHover>a,
.high-contrast-body .main-nav ul li.current-menu-item>a,
.high-contrast-body .main-nav>ul>li.current-menu-ancestor>a {
	background: #fff;
	color: #000 !important;
}

.high-contrast-body .main-nav ul li.current-menu-ancestor>i,
.high-contrast-body .main-nav li.current-menu-item>i,
.high-contrast-body .main-nav li.sfHover>i {
	color: #000 !important;
}

.high-contrast-body .main-nav ul li a {
	color: #fff !important;
}

.high-contrast-body .main-nav ul ul {
	background: #000;
}

.high-contrast-body .primary-nav li.btn-outline-primary a {
	border-color: #fff;
}

.high-contrast-body .phone-no svg {
	fill: #fff;
}

.high-contrast-body .phone-no:hover svg,
.high-contrast-body .phone-no:focus svg {
	fill: #000;
}

.high-contrast-body #secondary-nav .btn-secondary {
	background-color: #fff;
	border-color: #fff;
	color: #000 !important;
}

.high-contrast-body #secondary-nav li a svg {
	fill: #fff;
	stroke: #fff;
}

.high-contrast-body #secondary-nav li:first-child a .hover-border,
.high-contrast-body #secondary-nav li:first-child a .hover-border::before {
	border-color: #fff;
}

.high-contrast-body #secondary-nav li:first-child a .text-icon-inner .icomoon,
.high-contrast-body #secondary-nav li:first-child a::before {
	color: #000 !important;
}

.high-contrast-body #secondary-nav .btn-primary {
	background-color: #000;
	border-color: #fff;
	color: #fff !important;
}

.high-contrast-body #secondary-nav .btn-secondary:hover,
.high-contrast-body #secondary-nav .btn-secondary:focus {
	background-color: #000;
	border-color: #fff;
	color: #fff !important;
}

.high-contrast-body #secondary-nav li:first-child a:hover svg,
.high-contrast-body #secondary-nav li:first-child a:focus svg {
	fill: #000;
	stroke: #000;
}

.high-contrast-body #secondary-nav li:first-child a:hover .text-icon-inner .icomoon,
.high-contrast-body #secondary-nav li:first-child a:focus .text-icon-inner .icomoon {
	color: #fff !important;
}

.high-contrast-body #secondary-nav .btn-primary:hover,
.high-contrast-body #secondary-nav .btn-primary:focus {
	background-color: #fff;
	border-color: #fff;
	color: #000 !important;
}


.high-contrast-body #secondary-nav li:last-child a:hover .text-icon-inner .icomoon,
.high-contrast-body #secondary-nav li:last-child a:focus .text-icon-inner .icomoon {
	color: #000 !important;
}


/*----------  Footer  ----------*/

.high-contrast-body .footer-widget-area {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.high-contrast-body .footer-widget-area .footer-widget.widget_media_image img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.high-contrast-body .footer-widget a.text-white:focus i,
.high-contrast-body .footer-widget a.text-white:hover i {
	color: #000 !important;
}

.high-contrast-body .footer-widget .widget-title:after {
	border-color: #fff;
}

/*----------  Page Title  ----------*/

.high-contrast-body .title-background {
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.high-contrast-body .title-bg-img:before {
	background-image: url(assets/img/curve-high-contrast.png);
}

.high-contrast-body .page-title-background:before {
	display: none;
}

/*----------  Homepage  ----------*/

.high-contrast-body .contactus-section,
.high-contrast-body .supportus-section,
.high-contrast-body .page-title-background {
	background-image: none;
}

.high-contrast-body .contactus-section,
.high-contrast-body .supportus-section,
.high-contrast-body .newsletter-section,
.high-contrast-body .location-section,
.high-contrast-body .page-title-background {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.high-contrast-body .supportus-section,
.high-contrast-body .location-section {
	border-bottom: none;
}

.high-contrast-body .location-section .location-content-block .vc_custom_heading:after {
	border-color: #fff;
}

/*----------  Service Block  ----------*/

.high-contrast-body .service-block {
	border: 1px solid #fff;
}

.high-contrast-body .service-block-inner {
	background-color: transparent !important;
}

.high-contrast-body .service-block:hover .service-block-hover-overlay,
.high-contrast-body .service-block:focus .service-block-hover-overlay {
	background-color: #fff !important;
}

.high-contrast-body .service-block:hover .service-block-hover-text,
.high-contrast-body .service-block:focus .service-block-hover-text {
	color: #000 !important;
}

.high-contrast-body .service-block-inner .btn-arrow-icon {
	background-color: #fff;
	color: #000;
}

.high-contrast-body .service-block:hover .btn-arrow-icon,
.high-contrast-body .service-block:focus .btn-arrow-icon {
	background-color: #000;
	color: #fff;
}

.high-contrast-body .service-block-inner .btn-arrow-icon i {
	color: #000 !important;
}

.high-contrast-body .service-block:hover .btn-arrow-icon i,
.high-contrast-body .service-block:focus .btn-arrow-icon i {
	color: #fff !important;
}

.high-contrast-body .service-block h5 {
	color: #fff !important;
}

.high-contrast-body .service-block img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.high-contrast-body .service-block-inner a {
	background-color: #ddd !important;
}

.high-contrast-body .service-block-inner a i {
	color: #000 !important;
}

.high-contrast-body .service-block-hover-img {
	display: none;
}

/*----------  About Us  ----------*/

.high-contrast-body .aboutus-section {
	background-image: url(assets/img/who-we-are-high-contrast-6.jpg) !important;
}

.aboutus-section .about-us-bg {
	background-color: transparent !important;
}

/*----------  Newsletter  ----------*/

.high-contrast-body .newsletter-section {
	background-image: url(assets/img/subscribe-bg-high-contrast.png);
}

.high-contrast-body .newsletter-form input[type="submit"] {
	color: #fff;
}

.high-contrast-body .newsletter-form input[type="submit"]:hover,
.high-contrast-body .newsletter-form input[type="submit"]:focus {
	color: #000;
	background-color: #fff;
}

/*----------  News  ----------*/

.high-contrast-body .news-block {
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.high-contrast-body .news-block .news-body .date {
	background-color: #fff !important;
	color: #000 !important;
}

.high-contrast-body .news-block .news-body .date:before {
	border-color: #aaa transparent transparent transparent;
}

.high-contrast-body .news-section .owl-nav .owl-prev,
.high-contrast-body .news-section .owl-nav .owl-next {
	border-color: rgba(255, 255, 255, 0.15);
	background-color: #000;
}

/*----------  Location  ----------*/

.high-contrast-body .location-section .images_wrap img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.high-contrast-body .location-section .bg-map-image .vc_custom_heading a:hover,
.high-contrast-body .location-section .bg-map-image .vc_custom_heading a:focus {
	color: #000 !important;
}

.high-contrast-body .location-section .bg-map-image .drag_element .pins_image {
	-webkit-filter: brightness(0%);
	filter: brightness(0%);
}

.high-contrast-body .location-section .bg-map-image .drag_element a:focus {
	background-color: #000 !important;
}

.high-contrast-body .location-section .bg-map-image .drag_element a:focus img {
	-webkit-filter: brightness(100%);
	filter: brightness(100%);
}

.high-contrast-body .location-section .bg-map-image .drag_element a:hover img,
.high-contrast-body .location-section .bg-map-image .drag_element a:focus img {
	background-color: #000 !important;
	-webkit-filter: none;
	filter: none;
}

.high-contrast-body .location-section .bg-map-image .drag_element a:focus img.pins_image_hover,
.high-contrast-body .location-section .bg-map-image .drag_element a:hover img.pins_image_hover {
	display: none !important;
}

.high-contrast-body .location-section .bg-map-image .drag_element a:focus img.pins_image,
.high-contrast-body .location-section .bg-map-image .drag_element a:hover img.pins_image {
	display: block !important;
}

.high-contrast-body #powerTip p {
	font-weight: 600;
}

.high-contrast-body .location-section .location-content-block {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	background-color: #000;
}

.high-contrast-body .location-content-block:after {
	background-color: #000 !important;
}

/*----------  Suburb & Location  ----------*/

.high-contrast-body .location-box {
	background-color: #000;
	border: 1px solid #fff;
	-webkit-box-shadow: 0 2px 10px 0px rgba(255, 255, 255, 0.1);
	box-shadow: 0 2px 10px 0px rgba(255, 255, 255, 0.1);
}

.high-contrast-body .location-box .location-header {
	background-color: #fff;
}

.high-contrast-body .location-box .location-header .title {
	color: #000 !important;
}

.high-contrast-body .suburb-content .icon-list a:hover,
.high-contrast-body .suburb-content .icon-list a:focus,
.high-contrast-body .location-box .icon-list a:hover,
.high-contrast-body .location-box .icon-list a:focus {
	background-color: #fff;
	color: #000 !important;
}

/*----------  Support Us  ----------*/

.high-contrast-body .support-icon-block a {
	background-color: #000 !important;
}

.high-contrast-body .support-icon-block a img {
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
}

.high-contrast-body .support-icon-block:before {
	background: #fff;
}

/*----------   Social List  ----------*/

.high-contrast-body .social-icons-list a svg {
	fill: #fff;
}

.high-contrast-body .social-icons-list a:hover {
	opacity: 1;
}

.high-contrast-body .social-icons-list a:hover,
.high-contrast-body .social-icons-list a:focus {
	background-color: #fff !important;
	color: #000 !important;
}

.high-contrast-body .social-icons-list a:hover svg,
.high-contrast-body .social-icons-list a:focus svg {
	fill: #000;
}

/*----------  Team  ----------*/

.high-contrast-body .team-grid .team-block .team-figure,
.high-contrast-body .team-block .team-figure {
	background: #000;
	border-color: #fff;
}

/*----------  Box Icon  ----------*/

.high-contrast-body .box-icon-list li a {
	background-color: #000;
	border-color: #fff;
}

.high-contrast-body .box-icon-list li:after {
	background-color: #fff;
	color: #000;
}

.high-contrast-body .box-icon-list li a:hover,
.high-contrast-body .box-icon-list li a:focus {
	background-color: #fff;
	color: #000;
}

/*----------  Go to Page Block  ----------*/

.high-contrast-body .go-to-page-block {
	border: 1px solid #fff;
}

.high-contrast-body .go-to-page-block a {
	background-color: #fff;
}

.high-contrast-body .go-to-page-block a i {
	color: #fff !important;
}

.high-contrast-body .go-to-page-block a:hover {
	border-color: #fff;
	background-color: #000;
}

.high-contrast-body .go-to-page-block a:hover i {
	color: #fff !important;
}

/*----------  PDF Download  ----------*/

.high-contrast-body .pdf-download-list ul li a {
	background-color: transparent;
}

.high-contrast-body .pdf-download-list ul li a:after {
	background-color: #fff;
	color: #000;
}

.high-contrast-body .pdf-download-list ul li a:hover,
.high-contrast-body .pdf-download-list ul li a:focus {
	background-color: #fff;
}

.high-contrast-body .pdf-download-list ul li a:hover:after,
.high-contrast-body .pdf-download-list ul li a:hover:focus {
	background-color: #000;
	color: #fff;
}

/*----------  Icon Box  ----------*/

.high-contrast-body .iconbox-block {
	border-color: rgba(255, 255, 255, 0.25);
}

.high-contrast-body .iconbox-block .iconbox-hover {
	background-color: #fff;
}

.high-contrast-body .iconbox-block .iconbox-text {
	color: #000 !important;
}

.high-contrast-body .field-view label {
	color: #fff;
}

.high-contrast-body .field-view button[type="submit"]:hover,
.high-contrast-body .field-view input[type="submit"]:hover {
	background: #000;
}

.high-contrast-body .custom-entry-title:after {
	border-bottom: 5px solid #fff;
}

/*----------  Contact Us  ----------*/

.high-contrast-body .contact-location-box {
	border-color: #fff;
}

/*=====  End of High Contrast  ======*/


/*==================================
=            Responsive            =
==================================*/

/*=====================================
=            Minimum Width            =
=====================================*/
@media (min-width: 1800px) {
	.title-bg-img {
		width: 50%;
	}

	/* .title-bg-img:before {
		left: calc(100% - (100% - 6%) - 87px) !important;
		width: 190px !important;
	} */
}


@media (min-width: 1600px) {
	#secondary-nav li:first-child a .text-icon-inner {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}

	#secondary-nav li:last-child a .text-icon-inner {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
}


@media (min-width: 1400px) {

	/*----------  Container  ----------*/

	.container {
		max-width: 1300px;
	}
}


@media (min-width: 1200px) {

	#secondary-nav li a .text-icon-inner {
		/*padding: 0 2rem;*/
	}

	/*----------  Page Title  ----------*/

	.title-body-inner {
		padding-right: 5rem;
	}

	#secondary-nav li a::before {
		position: absolute;
		font-family: 'icomoon' !important;
		speak: none;
		line-height: 1;
		color: #626161;
		opacity: 0.25;
		top: 0;
		font-size: 3.5rem;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}

	#secondary-nav li:first-child a::before {
		content: "\e900";
		left: 15%;
		-webkit-transform: rotate(-30deg);
		transform: rotate(-30deg);
	}

	#secondary-nav li:last-child a::before {
		content: "\e901";
		right: 15%;
		top: 0rem;
		/*font-size: 3.75rem;*/
		-webkit-transform: rotate(30deg);
		transform: rotate(30deg);
	}

	/*----------  Icon Box  ----------*/

	.vc_col-sm-3 .iconbox-block {
		padding: 2.5rem 0 2rem;
		margin: 0.75rem 0.75rem 2.25rem;
	}

	.vc_col-sm-3 .iconbox-block img {
		margin-bottom: 1rem;
		width: 120px;
	}

	.vc_col-sm-3 .iconbox-block .title {
		padding: 0 0.5rem;
	}
}


@media (min-width: 992px) {

	/*----------  Header  ----------*/

	.mobile-nav-toggle {
		display: none
	}

	/*----------  Page Title  ----------*/

	.title-bg-img {
		width: 52%;
	}

	.title-body-inner {
		padding-right: 3rem;
	}

	.support-icon-block a img {
		/* border: 1px solid #eee; */
		max-width: 112px
	}

}

@media (min-width: 768px) {

	/*----------  Page Title  ----------*/

	.title-body {
		height: 475px;
		width: 100%;
	}

	.title-bg-img {
		width: 51.75%;
		right: 0;
		position: absolute;
		bottom: 0;
		top: 0;
		-webkit-box-shadow: inset 0px 10px 5px -10px rgba(0, 0, 0, 0.1), inset 0px -10px 5px -10px rgba(0, 0, 0, 0.1);
		box-shadow: inset 0px 10px 5px -10px rgba(0, 0, 0, 0.1), inset 0px -10px 5px -10px rgba(0, 0, 0, 0.1);
	}

	.title-body-inner {
		max-width: 48%;
		padding-right: 2.5rem;
	}

	.title-bg-img .video-container .mejs-container {
		height: 475px !important;
	}

	#secondary-nav li:first-child {
		width: 50.5%;
	}

	#secondary-nav li:last-child {
		width: 49.5%;
	}

	#secondary-nav li a .text-icon-inner .icomoon {
		margin-right: 2.25rem;
	}

}

/*=====  End of Minimum Width  ======*/


/*=====================================
=            Maximum Width            =
=====================================*/

@media (max-width: 1499.98px) {

	#secondary-nav li:first-child a .text-icon-inner,
	#secondary-nav li:last-child a .text-icon-inner {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

}


@media (max-width: 1399.98px) {

	/*----------  Header  ----------*/

	.navbar-brand img {
		max-height: 85px;
	}

	.main-nav>ul>li>a {
		font-size: 15px;
		padding: 1rem 0.35rem;
	}

	.primary-nav li.menu-item-has-children a {
		padding-right: 1.5rem;
	}

}


@media (max-width: 1366.98px) {

	/*----------  Service Block  ----------*/

	.services-section .vc_col-sm-1\/5 {
		width: 33.33%;
		float: left;
	}

}


@media (max-width: 1199.98px) {

	/*----------  Header  ----------*/

	.navbar-brand img {
		max-height: 65px;
	}

	.main-nav>ul>li>a {
		font-size: 14px;
		padding: 1rem 0;
	}

	.primary-nav li.menu-item-has-children a {
		padding-right: 1.25rem;
	}
	.high-contrast-body .vc_general.vc_btn3.vc_btn3-size-md{
	    background: #000 !important;
	}
	.high-contrast-body .vc_general.vc_btn3.vc_btn3-size-md:hover,
	.high-contrast-body .vc_general.vc_btn3.vc_btn3-size-md:focus{
	    background: #fff!important;
	    color: #000!important;
	}

}


@media (max-width: 1024px) {

	/*----------  Support Us  ----------*/

	.support-icon-block {
		margin-left: 5px;
		margin-right: 5px;
	}

}


@media (min-width: 992px) {

	/*----------  Our Values  ----------*/

	.page-id-349 .iconbox-block {
		min-height: 176px!important;
		display: grid!important;
        align-items: center;
	}

}


@media (max-width: 1000px) {

	/*----------  About Us  ----------*/

	.vc_row.aboutus-section {
		background-image: none !important;
		background-color: #e7eef4;
	}

	.aboutus-section .vc_col-sm-6 {
		width: 100%;
	}

}


@media (max-width: 991.98px) {

	/*----------  Header  ----------*/

	.top-bar .topbar-nav-menu {
		font-size: 14px;
	}

	.topbar-left-column-1 {
		padding-bottom: 0.5rem;
	}

	#main-nav {
		display: none
	}

	.primary-nav .mobile-nav-toggle {
		display: inline-block;
	}

	.high-contrast-body .primary-nav .mobile-nav-toggle{
		color: #fff;
	}

	.high-contrast-body .site-header .search-field{
		color: #000!important;
	}

	.high-contrast-body .go-to-page-block a{
		background: none!important;
	}

	/*----------  Footer  ----------*/

	.col-footer {
		width: 33.33333333%;
		-ms-flex-preferred-size: unset;
		flex-basis: unset;
		-webkit-box-flex: unset;
		-ms-flex-positive: unset;
		flex-grow: unset;
		margin-bottom: 2rem;
		-ms-flex-preferred-size: auto;
	}

	/*----------  Support Us  ----------*/

	.support-icon-block {
		margin-left: 3px;
		margin-right: 3px;
	}

	/*----------  Team  ----------*/

	.team-block .team-figure {
		-ms-flex: 0 0 20%;
		-webkit-box-flex: 0;
		flex: 0 0 20%;
		max-width: 20%;
	}

	/*----------  Icon Block  ----------*/

	.icon-block.vc_col-sm-2 {
		width: 33.33%;
	}
}


@media (max-width: 768px) {
	
	.simple-bg{
		min-height: 250px !important;
	}

	/*----------  Newsletter  ----------*/

	.newsletter-section {
		background-image: none;
	}

	.newsletter-section .wpcf7 .ajax-loader {
		display: none;
	}

	.team-block{
		display: grid;
	}

	.newsletter-section h1 {
		font-size: 2rem;
	}

	.newsletter-section p {
		margin-bottom: 1.5rem;
	}


	/*----------  Support Us  ----------*/

	.support-icon-block {
		margin-left: -7px;
		margin-right: -7px;
	}

	/*----------  Team  ----------*/

	.team-block .team-figure {
		-ms-flex: 0 0 28%;
		-webkit-box-flex: 0;
		flex: 0 0 28%;
		max-width: 100%;
	}

	/*----------  PDF Block  ----------*/

	.pdf-download-list ul li {
		width: 50%;
	}

	/*----------  Icon Block  ----------*/

	.icon-block.vc_col-sm-2 {
		width: 50%;
	}
	
	.new-section .vc_btn3-container.vc_btn3-inline {
		display: block;
	    text-align: center;
	}
	.service-block-inner .btn-arrow-icon {
		display: none;
	}
}


@media (max-width: 767.98px) {

	/*----------  Header  ----------*/

	.mobile-nav-toggle {
		font-size: 1.75rem;
	}

	.mobile-phone-icon {
		display: block;
		margin-right: 1rem;
	}

	.navbar-brand {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.top-header-icon-btn{
		display: inline-block;
		margin-right: 15px;
	}
	.high-contrast-body #main-navigation .top-header-icon-btn i:hover,
	.high-contrast-body #main-navigation .top-header-icon-btn i:focus{
		color: #000 !important;
	}

	.top-header-icon-btn svg,
	.mobile-phone-icon svg,
	.nav-toggle-menu svg path {
		fill: #002c57;
	}

	.top-header-icon-btn:hover svg,
	.top-header-icon-btn:focus svg,
	.mobile-phone-icon:hover svg,
	.mobile-phone-icon:focus svg,
	.nav-toggle-menu:hover svg path,
	.nav-toggle-menu:focus svg path{
		fill: #fff !important;
	}

	.high-contrast-body .top-header-icon-btn svg,
	.high-contrast-body .mobile-phone-icon svg,
	.high-contrast-body .nav-toggle-menu svg path{
		fill: #fff;
	}

	.high-contrast-body .top-header-icon-btn:hover svg,
	.high-contrast-body .top-header-icon-btn:focus svg,
	.high-contrast-body .mobile-phone-icon:hover svg,
	.high-contrast-body .mobile-phone-icon:focus svg,
	.high-contrast-body .nav-toggle-menu:hover svg path,
	.high-contrast-body .nav-toggle-menu:focus svg path{
		fill: #000 !important;
	}

	.top-header-icon-btn i:before{
		font-size: 19px;
		vertical-align: middle;
	}

	.top-bar .top-header-icon-btn:hover, .top-bar .top-header-icon-btn:focus{
		background-color: transparent;
	}

	.top-bar {
		display: none;
	}

	.topbar-left .top-header-btn{
		display: none!important;
	}

	#secondary-nav li a .text-icon-inner .icomoon {
		display: none;
	}

	/*----------  Footer  ----------*/

	.col-footer {
		width: 50%;
	}

	.col-footer-1 {
		width: 100%;
	}

	/*----------  Service Block  ----------*/

	.services-section .vc_col-sm-1\/5 {
		width: 100%;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	.service-block .service-block-hover-text {
		font-size: 15px;
		padding: 20px 40px;
		/*color: #002c57;*/
	}

	.service-block-hover-img,
	.service-block-hover-overlay,
	.service-block-hover-text {
		position: relative;
		opacity: 1;
	}

	.service-block:hover .service-block-inner img,
	.service-block:focus .service-block-inner img {
		-webkit-filter: none;
		filter: none;
	}
	
    /*Our Values Section*/
    .hover-box-section-homapage .vc_col-sm-2{
        width: 50%!important;
        display: inline-block;
    }
    
    .hover-box-section-homapage .iconbox-block .title{
        padding: 0 15px;
    }
    

	/*----------  Location  ----------*/

	.location-section .bg-map-image {
		display: none !important;
	}

	.location-content-block:before {
		content: '';
		position: absolute;
		right: -99%;
		top: 0;
		bottom: 0;
		background-color: #002c57;
		display: none;
		width: 100%;
	}

	/*----------  Team  ----------*/

	.team-block .team-figure {
		-ms-flex: 0 0 35%;
		-webkit-box-flex: 0;
		flex: 0 0 35%;
		max-width: 35%;
	}

	.case-study-block {
		padding: 1.5rem;
	}

	.cs-title {
		margin-top: 1.5rem;
	}

	/*********footer widget-title*******/

	.footer-widget .widget-title{
		margin-top: 1rem;
	}
	.newsletter-section .widget_activ_social_profile{
		margin-bottom: 1rem;
	}
	.newsletter-form input[type="submit"]{
		margin-top: 1rem;
	}

	/************Inner page CSS****************/
	.media_play{
		top: calc(50% + 100px) !important;
		left: calc(50% - 33px) !important;
	}

	.team-block{
		padding-bottom: 0rem;
	}
	.entry-header .entry-title{
		font-size: 2.3rem;
	}
	.media{
		display: block;
	}
	.event-block .event-figure{
		width: 100%;
		max-width: 100%;
		margin-bottom: 1rem;
	}
	.v-box .card-img{
		position: relative!important;
	}
	.info-bolck-wrapper .link-wpr{
		display: block!important;
		font-weight: normal!important;
		margin: 0 0 15px 0!important;
	}
	.info-bolck-wrapper i{
		margin-right: -2px!important;
	}
	.info-bolck-wrapper .info-text{
		font-size: 1rem!important;
	}
	#post-6535 table td{
		display: block;
		float: left;
		width: auto;
		max-width: 100%;
	}

}


@media (max-width: 575.98px) {

	/*----------  Container  ----------*/

	.container {
		padding-right: 20px;
		padding-left: 20px;
	}

	.navbar-brand {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.navbar-brand img {
		max-height: 59px;
	}

	.mobile-nav-toggle {
		font-size: 1.5rem;
	}

	/*----------  Footer  ----------*/

	.col-footer {
		width: 100%;
		margin-bottom: 0;
	}

	.footer-widget.widget_activ_social_profile {
		margin-bottom: 1.5rem;
	}

	/*----------  Service Block  ----------*/

	.service-block .service-block-hover-text {
		font-size: 15px;
		padding: 20px 40px;
		/*color: #002c57;*/
	}

	.service-block-hover-img,
	.service-block-hover-overlay,
	.service-block-hover-text {
		position: relative;
		opacity: 1;
	}


	/*----------  Page Title  ----------*/

	.title-body {
		padding-bottom: 1.5rem;
		height: auto;
		width: 100%;
	}

	.title-body h1 {
		margin-top: 4.75rem;
	}

	/*----------  Newsletter  ----------*/

	.newsletter-form input[type="email"] {
		margin-bottom: 1rem;
	}

	.newsletter-form input[type="email"],
	.newsletter-form input[type="submit"] {
		border-radius: 4px;
	}

	.newsletter-form {
		padding-bottom: 1.5rem;
	}

	/*----------  Location  ----------*/

	/*----------  Team  ----------*/

	.team-block {
		display: block;
	}

	.team-block .team-figure {
		-ms-flex: 0 0 75%;
		-webkit-box-flex: 0;
		flex: 0 0 75%;
		max-width: 75%;
		margin-bottom: 1.5rem;
		margin-right: 0;
	}

	/*----------  Program  ----------*/

	.program-list .media .icon-file {
		display: none;
	}

	/*----------  PDF Block  ----------*/

	.pdf-download-list ul li {
		width: 100%;
		margin-bottom: 20px;
	}

	#menu-item-5587 .home-left-img {
		display: none;
	}

	#menu-item-5588 .left-breifcase-img {
		display: none;
	}
}


@media (max-width: 480px) {

	/*----------  Support Us  ----------*/

	.supportus-row {
		display: block;
	}

	.support-icon-block {
		margin-left: 0px;
		margin-right: 0px;
	}

	/*.supportus-section .col {
		max-width: 48%;
		float: left;
		margin: 0 1%;
	}*/
	
	.our-program-block {
		padding: 0.75rem;
    	margin-right: 0px;;
	}
	.service-carousel.owl-carousel .owl-item img {
		max-width: 100px;
		height: auto;
	}
	.service-carousel.owl-carousel .owl-item .service-block-hover {
		display: none;
	}

}


@media (max-width: 320px) {

	/*----------  Header  ----------*/

	.navbar-brand {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}

	.navbar-brand img {
		max-height: 44px;
	}

	.mobile-nav-toggle {
		font-size: 1.25rem;
	}

	#secondary-nav li a .text-icon-inner {
		font-size: 1rem;
	}
	.top-header-icon-btn{
	    margin-right: 10px!important;
	}
	.high-contrast-body .newsletter-section{
	    background: none !important;
	}
	.banner-stop-div{
	    top: calc(100% + -57px);
	}
	.hover-box-section-homapage .iconbox-text{
        font-size: 0.8rem !important;
        line-height: 1.25rem !important;
    }

}

/*=====  End of Maximum Width  ======*/

/*=======================================
=            IE Conflict CSS            =
=======================================*/

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

	.newsletter-form input[type="email"] {
		padding-top: 12px;
		padding-bottom: 13px;
	}

	.d-md-flex {
		display: block !important;
	}
}

/*=====  End of IE Conflict CSS  ======*/


/*=====  End of Responsive  ======*/

.our-value-a-tag {
	padding: 0;
	border-bottom: none;
}

.our-value-a-tag:hover {
	background-color: transparent;
}

.high-contrast-body .iconbox-block .title {
	color: #000 !important;
}

.high-contrast-body .site-header .search-field {
	border: 2px #fff solid;
	color: #fff;
}

.high-contrast-body .page-title-background .entry-title:after,
.high-contrast-body h2.vc_custom_heading:after {
	border-bottom: 5px #fff solid;
}

.high-contrast-body .dropdown dt a span,
.multiSel span {
	color: #000;
}

.high-contrast-body .activ-slider .carousel-control-next,
.high-contrast-body .activ-slider .carousel-control-prev {
	border: 2px #fff solid;
	background: #000;
}

.v-box .card-img {
	position: absolute;
	top: 50%;
	left: 50%;
	bottom: 0;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.v-box .card {
	border-radius: 1rem;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.v-box .card .card-body {
		min-height: 270px;
	}
}

.activ-slider .carousel-control-prev,
.activ-slider .carousel-control-next {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 0.25rem;
	opacity: 0.75;
	top: auto;
	bottom: 0;
	outline: none;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-shadow: 0px 0px 21px 2px #888888;
	box-shadow: 0px 0px 21px 2px #888888;
	color: #002c57;
	border-bottom: none;
}

.activ-slider .carousel-control-prev {
	left: calc(50% - 68px) !important;
	right: auto !important;
	z-index: 9;
}

.activ-slider .carousel-control-next {
	right: calc(50% - 68px) !important;
	left: auto !important;
	z-index: 9;
}


@media screen and (min-width: 768px) and (max-width: 1199px){
	.title-bg-img{display: none;}
	.title-body-inner{max-width: 100%;}
	.post-1345 .iconbox-block{min-height: 300px;
		max-height: 210px;}
	.post-848 .iconbox-block{
		height: 23vh;
		display: -webkit-flex;
		display: grid;
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-align-content: center;
	}
	.newsletter-form input[type="submit"]{
		padding-left: 30px;
	}
	.top-header-btn{
		padding-right: 20px!important;
		padding-left: 20px!important;
	}
	.high-contrast-body .subpage-row .go-to-page-block a{
		background: none!important;
	}
	.high-contrast-body .nav-toggle-menu svg path{
		fill: #fff;
	}
	.high-contrast-body .nav-toggle-menu:hover svg path,
	.high-contrast-body .nav-toggle-menu:focus svg path{
		fill: #000 !important;
	}
	.high-contrast-body .location-filter-block button{
		color: #fff;
	}
	.high-contrast-body .newsletter-section{
		background-image: none;
	}
	.nav-toggle-menu:hover svg path,
	.nav-toggle-menu:focus svg path{
		fill: #fff !important;
	}
}


@media screen and (min-width: 768px) and (max-width: 1024px){
	.page-id-6535 table tr td:first-child{
		display: block;
		float: left;
		width: 250px;
		max-width: 100%;
	}
	.page-id-6535 table tr td:last-child{
		display: block;
		float: left;
		width: auto;
		max-width: 100%;
	}
}
@media (max-width: 767.98px) {
	.activ-slider {
		padding-bottom: 45px;
		margin-bottom: 45px !important;
	}

	.activ-slider .carousel-control-prev,
	.activ-slider .carousel-control-next {
		top: 100%;
		margin: 0 auto 0 !important;
	}

	.activ-slider .carousel-control-prev {
		left: -100px;
		right: 0;
	}

	.activ-slider .carousel-control-next {
		right: -100px;
		left: 0;
	}
	.high-contrast-body .location-filter-block button{
		color: #fff;
	}
}


@media (min-width: 992px) {
	.site-header .search-field {
		background-color: transparent;
		background-image: url(/wp-content/themes/activ/assets/img/search-icon.png);
		background-position: 5px center;
		background-repeat: no-repeat;
		background-size: 24px 24px;
		width: 150px;
		padding: 12px 5px 10px 32px;
		border: 2px #002c57 solid;
		border-radius: 6px;
	}
	.main-nav{
	    margin-left: -2px !important;
	}
	.page-id-2244 .iconbox-block img{
	    max-width: 50%;
	}
}

.search-form .search-submit {
	display: none;
}

.search-form label {
	margin-top: 2.5px;
	margin-bottom: 0px;
	margin-left: 2px;
}

.info-bolck-wrapper {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	padding: 12px 24px 24px;
	border: 2px solid #f5821f;
	border-radius: 14px;
	color: #002c57;
	-webkit-box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 0.08);
	box-shadow: 0 2px 5px 1px rgba(0, 44, 87, 0.08);
}

.info-bolck-wrapper .info-img {
	width: 50px;
	margin-bottom: 1rem;
}

.info-bolck-wrapper .info-text {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
}

.info-bolck-wrapper i {
	color: #f5821f;
	margin-right: 8px;
	vertical-align: middle;
}

.info-bolck-wrapper i.fa-phone {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.info-bolck-wrapper .link-wpr {
	display: inline-block;
	font-weight: bolder;
	margin: 12px;
}

.info-bolck-wrapper .link-wpr a {
	text-decoration: none;

}

.agriculter-img {
	width: 100%;
	height: 400px;
}

.vacancy-row .no-gutters {
	padding: 1px 0 1.3px 0;
}

@media (max-width: 1023px) {
	#bambora-donationform .dollar-amount {
		min-width: 78px;
		margin-right: 5px;
	}
}

.media_play {
	position: absolute;
	top: 30%;
	left: 50%;
	border-bottom: none;
}

.media_play:hover,
.media_play:focus {
	outline: none;
	outline-offset: 0;
	text-decoration: none;
	background: transparent;
	border-color: transparent;
}

.media_play:focus {
	outline: -webkit-focus-ring-color auto 5px;
}

.ahc-banner {
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	height: 565px;
	margin-top: auto;
	left: 50%;
	/*background-image: url(/wp-content/uploads/2019/08/c2s.jpg);*/
	background-position: center;
	background-size: cover;
	margin-bottom: 30px;
}

@media screen and (min-width: 200px) and (max-width: 1800px) {
	.ahc-banner {
		height: 430px;
	}
}

.btn-arrow-icon .fa-chevron-right {
	padding-top: 8px;
}

.top-header-btn {
	padding-top: 7px !important;
	padding-bottom: 7px !important;
	border-radius: 6px !important;
}

.activ-slider .carousel-item {
	-webkit-transition: 3.5s;
	transition: 3.5s;
}

.banner-stop-div {
	position: absolute;
	top: auto;
	right: auto;
	left: calc(50% - 21px);
	bottom: 63px;
	z-index: 9;
}

.high-contrast-body .banner-stop-btn {
	border: 2px #fff solid !important;
	opacity: 0.8;
	background: #000;
}

.high-contrast-body .banner-stop-btn:hover,
.high-contrast-body .banner-stop-btn:focus {
	text-decoration: none;
	background: #000;
	opacity: 1;
}

.banner-stop-btn {
	background-color: #002c57;
	border: 2px #002c57 solid;
	padding: 10px 12px;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 21px 2px #888888;
	box-shadow: 0px 0px 21px 2px #888888;
}

.banner-stop-btn i {
	color: #fff;
}

.banner-stop-btn:hover,
.banner-stop-btn:focus {
	background-color: #fff;
}

.banner-stop-btn:hover i,
.banner-stop-btn:focus i {
	color: #002c57;
}

.banner-stop-btn:hover,
.banner-stop-btn:focus {
	padding: 10px 12px;
}


.contact-location-box .contact-location-img-block {
	margin-left: -0.75rem;
	margin-right: -0.75rem;
	margin-bottom: 1rem;
}

.contact-location-box .contact-location-img-block img {
	width: 100%;
}

.contact-location-box {
	border: 2px solid #002c57;
	padding: 0.75rem;
	width: 100%;
	margin-bottom: 2rem !important;
}

.icon-list li .contact-location-box i {
	color: #002c57;
}

.high-contrast-body .regional-main-div ul li {
	border: 2px #fff solid;
}


@media (max-width: 991.98px) {
	.contact-location-list .col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 33.333333%;
		flex: 0 0 33.333333%;
		max-width: 33.333333%;
	}
}


@media (max-width: 767.98px) {
	.contact-location-list .col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}


@media (max-width: 575.98px) {
	.contact-location-list .col {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.hover-box-section-homapage .iconbox-text{
        font-size: 0.8rem !important;
        line-height: 1.25rem !important;
        padding: 0 5px;
    }
    .hover-box-section-homapage .iconbox-block .iconbox-hover{
        padding: 0 0 1rem 0;
    }
}


.feedback-btn-layout {
	color: #fff !important;
	background: #002c57 !important;
	border: 2px transparent solid !important;
}

.feedback-btn-layout:hover,
.feedback-btn-layout:focus {
	color: #002c57 !important;
	background: #fff !important;
	border: 2px #002c57 solid !important;
}

.high-contrast-body .feedback-btn-layout:hover,
.high-contrast-body .feedback-btn-layout:focus {
	color: #002c57 !important;
	background: #fff !important;
	border: 2px #002c57 solid !important;
}

.high-contrast-body .feedback-btn-layout {
	border: 2px #fff solid !important;
	background: #000 !important;
}

.search-form .search-field::-webkit-input-placeholder {
	color: #002c57;
	font-size: 18px;
	font-weight: 600;
}

.search-form .search-field:-ms-input-placeholder {
	color: #002c57;
	font-size: 18px;
	font-weight: 600;
}

.search-form .search-field::-ms-input-placeholder {
	color: #002c57;
	font-size: 18px;
	font-weight: 600;
}

.search-form .search-field::placeholder {
	color: #002c57;
	font-size: 18px;
	font-weight: 600;
}

.high-contrast-body .search-form .search-field::-webkit-input-placeholder {
	color: #fff !important;
}

.high-contrast-body .search-form .search-field:-ms-input-placeholder {
	color: #fff !important;
}

.high-contrast-body .search-form .search-field::-ms-input-placeholder {
	color: #fff !important;
}

.high-contrast-body .search-form .search-field::placeholder {
	color: #fff !important;
}

/* video spaccing issue solve js-composer style overwrite*/
.wpb_video_widget.vc_video-aspect-ratio-169 .wpb_video_wrapper {
	padding-top: 56.25%;
	padding-bottom: 80px;
	overflow: hidden;
	height: 0;
}

.rollout-in-wa .vc_tta-panel-heading {
	margin-bottom: 0 !important;
	margin-top: 0 !important;
}

.rollout-in-wa a {
	color: #002c57 !important;
}

.rollout-in-wa a:hover {
	color: #fff !important;
	background: #002c57 !important;
}

.rollout-in-wa a.vc_tta-controls-icon:hover {
	border-color: #fff !important;
}

.rollout-in-wa {
	border: 2px #002c57 solid !important;
	margin-bottom: 10px;
}

.rollout-in-wa .vc_tta-panel-body {
	border: 0 !important;
	background: #002c57 !important;
	color: #fff;
	border-radius: 0 !important;
}

.rollout-in-wa .vc_tta-controls-icon {
	height: 14px !important;
	width: 14px !important;
}

.rollout-in-wa .vc_tta-controls-icon::before {
	border-color: #002c57 !important;
}

.high-contrast-body .rollout-in-wa a {
	color: #fff !important;
	border: 1px #fff solid !important;
	background: #000 !important;
}

.high-contrast-body .rollout-in-wa a:hover {
	color: #002c57 !important;
	border: 1px transparent solid !important;
	background: #fff !important;
}

.high-contrast-body .rollout-in-wa .vc_tta-panel-body {
	background: #000 !important;
	color: #fff !important;
}

.regional-sites-header {
	font-size: 23px;
}

/*.carousel-control-prev:focus{
	background: url('/wp-content/uploads/2019/08/left-arrow-1.png') !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: auto !important;
}*/
.carousel-control-prev .fa-chevron-left {
	width: 40px;
	height: 43px;
	padding-top: 12px;
}

.carousel-control-prev .fa-chevron-left:before {
	content: "\f053";
	font-size: 22px;
}

.carousel-control-prev .fa-chevron-left:hover:before {
	content: "\f053";
	font-size: 22px;
}

/*.carousel-control-next:focus{
	background: url('/wp-content/uploads/2019/08/right-arrow-1.png') !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: auto !important;
	width: 40px;
    height: 43px;
    padding-top: 12px;
}*/
.carousel-control-next .fa-chevron-right {
	width: 40px;
	height: 39px;
	padding-top: 12px;
}

.carousel-control-next .fa-chevron-right:before {
	content: "\f054";
	display: block;
	font-size: 22px;
}

.carousel-control-next .fa-chevron-right:hover:before {
	content: "\f054";
	font-size: 22px;
	color: #fff;
}

.high-contrast-body .carousel-control-prev .fa-chevron-left {
	width: 40px;
	height: 32px;
	padding-top: 6px;
	background: #000;
}

.high-contrast-body .carousel-control-next .fa-chevron-right {
	width: 40px;
	height: 32px;
	padding-top: 6px;
	background: #000;
}

.high-contrast-body .carousel-control-prev,
.high-contrast-body .carousel-control-next {
	background: #000;
	border: 2px #fff solid;
}

.high-contrast-body .carousel-control-prev:hover,
.high-contrast-body .carousel-control-next:hover {
	background: #fff;
	opacity: 0;
	color: #002c57;
}

.activ-slider .carousel-control-prev:hover,
.activ-slider .carousel-control-next:hover,
.activ-slider .carousel-control-prev:focus,
.activ-slider .carousel-control-next:focus {
	opacity: 1;
	background: #002c57 !important;
	color: #fff !important;
	outline: 2px;
}

.skip-content-tab {
	position: absolute;
	left: -300px;
	right: auto;
	top: -4px;
}

.skip-content-tab a {
	border-bottom: none;
	font-size: 20px !important;
	z-index: -999;
	overflow: hidden;
}

.skip-content-tab a:focus,
.skip-content-tab a:active {
	padding: 8px;
	display: block;
	z-index: 999;
	overflow: auto;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.home-location-heading {
	font-size: 2.15rem !important;
}

.home-location-heading:after {
	border: none !important;
}

.btn-success-stories a {
	color: #fff;
}

.high-contrast-body .btn-success-stories a {
	background: #000 !important;
	color: #fff !important;
	border: 2px #fff solid !important;
}

.high-contrast-body .btn-success-stories a:hover,
.high-contrast-body .btn-success-stories a:focus {
	background: #fff !important;
	color: #000 !important;
}

.successstories-slider .activ-slider .carousel-control-prev,
.successstories-slider .activ-slider .carousel-control-next {
	top: calc(100% - -40px) !important;
}

.successstories-slider .banner-stop-div {
	top: calc(100% - 6px) !important;
}

.successstories-slider .owl-dots{
	margin-top:1.5rem !important;
	margin-bottom: 1.5rem !important;
}

@media screen and (min-width: 320px) and (max-width: 767px) {
	.successstories-slider .banner-stop-div {
		top: calc(100% + -17px) !important;
	}
}

.view-more-success-btn {
	position: absolute;
	top: calc(100% + 52px);
	left: calc(50% + -130px);
	right: auto;
}

#success-stories-slider .carousel-inner {
	overflow: unset;
}

.supported-employment-hover-div button:hover {
	border-color: transparent !important;
	background: #f8f9fa !important;
}

.supported-employment-hover-div .iconbox-hover {
	display: none;
}

.high-contrast-body .slider-high-contrast-background {
	background: #000 !important;
}

.high-contrast-body .view-more-success-btn a {
	color: #fff;
	background: #000 !important;
}

.high-contrast-body .view-more-success-btn a:hover,
.high-contrast-body .view-more-success-btn a:focus {
	color: #000;
	background: #fff !important;
}

.simple-bg {
	min-height: 500px;
	margin-bottom: 2rem;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.high-contrast-body .title-border::after {
	border-bottom: 5px solid #fff;
}

.service-block:hover, .service-block:focus h3{color: #fff;}

/*Hide recaptcha css*/
.grecaptcha-badge {
	display: none !important;
}

.course-sidebar ul li{
	padding-left: 50px;
}

.course-sidebar .duration:before,
.course-sidebar .work-placemnt:before,
.course-sidebar .fee-donation:before,
.course-sidebar .award:before,
.course-sidebar .funding:before{
	content: '\f017' !important;
	display: block;
	font-family: Font Awesome\ 5 Free;
	font-weight: 600;
	color: #f4821f;
	font-size: 30px;
	top: 8px;
}
.course-sidebar .work-placemnt:before{
	content: '\f0b1' !important;
}
.course-sidebar .fee-donation:before{
	content: '\f155' !important;
}
.course-sidebar .award:before{
	content: '\f091' !important;
}
.course-sidebar .funding:before{
	content: '\f0d6' !important;
}

.card-block-our-program{
	margin-top: 47px;
	margin-bottom: 47px !important;
}

/* HOMEPAGE BANNER FIX */
.carousel-item-next, 
.carousel-item-prev, 
.carousel-item.active {
	display: table;
}
.carousel-item-next .title-background, 
.carousel-item-prev .title-background, 
.carousel-item.active .title-background {
	display: table-cell;
	vertical-align: top;
}

/* MOBILE FIXES */
.breadcrumb{
	background: none;padding-left:0;margin-top:10px;
}

.common-icons .iconbox-block img {
    max-height: 90px;
}

.common-icons-2 .iconbox-block img {
    max-height: 60px;
}

.service-carousel.owl-carousel .owl-item img {
    display: inline-block;
    width: auto;
}
.owl-dots {
	margin: 0px 0px 45px !important;
}
.owl-carousel {
	margin: 0px !important;
}
.owl-dots .owl-dot.active span, 
.owl-dots .owl-dot:hover span {
	background: #002c57;
}

.supported-employment-hover-div button.iconbox-block:focus {
	outline: none;
	border: none;
}

/* Hide duplicate banner image on suburbs */
.tax-suburb #content .main-container .title-background:nth-child(2){
	display: none;
}

/* Hide blue arrow on location item */
.businessservice #location-list .location-box .location-footer .btn-icon{
	display: none;
}

/* Hide Font Awesome markers on Careers' page list items */
.career-pageup-content .icon-list ul li:before, .career-pageup-content .icon-list li:before{
	content: "";
}


@media screen and (min-width: 320px) and (max-width: 767px) {
	.our-value-a-tag:focus,
	.our-value-a-tag:hover,
	.our-value-a-tag:active {
		background-color: transparent !important;
	}

	.our-value-a-tag button:hover,
	input[type="button"]:hover,
	input[type="reset"]:hover,
	input[type="submit"]:hover {
		background: transparent;
		border: transparent;
	}
	.high-contrast-body .service-block-hover{
	   display: contents;
	}
	.pathway-training-program .iconbox-block{
	    margin-bottom: 30px;
	}
	.pathway-training-program .iconbox-block img{
	    width: 125px;
	    height: aut;
	}
	.banner-stop-div {
		top: calc(100% + -57px);
	}
	.vc_row.aboutus-section{
	    background: none;
	}
	
}

@media screen and (min-width: 320px) and (max-width: 991px){
	.service-block-hover-text{display: block !important;}
	.high-contrast-body .nav-toggle-menu svg path{
		fill: #fff;
	}
	.high-contrast-body nav-t.nav-toggle-menu:hover svg path,
	.high-contrast-body .nav-toggle-menu:focus svg path{
		fill: #000 !important;
	}
	.page-id-2244 .iconbox-block img{
	    max-width: 50%;
	}
	#location-filter-form fieldset {
		padding: 0.3em 0em 1em 0em;
		margin-top: 10px;
	}

	#location-filter-form fieldset .checkbox-list {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}
}

@media screen and (min-width: 320px) and (max-width: 768px) {
	.hover-box-section-homapage .vc_col-sm-2 .wpb_wrapper{
		height: 315px;
		margin-bottom: 15px;
	}
	.supported-employment-hover-div{
		margin-bottom: 20px;
	}
	.supported-employment-hover-div .wpb_wrapper .iconbox-block {
		min-height: 195px;
	}
	.wpb_wrapper .iconbox-block img{
		width: 100px;
		height: auto;
		margin: 0px auto;
	}
	.title-bg-img{
		background-position: center center;
	}
}

@media screen and (min-width: 320px) and (max-width: 480px) {
	#content .main-container .title-body .entry-header{
		margin-top: -45px;
	}
	.home #content .main-container .title-body .entry-header{
		margin-top: 0px;
	}
	#secondary-nav li a svg{
		border-top: 2px solid #002c57;
		height: 95%;
		right: -21.33px;
	}
	#secondary-nav li:first-child a .text-icon-inner, #secondary-nav li:last-child a .text-icon-inner{
		max-width: 8em;
		margin: 0px auto;
	}
}


/* iPad fixes */
@media screen and (min-width: 767px) and (max-width: 768px){
	#secondary-nav li a svg{
		right: -23px;
	}
	.pathway-training-program .wpb_column .iconbox-block{
		min-height: 262px;
	}
	
}

/* Fix Contact page issue on certain screen width where the Locations being stretched*/
@media screen and (min-width: 1200px) and (max-width: 1400px) {
	.page-id-151 .content-area .vc_row .contact-location-list .d-flex{
		max-width: 25%;
	}
}

/* Vacancies page styling */
.page-id-5622 #content .video-section{
	background-color: #002c57;	
	padding: 25px 0px 10px 0px;
	color: #fff;
}

.page-id-5622 #content .video-section input[type="submit"]{
	background: linear-gradient(#FFA03D,#F5821F 50%);
	color: #0D3A60;
	font-weight: 700;
}

.page-id-5622 #content .video-section input[type="submit"]:hover{
	background: #fff;
}


/* PageUp Template's Coronavirus Notice styling */
.career-pageup-content .coronavirus-notice{
	color: #ffffff;
	background-color: #002c57;
	padding: 1.25rem 1rem 0.5rem 1rem;
	border-radius: 0.3rem;
	margin-bottom: 2.5rem;
}

.career-pageup-content .coronavirus-notice a{
	color: #ffffff;
}

.career-pageup-content .coronavirus-notice a:hover, .career-pageup-content .coronavirus-notice a:focus{
	color: #f5821f;
}


/*===========================================
=     New Custom Styles for Home Page       =
===========================================*/

.newsletter-heading {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #fff;
  font-size: 2.5rem;
}

.custom-slider-title {
	font-size: 2.5rem;
    color: #002c57;
    clear: both;
    line-height: 1;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem !important;
}
.custom-supportus-title {
  font-weight: 600;
  color: #002c57;
  margin: 0;
  padding-bottom: 1.15rem;
  clear: both;
  line-height: 1.2;
  display: block;
}


/* Community and Employment form styling */
.community-employment-form{
	display: block;
    width: 100%;
    padding: 1em 1em 0em 0em;
}

/* BLOG */
.rll-youtube-player img {
	width: auto !important;
	position: relative !important;
}
.rll-youtube-player {
	height: auto !important;
	padding: 0px !important;
	width: auto !important;
	text-align: center;
	top: unset !important;
	left: unset !important;
}
.rll-youtube-player iframe {
	position: relative !important;
	height: auto !important;
	display: inline-block !important;
	width: 640px !important;
	height: 360px !important;
}
@media all and (max-width: 480px) {
	.rll-youtube-player iframe {
		width: 100% !important;

	}
}

/* NEW FOOTER */
.footer-top .widget-title,
.footer-bottom .widget-title {
	font-size: 18px;
	padding: 0px;
}
.footer-top .widget-title:after,
.footer-bottom .widget-title:after {
	display: none;
} 
.footer-top a:hover,
.footer-bottom a:hover {
	background: transparent;
}
.footer-top *,
.footer-bottom * {
	color: #fff;
	text-decoration: none;
	border: 0px !important;
}
.footer-top .widget {
	margin: 0px !important;
}
.footer-top .phone-no {
	font-size: 20px;
    line-height: 34px;
}
.footer-top .phone-no:hover {
	background: #fff;
}
.footer-top .phone-no:hover span {
	color: #002c57;
}
.footer-top {
	border-bottom: 1px solid #fff;
	margin-bottom: 30px;
	padding-bottom: 15px;
}
.footer-top .col-footer {
	margin-bottom: 30px;
}
.footer-top .col-footer section:last-child {
	margin-bottom: 0px;
}
.footer-top .footer-logos a {
	display: inline-block;
	width: 50%;
	padding: 0px 15px;
	float: left;
}
.footer-top .footer-logos a img {
	max-width: 100%;
}
.footer-bottom .footer-widget ul li {
	padding-left: 0px !important;
}
.footer-bottom .footer-widget ul li a {
	font-size: 18px;
}
.footer-bottom .footer-widget ul li:before {
	display: none;
}
#footer-main-nav .menu-search-item,
#footer-main-nav #mobile-nav-toggle-close {
	display: none;
}
#footer-main-nav .menu-item a {
	color: #fff;
	padding: 0px;
	display: inline;
	border-radius: 0;
}
#footer-main-nav .menu-item a:hover {
	color: #002c57;
	background: #fff;
}
#footer-main-nav .nav-menu {
	display: flex;
	justify-content: space-between;
}
#footer-main-nav .nav-menu li:not(.menu-search-item) {
    max-width: 100%;
    float: none;
    margin: 0px 0px 15px;
    text-align: left;
    display: inline-block;
}
#footer-main-nav .nav-menu li.menu-item-3289 {
	text-align: center;
}
footer .menu-item-27910 {
	display: none !important;
}
@media all and (max-width: 991px) {
	.footer-bottom .col-footer {
		width: 100%;
	}
}
@media all and (max-width: 767px) {
	#footer-main-nav .nav-menu,
	#footer-main-nav .nav-menu li:not(.menu-search-item) {
		display: block;		
		width: 100%;
		text-align: left !important;
	}
}


/* Generic contact page */
.other-ways-tocontact{
    text-align: center;
    padding: 1rem 0rem;
}

.other-ways-tocontact .contact-icon i{
    font-size: 5rem;
    color: #002c57;
}

.other-ways-tocontact .contact-heading{
    font-size: 1.5rem;
    font-weight: 700;
    color: #002c57;
    margin: 2rem 0rem 1rem 0rem;
}

.other-ways-tocontact .contact-detail span{
    font-weight: 600;
    color: #002c57;
}