/*! 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;
	color: #000;
	font: 300 16px/1.45 'Open Sans', Arial, "Helvetica Neue", Helvetica, sans-serif;
	background-color: #ecebe9;
}

/* 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 {
  -webkit-transition: color .3s ease-in-out, background .3s ease-in-out;
  transition: color .3s ease-in-out, background .3s ease-in-out;
  text-decoration: none;
}

/**
 * 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 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;
	max-width: 100%;
}

/**
 * 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;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #bd202e;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #bd202e;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #bd202e;
}
:-moz-placeholder { /* Firefox 18- */
  color: #bd202e;
}

.date-list,
.main-members,
.member-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */

.swiper-container {
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0; /* Fix of Webkit flickering */
	z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
	float: left;
}

.swiper-container-vertical > .swiper-wrapper {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.swiper-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
	-webkit-transform: translate3d(0px, 0, 0);
	transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

/* Auto Height */

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-transition-property: height, -webkit-transform;
	transition-property: height, -webkit-transform;
	transition-property: transform, height;
	transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */

.swiper-container-3d {
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, 0)));
	background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
	-ms-touch-action: pan-y;
	touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
	-ms-touch-action: pan-x;
	touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
	position: absolute;
	top: 50%;
	width: 27px;
	height: 44px;
	margin-top: -22px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background-position: center;
	background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	left: 10px;
	right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
	right: 10px;
	left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	-webkit-transition: 300ms opacity;
	transition: 300ms opacity;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

/* Common Styles */

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
	bottom: 10px;
	left: 0;
	width: 100%;
}

/* Bullets */

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	-webkit-transform: scale(.66);
	-ms-transform: scale(.66);
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	-webkit-transform: scale(.33);
	-ms-transform: scale(.33);
	transform: scale(.33);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	-webkit-transform: translate3d(0px, -50%, 0);
	transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	-webkit-transition: 200ms top, 200ms -webkit-transform;
	transition: 200ms top, 200ms -webkit-transform;
	transition: 200ms transform, 200ms top;
	transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: 200ms left, 200ms -webkit-transform;
	transition: 200ms left, 200ms -webkit-transform;
	transition: 200ms transform, 200ms left;
	transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	-webkit-transition: 200ms right, 200ms -webkit-transform;
	transition: 200ms right, 200ms -webkit-transform;
	transition: 200ms transform, 200ms right;
	transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #007aff;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	-webkit-transform-origin: right top;
	-ms-transform-origin: right top;
	transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
	background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
	background: rgba(255, 255, 255, .25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
	background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
	background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
	background: rgba(0, 0, 0, .25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
	background: #000;
}

.swiper-pagination-lock {
	display: none;
}

/* Scrollbar */

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1);
}

.swiper-container-horizontal > .swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-scrollbar-cursor-drag {
	cursor: move;
}

.swiper-scrollbar-lock {
	display: none;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-slide-zoomed {
	cursor: move;
}

/* Preloader */

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	-webkit-transform-origin: 50%;
	-ms-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
	animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
	background-position: 50%;
	background-size: 100%;
	background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

/* a11y */

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	-webkit-transform-origin: 0 0;
	-ms-transform-origin: 0 0;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	-webkit-transform-origin: 100% 0;
	-ms-transform-origin: 100% 0;
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	filter: blur(50px);
	z-index: 0;
}

.swiper-container-flip {
	overflow: visible;
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
	/* Windows 8 IE 10 fix */
	-ms-perspective: 1200px;
}

.resize-active *,
.resize-active *:before,
.resize-active *:after {
	-webkit-transition: none !important;
	transition: none !important;
}

