/*
 Theme Name: Wescon Controls
 Author: cb{d}
 Author URI: http://cbdwichita.com
 Version: 1
 Description: Base theme for Wordpress
 License: GNU General Public License v2 or later
 License URI: http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: base
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */

html {
	font-family: sans-serif; /* 1 */
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */

body {
	margin: 0;
}

/* HTML5 display definitions
 ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

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

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio, canvas, progress, video {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden], template {
	display: none;
}

/* Links
 ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

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

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

/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */

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

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b, strong {
	font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
	font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */

h1 {
	font-size: 2em;
	margin: .67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */

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

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

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

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

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

/**
 * Remove border when inside `a` element in IE 8/9/10.
 */

img {
	border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

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

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

/**
 * Address margin not present in IE 8/9 and Safari.
 */

figure {
	margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */

hr {
	box-sizing: content-box;
	height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
	overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

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

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button, input, optgroup, select, textarea {
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
	overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button, select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

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

/**
 * Re-set default cursor for disabled elements.
 */

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

/**
 * Remove inner padding and border in Firefox 4+.
 */

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

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
	line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */

input[type="checkbox"], input[type="radio"] {
	box-sizing: border-box; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

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

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: .35em .625em .75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
	border: 0; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
	font-weight: bold;
}

/* Tables
 ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td, th {
	padding: 0;
}

#notice-active #main {
    margin-top: 25px;
}

@font-face {
	font-family: "icomoon";
	src: url("fonts/icomoon.eot?d27d88");
	src: url("fonts/icomoon.eot?d27d88#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?d27d88") format("truetype"), url("fonts/icomoon.woff?d27d88") format("woff"), url("fonts/icomoon.svg?d27d88#icomoon") format("svg");
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"], .btn-request:after, .info-list li:after, .sort-drop > a:after, .contect-info a:before, .contact-info a:before, .nav > li > a:before, .sub-nav > li > a:before {
	font-family: "icomoon";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1; /* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-fax:before {
	content: "\e907";
}

.icon-left-arrow:before {
	content: "\e900";
}

.icon-right-arrow:before {
	content: "\e901";
}

.icon-top-arrow:before {
	content: "\e902";
}

.icon-bottom-arrow:before {
	content: "\e903";
}

.icon-doc:before {
	content: "\e904";
}

.icon-location:before {
	content: "\e905";
}

.icon-tel:before {
	content: "\e906";
}

.header-info .contact-info, .nav, .nav > li ul, .sub-nav, .sub-nav > li ul, .market-block .list, .resource-block .list, .product-list, .list-style, .numbe-list-style, .accordion, .info-list, .sort-drop ul, .year-list, .leadership-list, .controls-list, .quality-list, .key-list, .services-list, .contect-info, .footer-nav, .links, .association-logos {
	margin: 0;
	padding: 0;
	list-style: none;
}

.clearfix:after, dl:after, .widget:after, .search-form:after, .post-password-form p:after, .navigation-single:after, .nav-slide:after, .sort-panel:after, .year-list:after, .year-list .comment-block:after, .slideshow .slide .holder:after, .intro-block .holder:after {
	content: "";
	display: block;
	clear: both;
}

.ellipsis {
	white-space: nowrap; /* 1 */
	text-overflow: ellipsis; /* 2 */
	overflow: hidden;
}

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

* {
	max-height: 1000000px;
}

body {
	color: #707070;
	background: #fff;
	font: 19px/1.2 "HelveticaNeueETW01-45Lt", sans-serif;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

.gm-style img {
	max-width: none;
}

ul, ol, dl, p, h1, h2, h3, h4, h5, h6, address, form, table, blockquote, applet, embed, object, iframe, frameset {
	margin: 0 0 1.2em;
}

blockquote {
	border-left: 4px solid #707070;
	padding-left: .5em;
	margin-left: 1.2em;
}

th, td {
	border: 1px solid #707070;
	padding: .5em;
	text-align: left;
	vertical-align: top;
}

th {
	text-align: center;
	vertical-align: middle;
}

ul, ol {
	padding-left: 3em;
}

ul ul, ul ol, ol ul, ol ol {
	padding-left: 3em;
	margin: 0;
}

ul {
	list-style-type: disc;
}

dl dt {
	float: left;
	clear: left;
	padding-right: .3em;
	font-weight: bold;
}

dl dd {
	overflow: hidden;
}

pre {
	max-width: 100%;
}

form, fieldset {
	margin: 0;
	padding: 0;
	border-style: none;
}

input[type="text"], input[type="tel"], input[type="email"], input[type="search"], input[type="password"], textarea {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	border: 1px solid #707070;
	padding: .4em .7em;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="search"]:focus, input[type="password"]:focus, textarea:focus {
	border-color: #000;
}

input[type="text"]::-webkit-input-placeholder, input[type="tel"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, input[type="search"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
	color: #707070;
}

input[type="text"]::-moz-placeholder, input[type="tel"]::-moz-placeholder, input[type="email"]::-moz-placeholder, input[type="search"]::-moz-placeholder, input[type="password"]::-moz-placeholder, textarea::-moz-placeholder {
	opacity: 1;
	color: #707070;
}

input[type="text"]:-moz-placeholder, input[type="tel"]:-moz-placeholder, input[type="email"]:-moz-placeholder, input[type="search"]:-moz-placeholder, input[type="password"]:-moz-placeholder, textarea:-moz-placeholder {
	color: #707070;
}

input[type="text"]:-ms-input-placeholder, input[type="tel"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, input[type="search"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, textarea:-ms-input-placeholder {
	color: #707070;
}

input[type="text"].placeholder, input[type="tel"].placeholder, input[type="email"].placeholder, input[type="search"].placeholder, input[type="password"].placeholder, textarea.placeholder {
	color: #707070;
}

select {
	-webkit-border-radius: 0;
}

textarea {
	resize: vertical;
	vertical-align: top;
}

button, input[type="button"], input[type="reset"], input[type="file"], input[type="submit"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
	cursor: pointer;
}

.widget {
	margin-bottom: 1.2em;
}

.widget ul {
	padding-left: 2em;
}

.widget select {
	min-width: 150px;
}

.comment-form label {
	display: block;
	padding-bottom: 4px;
}

.comment-form textarea {
	overflow: auto;
	margin: 0;
	height: 120px;
	min-height: 120px;
}

.comment-form textarea, .comment-form input[type="text"] {
	margin: 0 4px 0 0;
	width: 300px;
}

.comment-form input[type="submit"] {
	display: block;
	float: none;
}

.post-password-form label {
	display: block;
}

.post-password-form input[type="password"] {
	margin: 0 4px 0 0;
	width: 300px;
}

.search-form input {
	float: left;
	height: 2em;
}

.search-form input[type="search"] {
	margin: 0 4px 0 0;
	width: 150px;
}

.post-password-form input {
	float: left;
	height: 2em;
}

.post-password-form input[type="password"] {
	width: 150px;
}

.comment-form input[type="submit"], .post-password-form input[type="submit"], .search-form input[type="submit"] {
	background: #000;
	color: #fff;
	height: 2em;
	border: none;
	padding: 0 .5em;
}

.comment-form input[type="submit"]:hover, .post-password-form input[type="submit"]:hover, .search-form input[type="submit"]:hover {
	opacity: .8;
}

.commentlist {
	margin: 0 0 1.2em;
}

.commentlist .edit-link {
	margin: 0;
}

.commentlist .avatar-holder {
	float: left;
	margin: 0 1.2em 4px 0;
}

.commentlist-item .commentlist-item {
	padding: 0;
}

.comment, .commentlist-holder {
	overflow: hidden;
}

.commentlist-item .commentlist-item, .commentlist-item + .commentlist-item {
	padding-top: 1.2em;
}

.widget_calendar #next {
	text-align: right;
}

.gallery-item dt {
	float: none;
	padding: 0;
}

.navigation, .navigation-comments {
	position: relative;
	vertical-align: middle;
	margin-bottom: 1.2em;
	margin: 0 0 1.2em;
}

.navigation .screen-reader-text, .navigation-comments .screen-reader-text {
	position: absolute;
	left: -99999px;
}

.navigation .page-numbers, .navigation-comments .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 0 .4em;
}

.navigation .next, .navigation .prev, .navigation-comments .next, .navigation-comments .prev {
	display: inline-block;
	vertical-align: middle;
	max-width: 50%;
	background: #000;
	color: #fff;
	padding: .4em;
	text-decoration: none;
}

.navigation-single {
	margin-bottom: 1.2em;
}

.navigation-single .next, .navigation-single .prev {
	float: left;
	vertical-align: middle;
	max-width: 50%;
	background: #000;
	color: #fff;
	padding: .4em;
	text-decoration: none;
}

.navigation-single .next a, .navigation-single .prev a {
	color: inherit;
	text-decoration: none;
}

.navigation-single .next {
	float: right;
}

.wp-caption {
	max-width: 100%;
	clear: both;
	border: 1px solid #707070;
	padding: .4em;
	margin-bottom: 1.2em;
}

.wp-caption img {
	margin: 0;
	vertical-align: top;
}

.wp-caption p {
	margin: .4em 0 0;
}

div.aligncenter {
	margin: 0 auto 1.2em;
}

img.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	margin: 0 1.2em 4px 0;
}

.alignright {
	float: right;
	margin: 0 0 4px 1.2em;
}

.mejs-container {
	margin-bottom: 1.2em;
}

.wp-caption-text, .gallery, .alignnone, .gallery-caption, .sticky, .bypostauthor {
	height: auto;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h {
	font-family: "Rajdhani", sans-serif;
	font-weight: bold;
	margin: 0 0 .5em;
	color: inherit;
}

h1, .h1 {
	font-size: 30px;
}

h2, .h2 {
	font-size: 27px;
}

h3, .h3 {
	font-size: 24px;
}

h4, .h4 {
	font-size: 21px;
}

h5, .h5 {
	font-size: 17px;
}

h6, .h6 {
	font-size: 15px;
}

p {
	margin: 0 0 1em;
}

a {
	color: #39f;
}

a:hover, a:focus {
	text-decoration: none;
}

/* Fancy box styles */

.fancybox-wrap, .fancybox-open {
	z-index: 9999 !important;
}
.fancybox-overlay {
	z-index: 9998 !important;
}
.fancybox-skin {
	background: #000 !important;
	padding: 3px !important;
}

.fancybox-close {
	top: 15px !important;
	left: 15px !important;
	background: url('images/overlay-close.png') no-repeat center !important;
	background-color: #000 !important;
	opacity: .8;
}

.fancybox-next span, .fancybox-prev span {

	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
}

.fancybox-next span:before {
	content: "";
	display: block;
	background: #000 url("images/fancy-box-next.png") center center no-repeat;
	opacity: .8;
	height: 40px;
	width: 35px;
}

.fancybox-next span {
	background: none !important;
	left: auto;
	right: 20px !important;
	width: 40px !important;
	font-size: 80px;
	margin: -20px 0 0;
	color: #fff;
}

.fancybox-prev span:after {
	content: "";
	display: block;
	background: #000 url("images/fancy-box-prev.png") center center no-repeat;
	opacity: .8;
	height: 40px;
	width: 35px;
}

.fancybox-prev span {
	background: none !important;
	top: 50%;
	left: 20px;
	z-index: 99;
	color: #fff;
	font-size: 52px;
	margin: -20px 0 0;
	position: absolute;
}

.fancybox-title-float-wrap {
	text-align: center;
	width: 100%;
	margin-bottom: 15px !important;
	line-height: 50px !important
}

.fancybox-title-float-wrap {
	bottom: -15px !important;
}

.fancybox-title-float-wrap .child {
	width: 100%;
	height: 50px;
	vertical-align: middle;
	line-height: 50px !important;
	border-radius: 0px !important;
}

/* ---------------------------------------------------------
 1. Embedded fonts styles
 2. General reset
 3. Common site styles
 4. Styles for responsive breakpoints
 ---------------------------------------------------------*/

a {
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}

html {
	height: 100%;
}

body {
	height: 100%;
	line-height: 27px;
}

/* main container styles */

#wrapper {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	display: table;
	table-layout: fixed;
}

/* header styles */

#header {
	width: 100%;
	left: 0;
	top: 0;
	z-index: 999;
	padding: 35px 0 0;
}

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

/* main header styles */

.main-header {
	width: 100%;
	min-height: 119px;
	position: relative;
	background: rgba(0, 21, 34, .82);
}

.main-header:after {
	position: absolute;
	top: -35px;
	left: 0;
	width: 100%;
	height: 35px;
	content: "";
	background: rgba(0, 109, 165, .82);
}

.main-header .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	position: relative;
	z-index: 9;
	font-family: "Rajdhani", sans-serif;
}

/* page logo styles */

.logo {
    position: absolute;
    left: 15px;
    top: 18px;
    z-index: 9;
    width: 191px;
}

.logo a {
	display: block;
}

.logo img {
	display: block;
	width: 100%;
	height: auto;
}

/* nav slide styles */

.nav-slide {
	padding: 37px 0 0 185px;
}

/* nav opener styles */

.nav-opener {
	position: absolute;
	width: 26px;
	height: 13px;
	z-index: 9;
	right: 10px;
	top: 21px;
	display: none;
}

.nav-opener:before, .nav-opener:after, .nav-opener span {
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	position: absolute;
	width: 26px;
	height: 2px;
	background: #fff;
	top: 6px;
	left: 0;
}

.nav-opener:after {
	content: "";
	top: 12px;
}

.nav-opener:before {
	content: "";
	top: 0;
}

.nav-active .nav-opener span {
	display: none;
}

.nav-active .nav-opener:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	height: 3px;
	top: 5px;
}

.nav-active .nav-opener:before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	height: 3px;
	top: 4px;
}

/* header info styles */

.header-info {
	float: right;
	max-width: 230px;
	margin: 0 0 0 2px;
	padding: 4px 0 0 0;
}

.header-info .btn {
	font-style: normal;
	font-weight: 600;
	color: #fff;
	font-size: 23px;
	line-height: 26px;
	font-family: "Rajdhani", sans-serif;
	top: 0;
	word-spacing: 3px;
	padding: 7px 11px;
	text-transform: uppercase;
}

.header-info .contact-info {
	position: absolute;
	width: 55%;
	left: 15px;
	top: -28px;
	letter-spacing: -.32em;
}

.header-info .contact-info li {
	display: inline-block;
	vertical-align: top;
	letter-spacing: normal;
	word-spacing: 3px;
	text-transform: uppercase;
	list-style: none;
	font: 16px/20px "Rajdhani", sans-serif;
	border-left: 1px solid #007bba;
	padding: 0 10px;
}

.header-info .contact-info li:first-child {
	border: none;
	padding: 0 10px 0 0;
}

@media (max-width: 935px) {
	.header-info .contact-info li:first-child {
		padding: 0 5px 0 0;
	}
	.header-info .contact-info li {
		padding: 0 5px;
	}
}

.header-info .contact-info li .mob {
	display: none;
}

.header-info .contact-info li .desktop {
	display: block;
}

.header-info .contact-info li.tel a:before {
	content: "\e906";
}

.header-info .contact-info li.location a:before {
	left: 4px;
	top: -6px;
	font-size: 28px;
	content: "\e905";
}

.header-info .contact-info li.distributors a:before {
	left: 4px;
	top: -6px;
	font-size: 28px;
	content: "";
	background-image: url('images/distributors/distributor.svg');
	background-size: contain;
	background-repeat: no-repeat;
	height: 35px;
	width: 100%;
	background-position: center center;
}

.header-info .contact-info a {
	display: inline-block;
	vertical-align: top;
	position: relative;
	color: #fff;
	text-decoration: none;
}

.header-info .contact-info a:hover {
	color: #001522;
}

.header-info .contact-info a:before {
	left: 0;
	top: 0;
	font-size: 26px;
	line-height: 35px;
	color: #006da5;
	display: none;
}

/* nav holder styles */

.nav-holder {
	display: block;
}

/* nav styles */

.nav {
	letter-spacing: -.32em;
	text-align: right;
}

.nav > li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	font-size: 21px;
	line-height: 30px;
	letter-spacing: normal;
	text-transform: uppercase;
	position: relative;
	margin: 0 0 0 -1px;
	padding: 0 0 2px;
}

.nav > li:first-child {
	display: none;
}

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

.nav > li:after {
	position: absolute;
	right: 0;
	content: "";
	top: 10px;
	height: 28px;
	border-left: 1px solid #007bba;
}

.nav > li:hover > a {
	background: #007bba;
}

.nav > li:hover ul {
	max-height: 600px;
}

.nav > li.active > a {
	background: #007bba;
}

.nav > li > a {
	text-decoration: none;
	color: #fff;
	display: block;
	padding: 10px 11px 8px;
}

.nav > li ul {
	position: absolute;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	z-index: 9;
	top: 100%;
	display: block;
	width: 275px;
	text-align: left;
	max-height: 0;
	overflow: hidden;
}

.nav > li li {
	list-style: none;
	letter-spacing: 0;
	text-transform: capitalize;
	font: 20px/23px "Rajdhani", sans-serif;
}

.nav > li li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 8px 14px 7px;
	background: rgba(0, 123, 186, .95);
}

.nav > li li a:hover {
	background: #001522;
}

/* sub nav styles */

.sub-nav {
	letter-spacing: -.32em;
	text-align: right;
	top: -35px;
	right: 3px;
	width: 45%;
	position: absolute;
}

.sub-nav > li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	font-size: 17px;
	line-height: 22px;
	letter-spacing: normal;
	text-transform: uppercase;
	position: relative;
	margin: 0 0 0 -1px;
	padding: 0 0 2px;
}

