html{
	height: 100%;
	width: 100%;
}
body{
	margin: 0;
	padding: 0;
	color: #000000;
	font-size: 14px;
	line-height: normal;
	background: #ffffff;
	position: relative;
	width: 100%;
	min-height: 100%;
	min-height: 1285px; 
	-webkit-font-smoothing: subpixel-antialiased !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility:    hidden;
	-ms-backface-visibility:     hidden;
}
@keyframes boxRotate {
	from {
		transform: rotate3d(3, 10, 0, 2deg);
	}
	50% {
		transform: rotate3d(3, 10, 0, -2deg);
	}
	to {
		transform: rotate3d(3, 10, 0, 2deg);
	}
}
@keyframes imgRotate {
	from {
		transform: rotate3d(0, 1, 0, 13deg);
	}
	to {
		transform: rotate3d(0, 1, 0, -13deg);
	}
}
@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
.left{
	float: left;
}
.right{
	float: right;
}
.clear{
	clear: both;
	visibility: hidden;
}
.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

h1, h2, h3, h4, h5, h6{
	margin: 0 0 20px 0;

}
h2{
	font-size: 40px;
	line-height: 46px;
	font-weight: 600;
	color: #e1524b;
	text-transform: uppercase;
}
h2 span {
	display: block;
	padding: 5px 0 0 0;
	font-size: 13px;
	line-height: 15px;
	font-weight: 400;
	color: #777777;
	text-transform: none;
}
p {
	margin: 0 0 20px 0;
	font-family: 'Clear Sans',  Arial, sans-serif;
	font-size: 14px;
	line-height: 23px;
	font-weight: 400;
	color: #7f8c8c;
}
img{
	display: block;
	max-width: 100%;
}