@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?sjgx8m');
  src:  url('../fonts/icomoon.eot?sjgx8m#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?sjgx8m') format('truetype'),
    url('../fonts/icomoon.woff?sjgx8m') format('woff'),
    url('../fonts/icomoon.svg?sjgx8m#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"],
.fancybox-prev span,
.fancybox-next span {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  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-arrow-up:before {
  content: "\e900";
}
.icon-arrow-right:before {
  content: "\e901";
}
.icon-arrow-left:before {
  content: "\e902";
}
.icon-arrow-down:before {
  content: "\e903";
}


.clearfix:after,
.intro-video:after,
#mission-section:after,
#service-section:after,
#member-section:after,
#list-section:after,
#news-section:after,
#photo-section:after
 {
	content: "";
	display: block;
	clear: both;
}

#mission-section,
#service-section,
#member-section,
#list-bg,
#list-section,
#news-section,
#photo-section,
#footer-block
 {
	background-color: #ecebe9;
}


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9020;
}

.fancybox-skin {
	position: relative;
	background: #f9f9f9;
	color: #444;
	text-shadow: none;
	border-radius: 4px;
}

.fancybox-opened {
	z-index: 9030;
}

.fancybox-opened .fancybox-skin {
	box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
}

.fancybox-outer,
.fancybox-inner {
	position: relative;
	background: #fff;
}

.fancybox-inner {
	overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
	-webkit-overflow-scrolling: touch;
}

.fancybox-error {
	color: #444;
	font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	margin: 0;
	padding: 15px;
	white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
	display: block;
	width: 100%;
	height: 100%;
}

.fancybox-image {
	max-width: 100%;
	max-height: 100%;
}

#fancybox-loading,
.fancybox-close {
	background-image: url("../../images/fancybox/fancybox_sprite.png");
}

.fancybox-prev span:before {
	content: "\e902";
	color:#fff;
	font-size: 54px;
}

.fancybox-next span:before {
	content: "\e901";
	color:#fff;
	font-size: 54px;
}


#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -22px;
	margin-left: -22px;
	background-position: 0 -108px;
	opacity: .8;
	cursor: pointer;
	z-index: 9060;
}

#fancybox-loading div {
	width: 44px;
	height: 44px;
	background: url("../../images/fancybox/fancybox_loading.gif") center center no-repeat;
}

.fancybox-close {
	position: absolute;
	top: -18px;
	right: -18px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 9040;
}

.fancybox-nav {
	position: absolute;
	top: 0;
	width: 40%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url("../../images/fancybox/blank.gif"); /* helps IE */
	-webkit-tap-highlight-color: transparent;
	z-index: 9040;
}

.fancybox-prev {
	left: 0;
}

.fancybox-next {
	right: 0;
}

.fancybox-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	z-index: 9040;
	visibility: hidden;
}

.fancybox-prev span {
	left: 0px;
	background-position: 0 -36px;
}

.fancybox-next span {
	right: 15px;
	background-position: 0 -72px;
}

.fancybox-nav:hover span {
	visibility: visible;
}

.fancybox-tmp {
	position: absolute;
	top: -99999px;
	left: -99999px;
	visibility: hidden;
	max-width: 99999px;
	max-height: 99999px;
	overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
	overflow: hidden !important;
	width: auto;
}

.fancybox-lock body {
	overflow: hidden !important;
}

.fancybox-lock-test {
	overflow-y: hidden !important;
}

.fancybox-overlay {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	display: none;
	z-index: 9010;
	background: url("../../images/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
	position: fixed;
	bottom: 0;
	right: 0;
}

.fancybox-lock .fancybox-overlay {
	overflow: auto;
	overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
	visibility: hidden;
	font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
	position: relative;
	text-shadow: none;
	z-index: 9050;
}

.fancybox-opened .fancybox-title {
	visibility: visible;
}

.fancybox-title-float-wrap {
	position: absolute;
	bottom: 0;
	right: 50%;
	margin-bottom: -35px;
	z-index: 9050;
	text-align: center;
}

.fancybox-title-float-wrap .child {
	display: inline-block;
	margin-right: -100%;
	padding: 2px 20px;
	background: transparent; /* Fallback for web browsers that doesn't support RGBa */
	background: rgba(0, 0, 0, .8);
	border-radius: 15px;
	text-shadow: 0 1px 2px #222;
	color: #fff;
	font-weight: bold;
	line-height: 24px;
	white-space: nowrap;
}

.fancybox-title-outside-wrap {
	position: relative;
	margin-top: 10px;
	color: #fff;
}

.fancybox-title-inside-wrap {
	padding-top: 10px;
}

.fancybox-title-over-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	padding: 10px;
	background: #000;
	background: rgba(0, 0, 0, .8);
}