.sub-nav > li:last-child:after {
	display: none;
}

.sub-nav > li:after {
	position: absolute;
	right: 0;
	content: "";
	top: 7px;
	height: 21px;
	border-left: 1px solid #007bba;
}

.sub-nav > li:last-child ul {
	left: auto;
	right: 0;
}

.sub-nav > li:hover > a {
	background: #007bba;
}

.sub-nav > li:hover ul {
	max-height: 600px;
}

.sub-nav > li.active > a {
	background: #007bba;
}

.sub-nav > li > a {
	text-decoration: none;
	color: #fff;
	display: block;
	padding: 7px 13px 6px;
}

@media (max-width: 900px) {
	.sub-nav > li > a {
		padding: 7px 5px 6px;
	}
}

.sub-nav > li ul {
	position: absolute;
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	z-index: 9;
	top: 100%;
	display: block;
	width: 200px;
	text-align: left;
	max-height: 0;
	overflow: hidden;
}

.sub-nav > li li {
	list-style: none;
	letter-spacing: 0;
	text-transform: capitalize;
	font: 17px/22px "Rajdhani", sans-serif;
}
 
.sub-nav > li li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 8px 10px 7px;
	background: rgba(0, 123, 186, .95);
}

.sub-nav > li li a:hover {
	background: #001522;
}

/* visual styles */

.visual {
	width: 100%;
	height: auto;
	margin: 0 0 100px;
	position: relative;
}

.visual img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 500px;
	object-fit: cover;
	object-position: center;
}



/* Anniversary Logo */

.anniversary-icon-side-pages{
	position: absolute;
	top:55%;
	right: 5%;
	width: 65px !important;
}

@media only screen and (min-width: 600px){
	.anniversary-icon-side-pages{
		position: absolute;
		top: 72%;
		right: 5%;
		width: 75px !important;
	}
}
@media  only screen and (min-width: 880px){
	.anniversary-icon-side-pages{
		position: absolute;
		top:65%;
		right: 9%;
		width: 100px !important;
	}
}
@media  only screen and (min-width: 1050px){
	.anniversary-icon-side-pages{
		position: absolute;
		top:75%;
		right: 10%;
		width: 150px !important;
	}
}
@media  only screen and (min-width: 1480px){
	.anniversary-icon-side-pages{
		position: absolute;
		top: 75%;
		right: 20%;
		width: 150px !important;
	}
}
@media  only screen and (min-width: 2000px){
	.anniversary-icon-side-pages{
		position: absolute;
		top: 75%;
		right: 25%;
		width: 150px !important;
	}
}
@media  only screen and (min-width: 2000px){
	.anniversary-icon-side-pages{
		position: absolute;
		top: 80%;
		right: 30%;
		width: 150px !important;
	}
}


/* content styles */

.content {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	padding: 0 15px 20px;
}

.content p {
	margin: 0 0 27px;
	word-spacing: -1px;
}

/* heading styles */

.heading {
	position: relative;
	margin: 0 0 30px;
}

.heading:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	background: #ccc;
	height: 1px;
	width: 260px;
}

.heading h1 {
	font-size: 60px;
	line-height: 60px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0;
	padding: 0 0 32px;
	text-transform: capitalize;
}

.heading .text {
	display: block;
	font: 27px/30px "HelveticaNeueETW01-46Lt", sans-serif;
}

.heading.recru {
	padding: 0 0 28px;
	margin: 0 0 21px;
}

.heading.recru h1 {
	margin: -4px 0 0;
	padding: 0 0 5px;
}

.heading.facili {
	padding: 0 0 33px;
	margin: 0 0 32px;
}

.heading.facili h1 {
	margin: 0;
	padding: 0 0 5px;
}

.heading.about {
	padding: 0 0 33px;
	margin: 0 0 31px;
}

