/*
Theme Name: eZeeTheme
Theme URI: https://wordpress.org/themes/ezeetheme/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: black, brown, orange, tan, white, yellow, light, one-column, two-columns, right-sidebar, fluid-layout, responsive-layout, custom-header, custom-menu, editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready
Text Domain: ezeetheme

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.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */

/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */


 /*  Variables  */
:root {
    --primaryColor: #2F5FBB;
    --primaryDarkColor: #162870;
    --primaryLightColor: #6C9AE2;
    --secondaryColor: #3c3c3c;
    --graybuttonColor: #f4f4f7;
    --lightBlue: #6C9AE2;
    --graybuttonBorderColor: #cbcbda;
    --highlightbuttonColor: #FFCB31;
    --highlightbuttonTextColor: #233413;
    --whiteColor: #FFFFFF;
    --blackColor: #000000;
    --blackColor1: #222222;
    --blackColor2: #333333;
    --blackColor3: #4b4f65;
    --primaryFontfamily: 'Poppins', sans-serif;
    --secondaryFontfamily: 'Inter', sans-serif;
    --Fontawesome: 'FontAwesome';
    --paragraphFontsize: 1rem;
    --logoSubtitle: #98dcff;
    --logoSubtitleWhitebg: #4b4f65;
    --yellowbuttonColor: #FFCB31;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html {
	font-family: "Inter",sans-serif;
}

body,
button,
input,
select,
textarea {
	color: #3c3c3c;
	line-height: 1.5;
	margin: 0;
	font-family: "Inter",sans-serif;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--primaryColor);
	text-decoration: none;
}

a:visited {
	color: var(--primaryColor);
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	color: var(--primaryDarkColor);
	outline: 0;
}

a:hover {
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: "Poppins",sans-serif;
	line-height: 1.3;
	display: block;
	color: var(--secondaryColor);
}

h1 {
	font-size: 36px;
	margin: 33px 0 15px 0;
}

h2 {
	font-size: 30px;
	margin: 33px 0;
}

h3 {
	font-size: 22px;
	margin: 33px 0;
}

h4 {
	font-size: 20px;
	margin: 33px 0;
	font-weight: bold;
}

h5 {
	font-size: 18px;
	margin: 33px 0 15px 0;
}

h6 {
	font-size: 16px;
	margin: 36px 0;
}

address {
	font-style: italic;
	margin: 0 0 24px;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #ff0;
	color: #000;
}

p {
	margin: 0 0 24px;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
}

pre {
	background: #f5f5f5;
	color: #666;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	-webkit-hyphens: none;
	-moz-hyphens:    none;
	-ms-hyphens:     none;
	hyphens:         none;
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
	content: none;
}

blockquote {
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 24px 40px;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 14px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: 300;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 20px;
}

ul {
	list-style-type: disc;
}

nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

li > ul,
li > ol {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 0;
}

form {
	margin: 0;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	padding-right: 2px;
	width: 270px;
}

input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-bottom: 1px solid #ededed;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 16px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}

del {
	color: #333;
}

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

hr {
	background: url(images/dotted-line.png) repeat center top;
	background-size: 4px 4px;
	border: 0;
	height: 1px;
	margin: 0 0 24px;
}


/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */

.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.format-audio .entry-content:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before,
.bypostauthor > .comment-body .fn:before,
.error404 .page-title:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 16px/1 Genericons;
	vertical-align: text-bottom;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after,
.gallery:before,
.gallery:after,
.comment-form-author:before,
.comment-form-author:after,
.comment-form-email:before,
.comment-form-email:after,
.comment-form-url:before,
.comment-form-url:after,
.comment-body:before,
.comment-body:after {
	content: "";
	display: table;
}

/* Assistive text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	overflow: hidden;
	position: absolute !important;
	height: 1px;
	width: 1px;
}

.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;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 100000;
}
.archive-title
{
	display: inline-block;
	font-size: 34px;
	text-align: center;
	width: 100%;
	font-weight: bold;
	color: #000;
}
/* Form fields, general styles first. */
button,
input,
textarea {
	border: 2px solid #d4d0ba;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
	color: #141412;
}

