.amoforms_iframe {
	display: none;
}

.details {
	position: fixed;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: -3px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	top: 0;
	right: -385px;
	height: 100%;
	overflow-y: auto;
	width: 385px;
	padding-top: 34px;
	padding-left: 45px;
	padding-right: 45px;
	padding-bottom: 42px;
	background-color: #c6c6c6;
	-webkit-transition: right 0.4s;
	transition: right 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 10002;
}

.details_iport {
	padding-left: 50px;
	padding-right: 48px;
	right: 0;
}

.details__title {
	font-size: 27px;
	font-weight: 100;
	margin-right: -4px;
	padding-top: 7px;
}

.details__title_iport {
	padding-top: 60px;
}

.details__close {
	position: absolute;
	top: 24px;
	right: 24px;
	height: 34px;
	width: 34px;
	padding: 15px;
	background: transparent;
	border: none;
	outline: none;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.details__close::before,
.details__close::after {
	position: absolute;
	content: '';
	background-color: #fff;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
}

.details__close::before {
	width: 3px;
	height: 34px;
	top: 0;
	left: 15px;
}

.details__close::after {
	width: 34px;
	height: 3px;
	top: 16px;
	left: 0;
}

.details__close:hover::before,
.details__close:hover::after {
	background-color: #7e7e7e;
}

.details__close.rotation {
	-webkit-animation: rotation 0.5s infinite linear;
	animation: rotation 0.5s infinite linear;
}

.details.is-active {
	/*display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;*/
	display: block;
	right: 0;
	overflow: hidden;
}

.details__form {
	margin-top: 50px;
}

.details__form_iport {
	margin-top: 20px;
}

.form-details__checkboxes {
	margin-top: 5px;
}

.form-details__label {
	font-size: 12px;
	font-weight: 400;
	color: #5b5b5b;
	display: block;
	padding-bottom: 8px;
}

.form-details__label > i {
	margin-left: -2px;
	font-style: normal;
	color: #ea4040;
}

.form-details__input {
	border: none;
	-webkit-border-radius: unset;
	border-radius: unset;
	display: block;
	width: 100%;
	padding: 8px 10px;
	font-size: 17px;
	margin-bottom: 17px;
}

.form-details__input:hover {
	outline: 2px solid #49aef7;
}

.form-details__input:focus {
	outline: 2px solid #3496dd;
}

.form-details__input.error,
.form-details__checkbox.error + label:before {
	outline: 2px solid red;
}

.form-details__text {
	padding-left: 33px;
	margin-top: 25px;
	display: block;
	color: #7d7d7d;
	font-size: 10px;
	position: relative;
}

.form-details__text_link {
	position: relative;
	font-size: 10px;
	color: #3496dd;
	text-decoration: underline;
	z-index: 10;
}

.form-details__text_hidden,
.form-details__text.__full .form-details__text_more {
	display: none;
}

.form-details__text.__full .form-details__text_hidden {
	display: inline-block;
}

.form-details__button {
	margin-top: 79px;
	cursor: pointer;
}

.form-details__button_iport {
	margin-top: 19px;
}

.form-details__button + .form-details__button {
	margin-top: 20px;
}

.form-details__checkbox {
	position: absolute;
	display: block;
	height: 26px;
	width: 26px;
	opacity: 0;
}

.form-details__checkbox + .form-details__text:hover::before {
	outline: 2px solid #49aef7;
}

.form-details__checkbox + .form-details__text::before {
	position: absolute;
	content: '';
	height: 26px;
	width: 26px;
	background-color: #fff;
	top: 0;
	left: 0;
	-webkit-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}

.form-details__checkbox:checked + .form-details__text::before {
	background-color: #272b31;
	background-image: url("./images/checkbox.svg");
	background-size: 16px;
	background-position: center center;
	background-repeat: no-repeat;
}

.form-details__checkbox:disabled + .form-details__text::before {
	background-color: #a4a4a4;
	background-size: 16px;
	background-position: center center;
	background-repeat: no-repeat;
	outline: none;
}



.form-details__checkbox-label {
	position: relative;
	padding-left: 35px;
	line-height: 1;
	height: 26px;
	display: flex;
	align-items: center;
}

.form-details__checkbox-label .form-details__checkbox {
	position: absolute;
	display: block;
	height: 26px;
	width: 26px;
	opacity: 1;
	top: 0;
	left: 0;
}

.form-details__checkbox-label .form-details__checkbox::before {
	position: absolute;
	content: '';
	height: 26px;
	width: 26px;
	background-color: #fff;
	top: 0;
	left: 0;
	-webkit-transition: background-color 0.3s linear;
	transition: background-color 0.3s linear;
}

.form-details__checkbox-label:hover .form-details__checkbox::before {
	outline: 2px solid #49aef7;
}

.form-details__checkbox-label .form-details__checkbox:checked::before {
	/*background-color: #272b31;*/
	background-image: url("./images/checkbox_color_blue.svg");
	background-size: 16px;
	background-position: center center;
	background-repeat: no-repeat;
}


.form-details__checkboxes {
	display: flex;
	flex-wrap: wrap;
}

.form-details__label_tech {
	width: 30%;
	margin-left: 5%;
	padding-bottom: 0;
	margin-bottom: 16px;
}

.form-details__label_tech:nth-of-type(3n + 1) {
	margin-left: 0;
}




@-webkit-keyframes rotation {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	100% {
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
	}
}

@keyframes rotation {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	
	100% {
		-webkit-transform: rotate(225deg);
		transform: rotate(225deg);
	}
}

.features {
	position: relative;
	margin-bottom: 30px;
}

.features__slogan {
	font-size: 38.5px;
	font-weight: 100;
	letter-spacing: 1px;
	color: inherit;
	text-align: center;
}

.features__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 67.5px;
}