.heading.about h1 {
	margin: 0;
	padding: 0 0 5px;
}

/* market block styles */

.market-block {
	padding: 18px 0 0;
}

.content .text h2 {
	font-size: 45px;
	line-height: 45px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 26px;
	position: relative;
	padding: 0 0 16px;
	text-transform: capitalize;
}

.content .text h2:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	background: #ccc;
	height: 1px;
	width: 260px;
}

p {
	margin: 0 0 17px;
}

#main.padding-top {
	padding-top: 200px;
}

.content .text ul {
	padding: 0 0 0 41px;
}

.content .text ul li {
	padding: 0 0 15px 12px;
	position: relative;
	letter-spacing: 1px;
	list-style: none;
	font: 500 22px/25px "Rajdhani", sans-serif;
}

.content .text ul li:after {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 3px;
	height: 4px;
	background: #006da5;
}

/* resource block styles */

.resource-block {
	padding: 41px 0;
}

.resource-block h1 {
	font-size: 60px;
	line-height: 60px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 21px;
	position: relative;
	padding: 0 0 25px;
	text-transform: capitalize;
}

.resource-block h1:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	background: #ccc;
	height: 1px;
	width: 260px;
}

.resource-block p {
	margin: 0 0 31px;
}

.resource-block .list {
	padding: 0 0 0 36px;
}

.resource-block .list li {
	padding: 0 0 31px;
	position: relative;
	list-style: none;
	letter-spacing: 1px;
	font: 500 27px/30px "Rajdhani", sans-serif;
}

.resource-block .list li a {
	display: inline-block;
	vertical-align: top;
	position: relative;
	text-decoration: none;
	color: #00324c;
	padding: 0 0 0 38px;
}

.resource-block .list li a:hover {
	color: #006da5;
	text-decoration: underline;
}

.resource-block .list li span {
	left: 0;
	top: -4px;
	font-size: 31px;
	color: #c1c1c1;
	text-decoration: none;
	position: absolute;
}

/* product gallery block styles */

.product-gallery {
	position: relative;
	background: #fbfbfb;
}

.product-gallery:after {
	width: 51.5%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	left: -20px;
	margin: -12px 0 0;
}

.product-gallery:before {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	right: 0;
	margin: -12px 0 0;
}

.product-gallery .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 65px 15px 134px;
	position: relative;
	z-index: 9;
}

.product-gallery h1 {
	font-size: 60px;
	line-height: 60px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 28px;
	position: relative;
	padding: 0 0 19px;
	text-transform: capitalize;
}

.product-gallery h1:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 -130px;
	width: 260px;
}

.product-gallery p {
	margin: 0 0 51px;
}

/* product gallery list styles */

.product-list {
	letter-spacing: -.32em;
	margin: 0 -6px;
}

.product-list li {
	display: inline-block;
	vertical-align: top;
	width: 33.333%;
	padding: 0 6px 14px;
}

.product-list li img {
	display: block;
	width: 100%;
	height: auto;
}

.product-list li a {
	display: block;
	border: 1px solid #e1e1e1;
}

.product-list li a:hover {
	border-color: #008ad1;
}

/* request block styles */

.request-block {
	background: #006da5;
	width: 100%;
	min-height: 200px;
	position: relative;
}

.request-block:after {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #006da5;
	left: -1.3%;
	margin: -19px 0 0;
}

.request-block:before {
	width: 51.6%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #006da5;
	right: -1.3%;
	margin: -19px 0 0;
}

.request-block .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 44px 15px 76px;
	position: relative;
	z-index: 9;
	color: #fff;
}

.request-block h1 {
	font-size: 60px;
	line-height: 60px;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 23px;
	position: relative;
	padding: 0 0 22px;
	text-transform: capitalize;
}

.request-block h1:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #002237;
	margin: 0 0 0 -130px;
	width: 260px;
}

.request-block p {
	margin: 0 0 38px;
}

.request-block .btn-request {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #003658;
	letter-spacing: 1px;
	padding: 13px 50px 13px 26px;
	font: 23px/26px "HelveticaNeueETW01-46Lt", sans-serif;
	position: relative;
	color: #fff;
	text-decoration: none;
	text-transform: capitalize;
}

.request-block .btn-request:hover {
	background: #003658;
}

.request-block .btn-request:after {
	position: absolute;
	right: 17px;
	top: 50%;
	content: "\e901";
	font-size: 28px;
	color: #001522;
	margin: -13px 0 0;
}

/* benefit block styles */

.benefit-block {
	padding: 50px 0 19px;
}

.benefit-block h1 {
	font-size: 60px;
	line-height: 60px;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 22px;
	position: relative;
	padding: 0 0 13px;
	color: #006da5;
	text-transform: capitalize;
}

.benefit-block h1:before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	width: 260px;
}

.benefit-block p {
	margin: 0 0 24px;
}

/* list  styles */

.accordion ul {
	padding: 0 0 0 50px;
}

.accordion ul li {
	padding: 0 0 15px 12px;
	position: relative;
	list-style: none;
	font: 500 22px/25px "Rajdhani", sans-serif;
	text-transform: capitalize;
}

.accordion ul li:after {
	content: "";
	position: absolute;
	left: 0;
	top: 10px;
	width: 3px;
	height: 4px;
	background: #006da5;
}

/* number list styles */

.numbe-list-style {
	padding: 0 0 0 50px;
	counter-reset: item;
}

.numbe-list-style li {
	text-transform: capitalize;
	padding: 0 0 15px 12px;
	position: relative;
	list-style: none;
	font: 500 22px/25px "Rajdhani", sans-serif;
}

.gform_wrapper ul li {
	padding-left: 0 !important;
}
.gform_wrapper ul li:after {
	content: none !important;
}
.gform_wrapper {
	overflow: hidden !important;
}
.gform_wrapper .top_label .gfield_label {
	color: #707070;
	font: 500 22px/25px "Rajdhani", sans-serif !important;
	margin: 0 !important;
}

.gform_wrapper .ginput_complex label {
	color: #6c6c6c;
	font-size: 13px !important;
	line-height: 14px !important;
	font-weight: 500 !important;
	padding: 4px 0 0;
	font-family: "HelveticaNeueETW01-45Lt", sans-serif;
	text-transform: uppercase;
	font-style: normal !important;
}
.gform_wrapper input[type="text"], .gform_wrapper textarea, .gform_wrapper select {
	background: #ededed;
	padding-bottom: 10px !important;
	padding-top: 10px !important;
	border: none;
}
.gform_wrapper select {
	appearance: none;
	-moz-appearance: none;
        -webkit-appearance: none;
        padding: .313rem;
	position: relative;
}
.ginput_container_select:after {
	font-family: "icomoon";
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\e903";
	position: absolute;
	top: 20px;
	right: 20px;
	display: block;
	font-size: 15px;
	top: 17px;
	right: 22px;
	pointer-events: none;
}
.ginput_container_select {
	position: relative;
}
.gform_wrapper .top_label textarea.textarea {
	width: 97.2% !important;
}
.gform_wrapper input[type="submit"].gform_button {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #1b7ee3;
	color: #003658;
	font: 16px/24px "HelveticaNeueETW01-46Lt", sans-serif;
	padding: 7px 30px;
	text-decoration: none;
	position: relative;
	text-align: center;
	top: 1px;
	margin: 0 0 10px;
	background: none;
	float: right;
	transition: all .3s linear;
}
.gform_wrapper input[type="submit"].gform_button:hover {
	color: #FFF;
	background: #1b7ee3;
}
.gform_wrapper .gfield_required {
	color: #b00e0e !important;
}
.gform_wrapper .gform_footer {
	padding-top: 0 !important;
}
.gform_wrapper .top_label .gfield_label {
	font-weight: normal;
}
.gform_wrapper ul li.gfield {
	margin-bottom: 30px !important;
}
.gform_wrapper h2.gsection_title {
	font-weight: 300 !important;
	font-style: normal;
}
.gform_wrapper .gform_page_footer .button.gform_next_button, .gform_wrapper .gform_page_footer .button.gform_previous_button {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #1b7ee3;
	color: #003658;
	font: 16px/24px "HelveticaNeueETW01-46Lt", sans-serif;
	padding: 7px 30px;
	text-decoration: none;
	position: relative;
	text-align: center;
	top: 1px;
	margin: 0 0 10px;
	background: none;
	float: right;
	transition: all .3s linear;
}

.gform_wrapper .gform_page_footer .button.gform_previous_button {
	float: left;
}

.gform_wrapper .gform_page_footer .button.gform_next_button:hover, .gform_wrapper .gform_page_footer .button.gform_previous_button:hover {
	color: #FFF;
	background: #1b7ee3;
}

#main .gform_wrapper .gsection {
	border: none;
	padding-bottom: 0;
}

#main .gform_wrapper h2.gsection_title {
	font-size: 45px;
	font-weight: 500 !important;
}

#main .gform_wrapper .gfield_description, #main .gform_wrapper input, #main .gform_wrapper select, #main .gform_wrapper .gsection_description {
	font: normal 16px/24px "HelveticaNeueETW01-45Lt", sans-serif;
	font-style: normal !important;
}

#main a#gform_save_2_link.gform_save_link {
	margin-left: 15px;
}

#main .gform_wrapper .ginput_complex.ginput_container.has_first_name.has_middle_name.no_last_name span, #main .gform_wrapper .ginput_complex.ginput_container.has_first_name.no_middle_name.has_last_name span, #main .gform_wrapper .ginput_complex.ginput_container.no_first_name.has_middle_name.has_last_name span {
/* 	width: 49%; */
/* 	margin: 0 0 0.5rem; */
/* 	margin-right: 1.6%; */
}

@media (max-width: 443px) {
	.gf_left_half, .gf_right_half, .name_first, .name_last {
		width: 100% !important;
	}
}

/* explor block styles */

.explor-block {
	padding: 50px 0 50px;
}

.content h1 {
	font-size: 60px;
	line-height: 60px;
	font-weight: 500 !important;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 31px;
	position: relative;
	padding: 0 0 29px;
	color: #006da5;
	text-transform: capitalize;
}

.content  h1:before {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	width: 260px;
}

.content .heading h1:before {
	content: none;
}

.explor-block p {
	margin: 0 0 24px;
}

.resource-block .app-title {
	font-family: Helvetica Neue;
	font-style: italic;
	color: #666666;
	margin-bottom: 30px;
	font-size: 27px;
	font-weight: 200;
	line-height: 32px;
}
.applicant-pdfs a {
	font-family: "Rajdhani", sans-serif;
	color: #003333;
	display: block;
	padding-left: 40px;
	text-decoration: none;
	font-weight: 500;
	font-size: 27px;
	margin-bottom: 10px;
	line-height: 32px;
}
.applicant-pdfs .list li {
    padding: 0 0 31px;
    position: relative;
    list-style: none;
    letter-spacing: 1px;
    font: 500 27px/30px "Rajdhani", sans-serif;
 }
 .applicant-pdfs:hover li {
	color: #006da5;
	text-decoration: underline;
 }
 .applicant-pdfs list {
	padding: 0 0 0 6px;
 }
