:root {
	--cd-color-transparent: transparent;
	--cd-color-white: #fff;
	--cd-color-white-alpha: rgba(255, 255, 255, .75);
	--cd-color-light-white: #dcddde;
	--cd-color-purple: #8d7c9e;
	--cd-color-purple-alpha: rgba(141, 124, 158, .25);
	--cd-color-light-gray: #a8a8a8;
	--cd-color-semi-gray: #686868;
	--cd-color-gray: #383838;
	--cd-footer-semi-black: #222;
	--cd-color-black: #000;
	--cd-color-black-alpha: rgba(0, 0, 0, .5);
	--cd-color-black-alpha-half: rgba(0, 0, 0, .25);
}
::-moz-selection {
	background-color: var(--main-color-purple);
	color: var(--main-color-white);
}
::selection {
	background-color: var(--main-color-purple);
	color: var(--main-color-white);
}
:focus{
	outline: none;
}



body.modal-is-visible {
	overflow: hidden;
	position: relative;
	z-index: 1;
}
/*
body.modal-is-visible .main-wrap {
	opacity: .75;
	-webkit-filter: blur(5px);
	filter: blur(5px);
	-ms-filter: 'progid:DXImageTransform.Microsoft.MotionBlur(strength=5)';
}
*/
/*
body .main-wrap {
	-webkit-transition: -webkit-filter 150ms cubic-bezier(0.5, 1, 0.89, 1), opacity 150ms cubic-bezier(0.5, 1, 0.89, 1);
	transition: filter 150ms cubic-bezier(0.5, 1, 0.89, 1), opacity 150ms cubic-bezier(0.5, 1, 0.89, 1);
}
*/
body.cd-show .cd-user-modal {
     background: rgba(141,124,158,.50);
}
body.cd-show .cd-user-modal .cd-wrapper {
	visibility: visible;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	transform: translateY(0);
}