.fancybox-skin {
	padding: 8px !important;
	background: #bd202e;
}

.fancybox-skin .fancybox-close {
	background: #fff;
	border-radius: 50%;
	border: 3px solid #bd202e;
}

.fancybox-skin .fancybox-close:hover:before,
.fancybox-skin .fancybox-close:hover:after {
	background: #bd202e;
}

.fancybox-skin .fancybox-close:before,
.fancybox-skin .fancybox-close:after {
	-webkit-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
	content: "";
	position: absolute;
	width: 3px;
	height: 70%;
	background: #bd202e;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.fancybox-skin .fancybox-close:after {
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

/*Retina graphics!*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	display: block;
	font-weight: 700;
	margin: 0 0 .5em;
	color:#161f41;
	text-transform: none;
	font-family: "Playfair Display", "Times", serif;
}

a {
	color: #bd202e;
}

a:hover {
	color: #83151f;
}

h1,
.h1 {
	font-size: 60px;
	text-align: left;
	margin: 0 0 30px;
	position:relative;
}


h2,
.h2 {
	font-size: 27px;
}

h3,
.h3 {
	font-size: 24px;
}

.social-networks {
	font-size: 36px;
}

.social-networks a {
	padding-right: 10px;
}

.social-networks a:hover {
	color: #bd202e;
}

#main {
	position: relative;
	overflow: hidden;
}

#main .logo {
	float: left;
	position: absolute;
	width: 300px;
	padding: 15px 0 0 30px;
	z-index: 99;
}

.holder {
	max-width: 1100px;
	padding: 0 20px;
	margin: 0 auto;
}

.holder:after {
  content: '';
  display: block;
  clear: both; 
}

#wrapper {
	width: 100%;
	position: relative;
	z-index: 10;
}

#wrapper.pop-active {
	-webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
}

.wrap2 {
	overflow: hidden;
}

#header {
	position: fixed;
	width: 100%;
	min-height: 125px;
	z-index: 9999;
}

#header .clone-holder {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	visibility: hidden;
	width: 100%;
}

#header.fixed-position .clone-holder {
	position: static;
}

#header.fixed-position .holder {
	padding: 0;
}

#header.fixed-position .orig-box {
	position: fixed;
	top: -140px;
	min-height: 85px;
	left: 0;
	right: 0;
	z-index: 99999;
	-webkit-transition: top 500ms ease;
	transition: top 500ms ease;
	background: #151e41;
}

#header.fixed-position .orig-box .logo-banner-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: inline-block;
  zoom: 1;
  width: 100%;
  text-align: center;
  vertical-align: top;
}

#header.fixed-position .orig-box .mini-logo {
	padding: 5px;
}

#header .holder {
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 15px 0px;
}

#header .logo-banner-wrap {
	display: none;
}

.nav-drop {
	position: fixed;
	background: #151e41;
	top: 0;
	bottom: 0;
	padding-top: 84px;
	right: -290px;
	width: 290px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	float: right;
	z-index: 99;
}

.nav-drop h1 {
	text-align:center;
}

#nav {
	position: relative;
	border-top: 1px solid #bd202e;
}

#nav .texture-handler {
	left: 0;
  right: 0px;
  top: -10px;
}

#nav .texture.top-texture {
	background-position: 100% 0%;
    background-size: 200%;
}

#nav a {
	display: block;
	color: #fff;
	font-size: 1.1em;
	font-weight: 300;
	border-bottom: 1px solid #bd202e;
	padding: 1em;
}

#nav a:hover {
	background: #bd202e;
}

.nav-opener {
  display: inline-block;
  position:fixed;
  right:25px;
  z-index:999;
  top: 26px;
  width:30px;
  height:30px;
}

.nav-opener .menu-icon, 
.nav-opener .menu-icon:after, 
.nav-opener .menu-icon:before {
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 30px;
  background: #fff;
}

.nav-opener .menu-icon {
  margin-right: 5px;
  margin-top: -3px;
  border-radius: 2px;
  background: #fff;
  top: 50%;
  -moz-transition: background .3s .3s;
  -o-transition: background .3s .3s;
  -webkit-transition: background .3s;
  -webkit-transition-delay: .3s;
  -webkit-transition: background .3s .3s;
  -o-transition: background .3s .3s;
  transition: background .3s .3s;
}

.nav-opener .menu-icon:before {
   top: -7px;
}

.nav-opener .menu-icon:after {
    top: 7px;
}

.nav-opener .menu-icon:after, 
.nav-opener .menu-icon:before {
    border-radius: 2px;
    background: #fff;
}

.nav-opener .menu-icon:after, 
.nav-opener .menu-icon:before {
    content: '';
    right: 0;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -o-transition: -o-transform .3s .3s;
    -webkit-transition: -webkit-transform .3s;
    -webkit-transition-delay: .3s;
    -webkit-transition: -webkit-transform .3s .3s;
    -o-transition: -o-transform .3s .3s;
    transition: transform .3s .3s;
}

.nav-active .nav-opener .menu-icon:before {
    -ms-transform: translateX(5px) translateY(-2px) rotate(50deg);
    -webkit-transform: translateX(5px) translateY(-2px) rotate(50deg);
    -o-transform: translateX(5px) translateY(-2px) rotate(50deg);
    transform: translateX(5px) translateY(-2px) rotate(50deg);
}

.nav-active .nav-opener .menu-icon:after {
    -ms-transform: translateX(4px) translateY(7px) rotate(-50deg);
    -webkit-transform: translateX(4px) translateY(7px) rotate(-50deg);
    -o-transform: translateX(4px) translateY(7px) rotate(-50deg);
    transform: translateX(4px) translateY(7px) rotate(-50deg);
}

.nav-active .nav-opener .menu-icon {
    background: transparent;
}

.side-push {
	overflow: hidden;
	position: relative;
}

.side-push.nav-active .nav-drop {
	right: 0;
	padding-top: 84px;
}

.left-caption,
.right-caption {
	color: #161f41;
	font-size: 14px;
	line-height: 24px;
}

.left-caption {
	position: absolute;
	border-left: 6px solid #bd202e;
  padding-left: 30px;
}

.right-caption {
	position: absolute;
	border-right: 6px solid #bd202e;
  padding-right: 30px;
}

.vertical-headline h1:before {
	height: 110px;
	width: 1px;
	content: "";
	background: #161f41;
	position: absolute;
	left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.vertical-headline h1:after {
	height: 110px;
	width: 1px;
	content: "";
	background: #161f41;
	position: absolute;
	left: 50%;
  bottom: -35px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.vertical-headline h1 {
	text-align: center;
	position:relative;
	line-height: 40px;
	padding: 110px 0;
}

.vertical-headline span {
	font-family: "Open Sans", Arial, sans-serif;
	font-size: 22px;
	line-height: 32px;
	padding-top: 15px;
	margin: 0;
	display:block;
	text-transform: uppercase;
	font-weight: 400;
}

.intro-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: -1;
  padding: 0; 
}

.intro-video:after {
  content: "";
  display: block;
  width: 0;
  min-height: 710px; 
  z-index: -1;
}

.intro-video .video-holder {
  position: absolute;
  top: 0;
  left: -5px;
  right: -5px;
  bottom: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1; 
}

.intro-video .video-holder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.25);
}

.intro-video .video-holder .bg-video {
  -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%; 
  z-index: -99;
}
.touch-device .intro-video .video-holder .bg-video {
  display: none !important; 
}
.intro-video .video-active .bg-video {
	opacity: 1; 
}

.intro-video .banner-wrap {
	position:absolute;
	padding: 0px 20px;
	box-sizing: border-box;
	width: 100%;
	top: 50%;
	left: 50%;
	z-index: 99;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
}

.intro-video .banner-wrap {
	max-width: 1000px;
}

#mission-section {
	position:relative;
	padding: 40px 0 0;
}

#mission-section h1 {
	color: #fff;
}

#mission-section .left-caption {
	position: relative;
	bottom: 0;
	margin-top: 15px;
	margin-bottom: 15px;
}

#mission-section .holder {
	position: relative;
}

#mission-section .left-block {
    font-size: 14px;
    line-height: 30px;
    padding: 50px 30px;
    position: relative;
    z-index: 1002;
    background: #161f41;
    color: #fff;
}

#mission-section .image-block {
	float:none;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	min-height:350px;
	width: 100%;
	max-width: 500px;
	display:block;
	margin: 0 auto;
}

#service-section {
	background-image: url(../images/soldiers.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}

#service-section .content-wrap {
	display: none;
}

.content-div {
	padding: 30px;
}

.content-div img {
	display:none;
}

.content-div .service-web {
  margin: 0 auto;
  display: block;
  background: #bd202e;
  text-align: center;
  max-width: 250px;
  padding: 10px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  text-decoration: none;
}

.content-div .service-web:hover {
	background: #83151f;
}

.content-div a {
	text-decoration: underline;
}

#service-section .logos {
	text-align:center;
	padding: 40px 0 170px;
}

#service-section .service-logo {
  width: 49%;
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
}

#service-section .service-logo:hover {
	transform: scale(1.1);
  transition: all ease 500ms;
}

#service-section .service-logo img {
	max-width: 200px;
	width: 100%;
}

#member-section:before {
	width: 100%;
	min-height: 500px;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background-image: url(../images/member-bg.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 100%;
}

#member-section {
	padding: 40px 0 0;
	position: relative;
}

#member-section .holder {
	position: relative;
}

#member-section h1 {
	margin: 20px 0 30px;
	display: inline-block;
}

#member-section .right-caption,
#member-section .left-caption {
	position: relative;
}

#member-section .member-blurb {
	position: relative;
	z-index: 1;
	width: 100%;
	right: 0;
	color: #666;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: .08em;
}

#member-section .chair-name {
	display: block;
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
}

#member-section .member-list {
  position: relative;
}

.member-list li:first-child {
    position: relative;
}

.member-list li:last-child {
    margin-bottom: 0;
}

.member-item .img-holder {
	max-width: 250px;
	width: 100%;
	margin: 0 auto;
}

#list-bg {
	background-image: url(../images/helicopter.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 50% 100%;
	position: relative;
	min-height: 300px;
}

#list-bg .title {
	text-align:center;
	padding: 200px 0;
}

#list-bg:after {
	content: "";
	-webkit-box-shadow: 0 54px 85px -50px #000000;
	   -moz-box-shadow: 0 54px 85px -50px #000000;
	        box-shadow: 0 54px 85px -50px #000000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
}

#list-section .content-hold {
	width: 100%;
	background: #fff;
	padding: 40px 20px;
	position: relative;
	text-align:center;
	display: table;
	z-index: 999;
	box-sizing: border-box;
}

#list-section .content-hold h1 {
	color: #bd202e;
	text-align: center;
	font-size: 46px;
	line-height: 46px;
}

#list-section .content-hold h1 span {
	font-family: "Open Sans", Arial, sans-serif;
	margin: 0;
	display:block;
	text-transform: uppercase;
	font-weight: 400;
	color: #bd202e;
	text-align: center;
	font-size: 22px;
	line-height: 22px;
}

#list-section .content-hold a {
	color: #666;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: .04em;
}

#list-section .content-hold a:hover {
	color: #bd202e;
}

.main-members {
    -moz-column-count: 2;
    -moz-column-gap: 10px;
    -webkit-column-count: 2;
    -webkit-column-gap: 10px;
    column-count: 2;
    column-gap: 10px;
    text-align:left;
}

.main-members li {
	display: none;
}

#loadMore,
#loadLess {
  background: #bd202e;
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  max-width: 250px;
  margin: 40px auto 20px;
  font-weight: 600;
  font-size: 15px;
}

#loadMore:hover,
#loadLess:hover {
	background: #83151f;
	cursor: pointer;
}

.main-members .more-btn {
	display: block;
}

#news-section {
	min-height: 500px;
	background-image: url(../images/desert-bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	padding: 0 0 60px;
}

#news-section .vertical-headline h1 {
	left: 0;
}

.news-card {
	background: #fff;
	padding: 41px 38px 64px;
	box-shadow: 0 30px 50px 0 rgba(40, 42, 46, .1);
	position: relative;
	z-index: 1;
}

.date-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #6d6d6d;
  line-height: 1;
  margin: 20px 0;
  font-size: 14px;
  letter-spacing: 0;
}

.date-list time {
  padding: 0 10px 0 0;
  margin: 0 10px 0 0;
  position: relative;
}

.date-list time:after {
  content: "";
  width: 1px;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.slick-current .news-card:after {
	opacity: 0;
	visibility: hidden;
}

.swiper-slide-active .news-card:after {
	opacity: 0;
	visibility: hidden;
}

.swiper-slide-active .news-card:before {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

.news-card .read-more {
	position: absolute;
	bottom: 25px;
	border: 1px solid #bd202e;
	-webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
	padding: 6px 10px;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
}

.news-card .read-more:hover {
	background: #bd202e;
	color: #fff;
}

.news-title {
	display: block;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	font-family: "Playfair Display", "Times", serif;
	margin-bottom: 14px;
}

.swiper-container {
	padding-bottom: 70px;
	margin-bottom: 15px;
}

.swiper-container .swiper-slide {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	opacity: 0;
	visibility: hidden;
}

.swiper-container .swiper-slide:not(.active) {
	opacity: 0 !important;
}

.swiper-container .swiper-slide.swiper-slide-active {
	opacity: 1 !important;
	visibility: visible;
}

.swiper-holder {
	margin: 0 auto;
	position: relative;
	list-style: none;
	padding: 0;
	max-width: 770px;
	margin: 0 auto;
	overflow: visible;
	z-index: 1;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	bottom: 25px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	cursor: pointer;
}

.swiper-button-prev,
.swiper-button-next {
	width: 32px;
	height: 32px;
	-webkit-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
	position: absolute;
	top: 50%;
	left: -15px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #151e41;
	border: 0;
	border-radius: 50%;
	padding: 0;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	outline: none;
	display: inline-block;
	z-index: 10;
}

.swiper-button-prev span[class^="icon-"],
.swiper-button-next span[class^="icon-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
	background: #bd202e;
}

.swiper-button-next {
	left: auto;
	right: -15px;
}

.swiper-pagination-bullet {
	width: 11px;
	height: 11px;
	-webkit-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(40, 42, 46, .9);
	text-indent: inherit;
	font-size: 0;
	color: transparent;
	overflow: hidden;
	line-height: 1;
	display: block;
	overflow: visible;
}

.swiper-pagination-bullet:hover {
	background: #1e3c60;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: #bd202e;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
	opacity: 1;
	cursor: auto;
	pointer-events: none;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: none;
}

.swiper-container {
	overflow: visible;
}

#photo-section {
	position: relative;
}

#photo-section .image-wrap {
	float: left;
  width: 20%;
  min-height: 220px;
  box-sizing: border-box;
  background-size: cover;
  background-position: 50% 0%;
  background-repeat:no-repeat;
}

#gallery {
    padding: 10px 0 0;
    display: block;
}

footer {
	position: relative;
	min-height: 600px;
}

#footer-block .quote {
	position: relative;
  z-index: 1;
  margin: 0 auto;
  top: 0;
  max-width: 450px;
  width: 100%;
  display: block;
  padding-top: 130px;
}

#footer-block .solid-line {
	position: relative;
	display: block;
	margin: 0 auto;
}

#footer-block .solid-line:before {
	height: 110px;
	width: 1px;
	content: "";
	background: #161f41;
	position: absolute;
	left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

#footer-block {
	background-image: url(../images/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 40% 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

/*Popup Styling*/

.email-overlay {
	background: rgba(20, 29, 65, 0.85);
	position: fixed;
	bottom: -5px;
	right: -5px;
	z-index: 9999;
	color: #fff;
	-webkit-transform: translate(0, 102%);
	-ms-transform: translate(0, 102%);
	transform: translate(0, 102%);
	-webkit-transition: -webkit-transform 1s ease;
	transition: transform 1s ease; 
	width: 470px;
	border-left: 5px solid #bd1f2e;
	border-right: 5px solid #bd1f2e;
	border-top: 5px solid #bd1f2e;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background-position: 0 0, 0 100%;
	background-repeat: no-repeat;
	-webkit-background-size: 100% 5px;
	-moz-background-size: 100% 5px;
	background-size: 100% 5px;
}

.email-overlay.active {
	-webkit-transform: translate(0, 0%);
	-ms-transform: translate(0, 0%);
	transform: translate(0, 0%); 
}

.email-overlay .closer-btn {
	width: 8px;
	height: 17px;
	position: absolute;
	top: 15px;
	right: 15px;
	display: inline-block;
	vertical-align: top;
	-webkit-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease; 
}

.email-overlay .closer-btn span {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2px;
	background: #fff;
	-webkit-transform: rotate(40deg);
	-ms-transform: rotate(40deg);
	transform: rotate(40deg); 
}

.email-overlay .closer-btn span:nth-child(2) {
	-webkit-transform: rotate(-40deg);
	-ms-transform: rotate(-40deg);
	transform: rotate(-40deg); 
}

.email-overlay .closer-btn:hover {
	opacity: 0.5; 
}

.intro-block {
	padding: 20px 30px 40px;
}

.intro-block p {
	font-size: 18px;
}

.intro-block h2 {
	color: #fff;
	font-size: 34px;
	margin: 0 0 10px
}

.intro-block .text-holder {
	padding: 0;
	position: relative;
}

.intro-block .subscribe-form {
	position: relative;
	width: 100%;
}

.intro-block input[type="email"] {
	padding: 10px;
	min-width: 245px;
	color: #333;
	border: none;
	border-radius: 0;
}

.intro-block .subscribe-form button[type="submit"] {
  background: #bd202e;
  border: none;
  -webkit-transition: background .3s ease-in-out;
  transition: background .3s ease-in-out;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  min-height: 43px;
}

@media (min-width: 640px) {
	.swiper-container .swiper-slide.swiper-slide-prev,
	.swiper-container .swiper-slide.swiper-slide-next {
		opacity: 1 !important;
		visibility: visible;
	}
}


@media (min-width: 768px) {
	#member-section {
		padding: 40px 0 60px;
	}

	#member-section .member-list {
		margin: 100px 0 0;
	}

	.member-list li:first-child {
    width: 44%;
	}

	.member-list li:first-child:before {
    content: "";
    top: 20px;
    left: -15%;
    width: 9999px;
    height: 370px;
    background-color: #bd202e;
    position: absolute;
	}

	.member-list li:first-child .member-item {
		top: 20px;
		left: 30px;
		position: relative;
	}

	.member-list li:last-child .member-item {
		bottom: 86px;
		position: relative;
	}

	.member-item .img-holder {
		max-width: 300px;
		margin: 0;
	}

	.member-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 42px 2px 0;
	}

	.member-list li {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
	}

	#member-section .left-caption {
		position: absolute;
		bottom: -14px;
	  left: 404px;
	  min-width: 300px;
	}

	#member-section .right-caption {
		position: absolute;
	  top: -45px;
	  right: 537px;
	  text-align: right;
	  min-width: 300px;
	}

	#list-bg {
		min-height: 400px;
	}

	#list-section .content-hold {
		width: 80%;
		top: -150px;
		margin: 0 auto -140px;
		padding: 40px;
	}

	.main-members {
    -moz-column-count: 3;
    -moz-column-gap: 20px;
    -webkit-column-count: 3;
    -webkit-column-gap: 20px;
    column-count: 3;
    column-gap: 20px;
	}

	.news-card {
		padding: 30px 40px 65px;
	}

	.news-card:after {
		-webkit-transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
		transition: opacity .3s ease-in-out, visibility .3s ease-in-out;
		content: "";
		position: absolute;
		background: rgba(255, 255, 255, .7);
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.news-card:before {
		content: "";
		position: absolute;
		top: -29px;
		bottom: -39px;
		left: -4px;
		right: -4px;
		background: #fff;
		box-shadow: 0 30px 50px 0 rgba(40, 42, 46, .1);
		opacity: 0;
		visibility: hidden;
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
		z-index: -1;
	}

	.news-title {
		font-size: 20px;
		line-height: 1.4;
	}

	.date-list {
	  letter-spacing: .08em;
	}

	.swiper-container {
		padding: 40px 0 104px;
	}

	.swiper-container .swiper-slide {
		width: 444px;
	}

	.swiper-pagination-fraction,
	.swiper-pagination-custom,
	.swiper-container-horizontal > .swiper-pagination-bullets {
		bottom: -3px;
	}
}