.icon-app:before {
	content: "\e904";
	margin-right: 10px;
	color: #666666;
}
/* accordin styles */

.accordion > li {
	padding: 12px 48px;
}

.accordion > li.active {
	background: #fbfbfb;
}

.accordion > li.active .opener {
	color: #006da5;
}

.accordion > li.active .opener span:before {
	content: "\e902";
}

.accordion .opener {
	display: inline-block;
	vertical-align: top;
	position: relative;
	letter-spacing: 0;
	word-spacing: 3px;
	font: 500 27px/32px "Rajdhani", sans-serif;
	text-decoration: none;
	color: #004264;
	padding: 0 36px 0 0;
	text-transform: capitalize;
}

.accordion .opener span {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 9px;
	line-height: 30px;
	color: #c9c9c9;
}

.accordion .slide {
	padding: 17px 27px 32px;
}

.accordion .slide p {
	margin: 0 0 27px;
}

.accordion .slide h2 {
	font-size: 27px;
	line-height: 34px;
	font-weight: 500;
	color: #00324c;
	text-transform: capitalize;
}

.accordion ul {
	letter-spacing: 0;
	margin: 0 0 19px;
}

.accordion .text {
	display: block;
	margin: 0 0 26px;
}

.accordion .btn {
	letter-spacing: 1px;
	padding: 7px 23px;
}

/* testimonial block styles */

.testimonial {
	text-align: center;
	font-size: 17px;
	line-height: 25px;
	padding: 0 35px 121px;
}

.testimonial .ico {
	display: inline-block;
	vertical-align: top;
	color: #006da5;
	font-weight: 700;
	line-height: 141px;
	font-size: 141px;
	margin: 0 0 -49px;
}

.testimonial h2 {
	font-size: 27px;
	line-height: 32px;
	font-weight: 500;
	color: #004264;
	margin: 0 0 23px;
	letter-spacing: 1px;
}

.testimonial p {
	margin: 0 0 15px;
}

.testimonial .cite {
	letter-spacing: 1px;
	color: #00324c;
	font: 500 22px/25px "Rajdhani", sans-serif;
}

.testimonial .cite a {
	color: #00324c;
	text-decoration: none;
}

.testimonial .cite a:hover {
	color: #006da5;
}

/* facilties block styles */

.facilties {
	padding: 0 0 0px;
}

.facilties h2 {
	font-size: 45px;
	line-height: 45px;
	font-weight: 500;
	margin: 0 0 13px;
	color: #006da5;
	letter-spacing: 1px;
}

.facilties h2 a {
	color: #006da5;
	text-decoration: none;
}

.facilties h2 a:hover {
	color: #00324c;
}

.facilties p {
	margin: 0 0 52px;
}

.facilties .btn {
	min-width: 182px;
}

.facilties .post {
	padding: 0 0 70px;
}

.facilties .post p {
	margin: 0 0 27px;
	word-spacing: -2px;
}

.facilties .post p + p {
	margin: 0 0 12px;
}

.facilties .contact-info {
	float: left;
	width: 42.4%;
	padding: 5px 15px 0 4px;
}

.facilties .contact-info img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 0 15px;
	border: 1px solid #e1e1e1;
}

.facilties .info {
	overflow: hidden;
}

.info-list li {
	padding: 0 0 16px 34px;
	letter-spacing: 0;
	color: #707070;
	position: relative;
	font: 25px/30px "Rajdhani", sans-serif;
}

.info-list li a {
	text-decoration: none;
	color: #707070;
}

.info-list li a.get {
	text-decoration: underline;
	color: #006da5;
}

.info-list li a.get:hover {
	color: #00324c;
}

.info-list li.tel:after {
	content: "\e906";
	position: absolute;
	left: 0;
	top: 3px;
	color: #006da5;
}

.info-list li.fax:after {
	content: "\e907";
	position: absolute;
	left: 0;
	top: 2px;
	color: #006da5;
}

.info-list li.laction:after {
	content: "\e905";
	position: absolute;
	left: 1px;
	top: -3px;
	font-size: 29px;
	color: #006da5;
}

/* recent blog block styles */

.recent-blog {
	padding: 0 0 171px;
}

.recent-blog p {
	word-spacing: -2px;
}

.sort-panel {
	padding: 3px 0 70px;
	letter-spacing: 1px;
}

.sort-panel .label {
	float: left;
	max-width: 50%;
	letter-spacing: 0;
	word-spacing: 3px;
	padding: 8px 17px 5px 0;
	text-transform: capitalize;
	font: 500 27px/32px "Rajdhani", sans-serif;
}

/* sort drop styles */

.sort-drop {
	float: left;
	position: relative;
}

.sort-drop > a {
	border: 1px solid #1b7ee3;
	color: #003658;
	letter-spacing: 0;
	word-spacing: 2px;
	font: 20px/24px "HelveticaNeueETW01-46Lt", sans-serif;
	padding: 12px 58px 12px 20px;
	text-decoration: none;
	position: relative;
	text-align: left;
	top: 0;
	margin: 0 0 1px;
	display: block;
	min-width: 250px;
}

.sort-drop > a:after {
	position: absolute;
	right: 12px;
	top: 15px;
	content: "\e903";
	font-size: 8px;
	color: #1b7ee3;
	line-height: 18px;
}

.sort-drop.hover > a:after {
	content: "\e902";
}

.sort-drop.hover ul {
	display: block;
}

.sort-drop ul {
	position: absolute;
	z-index: 9;
	top: 100%;
	display: none;
	width: 100%;
}

.sort-drop li {
	list-style: none;
	letter-spacing: 0;
	font: 20px/20px "Rajdhani", sans-serif;
}

.sort-drop li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 9px 14px;
	background: rgba(0, 123, 186, .95);
}

.sort-drop li a:hover {
	background: #001522;
}

/* detail block styles */

.detail-block {
	overflow: hidden;
	letter-spacing: 1px;
	margin-bottom: 50px;
}

.detail-block .logo-holder {
	float: left;
	width: 37.3%;
	/* 	border: 1px solid #f4f4f4; */
	min-height: 198px;
	margin: 4px 47px 0 0;
	text-align: center;
	padding: 0 10px;
}

.detail-block .logo-holder:after {
	content: "";
	display: inline-block;
	height: 198px; /* the same as min-height */
	width: 1px;
	overflow: hidden;
	margin: 0 0 0 -5px;
	vertical-align: middle;
}

.detail-block .logo-holder img {
	display: inline-block;
	vertical-align: top;
	vertical-align: middle;
	max-width: 100%;
	border: 1px solid #f4f4f4;
}

.detail-block .info {
	overflow: hidden;
}

.detail-block .info p {
	margin: 0 0 18px;
}

.detail-block .info p time, .detail-block .info p span {
	font-weight: 700;
}

.detail-block .info .btn {
	padding: 7px 21px;
}

.detail-block h2 {
	font-size: 45px;
	line-height: 45px;
	font-weight: 500;
	margin: 0 0 10px;
	color: #006da5;
}

.detail-block h2 a {
	color: #006da5;
	text-decoration: none;
}

.detail-block h2 a:hover {
	color: #00324c;
}

/* post holder styles */

.posts-holder {
	padding: 15px 0 33px;
}

.posts-holder .post {
	padding: 0 0 53px;
	overflow: hidden;
}

.posts-holder h2 {
	font-size: 45px;
	line-height: 45px;
	font-weight: 500;
	margin: 0 0 13px;
	color: #006da5;
}

.posts-holder h2 a {
	color: #006da5;
	text-decoration: none;
}

.posts-holder h2 a:hover {
	color: #00324c;
}

.posts-holder .info {
	overflow: hidden;
}

.posts-holder p {
	margin: 0 0 16px;
}

.posts-holder .btn {
	padding: 7px 19px;
	letter-spacing: 1px;
}

.posts-holder img {
	margin: 5px 47px 0 0;
	float: left;
	width: 37.3%;
	height: auto;
	border: 1px solid #e1e1e1;
}

/* throughtout year block styles */

.throughtout-block {
	padding: 0 0 111px;
}

.throughtout-block h1 {
	text-align: center;
	font-size: 45px;
	line-height: 45px;
	color: #00324c;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 33px;
	position: relative;
	padding: 0 0 16px;
}

.throughtout-block h1:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 -130px;
	width: 260px;
}

.year-list {
	padding: 0 10px;
}

.year-list li {
	width: 54.2%;
	padding: 11px 0;
}

.year-list li.left {
	float: left;
	width: 53.9%;
}

.year-list li.left .date {
	float: right;
}

.year-list li.left .info {
	text-align: right;
	margin: -52px 101px -55px 0;
	padding: 0 13px 0 0;
}

.year-list li.left .info:before {
	right: -4px;
	border-left: 10px solid #f4f4f4;
}

.year-list li.left .img-block {
	float: right;
	margin: -54px -12px -7px 28px;
}

.year-list li.right {
	float: right;
}

.year-list li.right .date {
	float: left;
}

.year-list li.right .info {
	margin: -52px 0 -55px 101px;
	padding: 0 0 0 13px;
}

.year-list li.right .info:before {
	left: -3px;
	border-right: 10px solid #f4f4f4;
}

.year-list li.right .img-block {
	float: left;
	margin: -54px 28px -7px -12px;
}

.year-list li.right.with-img .info {
	padding: 40px 0 40px 13px;
}

.year-list li.with-img .info {
	padding: 40px 13px 40px 0;
}

.year-list li.with-img .info:after {
	height: 99px;
}

.year-list .date {
	width: 79px;
	height: 79px;
	background: #006da5;
	color: #fff;
	text-align: center;
	padding: 20px 3px;
	font: 500 34px/39px "Rajdhani", sans-serif;
}

.year-list .info {
	overflow: hidden;
	min-height: 179px;
	margin: -50px 0;
	position: relative;
	white-space: nowrap;
}

.year-list .info:before {
	position: absolute;
	top: 50%;
	margin: -3px 0 0;
	content: "";
	border: 6px solid transparent;
}

.year-list .info:after {
	content: "";
	display: inline-block;
	height: 179px; /* the same as min-height */
	width: 1px;
	overflow: hidden;
	margin: 0 0 0 -8px;
	vertical-align: middle;
}

.year-list .comment-block {
	display: inline-block;
	vertical-align: top;
	background: #f4f4f4;
	width: 100%;
	padding: 16px 22px;
	letter-spacing: 0;
	line-height: 25px;
	font-size: 17px;
	white-space: normal;
	vertical-align: middle;
}