/* cd-user-modal */
.cd-user-modal{
	font-family: 'ITC Avant Garde Std Bk', sans-serif;
	position: fixed;
	overflow: hidden;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	z-index: 1001;
	background: transparent;
	-webkit-tap-highlight-color: transparent;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	scroll-behavior: smooth;
}
.cd-visible .cd-user-modal {
	overflow-x: hidden;
	overflow-y: auto;
}
.cd-user-modal .cd-wrapper{
	position: relative;
	margin: 0 auto;
	max-width: 670px;
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: -webkit-transform 375ms cubic-bezier(0.5, 1, 0.89, 1) 200ms, visibility 150ms 200ms;
	-moz-transition: -moz-transform 375ms cubic-bezier(0.5, 1, 0.89, 1) 200ms, visibility 150ms 200ms;
	transition: transform 375ms cubic-bezier(0.5, 1, 0.89, 1) 200ms, visibility 150ms 200ms;
}
.cd-user-modal .cd-wrapper.cd-hidden{
	border: transparent;
	background: transparent;
	box-shadow: none;
}
.cd-user-modal .cd-wrapper.cd-hidden .cd-close-form{
	display: none;
}
.cd-user-modal .cd-modal-content{
	overflow: hidden;
}
.cd-user-modal .cd-close-form{
	width: 25px;
	height: 25px;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 5;
	cursor: pointer;
}
.cd-user-modal .cd-close-form svg{
	display: block;
	shape-rendering: geometricPrecision;
	text-rendering: geometricPrecision;
	image-rendering: optimizeQuality;
	fill-rule: evenodd;
	clip-rule: evenodd;
	width: 100%;
	height: 100%;
}
.cd-user-modal .cd-close-form svg path{
	fill: var(--cd-color-purple);
}
.cd-user-modal .cd-close-form:hover svg path{
	fill: var(--cd-color-semi-gray);
}
.cd-user-modal .cd-modal-content{
	position: relative;
	z-index: 1;
	padding: 40px;
	background: var(--cd-color-white);
	border-width: 3px;
	border-style: solid;
	border-color: var(--cd-color-purple);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
/* cd-user-modal end */





/* cd-user-modal universal boxes */
.cd-user-modal .cd-modal-headline{
	font-family: 'AGAvantGardeCyr', sans-serif;
	font-size: 21px;
	line-height: 21px;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
	color: var(--cd-color-purple);
}
.cd-user-modal .cd-modal-headline span{
	display: block;
	font-family: 'ITC Avant Garde Std Bk', sans-serif;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: .75px;
	color: var(--cd-color-gray);
	margin-top: 20px;
}
/* cd-user-modal universal boxes end */





/* .cd-user-modal .cd-modal-text */
.cd-user-modal .cd-modal-text {
	display: block;
	margin-top: 10px;
	font-family: 'ITC Avant Garde Std Bk', sans-serif;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: .75px;
	color: var(--main-color-gray);
}
/* .cd-user-modal .cd-modal-text end */





/* .cd-user-modal.request-modal */
.cd-user-modal.advantages-modal .cd-wrapper{
	max-width: 890px;
	width: 100%;
}
.cd-user-modal.advantages-modal .cd-modal-headline{
	margin-bottom: 42px;
}
.cd-user-modal.advantages-modal .cd-modal-headline span{
	margin-bottom: 10px;
	margin-top: 0;
}
/* .cd-user-modal.request-modal end */





.advantages-modal .cd-advantages-main-row {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-ms-flex-pack: justify;
}
.advantages-modal .cd-advantages-main-row .cam-col {
	margin-left: 5%;
	width: 53%;
}
.advantages-modal .cd-advantages-main-row .cam-col:first-child {
	margin-left: 0;
	width: 42%;
}
.advantages-modal .cam-img {
	overflow: hidden;
	position: relative;
	padding-top: 100%;
	margin: 0 auto;
}
.advantages-modal .cam-img img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
}
.advantages-modal .cam-title {
	margin-bottom: 20px;
	font-family: 'AGAvantGardeCyr', sans-serif;
	font-size: 21px;
	line-height: 21px;
	letter-spacing: 2px;
	text-align: center;
	text-transform: uppercase;
	color: var(--cd-color-purple);
}
.advantages-modal .cam-title.cam-title-mobile {
	display: none;
}
.advantages-modal .cam-title br {
	display: none;
}
.advantages-modal .cam-list {
	list-style: none;
	list-style-position: inside;
}
.advantages-modal .cam-list li {
	display: block;
	position: relative;
	margin-top: 12px;
	padding-left: 30px;
	font-family: 'ITC Avant Garde Std Bk', sans-serif;
	font-size: 12px;
	line-height: 17px;
	letter-spacing: .75px;
	color: var(--main-color-gray);
}
.advantages-modal .cam-list li:first-child {
	margin-top: 0;
}
.advantages-modal .cam-list li:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	right: auto;
	z-index: 1;
	margin: auto 0;
	width: 17px;
	height: 17px;
	background: url("../img/check.svg") no-repeat center center;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	background-size: 100%;
}


