*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	font-family: 'Gotham', sans-serif;
	color: #1c1c1c;
}

.wrapper-fw{
	width: 100%;

	display: flex;
	flex-direction: column;

	position: relative;
}

.wrapper{
	width: 100%;
	max-width: 1200px;
	display: flex;
  	flex-direction: column;
	flex: auto;
	align-items: flex-start;
	justify-content: flex-start;

	margin: 0 auto;
	padding: 0 15px;
}

/*	################################################################
	START BASE STYLE SETTINGS
################################################################# */

h1, h2, h3, h4, h5, h6{
	margin: 0;
	padding: 0;
}

ul, li{
	margin: 0;
	padding: 0;
}

h2{
	color: #3e3e3e;
	font-size: 40px;
	line-height: 46px;
	letter-spacing: 1px;
	font-weight: 900;

	padding-bottom: 50px;
}

p{
	margin: 0px;
	padding: 0px;
}

p[class="text_style"]{
	color: #1c1c1c;
	font-size: 18px;
	line-height: 24px;

	padding-bottom: 25px;
}

a{
	color: #545454;
	font-size: 18px;
	line-height: 24px;
	text-decoration: underline;

	transition: 0.3s linear;
}

a:hover{
	text-decoration: none;
}

input[class="form_style"]{
	color: #fff;
	font-size: 16px;
	line-height: 20px;
	font-weight: 300;

	border: none;
	border-bottom: 1px solid #fff;

	background-color: #ea0037;

	padding: 5px 10px;

	outline: none;
}

input[class="form_style"]::-webkit-input-placeholder { color: rgba(255,255,255,0.8); }
input[class="form_style"]::-moz-placeholder { color: rgba(255,255,255,0.8); }

input[type="submit"]{
	cursor: pointer;
}

::-webkit-scrollbar{
	width: 8px;
	height: 12px;
}

::-webkit-scrollbar-track-piece{
	background-color: #ffffff;
	border-radius: 64px;
}

::-webkit-scrollbar-thumb{
	height: 50px;
	background-color: #ea0037;
}

::-webkit-scrollbar-corner{
	background-color: #999;
}

.accent-color{
	color: #ea0037;
}


/*	################################################################
	END BASE STYLE SETTINGS
################################################################# */





/*	################################################################
	START MENU BLOCK STYLE SETTINGS
################################################################# */

.back_on{
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.5;

}

.menu-block_menu{
	width: 100%;
	height: 100vh;
	max-width: 400px;

	z-index: 2000;

	position: fixed;
	right: 0; top: 0;

	background-color: #fff;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;

	transition: 0.5s;

	transform: translateX(100%);

}

.menu-block_menu_close{
	width: 100%;
	height: 60px;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;

	padding: 10px 20px;
}

.menu-block_menu_close p{
	color: #1c1c1c;
	font-size: 16px;

	cursor: pointer;
}

.menu-block_menu nav{
	width: 100%;
	height: 80%;

	display: flex;
	flex-direction: row;
	justify-content: center;
}

.menu-block_menu ul{
	list-style-type: none;
	text-align: left;
}

.menu-block_menu ul li{
	margin: 30px 0;
}

.menu-block_menu a{
	text-decoration: none;
	color: #1c1c1c;

	font-size: 14px;
}

.menu-block_menu a:hover{
	text-decoration: underline;
}

/*	################################################################
	END MENU BLOCK STYLE SETTINGS
################################################################# */





/*	################################################################
	START HEADER STYLE SETTINGS
################################################################# */

header{
	width: 100%;

	background-color: #fff;
	box-shadow: 5px 10px 20px 10px rgba(0,0,0,0.1);
	border-bottom: 2px solid #ea0037;
}

.header-container{
	width: 100%;
	height: 60px;

	display: flex;
	flex-direction: row;
	align-items: center;
}

.header-container .header-block-one{
	width: 25%;

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
}

.header-container .header-block-two{
	width: 75%;

	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
}

.header-block-one .header-item-one{
	width: 45px;
}

.header-block-one .header-item-one img{
	width: 100%;
}

