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

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

@import url('fonts/poppins-v12-latin/poppins-font.css');

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

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

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

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

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
	box-sizing: border-box;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: 'Poppins', sans-serif;
	margin-top: 1rem;
}

h1 {color:#0E829E;}
h3, h5 {color: #ED833F;}
h2, h4 {color:#0E829E;}
h4 {font-size: 1.3rem;}

p {
	margin-bottom: 1.5em;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

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

code,
kbd,
tt,
var {
	font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

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

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

big {
	font-size: 125%;
}

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

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

.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 0em;
}

ul {
	list-style: square;
}

ol {
	list-style: decimal;
}

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

ul.lists, ul.lists li > ul,
ul.lists li > ol {
	list-style: none;
}

ul.lists li:before {
	font-family: 'Font Awesome\ 5 Free';
	content: '\f105';
	font-weight: 900;
	font-size: 14px;
	color: #e9983d;
	margin-top: 2px;
	margin-left: -16px;
	position: absolute;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

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

figure {
	margin: 1em 0;
}

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

.parallax {
	background-attachment: fixed!important;
	background-position: center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-color: #333;
	position: relative;
}

.parallax-window {
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

/* Links
--------------------------------------------- */
a {
	color: #208e9b;
}

a:hover,
a:focus,
a:active {
	color: #ED833F;
}

a:focus {
	outline: thin dotted;
}

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

/* Forms
--------------------------------------------- */
.btn,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	padding-left: 30px;
	padding-right: 30px;
	-webkit-transition: all .3s ease .2s;
	-moz-transition: all .3s ease .2s;
	-ms-transition: all .3s ease .2s;
	-o-transition: all .3s ease .2s;
	transition: all .3s ease .1s;
	border-width: 0;
	text-decoration: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	text-transform: uppercase;
	line-height: 2.5;
	font-weight: 700;
	background-color:#ED833F;
	color: #fff;
	position: relative;
	font-size: 13px;
	-webkit-border-radius: 3px;
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 10px;
}

.btn:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background-color: #264c5f;
	color: #fff;
}

.btn:active,
.btn:focus,
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 {
	background-color: #264c5f;
	color: #fff;
}

.btn-lg {
	font-size: 1.25rem;
    line-height: 2.5;
}

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

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

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.navbar {
	padding: 0px;
	font-family: 'Poppins', sans-serif;
}

.navbar:hover {
	cursor: pointer;
}

.nav-item a {
	color: #fff;
	font-size: 23px;
}

.navbar li:hover > a {
	color: #bfdbe3;
}

.navbar ul {
	margin: 0px;
}

.dropdown-menu {
	background-color: #bfdbe3;
	color: #264c5f;
	border: none;
	border-radius: 0px;
}

.dropdown-menu .nav-item a {
	font-size: 15px;
	color: #264c5f;
}

.dropdown-menu .nav-item a:hover,
.dropdown-menu .nav-item a:active  {
	color: #264c5f;
	background-color: white;
}

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

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

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

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

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

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

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

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

.header-inner-section {
	min-height: 175px;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
	color: #fff;
}

.header-inner-content {
	position: relative;
    z-index: 1;
	float: left;
	overflow-wrap: anywhere;
}

.header-inner-content h2 {
	font-size: 3.71429em;
	font-weight: 700;
	margin-bottom: 20px;
	letter-spacing: -.2px;
}

.header-inner-content p {
	font-size: 1.57143em;
	margin-bottom: 15px;
	line-height: 1.5;
}

.page-title {
	color: white;
	font-size: 40px;
	font-weight: 500;
	margin: 0;
}

.entry-meta {
	padding: 0;
	font-size: 14px;
}

.entry-meta a { font-weight: 600; }

.entry-footer, .page-entry-footer {
	margin-top: 3rem;
	margin-bottom: 5rem;
	font-size: 14px;
	line-height: 2em;
}

.entry-footer, .page-entry-footer ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

.entry-footer, .page-entry-footer li {
	display: inline-block;
	margin-right: 4rem;
}

.tag-icon {
	margin-right: .5rem;
}

footer.entry-footer {
padding-left: 0px;
padding-right: 0px!important;
padding-bottom: 20px;
}

footer.page-entry-footer {
margin-top: 20px;
padding-top: 20px;
padding-bottom: 20px;
border-top: 0px!important;
border-bottom: 0px!important;
}

footer.index-entry-footer {
font-size: 16px;
line-height: 2em;
margin-top: 20px;
padding-top: 10px;
}

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

.bypostauthor {
	display: block;
}

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

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

footer .widget-title {
	font-size: 18px;
	font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 10px;
    border-bottom: solid 1px #ED833F;
    color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
	display: block;
}

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

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

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

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

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

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

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

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

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

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

	/*rtl:ignore*/
	float: left;

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

.alignright {

	/*rtl:ignore*/
	float: right;

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

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

.textcenter {
	text-align: center;
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.flexcenter {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	text-align: center;
}

/* Header
--------------------------------------------- */
.topbar__menu {
	background-color: #264c5f;
	font-size: 14px;
	float: right;
	padding: 10px 20px;
	border-radius: 0px 0px 10px 10px;
}

.topbar__menu a {
	color: white;
}

.sep {
	font-weight: 800;
	padding: 0px 2px;
	color: #ED833F;
}

.site-branding {
	margin-top: -20px;
  	padding-bottom: 20px;
}

.navbar-toggler {
	margin: 0;
	padding: 12px 15px;
    font-size: 17px;
	color: #fff!important;
	border: none;
}

.navbar-toggler:hover, .navbar-toggler:active {
	background-color: #264c5f;
	border: none;
}

.navbar-toggler span {
	margin-left: 5px;
    font-size: 17px;
	font-weight: bold;
}

.search-wrapper {
	margin-top: 19px;
}

.search-wrapper label {
	display: none;
}

select#searchtype {
	width: 26%;
	margin: 0;
	border: 0;
	font-size: 11px!important;
	color: #0E829E;
	outline: 0;
	background-color: #EEF1F4;
	padding: .5rem;
	font-size: 1rem;
	line-height: normal;
	border-radius: 0;
	height: 2.4375rem;
	text-transform: none;
	height: 48px;
	border: 1px solid #ED833F;
	border-right: none;
	border-radius: 4px 0px 0px 4px!important;
	height: 48px;
	float: left;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%230E829E%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat, repeat;
	/* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
	background-position: right .7em top 50%, 0 0;
	/* icon size, then gradient */
	background-size: .65em auto, 100%;
}

	
/* Hide arrow icon in IE browsers */
select#searchtype::-ms-expand {
	display: none;
}

/* Set options to normal weight */
select#searchtype option {
	font-weight:normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] select#searchtype, :root:lang(ar) select#searchtype, :root:lang(iw) select#searchtype {
	background-position: left .7em top 50%, 0 0;
	padding: .6em .8em .5em 1.4em;
}

#searchdetail {
	float: left;
	height: 48px;
	font-size: 11px!important;
	color: #0E829E!important;
	padding-left: 10px;
	padding-right: 0px;
	width: 59%;
	border-radius: 0px;
	background-color: #EEF1F4;
	border-top: 1px solid #ED833F;
	border-bottom: 1px solid #ED833F;
	border-left: none;
}

#searchdetail::placeholder {
	font-size: 11px!important;
	color: #0E829E;
}