@media only screen and (min-width: 1921px) {
	/*
	.cd-user-modal .cd-wrapper{
		max-width: 670px;
	}
	.cd-user-modal .cd-close-form{
		width: 25px;
		height: 25px;
		top: 10px;
		right: 10px;
	}
	.cd-user-modal .cd-modal-content{
		padding: 40px;
		border-width: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	.cd-user-modal .cd-modal-headline{
		font-size: 21px;
		line-height: 21px;
		letter-spacing: 2px;
	}
	.cd-user-modal .cd-modal-headline span{
		font-size: 12px;
		line-height: 17px;
		letter-spacing: .75px;
		margin-top: 20px;
	}
	.cd-user-modal.advantages-modal .cd-wrapper{
		max-width: 890px;
	}
	.cd-user-modal.advantages-modal-modal .cd-modal-headline{
		margin-bottom: 42px;
	}
	.cd-user-modal.advantages-modal .cd-modal-headline span{
		margin-bottom: 10px;
		margin-top: 0;
	}
	.advantages-modal .cam-title {
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 21px;
		letter-spacing: 2px;
	}
	.advantages-modal .cam-list li {
		margin-top: 12px;
		padding-left: 30px;
		font-size: 12px;
		line-height: 17px;
		letter-spacing: .75px;
	}
	.advantages-modal .cam-list li:before {
		width: 17px;
		height: 17px;
	}
	*/
	.cd-user-modal .cd-wrapper{
         max-width: 34.89583vw;
	}
	.cd-user-modal .cd-close-form{
		width: 1.30208vw;
		height: 1.30208vw;
		top: 0.52083vw;
		right: 0.52083vw;
	}
	.cd-user-modal .cd-modal-content{
		padding: 2.08333vw;
		border-width: 0.15625vw;
		-webkit-border-radius: 0.15625vw;
		-moz-border-radius: 0.15625vw;
		border-radius: 0.15625vw;
	}
	.cd-user-modal .cd-modal-headline{
		font-size: 1.09375vw;
		line-height: 1.09375vw;
		letter-spacing: 0.10417vw;
	}
	.cd-user-modal .cd-modal-headline span{
		font-size: 0.625vw;
		line-height: 0.88542vw;
		letter-spacing: 0.03906vw;
		margin-top: 1.04167vw;
	}
	.cd-user-modal .cd-modal-text {
		margin-top: 0.625vw;
		font-size: 0.625vw;
		line-height: 0.88542vw;
		letter-spacing: 0.03906vw;
	}
	.cd-user-modal.advantages-modal .cd-wrapper{
		max-width: 46.35417vw;
	}
	.cd-user-modal.advantages-modal-modal .cd-modal-headline{
		margin-bottom: 2.1875vw;
	}
	.cd-user-modal.advantages-modal .cd-modal-headline span{
		margin-bottom: 0.52083vw;
		margin-top: 0;
	}
	.advantages-modal .cam-title {
		margin-bottom: 1.04167vw;
		font-size: 1.09375vw;
		line-height: 1.09375vw;
		letter-spacing: 0.10417vw;
	}
	.advantages-modal .cam-list li {
		margin-top: 0.625vw;
		padding-left: 1.5625vw;
		font-size: 0.625vw;
		line-height: 0.88542vw;
		letter-spacing: 0.03906vw;
	}
	.advantages-modal .cam-list li:before {
		width: 0.88542vw;
		height: 0.88542vw;
	}
}

@media only screen and (min-width: 441px) and (max-width: 1024px) {
	.cd-user-modal .cd-wrapper{
		max-width: 95%;
	}
	.cd-user-modal.advantages-modal .cd-wrapper{
		max-width: 95%;
	}
}

@media only screen and (min-width: 631px) and (max-width: 768px) {
	.advantages-modal .cam-title br {
		display: block;
	}
}

