html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: Montserrat, serif;
	text-align: center;
	margin: 0 !important;
	padding: 0;
}

.container {
	z-index: 1;
	max-width: 1440px;
	min-height: 100vh;
	margin: 0px auto;
	padding: 10px 30px 30px;
}

.container::before {
	z-index: -1;
	content: "";
	position: absolute;
	background-color: rgba(255, 255, 255, 0.7);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.picture {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
}

.picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main__bl {
	position: relative;
}

.main__blâ‰ˆ {
	position: absolute;
	content: "";
	display: block;
	margin: 5px auto;
	height: 3px;
	max-width: 450px;
	background: rgb(147, 72, 194);
}

.main__pic {
	overflow: hidden;
	display: flex;
	max-width: 500px;
	width: 100%;
	max-height: 300px;
	margin: auto;
	border-radius: 30px;
}

.main__pic::before {
	position: absolute;
	content: "";
	display: block;
	margin: 5px auto;
	height: 3px;
	width: 60%;
	max-width: 480px;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: rgb(147, 72, 194);
}

.main__pic img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.main__text {
	color: #000;
	font-size: 28px;
	text-align: center;
	display: block;
	max-width: 600px;
	margin: 40px auto 10px;
	font-weight: 700;
}

.main__subtext {
	font-size: 24px;
	color: rgb(147, 72, 194);
	text-align: center;
	margin: 40px auto 0;
}

.startTest__btn {
	width: 250px;
	padding: 15px 45px;
	border-radius: 30px;
	cursor: pointer;
	border: 0;
	outline: none;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 24px;
	background: #c31432;
	background: -webkit-linear-gradient(to right, rgb(147, 72, 194), #b411c0);
	background: linear-gradient(to right, rgb(147, 72, 194), #b411c0);
	transition: all 0.2s linear;
}

.startTest__btn:hover {
	background: #c31432;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to left, rgb(147, 72, 194), #b411c0);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, rgb(147, 72, 194), #b411c0);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.slider {
	max-width: 500px;
	position: relative;
	margin: auto;
	height: auto;
	margin-bottom: 15px;
}

.item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
	width: 100%;
	height: auto;
}

/* Ð—Ð°Ð³Ð¾Ð»Ð¾Ð²Ð¾Ðº ÑÐ»Ð°Ð¹Ð´Ð° */

.slideText {
	color: #000;
	font-size: 18px;
	display: block;
	font-weight: 500;
	margin: 15px auto 8px;
	text-align: center;
}

.slideDescription {
	font-size: 20px;
	color: #000;
	text-align: left;
	padding: 10px 5px;
	margin-bottom: 15px;
}

.active,
.slider-dots_item:hover {
	background-color: rgb(147, 72, 194);
}

/* ÐÐ½Ð¸Ð¼Ð°Ñ†Ð¸Ñ ÑÐ»Ð°Ð¹Ð´Ð¾Ð² */

.slider .item {
	-webkit-animation-name: fade;
	-webkit-animation-duration: 1.5s;
	animation-name: fade;
	animation-duration: 1.5s;
}

@-webkit-keyframes fade {
	from {
		opacity: 0.4;
	}

	to {
		opacity: 1;
	}
}

@keyframes fade {
	from {
		opacity: 0.4;
	}

	to {
		opacity: 1;
	}
}

.form_radio_btn {
	display: block;
	max-width: 450px;
	width: 100%;
	padding: 3px 5px;
	margin: 0 auto;
}

.form_radio_btn input[type="radio"] {
	display: none;
}

.form_radio_btn label {
	display: block;
	margin: 0 auto;
	cursor: pointer;
	padding: 0px 5px;
	line-height: 30px;
	border: 1px solid rgb(147, 72, 194);
	border-radius: 6px;
	user-select: none;
	font-size: 18px;
	color: #000;
	transition: all 0.2s linear;
	font-weight: 300;
}

/* Checked */

.form_radio_btn input[type="radio"]:checked+label {
	background: rgb(147, 72, 194);
	color: #fff;
}

/* Hover */

.form_radio_btn label:hover {
	background: rgb(147, 72, 194);
	color: #fff;
	opacity: 0.8;
}

.label-section {
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	margin: 0 auto;
}

.pre__header {
	font-size: 24px;
	color: rgb(147, 72, 194);
	text-align: center;
	margin: 30px auto;
}

.startTest__btn {
	padding: 15px 45px;
	border-radius: 30px;
	cursor: pointer;
	border: 0;
	outline: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 24px;
	background: #c31432;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, rgb(147, 72, 194), #b411c0);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, rgb(147, 72, 194), #b411c0);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	transition: all 0.2s linear;
}

.startTest__btn:hover {
	background: #c31432;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to left, rgb(147, 72, 194), #b411c0);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to left, rgb(147, 72, 194), #b411c0);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.item__question {
	display: block;
	padding: 15px 10px;
	border-radius: 20px;
	background: #fff;
	-webkit-box-shadow: 0px -1px 21px 0px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 0px -1px 21px 0px rgba(0, 0, 0, 0.75);
	box-shadow: 0px -1px 21px 0px rgba(0, 0, 0, 0.75);
}

.start-button {
	display: block;
	margin: 20px auto;
}

.number__question {
	padding: 3px;
	background: rgb(147, 72, 194);
	color: #fff;
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	border-radius: 10px;
}

/*Media queries*/

/* 320pxâ€Šâ€”â€Š480px: Ð¼Ð¾Ð±Ð¸Ð»ÑŒÐ½Ñ‹Ðµ ÑƒÑÑ‚Ñ€Ð¾Ð¹ÑÑ‚Ð²Ð°;
481pxâ€Šâ€”â€Š768px: Ð¿Ð»Ð°Ð½ÑˆÐµÑ‚Ñ‹;
769pxâ€Šâ€”â€Š1024px: Ð¼Ð°Ð»ÐµÐ½ÑŒÐºÐ¸Ðµ ÑÐºÑ€Ð°Ð½Ñ‹, Ð½Ð¾ÑƒÑ‚Ð±ÑƒÐºÐ¸;
1025pxâ€Šâ€”â€Š1200px: Ð±Ð¾Ð»ÑŒÑˆÐ¸Ðµ ÑÐºÑ€Ð°Ð½Ñ‹;
1201px Ð¸ Ð±Ð¾Ð»ÑŒÑˆÐµ â€”â€Š Ð¾Ñ‡ÐµÐ½ÑŒ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ðµ ÑÐºÑ€Ð°Ð½Ñ‹, Ñ‚ÐµÐ»ÐµÐ²Ð¸Ð·Ð¾Ñ€Ñ‹. */

@media (max-width: 1024px) {

	.slider .prev,
	.slider .next {
		font-size: 14px;
	}

	.label-section {
		margin: 10px auto;
		flex-direction: column;
		margin: 10px auto;
		align-items: center;
	}

	.pre__header {
		font-size: 18px;
	}

	.form_radio_btn label {
		line-height: 18px;
		padding: 5px 10px;
	}

	.item__question {
		margin-top: 40px;
	}

	.item__question:last-child {
		margin-top: 50px;
		/* height: 25vh; */
	}
}

.item.last-slide {
	max-width: 100%;
	font-family: "Lato", sans-serif;
	position: absolute;
	top: 10vh;
}

.pre__header {
	font-family: "Helvetica", sans-serif;
}

.slideDescription {
	font-family: "Helvetica", sans-serif;
}

@media (max-width: 768px) {
	.main__pic {
		height: 250px;
	}

	.main__pic img {
		height: 250px;
	}

	.main__text {
		font-size: 25px;
	}

	.pre__header {
		font-size: 20px;
	}

	.number__question {
		font-size: 24px;
	}

	.startTest__btn {
		padding: 20px 80px;
		font-size: 20px;
		margin: 20px auto;
	}

	.slideText {
		font-size: 16px;
	}

	.form_radio_btn label {
		font-size: 16px;
	}

	.item__question:last-child {
		height: 100%;
	}

	.slideDescription {
		font-size: 20px;
	}
}

@media screen and (max-width: 576px) {
	.container {
		max-width: 540px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}

	#prefinal-btn {
		margin: 1rem auto;
		display: block;
		text-align: center;
	}

	.startTest__btn {
		font-size: 18px;
		padding: 15px;
	}

	.form_radio_btn label {
		font-size: 18px;
	}

	.main__pic img {
		margin-top: 0;
		/* height: 150px; */
	}

	.main__text {
		font-size: 20px;
		margin-top: 24px;
	}

	.pre__header {
		font-size: 20px;
		margin: 20px auto;
	}

	.number__question {
		font-size: 18px;
	}

	.item__question {
		margin: 15px auto;
	}

	.slider {
		margin: 0px 15px;
	}

	.slideText {
		font-size: 14px;
		margin: 5px auto;
	}

	.form_radio_btn {
		padding: 3px 12px;
	}

	.form_radio_btn label {
		font-size: 14px;
	}

	.slideDescription {
		font-size: 16px;
	}

	.item__question:last-child {
		margin-top: 30px;
	}

	.startTest__btn {
		font-size: 20px;
		padding: 20px 60px;
	}
}


.animated-button1 {
	background: rgb(147, 72, 194);
	padding: 20px 40px;
	margin: 12px;
	display: inline-block;
	-webkit-transform: translate(0%, 0%);
	transform: translate(0%, 0%);
	overflow: hidden;
	color: #ffffff;
	font-size: 20px;
	letter-spacing: 2.5px;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	-webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
	cursor: pointer;
}

.animated-button1::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #ad8585;
	opacity: 0;
	-webkit-transition: .2s opacity ease-in-out;
	transition: .2s opacity ease-in-out;
}