#frontsearchbutton {
	width: 15%;
	height: 48px;
	padding: 10px;
	border-radius: 0px 4px 4px 0px;
	color: #fff;
	overflow: visible;
	border: 1px solid #ED833F;
  background-color: #ED833F;
}

.nav-wrapper {
	background: #264c5f;
	border-bottom: solid 4px #ED833F;
	font-size: 20px;
	box-shadow: -5px 13px 13px 6px rgba(19,18,18,0.27);
}

.socials {
	padding-top: 4px;
	width: 200px;
}

.socials ul {
	list-style-type: none;
	margin: 0;
	padding: 0px;
}

.socials ul li {
  display:inline-block;
}

.socials ul li a {
	color: #fff;
	padding: 0px 4px 0px 4px;
	font-size: 20px;
	line-height: 1;
}

.socials ul li a:hover {
	color: #ED833F;
}

/* Footer
--------------------------------------------- */
.site-footer {
	padding: 40px 0 40px 0;
	background: #264c5f;
	border-top: solid 4px #ED833F;
	color: #fff;
}

.site-footer a {
	color: #fff;
}

.site-footer img {
	margin-bottom: 20px;
}

.footer-title {
	font-weight: 800;
	text-transform: uppercase;
}

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

.footer-widgets li:not(:last-child) {
	padding-bottom: 10px;
}

.site-footer .address p {
	font-size: 15px;
	margin-bottom: 10px;
}

.site-footer .socials ul li a {
	font-size: 25px;
	margin-bottom: 10px;
}