input:focus,
textarea:focus {
	border: 2px solid #c3c0ab;
	outline: 0;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #056dca; /* Old browsers */
	background: -webkit-linear-gradient(top, #056dca 0%, #056dca 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #056dca 0%, #056dca 100%); /* W3C */
	border: none;
	border-bottom: 3px solid #b93207;
	border-radius: 2px;
	color: var(--whiteColor);
	display: inline-block;
	padding: 11px 24px 10px;
	text-decoration: none;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
	background: #056dca; /* Old browsers */
	background: -webkit-linear-gradient(top, #056dca 0%, #056dca 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #056dca 0%, #056dca 100%); /* W3C */
	outline: none;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background: #056dca; /* Old browsers */
	background: -webkit-linear-gradient(top, #056dca 0%, #056dca 100%); /* Chrome 10+, Safari 5.1+ */
	background:   linear-gradient(to bottom, #056dca 0%, #056dca 100%); /* W3C */
	border: none;
	border-top: 3px solid #b93207;
	padding: 10px 24px 11px;
}

.post-password-required input[type="submit"] {
	padding: 7px 24px 4px;
	vertical-align: bottom;
}

.post-password-required input[type="submit"]:active {
	padding: 5px 24px 6px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #7d7b6d;
}

:-moz-placeholder {
	color: #7d7b6d;
}

::-moz-placeholder {
	color: #7d7b6d;
}

:-ms-input-placeholder {
	color: #7d7b6d;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

img.size-full,
img.size-large,
img.wp-post-image {
	height: auto;
	max-width: 100%;
}

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

/* Override the Twitter embed fixed width. */
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important;
}

/* Images */
#primary img
{	
	max-width: 100%;
    height: auto;
    box-shadow: 0px 0px 10px 4px rgba(0,0,0,0.05);
	margin-top: 0px;
}
figure.wp-block-image.size-full {
    text-align: center;
    margin: 30px 0;
}
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

figure.wp-caption.alignleft,
img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

figure.wp-caption.alignright,
img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
	display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0 0 24px;
}

div.wp-caption.alignright img[class*="wp-image-"] {
	float: right;
}

div.wp-caption.alignright .wp-caption-text {
	padding-left: 10px;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
	list-style-position: inside;
}
.alignleft {
	float: left;
}

/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */
.site {
	background-color: var(--whiteColor);
	margin: 0 auto;
	width: 100%;
}

.site-main {
	position: relative;
	min-height: 400px;
}

.site-main .sidebar-container {
	height: 0;
	top: 40px;
	width: 100%;
	z-index: 1;
}

.site-main .sidebar-inner {
	margin: 0 auto;
	max-width: 1040px;
}

/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

.main-navigation {
	clear: both;
	margin: 0 auto;
	min-height: 45px;
	position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0 40px 0 0;
}

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

.nav-menu li a {
	color: #141412;
	display: block;
	font-size: 15px;
	line-height: 1;
	padding: 15px 20px;
	text-decoration: none;
}

.nav-menu li:hover > a,
.nav-menu li a:hover,
.nav-menu li:focus > a,
.nav-menu li a:focus {
	background-color: #220e10;
	color: var(--whiteColor);
}

.nav-menu .sub-menu,
.nav-menu .children {
	background-color: #220e10;
	border: 2px solid #f7f5e7;
	border-top: 0;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: var(--whiteColor);
	margin: 0;
	width: 200px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover,
ul.nav-menu ul a:focus,
.nav-menu ul ul a:focus {
	background-color: #db572f;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul,
ul.nav-menu .focus > ul,
.nav-menu .focus > ul {
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
	color: #bc360a;
	font-style: italic;
}

.menu-toggle {
	display: none;
}
.topwrap {
	position: relative;
}
.subbox {
	background: var(--whiteColor);
	padding:25px 35px;
	position: absolute;
	top: 2px;
	right: 0px;
	z-index: 1000;
	display: none;
	min-height: 180px;
	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	min-width: 255px;
	width: 350px;
}
.subbox input {
	width: 100%;
	border: 1px solid #ccc !important;
}
.sbtitle {
	font-weight: bold;
	text-align: center;
	padding-bottom: 0px;
	margin-bottom: 4px;
	text-transform: uppercase;
	color: #056dca;
	font-size: 18px;
	display: none;
}
.subboxclose {
	background: var(--whiteColor);
	color: #ff6161;
	border-radius: 50%;
	font-size: 18px;
	position: absolute;
	right: 4px;
	top: 4px;
	padding: 5px 10px;
	cursor: pointer;
}
.subboxclose:hover {
	color: red;
}
input[type="button"].es_textbox_button {
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border:1px solid var(--whiteColor) !important;
	font-weight: bold;
	font-size: 18px;
	padding-top:10px;
	padding-bottom: 10px; 
}
/* Navbar */

.site-header .search-form {
	position: absolute;
	right: 20px;
	top: 1px;
}

.site-header .search-field {
	background-color: transparent;
	background-image: url(images/search-icon.png);
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px 24px;
	border: none;
	cursor: pointer;
	height: 37px;
	margin: 3px 0;
	padding: 0 0 0 34px;
	position: relative;
	-webkit-transition: width 400ms ease, background 400ms ease;
	transition:         width 400ms ease, background 400ms ease;
	width: 1px;
}

.site-header .search-field:focus {
	background-color: var(--whiteColor);
	border: 2px solid #c3c0ab;
	cursor: text;
	outline: 0;
	width: 230px;
}

/*New Nevigation Start*/

nav.navbar-fixed-top {
    position: fixed;
	top: 0;
	background: var(--whiteColor);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}
.page-id-825 .mainbannerwrap {
    margin-top: 70px;
}
.page-id-825 .posttitle {
    font-size: 45px;
    top: 50%;
	z-index: 5;
}

.careerLink .careerLinkBadge {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    margin: 0 auto;
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1;
    width: fit-content;
    color: var(--primaryColor);
}

.careerLink .careerLinkBadge em {
    font-style: normal;
    animation: easeColors 3s ease-in-out infinite alternate;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    color: var(--secondaryColor);
}


@keyframes easeColors {

    0% {
        color: var(--primaryColor);
    }

    100% {
        color: #F44336;
    }

}


nav {
    position: absolute;
    z-index: 99;
    width: 100%;
    min-height: 74px;
    background: var(--whiteColor);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav .wrapper {
    position: relative;
    max-width: 1320px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
    position: relative;
}

.nav-links li a.desktop-item {
    padding: 25px 15px;
}

.nav-links li a {
    color: var(--secondaryColor);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 0;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

 .nav-links li a:hover {
    background: #f5f5f5;
} 

.nav-links li a.desktop-item:hover,
.nav-links li a.desktop-item:focus {
    background: transparent;
    border-bottom: 4px solid var(--primaryColor);
}


.nav-links .drop-menu li.active a, .nav-links .drop-menu li.active a:focus {
	color: var(--whiteColor);
    text-decoration: none;
    background-color:var(--primaryColor);
    outline: 0;
}

.nav-links li a:active {
    background: #000;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    background: var(--whiteColor);
    width: 160px;
    line-height: 2;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    border: 1px solid rgba(0, 0, 0, .15);

}

.nav-links li:hover .drop-menu {
    transition: all 0.3s ease;
    top: 74px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    display: block;
    width: 100%;
    border-bottom: 1px solid #eee;
    font-weight: 400;
    color: var(--secondaryColor);
    white-space: nowrap;
    border-radius: 0;
    font-size: 14px;
}

.mega-box {
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #242526;
    padding: 25px 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
}

.content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

.row .mega-links li {
    padding: 0 20px;
}

.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: #d9d9d9;
    font-size: 17px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: var(--secondaryColor);
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 970px) {
    nav .wrapper {
    	padding: 0px 15px;
	}
	nav .wrapper .ycs a img{
		margin-left: -15px;
	}
    .careerLink .careerLinkBadge {
        top: 14px;
        left: -60px;
        color: var(--secondaryColor);
    }
    .nav-links li a {
        border-bottom: 2px solid transparent;
    }
    .nav-links li a.desktop-item:hover {
        background: transparent;
        border-bottom: 2px solid var(--primaryColor);
    }
    .wrapper .btn, .form-control {
        padding: 0.7rem 0rem;
    }
    .wrapper .btn {
        display: block;
        padding: 5px 15px;
        border-radius: 4px;
        border: 1px solid;
        background: var(--primaryColor);
        border-color: var(--primaryColor);
        color: #ffff;
    }
    .wrapper .btn.close-btn {
        color: var(--whiteColor);
    }
    .nav-links .mobile-item .caret {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: 2px;
        vertical-align: middle;
        border-top: 4px dashed;
        border-top: 4px solid\9;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        color: var(--secondaryColor);
    }
    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: var(--whiteColor);
        display: block;
        padding: 50px 10px;
        line-height: 34px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
        margin-top: 0;
    }
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li a,
    .nav-links li a.desktop-item {
        padding: 0 20px;
        display: block;
        font-size: 16px;
        color: var(--secondaryColor);
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 0px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
        border: 0px solid rgba(0, 0, 0, 0);
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links li a.desktop-item.desktop {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: var(--secondaryColor);
        font-size: 16px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: var(--whiteColor);
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 0px;
        font-size: 14px;
        padding: 5px 20px;
		border-bottom: 1px solid #eee;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}
/*New Nevigation End*/

/*footer widget*/
.widget-area {
	text-align: center;
}
#categories-2 {
	max-width: 430px;

}
.widget_categories li {
	width: 48.5%;
	display: inline-block;
}
.sidebar-container .widget {
	width: auto;
	padding: 7px 25px;
	display: inline-block;
	margin: 25px;
	vertical-align: top;
	text-align: left;
	color: #b3b9c7;

}
.sidebar-container .widget p {
	margin-bottom: 5px;
}
.widget label {
	width: 100%;
}
.widget_ezeerecent_plugin a {
  font-weight: normal !important;
  font-size: 14px !important;
  color: #A2A4A7;
}  
.widget_ezeerecent_plugin li {
  margin-bottom: 10px;
  text-align: left;
}
.widget_ezeerecent_plugin a:hover {
  color: var(--whiteColor);
}

.widget_ezeerecent_plugin a b {
  font-weight: normal !important;
  font-size: 14px !important;
}
.sidebar-container .widget-title {
	font-size: 21px;
	padding: 10px 0px ;
	margin: 0px 0px 5px 0px;
	color: var(--whiteColor);
	font-weight: normal;
	text-align: left;
}
.widget_categories ul{
   padding: 0px;
   margin:0px;
   margin-left: 0px;
}
.widget_categories li {
  list-style: none;
  margin-bottom: 10px;
}

/*social icons*/
.social-icons{margin-top: 1.2rem;display: inline-block;width: 100%;text-align: center;}
.social-icons ul {padding: 0;list-style-type: none;margin: 0;display: flex;justify-content: center;align-items: center;font-size: 0;}
.social-icons li{display: inline-block;font-size: 1rem;}
.social-icons li+li{margin-left: 10px;}
.social-icons a{font-size: 1.35rem;width: 2.5rem;line-height: 2.5rem;text-align: center;display: block;color: #B0BEC5;border-radius: 50%;}
.social-icons a:hover{color: var(--whiteColor);}
.social-icons .fb:hover {background:#4a6d9d;}
.social-icons .tw:hover {background:#000000;}
.social-icons .in:hover {background:#0b7bb5;}
.social-icons .yt:hover {background:#bf2f29;}
.social-icons .ig:hover {background: linear-gradient(45deg, #efe473 0, #fd5949 45%, #d6249f 90%);}
.social-icons .lc:hover {background:#00ADDA;}
.social-icons .pr:hover {background:#cc2127;}
.social-icons .gp:hover {background:#dd4b39;}
.social-icons .ls:hover {background:#fe8f00;}
.social-icons .qr:hover {background: #b92b27;}
/*news latter*/

.news_box{max-width: 340px;margin: 0 auto 1.8rem;border-bottom: 2px solid rgba(255, 255, 255, 0.08);padding-bottom: 1rem;text-align: center;}
.news_box .form-group{position: relative;margin-bottom: 5px;}
footer .form-control{
	color: #B0BEC5;
    border: 1px solid;
    padding-right: 3.5rem;
    background-color: transparent;
    padding: .7rem 1.5rem;
    padding-right: 4rem;
    border-radius: 1.5rem;
    height: auto;
    font-size: 1rem;
    line-height: 1.4;
    vertical-align: middle;
    width: 100%;
    outline: none;
}
footer .form-control:focus{box-shadow: none; border-color: #b0bec5;}
.news_box .btn{position: absolute;right: 0;top: 0;background: transparent;}

textarea{resize: vertical}
.btn,
.form-control{padding: 0.7rem 1.5rem;border-radius: 1.5rem;height: auto;font-size: 1rem;line-height: 1.4;vertical-align: middle;font-weight: 500;}
.btn-primary{border: none;background-color: #263966;}
.btn-secondary{color: #263966; border: 1px solid;background-color: transparent;}
.btn-secondary:focus,
.btn-secondary:hover {color: var(--whiteColor);background-color: #263966;border-color: transparent;}
.btn-white{border: none;background-color: var(--whiteColor);color: #263966;}
.btn-white:focus,
.btn-white:hover {color: #000;}
.btn-alt{color: var(--whiteColor);border: 1px solid;background-color: transparent;text-transform: uppercase;font-weight: bold;}
.btn-alt:focus,
.btn-alt:hover {color: #222;background-color: var(--whiteColor);border-color: transparent;}
.form-control{background-color: transparent;color: #222;}

.copy-wrap {
    display: inline-block;
    text-align: center;
    width: 100%;
}
.copy-wrap::before {
    border-top: 2px solid rgba(255, 255, 255, 0.08);
    content: "";
    display: block;
    height: 1px;
    margin: 1rem auto 1.25rem;
    max-width: 320px;
    position: relative;
    width: 100%;
}
footer a{color: #B3B9C7;}
footer a:hover{color: var(--whiteColor);}
footer a:visited{color: #b3b9c7;}
/*new latter ends*/
.site-footer{
	background: #262B38;
	color: var(--whiteColor);
	float: left;
	width: 100%;
	position: relative;
	padding: 5rem 0;
	 color: #b3b9c7;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
.site-footer {
	background: #262B38;
	color: #B3B9C7;
	margin: auto;
	padding: 5rem 0 2rem;
	font-size: 0.85rem;
	letter-spacing: 0.5px;
	clear: both;
}
	
.site-footer h4 {
	color: var(--whiteColor);
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: 2px;
	margin-top: 0;
	margin-bottom: 1rem;
}
	
.site-footer a {
	color: #B3B9C7;
}
	
.site-footer a:hover {
	color: var(--whiteColor);
}
	
.footer-menu-wrapper {
	display: inline-block;
	width: 100%;
}
	
.footer-menu-wrapper .f-links {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
	
.footer-menu-wrapper .f-links li {
	padding-bottom: 10px;
	width: 50%;
	float: left;
}
	
.footer-menu-wrapper .f-links li a {
	display: inline-block;
	vertical-align: top;
	padding: 2px 0;
}

.footer-menu-wrapper .contact label {
	display: block;
	font-weight: normal;
	margin-bottom: 0;
	font-weight: 600;
}

.footer-menu-wrapper .contact span {
	font-size: 0.95em;
	vertical-align: bottom;
}
	
.footer-menu-wrapper .contact p {
	margin-bottom: 10px;
}

.footer-menu-wrapper .contact p.contactLink a {
	color: #B3B9C7;
	font-size: 0.9em;
	opacity: 0.55;
}

.footer-menu-wrapper .contact p.contactLink a:hover {
	color: var(--whiteColor);
	opacity: 1;
}

.site-footer .list-products a {
	font-size: 0.9em;
	opacity: 0.55;
}

.site-footer .list-products .f-links li a {
	padding: 0;
}

.site-footer .list-products li:hover a {
	opacity: 1;
}

.copy-wrap {
	width: 100%;
	display: inline-block;
	text-align: center;
	position: relative;
}

.copy-wrap:before {
	position: relative;
	content: "";
	width: 100%;
	border-top: 2px solid rgba(255, 255, 255, 0.08);
	margin: 1rem auto 1.25rem;
	height: 1px;
	display: block;
	max-width: 330px;
}

.news_box {
	max-width: 340px;
	margin: 0 auto 1.8rem;
	border-bottom: 2px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 1rem;
	text-align: center;
}

.news_box .form-group {
	position: relative;
	margin-bottom: 5px;
}

.site-footer .form-control {
	color: #B0BEC5;
	border: 1px solid;
	padding-right: 3.5rem;
}

.nlsubscribe {
	position: relative;
	margin-bottom: 5px;
}

.nlsubscribe .hs-input {
	color: #B0BEC5;
	border: 1px solid;
	padding-right: 3.5rem;
	background-color: transparent;
	padding: .7rem 1.5rem;
	padding-right: 4rem;
	border-radius: 1.5rem;
	height: auto;
	font-size: 1rem;
	line-height: 1.4;
	vertical-align: middle;
	width: 100%;
	outline: none
}

.nlsubscribe .actions {
	position: absolute;
	right: 0;
	top: 0;
	background: transparent;
	border: 0;
}

.nlsubscribe .actions .hs-button {
	font-size: 0;
	position: relative;
	z-index: 2;
	background: transparent;
	border: 0;
	padding: 1.5rem 2rem;
	border-radius: 1.5rem;
	height: auto;
}

.nlsubscribe .actions .hs-button:focus {
	outline: none;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px;
	box-shadow: none;
}

.nlsubscribe .actions:before {
	position: absolute;
	top: 0;
	right: 0;
	content: "\f1d9";
	font: normal normal normal 14px/1 FontAwesome;
	color: var(--whiteColor);
	padding: .7rem 1.5rem;
	font-size: 1rem;
	line-height: 1.4;
}

.nlsubscribe .hs-email>label {
	display: none
}

.nlsubscribe .hs-error-msgs {
	display: none !important
}

.nlsubscribe .submitted-message p {
	color: #6cde71;
	text-align: center;
}

.nlsubscribe .hs_error_rollup .hs-error-msgs {
	display: block !important;
	margin: -7px 0 0px;
}
.badgeContainer{
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 10px;
}
.widget a {
   color: #b3b9c7;
}
.widget a:hover {
   color: var(--whiteColor);
}
#text-4 {
	overflow: hidden;
	max-width: 350px;
	min-height: 150px;
}
iframe .timeline-Header-title {
	display: none !important;
}
.twitter-timeline {
    border: medium none;
    display: inline-block;
    height: 316px;
    margin-bottom: 0;
    max-width: 100%;
    min-height: 98px !important;
    min-width: 180px !important;
    padding: 0;
    position: static;
    visibility: visible;
    width: 100% !important;
    overflow: hidden;
}
.copytxt {
	font-size: 12px;
	padding: 10px 0px;
	color: var(--whiteColor);
	text-align: center;
	background: #1C2229;
}
.sidebar-container .widget_search {
	width: 180px;
}
.sidebar-container .widget_recent_entries {
	width: 180px;
}
.sidebar-container .widget_recent_comments {
	width: 210px;
}
.overlaybanner {
	background: rgba(23, 22, 39, 0.66);
	z-index: 600;
	width: 100%;
	height: 100%;
	min-height: 10px;
	position: absolute;
}
a.home-link {
	display: inline-block;
	/*background: rgba(255, 255, 255, 0.69);*/
	border-radius:21px 6px 6px 23px;
    -moz-border-radius:21px 6px 6px 23px;
    -webkit-border-radius:21px 6px 6px 23px;
    padding-right: 10px;
    text-indent: 10px;
    text-align: center;
}
.home-link img {
	display: inline-block;
	float: left;
	width: 120px;
}
.blogslug {
	float: left;
	font-size: 24px;
	color: var(--whiteColor);
	padding-top: 6px;
}
.topwrap {
	width: 100%;
	margin: 6px 0px 8px;
}
.logo_cnt {
	position: absolute;
	z-index: 1000;
	width: 100%;
	top: 10px;
}
ul.bxslider {
	margin: 0px;
}
.bxslider li {
	text-align: center;
	background:-webkit-linear-gradient(#16213E, #263966);
	background:-moz-linear-gradient(#16213E, #263966);
	background:linear-gradient(#16213E, #263966);
}
.bxslider li a {
	text-align: center;
	display: inline-block;
}
.bannertitle .titlebtn{
	transition: all ease 0.5s;
	margin-top: 18px;
}
.bannertitle .titlebtn:hover{
	background: #056DCA;
	border: 1px solid #056DCA !important;
	color: var(--whiteColor);
}
.bx-wrapper .bx-pager{
	    position: absolute !important;
    bottom: 20px !important;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	    background: rgba(255, 255, 255, 0.35) !important;
}
.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
	background: var(--whiteColor) !important;
}
.bx-wrapper img {
	width: 100%;
}
#masthead {
	overflow: hidden;
	background: var(--primaryColor);
    min-height: 74px;
	/* margin-bottom: 30px; */
}
#content {
	margin: 0px 0;
}
.bottomrecentpost h3 a {
	overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2;
           line-clamp: 2; 
   -webkit-box-orient: vertical;
   font-size: 18px;
}
.bottomrecentpost{
	border-radius: 6px;
}
.recentpostfooter {
    margin: 13px 0;
}
.mainbannerwrap {
	overflow: hidden;
}
.mainbannerwrap .bx-wrapper {
	margin: 0 auto 0px;
}
.titlelink {
	color: var(--whiteColor);
	text-decoration: none;
}
.titlelink:hover, .titlelink:visited {
	color: var(--whiteColor);
	text-decoration: none;
	cursor: pointer;
}

a.titlebtn {
	text-align: center;
	display: inline-block;
	font-size: 18px;
	border: 1px solid var(--whiteColor);
	text-decoration: none;
	cursor: pointer;
	color: var(--whiteColor);
	text-shadow: none;
	padding: 10px 23px;
	/*background: rgba(255, 255, 255, 0.15);*/
	transition:background 0.5s ease;
  	-moz-transition:background 0.5s ease; /* Firefox 4 */
  	-webkit-transition:background 0.5s ease; /* Safari and Chrome */
  	-o-transition:background 0.5s ease; /* Opera */
  	border-radius:6px;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
}
a.titlebtn:hover {
	color: var(--whiteColor);
	text-decoration: none;
	text-shadow: none;
	/*border: 1px solid #2D2D2D;
	background: rgba(37, 36, 36, 0.64);*/
	border: 1px solid #056DCA;
	background: #056DCA;
}
.bannertitle {
	position: inherit;
    z-index: 1000;
    top: 30%;
    color: var(--whiteColor);
    font-size: 34px;
    position: absolute;
    Z-INDEX: 1000;
    COLOR: white;
    TEXT-ALIGN: center;
    DISPLAY: inherit;
    WIDTH: 60%;
    /* background: rgba(3, 0, 0, 0.34); */
    padding: 10px 0px;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: 40px;
}
.topwrap .subscribebtn {
	float: right;
    border: 1px solid var(--whiteColor);
    color: var(--whiteColor);
    font-weight: bold;
    margin-top: 3px;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.5);
    font-size: 14px;
    text-transform: uppercase;
}
.post_container {
	margin-top: 35px;
}
.post_headerwrap h2 {
	display: inline-block;
	font-size: 18px;
	margin: 0px !important;
	line-height: 28px;
}
.post_container p {
	line-height: 38px;
	font-size: 16px;
	margin: 24px 0 24px;
}
.post_container ul li{font-size: 18px; margin-bottom: 15px;}
.relver {
	float: left;
	font-size: 18px;
	margin-bottom: 16px;
}
.relver span {
	 font-size: 12px;
}
 
.reldate {
	float: right;
}
.blogimg img {
	padding: 20px 20px 0px;
}
.reltext {
	padding: 0px  20px  15px  20px;
	text-align: left;
	font-size: 12px;
	min-height: 186px;	
  
}
.bgcolorsec {
    display: inline-block;
    width: 100%;
    background: #ffeac4;
    padding: 25px;
    border: 1px solid #d8c6a2;
}
.bgcolorsec h3 {
    margin-top: 0px !important;
}
.inrcontainer .btnhighlight, a.btn.btn-success.btnhighlight:visited {
    margin-bottom: 50px;
}
.bgcolorsec p:last-child {margin-bottom: 0px !important;}
.rdmorediv {
    border-top: 1px solid #eff0f1;
    display: inline-block;
    width: 100%;
    bottom: 0px;
    height: 56px;
    float: left;
    width: 100%;
    position: absolute;
    bottom: 0px;
    background: var(--whiteColor);
    border-radius:0px 0px 6px 6px;
    -moz-border-radius:0px 0px 6px 6px;
    -webkit-border-radius:0px 0px 6px 6px;
}
.rdmorediv a, .rdmorediv span {
	padding: 13px;
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
}
.rdmorediv a {
	font-weight: 500;
}
.reltext p {
	font-size: 14px !important;
	margin-bottom: 50px;
}
/*tag*/

.rattag { 
    background: #e3e3e3;
    display: inline-block;
    color: #4A4646;
    position: relative;
    padding: 10px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    margin: 0 10px 0 0;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
}

.rattag:after {
    background: #73A26F;
    border-radius: 20px;
    content: "";
    display: inline-block;
    height: 10px;
    margin: 0 5px 2px 2px;
    padding-top: 0;
    width: 10px;
}

.rattag:before {
    display: inline-block;
    border: 22px solid;
    border-color: rgba(0, 0, 0, 0) #e3e3e3 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    content: "";
    display: inline-block;
    height: 0;
    left: -44px;
    position: absolute;
    top: 0;
    width: 0;
}

/*tag*/

.latestpostbox, .postboxwrap {
	text-align: center;
	margin: 30px 0;
}
.latestpostbox div.post_container {
	width: 31%;
	display: inline-block;
	text-align: left;
	vertical-align: top;
	color:#464646;
	border-top: none;
	border-left:1px solid #ccc !important;
	border-right:1px solid #ccc !important;
	border-bottom:1px solid #ccc !important;
	margin:10px 10px 40px 10px;
	position: relative;
	-moz-box-shadow: 0px 0 3px 0 #CCCACA;
	-webkit-box-shadow: 0px 0 3px 0 #CCCACA;
	box-shadow: 0px 0 3px 0 #CCCACA;
	line-height: 25px;
	z-index: 0;
	overflow: hidden;
}
.postboxwrap div.post_container, li.post_container {
	width: 30%;
	float: left;
	text-align: left;
	vertical-align: top;
	color:#464646;
	margin:10px 15px 27px;
	position: relative;
	line-height: 25px;
	z-index: 0;
	border-radius: 6px;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.30);
	min-height: 300px;
}
.postlistcontainer p{
	overflow: hidden;
   	text-overflow: ellipsis;
   	display: -webkit-box;
   	-webkit-line-clamp: 4;
	line-clamp: 4; 
	-webkit-box-orient: vertical;
	line-height: 28px;
	margin-top: 10px;
	color: #3c3c3c;
}
.postboxwrap div.post_container:hover{
	border-color: transparent;
    box-shadow: 0 0 4px 0 rgba(0,0,0,0.4);
}
.latestpostbox .post_headerwrap {
	padding: 25px 20px;
	color: var(--whiteColor);
}
.postboxwrap .post_headerwrap {
	color: #000;
	padding: 20px 20px 0px;
	min-height: 80px;
}
.post_container h2 {
  	margin:16px 0px 16px 0px; 
}
.post_container h2 a {
  	color: var(--whiteColor);
}
.post_container h2 a:hover {
  	color: var(--whiteColor);
  	text-decoration: none;
}
.postboxwrap .post_container h2 a {
  	color: var(--primaryColor);
  	display:inherit;
  	text-align: left;
  	overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.postboxwrap .reldate {
	text-align: right;
	display: inherit;
	color: #969696;
	float: right;
}
.postboxwrap .post_container h2 a:hover {
  color: var(--primaryDarkColor);
  text-decoration: none;
}
img.homefeatureimage.imgh.img-responsive {
    padding: 20px 20px 0px;
}

.latestpostbox div.post_container .readmore {
	position: absolute;
	padding: 0px;
	text-align: left;
	background: none;
	border: none;
	bottom: 0px;
    color: #4d4d4d;
    position: absolute;
    left: 15px;
    z-index: 1000;
    margin-bottom: 20px;
}
.latestpostbox div.post_container .readmore:hover {
	text-decoration: none;
}
.bgnone {	
	background: none !important;
}
.innerblogimg {
	min-height: 40px;
	position: relative;
	margin-bottom: 0px;
	overflow: hidden;
}
.titlewrap {
	text-align: center;
	position: absolute;
	z-index: 800;
	width: 100%;
	top: 40%;
	display: inline-block;
	font-size: 12px;
}
.posttitle {
	display: inline-block;
    text-align: center;
    color: var(--whiteColor);
    font-size: 35px;
    position: absolute;
    /* z-index: 800; */
    width: 66%;
    line-height: 53px;
    top: 50%;
	transform: translateY(-35%);
	left: 0;
    right: 0;
    margin: 0 auto;
}
.reltitle {
	top:75%;
}
.posttitle span{
	line-height: 21px;
}
.inrcontainer{
	max-width: 900px;
	line-height: 25px;
    font-size: 14px;
	width: 98%;
	margin: 0 auto;
}
.inrcontainer h3, .inrcontainer h4, .post_container h3, .post_container h4 {
	color: #000;
    margin-bottom: 20px;
    margin-top: 55px;
    font-size: 24px;
    min-height: 22px;
}
.inrcontainer img {
	display: inline-block;
	text-align: center;
	float: none;
	margin:0px;
}
.notepoints {
    text-align: left;
	padding: 10px;
	line-height: normal;
	margin-bottom: 45px;
}
.notepoints a {
    position: relative;
    line-height: none;
    display: inline-block;
    margin: 0px 0px 14px 10px;
    color: #2f2f2f;
    font-size: 1.25em;
}
blockquote.twitter-tweet p {
  font: normal 18px/24px Georgia, "Times New Roman", Palatino, serif;
  margin: 0 5px 10px 0;
  color: red;
}
.category-release-notes .notepoints {
    background: #F7F7F7;
    border: 1px solid #EFEFEF;
    padding:27px;
    font-weight: bold;
}
.notepoints a:before {
    content: "\f0da";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #000;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 2px;
    left: -15px;
}
div.notepoints a:hover {
	text-decoration: none;
	color: #009df5;
	cursor: pointer;
}
.homefeatureimage {
	position: relative;
	opacity: 0.2;
	/* z-index: 500; */
}
.innerblogimg .homefeatureimage {
	height: 300px;
	width: 100%;
}
.latestpostbox div.extdiv {
	background-color: none !important;
	border: 0px !important;
	border-bottom: 1px solid #ccc !important;
	padding: 0px !important;
	width: 30%;
	margin-bottom: 30px;
}
.latestpostbox 	p {
	margin-bottom: 35px;
}
a.readlink {
	position: absolute;
	padding: 0px;
	text-align: right;
	background: none;
	border: none;
	bottom: 0px;
    color: #E42E19;
    position: absolute;
    left: 15px;
    z-index: 1000;
    margin-bottom: 14px;
    font-size: 14px;
    right: 47px;
}
a.readlink:after {
    content: "\f101";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    color: #E42E19;
    font-size: 18px;
    padding-right: 0.5em;
    position: absolute;
    top: 0.5px;
    right: -25px;
}
a.readlink:hover {
	color: #E42E19;
	text-decoration: none;
}
.latestpostbox div.extdiv h2 {
	font-size: 18px;
}
.verno {
	display: none;
}
.mainbannerwrap {
	overflow: hidden;
	/*min-height: 180px;*/
}
.userinfobox {
	font-size: 12px;
    margin-top: 34px;
    text-transform: capitalize;
    font-weight: bold;
    color: var(--whiteColor);
    text-align: center;
    position: absolute;
    bottom: 10%;
    margin: 0 auto;
    display: inline-block;
    float: none;
    clear: both;
    right: 45%;
    left: 45%;
    width: 150px;
}
.usrimg {
	border-radius:50%;
	display: inline-block;
	width: 60px; 
	height: 60px;
}
.authnam {
	display: block;
	margin-top: 7px;
	width: 100%;
	text-align: center;
	font-size: 12px;
}
.postdate {
	display: block;
	width: 100%;
	font-size: 12px;
	text-align: center;
}
.hitxt {
   font-style: italic;
   font-size: 24px;
   display: inline-block;
   text-align: center;
   color: #263966;
       line-height: 38px;
   width: 100%;
   position: relative;
   padding: 9px 0px 13px;
   margin:15px 0px 35px;
}
.hitxt:before {
	bottom: 0px;
	width: 100px;
	background: #B5BEC7;
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	margin:0 auto;
	height: 2px;
}
.hitxt:after{
	top: 0px;
	width: 100px;
	background: #B5BEC7;
	position: absolute;
	content: '';
	left: 0;
	right: 0;
	margin:0 auto;
	height: 2px;
}
.hitxt a{
	color: #263966;
}
.post_container a.btn-primary:visited {
	color: var(--whiteColor);
}
a, a:hover, a:focus{
	text-decoration: none;
	outline: none;
}
.bpostbtn {
    text-align: center;
}
.bpostbtn .morebtn, .bpostbtn .morebtn:focus{
	margin:0px 8px;
	background: #263966;
	border:1px solid #0854AF;
	color: var(--whiteColor); 
	display: inline-block;
	padding: 11px 30px;
}
p.prevpost {
    text-align: center;
    margin-top: 65px;
}
p.prevpost a{
	color: #263966;
}
.hitxt i{
	color: #E6E6E6;
    font-size: 36px;
}
.hitxt .fa-quote-left:before {
    top: -15px;
    position: relative;
    left: -6px;
}
.fa-quote-right:before{
	top: 17px;
    position: relative;
    right: -5px;
}
.ptitle{
	position: relative;
    text-align: left;
    line-height: 40px;
    color: #000;
    font-size: 25px;
    margin: 25px 0px 30px;
    font-weight: bold;
}
.quote:after{
	position: absolute;
    top: -6px;
    left: -13px;
    content: "\f10d";
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 23px;
    color: #263966;
}

/*Page nevigation*/
.next_prev_cont {
	display: inline-block;
	text-align: center;
	width: 100%;
}
.next_prev_cont a {
	display: inline-block;
}
.navigation {
	margin: 25px 16px; 
}
.navigation ul {
    clear: both;
    float: left;
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.navigation li {
    float: left;
}
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
    color: var(--whiteColor);
    text-decoration: none;
}
.navigation li {
    display: inline;
    margin: 0 4px 0 0;
}
.navigation li a, .navigation li a:hover, .navigation li.active a, .navigation li.disabled {
    background-color: #e7e8ea;
    color: #000000;
    cursor: pointer;
    float: left;
    padding: 0.65rem 0.85rem;
}
.navigation li a:hover, .navigation li.active a {
    background-color: #7f8287;
}
.navigation li a.nav-prev {
    float: left !important;
}
.navigation li a.nav-next {
    float: right !important;
}
.postmetadata {
	font-size: 14px;
	line-height: 24px;
	color: #989696;
}
.postmetadata a {
	color: #989696;
}
.inrcontainer a.btn.btn-success {
    color: var(--whiteColor);
	background-color: var(--primaryColor);
    border-color: var(--primaryColor);
	margin-top: 20px;
}
.inrcontainer a.btn.btn-success:hover {
    color: var(--whiteColor);
	background-color: var(--primaryDarkColor) !important;
    border-color: var(--primaryDarkColor) !important;
}
.inrcontainer a.btn.btn-success:visited {
    color: var(--whiteColor);
	background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}
.homeBtmSectionInner {
    background: var(--primaryColor);
    padding: 40px;
    margin: 40px auto 50px;
    text-align: center;
    width: 60%;
    border-radius: 10px;
}
.homeBtmSectionInner h2 {
    color: var(--whiteColor);
    margin: 0 0 20px;
    font-size: 30px;
}
.homeBtmSectionInner p {
    margin: 0;
    color: var(--whiteColor);
    font-size: 16px;
}
.homeBtmSectionInner .btn {
    background: var(--whiteColor);
    color: #1a44a9;
    margin: 30px auto 0;
	font-weight: 500;
}
.homeBtmSectionInner .btn:focus{
	border: 0;
	outline: 0;
}
.homeBtmSectionInner .btn:hover{
	background: var(--primaryDarkColor);
	color: var(--whiteColor);
}
.gridBlog {padding: 10px 0 60px;background: #f5f5f5;margin-top: 40px;}
.prbar {
    display: inline-block;
    /* width: 100%; */
    background: var(--whiteColor);
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    padding: 30px;
    box-shadow: 0 5px 10px -2px rgba(0,0,0,.1);
    margin: 50px 0px 40px 0px;
    font-size: 16px;
    color: black;
    font-weight: 500;
}
.prbar a{font-weight: 700;}
.topGridOuter {
    margin: 0px 0px 0px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.topGrid {
    width: calc(33.33% - 30px);
    margin: 15px;
    background: var(--whiteColor);
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    padding: 30px;
    box-shadow: 0px 5px 10px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: left;
}
.topGrid:hover {
	border: 1px solid #ccc;
	box-shadow: 0 7px 20px -2px rgba(0,0,0,.2);
}
.topGrid h2 {
    font-size: 18px;
    margin: 0 0 15px;
	font-weight: 600;
}
.topGrid p {
    margin: 0;
	min-height: 152px;
    font-size: 14px;
    line-height: 1.8;
}
.topGrid .btn.btn-link {
    margin: 20px 0 0;
    padding: 10px 20px;
    background: var(--primaryColor);
    color: var(--whiteColor);
    border: 1px solid var(--primaryColor);
    font-size: 15px;
    line-height: 1;
    outline: none;
    text-decoration: none;
}
.topGrid .btn.btn-link:hover,
.topGrid .btn.btn-link:focus {
	background: #1a2a50;
    color: var(--whiteColor);
    border: 1px solid #1a2a50;
    outline: none;
    text-decoration: none;
}

/* hubspot cookie notice started*/
@media (min-width: 960px) {
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {display: flex;justify-content: center;align-items: center;}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area {margin: 0 !important; position: relative; top: -5px; left: 10px;}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button { position: relative; right: -10px; }
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-eu-policy-wording { margin: 0 !important; }
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p { margin: 0 !important; font-size: 18px !important; line-height: 1.4 !important; }
}
@media(max-width:959px){
div#hs-eu-cookie-confirmation {top: auto !important; bottom: 0; position: fixed !important;text-align: center !important;}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner {flex-direction: column;text-align: center !important;}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner p { font-size: 18px !important; line-height: 1.4 !important; text-align: center !important; float: none !important;}   
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area {text-align: center !important; float: none !important;}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button {text-align: center !important; float: none !important;}

body div#hs-eu-cookie-confirmation{position:fixed;bottom:0;top:inherit;}
body div#hs-eu-cookie-confirmation #hs-eu-cookie-confirmation-inner{text-align:center;}
#hs-eu-cookie-confirmation-inner p{text-align:center!important;font-size: 18px !important; line-height: 1.4 !important;}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner{padding:20px 14px!important;}
body div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area{float:none;text-align:center!important;margin:0 auto!important;display:block;}
div#hs-eu-cookie-confirmation div#hs-eu-cookie-confirmation-inner a#hs-eu-confirmation-button{padding:6px 10px!important;}
#hs-eu-cookie-confirmation-inner div#hs-en-cookie-confirmation-buttons-area a#hs-eu-confirmation-button{float:none;text-align:center!important;display:inline-block!important;margin:0 auto;width:65px!important;margin-top:9px;}
}

/* hubspot cookie notice ended */

.has-vivid-cyan-blue-background-color {
    background-color: var(--primaryColor) !important;
    color: var(--whiteColor) !important;
}
.wp-block-button__link:hover{
	color: var(--whiteColor);
	background-color: var(--primaryColor);
}
.has-vivid-cyan-blue-background-color:hover {
color: var(--whiteColor) !important;
background-color: var(--primaryDarkColor) !important;
}

/*media queries*/
@media (min-width: 1263px) {
.container {
    width: 1239px;
}

}

@media (max-width: 1199px) {
	.topGrid {width: calc(50% - 30px);}
	.footer-menu-wrapper .list-products .f-links {
        display: flex;
        flex-flow: row wrap;
    }

    .footer-menu-wrapper .list-products .f-links li {
        float: none;
        padding-right: 10px;
        line-height: 1.3;
    }

    .footer-menu-wrapper .list-products .f-links li a {
        margin-top: 5px;
    }
}

@media (max-width: 1023px) {
.posttitle {
	font-size: 24px;
	padding: 0px 10px;
}
.bannertitle {
	font-size: 24px;
	padding: 0px 10px;
}

}
@media (max-width: 991px) {
	.homeBtmSectionInner {width: 95%;}
	.topGridOuter {margin: 0px 0;}
	.site-footer h4{margin-top: 1rem;font-size:16px;}
	.homeBtmSectionInner h2 {font-size: 28px;}
}
@media (max-width: 956px) {
	.postboxwrap div.post_container {
		width: 45%;
	}
	.site-footer h4{margin-top: 1rem;font-size: 16px;}
}	
@media (max-width: 767px) {
    #content {margin: 70px 0 0;}
	.homeBtmSectionInner h2 {font-size: 26px;}
	.topGridOuter {flex-direction: column;}
	.topGrid {width: initial; margin: 15px 0; text-align: center;}
	.topwrap { margin: 10px auto; text-align: center; display: table; }
	.topwrap a.home-link {padding: 0; text-indent: 0;}
	.logo_cnt {position: relative; top: 0;}
	#masthead {min-height: initial; max-height: 90px;}
	.mainbannerwrap { display: none; }
	.site-footer h4{margin-top: 1rem;font-size: 16px;}
	.site-footer { padding: 3rem 0 1.5rem; font-size: 1rem; }

    .footer-menu-wrapper .f-links li {
        padding-bottom: 5px;
        padding-right: 5px;
	}

    .footer-menu-wrapper .list-products .f-links li {
        padding-bottom: 15px;
    }
}
@media (max-width: 716px) {
	.postboxwrap div.post_container {
		width: 94%;
	}
	.post_container h2 {
		margin: 16px 0px !important;
	}
	.reltext {
	 min-height: 120px;
	 margin-bottom: 50px;
	}
	.postboxwrap div.post_container, li.post_container {
		min-height: auto;
	}
}
@media (max-width: 640px) {
	.homeBtmSectionInner {padding: 30px;}

.bannertitle {
	font-size: 18px;
	padding: 0px 10px;
}
}
@media (max-width: 643px) {
	.site-title {
		font-size: 24px;
	}

	#content .entry-header,
	#content .entry-content,
	#content .entry-summary,
	#content footer.entry-meta,
	#content .featured-gallery,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .post-navigation .nav-links,
	.paging-navigation .nav-links,
	#content .author-info,
	.comments-area .comments-title,
	.comments-area .comment-list,
	.comments-area .comment-navigation,
	.comment-respond,
	.sidebar .site-info,
	.sidebar .paging-navigation .nav-links {
		padding-left: 20px;
		padding-right: 20px;
	}

	#content .format-status .entry-content,
	#content .format-status .entry-met {
		padding-left: 35px;
	}

	/* Small menu */
	.menu-toggle {
		cursor: pointer;
		display: inline-block;
		font: bold 16px/1.3 "Source Sans Pro", Helvetica, sans-serif;
		margin: 0;
	}

	.menu-toggle,
	.menu-toggle:hover,
	.menu-toggle:focus,
	.menu-toggle:active {
		background: none;
		border: none;
		color: #141412;
		padding: 12px 0 12px 20px;
	}

	.menu-toggle:focus {
		outline: thin dotted;
	}

	.menu-toggle:after {
		content: "\f502";
		font-size: 12px;
		padding-left: 8px;
		vertical-align: -4px;
	}

	.toggled-on .menu-toggle:after {
		content: "\f500";
		vertical-align: 2px;
	}

	.toggled-on .nav-menu,
	.toggled-on .nav-menu > ul {
		display: block;
		margin-left: 0;
		padding: 0;
		width: 100%;
	}

	.toggled-on li,
	.toggled-on .children {
		display: block;
	}

	.toggled-on .nav-menu li > ul {
		background-color: transparent;
		display: block;
		float: none;
		margin-left: 20px;
		position: relative;
		left: auto;
		top: auto;
	}

	.toggled-on .nav-menu li > ul a {
		color: #141412;
		width: auto;
	}

	.toggled-on .nav-menu li:hover > a,
	.toggled-on .nav-menu .children a {
		background-color: transparent;
		color: #141412;
	}

	.toggled-on .nav-menu > li a:hover,
	.toggled-on .nav-menu > ul a:hover {
		background-color: #db572f;
		color: var(--whiteColor);
	}

	.toggled-on .nav-menu > li a:focus,
	.toggled-on .nav-menu > ul a:focus {
		background-color: #220e10;
		color: var(--whiteColor);
	}

	ul.nav-menu,
	div.nav-menu > ul {
		display: none;
	}
}
@media(max-width: 576px){
	.footer-menu-wrapper .f-links li{
		width: 100%;
	}
	.homeBtmSectionInner h2 {font-size: 24px;}
}
@media (max-width: 498px) {
.bannertitle {
	font-size: 14px;
	padding: 0px 10px;
}
.bx-viewport, ul.bxslider, ul.bxslider li {
	min-height: 220px;
}
}

@media (max-width: 474px) {
.widget_categories li {
  max-width: 100%;
  width: 100%;
}
.site-footer .copyright {
	font-size: 13px;
}
}
