

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

@font-face {
	font-family: "NeutrifStudio";
	src: url("../fonts/NeutrifStudioBold.woff") format("woff"), url("../fonts/NeutrifStudioBold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: "NeutrifStudio";
	src: url("../fonts/NeutrifStudioRegular.woff") format("woff"), url("../fonts/NeutrifStudioRegular.ttf") format("truetype");
	font-weight: 200;
	font-style: normal;
}

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

[class^="icon-"],
[class*=" icon-"] {
	/* 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-angle-right:before {
	content: "\f105";
}

.icon-add:before {
	content: "\e145";
}

.icon-close:before {
	content: "\e5cd";
}

body.fancybox-active {
	overflow: hidden;
}

body.fancybox-iosfix {
	position: fixed;
	left: 0;
	right: 0;
}

.fancybox-is-hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
	visibility: hidden;
}

.fancybox-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99992;
	-webkit-tap-highlight-color: transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.fancybox-outer {
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.fancybox-bg {
	background: #1e1e1e;
	opacity: 0;
	-webkit-transition-duration: inherit;
	transition-duration: inherit;
	-webkit-transition-property: opacity;
	transition-property: opacity;
	-webkit-transition-timing-function: cubic-bezier(.47, 0, .74, .71);
	transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
	opacity: .87;
	-webkit-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
	transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
	position: absolute;
	direction: ltr;
	z-index: 99997;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .25s, visibility 0s linear .25s;
	transition: opacity .25s, visibility 0s linear .25s;
	box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
	opacity: 1;
	visibility: visible;
	-webkit-transition: opacity .25s, visibility 0s;
	transition: opacity .25s, visibility 0s;
}

.fancybox-infobar {
	top: 0;
	left: 0;
	font-size: 13px;
	padding: 0 10px;
	height: 44px;
	min-width: 44px;
	line-height: 44px;
	color: #ccc;
	text-align: center;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-font-smoothing: subpixel-antialiased;
	mix-blend-mode: exclusion;
}

.fancybox-toolbar {
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
}

.fancybox-stage {
	overflow: hidden;
	direction: ltr;
	z-index: 99994;
	-webkit-transform: translate3d(0, 0, 0);
}

.fancybox-is-closing .fancybox-stage {
	overflow: visible;
}

.fancybox-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: auto;
	outline: none;
	white-space: normal;
	box-sizing: border-box;
	text-align: center;
	z-index: 99994;
	-webkit-overflow-scrolling: touch;
	display: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition-property: opacity, -webkit-transform;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
}

.fancybox-slide::before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
	display: block;
}

.fancybox-slide--image {
	overflow: visible;
}

.fancybox-slide--image::before {
	display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
	background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
	background: #e5e3df;
}

.fancybox-slide--next {
	z-index: 99995;
}

.fancybox-slide>* {
	display: inline-block;
	position: relative;
	border-width: 0;
	vertical-align: middle;
	text-align: left;
	background-color: #fff;
	overflow: auto;
	box-sizing: border-box;
}

.fancybox-slide>title,
.fancybox-slide>style,
.fancybox-slide>meta,
.fancybox-slide>link,
.fancybox-slide>script,
.fancybox-slide>base {
	display: none;
}

.fancybox-slide .fancybox-image-wrap {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	border: 0;
	z-index: 99995;
	background: transparent;
	cursor: default;
	overflow: visible;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	transition-property: opacity, -webkit-transform;
	-webkit-transition-property: opacity, -webkit-transform;
	transition-property: transform, opacity;
	transition-property: transform, opacity, -webkit-transform;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
	cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
	cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
	cursor: -webkit-grab;
	cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
	cursor: -webkit-grabbing;
	cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	border: 0;
	max-width: none;
	max-height: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox-spaceball {
	z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
	padding: 0;
	width: 80%;
	height: 80%;
	max-width: calc(100% - 100px);
	max-height: calc(100% - 88px);
	overflow: visible;
	background: #fff;
}

.fancybox-iframe {
	display: block;
	margin: 0;
	padding: 0;
	border: 0;
	width: 100%;
	height: 100%;
	background: #fff;
}

.fancybox-error {
	margin: 0;
	padding: 40px;
	width: 100%;
	max-width: 380px;
	background: #fff;
	cursor: default;
}

.fancybox-error p {
	margin: 0;
	padding: 0;
	color: #444;
	font-size: 16px;
	line-height: 20px;
}

/* Buttons */

.fancybox-button {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: top;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 10px;
	border: 0;
	border-radius: 0;
	background: rgba(30, 30, 30, .6);
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
	cursor: pointer;
	outline: none;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
	color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
	color: #fff;
}

.fancybox-button[disabled] {
	color: #ccc;
	cursor: default;
	opacity: .6;
}

.fancybox-button svg {
	display: block;
	position: relative;
	overflow: visible;
	shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
	fill: currentColor;
	stroke: currentColor;
	stroke-linejoin: round;
	stroke-width: 3;
}

.fancybox-button--share svg path {
	stroke-width: 1;
}

.fancybox-button--play svg path:nth-child(2) {
	display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
	display: none;
}

.fancybox-button--zoom svg path {
	fill: transparent;
}


/* Navigation arrows */

.fancybox-navigation {
	display: none;
}

.fancybox-show-nav .fancybox-navigation {
	display: block;
}

.fancybox-navigation button {
	position: absolute;
	top: 50%;
	margin: -50px 0 0 0;
	z-index: 99997;
	background: transparent;
	width: 60px;
	height: 100px;
	padding: 17px;
}

.fancybox-navigation button:before {
	content: "";
	position: absolute;
	top: 30px;
	right: 10px;
	width: 40px;
	height: 40px;
	background: rgba(30, 30, 30, .6);
}

.fancybox-navigation .fancybox-button--arrow_left {
	left: 0;
}

.fancybox-navigation .fancybox-button--arrow_right {
	right: 0;
}

/* Close button on the top right corner of html content */

.fancybox-close-small {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	z-index: 10;
	cursor: pointer;
}

.fancybox-close-small:after {
	content: "×";
	position: absolute;
	top: 5px;
	right: 5px;
	width: 30px;
	height: 30px;
	font: 22px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
	color: #888;
	font-weight: 300;
	text-align: center;
	border-radius: 50%;
	border-width: 0;
	background-color: transparent;
	-webkit-transition: background-color .25s;
	transition: background-color .25s;
	box-sizing: border-box;
	z-index: 2;
}

.fancybox-close-small:focus {
	outline: none;
}

.fancybox-close-small:focus:after {
	outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
	color: #555;
	background: #eee;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
	top: 0;
	right: -40px;
}

.fancybox-slide--image .fancybox-close-small:after,
.fancybox-slide--iframe .fancybox-close-small:after {
	font-size: 35px;
	color: #aaa;
}

.fancybox-slide--image .fancybox-close-small:hover:after,
.fancybox-slide--iframe .fancybox-close-small:hover:after {
	color: #fff;
	background: transparent;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
	display: none;
}

/* Caption */

.fancybox-caption-wrap {
	bottom: 0;
	left: 0;
	right: 0;
	padding: 60px 2vw 0 2vw;
	background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8) 100%);
	background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .1) 20%, rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .6) 80%, rgba(0, 0, 0, .8) 100%);
	pointer-events: none;
}