.features::before,
.features::after {
	content: '';
	position: absolute;
	z-index: -1;
}

.option {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 165px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-right: 48px;
}


.option:last-child {
	margin-right: 0;
}

.option__image {
	width: 103.5px;
	height: 103.5px;
	margin-bottom: 22px;
}

.option__title {
	max-width: 160px;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	margin: 0;
}

.option__description {
	font-size: 12px;
	text-align: center;
	color: #969fac;
	font-weight: 300;
	margin-top: 15.5px;
}

.clients {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	margin-top: auto;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.client {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 25%;
	border-right: 1px solid #272b31;
	border-left: 1px solid #272b31;
	background-color: #1c1f24;
	-webkit-transition: background-color 0.2s ease;
	transition: background-color 0.2s ease;
	color: #fff;
	cursor: pointer;
}

.client:hover {
	background-color: #2d84d7;
}

.client:first-child {
	border-left-color: #272b31;
}

.client:last-child {
	border-right-color: #272b31;
}

.client__image-wrapper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 35px;
	margin-top: 23px;
	margin-bottom: 10px;
}

.client__image {
	fill: #fff;
	max-width: 100%;
}

.client__image_poster {
	height: 22px;
}

.client__image_yclients {
	height: 16px;
}

.client__image_grotem {
	height: 16px;
}

.client__image_cassby {
	stroke: #fff;
	height: 28px;
}

.client__image_iport {
	height: 28px;
}

.client__description {
	font-size: 11px;
	text-align: center;
}

.client__link {
	display: block;
	width: 27.5px;
	height: 27.5px;
	margin-top: 18px;
	margin-bottom: 19.5px;
}

.client__link-svg {
	fill: #2d84d7;
	max-width: 100%;
	max-height: 100%;
	-webkit-transition: fill 0.2s ease;
	transition: fill 0.2s ease;
}

.client:hover .client__link-svg {
	fill: #fff;
}

.header {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-top: 67px;
	margin-bottom: 41px;
	position: relative;
}

.header__logo {
	fill: #fff;
}

.header::before,
.header::after {
	content: '';
	position: absolute;
}

.inner-header {
	margin-top: 34px;
	margin-right: 385px;
	padding-left: 102px;
	padding-right: 51px;
}