.site-footer .socials ul {
	margin-bottom: 15px;
}

.site-info {
	background: #264c5f;
	border-top: solid 1px #ED833F;
	padding: 20px;
	font-size: 13px;
	color: #fff;
}

.site-info a {
	color: #fff;
	text-decoration: none;
}

.site-info a:hover {
	text-decoration: underline;
}

.site-info-right ul {
	list-style-type: none;
	margin: 0;
	float: right;
}

.site-info-right ul li {
  float: left;
}

.site-info-right ul li a {
	color: #fff;
	padding: 0px 7px 0px 7px;
	font-size: 14px;
	line-height: 1;
}

.site-by svg{
	height: 50px;
	fill: #fff;
}

.site-by svg:hover {
  fill: #ED833F;
}

/* Homepage
--------------------------------------------- */
.hero__wrapper {
	min-height: 550px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: flex-end;
	position: relative;
}

.hero__text {
	position: relative;
	float: left;
	z-index: 1;
	padding: 40px;
	height: 100%;
	width: 50%;
	background: linear-gradient(to bottom, rgba(12, 35, 64, 0.5) 0%, rgba(14, 130, 158, 0.9) 100%)
}

.hero__title {
	color: white;
	font-size: 25px;
	margin-top: 0px;
	line-height: 1.2;
}