.fancybox-caption {
	padding: 30px 0;
	border-top: 1px solid rgba(255, 255, 255, .4);
	font-size: 14px;
	color: #fff;
	line-height: 20px;
	-webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
	pointer-events: all;
	position: relative;
	/* Fix IE11 */
}

.fancybox-caption a {
	color: #fff;
	text-decoration: underline;
}

/* Loading indicator */

.fancybox-slide>.fancybox-loading {
	border: 6px solid rgba(100, 100, 100, .4);
	border-top: 6px solid rgba(255, 255, 255, .6);
	border-radius: 100%;
	height: 50px;
	width: 50px;
	-webkit-animation: fancybox-rotate .8s infinite linear;
	animation: fancybox-rotate .8s infinite linear;
	background: transparent;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -30px;
	margin-left: -30px;
	z-index: 99999;
}

/* Transition effects */

.fancybox-animated {
	-webkit-transition-timing-function: cubic-bezier(0, 0, .25, 1);
	transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
	opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
	-webkit-transform: translate3d(100%, 0, 0);
	transform: translate3d(100%, 0, 0);
	opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
}

/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
	opacity: 0;
	-webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
	transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
	opacity: 1;
}

/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
	-webkit-transform: scale3d(1.5, 1.5, 1.5);
	transform: scale3d(1.5, 1.5, 1.5);
	opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
	-webkit-transform: scale3d(.5, .5, .5);
	transform: scale3d(.5, .5, .5);
	opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
	opacity: 1;
}

/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
	-webkit-transform: rotate(-360deg);
	-ms-transform: rotate(-360deg);
	transform: rotate(-360deg);
	opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
	opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	opacity: 1;
}

/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
	-webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
	opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
	-webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
	opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
	-webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
	opacity: 1;
}

/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
	-webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
	transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
	-webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
	transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
	-webkit-transform: translate3d(0, 0, 0) scale(1);
	transform: translate3d(0, 0, 0) scale(1);
}

/* Share */

.fancybox-share {
	padding: 30px;
	border-radius: 3px;
	background: #f4f4f4;
	max-width: 90%;
	text-align: center;
}

.fancybox-share h1 {
	color: #222;
	margin: 0 0 20px 0;
	font-size: 35px;
	font-weight: 700;
}

.fancybox-share p {
	margin: 0;
	padding: 0;
}

p.fancybox-share__links {
	margin-right: -10px;
}

.fancybox-share__button {
	display: inline-block;
	text-decoration: none;
	margin: 0 10px 10px 0;
	padding: 0 15px;
	min-width: 130px;
	border: 0;
	border-radius: 3px;
	background: #fff;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 700;
	line-height: 40px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #fff;
	-webkit-transition: all .2s;
	transition: all .2s;
}

.fancybox-share__button:hover {
	text-decoration: none;
}

.fancybox-share__button--fb {
	background: #3b5998;
}

.fancybox-share__button--fb:hover {
	background: #344e86;
}

.fancybox-share__button--pt {
	background: #bd081d;
}

.fancybox-share__button--pt:hover {
	background: #aa0719;
}

.fancybox-share__button--tw {
	background: #1da1f2;
}

.fancybox-share__button--tw:hover {
	background: #0d95e8;
}

.fancybox-share__button svg {
	position: relative;
	top: -1px;
	width: 25px;
	height: 25px;
	margin-right: 7px;
	vertical-align: middle;
}

.fancybox-share__button svg path {
	fill: #fff;
}

.fancybox-share__input {
	box-sizing: border-box;
	width: 100%;
	margin: 10px 0 0 0;
	padding: 10px 15px;
	background: transparent;
	color: #5d5b5b;
	font-size: 14px;
	outline: none;
	border: 0;
	border-bottom: 2px solid #d7d7d7;
}

/* Thumbs */

.fancybox-thumbs {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 212px;
	margin: 0;
	padding: 2px 2px 4px 2px;
	background: #fff;
	-webkit-tap-highlight-color: transparent;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	box-sizing: border-box;
	z-index: 99995;
}

.fancybox-thumbs-x {
	overflow-y: hidden;
	overflow-x: auto;
}

.fancybox-show-thumbs .fancybox-thumbs {
	display: block;
}

.fancybox-show-thumbs .fancybox-inner {
	right: 212px;
}

.fancybox-thumbs>ul {
	list-style: none;
	position: absolute;
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: auto;
	font-size: 0;
	white-space: nowrap;
}

.fancybox-thumbs-x>ul {
	overflow: hidden;
}

.fancybox-thumbs-y>ul::-webkit-scrollbar {
	width: 7px;
}

.fancybox-thumbs-y>ul::-webkit-scrollbar-track {
	background: #fff;
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y>ul::-webkit-scrollbar-thumb {
	background: #2a2a2a;
	border-radius: 10px;
}

.fancybox-thumbs>ul>li {
	float: left;
	overflow: hidden;
	padding: 0;
	margin: 2px;
	width: 100px;
	height: 75px;
	max-width: calc(50% - 4px);
	max-height: calc(100% - 8px);
	position: relative;
	cursor: pointer;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	box-sizing: border-box;
}

li.fancybox-thumbs-loading {
	background: rgba(0, 0, 0, .1);
}

.fancybox-thumbs>ul>li>img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: none;
	max-height: none;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.fancybox-thumbs>ul>li:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 4px solid #4ea7f9;
	z-index: 99991;
	opacity: 0;
	-webkit-transition: all .2s cubic-bezier(.25, .46, .45, .94);
	transition: all .2s cubic-bezier(.25, .46, .45, .94);
}

.fancybox-thumbs>ul>li.fancybox-thumbs-active:before {
	opacity: 1;
}

/* Styling for Small-Screen Devices */

/* Slider */

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent;
}

.slick-list {
	position: relative;
	overflow: hidden;
	display: block;
	margin: 0;
	padding: 0;
}

.slick-list:focus {
	outline: none;
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.slick-track:before,
.slick-track:after {
	content: "";
	display: table;
}

.slick-track:after {
	clear: both;
}

.slick-loading .slick-track {
	visibility: hidden;
}

.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	display: none;
}

[dir="rtl"] .slick-slide {
	float: right;
}

.slick-slide img {
	display: block;
}

.slick-slide.slick-loading img {
	display: none;
}