.year-list .comment-block .img-block {
	width: 121px;
	text-decoration: none;
}

.year-list .comment-block .img-block img {
	margin: 0 0 7px;
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid #e1e1e1;
}

.year-list .comment-block .img-block .link {
	display: block;
	font-style: italic;
	font-size: 10px;
	line-height: 10px;
	text-decoration: none;
	color: #707070;
	text-align: center;
}

.year-list .comment-block .img-block:hover .link {
	color: #006da5;
}

.year-list .comment-block p {
	margin: 0;
	letter-spacing: -1px;
	word-spacing: 1px;
}

/* leadership block styles */

.leadership-block {
	padding: 0 0 5px;
}

.leadership-list {
	overflow: hidden;
	padding: 18px 0 0;
}

.leadership-list li {
	float: left;
	width: 50%;
	list-style: none;
	padding: 0 10px 62px 0;
}

.leadership-list .logo-area {
	float: left;
	width: 214px;
	min-height: 254px;
	background: #ebebeb;
	text-align: center;
	white-space: nowrap;
	margin: 0 11px 0 0;
}

.leadership-list .logo-area:after {
	content: "";
	display: inline-block;
	height: 214px; /* the same as min-height */
	width: 1px;
	overflow: hidden;
	margin: 0 0 0 -8px;
	vertical-align: middle;
}

.leadership-list .logo-area img {
	display: inline-block;
	vertical-align: top;
	vertical-align: middle;
	max-width: 100%;
	margin: 0;
}

.leadership-list .info {
	overflow: hidden;
	font-family: "HelveticaNeueETW01-46Lt", sans-serif;
	padding: 0 0 14px;
	white-space: nowrap;
}

.leadership-list .info:after {
	content: "";
	display: inline-block;
	height: 100%; /* the same as min-height */
	width: 1px;
	overflow: hidden;
	margin: 0 0 0 -5px;
	vertical-align: middle;
}

.leadership-list .text-holder {
	display: inline-block;
	vertical-align: top;
	vertical-align: bottom;
	min-height: 116px;
	white-space: normal;
}

.leadership-list h2 {
	font-weight: 500;
	font-size: 27px;
	line-height: 32px;
	margin: 0 0 2px;
	color: #006da5;
	font-style: normal;
}

.leadership-list h2 a {
	text-decoration: none;
	color: #006da5;
}

.leadership-list h2 a:hover {
	color: #00324c;
}

/* controls block styles */

.controls-block {
	position: relative;
	background: #fbfbfb;
}

.controls-block:after {
	width: 51.5%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	left: -20px;
	margin: -12px 0 0;
}

.controls-block:before {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	right: 0;
	margin: -12px 0 0;
}

.controls-block .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 54px 15px 115px;
	position: relative;
	z-index: 9;
	letter-spacing: 1px;
}

.controls-block h1 {
	font-size: 60px;
	line-height: 60px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 39px;
	position: relative;
	padding: 0 0 19px;
	text-transform: capitalize;
}

.controls-block h1:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 -130px;
	width: 260px;
}

/* controls list styles */

.controls-list {
	text-align: center;
	letter-spacing: -.32em;
	margin: 0 -4px;
}

.controls-list li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	letter-spacing: normal;
	width: 25%;
	padding: 0 4px 8px;
	text-transform: capitalize;
}

.controls-list li img {
	display: block;
	width: 100%;
	height: auto;
}

.controls-list li a {
	position: relative;
	display: block;
	color: #fff;
}

.controls-list li.hover .text-holder {
	background: rgba(0, 109, 165, .9);
}

.controls-list li.hover .link {
	background: #00324c;
	border-color: #00324c;
}

.controls-list .text-holder {
	left: 0;
	top: 0;
	padding: 10px 10px 0;
	width: 100%;
	height: 100%;
	position: absolute;
	white-space: nowrap;
	background: rgba(0, 50, 76, .9);
}

.controls-list .text-holder:after {
	content: "";
	display: inline-block;
	height: 100%; /* the same as min-height */
	width: 1px;
	overflow: hidden;
	margin: 0 0 0 -5px;
	vertical-align: middle;
}

.controls-list .text-area {
	display: inline-block;
	vertical-align: top;
	vertical-align: middle;
	white-space: normal;
}

.controls-list .title {
	display: block;
	margin: 0 0 13px;
	font: 500 27px/32px "Rajdhani", sans-serif;
}

.controls-list .link {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #008ad1;
	padding: 6px 9px;
	font-style: normal;
	letter-spacing: 1px;
	font: 16px/20px "HelveticaNeueETW01-46Lt", sans-serif;
}

/* slideshow styles */

.slideshow {
	position: relative;
}

.slideshow img {
	display: block;
}

.slideshow .slide {
	width: 100%;
	/* 	min-height: 817px; */
	min-height: 600px;
	position: absolute;
	z-index: 1;
	left: 0;
	top: 0;
}

.slideshow .slide.active {
	z-index: 2;
}

.slideshow .slide .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	position: relative;
	/* 	padding: 215px 48px 100px; */

	padding: 180px 48px 50px;
	color: #fff;
}

.slideshow .title {
	/*
	 display: block;
	 font-size: 60px;
	 letter-spacing: 2px;
	 line-height: 60px;
	 font: 60px/60px "HelveticaNeueETW01-46Lt", sans-serif;
	 margin: 0 0 20px 4px;
	 */

	display: block;
	font-size: 35px;
	letter-spacing: 2px;
	line-height: 60px;
	font: 35px/40px "HelveticaNeueETW01-46Lt", sans-serif;
	margin: 0 0 20px 4px;
	text-align: center;
}

.slideshow h1 {
	/*
	 font-size: 167px;
	 line-height: 147px;
	 font-weight: 600;
	 margin: 0 0 16px;
	 padding: 0 0 0 166px;
	 letter-spacing: 4px;
	 text-indent: -132px;
	 */

	font-size: 87px;
	line-height: 87px;
	font-weight: 600;
	margin: 0 auto 16px;
	padding: 0 0 0 0;
	letter-spacing: 4px;
	text-indent: 0px;
	text-align: center;
	max-width: 600px;
}

.slideshow .btn {
	float: right;
	margin: 0 -2px 10px 0;
	color: #fff;
	padding: 12px 15px 14px;
	font-size: 20px;
	min-width: 211px;
	letter-spacing: 1px;
	position: relative;
}

.slideshow .btn-holder {
	position: absolute;
	left: 0;
	top: 50%;
	z-index: 99;
	width: 100%;
	margin: -26px 0 0;
	pointer-events: none;
}

.slideshow .btn-holder .btn-frame {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	overflow: hidden;
	padding: 0 20px;
}

.slideshow .btn-prev, .slideshow .btn-next {
	font-size: 55px;
	line-height: 58px;
	text-decoration: none;
	color: #016ca3;
	float: left;
	pointer-events: auto;
}

.slideshow .btn-prev:hover, .slideshow .btn-next:hover {
	color: #fff;
}

.slideshow .btn-next {
	float: right;
}

.bg-stretch {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	z-index: -1;
}

.bg-stretch img {
	max-width: inherit;
}

/* intro block styles */

.intro-block {
	width: 100%;
	min-height: 200px;
	position: relative;
	z-index: 9;
}

.intro-block:after {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fff;
	left: -1.3%;
	margin: -22px 0 0;
}

.intro-block:before {
	width: 51.6%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fff;
	right: -1.3%;
	margin: -22px 0 0;
}

.intro-block .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 0 15px 44px;
	position: relative;
	z-index: 9;
}

.intro-block .intro {
	float: right;
	width: 48.8%;
	margin: -70px 0 0;
	padding: 36px 10px 50px;
	color: #fff;
	background: #006da5;
}

.intro-block .intro p {
	margin: 0 0 28px;
}

.intro-block .intro .btn {
	border-color: #002237;
	color: #fff;
	position: relative;
	top: 5px;
	font-size: 20px;
	line-height: 29px;
	padding: 10px;
	min-width: 310px;
	max-width: 100%;
}

.intro-block .intro .btn:hover {
	background: #002237;
}

.intro-block .sub-heading {
	position: relative;
	margin: 0 0 24px;
	padding: 0 0 31px;
}

.intro-block .sub-heading:after {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	background: #002237;
	height: 1px;
	width: 260px;
	margin: 0 0 0 -130px;
}

.intro-block .sub-heading h1 {
	font-size: 50px;
	line-height: 50px;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0;
	padding: 0 0 5px;
	text-transform: capitalize;
}

@media(max-width: 390px){
	.intro-block .sub-heading h1 {
		font-size: 20px !important;
	}
}

@media(max-width: 350px){
	.intro-block .sub-heading h1 {
		font-size: 20px !important;
	}
}


.anniversary-container h1{
	font-size: 25pt !important;
	line-height: 25px !important;
}

.anniversary-container span{
	font-size: 11pt !important;
}

.intro-block .sub-heading .text {
	display: block;
	letter-spacing: 1px;
	font: 27px/29px "HelveticaNeueETW01-46Lt", sans-serif;
}

.intro-block .text-area {
	max-width: 387px;
	margin: 0 auto;
}

.intro-block .images-area {
	float: left;
	padding: 11px 0 0;
	margin: 0 0 -82px -134px;
	width: 62.4%;
}

.intro-block .full-img {
	margin: 0 0 20px;
}

.intro-block .full-img img {
	display: block;
	width: 100%;
	height: auto;
}

.intro-block .two-col {
	float: right;
	width: 91.9%;
	overflow: hidden;
}

.intro-block .two-col .col {
	float: left;
	padding: 0 0 0 20px;
	width: 45.6%;
}

.intro-block .two-col .col:first-child {
	width: 54.4%;
}

.intro-block .two-col .col img {
	display: block;
	width: 100%;
	height: auto;
}

/* quality product block styles */

.quality-product {
	position: relative;
	background: #fbfbfb;
}

.quality-product:after {
	width: 51.5%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	left: -20px;
	margin: -12px 0 0;
}

.quality-product:before {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	right: 0;
	margin: -12px 0 0;
}

.quality-product .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 97px 15px 82px;
	position: relative;
	z-index: 9;
}

.quality-product h1 {
	font-size: 60px;
	line-height: 60px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 30px;
	position: relative;
	padding: 0 0 19px;
	text-transform: capitalize;
}

.quality-product h1:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 -130px;
	width: 260px;
}

.quality-product p {
	margin: 0 0 33px;
}

/* quality product list styles */

.quality-list {
	letter-spacing: -.32em;
	margin: 0 -17px;
	text-align: center;
}