.header-block-one .header-item-two{
	margin-left: 50px;
}

.header-block-one .header-item-two p{
	font-size: 10px;
}

header nav > ul{
	display: flex;
	flex-direction: row;
	align-items: center;
}

header nav ul{
	list-style-type: none;
}

header nav ul li a{
	color: #1c1c1c;
	font-size: 14px;
	line-height: 28px;
	text-decoration: none;
}

header nav a {
	text-decoration: none;
	display: block;
	transition: .3s linear;
}

.topmenu > li {
  	position: relative;
}

.topmenu > li > a{
	padding: 5px 25px;
}

.topmenu li ul > li a:hover{
	text-decoration: underline;
}

.topmenu li ul{
	min-width: 200px;
  	position: absolute;
	top: 51px;

	z-index: 5;

	background-color: #fff;
	visibility: hidden;
	opacity: 0; 
	transform-origin: 0% 0%;
	transform: rotateX(-90deg);
	transition: .3s linear;  

	box-shadow: 5px 10px 20px 10px rgba(0,0,0,0.05);

	margin: 0px;
}

.topmenu li ul li {
	position: relative;
}

.topmenu li ul li a {
	color: #1c1c1c;
	font-size: 14px;
	line-height: 20px;
	padding: 10px 20px;
}

header nav li:hover > ul {
	transform: rotateX(0deg);
	visibility: visible;
	opacity: 1;
}

.header-item-four{
	margin-left: 70px;
}

.header-bars{
	display: flex;
	flex-direction: column;
	align-items: flex-end;

	cursor: pointer;

	padding: 5px 0;
}

.bar1, .bar2, .bar3 {
    height: 3px;
    background-color: #000;
    margin: 2px 0;
    transition: 0.4s;
    border-radius: 30%;
}

.bar1{
	width: 22px;
}

.bar2{
	width: 18px;
}

.bar3{
	width: 22px;
}

/*	################################################################
	END HEADER STYLE SETTINGS
################################################################# */





/*	################################################################
	START TITLE STYLE SETTINGS
################################################################# */

.title-section{
	width: 100%;
	height: 670px;

	background-image: url('../media/background-4.png');
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	background-attachment: fixed;
}