.slick-slide.dragging img {
	pointer-events: none;
}

.slick-initialized .slick-slide {
	display: block;
}

.slick-loading .slick-slide {
	visibility: hidden;
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
	display: none;
}

#nav,
.list-services,
.contact-address .address-list,
.lightbox-slider .slick-dots {
	margin: 0;
	padding: 0;
	list-style: none;
}

.clearfix: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: #161b1f;
	background: #fff;
	font: 15px/1.2 "NeutrifStudio", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	min-width: 320px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

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

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

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

p {
	margin: 0 0 1em;
}

a {
	color: #f7cb15;
	text-decoration: none;
	-webkit-transition: .27s ease-in-out;
	transition: .27s ease-in-out;
}

a:hover,
a:focus {
	color: #f7cb15;
}

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;
	box-sizing: border-box;
	border: 1px solid #999;
	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: #333;
}

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: #999;
}

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: #999;
}

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: #999;
}

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: #999;
}

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

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

#header {
	top: 0;
	left: 0;
	width: 100%;
	position: fixed;
	z-index: 1003;
	padding: 16px 0;
	-webkit-transition: background .3s linear, padding .3s linear, box-shadow .3s linear;
	transition: background .3s linear, padding .3s linear, box-shadow .3s linear;
}

#header.header-fixed {
	background: #fff;
	box-shadow: 0 7px 9px rgba(22, 27, 31, .3);
}

.header-container {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.header-container .logo {
	margin: 0 auto 0 0;
}

.header-container .logo a {
	display: block;
}

.header-container .logo svg {
	max-width: 100%;
}

.header-container .site-logo {
	fill: #fff;
	-webkit-transition: fill .3s linear;
	transition: fill .3s linear;
}

.header-fixed .header-container .site-logo {
	fill: #161b1f;
}

.nav-opener {
	display: block;
	width: 40px;
	height: 40px;
	position: relative;
}

.nav-active .nav-opener span {
	opacity: 0;
}

.nav-active .nav-opener:before,
.nav-active .nav-opener:after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: 50%;
	left: 15%;
	right: 15%;
}

.nav-active .nav-opener:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.nav-opener span,
.nav-opener:before,
.nav-opener:after {
	background: #fff;
	position: absolute;
	top: 50%;
	left: 16%;
	right: 16%;
	height: 3px;
	margin-top: -2px;
	
	/* height/2 */
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
}

.header-fixed .nav-opener span,
.header-fixed .nav-opener:before,
.header-fixed .nav-opener:after {
	background: #161b1f;
}

.nav-opener:before,
.nav-opener:after {
	content: "";
	top: 30%;
}

.nav-opener:after {
	top: 70%;
}

#nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	text-align: center;
	font-size: 20px;
	line-height: 1;
}

#nav li {
	position: relative;
	text-align: center;
	border-top: 1px solid #fb6e6e;
}

#nav li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 1em 15px;
	background-color: #f7cb15;
}

#nav li a.anchor-active:before,
#nav li a:hover:before {
	width: 150%;
}

#nav li a:before {
	display: none;
	content: "";
	position: absolute;
	height: 2px;
	width: 20%;
	top: 69%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-color: #f7cb15;
	-webkit-transition: width .15s linear, background-color .3s linear;
	transition: width .15s linear, background-color .3s linear;
}

.header-fixed #nav li a:before {
	background-color: #161b1f;
}

.header-fixed #nav li a {
	color: #161b1f;
}


.header-fixed #nav .square a {
	color: #f7cb15;

}

.resize-active * {
	-webkit-transition: none !important;
	transition: none !important;
}


#wrapper {
	position: relative;
	overflow: hidden;
}

.container {
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}

.modal {
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: rgba(25, 38, 70, 0.95);
	display: none;
}

.modal-content {
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 650px;
	background: white;
	float: left;
}

.modal-content .panel {
	width: 50%;
	float: left;

}