.hero__tag {
	color: white;
	font-size: 22px;
	margin-bottom: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.hero__text .btn-wrapper a {
	font-size: 1em;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.hero__text .btn-wrapper .badge {
	font-size: 1em;
}

.hero__text.banner-verion-2 p {
	font-size: 1.57143em;
	margin-bottom: 0px;
}

.hero__text.banner-verion-2 h2 {
	font-size: 5.14286em;
}

.btn-hero {
	margin-top: 15px;
    background: #bfdbe3;
    color: #264c5f;
}

.btn-hero:hover {
	background-color: #fff;
	color: #264c5f;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(to left, rgba(12, 35, 64, 0.3) 0%, rgb(37 37 37 / 70%) 100%);
	z-index: 0;
}

/* Events Section */
.events {
	background-color: #2e9bc2;
	padding: 60px 0px 60px 0px;
	color: #fff;
    background-image:
    linear-gradient(to bottom, rgba(12, 35, 64, 0.5) 0%, rgba(14, 130, 158, 0.7) 100%),
    url(https://nwrls.com/wp-content/themes/nwrlib/assets/img/congruent_pentagon.png);
}

.events .btn {
	margin-right: 7px;
	margin-top: 10px;
	float: right;
}

.events h2 {
	padding-bottom: 20px;
	font-weight: 800;
	color: #fff;
}

.event-card__wrapper {
	display: flex;
}

.events .card {
	background-color: #264c5f;
	border: none;
	box-shadow: 0 8px 32px rgba(0,0,0,.0893909);
	border-radius: 8px;
	overflow: hidden;
	width: 100%;
	transition: .4s all;
	-webkit-transition: .4s all;
	transform: scale(1.0) translateY(-5px);
	-webkit-transform: scale(1.0) translateY(-5px);
}

.events .card:hover {
	transition: .4s all;
	-webkit-transition: .4s all;
	transform: scale(1.04) translateY(-5px);
	-webkit-transform: scale(1.04) translateY(-5px);
	z-index: 1;
	cursor: pointer;
}

.events .card a,
.events .card a:visited,
.events .card a:hover {
	text-decoration: none;
}

.events .card .entry-img {
	height: 200px;
  	overflow: hidden;
}

.events .entry-img__inner {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
	transform-origin: center center;
}

.events .card .entry-content {
	padding: 30px;
	margin: 0;
	overflow: hidden;
  	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}

.events .card .entry-header {
	display: block;
	font-size: 20px;
	line-height: 1.1;
	font-weight: bold;
	margin: 10px 0;
	color: #bfdbe3;
}

.events .card .entry-excerpt {
	margin-top: 15px;
	font-style: oblique;
	font-size: 14px;
}

.events .card .entry-meta {
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
}

.entry-venue {
	text-transform: uppercase;
	line-height: 1.1;
}

.events .card .entry-content a {
	color: #fff;
}

.mxh-150 {
	max-height: 150px;
}

.discover__wrapper {
	background-color: #EDEDED;
	padding: 50px 0 50px 0;
}

.nyt-carousel .section-title {
	margin-left: 20px;
	margin-bottom: -8px;
	position: relative;
	z-index: 2;
	color: #264c5f;
	font-weight: 800;
}

.nyt-carousel .top-tag {
	margin-top: -29px;
	float: right;
	font-size: 13px;
	margin-right: 23px;
	background-color: #12829E;
	color: #fff;
	padding: 5px 20px;
}

#homeBookList .owl-prev, #homeBookList .owl-next {
	margin-top: -120px;
	margin-bottom: 0px;
	position: relative;
	background-color: #2e9bc2;
  color: #fff;
  padding: 5px 20px;
}

.owl-stage-outer {
	border: solid 5px #2e9bc2;
	padding: 30px 0 30px 0;
	border-radius: 10px;
	height: 200px;
	width: 100%;
}

.owl-theme .owl-controls {
	margin-top: 0px!important;
}

.owl-carousel .owl-item {
	margin-right: 15px!important;
}

.owl-theme .owl-controls {
	margin-top: 84px!important;
	text-align: center;
}

.digital-library-btns .section-title {
	font-size: 21px;
	font-weight: bold;
	margin-bottom: 20px;
	color: #264c5f;
}

.digital-library-btns .btn {
	margin-bottom: 10px;
	font-size: 15px;
	width: 100%;
	padding: 7px 10px 7px 10px;
}

.digital-library-btns .btn i, .btn i {
	margin-right: 10px;
	font-size: 25px;
	position: relative;
	top: 4px;
}

.newsletter-signup {
	padding: 50px 0 50px 0;
	background-color: rgba(18,130,158,.30);
	color: #264c5f;
}

.newsletter-signup .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.newsletter-signup h2 {
	color: #264c5f;
}

.newsletter-signup h3 {
	font-size: 18px;
	margin-bottom: 0px;
	color:#264c5f;
}

.newsletter-signup span {
	font-size: 3.57143em;
	margin-right: 30px;
	min-width: 55px;
	max-width: 55px;
	color: #ED833F;
}

.newsletter-signup .txt {
	-webkit-box-flex: 1;
    -ms-flex: 1;
		flex: 1;
		color: #264c5f;
}

.newsletter-signup a {
	color: #264c5f;
	text-decoration: underline;
}

.newsletter-signup__form {
	padding-top: 33px;
}

div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
	width: 77%!important;
	padding: 9px 30px!important;
	border: 1px solid #ED833F!important;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
	border-radius: 0px!important;
	font-size: 14px;
	line-height: 1.5;
	color: #323232;
	display: inline-block;
	float: left;
}

p.ctct-gdpr-text {
	display: none;
}

div.ctct-form-embed div.ctct-form-defaults p.ctct-form-footer {
	display: none;
}

div.ctct-form-embed div.ctct-form-defaults {
	padding: 0px!important;
}

div.ctct-form-embed form.ctct-form-custom label.ctct-form-label {
	display: none!important;
}

div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
	display: block;
	width: inherit!important;
	margin-top: -13px;
	height: 46px!important;
	margin-bottom: 0;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase!important;
	cursor: pointer;
	line-height: 1.0!important;
	background-image: none;
	border: none;
	box-shadow: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	color: #fff;
	font-size: 14px!important;
	padding: 9px 30px!important;
	border-radius: 0!important;
}

div.ctct-form-embed form.ctct-form-custom {
	margin: 0 auto;
	box-sizing: border-box;
	min-height: inherit!important;
}

form.ctct-form-custom {
	background-color: rgba(18,130,158,.30)!important;
}

div.ctct-form-embed div.ctct-form-defaults div.ctct-form-success {
    min-height: 100px;
    background-color: rgba(18,130,158,.30)!important;
	display: block;
}

div.ctct-form-embed div.ctct-form-defaults h2.ctct-form-header {
    line-height: 1.2!important;
    -webkit-font-smoothing: antialiased;
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 12px 0;
    color: #ED833F!important;
}

@media (min-width: 100px) and (max-width: 1242px) {
	div.ctct-form-embed form.ctct-form-custom input.ctct-form-element {
		width: 100%!important;
	}

	div.ctct-form-embed form.ctct-form-custom button.ctct-form-button {
		width: 100%!important;
	}
}

/* Events Calendar
--------------------------------------------- */

.events-archive .page-title {
	display: block!important;
}

.single-tribe_events .page-title {
	display: block!important;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
	padding-bottom: 25px;
	padding-top: 0px;
}

.tribe-events .tribe-events-l-container {
	padding-bottom: 25px;
	padding-top: 0px;
}