.inner-header__client-wrpper {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.inner-header__logo-wrapper {
	display: block;
	position: relative;
	height: 43px;
}

.inner-header__logo-wrapper::after {
	position: absolute;
	content: '';
	height: 66px;
	width: 2px;
	right: -26px;
	top: -9px;
	background-color: #c8c8c8;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-transform: rotate(28deg);
	-ms-transform: rotate(28deg);
	transform: rotate(28deg);
}

.inner-header__logo {
	height: 100%;
}

.inner-header__client {
	margin-left: 57px;
	margin-right: auto;
}

.inner-header__client_poster {
	height: 30px;
}

.inner-header__client_yclients {
	height: 21px;
}

.inner-header__client_grotem {
	height: 29px;
}

.inner-header__client_cassby {
	height: 29px;
}

.inner-header__client_iport {
	height: 39px;
}

.inner-header__link {
	display: block;
	font-size: 0;
	width: 39px;
	height: 18px;
	margin-left: 17px;
}

.inner-header__link svg {
	fill: #898989;
}

.inner-header__link:hover use,
.inner-header__link:active use {
	fill: #49aef7;
}

.inner-header__menu {
	position: relative;
}

.slide-menu {
	z-index: 10001;
	position: fixed;
	top: 26px;
	bottom: 0;
	left: -237px;
	-webkit-transition: left 0.4s;
	transition: left 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.slide-menu_open {
	left: 0;
}

.slide-menu__list {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}

.hamburger {
	outline: none;
	padding: 15px;
	position: absolute;
	right: -88px;
	display: inline-block;
	cursor: pointer;
	-webkit-transition-property: opacity, background-color, -webkit-filter;
	transition-property: opacity, background-color, -webkit-filter;
	transition-property: opacity, filter, background-color;
	transition-property: opacity, filter, background-color, -webkit-filter;
	-webkit-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: linear;
	transition-timing-function: linear;
	-webkit-transition: right 0.15s 0.3s linear;
	transition: right 0.15s 0.3s linear;
	text-transform: none;
	background-color: #fff;
	border: 0;
	margin: 0;
	overflow: visible;
}

.hamburger.is-active {
	right: -64px;
}

.hamburger-box {
	width: 34px;
	height: 28px;
	display: inline-block;
	position: relative;
}

.hamburger-inner {
	display: block;
	top: 50%;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
	width: 100%;
	height: 3px;
	background-color: #3496dd;
	position: absolute;
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.15s;
	transition-duration: 0.15s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
	content: "";
	display: block;
}

.hamburger-inner:before {
	top: -12px;
}

.hamburger-inner:after {
	bottom: -12px;
}

.hamburger--squeeze .hamburger-inner {
	-webkit-transition-duration: 0.075s;
	transition-duration: 0.075s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
	-webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
	-webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active {
	background-color: #3496dd;
}

.hamburger--squeeze.is-active:hover {
	background-color: #49aef7;
}

.hamburger--squeeze.is-active .hamburger-inner {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
	top: 0;
	opacity: 0;
	-webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
	bottom: 0;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.is-active .hamburger-inner,
.is-active .hamburger-inner::before,
.is-active .hamburger-inner::after {
	background-color: #fff;
}

.slide-link {
	display: block;
	background-color: #1c1f24;
	width: 237px;
	height: 20%;
	padding-left: 35px;
	padding-right: 25px;
	border-bottom: 2px solid #595b5e;
}

.slide-link:last-child {
	border-bottom: none;
}

.slide-link:hover {
	background-color: #272b31;
}

.slide-link__image-wrapper {
	height: 50%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.slide-link__image {
	max-width: 100%;
	margin-bottom: 7px;
}

.slide-link__image_poster {
	height: 25px;
}

.slide-link__image_yclients {
	height: 19px;
}

.slide-link__image_grotem {
	height: 20px;
}

.slide-link__image_cassby {
	height: 36px;
}

.slide-link__image_iport {
	height: 36px;
}

.slide-link__description {
	height: 50%;
	padding-top: 7px;
	font-size: 11px;
	color: #fff;
}

.inner-wrapper {
	margin-right: 385px;
}

.options {
	margin-top: 66px;
	padding-left: 38px;
	padding-right: 20px;
}

.options_iport {
	padding-right: 90px;
	margin-top: 45px;
}

.options__title {
	margin: 0;
	margin-bottom: 25px;
	font-size: 22.5px;
}

.options__title-link {
	font-size: 50%;
    background-color: #3496dd;
    margin-left: 30px;
    padding: 15px 17px 15px;
    color: #fff;
    font-weight: 400;
    letter-spacing: .01em;
    position: relative;
}

/*.options__title-link:after {
	content: "";
	background-image: url('./images/link-icon.svg');
	background-repeat: no-repeat;
	color: inherit;
	display: inline-block;
	font-style: normal;
	font-weight: inherit;
	font-size: inherit;
	line-height: 1;
	height: 10px;
	width: 20px;
	position: absolute;
	z-index: 1;
	left: 103%;
	bottom: 3px;
}*/

.options__title-link:hover {
	    border-bottom: 1.4px solid;
    background-color: #49aef7;
    padding: 15px 17px 15px;
}

.options__list {
	/*display: -webkit-inline-box;*/
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	width: 100%;
}

.options__content_iport {
	margin-top: 81px;
}

.advantage {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 0;
	-webkit-flex: 0 1 auto;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	padding: 0 2px;
}

.advantage__image-wrapper {
	height: 59px;
}

.advantage__image {
	height: 100%;
}

.advantage__title {
	margin: 0;
	margin-top: 22px;
	font-size: 13px;
	line-height: 1.2;
	text-align: center;
}

.advantage__description {
	font-size: 11px;
	line-height: 1.2;
	text-align: center;
	margin: 0;
	margin-top: 8px;
	padding: 0;
}

.sidebar {
	position: fixed;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-bottom: -3px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	top: 0;
	right: 0;
	height: 100%;
	overflow-y: auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 385px;
	padding-top: 34px;
	padding-left: 45px;
	padding-right: 45px;
	padding-bottom: 42px;
	background-size: cover;
	background-position: center;
	z-index: 10001;
}

.sidebar_poster {
	background-color: #e3c3a4;
	background-image: url("./images/poster-aside.jpg");
}

.sidebar_yclients {
	background-color: #2f7197;
	background-image: url("./images/yclients-aside.png");
}

.sidebar_grotem {
	background-color: #4a4b5d;
	background-image: url("./images/grotem-aside.png");
}

.sidebar_cassby {
	background-color: #92684f;
	background-image: url("./images/cassby-aside.png");
}

.sidebar_light {
	color: #fff;
}

.sidebar__title {
	font-size: 38.7px;
	font-weight: 100;
	margin-bottom: auto;
}

.business-contain {
	margin-bottom: 56px;
}

.business-contain__title {
	font-size: 22.5px;
	margin: 0;
	margin-bottom: 15px;
}

.business-contain__list {
	margin: 0;
	padding-left: 27px;
	list-style: none;
}

.business-contain__item {
	position: relative;
	font-size: 16.2px;
	line-height: 1;
	margin-bottom: 7px;
}

.business-contain__item::before {
	content: '';
	position: absolute;
	height: 2px;
	width: 14px;
	background-color: #fff;
	opacity: 0.7;
	top: 8px;
	left: -25px;
}

.form-details__result {
	text-align: center;
	color: #5b5b5b;
	margin-top: 20px;
	font-size: 20px;
	background-color: #3496dd;
	color: #fff;
	padding: 20px 20px;
}

select {
	font-size: 15px;
	-webkit-appearance: textarea;
}

select > option {
	padding: 3px 0;
}

textarea {
	height: 100px;
}

@media only screen and (min-width: 1280px) {
	.details {
		right: -560px;
		width: 560px;
		padding-top: 37px;
		padding-bottom: 47px;
		padding-left: 54px;
		padding-right: 54px;
	}
	
	.details__title {
		font-size: 30px;
		margin-left: -5px;
		margin-right: -10px;
	}
	
	.details__close {
		top: 22px;
		right: 22px;
		width: 38px;
		height: 38px;
	}
	
	.details__close::before {
		width: 3px;
		height: 38px;
		left: 18px;
	}
	
	.details__close::after {
		width: 38px;
		height: 3px;
		top: 18px;
	}
	
	.details_iport {
		right: 0;
		width: 427px;
	}
	
	.form-details__label {
		font-size: 13px;
		padding-bottom: 10px;
	}
	
	.form-details__checkbox-label {
		height: 30px;
		padding-bottom: 0;
		padding-left: 40px;
	}
	
	.form-details__input {
		font-size: 18px;
		padding: 9px 12px;
		margin-bottom: 20px;
	}
	
	.form-details__text {
		padding-left: 36px;
		font-size: 11px;
	}
	
	.form-details__text_link {
		font-size: 11px;
	}
	
	.form-details__button {
		margin-top: 91px;
	}
	
	.form-details__checkbox {
		height: 23px;
		width: 23px;
	}
	
	.form-details__checkbox + .form-details__text::before {
		height: 23px;
		width: 23px;
	}
	
	.form-details__checkbox:checked + .form-details__text::before {
		background-size: 17px;
	}
	
	.form-details__checkbox:disabled + .form-details__text::before {
		background-size: 17px;
	}
	
	.form-details__checkbox-label .form-details__checkbox::before {
		position: absolute;
		content: '';
		height: 30px;
		width: 30px;
	}
	
	.form-details__checkbox-label .form-details__checkbox:checked::before {
		background-size: 17px;
	}
	
	.features__slogan {
		font-size: 45px;
	}
	
	.features__list {
		margin-top: 75px;
	}
	
	.option {
		width: 185px;
		margin-right: 70px;
	}
	
	.option__image {
		width: 115px;
		height: 115px;
		margin-bottom: 24px;
	}
	
	.option__image {
		width: 130px;
		height: 130px;
		margin-bottom: 24px;
	}
	
	.option__title {
		font-size: 17.5px;
		max-width: 185px;
	}
	
	.option__description {
		font-size: 14.5px;
		margin-top: 16.5px;
	}
	
	.client__image-wrapper {
		height: 38.5px;
		margin-top: 27.5px;
		margin-bottom: 11px;
	}
	
	.client__image_poster {
		height: 24px;
	}
	
	.client__image_yclients {
		height: 17px;
	}
	
	.client__image_grotem {
		height: 18px;
	}
	
	.client__image_cassby {
		height: 31px;
	}
	
	.client__image_iport {
		height: 32px;
	}
	
	.client__description {
		font-size: 12px;
	}
	
	.client__link {
		width: 30px;
		height: 30px;
		background-size: 30px 30px;
		margin-top: 21px;
		margin-bottom: 22.5px;
	}
	
	.header {
		padding-top: 35px;
		margin-bottom: 46px;
	}
	
	.header__logo {
		width: 180px;
		height: 75px;
	}
	
	.inner-header {
		margin-top: 38px;
		margin-right: 430px;
		padding-left: 113px;
		padding-right: 57px;
	}
	
	.inner-header__logo-wrapper {
		height: 48px;
	}
	
	.inner-header__client {
		margin-left: 62px;
		position: relative;
		top: -2px;
	}
	
	.inner-header__client_poster {
		height: 33px;
	}
	
	.inner-header__client_yclients {
		height: 23px;
	}
	
	.inner-header__client_grotem {
		height: 32px;
	}
	
	.inner-header__client_cassby {
		height: 32px;
	}
	
	.inner-header__client_iport {
		height: 43px;
	}
	
	.inner-header__link {
		width: 43px;
		height: 20px;
		margin-left: 19px;
	}
	
	.inner-header__link svg {
		width: 43px;
		height: 20px;
	}
	
	.slide-menu {
		top: 29px;
		left: -264px;
	}
	
	.slide-menu_open {
		left: 0;
	}
	
	.hamburger {
		right: -96px;
		padding: 15px;
	}
	
	.hamburger.is-active {
		right: -68px;
	}
	
	.hamburger-box {
		width: 38px;
		height: 31px;
	}
	
	.hamburger-inner:before {
		top: -13px;
	}
	
	.hamburger-inner:after {
		bottom: -12px;
	}
	
	.slide-link {
		width: 264px;
		padding-left: 40px;
		padding-right: 35px;
	}
	
	.slide-link__image_poster {
		height: 28px;
	}
	
	.slide-link__image_yclients {
		height: 22px;
	}
	
	.slide-link__image_grotem {
		height: 23px;
	}
	
	.slide-link__image_cassby {
		height: 39px;
	}
	
	.slide-link__image_iport {
		height: 39px;
	}
	
	.slide-link__description {
		font-size: 12px;
	}
	
	.inner-wrapper {
		margin-right: 427px;
	}
	
	.options {
		margin-top: 74px;
		padding-left: 42px;
	}
	
	.options_iport {
		padding-right: 101px;
		margin-top: 46px;
	}
	
	.options__title {
		font-size: 28px;
		margin-bottom: 30px;
	}
	
	.options__title-link:after {
		bottom: 4px;
	}
	
	.options__content_iport {
		margin-top: 81px;
	}
	
	.advantage__image-wrapper {
		height: 67px;
	}
	
	.__second .advantage__image-wrapper {
		height: 88px;
	}
	
	.advantage__title {
		font-size: 17px;
		margin-top: 25px;
	}
	
	.advantage__description {
		font-size: 12.5px;
	}
	
	.__second .advantage__description {
		font-size: 12.5px;
	}
	
	.sidebar {
		width: 427px;
		/*width: 560px;*/
		padding-top: 38px;
		padding-bottom: 47px;
		padding-left: 54px;
		padding-right: 54px;
	}
	
	.sidebar__title {
		font-size: 41px;
		margin-left: -5px;
		margin-right: -10px;
	}
	
	.business-contain {
		margin-bottom: 65px;
	}
	
	.business-contain__title {
		font-size: 25px;
		margin-bottom: 17px;
	}
	
	.business-contain__list {
		padding-left: 35px;
	}
	
	.business-contain__item {
		font-size: 18px;
	}
	
	.business-contain__item::before {
		width: 16px;
		left: -33px;
	}
}

@media only screen and (min-width: 1920px) {
	.details {
		right: -684px;
		width: 684px;
		padding-top: 65px;
		padding-bottom: 81px;
		padding-left: 86px;
		padding-right: 86px;
	}
	
	.details_iport {
		right: 0;
	}
	
	.details__title {
		font-size: 48px;
	}
	
	.details__form_iport {
		margin-top: 37px;
	}
	
	.details__title_iport {
		padding-top: 8px;
	}
	
	.details__close {
		top: 33px;
		right: 33px;
		width: 61px;
		height: 61px;
	}
	
	.details__close::before {
		width: 4px;
		height: 61px;
		left: 29px;
	}
	
	.details__close::after {
		width: 61px;
		height: 4px;
		top: 29px;
	}
	
	.form-details__label {
		font-size: 22px;
		padding-bottom: 12px;
	}
	
	.form-details__checkbox-label {
		height: 47px;
		padding-bottom: 0;
		padding-left: 61px;
	}
	
	.form-details__input {
		font-size: 25px;
		padding: 17px 25px 18px 25px;
		margin-bottom: 26px;
	}
	
	.form-details__text {
		padding-left: 58px;
		font-size: 18px;
		margin-top: 43px;
	}
	
	.form-details__text_link {
		font-size: 18px;
	}
	
	.form-details__button {
		margin-top: 38px;
	}
	
	.form-details__button {
		padding: 26px 28px 32px;
	}
	
	.form-details__checkbox {
		height: 38px;
		width: 38px;
	}
	
	.form-details__checkbox + .form-details__text::before {
		height: 38px;
		width: 38px;
	}
	
	.form-details__checkbox:checked + .form-details__text::before {
		background-size: 25px;
	}
	
	.form-details__checkbox:disabled + .form-details__text::before {
		background-size: 25px;
	}
	
	.form-details__checkbox-label .form-details__checkbox::before {
		height: 47px;
		width: 47px;
	}
	
	.form-details__checkbox-label .form-details__checkbox:checked::before {
		background-size: 26px;
	}
	
	.features__slogan {
		font-size: 50px;
		letter-spacing: 2px;
	}
	
	.features__list {
		margin-top: 81px;
	}
	
	.option {
		width: 330px;
		margin-right: 48px;
	}
	
	.option__image {
		width: 144px;
		height: 145px;
		margin-bottom: 38px;
	}
	
	.option__title {
		font-size: 28px;
		max-width: 330px;
	}
	
	.option__description {
		font-size: 22px;
		margin-top: 27px;
	}
	
	.client__image-wrapper {
		height: 62px;
		margin-top: 41px;
		margin-bottom: 19px;
	}
	
	.client__image_poster {
		height: 38px;
	}
	
	.client__image_yclients {
		height: 27px;
	}
	
	.client__image_grotem {
		height: 29px;
	}
	
	.client__image_cassby {
		height: 50px;
	}
	
	.client__image_iport {
		height: 50px;
	}
	
	.client__description {
		font-size: 19px;
	}
	
	.client__link {
		width: 48px;
		height: 48px;
		margin-top: 33px;
		margin-bottom: 36px;
	}
	
	.header {
		padding-top: 109px;
		margin-bottom: 38px;
	}
	
	.header__logo {
		width: 267px;
		height: 110px;
	}
	
	.inner-header {
		margin-top: 61px;
		margin-right: 684px;
		padding-left: 182px;
		padding-right: 91px;
	}
	
	.inner-header__logo-wrapper {
		height: 76px;
	}
	
	.inner-header__logo-wrapper::after {
		height: 115px;
		width: 2px;
		right: -44px;
		top: -23px;
	}
	
	.inner-header__client {
		margin-left: 100px;
		top: -3px;
	}
	
	.inner-header__client_poster {
		height: 52px;
	}
	
	.inner-header__client_yclients {
		height: 36px;
	}
	
	.inner-header__client_grotem {
		height: 51px;
	}
	
	.inner-header__client_cassby {
		height: 51px;
	}
	
	.inner-header__client_iport {
		height: 69px;
	}
	
	.inner-header__link {
		width: 69px;
		height: 32px;
		margin-left: 30px;
	}
	
	.inner-header__link svg {
		width: 69px;
		height: 32px;
	}
	
	.slide-menu {
		top: 45px;
		left: -422px;
	}
	
	.slide-menu_open {
		left: 0;
	}
	
	.hamburger {
		right: -145px;
		padding: 26px;
	}
	
	.hamburger.is-active {
		right: -113px;
	}
	
	.hamburger-box {
		width: 61px;
		height: 50px;
	}
	
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after {
		height: 4px;
	}
	
	.hamburger-inner:before {
		top: -22px;
	}
	
	.hamburger-inner:after {
		bottom: -22px;
	}
	
	.slide-link {
		width: 422px;
		padding-left: 65px;
		padding-right: 55px;
	}
	
	.slide-link__image_poster {
		height: 43px;
	}
	
	.slide-link__image_yclients {
		height: 34px;
	}
	
	.slide-link__image_grotem {
		height: 35px;
	}
	
	.slide-link__image_cassby {
		height: 62px;
	}
	
	.slide-link__image_iport {
		height: 62px;
	}
	
	.slide-link__description {
		font-size: 19px;
	}
	
	.inner-wrapper {
		margin-right: 684px;
	}
	
	.options {
		margin-top: 79px;
		padding-left: 68px;
		padding-right: 50px;
	}
	
	.options_iport {
		padding-right: 161px;
	}
	
	.options__title {
		font-size: 40px;
		margin-bottom: 49px;
	}
	
	.options__title-link:after {
		height: 14px;
		bottom: 5px;
	}
	
	.advantage__image-wrapper {
		height: 104px;
	}
	
	.options__content_iport {
		margin-top: 48px;
	}
	
	.advantage__title {
		font-size: 20px;
		margin-top: 33px;
	}
	
	.advantage__description {
		font-size: 19px;
		margin-top: 0;
	}
	
	.sidebar {
		width: 684px;
		padding-top: 60px;
		padding-bottom: 81px;
		padding-left: 86px;
		padding-right: 86px;
	}
	
	.sidebar__title {
		font-size: 69px;
		margin-left: -7px;
		margin-right: -10px;
	}
	
	.business-contain {
		margin-bottom: 53px;
	}
	
	.business-contain__title {
		font-size: 40px;
		margin-bottom: 27px;
	}
	
	.business-contain__list {
		padding-left: 44px;
	}
	
	.business-contain__item {
		font-size: 29px;
		margin-bottom: 10px;
	}
	
	.business-contain__item::before {
		width: 26px;
		left: -44px;
		top: 12px;
	}
}

@media only screen and (min-width: 2540px) {
	.details {
		right: -854px;
		width: 854px;
		padding-top: 83px;
		padding-right: 108px;
		padding-bottom: 103px;
		padding-left: 108px;
	}
	
	.details_iport {
		right: 0;
	}
	
	.details__title {
		font-size: 58px;
		margin-left: -15px;
		margin-right: -23px;
	}
	
	.details__close {
		top: 44px;
		right: 44px;
		width: 78px;
		height: 78px;
	}
	
	.details__close::before {
		width: 5px;
		height: 78px;
		left: 35px;
	}
	
	.details__close::after {
		width: 78px;
		height: 5px;
		top: 35px;
	}
	
	.form-details__label {
		font-size: 28px;
		padding-bottom: 14px;
	}
	
	.form-details__input {
		font-size: 28px;
		padding: 22px 30px 24px 30px;
		margin-bottom: 32px;
	}
	
	.form-details__text {
		padding-left: 73px;
		font-size: 23px;
		margin-top: 43px;
	}
	
	.form-details__text_link {
		font-size: 23px;
	}
	
	.form-details__button {
		margin-top: 52px;
	}
	
	.form-details__checkbox {
		height: 46px;
		width: 46px;
	}
	
	.form-details__checkboxes {
		margin-top: 14px;
	}
	
	.form-details__checkbox + .form-details__text::before {
		height: 46px;
		width: 46px;
	}
	
	.form-details__checkbox:checked + .form-details__text::before {
		background-size: 28px;
	}
	
	.form-details__checkbox:disabled + .form-details__text::before {
		background-size: 28px;
	}
	
	.form-details__checkbox-label {
		height: 59px;
		margin-bottom: 38px;
		padding-left: 79px;
		padding-bottom: 0;
	}
	
	.form-details__checkbox-label .form-details__checkbox::before {
		height: 59px;
		width: 59px;
	}
	
	.form-details__checkbox-label .form-details__checkbox:checked::before {
		background-size: 33px;
	}
	
	.features__slogan {
		font-size: 86px;
	}
	
	.features__list {
		margin-top: 99px;
	}
	
	.option {
		width: 385px;
		margin-right: 88px;
	}
	
	.option__image {
		width: 230px;
		height: 230px;
		margin-bottom: 49px;
	}
	
	.option__title {
		font-size: 36px;
		max-width: 380px;
	}
	
	.option__description {
		font-size: 27.5px;
		margin-top: 31px;
	}
	
	.client__image-wrapper {
		height: 77px;
		margin-top: 52px;
		margin-bottom: 23px;
	}
	
	.client__image_poster {
		height: 46px;
	}
	
	.client__image_yclients {
		height: 34px;
	}
	
	.client__image_grotem {
		height: 35px;
	}
	
	.client__image_cassby {
		height: 62px;
	}
	
	.client__image_iport {
		height: 63px;
	}
	
	.client__description {
		font-size: 24px;
	}
	
	.client__link {
		width: 60px;
		height: 60px;
		margin-top: 42px;
		margin-bottom: 44px;
	}
	
	.header {
		padding-top: 80px;
		margin-bottom: 50px;
	}
	
	.header__logo {
		width: 334px;
		height: 136px;
	}
	
	.inner-header {
		margin-top: 77px;
		margin-right: 854px;
		padding-left: 227px;
		padding-right: 115px;
	}
	
	.inner-header__logo-wrapper {
		height: 94px;
	}
	
	.inner-header__logo-wrapper::after {
		height: 142px;
		width: 2px;
		right: -59px;
		top: -28px;
	}
	
	.inner-header__client {
		margin-left: 128px;
		top: -4px;
	}
	
	.inner-header__client_poster {
		height: 65px;
	}
	
	.inner-header__client_yclients {
		height: 45px;
	}
	
	.inner-header__client_grotem {
		height: 64px;
	}
	
	.inner-header__client_cassby {
		height: 64px;
	}
	
	.inner-header__client_iport {
		height: 86px;
	}
	
	.inner-header__link {
		width: 85px;
		height: 39px;
		margin-left: 38px;
	}
	
	.inner-header__link svg {
		width: 85px;
		height: 39px;
	}
	
	.slide-menu {
		top: 56px;
		left: -528px;
	}
	
	.slide-menu_open {
		left: 0;
	}
	
	.hamburger {
		right: -198px;
		padding: 36px;
	}
	
	.hamburger.is-active {
		right: -148px;
	}
	
	.hamburger-box {
		width: 76px;
		height: 62px;
	}
	
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after {
		height: 5px;
	}
	
	.hamburger-inner:before {
		top: -27px;
	}
	
	.hamburger-inner:after {
		bottom: -27px;
	}
	
	.slide-link {
		width: 528px;
		padding-left: 80px;
		padding-right: 70px;
	}
	
	.slide-link__image_poster {
		height: 54px;
	}
	
	.slide-link__image_yclients {
		height: 42px;
	}
	
	.slide-link__image_grotem {
		height: 44px;
	}
	
	.slide-link__image_cassby {
		height: 77px;
	}
	
	.slide-link__image_iport {
		height: 77px;
	}
	
	.slide-link__description {
		font-size: 24px;
	}
	
	.inner-wrapper {
		margin-right: 854px;
	}
	
	.options {
		margin-top: 100px;
		padding-left: 85px;
	}
	
	.options_iport {
		padding-right: 201px;
	}
	
	.options__title {
		font-size: 50px;
		margin-bottom: 60px;
	}
	
	.options__title-link:after {
		height: 17px;
	}
	
	.options__content_iport {
		margin-top: 59px;
	}
	
	.advantage__image-wrapper {
		height: 105px;
	}
	
	.__second .advantage__image-wrapper {
		height: 105px;
	}
	
	.advantage__title {
		font-size: 25px;
		margin-top: 40px;
	}
	
	.__second .advantage {
		padding: 0 50px;
	}
	
	.advantage {
		padding: 0 40px;
	}
	
	.advantage__description {
		font-size: 19px;
		padding-top: 10px;
	}
	
	.__second .advantage__description {
		font-size: 19px;
		padding-top: 10px;
	}
	
	.sidebar {
		width: 854px;
		padding-top: 60px;
		padding-right: 100px;
		padding-bottom: 100px;
		padding-left: 100px;
	}
	
	.sidebar__title {
		font-size: 80px;
		margin-left: -10px;
		margin-right: -20px;
		letter-spacing: 1px;
	}
	
	.business-contain {
		margin-bottom: 65px;
	}
	
	.business-contain__title {
		font-size: 50px;
		margin-bottom: 37px;
	}
	
	.business-contain__list {
		padding-left: 56px;
	}
	
	.business-contain__item {
		font-size: 36px;
		margin-bottom: 12px;
	}
	
	.business-contain__item::before {
		width: 32px;
		left: -56px;
		top: 16px;
	}
}