.modal-content .left-panel {
	background: linear-gradient(130deg, #1274a3, #68ad74);
	padding-top: 60px;
	padding-left: 60px;
	min-height: 530px;
}
.thanks {
	padding: 20px;
	height: 522px;
	position: relative;
	display: none;
}
.thanks img{
	width: 200px;
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

label.error{
	display: none !Important;
}

.form-group {
	float: left;
	width: 100%;
	margin-bottom: 30px;

}

.form-control {
	float: left;
	width: 100%;
	border: none !important;
	border-bottom: solid 1px #b3b8c2 !important;
	font-weight: bold;
}


.form-control:focus {
	border-bottom: solid 1px #f7cb15 !important;
	outline: none !important;
}

.form-control input,
.form-control textarea {
	float: left;
	width: 100%;
}

.modal-content .form {
	float: left;
	width: 100%;
	padding: 20px;
}

.modal-content button {
	float: right;
	padding: 0 30px;
	height: 40px;
	border: solid 1px transparent;
	border-image: linear-gradient(130deg, #1274a3, #68ad74)130;
	border-image-slice: 1;
	color: #f7cb15;
	font-weight: bold;
	background: #ffff;

}
.modal-content .close{
	float: right;
	position: relative;
    z-index: 9;
}
.modal-content .close img{
	width: 20px;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}
.error {
    background: #f7cb1514;
    border-color: #f7cb15 !important;
}
.visual-section {
	background: linear-gradient(135deg, #1274a3 0%, #68ad74 100%);
	width: 100%;
	position: relative;
	background-size: cover;
	background-position: 50% 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	overflow: auto;
}



.visual-section .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 104px 0 80px;
	z-index: 1;
	position: relative;
}

.hero-slogan {
	width: 450px;
	position: relative;
	margin: 0 0 0 15px;
	left: 50%;
	transform: translate(-50%);
}

.hero-slogan .skew-duplicate,
.hero-slogan .skew-first {
	-webkit-transform: skewX(-34deg);
	-ms-transform: skewX(-34deg);
	transform: skewX(-34deg);
	overflow: hidden;
}

.hero-slogan .skew-first {
	width: 386px;
	border-right: 5px solid #fff;
	padding: 0 0 0 10em;
	margin: 0 0 0 -10em;
}

.hero-slogan .skew-first .inner {
	width: 450px;
	-webkit-transform: skewX(34deg);
	-ms-transform: skewX(34deg);
	transform: skewX(34deg);
	padding: 3.8em 0 5em;
}

.hero-slogan .skew-duplicate {
	width: 256px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 3.5em 0 0;
	margin: 0 -3.5em 0 0;
}

.hero-slogan .skew-duplicate .inner {
	position: absolute;
	height: 100%;
	right: 0;
	top: 0;
	width: 507px;
	-webkit-transform: skewX(34deg);
	-ms-transform: skewX(34deg);
	transform: skewX(34deg);
	padding: 4.2em 0 5em;
}

.hero-slogan h1,
.hero-slogan .duplicate-title {
	font-size: 54px;
	line-height: 1;
	margin: 0;
	color: #fff;
	font-weight: 700;
}

.bg-light {
	background: #f7f9fa;
}

.services-section {
	padding: 50px 0 25px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.services-block {
	margin: 0 0 20px;
	-webkit-transition: .27s ease-in-out;
	transition: .27s ease-in-out;
}

.services-text .list-services {
	font-size: 16px;
}

.services-list .block-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.services-body {
	font-size: 16px;
	line-height: 1.625;
	position: relative;
	padding: 16px 0;
	-webkit-transition: .27s ease-in-out;
	transition: .27s ease-in-out;
	color: #000;
}

.services-body:hover:before {
	background: #f7cb15;
	
}

.services-body:hover h3{
	color: #f7cb15;
}


.services-body:before {
	content: "";
	position: absolute;
	background-color: #161b1f;
	height: 2px;
	width: 100%;
	top: 0;
	left: 0;
	-webkit-transition: background .27s ease-in-out;
	transition: background .27s ease-in-out;
}

.services-body h3 {
	line-height: 1;
	padding: .55em 0 0;
	margin: 0 0 1.25em;
	-webkit-transition: color .27s ease-in-out;
	transition: color .27s ease-in-out;
}

.list-services {
	position: relative;
	line-height: 1.6;
	min-width: 200px;
}

.block-list {
	width: 100%;
}

.block-list .list-services {
	line-height: 1;
}

.block-list .list-services li:not(:last-child) {
	margin: 0 0 1.26em;
}

.block-list .list-services li a {
	color: #161b1f;
	text-decoration: none;
	position: relative;
	display: inline-block;
}

.block-list .list-services li a:hover,
.block-list .list-services li a:focus {
	-webkit-transform: translate(.8em, 0);
	-ms-transform: translate(.8em, 0);
	transform: translate(.8em, 0);
}

.block-list .list-services li a:hover:before,
.block-list .list-services li a:focus:before {
	opacity: 1;
}

.block-list .list-services li a:before {
	font-family: "icomoon" !important;
	content: "\f105";
	font-size: 1.2em;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(-.8em, -50%);
	-ms-transform: translate(-.8em, -50%);
	transform: translate(-.8em, -50%);
	opacity: 0;
	-webkit-transition: opacity .27s ease-in-out;
	transition: opacity .27s ease-in-out;
}

.block-list .active strong {
	font-size: 18px;
	color: #f7cb15;
}

.clients-block .header-services {
	overflow: hidden;
}

.clients-block .header-services h3 {
	position: relative;
}

.clients-block .header-services h3:after {
	content: "";
	position: absolute;
	height: 2px;
	width: 100%;
	top: 50%;
	left: 110px;
	background-color: #e6e6e6;
}

.clients-list {
	text-align: center;
	padding: 0;
	position: relative;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.clients-list .slick-track {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.clients-list .slick-list {
	position: relative;
}

.clients-list .slick-list:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 15px;
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, white 100%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, white 100%);
}

.clients-list .slick-slide {
	padding: 5px;
	margin: 0 16px 0 0;
}

.clients-list img,
.clients-list svg {
	max-width: 100%;
}

.clients-list .svg-client {
	fill: #161b1f;
	display: block;
	
}

.clients-list .svg-client.active {
	fill: #f7cb15;
}

.clients-list .svg-client:hover {
	fill: #f7cb15;
}

.clients-list .slick-dots {
	display: none !important;
}

.clients-list .slick-arrow {
	font-size: 0;
	line-height: 1;
	border: none;
	outline: none;
	background: none;
}

.clients-list .slick-arrow:before {
	display: block;
	width: 16px;
	height: 16px;
	content: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 448 448'%3E%3Ctitle%3E%3C/title%3E%3Cg id='icomoon-ignore'%3E%3C/g%3E%3Cpath d='M354.63 224c0 3.591-1.796 7.631-4.489 10.325l-209.187 209.187c-2.694 2.694-6.733 4.489-10.325 4.489s-7.631-1.796-10.325-4.489l-22.445-22.445c-2.694-2.694-4.489-6.284-4.489-10.325 0-3.591 1.796-7.631 4.489-10.325l176.417-176.417-176.417-176.417c-2.694-2.694-4.489-6.733-4.489-10.325s1.796-7.631 4.489-10.325l22.445-22.445c2.694-2.694 6.733-4.489 10.325-4.489s7.631 1.796 10.325 4.489l209.187 209.187c2.694 2.694 4.489 6.733 4.489 10.325z'%3E%3C/path%3E%3C/svg%3E");
}

.clients-list .slick-arrow.slick-prev {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

.reimagined-section {
	padding: 40px 0;
}

.section-header {
	max-width: 100%;
	font-size: 16px;
	line-height: 1.625;
	margin: 0 0 2em;
}

.section-header h2 {
	line-height: 1.2;
	margin: 0 0 .7em;
}

.section-header p:only-child,
.section-header p:last-child {
	margin: 0;
}

.reimagined-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.reimagined-list .entry-item {
	width: 100%;
	padding: 0 0 24px;
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: opacity .3s linear, -webkit-transform .3s linear;
	transition: opacity .3s linear, -webkit-transform .3s linear;
	transition: transform .3s linear, opacity .3s linear;
	transition: transform .3s linear, opacity .3s linear, -webkit-transform .3s linear;
}

.reimagined-list .entry-item.new-item {
	opacity: 0;
	-webkit-transform: translate(0, 50px);
	-ms-transform: translate(0, 50px);
	transform: translate(0, 50px);
}

.reimagined-card {
	display: block;
	font-size: 16px;
	line-height: 1;
}

.reimagined-card:hover .thumbnail-image {
	background-size: 110% 110%;
}

.reimagined-card:hover .open-link {
	color: #f7cb15;
	-webkit-transform: translate(1em, 0);
	-ms-transform: translate(1em, 0);
	transform: translate(1em, 0);
}

.reimagined-card:hover .open-link i {
	-webkit-transform: translate(-.5em, 0) scale(0);
	-ms-transform: translate(-.5em, 0) scale(0);
	transform: translate(-.5em, 0) scale(0);
	opacity: 0;
}

.reimagined-card .thumbnail-image {
	height: 64vw;
	width: 100%;
	background-size: 100% 100%;
	background-position: 50% 50%;
	margin: 0 0 .8em;
	-webkit-transition: background-size .15s linear;
	transition: background-size .15s linear;
}

.reimagined-card .open-link {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #161b1f;
	-webkit-transition: color .15s linear, -webkit-transform .15s linear;
	transition: color .15s linear, -webkit-transform .15s linear;
	transition: color .15s linear, transform .15s linear;
	transition: color .15s linear, transform .15s linear, -webkit-transform .15s linear;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}

.reimagined-card .open-link i {
	display: inline-block;
	position: relative;
	font-size: 1.3em;
	margin: 0 0 0 .5em;
	color: #f7cb15;
	opacity: 1;
	-webkit-transform: translate(0, 0) scale(1);
	-ms-transform: translate(0, 0) scale(1);
	transform: translate(0, 0) scale(1);
	-webkit-transition: opacity .15s linear, -webkit-transform .15s linear;
	transition: opacity .15s linear, -webkit-transform .15s linear;
	transition: transform .15s linear, opacity .15s linear;
	transition: transform .15s linear, opacity .15s linear, -webkit-transform .15s linear;
}

.btn-load-more {
	text-align: center;
	padding: 24px 0 0;
}

.btn-load-more:empty {
	display: none;
}

a.load-more {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	border: 2px solid #f7cb15;
	padding: .75em .9em .75em;
	-webkit-transition: color .27s ease-in-out, background .27s ease-in-out;
	transition: color .27s ease-in-out, background .27s ease-in-out;
	outline: none;
}

a.load-more:hover {
	background: #f7cb15;
	color: #fff;
}

a.load-more i {
	position: relative;
	display: inline-block;
	font-size: .75em;
	margin: 0 .5em 0 0;
}

.contact-block {
	background-color: #037db7;
	min-height: 240px;
	padding: 50px 0 20px;
	position: relative;
}

.map-block {
	font-size: 18px;
	min-height: 140px;
	width: auto;
	background-size: contain;
	background: no-repeat;
	padding: 8.8% 0 0;
	text-align: center;
}

.map-block a {
	margin-top: 20px;
	display: inline-block;
}

.caption-map {
	color: #fff;
}

.caption-map h2 {
	font-size: 32px;
	margin: 0 0 15px;
}

.line-address-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 0 0 20px;
}

.contact-address {
	width: 80%;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	border-top: 1px solid #fff;
}

.contact-address .header-address {
	padding: 16px 0 0;
}

.contact-address .address-list {
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4;
	margin: 0 0 10px;
}

.contact-address .address-list li a {
	color: #fff;
	position: relative;
}

.contact-address .address-list li a:hover,
.contact-address .address-list li a:focus {
	color: #f7cb15;
}

.contact-address .address-list li address {
	font-style: initial;
}

.links-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

.links-block .link-box {
	text-align: center;
	margin: 0 0 2em;
	position: relative;
}

.links-block .link-box:first-child:before {
	display: none;
}

.links-block .link-box:before {
	content: "";
	height: 2px;
	width: 100%;
	left: 0;
	position: absolute;
	background-color: #e6e6e6;
}

.links-block .link-box .header-link {
	padding: 20px 0 0;
}

.links-block .link-box .link-primary {
	font-size: 17px;
	position: relative;
	overflow: hidden;
	-webkit-transition: .27s ease-in-out;
	transition: .27s ease-in-out;
}

.links-block .link-box .link-primary:hover,
.links-block .link-box .link-primary:focus {
	color: #161b1f;
}

#footer {
	border-top: 2px solid #e6e6e6;
	width: 100%;
	text-align: center;
	padding: 3em 0 2.2em;
	position: relative;
}

#footer:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	width: 10px;
	background: #f7cb15;
	height: 2.2em;
}

#footer .logo {
	margin: 0 0 2em;
}

#footer .logo a {
	display: block;
}