.tribe-events-c-nav__prev-label {
	text-transform: uppercase!important;
}

nav.tribe-events-calendar-list-nav {
	text-transform: uppercase!important;
}

button.events-dropbtn {
	padding: 30px;
    font-size: 1.5rem;
    background-color: #ED833F;
	color: #fff;
	width: 100%!important;
}

button.events-dropbtn:hover,
button.events-dropbtn:active,
button.events-dropbtn:focus {
	background-color: #264c5f;
	color: #fff;
}

.events-dropdown {
	margin-bottom: 35px!important;
}

.events-dropdown .dropdown-menu {
	background: linear-gradient(to right, #0e829e, #2e9bc2);
	width: 100%;
	border-radius: 0px;
}

.events-dropdown a.dropdown-item {
	color: #fff;
	padding: 18px;
	font-size: 13px!important;
}

.events-dropdown a.dropdown-item:hover {
	color: #fff;
	background-color: #ED833F;
}

/* Ninja Forms
--------------------------------------------- */

.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
    background: #ED833F!important;
    border: 0;
		color: #fff!important;
		padding: 30px!important;
    line-height: 1px!important;
    transition: all .5s;
}

.nf-form-content label {
	font-size: 18px;
	line-height: 20px;
	color: #0E829E!important;
}

.nf-form-fields-required {
  padding-bottom: 25px;
  font-weight: bold;
}

.nf-field-description p:last-child {
    margin: 0 0 20px 0!important;
}

/* Various Other Custom Rules
--------------------------------------------- */

.elementor-tab-title a {
	color: #0E829E!important;
}

#loginform #wp-submit {
	width: 100%;
    padding: 10px;
    font-size: 15px;
}

#loginform input#user_login.input, #loginform input#user_pass.input {
	width: 100%;
}

input[name="user"] {
	margin-bottom: 25px;
    padding: 15px;
    text-align: center;
}

/* Responsive
--------------------------------------------- */

@media all and (min-width: 992px) {
	ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
	}
	
	.navbar { padding-top: 0; padding-bottom: 0; }
	.navbar .has-megamenu { position:static!important; }
	.navbar .megamenu { left:0; right:0; width:100%; padding:20px; }
	.navbar-expand-md .navbar-nav .nav-link { padding: 20px 8px; font-size: inherit;}
}

@media screen and (min-width:768px) and (max-width:992px) {
	.navbar .nav-link { font-size: 15px; }
	.navbar-expand-md .navbar-nav .nav-link { padding: 20px 8px;}
	.navbar .socials { padding-top: 0px; }
	.socials ul li a { font-size: 15px; }
	.digital-library-btns {margin-top: 135px;}
	.digital-library-btns .section-title {font-size: 25px;}
	.search-wrapper {margin-top: -12px; margin-bottom: 20px;}
}

@media all and (max-width: 992px) {

	.events__wrapper .btn {
		font-size: 12px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.event-card__wrapper {
		padding-bottom: 25px;
	}

	.hero__text {
		width: 100%;
	}

	.search-wrapper__mobile {
		margin-top: -30px;
    	margin-bottom: 20px;
	}

	.page-title {
		font-size: 35px;
	}
}

@media only screen and (max-width: 768px) {
	
	.topbar__menu {
		float: none;
		text-align: center;
	}
	
	.site-branding {
		padding: 0;
		margin: 25px 0;
		text-align: center;
	}

	.search-wrapper {
		margin-top: 0;
    	margin-bottom: 30px;
	}

	.nav-wrapper {
		padding: 10px;
	}

	.nyt-carousel .top-tag {
		margin-top: -22px;
		font-size: 8px;
		padding: 5px 13px;
	}

	.mxh-150 {
		max-height: 262px;
	}

	.events__wrapper .btn {
		margin-bottom: 35px;
		margin-top: -39px;
	}

	.events__wrapper .section-title {
		display: inline;
	}

	.digital-library-btns .section-title {
		font-size: 25px;
	}

	.site-info, .site-info-right {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		text-align: center;
	}

	button.events-dropbtn {
		font-size: inherit;
		padding-top: 31px;
	}

	.search-wrapper__mobile {
		margin-top: -10px;
    	margin-bottom: -10px;
	}
}

@media only screen and (max-width: 500px) {

	.events__wrapper .section-title {
		font-size: 27px;
	}

	.hero__tag, .hero__title {
		font-size: 20px;
	}
}