.animated-button1:hover::before {
	opacity: 0.2;
}

.animated-button1 span {
	position: absolute;
}

.animated-button1 span:nth-child(1) {
	top: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#efd2f3));
	background: linear-gradient(to left, rgba(43, 8, 8, 0), #e8b7db);
	-webkit-animation: 2s animateTop linear infinite;
	animation: 2s animateTop linear infinite;
}

@keyframes animateTop {
	0% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}

	100% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

.animated-button1 span:nth-child(2) {
	top: 0px;
	right: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#efd2f3));
	background: linear-gradient(to left, rgba(43, 8, 8, 0), #e8b7db);
	-webkit-animation: 2s animateRight linear -1s infinite;
	animation: 2s animateRight linear -1s infinite;
}

@keyframes animateRight {
	0% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	100% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}
}

.animated-button1 span:nth-child(3) {
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#efd2f3));
	background: linear-gradient(to left, rgba(43, 8, 8, 0), #e8b7db);
	-webkit-animation: 2s animateBottom linear infinite;
	animation: 2s animateBottom linear infinite;
}

@keyframes animateBottom {
	0% {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}

	100% {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

.animated-button1 span:nth-child(4) {
	top: 0px;
	left: 0px;
	height: 100%;
	width: 2px;
	background: -webkit-gradient(linear, right top, left top, from(rgba(43, 8, 8, 0)), to(#efd2f3));
	background: linear-gradient(to left, rgba(43, 8, 8, 0), #e8b7db);
	-webkit-animation: 2s animateLeft linear -1s infinite;
	animation: 2s animateLeft linear -1s infinite;
}

@keyframes animateLeft {
	0% {
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
}