.quality-list li {
	display: inline-block;
	vertical-align: top;
	width: 258px;
	padding: 0 16px 46px;
	list-style: none;
	letter-spacing: normal;
}

.quality-list li img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 10px;
}

.quality-list li span {
	text-transform: capitalize;
	display: block;
	font: 500 22px/27px "Rajdhani", sans-serif;
}

.quality-list a {
	color: #004264;
	text-decoration: none;
}

.quality-list a:hover {
	text-decoration: underline;
	color: #006da5;
}

/* key market block styles */

.key-markets {
	position: relative;
}

.key-markets:after {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fff;
	left: -20px;
	margin: -12px 0 0;
}

.key-markets:before {
	width: 51.5%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fff;
	right: 0;
	margin: -12px 0 0;
}

.key-markets .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 54px 15px 71px;
	position: relative;
	z-index: 9;
	font-size: 17px;
}

.key-markets h1 {
	font-size: 45px;
	line-height: 45px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 18px;
	position: relative;
	padding: 0 0 15px;
	text-transform: capitalize;
}

.key-markets h1:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 -130px;
	width: 260px;
}

.key-markets p {
	margin: 0 0 39px;
}

/* key market list styles */

.key-list {
	letter-spacing: -.32em;
	margin: 0 -18px;
	text-align: center;
}

.key-list li {
	display: inline-block;
	vertical-align: top;
	padding: 0 px 36px;
	list-style: none;
	letter-spacing: normal;
}

.key-list li img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0 0 10px;
}

/* services block styles */

.services-block {
	position: relative;
	background: #fbfbfb;
}

.services-block:after {
	width: 51.5%;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	left: -20px;
	margin: -12px 0 0;
}

.services-block:before {
	width: 51.5%;
	-webkit-transform: rotate(-3deg);
	-ms-transform: rotate(-3deg);
	transform: rotate(-3deg);
	content: "";
	position: absolute;
	top: 0;
	height: 80px;
	background: #fbfbfb;
	right: 0;
	margin: -12px 0 0;
}

.services-block .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	text-align: center;
	padding: 44px 15px 111px;
	position: relative;
	z-index: 9;
}

/* services list styles */

.services-list {
	letter-spacing: -.32em;
	text-align: center;
	margin: 0 -5px;
}

.services-list li {
	display: inline-block;
	vertical-align: top;
	width: 33.33%;
	padding: 0 5px 10px;
	letter-spacing: normal;
}

.services-list img {
	display: block;
	width: 100%;
	height: auto;
}

.services-list .text-block {
	background: #fff;
	margin: -123px 20px 0;
	position: relative;
	padding: 14px 5px;
}

.services-list .text-holder {
	margin: 0 auto 16px;
	letter-spacing: normal;
	font: 19px/25px "HelveticaNeueETW01-46Lt", sans-serif;
}

.services-list .btn {
	min-width: 180px;
}

.services-list .btn:hover {
	background: #002237;
	border-color: #002237;
}

.services-list p {
	margin: 0;
}

.services-list h2 {
	font-size: 30px;
	line-height: 30px;
	color: #006da5;
	font-weight: 500;
	letter-spacing: 1px;
	word-spacing: 3px;
	margin: 0 0 14px;
	position: relative;
	padding: 0 0 15px;
	text-transform: capitalize;
}

.services-list h2:before {
	position: absolute;
	left: 50%;
	bottom: 0;
	content: "";
	border-bottom: 1px solid #ccc;
	margin: 0 0 0 -100px;
	width: 200px;
}

/* footer styles */

#footer {
	width: 100%;
	overflow: hidden; /*for FF on Windows 7*/
	display: table-footer-group;
	height: 1%;
}

/* footer top styles */

.footer-top {
	background: #001522;
}

.footer-top .holder {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
	position: relative;
	overflow: hidden;
	min-height: 245px;
	padding: 35px 250px 13px 15px;
}

.footer-top .title {
	display: block;
	color: #fff;
	font: 500 20px/28px "Rajdhani", sans-serif;
	position: relative;
	padding: 0 0 10px;
	margin: 0 0 15px;
}

.footer-top .title:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: "";
	width: 260px;
	border-bottom: 1px solid #003658;
}

/* footer contact info styles */

.contect-info {
	position: absolute;
	right: 15px;
	min-width: 175px;
	max-width: 225px;
	top: 31px;
}

.contect-info li {
	text-transform: capitalize;
	list-style: none;
	padding: 0 0 19px;
	font: 25px/25px "Rajdhani", sans-serif;
}

.contect-info li a {
	text-transform: capitalize;
	text-decoration: none;
}

.contect-info li.tel:before {
	content: "\e906";
	position: absolute;
	left: 0;
	top: 10px;
	font-size: 26px;
	color: #006da5;
	font-family: "icomoon";
}

.contect-info li.location a:before {
	left: 4px;
	top: -6px;
	font-size: 28px;
	content: "\e905";
}

.contect-info li.distributors a:before {
	content: "";
	background-image: url('images/distributors/distributor.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 30px;
	height: 30px;
	left: 2px;
	top: -3px;
}

.contect-info li.linkedin a:before {
	content: '';
	background: url('images/linkedin.png');
	background-repeat: no-repeat;
	background-position: 0px 0px;
	padding-top: 5px;
	width: 30px;
	height: 30px;
	left: 2px;
	top: -3px;
}

.contect-info a {
	display: inline-block;
	vertical-align: top;
	position: relative;
	color: #fff;
	text-decoration: none;
	padding: 0 0 0 38px;
}

.contect-info a:hover {
	color: #006da5;
}

.contect-info a:before {
	position: absolute;
	left: 0;
	top: 0;
	font-size: 26px;
	color: #006da5;
}

/* footer nav styles */

.footer-nav {
	margin: 0 0 -2px;
}

.footer-nav li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	font-size: 14px;
	line-height: 18px;
	word-spacing: 2px;
	text-transform: uppercase;
	color: #006da5;
}

.footer-nav li:first-child:before {
	display: none;
}

.footer-nav li:before {
	display: inline-block;
	vertical-align: top;
	content: "/";
	margin: 0 5px 0 1px;
}

.footer-nav li a {
	color: #fff;
	text-decoration: none;
}

.footer-nav li a:hover {
	color: #006da5;
}

/* footer links styles */

.links {
	display: inline-block;
	vertical-align: top;
}

.links li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	font-size: 14px;
	line-height: 18px;
	text-transform: capitalize;
	color: #006da5;
}

.links li:after {
	display: inline-block;
	vertical-align: top;
	content: "/";
	margin: 0 1px 0 5px;
	vertical-align: middle;
}

.links li a {
	color: #fff;
	text-decoration: none;
}

.links li a:hover {
	color: #006da5;
}

/* footer copyright styles */

.copyright {
	display: inline-block;
	vertical-align: top;
	font-size: 14px;
	line-height: 18px;
	color: #fff;
}

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

.copyright a:hover {
	color: #006da5;
}

.copyright-block {
	margin: 0 0 5px;
}

/* footer bottom styles */

.footer-bottom {
	margin: 0 auto;
	max-width: 1030px;
	padding: 0 15px;
}

/* association logos styles */

.association-logos {
	text-align: center;
	padding: 23px 0 13px;
}

.association-logos li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
	vertical-align: middle;
	margin: 0 5px 10px;
}

.association-logos a {
	display: block;
}

.association-logos li.item{
	width: 90px;
}

/* global button styles */

.btn {
	display: inline-block;
	vertical-align: top;
	border: 1px solid #1b7ee3;
	color: #003658;
	font: 16px/24px "HelveticaNeueETW01-46Lt", sans-serif;
	padding: 7px 30px;
	text-decoration: none;
	position: relative;
	text-align: center;
	top: 1px;
	margin: 0 0 10px;
}

.btn:hover {
	background: #1b7ee3;
	color: #fff;
}

.btn.add {
	letter-spacing: 1px;
}

ol ol {
	margin: 0;
}

ol li {
	padding: 0 0 20px 30px;
}

/*
 ol li:before,
 ol .num {
 text-align: right;
 float: left;
 width: 30px;
 font-size: 18px;
 margin: 1px 0 0 -34px;
 color: #006da5;
 content: counters(item, ".") ".";
 counter-increment: item;
 }
 */

@media (min-width: 768px) {
	.anchor-link {
		padding-top: 240px;
		margin-top: -240px;
	}
}
@media (min-width: 992px) {
	.commentlist-item .commentlist-item {
		padding: 0 0 0 2em;
	}
}

@media only screen and (min-width: 1025px) {
	a[href^=tel], a[href^=skype], a[href^=sms] {
		cursor: default;
		pointer-events: none;
	}
}

@media (max-width: 991px) {
	.navigation .page-numbers, .navigation-comments .page-numbers {
		padding: 0;
	}

	.navigation .next, .navigation .prev, .navigation-comments .next, .navigation-comments .prev {
		padding: .2em;
	}

	.navigation-single .next, .navigation-single .prev {
		padding: .2em;
	}

	.header-info .btn {
		font-size: 15px;
	}

	.nav > li {
		font-size: 16px;
	}

	.nav > li:last-child ul {
		left: auto;
		right: 0;
	}

	.request-block:before {
		right: -1%;
	}

	.request-block p br {
		display: none;
	}

	.posts-holder img {
		margin: 0 10px 0 0;
	}

	.year-list li {
		width: 100%;
		padding: 30px 0;
	}

	.year-list li.left {
		width: 100%;
	}

	.year-list li.left .date {
		float: left;
	}

	.year-list li.left .info {
		margin: 0;
		padding: 0 0 0 13px;
		text-align: left;
	}

	.year-list li.left .info:before {
		right: auto;
		left: -3px;
		border-left: 6px solid transparent;
		border-right: 10px solid #f4f4f4;
	}

	.year-list li.left .img-block {
		float: left;
		margin: -36px 28px -7px -12px;
	}

	.year-list li.right .info {
		margin: 0;
	}

	.year-list li.right .img-block {
		margin: -36px 28px -7px -12px;
	}

	.year-list li.with-img .info {
		padding: 40px 0 40px 13px;
		margin: -40px 0 -40px 90px !important;
	}

	.year-list li.with-img .info:before {
		top: 68px;
	}

	.year-list .info {
		margin: 0;
		min-height: inherit;
	}

	.year-list .info:before {
		top: 28px;
		margin: 0;
	}

	.year-list .info:after {
		display: none;
	}

	.leadership-list .logo-area {
		min-height: 150px;
		max-height: 150px;
		width: 150px;
	}

	.leadership-list .logo-area:after {
		height: 150px;
	}

	.leadership-list .logo-area img {
		margin: 0 10px;
	}

	.slideshow h1 {
		/* 		font-size: 122px; */
		text-align: center;
	}

	.intro-block:before {
		right: -1%;
	}

	.intro-block .images-area {
		margin: 0;
		width: 48%;
	}

	.quality-list li {
		width: 248px;
	}

	.key-markets p br {
		display: none;
	}

	.key-list li {
		padding: 0 10px 20px;
	}

	.services-list .text-block {
		margin: -123px 10px 0;
		padding: 10px;
	}

	.services-list .text-holder {
		font-size: 15px;
		line-height: 20px;
	}

	.services-list .btn {
		min-width: inherit;
	}

	.footer-top .holder {
		padding: 21px 208px 13px 15px;
	}

	.footer-top .title {
		font-size: 18px;
		line-height: 20px;
	}

	.footer-nav li {
		font-size: 13px;
	}

	.links li {
		font-size: 13px;
	}

	.copyright {
		font-size: 13px;
	}

	.association-logos li {
		margin: 0 5px 10px;
	}
}