@media (min-width: 1024px) {
	#mission-section .left-block {
    font-size: 18px;
    position: absolute;
    top: 18%;
    width: 40%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 60px 50px;
	}

	#mission-section .image-block {
		float:right;
		width: 60%;
		max-width: 100%;
		min-height:450px;
	}

	#mission-section .left-caption {
		position: absolute;
    bottom: 0;
    left: 0;
    padding-right: 10px;
    width: 40%;
    box-sizing: border-box;
	}

	.vertical-headline h1 {
		left: 15%;
	}

	#service-section .logos {
		padding: 40px 0 330px;
	}

	#service-section .service-logo {
		width: calc(24% - 60px);
		display: inline-block;
		padding: 10px 30px;
		box-sizing: content-box;
	}


	#member-section:before {
		width: 40%;
		min-height: 500px;
	}

	#member-section .member-blurb {
		position: absolute;
		width: 50%;
	}

	#list-bg {
		min-height: 600px;
	}

	#list-section .content-hold {
		top: -250px;
		margin: 0 auto -240px;
		width: 72%;
	}

	.swiper-container {
		margin-bottom: 40px;
	}

	.swiper-holder {
		max-width: 800px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		left: -35px;
	}

	.swiper-button-next {
		left: auto;
		right: -35px;
	}
}