@media only screen and (min-width: 441px) and (max-width: 630px) {
	.cd-user-modal .cd-close-form{
		width: 25px;
		height: 25px;
		top: 12px;
		right: 12px;
	}
	.cd-user-modal .cd-modal-content{
		padding: 20px;
		border-width: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	.cd-user-modal .cd-modal-headline{
		font-size: 21px;
		line-height: 21px;
		letter-spacing: 2px;
	}
	.cd-user-modal .cd-modal-headline span{
		font-size: 12px;
		line-height: 17px;
		letter-spacing: .75px;
		margin-top: 20px;
	}
	.cd-user-modal.advantages-modal-modal .cd-modal-headline{
		margin-bottom: 42px;
	}
	.cd-user-modal.advantages-modal .cd-modal-headline span{
		margin-bottom: 10px;
		margin-top: 0;
	}
	.advantages-modal .cd-advantages-main-row {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-ms-flex-pack: justify;
	}
	.advantages-modal .cd-advantages-main-row .cam-col {
		margin-left: 0;
		margin-top: 20px;
		width: 100%;
	}
	.advantages-modal .cd-advantages-main-row .cam-col:first-child {
		margin-left: 0;
		margin-top: 0;
		width: 100%;
	}
	.advantages-modal .cd-advantages-main-row .cam-img {
		width: 200px;
		padding-top: 200px;
	}
	.advantages-modal .cam-title {
		display: none;
	}
	.advantages-modal .cam-title br {
		display: none;
	}
	.advantages-modal .cam-title.cam-title-mobile {
		display: block;
	}

}

@media only screen and (max-width: 440px) {
	/*
	.cd-user-modal .cd-wrapper{
		max-width: 410px;
	}
	.cd-user-modal .cd-close-form{
		width: 25px;
		height: 25px;
		top: 12px;
		right: 12px;
	}
	.cd-user-modal .cd-modal-content{
		padding: 20px;
		border-width: 3px;
		-webkit-border-radius: 3px;
		-moz-border-radius: 3px;
		border-radius: 3px;
	}
	.cd-user-modal .cd-modal-headline{
		font-size: 21px;
		line-height: 21px;
		letter-spacing: 2px;
	}
	.cd-user-modal .cd-modal-headline span{
		font-size: 12px;
		line-height: 17px;
		letter-spacing: .75px;
		margin-top: 20px;
	}
	.cd-user-modal.advantages-modal .cd-wrapper{
		max-width: 410px;
	}
	.cd-user-modal.advantages-modal-modal .cd-modal-headline{
		margin-bottom: 42px;
	}
	.cd-user-modal.advantages-modal .cd-modal-headline span{
		margin-bottom: 10px;
		margin-top: 0;
	}
	.advantages-modal .cd-advantages-main-row {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-ms-flex-pack: justify;
	}
	.advantages-modal .cd-advantages-main-row .cam-col {
		margin-left: 0;
		margin-top: 20px;
		width: 100%;
	}
	.advantages-modal .cd-advantages-main-row .cam-col:first-child {
		margin-left: 0;
		margin-top: 0;
		width: 100%;
	}
	.advantages-modal .cam-title {
		display: none;
		margin-bottom: 20px;
		font-size: 21px;
		line-height: 21px;
		letter-spacing: 2px;
	}
	.advantages-modal .cam-title br {
		display: block;
	}
	.advantages-modal .cam-title.cam-title-mobile {
		display: block;
	}
	.advantages-modal .cam-list li {
		margin-top: 12px;
		padding-left: 30px;
		font-size: 16px;
		line-height: 19px;
		letter-spacing: .75px;
	}
	.advantages-modal .cam-list li:before {
		width: 19px;
		height: 19px;
	}*/

	.cd-user-modal .cd-wrapper{
		max-width: 93.18182vw;
	}
	.cd-user-modal .cd-close-form{
		width: 5.68182vw;
		height: 5.68182vw;
		top: 2.72727vw;
		right: 2.72727vw;
	}
	.cd-user-modal .cd-modal-content{
		padding: 4.54545vw;
		border-width: 0.68182vw;
		-webkit-border-radius: 0.68182vw;
		-moz-border-radius: 0.68182vw;
		border-radius: 0.68182vw;
	}
	.cd-user-modal .cd-modal-headline{
		font-size: 4.77273vw;
		line-height: 4.77273vw;
		letter-spacing: 0.45455vw;
	}
	.cd-user-modal .cd-modal-headline span{
		font-size: 2.72727vw;
		line-height: 3.86364vw;
		letter-spacing: 0.17045vw;
		margin-top: 4.54545vw;
	}
	.cd-user-modal .cd-modal-text {
		margin-top: 2.72727vw;
		font-size: 3.63636vw;
		line-height: 4.31818vw;
		letter-spacing: 0.17045vw;
	}
	.cd-user-modal.advantages-modal .cd-wrapper{
		max-width: 93.18182vw;
	}
	.cd-user-modal.advantages-modal-modal .cd-modal-headline{
		margin-bottom: 9.54545vw;
	}
	.cd-user-modal.advantages-modal .cd-modal-headline span{
		margin-bottom: 2.27273vw;
		margin-top: 0;
	}
	.advantages-modal .cd-advantages-main-row {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		-ms-flex-pack: justify;
	}
	.advantages-modal .cd-advantages-main-row .cam-col {
		margin-left: 0;
		margin-top: 4.54545vw;
		width: 100%;
	}
	.advantages-modal .cd-advantages-main-row .cam-col:first-child {
		margin-left: 0;
		margin-top: 0;
		width: 100%;
	}
	.advantages-modal .cam-title {
		display: none;
		margin-bottom: 4.54545vw;
		font-size: 4.77273vw;
		line-height: 4.77273vw;
		letter-spacing: 0.45455vw;
	}
	.advantages-modal .cam-title br {
		display: block;
	}
	.advantages-modal .cam-title.cam-title-mobile {
		display: block;
	}
	.advantages-modal .cam-list li {
		margin-top: 2.72727vw;
		padding-left: 6.81818vw;
		font-size: 3.63636vw;
		line-height: 4.31818vw;
		letter-spacing: 0.17045vw;
	}
	.advantages-modal .cam-list li:before {
		width: 4.31818vw;
		height: 4.31818vw;
	}

}