/*================================================*/
/*                    MAIN STYLES                 */
/*================================================*/
html {
	height: 100%;
}

body {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	background-color: #fff;
	color: #000;
	font-family: "OpenSansHebrew", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	width: 100%;
	min-width: 320px;
	max-width: 100vw;
	min-height: 100%;
}

body.modal-show {
	display: block;
	overflow: hidden;
	height: 100%;
}

.nm-main-wrapper {
	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%;
	min-width: 100%;
	max-width: 100%;
	min-height: 100vh;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
}

.nm-hidden {
	display: none;
}

.nm-hidden-imp {
	display: none !important;
}

.nm-invisible {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	width: 0;
	height: 0;
	padding: 0;
	margin: 0;
}

.nm-clear:after {
	content: "";
	display: table;
	clear: both;
}

.text-left {
	text-align: left;
}

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

.text-right {
	text-align: right;
}

.text-justify {
	text-align: justify;
}

.text-justify-center {
	text-align: justify;
	text-align-last: center;
}

.text-underline {
	text-decoration: underline;
}

.colored {
	color: #ef1d82;
}

.block {
	display: block;
}

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

.flex-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.flex-grow {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.align-start {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.align-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.align-baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.justify-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.justify-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: none;
}

b,
strong {
	font-weight: 700;
}

.extra-bold {
	font-weight: 800;
}

a {
	font-family: inherit;
	color: inherit;
}

a:hover {
	color: #ef1d82;
	text-decoration: none;
}

.btn {
	cursor: pointer;
	display: block;
	text-align: center;
	font-family: "OpenSansHebrew", sans-serif;
	font-size: 20px;
	font-weight: 400;
	white-space: nowrap;
	text-decoration: none;
	text-transform: uppercase;
	background: none;
	background-position: left center;
	border: none;
	border-radius: 0;
	outline: none;
	width: auto;
	min-width: 0;
	max-width: none;
	height: 60px;
	padding: 0 20px;
	margin: 0;
	-webkit-transition: 0.5s ease-in-out;
	-o-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.btn:not([type='submit']) {
	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;
}

.btn:hover,
.btn:focus {
	text-decoration: none;
}

.btn--border {
	border: 2px solid transparent;
	background-color: transparent;
	background-image: -webkit-linear-gradient(320deg, transparent 0%, transparent 34%, #ef1d82 66%, #230a3d 100%);
	background-image: -o-linear-gradient(320deg, transparent 0%, transparent 34%, #ef1d82 66%, #230a3d 100%);
	background-image: linear-gradient(130deg, transparent 0%, transparent 34%, #ef1d82 66%, #230a3d 100%);
	background-size: 300% auto;
	z-index: 1;
}

.btn--border:hover {
	background-position: right center;
}

.btn--border--pink {
	border-color: #ef1d82;
	color: #fff;
}

.btn--border--pink:hover {
	color: #fff;
}

.btn--border--black {
	position: relative;
	border: none;
	background-image: -webkit-linear-gradient(320deg, transparent 0%, transparent 34%, #d11a77 66%, #781259 100%);
	background-image: -o-linear-gradient(320deg, transparent 0%, transparent 34%, #d11a77 66%, #781259 100%);
	background-image: linear-gradient(130deg, transparent 0%, transparent 34%, #d11a77 66%, #781259 100%);
	border-radius: 40px;
	color: #000;
	min-width: 260px;
	height: 64px;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: background 0.5s ease-in-out, color 0.2s 0.15s, -webkit-transform 0.2s ease-in;
	transition: background 0.5s ease-in-out, color 0.2s 0.15s, -webkit-transform 0.2s ease-in;
	-o-transition: background 0.5s ease-in-out, transform 0.2s ease-in, color 0.2s 0.15s;
	transition: background 0.5s ease-in-out, transform 0.2s ease-in, color 0.2s 0.15s;
	transition: background 0.5s ease-in-out, transform 0.2s ease-in, color 0.2s 0.15s, -webkit-transform 0.2s ease-in;
}

.btn--border--black:hover {
	color: #fff;
	-webkit-transform: scale(1.12);
	-ms-transform: scale(1.12);
	transform: scale(1.12);
	-webkit-transition: background 0.5s ease-in-out, color 0.2s 0.15s, -webkit-transform 0.2s ease-out;
	transition: background 0.5s ease-in-out, color 0.2s 0.15s, -webkit-transform 0.2s ease-out;
	-o-transition: background 0.5s ease-in-out, transform 0.2s ease-out, color 0.2s 0.15s;
	transition: background 0.5s ease-in-out, transform 0.2s ease-out, color 0.2s 0.15s;
	transition: background 0.5s ease-in-out, transform 0.2s ease-out, color 0.2s 0.15s, -webkit-transform 0.2s ease-out;
}

.btn--border--black:hover:after {
	opacity: 0;
}

.btn--border--black:after {
	position: absolute;
	display: block;
	content: "";
	border: 2px solid #000;
	border-radius: 40px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	-webkit-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	z-index: -1;
}

.btn--border--white {
	position: relative;
	border: none;
	background-image: -webkit-linear-gradient(320deg, transparent 0%, transparent 34%, #ef1d82 66%, #ad1f63 100%);
	background-image: -o-linear-gradient(320deg, transparent 0%, transparent 34%, #ef1d82 66%, #ad1f63 100%);
	background-image: linear-gradient(130deg, transparent 0%, transparent 34%, #ef1d82 66%, #ad1f63 100%);
	border-radius: 27px;
	-webkit-box-shadow: 0 2px 19px -3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 19px -3px rgba(0, 0, 0, 0.5);
	color: #fff;
	min-width: 232px;
	height: 51px;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: background 0.5s ease-in-out, -webkit-transform 0.2s ease-in;
	transition: background 0.5s ease-in-out, -webkit-transform 0.2s ease-in;
	-o-transition: background 0.5s ease-in-out, transform 0.2s ease-in;
	transition: background 0.5s ease-in-out, transform 0.2s ease-in;
	transition: background 0.5s ease-in-out, transform 0.2s ease-in, -webkit-transform 0.2s ease-in;
}

.btn--border--white:hover {
	color: #fff;
	-webkit-transform: scale(1.13);
	-ms-transform: scale(1.13);
	transform: scale(1.13);
	-webkit-transition: background 0.5s ease-in-out, -webkit-transform 0.2s ease-out;
	transition: background 0.5s ease-in-out, -webkit-transform 0.2s ease-out;
	-o-transition: background 0.5s ease-in-out, transform 0.2s ease-out;
	transition: background 0.5s ease-in-out, transform 0.2s ease-out;
	transition: background 0.5s ease-in-out, transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.btn--border--white:hover:after {
	opacity: 0;
}

.btn--border--white:after {
	position: absolute;
	display: block;
	content: "";
	border: 2px solid #fff;
	border-radius: 27px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
	-webkit-transition: 0.7s;
	-o-transition: 0.7s;
	transition: 0.7s;
	z-index: -1;
}

.btn--filled {
	color: #fff;
	background-color: transparent;
	background-image: -webkit-linear-gradient(320deg, #d71b75 0%, #e22295 50%, #e22295 150%, #d71b75 200%);
	background-image: -o-linear-gradient(320deg, #d71b75 0%, #e22295 50%, #e22295 150%, #d71b75 200%);
	background-image: linear-gradient(130deg, #d71b75 0%, #e22295 50%, #e22295 150%, #d71b75 200%);
	background-size: 200% auto;
}

.btn--filled:hover {
	background-position: right;
}

.input,
.textarea {
	display: block;
	font-size: 18px;
	font-family: "OpenSansHebrew", sans-serif;
	color: #000;
	background-color: #fff;
	border: none;
	outline: none;
	width: 100%;
	min-width: 0;
	max-width: none;
	height: 50px;
	padding: 0 10px;
	margin: 0;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

.input::-ms-clear,
.textarea::-ms-clear {
	display: none;
}

.input::-webkit-search-decoration,
.textarea::-webkit-search-decoration,
.input::-webkit-search-cancel-button,
.textarea::-webkit-search-cancel-button,
.input::-webkit-search-results-button,
.textarea::-webkit-search-results-button,
.input::-webkit-search-results-decoration,
.textarea::-webkit-search-results-decoration {
	display: none;
}

.input:focus::-webkit-input-placeholder,
.textarea:focus::-webkit-input-placeholder {
	opacity: 0;
}

.input:focus:-ms-input-placeholder,
.textarea:focus:-ms-input-placeholder {
	opacity: 0;
}

.input:focus::-moz-placeholder,
.textarea:focus::-moz-placeholder {
	opacity: 0;
}

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder {
	color: #000;
	opacity: 1;
	-webkit-transition: 0.4s ease-in-out 0.4s;
	-o-transition: 0.4s ease-in-out 0.4s;
	transition: 0.4s ease-in-out 0.4s;
}

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder {
	color: #000;
	opacity: 1;
	-webkit-transition: 0.4s ease-in-out 0.4s;
	-o-transition: 0.4s ease-in-out 0.4s;
	transition: 0.4s ease-in-out 0.4s;
}

.input::-moz-placeholder,
.textarea::-moz-placeholder {
	color: #000;
	opacity: 1;
	-webkit-transition: 0.4s ease-in-out 0.4s;
	-o-transition: 0.4s ease-in-out 0.4s;
	transition: 0.4s ease-in-out 0.4s;
}

.textarea {
	min-height: 100px;
	padding: 10px;
	resize: none;
	overflow: auto;
}

.textarea::-webkit-input-placeholder {
	line-height: 75px;
}

.textarea:-ms-input-placeholder {
	line-height: 70px;
}

.textarea::-moz-placeholder {
	line-height: 75px;
}

.text-pulse {
	-webkit-animation: pulsate 2s linear, increase 2s linear;
	animation: pulsate 2s linear, increase 2s linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
}

/*================================================*/
/*                    HEADER	                  */
/*================================================*/
.header {
	position: fixed;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.45)));
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.45) 100%);
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%);
	top: 0;
	left: 0;
	right: 0;
	-webkit-transition: 0.2s ease-in;
	-o-transition: 0.2s ease-in;
	transition: 0.2s ease-in;
	z-index: 30;
}

.header.scrolled {
	background: rgba(35, 10, 61, 0.95);
	-webkit-transition: 0.8s ease-out;
	-o-transition: 0.8s ease-out;
	transition: 0.8s ease-out;
}

.header.scrolled nav div > ul > li ul {
	background: rgba(35, 10, 61, 0.95);
}

.header__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.header .logo img {
	display: block;
	width: 132px;
	height: 64px;
}

.header nav {
	margin: 0 60px 0 auto;
}

.header nav div > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header nav div > ul > li {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 42px 30px;
}

.header nav div > ul > li:hover > ul {
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 1;
	visibility: visible;
	pointer-events: all;
	-webkit-transition: 0.4s 0s;
	-o-transition: 0.4s 0s;
	transition: 0.4s 0s;
}

.header nav div > ul > li ul {
	position: absolute;
	display: block;
	background: rgba(0, 0, 0, 0.45);
	top: 100%;
	left: 50%;
	width: auto;
	padding: 5px 15px 15px;
	opacity: 0;
	visibility: hidden;
	-webkit-transform-origin: top left;
	-ms-transform-origin: top left;
	transform-origin: top left;
	-webkit-transform: scale(0.9) translateX(-50%);
	-ms-transform: scale(0.9) translateX(-50%);
	transform: scale(0.9) translateX(-50%);
	-webkit-transition: 0.2s 0.2s;
	-o-transition: 0.2s 0.2s;
	transition: 0.2s 0.2s;
	will-change: transform, opacity;
	z-index: 10;
}

.header nav div > ul > li ul li a {
	margin: 7px 0;
}

.header nav div ul {
	position: relative;
}

.header nav div ul li {
	position: relative;
	display: block;
	text-align: center;
}

.header nav div ul li a {
	position: relative;
	display: inline-block;
	font-size: 18px;
	color: #fff;
	white-space: nowrap;
}

.header nav div ul li a:hover {
	color: #ef1d82;
}

.header nav div ul li.current a {
	color: #ef1d82;
}

.header .btn {
	font-size: 18px;
	border-radius: 26px;
	font-weight: 700;
	letter-spacing: 0.2px;
	-webkit-box-shadow: 0 2px 4px 3px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 4px 3px rgba(0, 0, 0, 0.1);
	min-width: 152px;
	height: 50px;
}

.header .nm-menu-expand {
	position: relative;
	display: none;
	cursor: pointer;
	background-color: transparent;
	width: 38px;
	min-width: 38px;
	max-width: 38px;
	height: 24px;
}

.header .nm-menu-expand span {
	display: block;
	position: absolute;
	background-color: #fff;
	border-radius: 2px;
	left: 0;
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	width: 100%;
	height: 4px;
}

.header .nm-menu-expand span:nth-child(1) {
	top: 0;
}

.header .nm-menu-expand span:nth-child(2),
.header .nm-menu-expand span:nth-child(3) {
	top: 10px;
	will-change: transform;
}

.header .nm-menu-expand span:nth-child(4) {
	top: 20px;
}

.header .nm-menu-expand.nm-active {
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.header .nm-menu-expand.nm-active span:nth-child(1) {
	top: 5px;
	width: 0;
	left: 50%;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

.header .nm-menu-expand.nm-active span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.header .nm-menu-expand.nm-active span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.header .nm-menu-expand.nm-active span:nth-child(4) {
	top: 10px;
	width: 0;
	left: 50%;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}

/*================================================*/
/*                    MAIN  	                  */
/*================================================*/
.nm-grow {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	width: 100%;
	min-height: 1px;
	margin: 0 auto;
}

main {
	width: 100%;
}

.nm-img-wrap {
	display: block;
}

.nm-img-wrap img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	margin: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.nm-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: bottom center;
}

.SumoSelect {
	-webkit-box-shadow: none;
	box-shadow: none;
	width: auto;
}

.SumoSelect > .CaptionCont {
	cursor: pointer;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	border: none;
	border-bottom: 3px solid #ef1d82 !important;
	border-radius: 0;
	padding: 0;
}

.SumoSelect > .CaptionCont > span {
	cursor: pointer;
	display: inline;
	color: #ef1d82;
	padding: 0;
}

.SumoSelect > .CaptionCont > label {
	cursor: pointer;
	position: static;
	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;
	width: auto;
	margin-right: 0.5em;
	-webkit-transform: scaleY(-1);
	-ms-transform: scaleY(-1);
	transform: scaleY(-1);
}

.SumoSelect > .CaptionCont > label > i {
	position: static;
	display: inline;
	background: none;
	font-style: normal;
	width: auto;
	height: auto;
	margin: 0;
}

.SumoSelect > .CaptionCont > label > i:before {
	content: "^";
	font-size: 0.8em;
	font-weight: 700;
}

.SumoSelect > .optWrapper {
	text-align: right;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 0.5em;
	width: auto;
	min-width: 100%;
	left: auto;
	right: 0;
	z-index: 9;
}

.SumoSelect > .optWrapper > .options {
	max-height: none;
}

.SumoSelect > .optWrapper > .options li.opt {
	background: #fff;
	border-bottom: 1px solid rgba(239, 29, 130, 0.3);
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

.SumoSelect > .optWrapper > .options li.opt:hover {
	background: #fff;
	color: #ef1d82;
}

.SumoSelect.open > .optWrapper {
	top: 100%;
}

.odometer-formatting-mark {
	display: none;
}

.js-parallax {
	direction: ltr;
}

.js-tabs-togglers > li.active {
	pointer-events: none;
}

.js-tabs-content > li:not(.active) {
	display: none;
}

.bg--grey {
	background-color: #faf9f9;
}

.h1 {
	font-size: 55px;
	font-weight: 700;
	letter-spacing: 5px;
	line-height: 1.2;
	margin-bottom: 0.5em;
}

.h2 {
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.8em;
}

.h2--px30 {
	font-size: 30px;
	font-weight: 800;
	margin-bottom: 0.5em;
}

.h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1em;
}

.screen-reader-text {
	display: none;
}

.nav-links {
	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;
	margin-top: 25px;
}

.nav-links span,
.nav-links a {
	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;
	color: #000;
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	white-space: nowrap;
	text-decoration: none;
	background: #f4f2f2;
	border: none;
	border-radius: 3px;
	padding: 0 10px;
	margin: 0 8px;
	height: 50px;
	min-width: 50px;
	width: auto;
}

.nav-links span {
	color: #898888;
	border: none;
	font-weight: 400;
}

.nav-links a {
	font-weight: 700;
}

.nav-links a:hover {
	color: #ef1d82;
}

.nav-links .dots {
	background: none;
	border: none;
	color: #898888;
}

.nav-links .prev,
.nav-links .next {
	min-width: 150px;
}

.modal {
	position: relative;
	color: #fff;
	border-radius: 26px;
	background: -webkit-linear-gradient(315deg, #ef1d82 0%, #230a3d 100%);
	background: -o-linear-gradient(315deg, #ef1d82 0%, #230a3d 100%);
	background: linear-gradient(135deg, #ef1d82 0%, #230a3d 100%);
	-webkit-box-shadow: 0 2px 47px 3px rgba(0, 0, 0, 0.5);
	box-shadow: 0 2px 47px 3px rgba(0, 0, 0, 0.5);
	max-width: 550px;
}

.modal__wrapper {
	position: relative;
	padding: 43px 48px;
}

.modal__close {
	position: absolute;
	display: block;
	font-size: 0;
	color: transparent;
	top: 56px;
	left: 48px;
	width: 26px;
	height: 26px;
	z-index: 2;
}

.modal__close:before,
.modal__close:after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	height: 2px;
	width: 30px;
	top: 50%;
	left: 50%;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

.modal__close:before {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(45deg);
	transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.modal__close:after {
	-webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	-ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
	transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.modal__close:hover:before,
.modal__close:hover:after {
	background: #230a3d;
}

.modal__caption {
	text-align: right;
	font-size: 36px;
	font-weight: 700;
	border-bottom: 1px solid #fff;
	margin-bottom: 17px;
	padding-left: 40px;
}

.modal__text {
	text-align: right;
	font-size: 20px;
	letter-spacing: 0.5px;
	line-height: 1.4;
	margin-bottom: 20px;
}

.modal .input {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 1px 30px 0 rgba(0, 0, 0, 0.43);
	box-shadow: inset 0 1px 30px 0 rgba(0, 0, 0, 0.43);
	font-size: 16px;
	height: 32px;
}

.modal .input::-webkit-input-placeholder {
	text-align: center;
	color: #d71b75;
}

.modal .input:-ms-input-placeholder {
	text-align: center;
	color: #d71b75;
}

.modal .input::-moz-placeholder {
	text-align: center;
	color: #d71b75;
}

.modal .input-wrap {
	margin-bottom: 13px;
}

.modal .btn {
	background-image: -webkit-linear-gradient(315.28deg, #ef1d82 0%, #ad1f63 100%);
	background-image: -o-linear-gradient(315.28deg, #ef1d82 0%, #ad1f63 100%);
	background-image: linear-gradient(134.72deg, #ef1d82 0%, #ad1f63 100%);
	-webkit-box-shadow: 0 2px 46px 0 rgba(0, 0, 0, 0.34);
	box-shadow: 0 2px 46px 0 rgba(0, 0, 0, 0.34);
	border-radius: 2px;
	font-size: 16px;
	font-weight: 800;
	width: 100%;
	height: 32px;
}

.modal .btn-wrap {
	margin-top: 16px;
}

body:not(.loaded) .section--logos-slider .marquee {
	display: none !important;
}

.section__wrapper {
	width: 100%;
	max-width: 2048px;
	padding: 0 30px;
	margin: 0 auto;
}

.section__wrapper--fullhd {
	padding: 0 !important;
}

.section__wrapper--big {
	max-width: 1660px;
}

.section__wrapper--mid {
	max-width: 1400px;
}

.section__wrapper--small {
	max-width: 1170px;
}

.section__wrapper--1000 {
	max-width: 1060px;
}

.section__wrapper--960 {
	max-width: 960px;
}

.section--first {
	position: relative;
	text-align: center;
	color: #fff;
	overflow: hidden;
	padding-bottom: 1vw;
}

.section--first:before {
	position: absolute;
	display: block;
	-webkit-box-shadow: 0 7px 55px 15px rgba(0, 0, 0, 0.2);
	box-shadow: 0 7px 55px 15px rgba(0, 0, 0, 0.2);
	right: 0;
	left: 0;
	bottom: 4vw;
	z-index: 3;
}

.section--first:after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	border-radius: 50%;
	right: 50%;
	width: 1500vw;
	height: 1500vw;
	top: 100%;
	-webkit-transform: translate(50%, -0.115%) translateY(-1vw);
	-ms-transform: translate(50%, -0.115%) translateY(-1vw);
	transform: translate(50%, -0.115%) translateY(-1vw);
	z-index: 2;
}

.section--first--grey:after {
	background: #f5f5f5;
}

.section--first .section__bg {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #ef1d82;
	width: 100%;
	z-index: 1;
}

.section--first .section__bg:after {
	position: absolute;
	display: block;
	content: "";
	opacity: 0.85;
	background: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.section--first .section__wrapper {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 350px;
}

.section--first .section__wrapper:before,
.section--first .section__wrapper:after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	width: 100vw;
	top: 50%;
	height: 3px;
	pointer-events: none;
	z-index: 2;
}

.section--first .section__wrapper:before {
	right: calc(100% - 30px);
}

.section--first .section__wrapper:after {
	left: calc(100% - 30px);
}

.section--first .section__inner {
	position: relative;
	width: 100%;
	padding: 120px 0 4vw;
	z-index: 2;
}

.section--first .text {
	font-size: 24px;
	letter-spacing: 5px;
}

.section--first .text--sup {
	font-weight: 300;
	margin-bottom: 0.1em;
}

.section--first .text--bub {
	font-weight: 400;
}

.section--logos-slider {
	direction: ltr;
	
	padding-top: 20px;
	padding-bottom: 30px;
}

.section--logos-slider--grey {
	background-color: #fbfbfb;
	border-top: 1px solid #eeecec;
	border-bottom: 1px solid #eeecec;
	padding: 35px 0;
}

.section--logos-slider--grey .marquee:before,
.section--logos-slider--grey .marquee:after {
	-webkit-box-shadow: 0 0 50px 30px #fbfbfb !important;
	box-shadow: 0 0 50px 30px #fbfbfb !important;
}

.section--logos-slider--big {
	padding: 80px 0;
}

.section--logos-slider .section__caption {
	font-size: 45px;
	font-weight: 400;
	margin-bottom: 2em;
}

.section--logos-slider .marquee {
	position: relative;
	overflow: hidden;
}

.section--logos-slider .marquee:before,
.section--logos-slider .marquee:after {
	position: absolute;
	display: block;
	content: "";
	top: 0;
	bottom: 0;
	-webkit-box-shadow: 0 0 50px 30px #fff;
	box-shadow: 0 0 50px 30px #fff;
	z-index: 2;
}

.section--logos-slider .marquee:before {
	right: 0;
}

.section--logos-slider .marquee:after {
	left: 0;
}

.section--logos-slider .marquee > div {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.section--logos-slider .js-marquee {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	float: none !important;
}

.section--logos-slider .js-marquee .nm-img-wrap {
	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;
	height: 65px;
	margin: 0 30px;
}

.section--logos-slider .js-marquee .nm-img-wrap img {
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
	/*-webkit-filter: grayscale(100%) brightness(0);
  filter: grayscale(100%) brightness(0); */
	max-width: 184px;
}

.section--rounded {
	position: relative;
	text-align: center;
	color: #fff;
	font-size: 20px;
	overflow: hidden;
}

.section--rounded:before,
.section--rounded:after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	border-radius: 50%;
	right: 50%;
	width: 550vw;
	height: 550vw;
	z-index: 2;
}

.section--rounded:before {
	bottom: 100%;
	-webkit-transform: translate(50%, 0.85%);
	-ms-transform: translate(50%, 0.85%);
	transform: translate(50%, 0.85%);
}

.section--rounded:after {
	top: 100%;
	-webkit-transform: translate(50%, -0.85%);
	-ms-transform: translate(50%, -0.85%);
	transform: translate(50%, -0.85%);
}

.section--rounded .section__bg {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-color: #ef1d82;
	width: 100%;
	z-index: 1;
}

.section--rounded .section__bg:after {
	position: absolute;
	display: block;
	content: "";
	opacity: 0.85;
	background: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.section--rounded .section__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 400px;
}

.section--rounded .section__inner {
	position: relative;
	width: 100%;
	padding: 7vw 0;
	z-index: 2;
}

.section--boxes--double {
	padding: 80px 0 30px;
}

.section--boxes--double .section__inner {
	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;
}

.section--boxes--double .item {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-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;
	color: #fff;
	width: 48.1%;
	min-height: 400px;
	margin-bottom: 50px;
	overflow: hidden;
}

.section--boxes--double > .section__wrapper.section__wrapper--mid {
	max-width: 1000px;
}

.section--boxes--double .item__inner:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.18);
	z-index: 0;
}

.section--boxes--double .item__inner > * {
	z-index: 3;
}

.section.nm-bg.section--rounded.section--icons .section__inner {
	padding: 4vw 0px;
}

.section--boxes--double .item.hover .item__under {
	-webkit-filter: blur(5px);
	filter: blur(5px);
}

.section--boxes--double .item.hover .item__under:after {
	opacity: 1;
}

.section--boxes--double .item.hover .item__btn-wrap {
	height: 51px;
	opacity: 1;
	visibility: visible;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	-webkit-transition: 0.2s ease-out 0.3s;
	-o-transition: 0.2s ease-out 0.3s;
	transition: 0.2s ease-out 0.3s;
}

.section--boxes--double .item__under {
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	z-index: 1;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	will-change: filter;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
}

.section--boxes--double .item__under:after {
	position: absolute;
	display: block;
	content: "";
	background-color: rgba(0, 0, 0, 0.6);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	will-change: opacity;
}

.section--boxes--double .item__inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 30px 10%;
	width: 100%;
	-webkit-transition: 0.4s ease-in-out;
	-o-transition: 0.4s ease-in-out;
	transition: 0.4s ease-in-out;
	z-index: 2;
}

.section--boxes--double .item__caption {
	font-weight: 800;
	width: 100%;
	margin-bottom: 0;
}

.section--boxes--double .item__text {
	font-size: 18px;
	line-height: 1.5;
	width: 100%;
	margin: 40px 0;
}

.section--boxes--double .item__content {
	display: none;
	width: 100%;
	will-change: height, opacity;
}

.section--boxes--double .item__btn-wrap {
	height: 0;
	visibility: hidden;
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	will-change: transform, opacity, height;
	-webkit-transition: 0.2s ease-in 0s;
	-o-transition: 0.2s ease-in 0s;
	transition: 0.2s ease-in 0s;
}

.section--icons {
	text-align: center;
}

.section--icons .nm-bg {
	padding-top: 30px;
}

.section--numbers {
	text-align: center;
	padding: 50px 0 50px;
}

.section--numbers .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	padding-top: 35px;
}

.section--numbers .item {
	width: 25%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 20px 15px 10px;
}

.section--numbers .item:not(:last-child) {
	border-left: 3px solid rgba(239, 71, 116, 0.09);
}

.section--numbers .item__counter {
	direction: ltr;
	font-size: 90px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -3px;
}

.section--numbers .item__caption {
	font-weight: 400;
	color: #ef1d82;
}

.section--stories {
	padding: 1px 0 1px;
}

.section--stories--nocaption .slider--stories {
	margin-top: 0 !important;
}

.section--stories--nocaption .slider--stories .item__caption {
	font-size: 45px;
}

.slider--stories .item:last-child {
	margin-bottom: 25px;
}


.section--projects {
	text-align: center;
	padding: 50px 0px;
}

.section--projects .btn-wrap {
	margin-top: 10px;
}

.section--facebook {
	text-align: center;
	background-color: #faf9f9;
	padding: 40px 0px;
}

.section--facebook .h2 {
	margin-bottom: 0;
}

.section--facebook__overall {
	font-size: 16px;
	font-weight: 700;
	margin: 40px 0 20px;
}

.section--text {
	font-size: 16px;
	line-height: 2.13;
	margin: 20px 0 50px;
}

.section--text p {
	margin-bottom: 2em;
}

.section--gradient-icons {
	position: relative;
	background-color: #fbfbfb;
	-webkit-box-shadow: 0 21px 26px -4px rgba(0, 0, 0, 0.03);
	box-shadow: 0 21px 26px -4px rgba(0, 0, 0, 0.03);
	height: 225px;
	margin-bottom: 10px;
}

.section--gradient-icons .section__bg {
	position: absolute;
	background: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	top: 0;
	bottom: 0;
	right: 0;
	width: 50%;
	z-index: 1;
}

.section--gradient-icons .section__wrapper {
	position: relative;
	overflow: hidden;
	z-index: 2;
}

.section--gradient-icons .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.section--gradient-icons .section__inner__caption {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	color: #fff;
	width: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-right: 33px;
}

.section--gradient-icons .section__inner__caption:after {
	position: absolute;
	display: block;
	content: "";
	background: #d71b75;
	right: 0;
	width: 2px;
	top: 37px;
	bottom: 37px;
}

.section--gradient-icons .section__inner__caption__main {
	font-size: 58px;
	font-weight: 700;
}

.section--gradient-icons .section__inner__caption__sub {
	font-size: 35px;
	letter-spacing: 0.2em;
	font-weight: 300;
}

.section--gradient-icons .section__inner__icons {
	position: relative;
	background-color: #fbfbfb;
	width: 530px;
	min-width: 530px;
}

.section--gradient-icons .section__inner__icons:after {
	position: absolute;
	display: block;
	content: "";
	left: 100%;
	top: 0;
	bottom: 0;
	border-style: solid;
	border-width: 225px 0 0 80px;
	border-color: transparent transparent transparent #fbfbfb;
	z-index: 3;
}

.section--gradient-icons .slider--icons {
	text-align: center;
	width: 100%;
	height: 225px;
	padding: 10px 40px 0 0;
	margin: 0;
}

.section--gradient-icons .slider--icons .item {
	padding: 30px 10px;
}

.section--gradient-icons .slider--icons .item__icon {
	margin-bottom: 20px;
}

.section--gradient-icons .slider--icons .item__icon .nm-img-wrap {
	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;
	background: #000;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
}

.section--gradient-icons .slider--icons .item__icon .nm-img-wrap:hover {
	-webkit-box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.2);
	box-shadow: 0 8px 20px -3px rgba(0, 0, 0, 0.2);
}

.section--gradient-icons .slider--icons .item__icon img {
	max-width: 70%;
	max-height: 60%;
	margin: 0;
}

.section--gradient-icons .slider--icons .item__caption {
	font-size: 14px;
	font-weight: 700;
	color: #ef1d82;
	width: 100px;
	margin: 0 auto;
}

.section--contact-footer {
	padding: 75px 0 20px;
}

.section--contact-footer .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1160px;
}

.section--contact-footer .section__image {
	width: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-left: 15px;
}

.section--contact-footer .section__form {
	border-right: 2px solid #ef1d82;
	font-size: 18px;
	line-height: 1.67;
	width: 530px;
	min-width: 530px;
	padding-right: 20px;
	padding-bottom: 15px;
}

.section--contact-footer .section__caption {
	font-size: 45px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 0.2em;
}

.section--contact-footer .section__phone {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	white-space: nowrap;
	font-size: 36px;
	margin: 20px 0;
}

.section--contact-footer .section__phone img {
	display: block;
	margin-left: 15px;
}

.section--contact-footer .form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 30px;
}

.section--contact-footer .form > * {
	width: 23%;
}

.section--contact-footer .input {
	text-align: center;
	font-size: 18px;
	border: 1px solid rgba(151, 151, 151, 0.17);
	border-radius: 8px;
	height: 60px;
}

.section--contact-footer .input-wrap {
	position: relative;
}

.section--contact-footer .btn {
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	width: 100%;
	height: 60px;
}

.section--all-projects {
	text-align: center;
	padding: 60px 0 10px;
}

.section--all-projects .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.section--all-projects .item {
	width: 30%;
	padding: 0;
	margin-bottom: 0px;
}

.section--all-projects .item:not(:nth-child(3n+3)) {
	margin-left: 5%;
}

.section--project-video {
	position: relative;
	background: #f5f5f5;
	padding-bottom: 10px;
	z-index: 2;
}

.section--project-video .section__inner {
	-webkit-transform: translateX(9.6%);
	-ms-transform: translateX(9.6%);
	transform: translateX(9.6%);
}

.section--project-video .section__video {
	pointer-events: none;
	width: 100% !important;
	height: 100% !important;
}

.section--project-video .section__video-wrapper {
	position: relative;
	background: url("../img/project-video-container.png") no-repeat center center;
	background-size: 100% 100%;
	width: 100%;
	max-width: 918px;
	margin: 0 auto;
	-webkit-transform: translateY(-115px);
	-ms-transform: translateY(-115px);
	transform: translateY(-115px);
}

.section--project-video .section__video-wrapper:before {
	display: block;
	content: "";
	padding-top: 58.714%;
}

.section--project-video .inline-YTPlayer {
	position: absolute !important;
	top: 4.2%;
	bottom: 35.5%;
	left: 9.1%;
	right: 28.7%;
	z-index: 3;
}

.section--project-parallax {
	-webkit-box-shadow: 0 20px 36px 0 rgba(0, 0, 0, 0.07);
	box-shadow: 0 20px 36px 0 rgba(0, 0, 0, 0.07);
}

.section--project-parallax > * {
	height: 960px;
}

.section--project-images {
	padding: 290px 0;
}

.section--project-images .section__inner {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section--project-images .section__inner img {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.section--project-images .section__inner img:nth-child(1),
.section--project-images .section__inner img:nth-child(3) {
	max-width: 45%;
}

.section--project-images .section__inner img:nth-child(2) {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	max-width: 30%;
	max-height: 150%;
	z-index: 2;
}

.section--blog {
	padding: 0px 0 1px;
}

.section--blog .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.section--blog .main-block {
	width: calc(100% - 326px);
	-ms-flex-item-align: start;
	align-self: flex-start;
	padding-left: 44px;
}

.section--blog .load-more {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
}

.section--blog .load-more a:after {
	display: inline-block;
	content: "^";
	font-size: 1.2em;
	margin-right: 0.5em;
	-webkit-transform: scaleY(-1) scaleX(1.5);
	-ms-transform: scaleY(-1) scaleX(1.5);
	transform: scaleY(-1) scaleX(1.5);
}

.section--services {
	padding-top: 20px;
}

.section--numbers2 {
	text-align: center;
	background-color: #fbfbfb;
}

.section--numbers2 .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.section--numbers2 .item {
	background: #fff;
	border: 1px solid #eeecec;
	width: 25%;
	padding: 130px 5px 100px;
	margin: 0 -0.5px;
}

.section--numbers2 .item__counter {
	direction: ltr;
	color: #ef1d82;
	font-size: 76px;
	letter-spacing: -3px;
	line-height: 1;
}

.section--numbers2 .item__caption {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	max-width: 155px;
	margin: -5px auto 0;
}

.section--textarticles {
	background-color: #faf9f9;
	background-size: contain;
	background-position: top center;
	background-repeat: no-repeat;
	padding: 70px 0 45px;
}

.section--textarticles__inner {
	width: calc(100% - 370px);
}

.section--textarticles__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.section--textarticles__items.js-show-part:not(.expanded) .section--textarticles__item:nth-child(n+5) {
	display: none;
}

.section--textarticles__item {
	width: 42%;
	font-size: 19px;
	padding-right: 24px;
	margin-bottom: 60px;
}

.section--textarticles__item__title {
	position: relative;
	font-weight: 700;
	margin-bottom: 1.33em;
}

.section--textarticles__item__title:before {
	position: absolute;
	right: -23px;
	top: .4em;
	display: block;
	content: '';
	width: 11px;
	height: 11px;
	background-color: #e51d7f;
}

.section--textarticles__item__text {
	line-height: 1.5;
}

.section--textarticles__item__text .readmore {
	display: inline-block;
	color: #e51d7f;
	font-weight: 700;
	text-decoration: underline;
}

.section--textarticles__item__text .readmore:hover {
	text-decoration: none;
}

.section--textarticles__loadmore {
	text-align: center;
}

.section--faq {
	padding: 75px 0;
}

.section--faq .faq__block:not(:last-child) {
	border-bottom: 1px solid #eeecec;
}

.section--faq .faq__block.opened .faq__question {
	font-weight: 700;
}

.section--faq .faq__block.opened .faq__question:after {
	-webkit-transform: translateY(-50%) rotate(-90deg) scaleY(1.6);
	-ms-transform: translateY(-50%) rotate(-90deg) scaleY(1.6);
	transform: translateY(-50%) rotate(-90deg) scaleY(1.6);
}

.section--faq .faq__question {
	position: relative;
	cursor: pointer;
	padding: 24px 12px 24px 40px;
}

.section--faq .faq__question:before {
	position: absolute;
	display: block;
	content: "";
	background: #ef1d82;
	top: 16px;
	bottom: 16px;
	right: 0;
	width: 2px;
}

.section--faq .faq__question:after {
	position: absolute;
	display: block;
	content: ">";
	color: #ef1d82;
	font-size: 24px;
	font-weight: 400;
	top: 50%;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: translateY(-50%) scaleY(1.6);
	-ms-transform: translateY(-50%) scaleY(1.6);
	transform: translateY(-50%) scaleY(1.6);
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
	left: 15px;
}

.section--faq .faq__answer {
	display: none;
	font-size: 14px;
	line-height: 2.15;
	max-width: 665px;
	padding: 0 12px 28px 40px;
}

.section--map #map {
	border-bottom: 2px solid #eeecec;
	height: 433px;
}

.section--contact {
	text-align: center;
	padding-bottom: 100px;
}

.section--contact .section__inner {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	max-width: 1000px;
	margin: 105px auto 0;
}

.section--contact .section__form {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	border: none;
	width: 10%;
	min-width: 440px;
	max-width: calc(100% - 240px);
	padding: 0;
}

.section--contact .section__info {
	margin-left: 90px;
}

.section--contact .info__block:not(:last-child) {
	margin-bottom: 42px;
}

.section--contact .info__icon {
	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;
	height: 55px;
	margin-bottom: 12px;
}

.section--contact .info__title {
	margin-bottom: 0.4em;
}

.section--contact .info__text {
	font-size: 24px;
	line-height: 1.3;
}

.section--contact .form {
	display: block;
	margin-top: 0;
}

.section--contact .form > * {
	width: 100%;
}

.section--contact .form .input {
	border-radius: 3px;
	background-color: rgba(216, 216, 216, 0.31);
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.13);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.13);
	font-size: 24px;
	color: #000;
	height: 55px;
}

.section--contact .form .input-wrap {
	margin-bottom: 16px;
}

.section--contact .form .double-inputs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section--contact .form .double-inputs > * {
	width: 48.8%;
}

.section--contact .form .btn {
	border-radius: 6px;
	background-image: -webkit-linear-gradient(314.59deg, #c71974 0%, #200937 50%, #c71974 100%);
	background-image: -o-linear-gradient(314.59deg, #c71974 0%, #200937 50%, #c71974 100%);
	background-image: linear-gradient(135.41deg, #c71974 0%, #200937 50%, #c71974 100%);
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.13);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.13);
	font-size: 24px;
	height: 50px;
}

.section--success-general {
	font-size: 20px;
	letter-spacing: 0.5px;
	line-height: 2.5;
	padding: 50px 0 100px;
}

.section--success-general .h2 {
	letter-spacing: 3px;
}

.section--success-image {
	font-size: 0;
	padding-top: 50px;
	margin-bottom: 160px;
}

.section--success-image .image-notebook {
	position: relative;
	margin-top: -15%;
	-webkit-transform: translateY(23.3%);
	-ms-transform: translateY(23.3%);
	transform: translateY(23.3%);
}

.section--success-image .image-placer {
	position: absolute;
	top: 5.4%;
	left: 12.1%;
	right: 12.1%;
	bottom: 29.1%;
	overflow: hidden;
}

.section--success-image .image-placer img {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	max-height: none;
}

.section--success-challenge {
	font-size: 24px;
	line-height: 2.1;
	padding: 40px 0 90px;
}

.section--success-whatwedo {
	font-size: 16px;
	line-height: 1.9;
	padding: 40px 0 90px;
}

.section--success-whatwedo .section__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.section--success-whatwedo .section__inner > * {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	width: 10%;
	max-width: 270px;
	padding: 0 5px;
}

.section--success-results {
	padding-bottom: 145px;
}

.section--search {
	padding: 60px 0 100px;
}

.section--search article {
	margin-bottom: 60px;
}

.slider--icons {
	font-size: 16px;
	margin: 65px -20px 60px;
}

.slider--icons .item {
	padding: 30px 7% 0;
	min-height:455px;
}

.slider--icons .item__icon {
	display: block;
	font-size: 0;
	margin-bottom: 12px;
}

.slider--icons .item__icon .nm-img-wrap {
	outline: none;
	display: inline-block;
}

.slider--icons .item__icon .nm-img-wrap:hover img,
.slider--icons .item__icon .nm-img-wrap:focus img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.slider--icons .item__icon img {
	margin: 0 auto;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
	will-change: transform;
}

.slider--icons .item__caption {
	font-size: 22px;
}

.slider--stories {
	margin-top: 50px;
}

.slider--stories .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	outline: none;
	margin-bottom: 50px;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

.slider--stories .item:nth-child(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.slider--stories .item:nth-child(even) .item__image {
	-webkit-box-shadow: -60px 34px 44px -25px rgba(0, 0, 0, 0.15);
	box-shadow: -60px 34px 44px -25px rgba(0, 0, 0, 0.15);
}

.slider--stories .item:nth-child(even) .item__image:hover {
	-webkit-box-shadow: -40px 34px 54px -5px rgba(0, 0, 0, 0.3);
	box-shadow: -40px 34px 54px -5px rgba(0, 0, 0, 0.3);
}

.slider--stories .item:nth-child(even) .item__text {
	padding-right: 10%;
}

.slider--stories .item:nth-child(odd) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.slider--stories .item:nth-child(odd) .item__image {
	-webkit-box-shadow: 60px 34px 44px -25px rgba(0, 0, 0, 0.15);
	box-shadow: 60px 34px 44px -25px rgba(0, 0, 0, 0.15);
}

.slider--stories .item:nth-child(odd) .item__image:hover {
	-webkit-box-shadow: 40px 34px 54px -5px rgba(0, 0, 0, 0.3);
	box-shadow: 40px 34px 54px -5px rgba(0, 0, 0, 0.3);
}

.slider--stories .item:nth-child(odd) .item__text {
	padding-left: 10%;
}

.slider--stories .item__image {
	position: relative;
	display: block;
	border-radius: 5px;
	width: 48.1%;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.7s ease;
	transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.7s ease;
	-o-transition: transform 0.2s ease, box-shadow 0.7s ease;
	transition: transform 0.2s ease, box-shadow 0.7s ease;
	transition: transform 0.2s ease, box-shadow 0.7s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.7s ease;
	will-change: transform;
}

.slider--stories .item__image:hover .item__image__inner {
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}

.slider--stories .item__image:hover .item__image__under {
	-webkit-filter: blur(3px);
	filter: blur(3px);
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.slider--stories .item__image__inner {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	width: 100%;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
}

.slider--stories .item__image__inner:before {
	display: block;
	content: "";
	padding-top: 75%;
}

.slider--stories .item__image__under {
	position: absolute;
	border-radius: 5px;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
	-webkit-filter: blur(0px);
	filter: blur(0px);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	will-change: filter, transform;
	z-index: 1;
}

.slider--stories .item__image__under:after {
	position: absolute;
	display: block;
	content: "";
	/*background: -webkit-linear-gradient(314.59deg, rgba(239, 29, 130, 0.9) 0%, rgba(35, 10, 61, 0.9) 100%);
	background: -o-linear-gradient(314.59deg, rgba(239, 29, 130, 0.9) 0%, rgba(35, 10, 61, 0.9) 100%);
	background: linear-gradient(135.41deg, rgba(239, 29, 130, 0.9) 0%, rgba(35, 10, 61, 0.9) 100%); */
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 2;
	opacity: 0.55;
}

.slider--stories .item__image__over {
	position: absolute;
	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;
	top: 361;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 15px;
	z-index: 3;
}

.slider--stories .item__image__over img {
	margin: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.slider--stories .item__text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 48.1%;
}

.slider--stories .item__text > * {
	width: 100%;
}

.slider--stories .item__text__small {
	font-size: 16px;
	margin-bottom: 1.7em;
}

.slider--stories .item__text__big {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 1.7em;
}

.slider--stories .item__caption {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 1em;
}

.slider--stories .slick-arrow:before {
	background-image: url("../img/arrow-right-black.svg");
}

.slider--projects {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin: 0 -8px;
}

.slider--facebook .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 47px 0 97px;
}

.slider--facebook .item > * {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.slider--facebook .item__inner {
	background-color: #faf9f9;
	-webkit-box-shadow: 30px 30px 67px 0 rgba(0, 0, 0, 0.07);
	box-shadow: 30px 30px 67px 0 rgba(0, 0, 0, 0.07);
	padding: 80px 12.8% 40px;
	width: 100%;
}

.slider--facebook .item__rating {
	margin-bottom: 10px;
}

.slider--facebook .item__rating img {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 4px;
}

.slider--facebook .item__author {
	color: #230a3d;
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 0.3em;
}

.slider--facebook .item__author__info {
	font-size: 16px;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

.slider--facebook .item__text {
	font-size: 16px;
	line-height: 1.9;
	border-top: 2px solid #000;
	padding-top: 20px;
}

.slider--facebook .slick-dots {
	bottom: 60px;
}

.slider--blog .item--blog:after {
	content: none;
}

.slider--blog .item--blog .item__text {
	padding: 28px 40px 20px;
}

.slider--blog .item--blog .item__caption {
	font-size: 24px;
	margin-bottom: 1.2em;
}

.slider--blog .item--blog .item__info {
	font-size: 14px;
}

.slider--blog .slick-dots {
	bottom: auto;
	top: 75px;
}

.slider--blog .slick-dots li {
	margin: 0 5px;
}

.slider--blog .slick-dots li.slick-active button {
	background: #d8d8d8;
}

.slider--blog .slick-dots li:not(.slick-active) button:hover {
	background: rgba(216, 216, 216, 0.7);
}

.slider--blog .slick-dots button {
	width: 16px;
	height: 16px;
	border: 1px solid #979797;
	background: rgba(216, 216, 216, 0.3);
}

.slider--posts {
	position: relative;
	margin: 0 -11px;
}

.slider--posts:before,
.slider--posts:after {
	position: absolute;
	display: block;
	content: "";
	background: #fff;
	top: 0;
	bottom: 0;
	width: 11px;
	z-index: 8;
}

.slider--posts:before {
	left: 0;
}

.slider--posts:after {
	right: 0;
}

.slider--posts .slide {
	padding: 0 11px;
}

.slider--posts .slick-arrow {
	width: 16px;
	height: 32px;
}

.slider--posts .slick-arrow:before {
	background-image: url("../img/arrow-right-black.svg");
}

.slider--posts .slick-next {
	right: 24px;
}

.slider--posts .slick-prev {
	left: 24px;
}

.item--project {
	outline: none;
	padding: 0 8px;
	width: 33.333%;
	margin-bottom: 25px;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
	margin-bottom: 0px;
	
}

.item--project .item__text {
	height: 30px;
}

.item--project .item__image {
	display: block;
	-webkit-box-shadow: 12px -9px 26px 0 rgba(0, 0, 0, 0.07);
	box-shadow: 12px -9px 26px 0 rgba(0, 0, 0, 0.07);
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.5s ease;
	transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.5s ease;
	-o-transition: transform 0.2s ease, box-shadow 0.5s ease;
	transition: transform 0.2s ease, box-shadow 0.5s ease;
	transition: transform 0.2s ease, box-shadow 0.5s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.5s ease;
	will-change: transform;
	margin-bottom: 15px;
}

.item--project .item__image:hover {
	-webkit-box-shadow: 16px -13px 40px 0 rgba(0, 0, 0, 0.15);
	box-shadow: 16px -13px 40px 0 rgba(0, 0, 0, 0.15);
}

.item--project .item__image:hover .item__image__inner {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
}

.item--project .item__image:hover .item__image__under {
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	transform: scale(1.2);
}

.item--project .item__image__inner {
	position: relative;
	overflow: hidden;
	width: 100%;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
}

.item--project .item__image__inner:before {
	display: block;
	content: "";
	padding-top: 100%;
}

.item--project .item__image__under {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: 0.4s;
	-o-transition: 0.4s;
	transition: 0.4s;
	will-change: transform;
	z-index: 1;
}

.item--project .item__image__over {
	position: absolute;
	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;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
}

.item--project .item__text__small {
	font-size: 14px;
	letter-spacing: 2px;
}

.item--project .item__caption {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 0.4em;
}

.item--project--main {
	width: 66.666%;
}

.item--project--main .item__caption {
	color: #fff;
	font-size: 72px;
	font-weight: 300;
	letter-spacing: 20px;
}

.item--project--main .item__caption * {
	color: #fff;
}

.item--project--main .item__image {
	-webkit-box-shadow: 69px -79px 53px -43px rgba(0, 0, 0, 0.15) !important;
	box-shadow: 69px -79px 53px -43px rgba(0, 0, 0, 0.15) !important;
}

.item--project--main .item__image__inner {
	overflow: visible;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}

.item--project--main .item__image__inner:before {
	padding-top: calc(50% - 8px);
}

.item--project--main .item__image__under {
	background-image: -webkit-linear-gradient(222.83deg, #ef1d82 0%, #230a3d 100%);
	background-image: -o-linear-gradient(222.83deg, #ef1d82 0%, #230a3d 100%);
	background-image: linear-gradient(227.17deg, #ef1d82 0%, #230a3d 100%);
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}

.item--project--main .item__image__over {
	padding: 3% 10%;
}

.item--project--main .item__image__over:before,
.item--project--main .item__image__over:after {
	position: absolute;
	display: block;
	content: "";
	top: calc(50% + 3px);
	width: 20%;
	height: 3px;
	z-index: 4;
}

.item--project--main .item__image__over:before {
	background: #fff;
	right: 0;
}

.item--project--main .item__image__over:after {
	background: #000;
	left: 100%;
}

.item--blog {
	position: relative;
	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;
	border-radius: 3px;
	width: 100%;
}

.item--blog:before {
	display: block;
	content: "";
	padding-top: 66.6%;
}

.item--blog:after {
	position: absolute;
	display: block;
	content: "";
	background: -webkit-linear-gradient(314.59deg, rgba(239, 29, 130, 0.7) 0%, rgba(35, 10, 61, 0.7) 100%);
	background: -o-linear-gradient(314.59deg, rgba(239, 29, 130, 0.7) 0%, rgba(35, 10, 61, 0.7) 100%);
	background: linear-gradient(135.41deg, rgba(239, 29, 130, 0.7) 0%, rgba(35, 10, 61, 0.7) 100%);
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
	will-change: opacity;
	z-index: 1;
}

.item--blog:hover:after {
	opacity: 1;
}

.item--blog:hover .btn:not(:hover) {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.item--blog:not(:hover) .btn:not(:hover) {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.item--blog .item__text {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.5);
	border-radius: 0 0 3px 3px;
	color: #fff;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 8px 10px 10px;
	z-index: 4;
}

.item--blog .item__caption {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0.8em;
}

.item--blog .item__info {
	font-size: 10px;
}

.item--blog .btn {
	position: absolute; /* maintain button in middle of container */
	background: #fff;
	border: none;
	color: #ef1d82;
	font-size: 18px;
	font-weight: 700;
	height: 46px;
	min-width: 190px;
	z-index: 2;
}

.item--blog .btn:after {
	content: none;
}

.item--blog .btn:hover {
	background: #ef1d82;
	color: #fff;
}

.item--blog .btn:not(:hover) {
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
}

.item--post {
	width: 100%;
}

.item--post .item__caption {
	font-size: 14px;
	font-weight: 700;
}

.item--post .item__caption a {
	outline: none;
}

.item--post .item__image {
	position: relative;
	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;
	border-radius: 3px;
	width: 100%;
	margin-bottom: 15px;
}

.item--post .item__image:before {
	display: block;
	content: "";
	padding-top: 80.4%;
}

.item--post .item__image:after {
	position: absolute;
	display: block;
	content: "";
	background-image: -webkit-linear-gradient(314.59deg, rgba(239, 29, 130, 0.7) 0%, rgba(35, 10, 61, 0.7) 100%);
	background-image: -o-linear-gradient(314.59deg, rgba(239, 29, 130, 0.7) 0%, rgba(35, 10, 61, 0.7) 100%);
	background-image: linear-gradient(135.41deg, rgba(239, 29, 130, 0.7) 0%, rgba(35, 10, 61, 0.7) 100%);
	border-radius: 3px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
	will-change: opacity;
	z-index: 1;
}

.item--post .item__image:hover:after {
	opacity: 1;
}

.item--post .item__image:hover .btn:not(:hover) {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
}

.item--post .item__image:not(:hover) .btn:not(:hover) {
	opacity: 0;
	-webkit-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

.item--post .btn {
	position: relative;
	background: #fff;
	border: none;
	color: #ef1d82;
	font-size: 18px;
	font-weight: 700;
	height: 34px;
	min-width: 139px;
	z-index: 2;
}

.item--post .btn:after {
	content: none;
}

.item--post .btn:hover {
	background: #ef1d82;
	color: #fff;
}

.item--post .btn:not(:hover) {
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
}

.item--service {
	display: block;
	margin-bottom: 70px;
}

.item--service .item__text {
	display: block;
	margin-bottom: 40px;
}

.item--service .item__decorated {
	position: relative;
	padding: 0 30px 0 0;
	margin-bottom: 25px;
}

.item--service .item__decorated:before {
	position: absolute;
	display: block;
	content: '';
	background: #ef1d82;
	top: 0.5em;
	bottom: 0.5em;
	right: 0;
	width: 4px;
}

.item--service .item__caption {
	font-size: 36px;
	font-weight: 900;
}

.item--service .item__subcaption {
	font-size: 36px;
	font-weight: 300;
}

.item--service .item__description {
	line-height: 1.9;
}

.item--service .item__description p {
	margin-bottom: 0.6em;
}

.item--whatwedo {
	margin-top: 50px;
}

.item--whatwedo .item__number {
	font-size: 90px;
	font-weight: 900;
	letter-spacing: 1.25px;
	line-height: 1.2;
}

.item--whatwedo .item__text {
	letter-spacing: 1px;
}

.item--results {
	margin-top: 80px;
}

.item--results .item__text {
	font-size: 24px;
	letter-spacing: 0.8px;
	line-height: 2.1;
}

.item--results .item__graph {
	margin-top: 70px;
}

.item--results .item__graph img {
	height: auto;
	margin: 0 auto;
}

.aside {
	position: relative;
	width: 326px;
	min-width: 326px;
	margin-bottom: 0;
}

.aside__search {
	padding-bottom: 40px;
}

.aside__search .form {
	position: relative;
}

.aside__search .input {
	border: 2px solid #000;
	border-radius: 8px;
	font-size: 16px;
	height: 50px;
	padding-left: 50px;
	-webkit-transition: 0.4s ease;
	-o-transition: 0.4s ease;
	transition: 0.4s ease;
}

.aside__search .input::-webkit-input-placeholder {
	text-align: center;
	font-weight: 700;
}

.aside__search .input:-ms-input-placeholder {
	text-align: center;
	font-weight: 700;
}

.aside__search .input::-moz-placeholder {
	text-align: center;
	font-weight: 700;
}

.aside__search .input:hover,
.aside__search .input:focus {
	border-color: #ef1d82;
}

.aside__search .btn {
	position: absolute;
	font-size: 0;
	color: transparent;
	border: none;
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	background: url("../img/icon-search.svg") no-repeat center center;
	background-size: contain;
	left: 20px;
	top: 13px;
	width: 25px;
	min-width: 0;
	height: 25px;
	padding: 0;
	z-index: 2;
}

.aside__wrapper {
	width: 326px;
	min-width: 326px;
}

.aside__widget {
	background-color: #fff;
	border-radius: 10px;
	-webkit-box-shadow: 8px 2px 21px 0 rgba(0, 0, 0, 0.08);
	box-shadow: 8px 2px 21px 0 rgba(0, 0, 0, 0.08);
	font-size: 16px;
	line-height: 1.38;
	margin-bottom: 40px;
}

.aside__widget__captions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	background-image: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background-image: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background-image: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	border-radius: 8px;
}

.aside__widget__captions > * {
	width: 30%;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.aside__widget__captions .aside__widget__caption:not(.active) {
	background: none;
	font-weight: 400;
}

.aside__widget__captions li {
	padding: 0;
}

.aside__widget__captions a {
	text-align: center;
	display: inline-block;
	width: 100%;
	padding: 20px 0;
}

.aside__widget__caption {
	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;
	background-image: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background-image: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background-image: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	border-radius: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding: 20px 0;
}

.aside__widget__inner {
	padding: 30px;
}

.aside__widget__inner--smaller {
	padding: 25px;
}

.aside__post {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.aside__post:not(:last-child) {
	margin-bottom: 25px;
}

.aside__post__image {
	width: 50px;
	min-width: 50px;
	margin-left: 10px;
}

.aside__post__image img {
	border-radius: 4px;
	width: 100%;
}

.aside__post a {
	display: block;
}

.aside__contact {
	text-align: center;
	padding: 0 15px;
}

.aside__contact__caption {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 0.2em;
}

.aside__contact__phone {
	margin-bottom: 0.3em;
}

.aside__contact__phone a {
	white-space: nowrap;
	font-weight: 700;
}

.aside__contact .form {
	margin-top: 25px;
}

.aside__contact .input {
	position: relative;
	text-align: center;
	-webkit-box-shadow: inset 0 1px 7px 0 rgba(0, 0, 0, 0.5);
	box-shadow: inset 0 1px 7px 0 rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 8px;
	font-size: 16px;
	height: 44px;
	z-index: 2;
}

.aside__contact .input-wrap {
	position: relative;
	margin-bottom: 14px;
}

.aside__contact .input-wrap:after {
	position: absolute;
	display: block;
	content: '';
	background-image: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background-image: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background-image: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	border-radius: 10px;
	top: -2px;
	left: -2px;
	right: -2px;
	height: 48px;
	z-index: 1;
}

.aside__contact .btn {
	background-image: -webkit-linear-gradient(320deg, #ec1d80 0%, #b01f64 50%, #b01f64 150%, #ec1d80 200%);
	background-image: -o-linear-gradient(320deg, #ec1d80 0%, #b01f64 50%, #b01f64 150%, #ec1d80 200%);
	background-image: linear-gradient(130deg, #ec1d80 0%, #b01f64 50%, #b01f64 150%, #ec1d80 200%);
	border-radius: 22px;
	font-size: 16px;
	font-weight: 700;
	width: 100%;
	height: 44px;
}

.aside__partners {
	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;
}

.writer {
	text-align: center;
	padding-bottom: 40px;
}

.writer .aside__widget {
	margin-bottom: 0;
}

.writer__image {
	width: 80px;
	margin: 0 auto 12px;
}

.writer__name {
	font-weight: 700;
	margin-bottom: 0.7em;
}

.writer__text {
	font-size: 14px;
	line-height: 1.36;
}

.post--blog .post__decoration {
	background: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
	background: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
	width: 80px;
	height: 3px;
}

.post--blog .post__caption {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.35;
	margin: 0.75em 0 0.5em;
}

.post--blog .post__image img {
	width: 100%;
}

.post--blog .post__inner {
	font-size: 21px;
	line-height: 1.9;
	margin: 65px 0;
}

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

.post--blog p {
	margin-bottom: 2em;
}

.post--blog h2,
.post--blog h3,
.post--blog h4 {
	font-weight: 700;
	margin: 2em 0;
}

.post__inner ul,
.item--service ul {
	margin-bottom: 15px;
}

.post__inner ul li,
.item--service ul li {
	padding-right: 20px;
	position: relative;
}

.post__inner ul li:before,
.item--service ul li:before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #e41c7e;
	margin: auto;
	right: 0;
	top: 14px;
	position: absolute;
}


.additional-posts {
	margin-top: 90px;
}

.additional-posts .h3 {
	font-size: 20px;
	margin-bottom: 1.4em;
}

.svg-holder {
	margin-bottom: 24px;
}

.svg-holder svg {
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: 0.2s ease;
	-o-transition: 0.2s ease;
	transition: 0.2s ease;
}

.svg-holder svg:hover {
	-webkit-transform: scale(1.15);
	-ms-transform: scale(1.15);
	transform: scale(1.15);
}

.btn-wrap {
	position: relative;
}

.ajax-loader {
	position: absolute;
	left: 50%;
	bottom: -20px;
	margin: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.blog__articles {
	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;
}

.blog__articles .item {
	width: 45%;
	margin-bottom: 45px;
	margin-left: 10px;
}

.blog__articles__caption {
	text-align: center;
	font-size: 40px;
	letter-spacing: 2px;
	margin: 3.45em 0;
}

@supports ((-webkit-clip-path: polygon(0 0, 100% 0%, 0% 100%, 100% 100%)) or (clip-path: polygon(0 0, 100% 0%, 0% 100%, 100% 100%))) {
	.section--first {
		overflow: visible;
	}
	
	.section--first:after {
		content: none;
	}
	
	.section--first .section__bg {
		-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 98% 99.4%, 96% 98.825%, 94% 98.275%, 92% 97.75%, 90% 97.25%, 88% 96.775%, 86% 96.325%, 84% 95.9%, 82% 95.5%, 80% 95.125%, 78% 94.775%, 76% 94.45%, 74% 94.15%, 72% 93.875%, 70% 93.625%, 68% 93.4%, 66% 93.2%, 64% 93.025%, 62% 92.875%, 60% 92.75%, 58% 92.65%, 56% 92.575%, 54% 92.525%, 52% 92.5%, 50% 92.5%, 48% 92.5%, 46% 92.525%, 44% 92.575%, 42% 92.65%, 40% 92.75%, 38% 92.875%, 36% 93.025%, 34% 93.2%, 32% 93.4%, 30% 93.625%, 28% 93.875%, 26% 94.15%, 24% 94.45%, 22% 94.775%, 20% 95.125%, 18% 95.5%, 16% 95.9%, 14% 96.325%, 12% 96.775%, 10% 97.25%, 8% 97.75%, 6% 98.275%, 4% 98.825%, 2% 99.4%, 0 100%);
		clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 98% 99.4%, 96% 98.825%, 94% 98.275%, 92% 97.75%, 90% 97.25%, 88% 96.775%, 86% 96.325%, 84% 95.9%, 82% 95.5%, 80% 95.125%, 78% 94.775%, 76% 94.45%, 74% 94.15%, 72% 93.875%, 70% 93.625%, 68% 93.4%, 66% 93.2%, 64% 93.025%, 62% 92.875%, 60% 92.75%, 58% 92.65%, 56% 92.575%, 54% 92.525%, 52% 92.5%, 50% 92.5%, 48% 92.5%, 46% 92.525%, 44% 92.575%, 42% 92.65%, 40% 92.75%, 38% 92.875%, 36% 93.025%, 34% 93.2%, 32% 93.4%, 30% 93.625%, 28% 93.875%, 26% 94.15%, 24% 94.45%, 22% 94.775%, 20% 95.125%, 18% 95.5%, 16% 95.9%, 14% 96.325%, 12% 96.775%, 10% 97.25%, 8% 97.75%, 6% 98.275%, 4% 98.825%, 2% 99.4%, 0 100%);
	}
	
	@media screen and (min-width: 768px) {
		.section--rounded:before,
		.section--rounded:after {
			content: none;
		}
		
		.section--rounded .section__bg {
			-webkit-clip-path: polygon(0% 0%, 2% 0.7%, 4% 1.375%, 6% 2.025%, 8% 2.65%, 10% 3.25%, 12% 3.825%, 14% 4.375%, 16% 4.899999999999999%, 18% 5.399999999999999%, 20% 5.874999999999999%, 22% 6.324999999999999%, 24% 6.749999999999999%, 26% 7.149999999999999%, 28% 7.524999999999999%, 30% 7.874999999999998%, 32% 8.199999999999998%, 34% 8.499999999999996%, 36% 8.774999999999997%, 38% 9.024999999999997%, 40% 9.249999999999996%, 42% 9.449999999999996%, 44% 9.624999999999995%, 46% 9.774999999999995%, 48% 9.9%, 50% 9.9%, 52% 9.9%, 54% 9.774999999999995%, 56% 9.624999999999995%, 58% 9.449999999999996%, 60% 9.249999999999996%, 62% 9.024999999999997%, 64% 8.774999999999997%, 66% 8.499999999999996%, 68% 8.199999999999998%, 70% 7.874999999999998%, 72% 7.524999999999999%, 74% 7.149999999999999%, 76% 6.749999999999999%, 78% 6.324999999999999%, 80% 5.875%, 82% 5.4%, 84% 4.9%, 86% 4.375000000000001%, 88% 3.825000000000001%, 90% 3.250000000000001%, 92% 2.650000000000001%, 94% 2.025000000000001%, 96% 1.375000000000001%, 98% 0.700000000000001%, 100% 0, 100% 100%, 98% 99.3%, 96% 98.625%, 94% 97.975%, 92% 97.35%, 90% 96.75%, 88% 96.175%, 86% 95.625%, 84% 95.1%, 82% 94.6%, 80% 94.125%, 78% 93.675%, 76% 93.25%, 74% 92.85%, 72% 92.475%, 70% 92.125%, 68% 91.8%, 66% 91.5%, 64% 91.225%, 62% 90.975%, 60% 90.75%, 58% 90.55%, 56% 90.375%, 54% 90.225%, 52% 90.1%, 50% 90.1%, 48% 90.1%, 46% 90.225%, 44% 90.375%, 42% 90.55%, 40% 90.75%, 38% 90.975%, 36% 91.225%, 34% 91.5%, 32% 91.8%, 30% 92.125%, 28% 92.475%, 26% 92.85%, 24% 93.25%, 22% 93.675%, 20% 94.125%, 18% 94.6%, 16% 95.1%, 14% 95.625%, 12% 96.175%, 10% 96.75%, 8% 97.35%, 6% 97.975%, 4% 98.625%, 2% 99.3%, 0 100%);
			clip-path: polygon(0% 0%, 2% 0.7%, 4% 1.375%, 6% 2.025%, 8% 2.65%, 10% 3.25%, 12% 3.825%, 14% 4.375%, 16% 4.899999999999999%, 18% 5.399999999999999%, 20% 5.874999999999999%, 22% 6.324999999999999%, 24% 6.749999999999999%, 26% 7.149999999999999%, 28% 7.524999999999999%, 30% 7.874999999999998%, 32% 8.199999999999998%, 34% 8.499999999999996%, 36% 8.774999999999997%, 38% 9.024999999999997%, 40% 9.249999999999996%, 42% 9.449999999999996%, 44% 9.624999999999995%, 46% 9.774999999999995%, 48% 9.9%, 50% 9.9%, 52% 9.9%, 54% 9.774999999999995%, 56% 9.624999999999995%, 58% 9.449999999999996%, 60% 9.249999999999996%, 62% 9.024999999999997%, 64% 8.774999999999997%, 66% 8.499999999999996%, 68% 8.199999999999998%, 70% 7.874999999999998%, 72% 7.524999999999999%, 74% 7.149999999999999%, 76% 6.749999999999999%, 78% 6.324999999999999%, 80% 5.875%, 82% 5.4%, 84% 4.9%, 86% 4.375000000000001%, 88% 3.825000000000001%, 90% 3.250000000000001%, 92% 2.650000000000001%, 94% 2.025000000000001%, 96% 1.375000000000001%, 98% 0.700000000000001%, 100% 0, 100% 100%, 98% 99.3%, 96% 98.625%, 94% 97.975%, 92% 97.35%, 90% 96.75%, 88% 96.175%, 86% 95.625%, 84% 95.1%, 82% 94.6%, 80% 94.125%, 78% 93.675%, 76% 93.25%, 74% 92.85%, 72% 92.475%, 70% 92.125%, 68% 91.8%, 66% 91.5%, 64% 91.225%, 62% 90.975%, 60% 90.75%, 58% 90.55%, 56% 90.375%, 54% 90.225%, 52% 90.1%, 50% 90.1%, 48% 90.1%, 46% 90.225%, 44% 90.375%, 42% 90.55%, 40% 90.75%, 38% 90.975%, 36% 91.225%, 34% 91.5%, 32% 91.8%, 30% 92.125%, 28% 92.475%, 26% 92.85%, 24% 93.25%, 22% 93.675%, 20% 94.125%, 18% 94.6%, 16% 95.1%, 14% 95.625%, 12% 96.175%, 10% 96.75%, 8% 97.35%, 6% 97.975%, 4% 98.625%, 2% 99.3%, 0 100%);
		}
	}
	@media screen and (max-width: 767px) {
		.section--first .section__bg {
			-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 99% 99.7%, 96% 99.412%, 94% 99.13600000000001%, 92% 98.87200000000001%, 90% 98.62000000000002%, 88% 98.38000000000002%, 86% 98.15200000000003%, 84% 97.93600000000004%, 82% 97.73200000000004%, 80% 97.54000000000005%, 78% 97.36000000000004%, 76% 97.19200000000004%, 74% 97.03600000000003%, 72% 96.89200000000002%, 70% 96.76000000000002%, 68% 96.64000000000001%, 66% 96.53200000000001%, 64% 96.436%, 62% 96.352%, 60% 96.28%, 58% 96.22%, 56% 96.172%, 54% 96.136%, 52% 96.112%, 50% 96.1%, 48% 96.112%, 46% 96.136%, 44% 96.172%, 42% 96.22%, 40% 96.28%, 38% 96.352%, 36% 96.436%, 34% 96.53200000000001%, 32% 96.64000000000001%, 30% 96.76000000000002%, 28% 96.89200000000002%, 26% 97.03600000000003%, 24% 97.19200000000004%, 22% 97.36000000000004%, 20% 97.54000000000005%, 18% 97.73200000000004%, 16% 97.93600000000004%, 14% 98.15200000000003%, 12% 98.38000000000002%, 10% 98.62000000000002%, 8% 98.87200000000001%, 6% 99.13600000000001%, 4% 99.412%, 1% 99.7%, 0 100%);
			clip-path: polygon(0 0, 100% 0, 100% 100%, 100% 100%, 99% 99.7%, 96% 99.412%, 94% 99.13600000000001%, 92% 98.87200000000001%, 90% 98.62000000000002%, 88% 98.38000000000002%, 86% 98.15200000000003%, 84% 97.93600000000004%, 82% 97.73200000000004%, 80% 97.54000000000005%, 78% 97.36000000000004%, 76% 97.19200000000004%, 74% 97.03600000000003%, 72% 96.89200000000002%, 70% 96.76000000000002%, 68% 96.64000000000001%, 66% 96.53200000000001%, 64% 96.436%, 62% 96.352%, 60% 96.28%, 58% 96.22%, 56% 96.172%, 54% 96.136%, 52% 96.112%, 50% 96.1%, 48% 96.112%, 46% 96.136%, 44% 96.172%, 42% 96.22%, 40% 96.28%, 38% 96.352%, 36% 96.436%, 34% 96.53200000000001%, 32% 96.64000000000001%, 30% 96.76000000000002%, 28% 96.89200000000002%, 26% 97.03600000000003%, 24% 97.19200000000004%, 22% 97.36000000000004%, 20% 97.54000000000005%, 18% 97.73200000000004%, 16% 97.93600000000004%, 14% 98.15200000000003%, 12% 98.38000000000002%, 10% 98.62000000000002%, 8% 98.87200000000001%, 6% 99.13600000000001%, 4% 99.412%, 1% 99.7%, 0 100%);
		}
	}
}


.sticky_buttons {
	position: fixed;
	background: #fff;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 9px 0 1px;
	z-index: 21;
}

.sticky_buttons__inner {
	display: flex;
}

.sticky_button {
	position: relative;
	text-align: center;
	flex-grow: 1;
	padding: 0 10px;
}

.sticky_button:not(:last-child):after {
	position: absolute;
	display: block;
	content: '';
	top: 2px;
	bottom: 6px;
	left: 0;
	width: 1px;
	background: #686868;
}

.sticky_button__img {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 30px;
}

.sticky_button:nth-child(1) img {
	width: 21px;
	height: 25px;
}

.sticky_button:nth-child(2) img {
	width: 30px;
	height: 22px;
}

.sticky_button:nth-child(3) img {
	width: 28px;
	height: 28px;
}

.sticky_button__text {
	font-size: 15px;
	font-weight: 700;
}

/*================================================*/
/*                    FOOTER	                  */
/*================================================*/
.footer {
	color: #fff;
	background-color: #230a3d;
	z-index:999;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #ef1d82;
}

.footer__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	border-bottom: 2px solid #979797;
	padding: 50px 0 16px;
}

.footer__menus {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 16px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	padding-left: 45px;
}

.footer__menus li {
	margin-bottom: 12px;
}

.footer__menu {
	width: 30%;
	padding-left: 15px;
}

.footer__caption {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 1.5em;
}

.footer__social ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.footer__social li:not(:last-child) {
	margin-left: 10px;
}

.footer__social a {
	display: block;
}

.footer__social a:hover {
	-webkit-filter: brightness(0.22) sepia(1) saturate(1979%) hue-rotate(312deg);
	filter: brightness(0.22) sepia(1) saturate(1979%) hue-rotate(312deg);
}

.footer__bot {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 22px 0;
}

.footer__copyrights {
	font-size: 20px;
}

.footer__logos {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__logos__others ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__logos__others li {
	display: block;
	margin: 0 7px;
}

.footer__logos__others img {
	display: block;
}

.footer__logo {
	display: block;
	margin-right: 60px;
}

.footer__logo img {
	vertical-align: middle;
}

/*================================================*/
/*                    MEDIA		                  */
/*================================================*/
@media screen and (max-width: 1900px) {
	.section--project-parallax > * {
		height: 50vw;
	}
}

@media screen and (max-width: 1200px) {
	.header nav {
		margin-right: 40px;
	}
	
	.header nav div > ul > li {
		padding: 42px 18px;
	}
	
	.section--rounded .section__wrapper {
		min-height: 0;
	}
	
	.section--rounded .section__inner {
		padding: 11vw 0;
	}
	
	.section--boxes--double .item {
		margin-bottom: 3.5vw;
		min-height: 46vw;
	}
	
	.section--stories .item__text {
		padding: 0 !important;
	}
	
	.section--all-projects .item {
		/*margin-bottom: 10vw;*/
	}
	
	.section--all-projects .item:not(:nth-child(3n+3)) {
		margin-left: 5%;
	}
	
	.section--project-images {
		padding: 20vw 0;
	}
	
	.section--contact .section__info {
		margin-left: 40px;
	}
	
	.slider--stories {
		margin-top: 60px;
	}
	
	.item--service .item__text {
		padding: 0 !important;
	}
}

@media screen and (min-width: 992px) {
	.tablet-show {
		display: none !important;
	}
	
	.header nav div > ul > li ul {
		display: block !important;
	}
	
	.section--gradient-icons .slider--icons {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	
	.section--gradient-icons .slider--icons .slide {
		width: 25%;
	}
	
	.section--gradient-icons.double-row {
		height: 282px;
	}
	
	.section--gradient-icons.double-row .section__inner__icons:after {
		border-width: 282px 0 0 80px;
	}
	
	.section--gradient-icons.double-row .section__inner__caption:after {
		top: 50%;
		bottom: auto;
		height: 152px;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	
	.section--gradient-icons.double-row .slider--icons {
		padding: 0 10px 0 0;
		height: 282px;
	}
	
	.section--gradient-icons.double-row .slider--icons .item {
		padding: 12px 10px;
	}
	
	.section--gradient-icons.double-row .slider--icons .item__icon {
		margin-bottom: 13px;
	}
	
	.section--gradient-icons.double-row .slider--icons .item__icon .nm-img-wrap {
		width: 66px;
		height: 66px;
	}
}

@media screen and (max-width: 991px) {
	.tablet-hide {
		display: none !important;
	}
	
	.header {
		background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.25)), to(rgba(0, 0, 0, 0.62)));
		background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.62) 100%);
		background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.62) 100%);
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.62) 100%);
	}
	
	.header__inner {
		padding: 10px 0;
	}
	
	.header nav {
		position: fixed;
		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;
		background-image: -webkit-linear-gradient(222.83deg, #ef1d82 0%, #230a3d 100%);
		background-image: -o-linear-gradient(222.83deg, #ef1d82 0%, #230a3d 100%);
		background-image: linear-gradient(227.17deg, #ef1d82 0%, #230a3d 100%);
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		-webkit-transform: scale(1.2);
		-ms-transform: scale(1.2);
		transform: scale(1.2);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		padding: 80px 0 20px;
		margin: 0;
		-webkit-transition: opacity 0.5s ease, z-index 0s 0.5s, visibility 0s 0.5s, -webkit-transform 0.5s ease;
		transition: opacity 0.5s ease, z-index 0s 0.5s, visibility 0s 0.5s, -webkit-transform 0.5s ease;
		-o-transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s 0.5s, visibility 0s 0.5s;
		transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s 0.5s, visibility 0s 0.5s;
		transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s 0.5s, visibility 0s 0.5s, -webkit-transform 0.5s ease;
		will-change: transform, opacity;
		z-index: -1;
	}
	
	.header nav.nm-show {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		-webkit-transition: opacity 0.5s ease, z-index 0s 0s, visibility 0s 0s, -webkit-transform 0.5s ease;
		transition: opacity 0.5s ease, z-index 0s 0s, visibility 0s 0s, -webkit-transform 0.5s ease;
		-o-transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s 0s, visibility 0s 0s;
		transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s 0s, visibility 0s 0s;
		transition: opacity 0.5s ease, transform 0.5s ease, z-index 0s 0s, visibility 0s 0s, -webkit-transform 0.5s ease;
		z-index: 2;
	}
	
	.header nav div {
		overflow: auto;
		max-height: 100%;
	}
	
	.header nav div ul {
		position: relative;
		-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;
		width: auto !important;
		padding: 0;
	}
	
	.header nav div ul li {
		padding: 0;
		margin-bottom: 10px;
		overflow: hidden;
	}
	
	.header nav div ul li a {
		font-size: 22px;
	}
	
	.header nav div > ul > li ul {
		position: static;
		display: none;
		top: auto;
		right: auto;
		left: auto;
		padding: 0;
		margin-top: 5px;
		background: none !important;
		-webkit-transform: none !important;
		-ms-transform: none !important;
		transform: none !important;
		opacity: 1;
		visibility: visible;
		pointer-events: all;
		will-change: height;
		-webkit-transition: none !important;
		-o-transition: none !important;
		transition: none !important;
		z-index: auto;
	}
	
	.header nav div > ul > li ul li {
		background: none;
		text-align: center;
		padding: 0;
	}
	
	.header nav div > ul > li ul li a {
		margin: 0;
	}
	
	.header .nm-menu-expand {
		position: relative;
		display: block;
		margin-right: 0;
		margin-left: 15px;
		z-index: 3;
	}
	
	.header .logo {
		position: absolute;
		top: 50%;
		right: 50%;
		-webkit-transform: translate(50%, -50%);
		-ms-transform: translate(50%, -50%);
		transform: translate(50%, -50%);
		z-index: 3;
	}
	
	.header .logo img {
		width: 62px;
		height: 30px;
	}
	
	.header .btn {
		font-size: 12px;
		min-width: 80px;
		height: 30px;
		padding: 0 5px;
	}
	
	.footer__bot {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	
	.footer__copyrights {
		margin-top: 20px;
	}
	
	.section--first .section__wrapper {
		min-height: 0;
	}
	
	.section--first .section__wrapper:before,
	.section--first .section__wrapper:after {
		content: none;
	}
	
	.section--first .section__inner {
		padding: 100px 0 60px;
	}
	
	.section--gradient-icons {
		background: -webkit-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
		background: -o-linear-gradient(314.59deg, #ef1d82 0%, #230a3d 100%);
		background: linear-gradient(135.41deg, #ef1d82 0%, #230a3d 100%);
		-webkit-box-shadow: none;
		box-shadow: none;
		height: auto;
		padding: 50px 0;
		margin-bottom: 0;
	}
	
	.section--gradient-icons .section__bg {
		display: none;
	}
	
	.section--gradient-icons .section__wrapper {
		position: static;
		overflow: visible;
	}
	
	.section--gradient-icons .section__inner {
		display: block;
	}
	
	.section--gradient-icons .section__inner__caption {
		display: block;
		width: 100%;
		padding-right: 33px;
		margin-bottom: 30px;
	}
	
	.section--gradient-icons .section__inner__caption:after {
		top: 0;
		bottom: 0;
	}
	
	.section--gradient-icons .section__inner__icons {
		position: static;
		background-color: transparent;
		width: 100%;
		min-width: 0;
	}
	
	.section--gradient-icons .section__inner__icons:after {
		content: none;
	}
	
	.section--gradient-icons .slider--icons {
		width: auto;
		height: auto;
		padding: 0;
		margin: 0 -24px;
	}
	
	.section--gradient-icons .slider--icons .item__caption {
		color: #fff;
		font-size: 20px;
		width: 150px;
	}
	
	.section--gradient-icons .slick-arrow {
		top: 50% !important;
		-webkit-transform: translateY(-50%) !important;
		-ms-transform: translateY(-50%) !important;
		transform: translateY(-50%) !important;
	}
	
	.section--project-video {
		padding-bottom: 40px;
	}
	
	.section--project-video .section__video-wrapper {
		-webkit-transform: translateY(-5vw);
		-ms-transform: translateY(-5vw);
		transform: translateY(-5vw);
	}
	
	.section--blog {
		padding: 50px 0 60px;
	}
	
	.section--blog .section__inner {
		position: relative;
		display: block;
	}
	
	.section--blog .main-block {
		width: 100%;
		padding: 80px 0 0;
	}
	
	.section--blog .main-block--nopadding {
		padding-top: 0;
	}
	
	.section--blog .aside {
		position: static;
		margin: 0;
	}
	
	.section--blog .aside__search {
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
	}
	
	.section--services {
		padding: 0;
	}
	
	.slider--icons {
		margin-right: -24px;
		margin-left: -24px;
	}
	
	.slider--icons .slick-arrow {
		top: 81px;
	}
	
	.slider--icons .slick-next {
		right: 18px;
	}
	
	.slider--icons .slick-prev {
		left: 18px;
	}
	
	.aside {
		width: 100%;
		min-width: 0;
	}
	
	.aside__wrapper {
		display: none;
	}
	
	.writer {
		padding-bottom: 0;
		margin-top: 60px;
	}
	
	.blog__articles__caption {
		margin: 2em 0;
	}
	
	.section--textarticles {
		background-image: none !important;
	}
	
	.section--textarticles__inner {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.mobile-only {
		display: none !important;
	}
	
	.footer__menus div {
		display: block !important;
	}
}

@media screen and (max-width: 767px) {
	.desktop-only {
		display: none !important;
	}
	
	body {
		font-size: 14px;
	}
	
	.btn {
		font-size: 16px;
		height: 40px;
		min-width: 175px;
	}
	
	.h1 {
		font-size: 30px;
	}
	
	.h2 {
		font-size: 30px;
	}
	
	.h2--mob_22 {
		font-size: 22px;
	}
	
	.h2--mob_24 {
		font-size: 24px;
	}
	
	.SumoSelect > .CaptionCont {
		border-width: 1px !important;
	}
	
	.footer {
		margin-bottom: 61px;
	}
	
	.footer__top {
		display: block;
		border-bottom: none;
		padding: 0;
	}
	
	.footer__menus {
		display: block;
		font-size: 20px;
		padding-left: 0;
	}
	
	.footer__menus li {
		margin-bottom: 7px;
	}
	
	.footer__menu {
		border-bottom: 2px solid rgba(255, 255, 255, 0.14);
		width: 100%;
		padding-left: 0;
	}
	
	.footer__menu .footer__caption {
		position: relative;
		cursor: pointer;
		padding: 27px 0;
		margin-bottom: 0;
	}
	
	.footer__menu .footer__caption:after {
		position: absolute;
		display: block;
		content: "";
		background: url("../img/arrow-right.svg") no-repeat center center;
		background-size: contain;
		left: 0;
		top: 50%;
		width: 31px;
		height: 31px;
		-webkit-transition: 0.3s ease;
		-o-transition: 0.3s ease;
		transition: 0.3s ease;
		will-change: transform;
		-webkit-transform-origin: center center;
		-ms-transform-origin: center center;
		transform-origin: center center;
		-webkit-transform: translateY(-50%) rotate(90deg);
		-ms-transform: translateY(-50%) rotate(90deg);
		transform: translateY(-50%) rotate(90deg);
	}
	
	.footer__menu .footer__caption.open:after {
		-webkit-transform: translateY(-50%) rotate(270deg);
		-ms-transform: translateY(-50%) rotate(270deg);
		transform: translateY(-50%) rotate(270deg);
	}
	
	.footer__menu .footer__caption ~ div {
		display: none;
	}
	
	.footer__menu ul {
		font-size: 16px;
		padding-bottom: 10px;
	}
	
	.footer__menu li {
		margin-bottom: 5px;
	}
	
	.footer__social {
		margin: 25px 0 5px;
	}
	
	.footer__social ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	
	.footer__social li {
		margin: 0 15px !important;
	}
	
	.footer__bot {
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		text-align: center;
		padding: 15px 0;
	}
	
	.footer__copyrights {
		font-size: 14px;
		margin-top: 15px;
	}
	
	.footer__logos {
		display: block;
	}
	
	.footer__logos__others {
		border-bottom: 2px solid rgba(255, 255, 255, 0.14);
		padding-bottom: 25px;
		margin-bottom: 25px;
	}
	
	.footer__logos__others ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	
	.footer__logo {
		margin: 0 auto;
	}
	
	.section__wrapper {
		padding: 0 24px;
	}
	
	.section--first .section__inner {
		padding-bottom: 50px;
	}
	
	.section--first .text {
		font-size: 14px;
		letter-spacing: 2.92px;
		font-weight: 300;
	}
	
	.section--logos-slider {
		padding: 15px 0;
	}
	
	.section--logos-slider .js-marquee .nm-img-wrap {
		height: 40px;
		margin: 0 20px;
	}
	
	.section--logos-slider .js-marquee .nm-img-wrap img {
		zoom: 0.6;
	}
	
	.section--rounded {
		font-size: 14px;
		line-height: 2;
	}
	
	.section--rounded:before,
	.section--rounded:after {
		content: none;
	}
	
	.section--rounded .section__inner {
		padding: 65px 0;
	}
	
	.section--boxes--double {
		padding: 50px 0 10px;
	}
	
	.section--boxes--double .section__inner {
		display: block;
	}
	
	.section--boxes--double .item {
		-webkit-box-shadow: 0 2px 19px -3px rgba(0, 0, 0, 0.5);
		box-shadow: 0 2px 19px -3px rgba(0, 0, 0, 0.5);
		width: 100%;
		height: calc(90vw - 48px);
		max-height: 480px;
		margin-bottom: 40px;
	}
	
	.section--boxes--double .item__text {
		font-size: 16px !important;
		line-height: 1.2;
		max-height: 153px;
		overflow: hidden;
		margin: 24px 0 30px;
	}
	
	.section--boxes--double .btn {
		font-weight: 700;
		min-width: 145px;
	}
	
	.section--icons .nm-bg {
		padding: 0;
	}
	
	.section--icons .colored {
		color: #fff;
	}
	
	.section--numbers {
		padding: 55px 0 50px;
	}
	
	.section--numbers .section__inner {
		padding-top: 10px;
	}
	
	.section--numbers .item {
		border-width: 1px !important;
		padding: 3px 10px 0;
	}
	
	.section--numbers .item__counter {
		font-size: 24px;
		letter-spacing: -0.5px;
	}
	
	.section--numbers .item__caption {
		font-size: 14px;
		line-height: 1.36;
		margin: 0;
	}
	
	.section--stories {
		padding: 50px 0 20px;
	}
	
	.section--projects {
		background: -webkit-linear-gradient(315.98deg, #ef1d82 0%, #230a3d 100%);
		background: -o-linear-gradient(315.98deg, #ef1d82 0%, #230a3d 100%);
		background: linear-gradient(134.02deg, #ef1d82 0%, #230a3d 100%);
		color: #fff;
		padding: 100px 0 20px;
	}
	
	.section--facebook {
		padding: 50px 0;
	}
	
	.section--facebook__overall {
		margin-top: -10px;
		margin-bottom: 15px;
	}
	
	.section--text--about-1,
	.section--text--about-2 {
		margin-top: 40px;
	}
	
	.section--gradient-icons {
		padding-bottom: 30px;
	}
	
	.section--gradient-icons .section__inner__caption__main {
		font-size: 63px;
		font-weight: 900;
	}
	
	.section--gradient-icons .section__inner__caption__sub {
		font-size: 39px;
	}
	
	.section--contact-footer {
		padding: 65px 0 40px;
	}
	
	.section--contact-footer .section__inner {
		position: relative;
		display: block;
	}
	
	.section--contact-footer .section__image {
		position: absolute;
		width: 144px;
		top: -35px;
		right: 240px;
		padding: 0;
	}
	
	.section--contact-footer .section__image img {
		-webkit-filter: drop-shadow(13px 11px 22px rgba(0, 0, 0, 0.16));
		filter: drop-shadow(13px 11px 22px rgba(0, 0, 0, 0.16));
	}
	
	.section--contact-footer .section__form {
		border-right: none;
		font-size: 14px;
		line-height: 1.35;
		width: 100%;
		min-width: 0;
		padding-right: 0;
		padding-bottom: 0;
	}
	
	.section--contact-footer .section__caption {
		border-right: 2px solid #ef1d82;
		font-size: 18px;
		font-weight: 700;
		width: 240px;
		padding-right: 25px;
		padding-bottom: 0.3em;
		margin-bottom: 0;
	}
	
	.section--contact-footer .section__subcaption {
		border-right: 2px solid #ef1d82;
		width: 240px;
		padding-right: 25px;
		margin-bottom: 55px;
	}
	
	.section--contact-footer .section__text {
		text-align: center;
		font-size: 16px;
	}
	
	.section--contact-footer .btn--phone {
		color: #fff !important;
		-webkit-box-shadow: 8px 12px 11px 0 rgba(0, 0, 0, 0.07);
		box-shadow: 8px 12px 11px 0 rgba(0, 0, 0, 0.07);
		font-size: 14px;
		font-weight: 700;
		margin-bottom: 30px;
	}
	
	.section--contact-footer .form {
		display: block;
		margin-top: 30px;
	}
	
	.section--contact-footer .form > * {
		width: 100%;
	}
	
	.section--contact-footer .input {
		font-size: 14px;
		height: 32px;
	}
	
	.section--contact-footer .input-wrap {
		margin-bottom: 16px;
	}
	
	.section--contact-footer .btn {
		border-radius: 3px;
		font-size: 14px;
		height: 48px;
	}
	
	.section--all-projects {
		padding: 40px 0 60px;
	}
	
	.section--all-projects .item {
		width: 48%;
	}
	
	.section--all-projects .item:not(:nth-child(3n+3)) {
		margin-left: 0;
	}
	
	.section--all-projects .item:not(:nth-child(2n+2)) {
		margin-left: 4%;
	}
	
	.section--blog {
		padding: 0px 0 40px;
	}
	
	.section--numbers2 {
		padding: 18px 0;
	}
	
	.section--numbers2 .section__inner {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	
	.section--numbers2 .item {
		width: 24%;
		padding: 10px 3px 8px;
		margin: 0;
	}
	
	.section--numbers2 .item__counter {
		font-size: 28px;
		letter-spacing: -0.5px;
	}
	
	.section--numbers2 .item__caption {
		font-size: 10px;
		line-height: 1.4;
		max-width: 80px;
		margin: 0 auto;
	}
	
	.section--faq {
		padding: 50px 0;
	}
	
	.section--faq .faq__question {
		padding: 16px 30px 16px 50px;
	}
	
	.section--faq .faq__question:before {
		top: 16px;
		bottom: 16px;
		width: 1px;
	}
	
	.section--faq .faq__question:after {
		font-size: 20px;
		left: 0;
	}
	
	.section--faq .faq__answer {
		font-size: 12px;
		line-height: 1.45;
		padding: 0 30px 16px 50px;
	}
	
	.section--contact {
		padding-bottom: 40px;
	}
	
	.section--contact .form .double-inputs {
		display: block;
	}
	
	.section--contact .form .double-inputs > * {
		width: 100%;
	}
	
	.section--map #map {
		border-width: 1px;
		height: 410px;
	}
	
	.section--success-general {
		font-size: 20px;
		letter-spacing: 0.5px;
		line-height: 2;
		padding: 40px 0 40px;
	}
	
	.section--success-general .h2 {
		margin-bottom: 1em;
	}
	
	.section--success-image {
		margin-bottom: 70px;
	}
	
	.section--success-image .image-notebook {
		margin-top: -22%;
		-webkit-transform: translateY(28%);
		-ms-transform: translateY(28%);
		transform: translateY(28%);
	}
	
	.section--success-challenge {
		font-size: 16px;
		line-height: 3;
		padding: 40px 0 20px;
	}
	
	.section--success-whatwedo {
		padding: 20px 0 70px;
	}
	
	.section--success-whatwedo .section__inner {
		display: block;
	}
	
	.section--success-whatwedo .section__inner > * {
		width: 100%;
		max-width: none;
		padding: 0;
	}
	
	.section--success-results {
		padding-bottom: 50px;
	}
	
	.section--search {
		padding: 40px 0 60px;
	}
	
	.section--search article {
		margin-bottom: 40px;
	}
	
	.section--contact {
		padding: 40px 0 50px;
	}
	
	.section--contact .section__inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		margin: 0 auto;
	}
	
	.section--contact .section__form {
		width: 100%;
		min-width: 0;
		max-width: none;
		padding: 0;
	}
	
	.section--contact .section__info {
		margin: 50px auto 0;
	}
	
	.section--contact .form {
		margin-top: 10px;
	}
	
	.section--contact .form .input {
		font-size: 14px;
		height: 32px;
	}
	
	.section--contact .form .btn {
		border-radius: 3px;
		font-size: 14px;
		height: 32px;
	}
	
	.slider--icons {
		font-size: 14px;
		line-height: 1.36;
		margin: 30px -24px 0;
	}
	
	.slider--icons .item {
		padding: 0 72px;
	}
	
	.slider--icons .item__icon {
		margin-bottom: 20px;
	}
	
	.slider--icons .item__caption {
		font-size: 24px;
	}
	
	.slider--icons .slick-arrow {
		top: 52px;
	}
	
	.slider--stories {
		margin: 20px -24px 0;
	}
	
	.slider--stories .item {
		display: block;
		text-align: center;
		padding: 30px 54px;
		margin-bottom: 0;
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
	
	.slider--stories .item__image {
		-webkit-box-shadow: 25px 0 44px -5px rgba(0, 0, 0, 0.25) !important;
		box-shadow: 25px 0 44px -5px rgba(0, 0, 0, 0.25) !important;
		width: 100%;
		margin-bottom: 30px;
	}
	
	.slider--stories .item__image__over {
		padding: 50px;
		top:54;
	}
	
	.slider--stories .item__text {
		display: block;
		line-height: 1.9;
		width: 100%;
	}
	
	.slider--stories .item__text__small {
		font-size: 14px;
	}
	
	.slider--stories .item__text__big {
		font-size: 14px;
	}
	
	.slider--stories .slick-arrow {
		width: 16px;
		height: 32px;
		top: calc(37vw - 8px);
	}
	
	.slider--stories .slick-next {
		right: 24px;
	}
	
	.slider--stories .slick-prev {
		left: 24px;
	}
	
	.slider--projects {
		margin: -7px -24px 0;
	}
	
	.slider--projects .slick .slick,
	.slider--projects .slick-arrow {
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
		top: calc(39vw - 23px);
	}
	
	.slider--projects .slick-next {
		right: 24px;
	}
	
	.slider--projects .slick-prev {
		left: 24px;
	}
	
	.slider--facebook .item {
		-webkit-box-shadow: 8px 8px 12px -18px rgba(0, 0, 0, 0.07);
		box-shadow: 8px 8px 12px -18px rgba(0, 0, 0, 0.07);
		height: 100%;
		padding: 37px 0 97px;
	}
	
	.slider--facebook .item__inner {
		padding: 30px 34px 45px;
	}
	
	.slider--facebook .item__rating img {
		width: 18px;
		height: 18px;
		margin: 0 3px;
	}
	
	.slider--facebook .item__author__info {
		font-size: 14px;
		margin-bottom: 15px;
	}
	
	.slider--blog {
		margin-bottom: 55px;
	}
	
	.slider--blog .item--blog .item__text {
		padding: 16px 16px 10px;
	}
	
	.slider--blog .item--blog .item__caption {
		font-size: 14px;
		margin-bottom: 4px;
	}
	
	.slider--blog .item--blog .item__info {
		font-size: 10px;
	}
	
	.slider--blog .slick-dots {
		top: auto;
		bottom: -20px;
	}
	
	.slider--blog .slick-dots li {
		margin: 0 2px;
	}
	
	.slider--blog .slick-dots li.slick-active button {
		background: #000;
	}
	
	.slider--blog .slick-dots li:not(.slick-active) button:hover {
		background: rgba(0, 0, 0, 0.7);
	}
	
	.slider--blog .slick-dots button {
		width: 6px;
		height: 6px;
	}
	
	.item--project {
		padding: 30px 75px;
	}
	
	.item--project .item__image {
		-webkit-box-shadow: -10px 13px 22px 0 rgba(0, 0, 0, 0.2) !important;
		box-shadow: -10px 13px 22px 0 rgba(0, 0, 0, 0.2) !important;
		border-radius: 5px;
		margin-bottom: 0px;
	}
	
	.item--project .item__image__inner {
		border-radius: 5px;
	}
	
	.item--project .item__image__under {
		border-radius: 5px;
	}
	
	.item--blog {
		-webkit-box-shadow: -5px 10px 31px 0 rgba(0, 0, 0, 0.5);
		box-shadow: -5px 10px 31px 0 rgba(0, 0, 0, 0.5);
		padding-bottom: 15%;
	}
	
	.item--blog:before {
		padding-top: 57%;
	}
	
	.item--blog .item__text {
		padding: 7px 7px 8px;
	}
	
	.item--blog .item__caption {
		margin-bottom: 5px;
	}
	
	.item--blog .btn {
		font-size: 14px;
		height: 43px;
		min-width: 145px;
	}
	
	.item--service {
		display: block;
		margin-bottom: 60px;
	}
	
	.item--service .item__image {
		width: 100%;
	}
	
	.item--service .item__text {
		width: 100%;
	}
	
	.item--service .item__decorated {
		padding-right: 25px;
	}
	
	.item--service .item__description {
		font-size: 16px;
		padding-right: 25px;
	}
	
	.item--results {
		margin-top: 50px;
	}
	
	.item--results .item__text {
		font-size: 16px;
		letter-spacing: 0.53px;
		line-height: 3;
	}
	
	.item--results .item__graph {
		margin-top: 40px;
	}
	
	.post--blog .post__caption {
		font-size: 24px;
	}
	
	.post--blog .post__info {
		font-size: 12px;
	}
	
	.post--blog .post__image {
		margin: 0 -24px;
	}
	
	.post--blog .post__inner {
		font-size: 16px;
		line-height: 2;
		margin: 50px 0;
	}
	
	.post--blog .post__inner h2,
	.post--blog .post__inner h3,
	.post--blog .post__inner h4 {
		font-size: 24px;
		line-height: 1.5;
	}
	
	.blog__articles {
		display: block;
	}
	
	.blog__articles .item {
		width: 100%;
	}
	
	.blog__articles__caption {
		font-size: 24px;
		letter-spacing: normal;
		margin: 2em 0;
	}
}

@media screen and (min-width: 641px) {
	.section--textarticles__items.js-show-part .section--textarticles__item:nth-child(n+3) .section--textarticles__item__text {
		-webkit-background-clip: text;
		background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
		-webkit-text-fill-color: transparent;
	}

	.evg-test3 .section--textarticles__item:nth-child(n+3) .section--textarticles__item__text {
		-webkit-background-clip: text;
		background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
		-webkit-text-fill-color: transparent;
	}

	.evg-test5 .section--textarticles__item:nth-child(n+5) .section--textarticles__item__text {
		-webkit-background-clip: text;
		background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
		-webkit-text-fill-color: transparent;
	}

	.evg-test7 .section--textarticles__item:nth-child(n+7) .section--textarticles__item__text {
		-webkit-background-clip: text;
		background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
		-webkit-text-fill-color: transparent;
	}

	.evg-test9 .section--textarticles__item:nth-child(n+9) .section--textarticles__item__text {
		-webkit-background-clip: text;
		background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
		-webkit-text-fill-color: transparent;
	}
}

@media screen and (max-width: 640px) {
	.slider--posts {
		margin: 0 -24px;
	}
	
	.slider--posts:before,
	.slider--posts:after {
		content: none;
	}
	
	.section--textarticles__items {
		display: block;
	}
	
	.section--textarticles__item {
		width: 100%;
	}
	
	.section--textarticles__items.js-show-part .section--textarticles__item:nth-child(n+4) .section--textarticles__item__text {
		-webkit-background-clip: text;
		background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
		-webkit-text-fill-color: transparent;
	}
}

@media screen and (max-width: 479px) {
	.section--all-projects {
		padding: 40px 0;
	}
	
	.section--all-projects .section__inner {
		display: block;
	}
	
	.section--all-projects .item {
		width: 100%;
		max-width: 218px;
		margin-left: auto !important;
		margin-right: auto !important;
	}
	
	.section--all-projects .item__image {
		margin-bottom: 20px;
	}
	
	.section--project-video .section__video-wrapper {
		-webkit-transform: translateY(-7vw);
		-ms-transform: translateY(-7vw);
		transform: translateY(-7vw);
	}
	
	.section--project-images {
		padding: 25vw 0;
	}
	
	.section--blog .aside__search .input {
		border-top: none;
		border-left: none;
		border-right: none;
		border-radius: 0;
		padding: 0 0 0 30px;
	}
	
	.section--blog .aside__search .btn {
		left: 0;
	}
	
	.slider--posts .slide {
		padding: 0 12px;
	}
	
	.slider--posts .item {
		max-width: 284px;
		margin: 0 auto;
	}
	
	.slider--posts .slick-arrow {
		width: 10px;
		height: 13px;
		top: 115px;
	}
	
	.additional-posts {
		margin-top: 60px;
		margin-bottom: 10px;
	}
	
	.additional-posts .h3 {
		text-align: center;
		font-size: 24px;
	}
	
	.modal__wrapper {
		padding: 20px 20px;
	}
	
	.modal__close {
		top: 30px;
		left: 20px;
	}
	
	.modal__caption {
		font-size: 32px;
		margin-bottom: 15px;
	}
	
	.modal__text {
		font-size: 18px;
	}
}

@media screen and (max-width: 356px) {
	.section__wrapper {
		padding: 0 15px;
	}
	
	.section--boxes--double .item {
		height: 280px;
	}
	
	.section--gradient-icons .section__inner__caption__main {
		font-size: 58px;
	}
	
	.section--gradient-icons .section__inner__caption__sub {
		font-size: 36px;
	}
	
	.slider--posts {
		margin: 0 -15px;
	}
	
	.slider--posts .item {
		max-width: 260px;
	}
	
	.slider--posts .slick-arrow {
		top: 110px;
	}
	
	.slider--posts .slick-prev {
		left: 14px;
	}
	
	.slider--posts .slick-next {
		right: 14px;
	}
	
	.post--blog .post__image {
		margin: 0 -15px;
	}
	
	.blog__articles__caption {
		font-size: 20px;
	}
}

@-moz-keyframes pulsate {
	0%, 10%, 90%, 100% {
		text-shadow: 2px 0 0 transparent, 2px 2px 0 transparent, 0 2px 0 transparent, 0 0 0 transparent, -2px 0 0 transparent, -2px -2px 0 transparent, 0 -2px 0 transparent, -2px 2px 0 transparent;
	}
	50% {
		text-shadow: 2px 0 0 #ef1d82, 2px 2px 0 #ef1d82, 0 2px 0 #ef1d82, 0 0 0 #ef1d82, -2px 0 0 #ef1d82, -2px -2px 0 #ef1d82, 0 -2px 0 #ef1d82, -2px 2px 0 #ef1d82;
	}
}

@-webkit-keyframes pulsate {
	0%, 10%, 90%, 100% {
		text-shadow: 2px 0 0 transparent, 2px 2px 0 transparent, 0 2px 0 transparent, 0 0 0 transparent, -2px 0 0 transparent, -2px -2px 0 transparent, 0 -2px 0 transparent, -2px 2px 0 transparent;
	}
	50% {
		text-shadow: 2px 0 0 #ef1d82, 2px 2px 0 #ef1d82, 0 2px 0 #ef1d82, 0 0 0 #ef1d82, -2px 0 0 #ef1d82, -2px -2px 0 #ef1d82, 0 -2px 0 #ef1d82, -2px 2px 0 #ef1d82;
	}
}

@-o-keyframes pulsate {
	0%, 10%, 90%, 100% {
		text-shadow: 2px 0 0 transparent, 2px 2px 0 transparent, 0 2px 0 transparent, 0 0 0 transparent, -2px 0 0 transparent, -2px -2px 0 transparent, 0 -2px 0 transparent, -2px 2px 0 transparent;
	}
	50% {
		text-shadow: 2px 0 0 #ef1d82, 2px 2px 0 #ef1d82, 0 2px 0 #ef1d82, 0 0 0 #ef1d82, -2px 0 0 #ef1d82, -2px -2px 0 #ef1d82, 0 -2px 0 #ef1d82, -2px 2px 0 #ef1d82;
	}
}

@keyframes pulsate {
	0%, 10%, 90%, 100% {
		text-shadow: 2px 0 0 transparent, 2px 2px 0 transparent, 0 2px 0 transparent, 0 0 0 transparent, -2px 0 0 transparent, -2px -2px 0 transparent, 0 -2px 0 transparent, -2px 2px 0 transparent;
	}
	50% {
		text-shadow: 2px 0 0 #ef1d82, 2px 2px 0 #ef1d82, 0 2px 0 #ef1d82, 0 0 0 #ef1d82, -2px 0 0 #ef1d82, -2px -2px 0 #ef1d82, 0 -2px 0 #ef1d82, -2px 2px 0 #ef1d82;
	}
}

@-moz-keyframes increase {
	0%, 100% {
		transform: none;
	}
	50% {
		transform: scale(1.03);
	}
}

@-webkit-keyframes increase {
	0%, 100% {
		-webkit-transform: none;
		transform: none;
	}
	50% {
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
	}
}

@-o-keyframes increase {
	0%, 100% {
		transform: none;
	}
	50% {
		transform: scale(1.03);
	}
}

@keyframes increase {
	0%, 100% {
		-webkit-transform: none;
		transform: none;
	}
	50% {
		-webkit-transform: scale(1.03);
		transform: scale(1.03);
	}
}

iframe#home--frame-banner {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.section.section--home {
	position: relative;
}


.evg-test{
	-webkit-background-clip: text;
	background-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
	-webkit-text-fill-color: transparent;
	height:300px;
}


.evg-test3 .section--textarticles__item:nth-child(n+5){display:none;}
.evg-test5 .section--textarticles__item:nth-child(n+7){display:none;}
.evg-test7 .section--textarticles__item:nth-child(n+9){display:none;}
.evg-test9 .section--textarticles__item:nth-child(n+11){display:none;}
.evg-test11 .section--textarticles__item:nth-child(n+13){display:none;}




.evg-clicks .section--textarticles__loadmore{display: block !important;}

.evg-test .evg-subttl{position: relative;}
.evg-test .evg-subttl .evg-cube{
    position: absolute;
    right: -23px;
    top: -44px;
    display: block;
    content: '';
    width: 11px;
    height: 11px;
    background-color: #e51d7f;
}
.evg-test .section--textarticles__item__title{position: inherit !important;}
.evg-test .section--textarticles__item__title:before{display: none !important;}