@media (min-width: 1200px) {
.swiper-container .swiper-slide {
		width: 538px;
	}

	.swiper-button-prev,
	.swiper-button-next {
		left: -120px;
	}

	.swiper-button-next {
		left: auto;
		right: -120px;
	}
}

@media (min-width: 1440px) {

	.news-section .btn-wrapper .btn {
		padding: 16px 26px;
	}

	.news-title {
		font-size: 24px;
		line-height: 1.2;
		margin-bottom: 18px;
	}

	.swiper-container {
		padding: 60px 0 114px;
		margin-bottom: 50px;
	}

	/*.swiper-holder {
		max-width: 1076px;
	}*/

	.swiper-button-prev,
	.swiper-button-next {
		left: -163px;
	}

	.swiper-button-next {
		left: auto;
		right: -163px;
	}
}

@media (min-width: 1600px) {

	#list-bg {
		min-height: 900px;
		background-size: cover;
		background-position: 50% 50%;
	}

	#photo-section .image-wrap {
		min-height: 300px;
	}
}

@media (max-width: 1023px) {
	.intro-video:after {
	  min-height: 600px; 
	}

	h1, 
	.h1,
	#list-section .content-hold h1 {
		font-size: 34px;
		line-height: 1em;
	}

	.vertical-headline span,
	#list-section .content-hold h1 span {
		font-size: 18px;
		line-height: 18px;
	}

	.vertical-headline h1:after {
		bottom: -15px;
	}

	#photo-section .image-wrap {
		width: 50%;
		min-height: 300px;
	}
}