#footer .copyright {
	font-size: 13px;
}

#footer .link-primary {
	display: inline-block;
	margin: 0 0 1em;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	-webkit-transition: .27s ease-in-out;
	transition: .27s ease-in-out;
}

#footer .link-primary:hover,
#footer .link-primary:focus {
	color: #161b1f;
}

.popup-holder {
	position: relative;
	overflow: hidden;
	height: 0;
}

.fancybox-mobile,
.fancybox-lock .fancybox-overlay {
	overflow: hidden !important;
}

div.lightbox {
	overflow: hidden;
	height: inherit;
	background: #00adf2;
	color: #142d6e;
	width: 100%;
}

div.lightbox .entry-wrap {
	height: inherit;
}

div.lightbox .container {
	height: inherit;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}

div.lightbox .fancybox-close-small {
	display: none;
}

div.lightbox .fancybox-button {
	font-family: "NeutrifStudio", "Arial", "Helvetica Neue", "Helvetica", sans-serif;
	font-size: 17px;
	line-height: 1;
	position: absolute;
	margin: 0;
	top: 54px;
	z-index: 99997;
	background: transparent;
	padding: 17px;
	text-align: center;
	width: 30px;
	height: 24px;
	right: 15px;
}

div.lightbox .fancybox-button[disabled] {
	cursor: not-allowed;
}

div.lightbox .fancybox-button:before {
	content: "Next";
	color: #142d6e;
	display: block !important;
	background: transparent;
	top: 50%;
	width: 100%;
	left: 0;
}

div.lightbox .fancybox-button.fancybox-button--arrow_left {
	right: auto;
	left: 15px;
}

div.lightbox .fancybox-button.fancybox-button--arrow_left:before {
	right: 0;
	content: "Prev";
	color: #000;
	display: block !important;
}

div.lightbox .fancybox-button svg {
	display: none !important;
}

.lightbox-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 16px 0 0;
	position: relative;
	z-index: 99999;
}

.lightbox-header .logo-color {
	fill: #142d6e;
}

.lightbox-header .logo img,
.lightbox-header .logo svg {
	max-width: 100%;
}

.lightbox-header .close-action {
	font-size: 15px;
	line-height: 1;
}

.lightbox-header .close-action .close {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #142d6e;
	cursor: pointer;
}

.lightbox-header .close-action i {
	font-size: 1.2em;
	margin: 0 0 0 .75em;
}

.lightbox-main {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex: 1;
	flex: 1;
	width: 100%;
}

.lightbox-slider {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	position: relative;
}

.lightbox-slider .slick-list,
.lightbox-slider .slick-track,
.lightbox-slider .slick-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
}

.lightbox-slider .slick-list {
	width: 100%;
}

.lightbox-slider .slick-track {
	width: 100vw;
	float: left !important;
	overflow: visible !important;
}

.lightbox-slider .slick-slide {
	outline: none;
	padding: 30px 0;
}

.lightbox-slider .slick-slide>div {
	width: 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;
	margin: 0 auto;
}

.lightbox-slider .slick-slide>div img {
	object-fit: contain;
	height: 100%;
}

.lightbox-slider .slick-arrow {
	position: absolute;
	border: none;
	outline: none;
	background: none;
	font-size: 17px;
	line-height: 1;
	z-index: 2;
	bottom: 0;
	padding: 0;
}

.lightbox-slider .slick-prev {
	left: 0;
}

.lightbox-slider .slick-next {
	right: 0;
}