@media (max-width: 870px) {
	body {
		font-size: 18px;
		line-height: 26px;
	}
	#notice-active #main {
		margin-top: -5px;
	}
	#header {
		padding: 0;
	}

	#main {
		padding-top: 57px;
	}
	.detail-block .logo-holder {
		text-align: left;
	}
	.main-header {
		height: inherit;
		min-height: inherit;
		background: none;
		background: rgba(0, 21, 34, .82)!important;
    	height: 60px!important;
	}

	.main-header:after {
		display: none;
	}

	.main-header .holder {
		padding: 0;
	}

	.logo {
		position: relative;
		width: 94px;
		left: 16px;
		top: 9px;
	}

	.logo:after {
		position: absolute;
		content: "";
		z-index: -1;
		left: -9999px;
		top: -9999px;
		right: -9999px;
		bottom: -4px;
	}

	.nav-active .logo:after {
		background: #002237;
	}

	.nav-slide {
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		height: 100vh;
		padding: 0;
		overflow-y: scroll;
		padding: 57px 0 0;
		opacity: 0;
		visibility: hidden;
		-webkit-transition: opacity .3s linear;
		transition: opacity .3s linear;
	}

	.nav-active .nav-slide {
		visibility: visible;
		opacity: 1;
	}

	.nav-opener {
		display: block;
	}

	.header-info {
		float: none;
		margin: 0;
		max-width: inherit;
		background: #fff;
		padding: 7px 0;
	}

	.header-info .btn {
		font-size: 32px;
		line-height: 38px;
		display: block;
		background: #006da5;
		border-color: #006da5;
		padding: 8px 11px;
		margin: 0 0 7px;
	}

	.header-info .contact-info {
		position: static;
		width: inherit;
	}

	.header-info .contact-info li {
		border: none;
		text-align: center;
		width: 50%;
		font-size: 24px;
		line-height: 30px;
		padding: 0 5px;
		word-spacing: 0;
		letter-spacing: 0;
		text-transform: capitalize;
	}
	
	.header-info .contact-info li.location {
		margin-top: 7px;
	}
	
	.header-info .contact-info li.distributors {
		margin-top: 7px;
	}

	.header-info .contact-info li:first-child {
		padding: 0 5px;
	}

	.header-info .contact-info li .mob {
		display: block;
	}

	.header-info .contact-info li .desktop {
		display: none;
	}

	.header-info .contact-info a {
		display: block;
		background: #002237;
		padding: 4px 2px 6px;
	}

	.header-info .contact-info a:hover {
		color: #006da5;
	}

	.header-info .contact-info a:before {
		display: block;
	}

	.nav-holder {
		background: rgba(0, 109, 165, .95);
		padding: 10px;
	}

	.nav {
		text-align: left;
	}

	.nav > li {
		display: block;
		font-size: 30px;
		line-height: 42px;
		padding: 0;
		margin: 0;
		border-bottom: 1px solid #007bba;
	}

	.nav > li:first-child {
		display: block;
	}

	.nav > li:after {
		display: none;
	}

	.nav > li:hover > a {
		background: none;
		color: #002237;
	}

	.nav > li.hover > a {
		background: none;
		color: #002237;
	}

	.nav > li.hover ul {
		max-height: 600px;
	}

	.nav > li.active > a {
		background: none;
		color: #002237;
	}

	.nav > li.has-drop-down > a {
		color: #fff;
	}

	.nav > li.has-drop-down > a:before {
		content: "\e903";
		font-size: 9px;
		right: 0;
		top: 20px;
	}

	.nav > li.has-drop-down.hover > a:before {
		content: "\e902";
	}

	.nav > li.has-drop-down.active > a {
		color: #002237;
	}

	.nav > li > a {
		padding: 5px 25px 5px 0;
		position: relative;
	}

	.nav > li > a:before {
		/* 		content: "\e901"; */
		position: absolute;
		right: 8px;
		top: 12px;
		font-size: 23px;
	}

	.nav > li ul {
		position: static;
		width: 100%;
	}

	.nav > li li {
		font-size: 22px;
		line-height: 27px;
		border-top: 1px solid #007bba;
	}

	.nav > li li a {
		background: none;
	}

	.sub-nav {
		display: block;
		position: static;
		text-align: left;
		width: inherit;
	}

	.sub-nav > li {
		border-bottom: 1px solid #007bba;
		display: block;
		font-size: 30px;
		line-height: 42px;
		margin: 0;
		padding: 0;
	}

	.sub-nav > li:after {
		display: none;
	}

	.sub-nav > li:hover > a {
		background: none;
		color: #002237;
	}

	.sub-nav > li.hover > a {
		background: none;
		color: #002237;
	}

	.sub-nav > li.hover ul {
		max-height: 600px;
	}

	.sub-nav > li.active > a {
		background: none;
		color: #002237;
	}

	.sub-nav > li.has-drop-down > a {
		color: #fff;
	}

	.sub-nav > li.has-drop-down > a:before {
		content: "\e903";
		font-size: 9px;
		right: 0;
		top: 20px;
	}

	.sub-nav > li.has-drop-down.hover > a:before {
		content: "\e902";
	}

	.sub-nav > li.has-drop-down.active > a {
		color: #002237;
	}

	.sub-nav > li > a {
		padding: 5px 25px 5px 0;
		position: relative;
	}

	.sub-nav > li > a:before {
		/* 		content: "\e901"; */
		position: absolute;
		right: 8px;
		top: 12px;
		font-size: 23px;
	}

	.sub-nav > li ul {
		position: static;
		width: 100%;
	}

	.sub-nav > li li {
		font-size: 22px;
		line-height: 27px;
		border-top: 1px solid #007bba;
	}

	.sub-nav > li li a {
		background: none;
	}

	.visual {
		margin: 0 0 27px;
	}

	.content {
		padding: 0 25px 20px;
	}

	.heading {
		margin: 0 0 23px;
	}

	.heading h1 {
		padding: 0 0 27px;
		font-size: 54px;
		line-height: 56px;
	}

	.heading .text {
		font-size: 28px;
		text-transform: capitalize;
	}

	.heading.recru {
		padding: 0 0 26px;
		margin: 0 0 16px;
	}

	.heading.recru h1 {
		margin: 0 0 8px;
	}

	.heading.facili {
		margin: 0 0 16px;
		padding: 0 0 22px;
	}

	.heading.facili .text {
		font-size: 28px;
		line-height: 33px;
	}

	.heading.about {
		margin: 0 0 12px;
		padding: 0 0 21px;
	}

	.heading.about .text {
		line-height: 34px;
	}

	.heading.about h1 {
		padding: 0 0 6px;
	}

	.market-block {
		padding: 2px 0 0;
	}

	.market-block h2 {
		font-size: 46px;
		line-height: 55px;
		padding: 0 0 20px;
		margin: 0 0 16px;
	}

	.market-block p {
		margin: 0 0 13px;
	}

	.market-block .list {
		padding: 0 0 0 12px;
	}

	.resource-block {
		padding: 57px 0 26px;
	}

	.resource-block h1 {
		font-size: 54px;
		line-height: 56px;
		margin: 0 0 23px;
	}

	.resource-block p {
		margin: 0 0 20px;
	}

	.resource-block .list {
		padding: 0 0 0 6px;
	}

	.resource-block .list li {
		font-size: 24px;
		line-height: 29px;
	}

	.resource-block .list li span {
		top: 5px;
	}

	.product-gallery:before {
		width: 54.5%;
	}

	.product-gallery .holder {
		padding: 53px 5px 89px;
	}

	.product-gallery h1 {
		font-size: 54px;
		line-height: 56px;
		margin: 0 0 23px;
		padding: 0 0 39px;
	}

	.product-gallery p {
		margin: 0 0 21px;
	}

	.product-list {
		margin: 0 -8px;
	}

	.product-list li {
		width: 154px;
		padding: 0;
		margin: 0 2px 8px;
	}

	.request-block {
		z-index: 14;
	}

	.request-block:before {
		width: 52.5%;
	}

	.request-block .holder {
		padding: 34px 10px 41px;
	}

	.request-block h1 {
		font-size: 54px;
		line-height: 56px;
	}

	.request-block p {
		margin: 0 0 22px;
	}

	.request-block .btn-request {
		display: block;
		margin: 0 -8px;
		padding: 13px 36px 13px 6px;
	}

	.request-block .btn-request:after {
		right: 12px;
	}

	.benefit-block {
		padding: 20px 0 11px;
	}

	.benefit-block h1 {
		font-size: 46px;
		line-height: 46px;
		text-transform: none;
		padding: 0 0 18px;
		margin: 0 0 16px;
	}

	.benefit-block p {
		margin: 0 0 14px;
	}

	.list-style {
		padding: 0 0 0 18px;
	}

	.numbe-list-style {
		padding: 0 0 0 18px;
	}

	.explor-block {
		padding: 0 0 40px;
	}

	.explor-block h1 {
		font-size: 54px;
		line-height: 56px;
		padding: 0 0 26px;
		margin: 0 0 20px;
	}

	.accordion > li {
		padding: 12px 0;
	}

	.accordion .slide {
		padding: 17px 5px 32px 14px;
		line-height: 27px;
	}

	.accordion .slide h2 {
		font-size: 26px;
		margin: -5px 0 14px;
	}

	.accordion .list-style {
		margin: 0 0 5px;
	}

	.accordion .text {
		margin: 0 0 13px;
	}

	.accordion .btn {
		padding: 12px 30px;
		display: block;
		margin: 0 -7px;
	}

	.testimonial {
		padding: 30px 0 82px;
		font-size: 16px;
		line-height: 24px;
	}

	.testimonial .ico {
		font-size: 175px;
		margin: 0 0 -55px;
	}

	.testimonial h2 {
		font-size: 26px;
		margin: 0 0 14px;
	}

	.facilties {
		padding: 0;
		margin: 0 0 -27px;
	}

	.facilties h2 {
		letter-spacing: 0;
	}

	.facilties p {
		margin: 0 0 32px;
	}

	.facilties .btn {
		min-width: 224px;
		padding: 10px 30px;
	}

	.facilties .post p + p {
		margin: 0 0 19px;
	}

	.facilties .contact-info {
		float: none;
		padding: 0;
		width: inherit;
	}

	.recent-blog {
		padding: 0 0 43px;
	}

	.sort-panel {
		margin: -18px 0 0;
		padding: 3px 0 44px;
	}

	.sort-panel .label {
		float: left;
		display: block;
		max-width: inherit;
	}

	.sort-drop > a {
		padding: 12px 43px 12px 7px;
	}

	.detail-block .logo-holder {
		display: block;
		float: none;
		width: inherit;
		width: inherit;
		min-width: inherit;
		min-height: 160px;
		margin: 0 0 25px;
	}

	.detail-block .logo-holder:after {
		height: 160px;
	}

	.detail-block .logo-holder img {
		max-width: 87%;
	}

	.detail-block .info .btn {
		padding: 9px 19px;
	}

	.posts-holder {
		padding: 15px 0 0;
	}

	.posts-holder .post {
		padding: 0 0 50px;
	}

	.posts-holder img {
		float: none;
		margin: 0 0 15px;
		width: inherit;
		width: 100%;
	}

	.throughtout-block {
		padding: 0 0 73px;
	}

	.throughtout-block h1 {
		font-size: 46px;
		line-height: 54px;
		padding: 0 0 10px;
		margin: 0 0 27px;
	}

	.year-list {
		padding: 0;
		margin: 0 -5px 0 0;
	}

	.year-list li {
		padding: 18px 0;
	}

	.year-list li.with-img .date {
		margin: 11px 7px 0 0 !important;
	}

	.year-list li.with-img .info {
		margin: -40px 0 -40px 86px !important;
		padding: 53px 0 40px 13px !important;
	}

	.year-list .date {
		margin: 0 7px 0 0;
	}

	.year-list .comment-block {
		padding: 13px 5px 13px 14px;
		font-size: 16px;
		line-height: 24px;
	}

	.year-list .comment-block .img-block {
		float: none !important;
		width: 94px;
		display: block;
		margin: -47px 0 8px !important;
	}

	.year-list .comment-block .img-block .link {
		margin: 0 -1px;
	}

	.leadership-block {
		padding: 0 0 27px;
	}

	.leadership-list li {
		float: none;
		width: inherit;
		padding: 0 0 21px;
	}

	.leadership-list .logo-area {
		width: 214px;
		height: 254px !important;
		max-height: inherit;
		float: none;
		margin: 0 0 10px;
	}

	.leadership-list .logo-area:after {
		height: 254px;
	}

	.leadership-list .info {
		height: auto !important;
	}

	.leadership-list .text-holder {
		min-height: inherit;
	}

	.leadership-list p {
		margin: 0;
	}

	.controls-block:before {
		width: 54.5%;
	}

	.controls-block .holder {
		padding: 52px 10px 85px;
	}

	.controls-block h1 {
		font-size: 54px;
		line-height: 56px;
		margin: 0 0 37px;
		padding: 0 0 28px;
	}

	.controls-list li {
		width: 265px;
		padding: 0 10px 18px;
	}

	.controls-list .title {
		margin: 8px 0;
	}

	.controls-list .link {
		padding: 12px 10px;
		min-width: 190px;
	}

	.slideshow .slide {
		min-height: 370px;
	}

	.slideshow .slide .holder {
		padding: 88px 13px 50px;
	}

	.slideshow .title {
		font-size: 24px;
		line-height: 30px;
		letter-spacing: 2px;
		padding: 0 0 0 5px;
		margin: 0 0 8px;
	}

	.slideshow h1 {
		/* 		text-align: left; */
		font-size: 68px;
		line-height: 68px;
		padding: 0;
		text-indent: 0;
		letter-spacing: 0;
	}

	.slideshow h1 br {
		display: none;
	}

	.slideshow .btn {
		font-size: 19px;
		padding: 10px;
		min-width: 150px;
	}

	.slideshow .btn-holder {
		margin: -34px 0 0;
	}

	.slideshow .btn-holder .btn-frame {
		padding: 0 1px;
	}

	.slideshow .btn-prev, .slideshow .btn-next {
		font-size: 20px;
		line-height: 26px;
	}

	.intro-block {
		background: #006da5;
	}

	.intro-block:after {
		left: -.3%;
		background: #006da5;
	}

	.intro-block:before {
		background: #006da5;
	}

	.intro-block .holder {
		padding: 0;
	}

	.intro-block .intro {
		background: none;
		width: inherit;
		float: none;
		margin: 0;
		padding: 2px 5px 59px;
	}

	.intro-block .intro p {
		margin: 0 0 26px;
	}

	.intro-block .sub-heading {
		margin: 0 0 26px;
		padding: 0 0 18px;
	}

	.intro-block .sub-heading h1 {
		font-size: 54px;
		line-height: 56px;
	}

	.intro-block .sub-heading .text {
		font-size: 28px;
		line-height: 33px;
	}

	.intro-block .text-area {
		max-width: inherit;
	}

	.intro-block .images-area {
		display: none;
	}

	.quality-product {
		position: relative;
		z-index: 9;
	}

	.quality-product:after {
		left: -9px;
	}

	.quality-product:before {
		right: -9px;
		width: 54.5%;
	}

	.quality-product .holder {
		padding: 29px 5px 82px;
	}

	.quality-product h1 {
		font-size: 54px;
		line-height: 56px;
		padding: 0 0 17px;
		margin: 0 0 23px;
	}

	.quality-product p {
		margin: 0 0 41px;
	}

	.quality-list {
		margin: 0 -7px;
	}

	.quality-list li {
		width: 160px;
		padding: 0 7px 14px;
	}

	.quality-list li img {
		margin: 0 0 4px;
	}

	.quality-list li span {
		font-size: 20px;
		line-height: 25px;
	}

	.key-markets {
		z-index: 10;
	}

	.key-markets:after {
		width: 54.5%;
	}

	.key-markets:before {
		width: 54.5%;
	}

	.key-markets .holder {
		padding: 39px 5px 59px;
	}

	.key-markets p {
		margin: 0 0 26px;
	}

	.key-list li {
		width: 148px;
	}

	.services-block {
		z-index: 12;
	}

	.services-block:after {
		width: 54.5%;
	}

	.services-block:before {
		width: 54.5%;
	}

	.services-block .holder {
		padding: 36px 0 48px;
	}

	.services-list li {
		display: block;
		width: 100%;
		padding: 0 5px 15px;
	}

	.services-list .text-block {
		margin: -58px 10px 0;
		padding: 19px;
	}

	.services-list .text-holder {
		font-size: 16px;
		line-height: 24px;
		height: auto !important;
		margin: 0 auto 18px;
		max-width: inherit;
	}

	.services-list .btn {
		font-size: 19px;
		line-height: 23px;
		padding: 10px 30px;
		min-width: 180px;
	}

	.services-list h2 {
		margin: 0 0 10px;
	}

	.footer-top .holder {
		padding: 25px 3px 15px;
		text-align: center;
	}

	.footer-top .title {
		font-size: 20px;
		line-height: 25px;
		margin: 0 0 1px;
	}

	.footer-top .title:after {
		display: none;
	}

	.contect-info {
		position: static;
		letter-spacing: -.32em;
		margin: 0 -2px 21px;
		max-width: inherit;
	}

	.contect-info li {
		display: block;
		vertical-align: top;
		letter-spacing: normal;
		width: 50%;
		padding: 0 4px;
		margin: 7px auto;
	}

	.contect-info a {
		display: block;
		padding: 8px 2px 7px;
		border: 1px solid #006da5;
	}

	.contect-info li.linkedin a:before {
		content: '';
		background: url('images/linkedin.png');
		background-repeat: no-repeat;
		background-position: 50% 0px;
		padding-top: 5px;
		display: block;
		width: 100%;
		height: 30px;
	}
	
	.contect-info li.distributors a:before {
		content: '';
		display: block;
		width: 100%;
		height: 30px;
	}

	.contect-info a:before {
		position: static;
		display: block;
		margin: 0 0 6px;
		line-height: 25px;
		line-height: 28px;
	}

	.footer-nav {
		display: none;
	}

	.links {
		display: block;
		line-height: 0;
	}

	.links li {
		font-size: 14px;
	}

	.copyright {
		display: block;
		font-size: 14px;
	}

	.association-logos {
		padding: 15px 0 13px;
		margin: 0 -23px;
	}

	.association-logos li {
		margin: 0 10px 4px;
	}

	.association-logos li.item {
		width: 76px;
	}

	.association-logos li.item01 {
		width: 43px;
	}

	.association-logos li.item02 {
		width: 45px;
	}

	.association-logos li.item03 {
		width: 60px;
	}

	.association-logos li.item04 {
		width: 33px;
	}

	.association-logos li.item05 {
		width: 53px;
	}

	.association-logos li.item06 {
		width: 80px;
	}

	.btn.add {
		display: block;
		margin: 0 -8px 10px;
		padding: 12px 10px;
		top: -3px;
	}
	
	.contect-info li.tel:before {
		content: "";
	}
	
	.contect-info li.tel a {
		margin-top: 7px;
	}
	
	.contect-info li.tel a:before {
		content: "\e906";
	}
}
.static-header {
    position: fixed;
    z-index: 999;
    width: 100%;
}
.notice {
	min-height: 32px;
	width: 100%;
	color: rgb(0, 21, 34);
	background: rgb(255,255,51);
	z-index: 1500;
	position:relative;
	font-size: 0.85rem;
}
@media (min-width: 798px) {
	.notice {
		line-height: 32px;
	}
}

.notice a {
	float: right;
	color: inherit;
	text-decoration: none;
}

.notice .holder {
	max-width: 1030px;
	margin: auto;
	padding: 0 15px;
}

.notice strong {
	text-transform: uppercase;
}

/* 
 * If you're using the notice decalred above, you'll need to increase the total
 * padding for the main header as well (normally 32px, must be 64 with a notice.)
 */
/* @media (min-width: 798px) { */
/* 	#header { */
/* 		margin-top: 32px; */
/* 	} */
/* 	#main { */
/* 		margin-top: 32px; */
/* 	} */
/* } */
/* @media (max-width: 798px) { */
/* 	#header { */
/* 		margin-top: 54px; */
/* 	} */
/* 	#main { */
/* 		margin-top: 54px; */
/* 	} */
/* } */
/* @media (max-width: 425px) { */
/* 	#header { */
/* 		margin-top: 78px; */
/* 	} */
/* 	#main { */
/* 		margin-top: 78px; */
/* 	} */
/* } */