@media (max-width: 767px) {
	#main .logo {
    width: 160px;
    padding: 10px;
	}

	#header.fixed-position .orig-box .mini-logo {
    display: block;
	}

	#news-block .post {
		width: 100%;
	}	

	.intro-video:after {
	  min-height:350px; 
	}

	.member-list {
    display: flex;
    flex-direction: column;
	}

	.member-list li:first-child {
	  order: 2;
	}

	.member-list li:last-child {
	 	order: 1;
	}

	.member-list li {
		margin: 10px 0 30px;
	}

	#member-section .right-caption, 
	#member-section .left-caption {
    border: none;
    text-align:center;
    padding: 0 0 10px;
	}

	#list-section .content-hold a {
		letter-spacing: 0;
		font-size: 13px;
	}
}

@media (max-width: 560px) {
	#photo-section .image-wrap {
		width: 100%;
		min-height: 300px;
	}

	.nav-drop {
		width: 100%;
		right: -100%;
	}

	.email-overlay {
		width: 100%;
		border-left: none;
		border-right: none;
		right: 0;
	 }

	.intro-block p {
  	font-size: 15px;
	}

	.intro-block input[type="email"] {
		width: 60%;
    min-width: auto;
		margin: 0 0 5px;    
	 }

	.intro-block .subscribe-form button[type="submit"] {
		width: 30%;
	}
}


@-webkit-keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes swiper-preloader-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}