.lightbox-slider .slick-dots {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	left: 50%;
	bottom: .3em;
	-webkit-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}

.lightbox-slider .slick-dots>li:not(:last-child) {
	margin: 0 7px 0 0;
}

.lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #142d6e, 0 3px 0 #142d6e;
}

.lightbox-slider .slick-dots button {
	display: block;
	font-size: 0;
	border: none;
	outline: none;
	width: 15px;
	height: 4px;
	background: #142d6e;
	-webkit-transition: box-shadow .3s linear;
	transition: box-shadow .3s linear;
}

.lightbox-slider .slick-slide {
	-webkit-transition: opacity .5s linear;
	transition: opacity .5s linear;
}

.lightbox-slider .slick-slide>div {
	width: 100vw;
}

.lightbox-slider .slick-slide img {
	width: 100vw !important;
}

.lightbox {
	overflow-x: hidden;
}

.fancybox-slide .lightbox-slider {
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
}

.fancybox-slide.fancybox-slide--current .lightbox-slider {
	opacity: 1;
	visibility: visible;
}

.lightbox-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding: 24px 0;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.lightbox-footer .left-item {
	font-size: 14px;
	line-height: 1;
	margin: 0 0 8px;
}

.lightbox-footer .title {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	margin: 0 0 .55em;
}

.lightbox-footer .subtitle>span:nth-of-type(1) {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.lightbox-footer .subtitle>span:nth-of-type(1):after {
	content: "";
	display: inline-block;
	width: 38px;
	height: 1px;
	background: #142d6e;
	margin: 0 .45em 0 .8em;
}

.lightbox-footer .right-item {
	font-size: 14px;
	line-height: 1;
	text-align: right;
}

.lightbox-footer .right-item>span {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
}

.lightbox-footer .right-item>span:before {
	content: "";
	display: inline-block;
	height: 1px;
	background: #142d6e;
	margin: 0 1em 0 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

div.lightbox.mine-shaft-mod {
	background: #252525;
	color: #ed1c24;
}

div.lightbox.mine-shaft-mod .lightbox-header .logo-color {
	fill: #ed1c24;
}

div.lightbox.mine-shaft-mod .lightbox-header .close-action .close {
	color: #ed1c24;
}

div.lightbox.mine-shaft-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #ed1c24, 0 3px 0 #ed1c24;
}

div.lightbox.mine-shaft-mod .lightbox-slider .slick-dots button {
	background: #ed1c24;
}

div.lightbox.mine-shaft-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #ed1c24;
}

div.lightbox.mine-shaft-mod .lightbox-footer .right-item>span:before {
	background: #ed1c24;
}

div.lightbox.mine-shaft-mod .fancybox-button:before {
	color: #ed1c24;
}

div.lightbox.ripe-plum-mod {
	background: #33005e;
	color: #f83e0d;
}

div.lightbox.ripe-plum-mod .lightbox-header .logo-color {
	fill: #f83e0d;
}

div.lightbox.ripe-plum-mod .lightbox-header .close-action .close {
	color: #f83e0d;
}

div.lightbox.ripe-plum-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #f83e0d, 0 3px 0 #f83e0d;
}

div.lightbox.ripe-plum-mod .lightbox-slider .slick-dots button {
	background: #f83e0d;
}

div.lightbox.ripe-plum-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #f83e0d;
}

div.lightbox.ripe-plum-mod .lightbox-footer .right-item>span:before {
	background: #f83e0d;
}

div.lightbox.ripe-plum-mod .fancybox-button:before {
	color: #f83e0d;
}

div.lightbox.blue-dianne-mod {
	background: #264763;
	color: #c93c3c;
}

div.lightbox.blue-dianne-mod .lightbox-header .logo-color {
	fill: #c93c3c;
}

div.lightbox.blue-dianne-mod .lightbox-header .close-action .close {
	color: #c93c3c;
}

div.lightbox.blue-dianne-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #c93c3c, 0 3px 0 #c93c3c;
}

div.lightbox.blue-dianne-mod .lightbox-slider .slick-dots button {
	background: #c93c3c;
}

div.lightbox.blue-dianne-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #c93c3c;
}

div.lightbox.blue-dianne-mod .lightbox-footer .right-item>span:before {
	background: #c93c3c;
}

div.lightbox.blue-dianne-mod .fancybox-button:before {
	color: #c93c3c;
}

div.lightbox.torch-red-mod {
	background: #f62941;
	color: #f7ba15;
}

div.lightbox.torch-red-mod .lightbox-header .logo-color {
	fill: #f7ba15;
}

div.lightbox.torch-red-mod .lightbox-header .close-action .close {
	color: #f7ba15;
}

div.lightbox.torch-red-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #f7ba15, 0 3px 0 #f7ba15;
}

div.lightbox.torch-red-mod .lightbox-slider .slick-dots button {
	background: #f7ba15;
}

div.lightbox.torch-red-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #f7ba15;
}

div.lightbox.torch-red-mod .lightbox-footer .right-item>span:before {
	background: #f7ba15;
}

div.lightbox.torch-red-mod .fancybox-button:before {
	color: #f7ba15;
}

div.lightbox.ripe-lemon-mod {
	background: #f7cb15;
	color: #493b2a;
}

div.lightbox.ripe-lemon-mod .lightbox-header .logo-color {
	fill: #493b2a;
}

div.lightbox.ripe-lemon-mod .lightbox-header .close-action .close {
	color: #493b2a;
}

div.lightbox.ripe-lemon-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #493b2a, 0 3px 0 #493b2a;
}

div.lightbox.ripe-lemon-mod .lightbox-slider .slick-dots button {
	background: #493b2a;
}

div.lightbox.ripe-lemon-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #493b2a;
}

div.lightbox.ripe-lemon-mod .lightbox-footer .right-item>span:before {
	background: #493b2a;
}

div.lightbox.ripe-lemon-mod .fancybox-button:before {
	color: #493b2a;
}

div.lightbox.malachite-mod {
	background: #00d747;
	color: #c6ff00;
}

div.lightbox.malachite-mod .lightbox-header .logo-color {
	fill: #c6ff00;
}

div.lightbox.malachite-mod .lightbox-header .close-action .close {
	color: #c6ff00;
}

div.lightbox.malachite-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #c6ff00, 0 3px 0 #c6ff00;
}

div.lightbox.malachite-mod .lightbox-slider .slick-dots button {
	background: #c6ff00;
}

div.lightbox.malachite-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #c6ff00;
}

div.lightbox.malachite-mod .lightbox-footer .right-item>span:before {
	background: #c6ff00;
}

div.lightbox.malachite-mod .fancybox-button:before {
	color: #c6ff00;
}

div.lightbox.alto-mod {
	background: #d7d3d3;
	color: #ff030f;
}

div.lightbox.alto-mod .lightbox-header .logo-color {
	fill: #ff030f;
}