.title-block{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.title-container-one{
	width: 100%;
	height: 580px;

	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}

.title-container-one h1{
	font-size: 48px;
	line-height: 52px;
	font-weight: 900;

	margin-bottom: 30px;
}

.title-container-one p{
	font-size: 18px;
	line-height: 24px;

	margin-bottom: 60px;
}

.title-container-one a.button{
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	background-color: #ea0037;
	box-shadow: 5px 5px 20px 0px rgba(234,0,55,0.7);
	border-radius: 50px;
	transition: .3s linear;

	padding: 20px 45px;
}

.title-container-one a.button:hover{
	box-shadow: 10px 10px 20px 0px rgba(234,0,55,0.75);
}

.title-container-two{
	width: 100%;
	height: 90px;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}

.title-container-two p{
	font-size: 16px;
	font-weight: 500;
}

.title-container-two .title-item-one{
	width: 30%;
	height: auto;
}

.title-container-two .title-item-two{
	width: 70%;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}

.title-item-two div{
	width: 33%;
	height: 90px;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.title-item-two .title-item-two_info-one{
	background-color: #ff5600;
}

.title-item-two .title-item-two_info-two{
	background-color: #ff6719;
}

.title-item-two .title-item-two_info-three{
	background-color: #ff7833;
}

.title-container-two .title-item-two div p:first-child{
	color: #fff;
	font-size: 30px;
	font-weight: 900;

	margin-right: 10px;
}

.title-container-two .title-item-two div p:last-child{
	color: #fff;
	font-size: 16px;
	line-height: 16px;
}

/*	################################################################
	END TITLE STYLE SETTINGS
################################################################# */





/*	################################################################
	START INFO-CONTAINER STYLE SETTINGS
################################################################# */

.info-container{
	width: 100%;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;

	margin: 100px 0px 120px 0px;
}

.info-container .info-item-one{
	width: 40%;
	padding-right: 30px;
}

.info-container .info-item-two{
	width: 55%;
	padding-top: 20px;

	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.info-item-two video{
	width: 100%;

	border: 2px solid #ff5600;

	cursor: pointer;
	outline: none;
}

.info-item-two p{
	font-size: 16px;
	line-height: 22px;
	font-style: italic;

	margin-top: 15px;
}

/*	################################################################
	END INFO-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START FORM-CONTAINER STYLE SETTINGS
################################################################# */

.form-section{
	background-color: #ea0037;
}

.form-container{
	width: 100%;

	display: flex;
	flex-direction: row;
	align-items: center;

	padding: 40px 0;
}

.form-container .form-item-one{
	width: 45%;
}

.form-container .form-item-two{
	width: 55%;
}

.form-item-one p:first-child{
	color: #fff;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;

	padding-bottom: 5px;
}

.form-item-one p:last-child{
	color: #fff;
	font-size: 18px;
	line-height: 24px;
}

.form-item-two form{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

/*	################################################################
	END FORM-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START BENEFITS-CONTAINER STYLE SETTINGS
################################################################# */

.benefits-container{
	width: 100%;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;

	margin: 100px 0px 120px 0px;
}

.benefits-container .benefits-item-one{
	width: 40%;
	padding-right: 30px;
}

.benefits-container .benefits-item-two{
	width: 55%;
	padding-top: 20px;
}

.benefits-container .slider-pro .sp-image-container{
	border: 2px solid #ff6719;
}

.benefits-container .slider-pro .sp-caption-container{
	width: 375px;
	height: 160px;

	position: absolute;
	top: 180px;
	right: 20px;

	padding: 25px;

	background-color: #ff6719;
}

.benefits-container .slider-pro .sp-caption-container h3{
	color: #fff;
	font-size: 20px;
	line-height: 24px;
	font-weight: 700;

	text-align: left;

	margin-bottom: 20px;
}

.benefits-container .slider-pro .sp-caption-container p{
	color: #fff;
	font-size: 16px;
	line-height: 22px;

	width: 90%;

	text-align: left;
}

.benefits-container .sp-vertical .sp-arrows {
    height: 30%;
    left: 92%;
    top: 260px;
    margin-left: -10px;
    z-index: 1000;
}

.benefits-container .sp-vertical .sp-arrows .sp-arrow{
	width: 15px;
	height: 20px;
}

/*	################################################################
	END BENEFITS-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START TEACHER-CONTAINER STYLE SETTINGS
################################################################# */

.teacher-container{
	width: 100%;

	margin: 0px 0px 110px 0px;
}

.teacher-item{
	width: 100%;
	max-width: 240px;
	height: 320px;

	position: relative;

	margin-bottom: 40px;
}

.teacher-item > a{
	width: 100%;
	height: 100%;

	display: block;
	border: 2px solid #ff6719;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	overflow: hidden;
}

.teacher-item a img{
	height: 100%;
}

.owl-carousel .owl-item img {
    width: auto;
}

.teacher-item p{
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;

	position: absolute;
	bottom: -20px;
	right: 15px;

	padding: 5px 30px;
	background-color: #ff6719;

	z-index: 1000;

	box-shadow: 5px 0px 20px 5px rgba(0,0,0,0.1);
}

.teacher-information{
	width: 100%;

	display: flex;
	flex-direction: row;
	align-items: center;

	margin-top: 20px;
}

.teacher-information .info-block-one{
	width: 70%;
}

.teacher-information .info-block-two{
	width: 30%;

	display: flex;
	justify-content: center;
}

.teacher-information .info-block-one p{
	font-size: 18px;
	line-height: 24px;
}

/*	################################################################
	END TEACHER-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START TEACHER-CONTAINER STYLE SETTINGS
################################################################# */

.map-block{
	width: 100%;

	border-bottom: 2px solid #ea0037;
}

/*	################################################################
	END TEACHER-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START FOOTER-CONTAINER STYLE SETTINGS
################################################################# */

.footer-container{
	width: 100%;

	display: flex;
	flex-direction: row;
	align-items: flex-start;

	margin: 50px 0;
}

.footer-container .footer-item-one{
	width: 50%;
}

.footer-container .footer-item-two{
	width: 25%;
}

.footer-container .footer-item-three{
	width: 25%;
}

.footer-container h4{
	font-size: 20px;
	line-height: 24px;

	margin-bottom: 20px;
}

.footer-container p{
	font-size: 16px;
	line-height: 22px;

	width: 80%;
}

.footer-icon a{
	color: #1c1c1c;
	text-decoration: none;
}

.footer-icon a:hover{
	color: #ea0037;
}

.footer-icon i{
	font-size: 20px;
}

/*	################################################################
	END FOOTER-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START COPYRIGHT-CONTAINER STYLE SETTINGS
################################################################# */

.copyright-container{
	width: 100%;

	margin-bottom: 15px;
}

.copyright-container p{
	font-size: 16px;
	line-height: 22px;

	margin: 20px 0;
}

/*	################################################################
	END COPYRIGHT-CONTAINER STYLE SETTINGS
################################################################# */





/*	################################################################
	START POP-UP(TEACHERS) STYLE SETTINGS
################################################################# */

.teacher-popup{
	width: 65%;
	height: auto;

	position: relative;

	margin: 15px auto;
	background-color: #fff;
	box-shadow: 5px 10px 10px 10px rgba(0,0,0,0.1);

	padding: 30px 50px 50px 50px;
}

.teacher-popup-container{
	width: 100%;

	display: flex;
	flex-direction: row;
}

.teacher-popup-container .teacher-popup-item-one{
	width: 70%;
}

.teacher-popup-container .teacher-popup-item-two{
	width: 30%;

	max-width: 210px;
	height: 280px;

	position: relative;
}

.teacher-popup-photo{
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;

	overflow: hidden;

	border: 2px solid #ff6719;
}

.teacher-popup-photo img{
	height: 100%;
}

.teacher-popup h3{
	font-size: 18px;
	line-height: 24px;

	margin-bottom: 40px;
}

.teacher-popup p{
	width: 90%;
	font-size: 16px;
	line-height: 22px;

	padding-bottom: 15px;
}

.teacher-popup a{
	display: block;
	font-size: 16px;
	line-height: 22px;

	margin-top: 20px;
}

.pop-up_close{
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.pop-up_close p{
	width: 100%;

	cursor: pointer;
	text-align: right;
}

/*	################################################################
	END POP-UP(TEACHERS) STYLE SETTINGS
################################################################# */





/*	################################################################
	START TYPE PAGES STYLE SETTINGS
################################################################# */

.title-section_type-page{
	width: 100%;
	height: 670px;

	background-image: url('../media/background_type.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.type-page{
	width: 100%;
	height: auto;
	margin: 120px 0;
}

.type-page p{
	width: 90%;
}

.type-page p{
	color: #1c1c1c;
	font-size: 18px;
	line-height: 24px;

	padding-bottom: 25px;
}

/*	################################################################
	END TYPE PAGES STYLE SETTINGS
################################################################# */





/*	################################################################
	START CONTACT PAGE STYLE SETTINGS
################################################################# */

.contact-container{
	width: 100%;
	height: auto;
	position: relative;

	display: flex;
	flex-direction: row;
	justify-content: space-between;

	margin: 60px 0 120px 0;
}

.contact-item-one{
	width: 49%;
	position: relative;
}

.contact-item-two{
	width: 49%;
	position: relative;
}

.contact-container h2{
	padding-bottom: 15px;
}

.contact-container h4{
	font-size: 22px;
	line-height: 26px;

	color: #3e3e3e;

	margin: 30px 0 10px 0px;
}

.contact-container p{
	font-size: 18px;
	line-height: 24px;

	color: #3e3e3e;
}

/*	################################################################
	END CONTACT PAGE STYLE SETTINGS
################################################################# */





/*	################################################################
	START BLOG PAGE STYLE SETTINGS
################################################################# */

.title-section_tipical-page{
	width: 100%;
	height: 305px;

	background-image: url('../media/background_type.jpg');
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	background-attachment: fixed;
}

.title-blog{
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

.title-blog h1{
	font-size: 48px;
	line-height: 52px;
	font-weight: 900;

	margin-bottom: 30px;
}

 .title-blog p{
	font-size: 18px;
	line-height: 24px;
}

.blog-category{
	width: 100%;
	height: auto;

	display: flex;
	flex-direction: row;
	align-items: center;

	margin: 100px 0px 80px 0px;
}

.blog-category > p{
	font-size: 18px;
	font-weight: 400;
}

.blog-category .category{
	width: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	margin-left: 30px;
}

.blog-category .category a{
	font-size: 16px;
	color: #1c1c1c;
	text-decoration: underline;
	cursor: pointer;

	padding: 10px;
}

.blog-container{
	width: 100%;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
}

.blog-item{
	width: 30%;
	max-height: 380px;

	background-color: #fff;
	-webkit-box-shadow: 0px 10px 36px -18px rgba(0,0,0,0.6);
	-moz-box-shadow: 0px 10px 36px -18px rgba(0,0,0,0.6);
	box-shadow: 0px 10px 36px -18px rgba(0,0,0,0.6);

	border-bottom: 2px solid #ff6719;
	border-radius: 2px;

	margin: 0px 3% 35px 0px;
	transition: 0.3s;
}

.blog-item a{
	text-decoration: none;
	display: block;
	line-height: 18px;
}

.blog-item:hover{
	-webkit-box-shadow: -9px 14px 36px -18px rgba(0,0,0,0.7);
	-moz-box-shadow: -9px 14px 36px -18px rgba(0,0,0,0.7);
	box-shadow: -9px 14px 36px -18px rgba(0,0,0,0.7);
}

.image-post{
	width: 100%;
	height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.image-post img{
	width: 100%;
}

.preview-post{
	padding: 20px 20px 30px 20px;
	height: 240px;
}

.data-post{
	width: 100%;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.data-post data,
.data-post p{
	color: #5a5a5a;
	font-weight: 300;
	font-size: 12px;
}

.preview-post h4{
	font-size: 16px;
	font-weight: 400;

	margin: 30px 0px 20px 0px;
}

.preview-post p{
	font-size: 14px;
	color: #444444;
	display: inline;
}

.post-more{
	font-size: 14px;
	color: #444444;
}

.read-more{
	width: 100%;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: flex-end;

	margin: 80px 0;
}

/*	################################################################
	END BLOG PAGE STYLE SETTINGS
################################################################# */





/*	################################################################
	START ABOUT US PAGE STYLE SETTINGS
################################################################# */

.about-container{
	width: 100%;
	margin: 100px 0px 120px 0px;
}

.about-item_one{
	width: 100%;
	height: auto;

	margin-bottom: 100px;
}

.about-item_two{
	width: 100%;
	height: auto;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.about-item_one .about-image{
	width: 55%;
	height: auto;
	max-height: 360px;

	float: right;
	margin: 20px 0px 3% 7%;
}

.about-item_one .about-image img{
	width: 100%;
	border: 2px solid #ff5600;
}

.about-item_two .about-item_info{
	width: 60%;
	height: auto;
}

.about-item_two .about-item_logo{
	width: 40%;
	height: auto;

	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}

.about-item_two .about-item_logo img{
	width: 25%;
	opacity: 0.3;
}

.about-container p{
	color: #1c1c1c;
	font-size: 18px;
	line-height: 24px;

	padding-bottom: 25px;
}

/*	################################################################
	END ABOUT US PAGE STYLE SETTINGS
################################################################# */





/*	################################################################
	START POP-UP(FEEDBACK) STYLE SETTINGS
################################################################# */

.feedback-block{
	width: 80%;
	height: auto;

	position: relative;

	margin: 15px auto;
	background-color: #fff;
	box-shadow: 5px 10px 10px 10px rgba(0,0,0,0.1);

	padding: 30px 50px 50px 50px;
}

.feedback-form{
	width: 100%;
	margin-top: 30px;
}

.feedback-form_container{
	width: 100%;
	height: auto;

	display: flex;
	flex-direction: row;
}

.feedback-form_item{
	width: 50%;
}

.feedback-block label{
	font-size: 16px;
	line-height: 22px;
}

.feedback-form_item input{
	width: 220px;
	font-size: 15px;

	border: 1px solid #a8aaad;
	border-radius: 3px;

	padding: 5px;
	margin: 5px 0px 10px 0px;
}

.feedback-form_item select{
	width: 220px;
	font-size: 15px;

	border: 1px solid #a8aaad;
	border-radius: 3px;

	padding: 5px;
	margin: 5px 0px 10px 0px;	
}

.feedback-block span{
	color: #ea0037;
}

.feedback-form_item input[type="submit"]{
	width: 150px;
	background-color: #ea0037;
	color: #fff;

	border: none;
	outline: none;

	padding: 10px;
}

.feedback-title p{
	font-size: 20px;
	font-weight: 500;
}

.feedback-info{
	margin: 30px 0px 15px 0px;
}

.feedback-info p{
	font-size: 14px;
}

/*	################################################################
	END POP-UP(FEEDBACK) STYLE SETTINGS
################################################################# */



/*	################################################################
	START TEST PAGE STYLE SETTINGS
################################################################# */

.title-section_test-page{
	width: 100%;
	height: 305px;

	background-image: url('../media/background_test.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;

}

.test-container{
	margin: 65px 0px;
}

.test-container .test-block{
	margin: 0px 0px 35px 0px;
}

.test-block-head{
	width: 100%;
	height: auto;
	display: flex;
	align-items: flex-start;
	margin: 0px 0px 15px 0px;
}

.test-head-01 div{
	width: 25px;
	height: 25px;
	border-radius: 50px;
	background-color: #EA0037;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0px 20px 0px 0px;
}

.test-head-01 div span{
	color: #FFFFFF;
	font-size: 14px;
	line-height: 14px;
	font-weight: bold;
}

.test-head-02 p{
	font-size: 11px;
	line-height: 20px;
	color: #545454;
}

.test-head-02 h5{
	font-size: 16px;
	line-height: 20px;
	color: #1C1C1C;
}
 
.test-block-body .body-item{
	display: flex;
	align-items: center;
}

.body-item label{
	margin: 0px 0px 0px 17px;
	font-size: 14px;
	line-height: 14px;
	cursor: pointer;
}

.body-item div input[type="radio"]{
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.body-item div input + label {
    display: inline-flex;
    align-items: center;
    user-select: none;
  }

.body-item div label::before {
    content: " ";
    display: inline-block;
    position: relative;
    top: 2px;
    width: 12px;
    height: 12px;
    background-color: #FFFFFF;
    border: 1px solid #C6C6C6;
    border-radius: 50px;
    cursor: pointer;
}

.body-item div input:not(:disabled):active + label::before {
	border: 2px solid #EA0037;
	background-color: #FFFFFF;
}

.body-item div input:checked + label::before {
	border: 2px solid #EA0037;
	background-color: #FFFFFF;
}

.test-result{
	margin: 90px 0px 0px 0px;
}

.test-result a[class="check-button"]{
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	background-color: #ea0037;
	box-shadow: 5px 5px 20px 0px rgba(234,0,55,0.7);
	border-radius: 50px;
	transition: .3s linear;

	padding: 20px 45px;
}

.test-result a[class="check-button"]:hover{
	box-shadow: 10px 10px 20px 0px rgba(234,0,55,0.75);
}

.result-block{
	width: 80%;
	height: auto;
	position: relative;
	margin: 15px auto;
	background-color: #fff;
	box-shadow: 5px 10px 10px 10px rgba(0,0,0,0.1);
	padding: 30px 50px 50px 50px;
}

.result-title{
	margin: 15px 0px 0px 0px;
}

.result-title h4{
	font-size: 20px;
	font-weight: 500;
}

.result-title h4 span{
	color: #EA0037;
}

/*	################################################################
	END TEST PAGE STYLE SETTINGS
################################################################# */