/*== buttons
---------------------------------*/
button{
	margin:0;
	padding:0;
	border:none;
	background:none;
	cursor:pointer;
	overflow:visible;
	width:auto;
}
button.button-ivan::-moz-focus-inner { padding:0; border:0; } /* FF Fix */
button.button-ivan { -webkit-border-fit:lines; } /* <- Safari & Google Chrome Fix */
.button-ivan{
	width: auto;
	background: -webkit-linear-gradient(bottom, #FFA100 0%, #FFCB2C 58.01%, #FFD34D 100%);
	background: -o-linear-gradient(bottom, #FFA100 0%, #FFCB2C 58.01%, #FFD34D 100%);
	background: linear-gradient(to top, #FFA100 0%, #FFCB2C 58.01%, #FFD34D 100%);
	background-position-y: top;
	-webkit-background-size: 200%;
	background-size: 200%;
	border-radius: 5px;
	font-family: 'a_russdecorregular';
	font-size: 20px;
	line-height: 22px;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #333333;
	text-align: left;
	padding: 24px 80px 19px 24px;
	transition: 0.5s;
	position: relative;
}
.button-ivan use {
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.button-ivan:active,
.button-ivan:hover,
.button-ivan:focus{
	background-position-y: bottom;
	outline: none;
}
.button-ivan:active {
	box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.25);
}
.button-ivan .button-circle {
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    position: absolute;
    right: 8px;
    bottom: 7px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto
}

.button-ivan .button-circle .spinner {
    -webkit-animation: spinner 1s linear infinite;
    animation: spinner 1s linear infinite;
    width: 40px;
    height: 40px;
    display: inline-block;
    border: solid 6px transparent;
    border-top: solid 6px #666;
    -webkit-border-radius: 100%;
    border-radius: 100%
}

.button-ivan:disabled {
	cursor: not-allowed;
}
.button-ivan:disabled .button-text {
	opacity: 0.7
}

.button-ivan.ajax {
	background-position-y: bottom;
	cursor: progress;
}

.button-ivan.ajax .button-ico {
	opacity: 0
}

.button-ivan.ajax .button-circle {
    opacity: 1
}

.button-ico{
	width: 22px;
	height: 45px;
	position: absolute;
	right: 23px;
	top: 10px;
}
.button-ico:before{
	position: absolute;
	top: -10px; 
	left: -18px;
	content: "";
	width: 2px;
	height: 65px;
	background: #FFD040;
	box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.2);
	border-radius: 5px;
}
.button-ivan:active use,
.button-ivan:hover use,
.button-ivan:focus use{
	fill: white !important
}


/*== inputs
---------------------------------*/
.input-text::-webkit-input-placeholder{color:#646464;}
.input-text:-moz-placeholder{color:#646464;}
.input-text,
textarea{
	display: block;
	margin: 0;
	padding: 5px 10px 5px 10px;
	height: 38px;
	width: 100%;
	font-family: 'Clear Sans', Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color:#333333;
	resize: none;
	outline: none;
	border: 1px solid #cacaca;
}
.b-input-text{
	width: 584px;
	height: 29px;
	background-color: white;
	border: 1px solid #ccc;
	color: #ccc;
	font-family: 'Clear Sans', Arial, sans-serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	padding: 0 0 0 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-input-text::-webkit-input-placeholder{
	color: #ccc;
	font-family: 'Clear Sans', Arial, sans-serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
}
.b-input-text:-moz-placeholder{
	color: #ccc;
	font-family: 'Clear Sans', Arial, sans-serif;
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
}
.b-input-text{
	outline: none;  
}
textarea{
	height:80px;
}
.input-text:focus,
textarea:focus {
	border: 1px solid #76c7c0;
	-webkit-box-shadow: 0 0 5px 2px rgba(118, 199, 192, 0.6);
	-moz-box-shadow:    0 0 5px 2px rgba(118, 199, 192, 0.6);
	box-shadow:         0 0 5px 2px rgba(118, 199, 192, 0.6);
}
.wrapper-content{
	width: 1220px;
	margin: auto;
	padding: 0;
	position: relative;
	display: flex;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* End Total css ====*/

/* -------------- section b-profession -------------- */

header .wrapper-content{
	display: block;
}
@keyframes bg-grafs{
	from {
		background-position-x: 0;
	}
	to {
		background-position-x: 100%;
	}
}
.b-profession{
	background: #F7F7F7 url(../images/bg-graf.svg) 0 top no-repeat;
	padding: 71px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	z-index: 10;
	/*animation: bg-grafs 240s 4s linear infinite;*/
}
.b-profession:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient( to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 75%, transparent 100%);
	filter: blur(5px);
}
.b-title{

}
@keyframes h1zoom {
	50% {
		transform: scale(1.1);
		opacity: 1;
	}
	100% {
		transform: none;
		color: #9A0000;
		opacity: 1;
	}
}
h1{
	font-family: 'a_russdecorregular';
	font-size: 64px;
	line-height: 79px;
	font-weight: 400;
	color: #A26720;
	margin: 0;
	text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.25);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 0;
}
h1.visible {
	opacity: 1;
}
.b-title h1 span{
	display: inline-block;
	opacity: 0;
}
.b-title span.new{
	display: inline;
}
.b-title span.div_opacity{
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	opacity: 1;
}
.b-profession {
	overflow: hidden;
}
.b-profession h1.visible span{
	animation: h1zoom 0.6s 0.3s forwards;
}
.b-profession .wrapper-content{
	justify-content: space-between;
}
.b-profession-left{
	flex-basis: 624px;
	max-width: 624px;
    margin: 31px 0 0 0;
}
.b-profession-content{

}
.b-profession-content p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 45px;
	color: #212121;
    margin: 54px 0 43px 0;
}
.b-profession-img, .b-trade-img{
	align-self: flex-start;
	position: relative;
	/*overflow: hidden;*/
	flex-basis: 625px;
	max-width: 625px;
	perspective: 400px;
	perspective-origin: 0 50%;
	transform-style: preserve-3d;
	padding-top: 10px;
}
.b-profession-img img, .b-trade-img img{
	animation: boxRotate 8s linear infinite backwards;
	display: inline;
	margin-left: 0;
	max-width: none;
	z-index: 10;
	transform: rotate3d(0, 1, 0, 20deg);
}
.b-profession-img:after{
	animation: boxRotate 10s linear infinite;
	position: absolute;
	/*content: "";*/
	height: calc(100% - 20px);
	width: 100%;
	right: 0;
	top: 0;
	border-width: 10px;
	border-style: solid;
	/*border-top-style: solid;*/
	/*border-bottom-style: solid;*/
	border-color: transparent;
	border-image: url("../images/border-img.png") 15 15 stretch;
	z-index: 20;
}
.b-profession-img:before{
	animation: boxRotate 4s linear infinite;
	position: absolute;
	/*content: "";*/
	height: calc(100% - 20px);
	width: 50%;
	left: 50px;
	top: 0;
	border-width: 10px;
	border-left-style: solid;
	border-top-style: solid;
	border-bottom-style: solid;
	border-color: transparent;
	border-image: url("../images/border-img.png") 15 15 stretch;
	z-index: -1;
}


/* -------------- section b-earnings -------------- */
.b-earnings{
	padding: 0 0 80px 0;
	margin: 80px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-earnings-left:before{
	position: absolute;
	top: 0;
	left: -40px;
	content: "";
	width: 490px;
	height: 100%;
	background: url(../images/b-earnings-left.jpg) no-repeat;
	z-index: -1;
}

.b-earnings .wrapper-content{
	position: relative;
	width: 100%;
	justify-content: space-between;
}
.b-earnings-left{
    width: 573px;
	position: relative;
	z-index: 2;
	padding: 80px 0 0 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    margin: 0 0 0 415px;
}
.b-earnings-image{
	background: url(../images/b-earnings-image.png);
	width: 945px;
	height: 789px;
}
.b-earnings-content{
	margin: 77px 0 0 0;
}
.b-earnings-content ul{
	padding: 0;
	margin: 0 0 0 40px;
}
.b-earnings-content ul li{
	position: relative;
	list-style: none;
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 35px;
	line-height: 37px;
	color: #333333;
	margin: 10px 0 0 0;
	opacity: 0;
	-webkit-transition: 0.6s 0.5s;
	-moz-transition: 0.6s 0.5s;
	-ms-transition: 0.6s 0.5s;
	-o-transition: 0.6s 0.5s;
	transition: 0.6s 0.5s;
	-webkit-transform: translateX(80px);
	-moz-transform: translateX(80px);
	-ms-transform: translateX(80px);
	-o-transform: translateX(80px);
	transform: translateX(80px);
}
.b-earnings-content ul li.visible {
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.b-earnings-content ul li:first-child{
	margin: 0;
}
.b-earnings-content ul li:before{
	position: absolute;
    top: 14px;
	left: -35px;
	content: "";
	width: 20px;
	height: 20px;
	background: #9A0000;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
}
.b-earnings-content ul li span{
	color: #9A0000;
}
.b-earnings-content ul .li-attention {
	font-style: italic;
	margin-left: -33px;
}
.b-earnings-content ul .li-attention:before {
	content: none;
}
.b-earnings-text{
	background: #ffffff;
	padding: 14px 15px 14px 27px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 570px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
	margin: 80px 0 0 0;
}
.b-earnings-text p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 42px;
	color: #333333;
	margin: 0;
}
.b-earnings-text p span{
	color: #9A0000;
}


/* -------------- section b-trade -------------- */
.b-trade{
	padding: 72px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: #F7F7F7 url(../images/b-trade-bg.png) center top no-repeat;
	background-size: cover;
}
.b-trade .wrapper-content{
	justify-content: space-between;
	padding: 0 70px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-trade-img{

}
.b-trade__right{
	width: 524px;
	padding: 70px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-trade__content{
	margin: 56px 0 0 0;
}
.b-trade__content ul {
	margin-bottom: 40px;
}
.b-trade__content ul li {
	font-size: 25px;
}
.b-trade__right p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 45px;
	color: #333333;
    margin: 0 0 49px 0;
}


/* -------------- section b-profit -------------- */
.b-profit{
	margin: 79px 0 87px 0;
	position: relative;
	z-index: 10;
}
.b-profit:before {
	position: absolute;
	content: "";
	top: 0;
	right: calc(50% - 167px);
	width: 1120px;
	height: 100%;
	background: url(../images/b-profit-bg.png) left top no-repeat;
	z-index: 10;
}
.b-profit .wrapper-content{
	justify-content: flex-end;
}
.b-profit-content{
	display: flex;
	flex-direction: column;
    align-items: flex-end;
    padding: 82px 39px 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 784px;
}
.b-profit-content ul{
	padding: 0;
	margin: 96px 0 0 0;
	width: 554px;
}
.b-profit-content ul li{
	list-style: none;
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: normal;
	font-size: 35px;
	line-height: 44px;
	color: #333333;  
	margin: 52px 0 0 0;
	position: relative;
	opacity: 0;
	-webkit-transition: 0.6s 0.5s;
	-moz-transition: 0.6s 0.5s;
	-ms-transition: 0.6s 0.5s;
	-o-transition: 0.6s 0.5s;
	transition: 0.6s 0.5s;
	-webkit-transform: translateY(80px);
	-moz-transform: translateY(80px);
	-ms-transform: translateY(80px);
	-o-transform: translateY(80px);
	transform: translateY(80px);
}
.b-profit-content ul li.visible {
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
}
.b-profit-content ul li:before{
	position: absolute;
    top: 16px;
    left: -54px;
	content: "";
	width: 20px;
	height: 20px;
	background: #9A0000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	border-radius: 5px;
}
.b-profit-content ul li:first-child{
	margin: 0;
}


/* -------------- section b-info -------------- */
.b-info{
	padding: 79px 0 60px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: url(../images/b-info-bg.png) right top no-repeat;
}
.b-info .wrapper-content{
	justify-content: center;
}

.b-info-content{
	background: #ffffff;
	max-width: 1070px;
	border: 1px solid #F2F2F2;
	padding: 30px 30px 46px 30px;    
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	-webkit-transition: 1.3s;
	-moz-transition: 1.3s;
	-ms-transition: 1.3s;
	-o-transition: 1.3s;
	transition: 1.3s;
}
.b-info-content p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 45px;
	color: #333333;
    margin: 28px 0 0 0;
	-webkit-transition: 1.3s;
	-moz-transition: 1.3s;
	-ms-transition: 1.3s;
	-o-transition: 1.3s;
	transition: 1.3s;
}
.b-info-content.visible {
	background-color: #333;
}
.b-info-content.visible p{
	color: #eee;
}



/* -------------- section b-text -------------- */
.b-text{
	background: #F7F7F7 url(../images/b-text.png) no-repeat 0 -264px;
	background-size: cover;
	margin: 93px 0 78px 0;
	padding: 65px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-text .b-title{
	text-align: center;
	padding: 0px 110px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


/* -------------- section b-offer -------------- */
.b-offer{
	background: url(../images/b-offer-bg.png);
	background-position: top left;
	background-repeat: no-repeat;
	padding: 60px 0 80px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-offer .b-title{
	text-align: center;
	margin: 0 0 80px 0;
}
.b-offer .wrapper-content{
	justify-content: space-between;
}
.b-offer-left{
	width: 650px;
	margin: 7px 0 0 0;
}
.b-video{
	background: transparent;
	height: 350px;
	padding: 0;
	border: 10px solid #fff;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 2px -1px 30px 0px rgba(0, 0, 0, 0.34);
	-moz-box-shadow:    2px -1px 30px 0px rgba(0, 0, 0, 0.34);
	box-shadow:         2px -1px 30px 0px rgba(0, 0, 0, 0.34);	
	border-radius: 2px;
	position: relative;
	overflow: hidden;
}
.b-video>img {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
}
.b-video iframe{
	width: 100%;
	height: 100%;
	display: none;
}
.b-play{
	width: 50px;
	height: 50px;
	background: -webkit-linear-gradient(bottom, #FFC000 0%, #FFD34D 100%);
	background: -o-linear-gradient(bottom, #FFC000 0%, #FFD34D 100%);
	background: linear-gradient(to top, #FFC000 0%, #FFD34D 100%);
	border-radius: 100%;
	display: block;
	padding: 18px 0 0 16px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
}
.b-video.active img{
	display: none;
}
.b-video.active .b-play{
	display: none;
}
.b-video.active iframe{
	display: block;	
}
.b-offer-left button{
	margin: 66px auto 0;	
}
.b-offer-right{
	max-width: 522px;
}
.b-offer-right p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 43px;
	color: #333333;
	margin: 35px 0 0 0;
}
.b-offer-right p:first-child{
	margin: 0;
}


/* -------------- section b-reviews -------------- */
.b-reviews{
	background: #F7F7F7 url(../images/b-reviews-bg.png) center top no-repeat;
	background-size: cover;
	padding: 80px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
    margin: 73px 0 80px 0;
}
.b-reviews .wrapper-content{
	display: block;
}
.b-reviews .b-title{
	text-align: center;
	margin: 0 0 41px 0;
}
.b-reviews-content{
	display: flex;
	justify-content: space-between;
	position: relative;
}
.b-reviews-left{
	width: 627px;
	position: relative;
}
.b-reviews-slider{
	position: relative;
}
.b-reviews-slider__item{
	display: flex;
	justify-content: space-between;
	padding: 25px 25px 0 25px;
}
.b-reviews-slider__item .b-video{
	height: 338px;
	padding: 0;
	border: 10px solid #fff;
	overflow: hidden;
}
.b-reviews-slider__item .b-play img{
	width: auto;
}
.b-reviews-slider__item .b-video>img{
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
}
.b-reviews .owl-nav{
	position: absolute;
	top: 380px;
	left: 25px;
	display: flex;
	justify-content: space-between;
	width: 627px;
}
.b-reviews .owl-prev{
	background: url(../images/prv.png);
	width: 84px;
	height: 40px;
	text-indent: -999999px;
	z-index: 20;
}

.b-reviews .owl-next{
	background: url(../images/nxt.png);
	width: 84px;
	height: 40px;
	text-indent: -999999px;
	z-index: 20;
}

.b-owl-col{
	position: absolute;
	top: 437px;
	left: 25px;
	width: 627px;
	display: flex;
	justify-content: center;
	font-family: 'Conv_PlayfairDisplay-Italic';
	font-style: italic;
	font-weight: 400;
	font-size: 25px;
	line-height: 27px;
	color: #CCCCCC;
}

.owl-dots{
	position: absolute;
	top: 396px;
	left: 25px;
	display: flex;
	justify-content: center;
	width: 627px;
}
.owl-dots .owl-dot{
	width: 8px;
	height: 8px;
	background: #E6E6E6;
	margin: 0 6px 0 0;
	border-radius: 100%;
}
.owl-dots .owl-dot:last-child{
	margin: 0;
}
.owl-dots .owl-dot.active{
	width: 8px;
	height: 8px;
	background: #333333;
}

.b-reviews-right{
	width: 520px;
}
.b-reviews-images{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
.b-reviews-images__item{
	text-align: right;
}

.b-reviews-images__item img {
	max-width: 238px;
}

.b-reviews-images a{
	display: block;
	box-shadow: 1px 7px 25px rgba(0, 0, 0, 0.15);
	position: relative;
	cursor: pointer;
}
.b-reviews-images a:before{
	position: absolute;
	bottom: 10px;
	right: 10px;
	content: "";
	background: url(../images/lupa-img.png);
	width: 24px;
	height: 24px;
	z-index: 2;
}
.b-reviews-images__item span{
	font-family: 'Conv_PlayfairDisplay-Italic';
	font-style: italic;
	font-weight: 400;
	font-size: 25px;
	line-height: 27px;
	color: #333333;
	display: block;
	margin: 7px 0 0 0;
}

.b-reviews-right__content{
	margin: 30px 0 0 0;
	position: relative;
	height: 250px;
	overflow: hidden;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
.b-reviews-right__content:before{
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 120px;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f7f7f7+100&0+0,1+100 */
background: -moz-linear-gradient(top,  rgba(255,255,255,0) 0%, rgba(247,247,247,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,255,255,0) 0%,rgba(247,247,247,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(247,247,247,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#f7f7f7',GradientType=0 ); /* IE6-9 */

}
.b-reviews-right__content p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 25px;
	color: #333333;
	margin: 0;
}
.b-more{
	display: block;
	position: relative;
	font-family: Arial;
	font-style: normal;
	font-weight: 300;
	font-size: 16px;
	line-height: 18px;
	color: #A26720;
	margin: 27px 0 0 0;
	outline: none;
	transition: 0.3s;
}
.b-more:after{
	position: absolute;
	top: 3px;
	right: -25px;
	content: "";
	background: url(../images/arrow.png) 0 0 repeat-y;
	width: 15px;
	height: 13px;
	transition: 1s;
}

.b-more.active:after{
	background-position: 0 26px;
	transition: 1s;
	opacity: 0;
}
.b-reviews-right__content.active{
	height: auto;
}
.b-reviews-right__content.active:before{
	opacity: 0;
	-webkit-transition: 0.3s 0.3s;
	-moz-transition: 0.3s 0.3s;
	-ms-transition: 0.3s 0.3s;
	-o-transition: 0.3s 0.3s;
	transition: 0.3s 0.3s;
}



/* -------------- section b-footer -------------- */
.b-footer{
	padding: 89px 0 82px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	background: url(../images/footer-bg.png) right top no-repeat;
	position: relative;
	z-index: 10;
}
.b-footer .wrapper-content{
	justify-content: space-between;
}
.b-footer-left{
	width: 627px;
}
.b-footer-left .b-title{
	margin: 0 0 14px 0;
}
.b-footer-text{
	width: 622px;
}
.b-footer-text span{
	font-family: 'Conv_PlayfairDisplay-Italic';
	font-style: italic;
	font-weight: 400;
	font-size: 25px;
	line-height: 45px;
	color: #333333;
	display: block;
}
.b-footer-text p{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 45px;
	color: #333333;
	margin: 0;
}

.b-footer-block{
	background: #FFFFFF;
	border: 1px solid #F2F2F2;
	padding: 40px 34px 161px 76px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	margin: 35px 0 0 0;
}
.b-footer-block:before {
	position: absolute;
	content: "";
	left: 10px;
	top: 10px;
	width: 100%;
	height: 100%;
	background: rgba(33, 33, 33, 0.15);
	filter: blur(10px);
	z-index: -1;
}
.b-footer-block__title{
	font-family: 'Conv_PlayfairDisplay-Bold';
	font-style: normal;
	font-weight: bold;
	font-size: 35px;
	line-height: 37px;
	color: #A26720;
	display: block;
	margin: 0 0 50px 0;
}
.b-footer-block i{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 27px;
	color: #333333;
	display: block;
	margin: 0 0 35px 0;
}

.b-footer-block ul{
	padding: 0 0 0 25px;
	margin: 0;
}
.b-footer-block ul li{
	list-style: decimal;
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: normal;
	font-size: 25px;
	line-height: 28px;
	color: #333333;
	padding: 0 0 0 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 0 15px 0;
}
.b-footer-block ul li span{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: normal;
	font-size: 25px;
	line-height: 28px;
	color: #333333;
}
.b-footer-block img{
	position: absolute;
	bottom: 0;
	right: 0;
	margin: 20px 0 0 0;
}





.b-footer-right{
	position: relative;
	align-self: flex-start;
	background: #ffffff;
	width: 452px;
    margin: -9px 63px 0 0;
	padding-bottom: 30px;
}
.b-footer-right:before {
	position: absolute;
	content: "";
	left: 10px;
	top: 10px;
	width: 100%;
	height: 100%;
	background: rgba(33, 33, 33, 0.15);
	filter: blur(10px);
	z-index: -1;
}
.b-footer-price{
	background: #F5F5F5;
	border: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 25px 0;
	text-align: center;
}
.b-footer-price span{
	font-family: 'Conv_PlayfairDisplay-Bold';
	font-style: normal;
	font-weight: 700;
	font-size: 25px;
	line-height: 27px;
	color: #A26720;
}
.b-footer-price span b{
	color: #000000;
}
.b-footer-right form{
	width: 338px;
	margin: 0 auto 0;
	padding: 70px 0 0 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.b-footer-info {
	background: linear-gradient(0deg, #FFC000 0%, #FFD34D 56.67%);
	width: 438px;
	margin: -20px auto 0;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

}
.b-footer-info_head {
	padding: 17px 0 0;
}

.b-footer-info h3 {
	font-size: 35px;
	line-height: 35px;
	font-family: 'Conv_PlayfairDisplay-Bold';
	text-align: center;
	font-weight: bold;
	margin-bottom: 15px;
}
.b-footer-info h3 span {
	display: block;
	color: #9A0000;
}
.b-footer-info p {
	font-size: 25px;
	line-height: 33px;
	font-family: 'Conv_PlayfairDisplay-Regular';
	text-align: center;
	padding: 0 10px;
	color: #333;
}
.input{
    height: 45px;
    margin: 58px 0 0 0;
    display: block;
    max-width: 100%;
    width: auto;
}
.input-one{
    margin: 0;
}
.b-main-input{
    width: 100%;
    height: 45px;
    border: none;
	border-bottom: 1px solid #E5E5E5;
	background: transparent;
	border-radius: 0px;
	height: 68px;
	padding: 12px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 27px;
	color: #333333;
}

.b-main-input.is-invalid {
	border-color: red;
}

.input__label-content--yoshiko{
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 25px;
	line-height: 27px;
	color: #A26720;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.input__label-content--yoshiko::after{
    color: #ccc;
}
.input__label--yoshiko{
    left: 0px;
    bottom: auto;
    top: 17px;
    padding: 0;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	font-size: 25px;
	line-height: 27px;
}
.input__field--yoshiko:focus + .input__label--yoshiko, .input--filled .input__label--yoshiko{
    bottom: auto;
    top: -15px;
    text-transform: capitalize;
}

.input__field--yoshiko:focus + .input__label--yoshiko .input__label-content--yoshiko, .input--filled .input__label-content--yoshiko{
    /*transform: none;*/
    font-size: 19px;
    color: #B2B2B2;
}
.input__field--yoshiko:focus + .input__field--yoshiko, .input--filled .input__field--yoshiko{
    border-color: #999999;
}
.input__field--yoshiko.error:focus + .input__field--yoshiko, .input--filled.error .input__field--yoshiko{
    border-color: red;
    color: red;
}
.b-input-hover{
    position: absolute;
    top: 9px;
    right: 20px; 
    z-index: 20;
    border-left: 1px solid #ffffff;
    padding: 0 0 0 12px;
    cursor: pointer; 
}
.b-input-hover__question{
    color: #50b1c3;
    opacity: 1;
    font-family: 'Roboto-Regular';
    font-size: 25px;
    font-weight: 400;
    line-height: 27px;   
}
.b-input-hover:hover .b-input-hover__question{
    opacity: 0.15;
    color: #ffffff;
}
.b-input-hover__text{
    width: 276px;
    height: 117px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 3px 13px rgba(0, 3, 7, 0.5);
    position: absolute;
    top: -139px;
    right: -19px;
    opacity: 0;
    padding: 20px 0 0 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;    
    z-index: -1;
    visibility: hidden;
}
.b-input-hover__text:after {
    top: 100%;
    right: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 6px;
    margin-left: -6px;
}
.b-input-hover:hover .b-input-hover__text{
    visibility: visible;
    opacity: 1;
    transition: 1s;
}
.b-input-hover__text p{
    color: #000000;
    font-family: 'Roboto-Light';
    font-size: 16px;
    font-weight: 300;
    line-height: 20px; 
    margin: 0;   
}

.b-submit-wrapper{
	position: relative;
	width: 279px;
	margin: 90px auto 0;
}
.b-submit-wrapper input{
	border: none;
	cursor: pointer;
	width: 100%;
}
.b-submit-wrapper .button-ico{
	position: absolute;
	top: 10px;
	right: 18px;
	/* opacity: 0; */
}


.b-checkbox{
    position: relative;
    z-index: 2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 57px 0 0 0;  
    display: flex;
}
input[type="checkbox"] {
    display: none;
}
input[type="radio"] {
    display: none;
}
input[type="checkbox"] + label span {
    display: block;
    width: 25px;
    height: 21px;
    background: url(../images/checkbox.png) no-repeat;
    cursor: pointer;
    float: left;
    margin: 0 10px 0 0;
}
.b-checkbox-two input[type="checkbox"] + label span{
    background: url(../images/checkbox.png) no-repeat;
}
input[type="radio"] + label span {
    display: block;
    width: 25px;
    height: 21px;
    margin: 0px 13px 0 0;
    vertical-align: middle;
    background: url(../images/checkbox.png) no-repeat;
    cursor: pointer;
    float: left;
}
input[type="checkbox"] + label {
    font: 400 16px/20px 'Play-Regular';
    color: #30364c;
    cursor: pointer;

}
input[type="radio"] + label {
    font: 400 16px/20px 'Play-Regular';
    color: #30364c;
    cursor: pointer;

}
input[type="checkbox"]:checked + label span {
    width: 25px;
    height: 21px;
    background: url(../images/checkbox-active.png) no-repeat;
    display: inline-block;
    vertical-align: middle;
}
.b-checkbox-two input[type="checkbox"]:checked + label span{
    background: url(../images/checkbox-active.png) no-repeat;
}
input[type="radio"]:checked + label span {
    background: url(../images/chek.png) no-repeat;
}
input[type="checkbox"]:checked + label {
    color: #000000;
}
input[type="radio"]:checked + label {
    color: #000000;
}
input[type="checkbox"] + label i{
    overflow: hidden;
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 19px;
	line-height: 22px;
	color: #B2B2B2;
}

.select2-container--default .select2-selection--single .select2-selection__rendered img{
    display: inline-block;
    vertical-align: middle;
    margin: 0 7px 0 0;
    width: 27px;
    height: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered span{
    display: inline-block;
    vertical-align: middle;
    color: #333;
    font-family: 'Roboto-Light';
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    margin: 2px 0 0 0;
}
.b-country{
   margin: 0 0 45px 0;

}
.b-country b{
    display: inline-block;
    vertical-align: middle;
	font-family: 'Conv_PlayfairDisplay-Regular';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 100%;
	color: #333333;
}
.b-country-select-wrapper{
    display: inline-block;
    vertical-align: middle;
}
.b-country-select{
    width: 182px;
    padding: 0 0 0 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
    display: none !important;
}
.select2-container--default .select2-selection--single{
    background: transparent;
    border: transparent;
    outline: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #333 transparent transparent transparent;
    margin-top: 2px;
        
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
    right: 38px;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
    border-color: #333 transparent transparent transparent;
}

.select2-container--open .select2-dropdown--below{
    width: 190px;
}

.select2-results__options li img{
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
    width: 27px;
    height: 13px;    
}

.select2-results__options li span{
    display: inline-block;
    vertical-align: middle;
    color: #000000;
    font-family: 'Roboto-Light';
    font-size: 18px;
    font-weight: 300;
    line-height: 20px;
    margin: 2px 0 0 0;
}
.select2-container--default .select2-results__option[aria-selected=true]{
    background-color: #fff;
}
.select2-results__option--highlighted{
    background-color: #333 !important;
}

.select2-container--open{
    background: #fff;
    border-radius: 4px 4px 0 0;
}
.select2-container--open .select2-selection--single .select2-selection__rendered span{
    
}

.select2-container--default .select2-results__option--highlighted[aria-selected] span{
	color: #ffffff;
}
.select2-container--default .select2-results__option--highlighted[aria-selected]:hover span{
	color: #ffffff;
}
.license {
	background-color: #6a7989;
}
.license p{
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	color: #fff;
}