div.lightbox.alto-mod .lightbox-header .close-action .close {
	color: #ff030f;
}

div.lightbox.alto-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #ff030f, 0 3px 0 #ff030f;
}

div.lightbox.alto-mod .lightbox-slider .slick-dots button {
	background: #ff030f;
}

div.lightbox.alto-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #ff030f;
}

div.lightbox.alto-mod .lightbox-footer .right-item>span:before {
	background: #ff030f;
}

div.lightbox.alto-mod .fancybox-button:before {
	color: #ff030f;
}

div.lightbox.red-mod {
	background: #ff030f;
	color: #ffd200;
}

div.lightbox.red-mod .lightbox-header .logo-color {
	fill: #ffd200;
}

div.lightbox.red-mod .lightbox-header .close-action .close {
	color: #ffd200;
}

div.lightbox.red-mod .lightbox-slider .slick-dots>li.slick-active button {
	box-shadow: 0 -3px 0 #ffd200, 0 3px 0 #ffd200;
}

div.lightbox.red-mod .lightbox-slider .slick-dots button {
	background: #ffd200;
}

div.lightbox.red-mod .lightbox-footer .subtitle>span:nth-of-type(1):after {
	background: #ffd200;
}

div.lightbox.red-mod .lightbox-footer .right-item>span:before {
	background: #ffd200;
}

div.lightbox.red-mod .fancybox-button:before {
	color: #ffd200;
}

@media (max-width: 768px) {
	.modal-content {
		width: 90%;
	
	}
}
@media (max-width: 700px) {
	.modal-content .left-panel{
		display: none;
		overflow-y: scroll;
	}
	.modal-content .panel{
		width: 100%;
	}
}


@media (min-width: 480px) {
	.clients-block .header-services h3:after {
		right: 0;
	}

	.reimagined-list {
		margin: 0 -5px;
	}

	.reimagined-list .entry-item {
		width: 100%;
		padding: 0 5px 24px;
	}

	.reimagined-card .thumbnail-image {
		height: 31.77vw;
	}

	.map-block {
		min-height: 265px;
	}

	.contact-address {
		width: 50%;
	}
}

@media (min-width: 768px) {
	#header {
		padding: 40px 0;
	}

	#header.header-fixed {
		padding: 25px 0;
	}

	.nav-opener {
		display: none;
	}

	#nav {
		font-size: 15px;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		padding: 0;
	}

	#nav li {
		border-top: none;
	}

	#nav li:not(:first-child) {
		margin: 0 0 0 2.4em;
	}

	.square a {

		display: inline-block;
		border: solid 1px;
		padding: 0 30px !important;
		font-weight: bold;
	}
	.square a:before {

		display:none!important;
	}

	#nav li a {
		padding: 0;
		background-color: transparent;
		height: 40px;
		line-height: 40px;
	}

	#nav li a:before {
		display: block;
		width: 0;
		background-color: #fff;
	}

	.visual-section .container {
		min-height: 650px;
		padding: 110px 0;
	}

	.hero-slogan h1,
	.hero-slogan .duplicate-title {
		font-size: 72px;
	}

	.services-section {
		padding: 3em 0 1.5em;
	}

	.header-services {
		margin: 0 0 32px;
	}

	.services-body {
		padding: 32px 0;
	}

	.services-body:not(:last-child) {
		margin: 0 16px 0 0;
	}

	.clients-block {
		padding: 2em 0 3em;
	}

	.clients-list .slick-slide {
		padding: 20px;
		margin: 0 28px 0 0;
	}

	.clients-list .slick-arrow:before {
		content: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 448 448'%3E%3Ctitle%3E%3C/title%3E%3Cg id='icomoon-ignore'%3E%3C/g%3E%3Cpath d='M354.63 224c0 3.591-1.796 7.631-4.489 10.325l-209.187 209.187c-2.694 2.694-6.733 4.489-10.325 4.489s-7.631-1.796-10.325-4.489l-22.445-22.445c-2.694-2.694-4.489-6.284-4.489-10.325 0-3.591 1.796-7.631 4.489-10.325l176.417-176.417-176.417-176.417c-2.694-2.694-4.489-6.733-4.489-10.325s1.796-7.631 4.489-10.325l22.445-22.445c2.694-2.694 6.733-4.489 10.325-4.489s7.631 1.796 10.325 4.489l209.187 209.187c2.694 2.694 4.489 6.733 4.489 10.325z'%3E%3C/path%3E%3C/svg%3E");
		width: 32px;
		height: 32px;
	}

	.reimagined-list {
		margin: 0 -15px;
	}

	.reimagined-list .entry-item {
		padding: 0 15px 30px;
	}

	.reimagined-card {
		font-size: 18px;
	}

	.contact-block {
		min-height: 665px;
	}

	.map-block {
		min-height: 320px;
	}

	.caption-map h2 {
		font-size: 59px;
	}

	.line-address-block {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		line-height: 1.5;
	}

	.contact-address {
		text-align: left;
		width: 45%;
		border-width: 2px;
	}

	.contact-address .address-list {
		font-size: 16px;
	}

	.links-block {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 3em 0;
	}

	.links-block .link-box {
		margin: 0;
		margin: 0 0 0 -4px;
		width: 33.3333%;
	}

	.links-block .link-box:before {
		height: 70px;
		width: 2px;
		left: 0;
	}

	.links-block .link-box .header-link {
		padding: 0;
	}

	div.lightbox .fancybox-button {
		right: 0;
		height: 80px;
		top: 50%;
		-webkit-transform: translate(0, -50%);
		-ms-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}

	div.lightbox .fancybox-button:before {
		-webkit-transform: translate(-25%, -50%) rotate(90deg);
		-ms-transform: translate(-25%, -50%) rotate(90deg);
		transform: translate(-25%, -50%) rotate(90deg);
	}

	div.lightbox .fancybox-button.fancybox-button--arrow_left:before {
		-webkit-transform: translate(25%, -50%) rotate(-90deg);
		-ms-transform: translate(25%, -50%) rotate(-90deg);
		transform: translate(25%, -50%) rotate(-90deg);
	}

	.lightbox-header {
		padding: 31px 0 0;
	}

	.lightbox-slider .slick-slide>div {
		width: 90%;
	}

	.lightbox-slider .slick-arrow {
		top: 50%;
		bottom: auto;
	}

	.lightbox-slider .slick-prev {
		-webkit-transform: translate(0, -50%) rotate(-90deg);
		-ms-transform: translate(0, -50%) rotate(-90deg);
		transform: translate(0, -50%) rotate(-90deg);
	}

	.lightbox-slider .slick-next {
		-webkit-transform: translate(0, -50%) rotate(90deg);
		-ms-transform: translate(0, -50%) rotate(90deg);
		transform: translate(0, -50%) rotate(90deg);
	}

	.lightbox-slider .slick-dots {
		bottom: 0;
	}

	.lightbox-footer {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: flex-end;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		padding: 32px 0 16px;
	}

	.lightbox-footer .left-item {
		font-size: 15px;
		margin: 0;
	}

	.lightbox-footer .title {
		font-size: 24px;
	}

	.lightbox-footer .right-item {
		font-size: 16px;
		text-align: left;
	}

	.lightbox-footer .right-item>span {
		width: auto;
	}

	.lightbox-footer .right-item>span:before {
		width: 98px;
		-webkit-box-flex: 0;
		-ms-flex-positive: 0;
		flex-grow: 0;
	}
}

@media (min-width: 1024px) {
	#nav li:not(:first-child) {
		margin: 0 0 0 3.85em;
	}

	.hero-slogan h1,
	.hero-slogan .duplicate-title {
		font-size: 92px;
	}

	.services-section {
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
		padding: 7em 0 3em;
	}

	.header-services {
		margin: 0 0 50px;
	}

	.services-text {
		width: 35%;
		padding: 0 40px 0 0;
		margin: 0;
	}

	.services-list {
		width: 57%;
		margin: 0;
	}

	.services-body:not(:last-child) {
		margin: 0;
	}

	.list-services {
		min-width: 170px;
	}

	.clients-block {
		width: 100%;
		padding: 3.9em 0 4em;
	}

	.reimagined-section {
		padding: 55px 0 63px;
	}

	.section-header {
		margin: 0 0 3.7em;
	}

	.section-header h2 {
		margin: 0 0 1.25em;
	}

	.reimagined-list .entry-item {
		width: 33.3333%;
	}

	.reimagined-card .thumbnail-image {
		height: 244px;
	}

	.btn-load-more {
		padding: 53px 0 0;
	}

	.map-block {
		margin: 0 0 -34px;
		min-height: 385px;
		padding: 8.8% 0 0 18%;
		text-align: left;
	}

	.line-address-block {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}

	.contact-address {
		width: 23%;
		margin: 0 0 0 11.3%;
	}

	.contact-address .header-address {
		padding: 35px 0 10px;
	}

	.links-block {
		padding: 4em 0;
	}

	#footer {
		padding: 4em 0 3.2em;
	}

	div.lightbox .fancybox-button {
		width: 60px;
	}

	.lightbox-footer {
		padding: 70px 0 34px;
	}
}

@media (min-width: 1200px) {
	.visual-section .container {
		min-height: 810px;
	}

	.hero-slogan h1,
	.hero-slogan .duplicate-title {
		font-size: 117px;
	}

	.services-section {
		padding: 14.3em 0 7em;
	}

	.list-services {
		min-width: 200px;
	}

	.links-block {
		padding: 6.2em 0 5.2em;
	}

	#footer {
		padding: 5.4em 0 4.4em;
	}

	#footer:before {
		height: 45px;
	}

	#footer .logo {
		margin: 0 0 3.6em;
	}

	div.lightbox .fancybox-button {
		right: calc((100vw - 1200px)/2);
	}

	div.lightbox .fancybox-button.fancybox-button--arrow_left {
		left: 0;
		left: calc((100vw - 1200px)/2);
	}
}

@media (min-width: 1230px) {
	.hero-slogan {
		margin: 0;
	}
}

@media (max-width: 1023px) {
	.hero-slogan {
		width: 298px;
	}

	.hero-slogan .skew-first {
		width: 297px;
	}

	.hero-slogan .skew-first .inner {
		width: 300px;
	}

	.hero-slogan .skew-duplicate {
		width: 199px;
	}

	.hero-slogan .skew-duplicate .inner {
		width: 348px;
	}
}

@media all and (max-width: 800px) {
	.fancybox-thumbs {
		width: 110px;
	}

	.fancybox-show-thumbs .fancybox-inner {
		right: 110px;
	}

	.fancybox-thumbs>ul>li {
		max-width: calc(100% - 10px);
	}
}

@media (max-width: 767px) {
	.nav-active #header {
		background: #f7cb15;
	}

	.header-container .logo {
		width: 128px;
	}

	.drop {
		z-index: 1;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		-webkit-transform: translate(0, 40px);
		-ms-transform: translate(0, 40px);
		transform: translate(0, 40px);
		-webkit-transition-property: opacity, visibility, -webkit-transform;
		transition-property: opacity, visibility, -webkit-transform;
		transition-property: opacity, visibility, transform;
		transition-property: opacity, visibility, transform, -webkit-transform;
		-webkit-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-timing-function: linear;
		transition-timing-function: linear;
	}

	.nav-active .drop {
		opacity: 1;
		visibility: visible;
		-webkit-transform: translate(0, 0);
		-ms-transform: translate(0, 0);
		transform: translate(0, 0);
	}

	.header-fixed #nav {
		box-shadow: 0 7px 9px rgba(22, 27, 31, .3);
		
	}

	#nav li {
		width: 100%;
	}

	#nav li a.anchor-active,
	#nav li a:hover {
		background-color: #c60505;
	}

	.header-fixed #nav li a {
		background-color: #fff;
		color: #f7cb15;
	}

	.hero-slogan .skew-first {
		width: 259px;
		border-right: 4px solid #fff;
		color: #f7cb15;
	}

	.hero-slogan .skew-first .inner {
		padding: 1em 0 3em;
	}

	.hero-slogan .skew-duplicate {
		width: 236px;
	}

	.hero-slogan .skew-duplicate .inner {
		padding: 1.5em 0 2em;
		width: 346px;
	}

	.services-body {
		width: 100%;
	}

	.block-list .services-body:not(:first-child):before {
		display: none;
	}

	.line-address-block .contact-address:not(:last-child) {
		border-top: none;
	}

	.lightbox-header .logo {
		width: 128px;
	}

	.lightbox-footer .left-item,
	.lightbox-footer .right-item {
		width: 100%;
	}

	.lightbox-footer .subtitle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.lightbox-footer .subtitle>span:nth-of-type(1) {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.lightbox-footer .subtitle>span:nth-of-type(1):after {
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
		margin: 0 .8em;
	}
}

@media (max-width: 767px) and (max-height: 375px) {
	.lightbox-footer {
		padding: 8px 0;
	}

	.lightbox-footer .title {
		font-size: 13px;
	}

	.lightbox-footer .right-item {
		font-size: 12px;
	}
}

@media (max-width: 767px) and (max-height: 480px) {
	.lightbox-footer .left-item {
		font-size: 12px;
		margin: 0 0 2px;
	}
}

@-webkit-keyframes fancybox-rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes fancybox-rotate {
	from {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-webkit-keyframes gradient {
	0% {
		background-position: 0 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0 50%;
	}
}

@keyframes gradient {
	0% {
		background-position: 0 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0 50%;
	}
}
