@charset "UTF-8";
/* 공통 */
.screen_out {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
}

.cat_main_cont {
	width: 100%;
	color: #000;
	font-family: 'noto4';
	overflow: hidden;
}

.cat_main_cont button {
	cursor: pointer;
}

.cat_main_cont .main_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cat_main_cont .main_title {
	position: relative;
	width: 100%;
	text-align: center;
}

.cat_main_cont .main_title p {
	line-height: 1.2;
	letter-spacing: -0.055em;
	font-size: 41px;
	font-family: 'noto4';
}

.cat_main_cont .main_title span + p {
	font-size: 41px;
}

.cat_main_cont .main_title h3 {
	margin-top: 4px;
	line-height: 1.3;
	letter-spacing: -0.055em;
	font-size: 50px;
	font-family: 'noto7';
}

.cat_main_cont .main_title > span {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 18px;
}

.cat_main_cont .main_desc {
	line-height: 1.4;
	letter-spacing: -0.045em;
	text-align: center;
	color: #ebe9f3;
	font-size: 21px;
	font-family: 'noto3';
}

@keyframes pointerBounceDiagonal {
	0%,
	100% {
		transform: translate(0, 0);
	}

	50% {
		transform: translate(-10px, -10px);
	}
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slide_down {
	0% {
		opacity: 0;
		transform: translateY(-10%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slide_up {
	0% {
		opacity: 0;
		transform: translateY(10%);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 비주얼 */
.visual_cont .visual_item_1 {
	position: absolute;
	top: 26px;
	right: 114px;
	opacity: 0;
}

.visual_cont.is_active .visual_item_1 {
	animation: slide_down 0.5s ease-in-out forwards;
}

.visual_cont .visual_item_2 {
	position: absolute;
	top: 156px;
	right: -136px;
	opacity: 0;
}

.visual_cont.is_active .visual_item_2 {
	animation: slide_up 0.5s 0.2s ease-in-out forwards;
}

/* 상품 */
.product_cont {
	background: #4403da;
}

.product_cont .main_inner {
	padding: 172px 0 187px;
}

.product_cont .main_title p {
	color: #d4ecff;
}

.product_cont .main_title h3 {
	color: #fff;
}

.product_cont .product_item {
	position: relative;
	width: 100%;
	margin: 67px 0 0;
	border-radius: 25px;
	background: #f2f2f2;
}

.product_cont .product_item .item_body {
	min-height: 385px;
	padding: 51px 0 0 43px;
	border-radius: 25px;
}

.product_cont .product_item .item_footer {
	border-radius: 25px;
	background: #efefef;
}

.product_cont .product_item .item_tags {
	display: flex;
	gap: 3px;
}

.product_cont .product_item .item_tags li {
	display: flex;
	align-items: center;
	height: 43px;
	padding: 5px 17px 0;
	border: 2px solid #7e7e7e;
	border-radius: 43px;
	letter-spacing: -0.02em;
	font-size: 22px;
	font-family: 'market-b';
}

.product_cont .product_item .item_tags li:nth-child(1) {
	color: #571ddd;
}

.product_cont .product_item .item_tags li:nth-child(2) {
	color: #3b1495;
}

.product_cont .product_item .item_title {
	display: block;
	line-height: 1.2;
	margin: 25px 0 0;
	letter-spacing: -0.025em;
	font-size: 66px;
	font-family: 'noto7';
}

.product_cont .product_item .item_list {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin: 33px 0 0;
}

.product_cont .product_item .item_list li {
	line-height: 1.2;
	letter-spacing: -0.025em;
	font-size: 21px;
}

.product_cont .product_item .item_price {
	position: absolute;
	top: 57px;
	right: 59px;
	text-align: right;
}

.product_cont .product_item .price_badge {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: -81px -28px 19px auto;
	padding: 10px 0 0;
	width: 155px;
	height: 155px;
	border-radius: 50%;
	background: #ff6c00;
	box-shadow: 3px 4px 2px 0 rgba(0, 0, 0, 0.19);
}

.product_cont .product_item .price_badge p {
	line-height: 1.2;
	letter-spacing: -0.05em;
	text-align: center;
	color: #fff;
	font-size: 33px;
	font-family: 'market-b';
}

.product_cont .product_item .price_wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
}

.product_cont .product_item .price_origin {
	display: flex;
	flex-direction: column;
}

.product_cont .product_item .origin_text {
	line-height: 1.2;
	letter-spacing: -0.05em;
	font-size: 18px;
}

.product_cont .product_item .origin_num {
	line-height: 1.2;
	letter-spacing: -0.02em;
	text-decoration: line-through;
	text-decoration-color: #000;
	text-decoration-thickness: 2px;
	color: #7b7b7b;
	font-size: 28px;
}

.product_cont .product_item .price_total {
	line-height: 1.2;
	letter-spacing: -0.055em;
	color: #4d01fe;
	font-size: 50px;
	font-family: 'noto7';
}

.product_cont .product_item .price_total > span {
	font-size: 75px;
}

.product_cont .product_item .btn_scroll {
	position: relative;
	width: 379px;
	height: 69px;
	margin: 17px 0 0;
	border-radius: 20px;
	letter-spacing: -0.065em;
	color: #fff;
	font-size: 25px;
	font-family: 'noto5';
	background: #000;
}

.product_cont .product_item .btn_scroll::after {
	content: '>';
	margin-left: 15px;
}

.product_cont .product_item .btn_scroll .btn_tag {
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%);
}

.product_cont .product_item .item_benefit {
	display: flex;
	width: 100%;
	padding: 30px 0 34px 18px;
}

.product_cont .product_item .item_benefit li {
	width: 100%;
	height: 110px;
	padding: 28px 0 0 24px;
	line-height: 1.35;
	letter-spacing: -0.025em;
	font-size: 20px;
	font-family: 'noto5';
}

.product_cont .product_item .item_benefit li + li {
	border-left: 1px solid #d7d7d7;
}

.product_cont .product_item .item_benefit li:nth-child(1) {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_04.png') no-repeat right 53px top 14px / 86px auto;
}

.product_cont .product_item .item_benefit li:nth-child(2) {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_07.png') no-repeat right 20px top 22px / 109px auto;
}

.product_cont .product_item .item_benefit li:nth-child(3) {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_08.png') no-repeat right 1px top 18px / 127px auto;
}

.product_cont .product_item .item_benefit li:nth-child(4) {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_06.png') no-repeat right 30px top 14px / 106px auto;
}

/* 혜택 */
.benefit_cont {
	background: #2f166a;
}

.benefit_cont .main_inner {
	padding: 163px 0 179px;
}

.benefit_cont .main_title p {
	color: #d4ecff;
}

.benefit_cont .main_title h3 {
	color: #fff;
}

.benefit_cont .benefit_title p {
	line-height: 1.2;
	letter-spacing: -0.035em;
	color: #fff;
	font-size: 45px;
	font-family: 'noto2';
}

.benefit_cont .benefit_title h3 {
	line-height: 1.2;
	letter-spacing: -0.035em;
	margin: 7px 0 0;
	color: #65ff03;
	font-size: 50px;
	font-family: 'noto7';
}

.benefit_cont .benefit_list_1 {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	margin: 82px 0 0;
}

.benefit_cont .benefit_list_1 .list_item {
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	min-height: 231px;
	padding: 61px 30px 16px 56px;
	border: 1px solid #38ff7a;
	border-radius: 20px;
	background: #000;
}

.benefit_cont .benefit_list_1 .list_item::after {
	content: '';
	position: absolute;
	top: -16px;
	right: 63px;
	width: 346px;
	height: 215px;
	background: url('/_skin/tpl_skin/basic_fire_system/images/apply_2/ssang_refund/benefit_1.png') no-repeat 0 0;
}

.benefit_cont .benefit_list_1 .item_sub_title {
	line-height: 1.2;
	color: #dccfb3;
	letter-spacing: -0.02em;
	font-size: 26px;
}

.benefit_cont .benefit_list_1 .item_title {
	margin: 10px 0 0;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: #fff;
	font-size: 42px;
	font-family: 'noto7';
}

.benefit_cont .benefit_list_1 .item_noti {
	margin: auto 0 0 auto;
	letter-spacing: -0.02em;
	color: #7a7f7f;
	font-size: 13px;
}

.benefit_cont .benefit_list_2 {
	display: flex;
	gap: 15px;
	margin: 64px 0 0;
	width: 100%;
}

.benefit_cont .benefit_list_2 .list_item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	position: relative;
	width: 100%;
	height: 227px;
	padding: 0 0 32px 33px;
	border-radius: 20px;
	color: #fff;
}

.benefit_cont .benefit_list_2 .list_item_1 {
	background: #3c53ff url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_01.png') no-repeat right 11px top 42px;
}

.benefit_cont .benefit_list_2 .list_item_2 {
	background: #3c53ff url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_02.png') no-repeat right 35px top 55px;
}

.benefit_cont .benefit_list_2 .item_sub_title {
	line-height: 1.2;
	letter-spacing: -0.025em;
	font-size: 22px;
}

.benefit_cont .benefit_list_2 .item_title {
	line-height: 1.2;
	margin: 7px 0 0;
	letter-spacing: -0.025em;
	font-size: 35px;
	font-family: 'noto6';
}

.benefit_cont .benefit_list_2 .item_noti {
	position: absolute;
	right: 38px;
	bottom: 21px;
	opacity: 0.5;
}

.benefit_cont .benefit_list_3 {
	display: flex;
	gap: 13px;
	margin: 22px 0 0;
	width: 100%;
}

.benefit_cont .benefit_list_3 .list_item {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 300px;
	padding: 33px 0 0 28px;
	border-radius: 20px;
}

.benefit_cont .benefit_list_3 .list_item_1 {
	background: #ededed url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_03.png') no-repeat left 34px bottom 27px;
}

.benefit_cont .benefit_list_3 .list_item_2 {
	background: #ededed url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_04.png') no-repeat center bottom 21px;
}

.benefit_cont .benefit_list_3 .list_item_3 {
	background: #ededed url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_05.png') no-repeat left 40px bottom 33px;
}

.benefit_cont .benefit_list_3 .list_item_4 {
	background: #ededed url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_06.png') no-repeat left 41px bottom 18px;
}

.benefit_cont .benefit_list_3 .item_sub_title {
	line-height: 1.2;
	letter-spacing: -0.045em;
	font-size: 20px;
}

.benefit_cont .benefit_list_3 .item_title {
	margin: 4px 0 0;
	line-height: 1.2;
	letter-spacing: -0.045em;
	font-size: 30px;
	font-family: 'noto6';
}

.benefit_cont .benefit_list_4 {
	display: flex;
	gap: 20px;
	margin: 48px 0 0;
	width: 100%;
}

.benefit_cont .benefit_list_4 .list_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	padding: 35px 21px 27px;
	border-radius: 20px;
	background: #ff6c00;
}

.benefit_cont .benefit_list_4 .list_item::before {
	content: '+';
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -50%);
	width: 71px;
	height: 58px;
	border-radius: 50%;
	color: #000;
	font-size: 55px;
	font-family: 'noto7';
	background: #ff6c00;
}

.benefit_cont .benefit_list_4 .item_sub_title {
	line-height: 1.2;
	letter-spacing: -0.035em;
	font-size: 38px;
}

.benefit_cont .benefit_list_4 .item_sub_title em {
	color: #000;
	font-family: 'noto6';
}

.benefit_cont .benefit_list_4 .item_title {
	display: block;
	line-height: 1.3;
	letter-spacing: -0.055em;
	text-align: center;
	color: #fff;
	font-size: 38px;
	font-family: 'noto7';
}

.benefit_cont .benefit_list_4 .item_title em {
	color: #000;
}

.benefit_cont .benefit_list_4 .item_banner_wrap {
	display: flex;
	gap: 20px;
	width: 100%;
	margin: 26px 0 0;
}

.benefit_cont .benefit_list_4 .item_banner {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 251px;
	padding: 42px 16px 15px 27px;
	border-radius: 10px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.34);
}

.benefit_cont .benefit_list_4 .item_banner_1 {
	background: #fff url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_07.png') no-repeat right 38px top 60px;
}

.benefit_cont .benefit_list_4 .item_banner_2 {
	background: #fff url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/benefit_08.png') no-repeat right 14px top 71px;
}

.benefit_cont .benefit_list_4 .item_banner p {
	line-height: 1.3;
	letter-spacing: -0.025em;
	font-size: 20px;
}

.benefit_cont .benefit_list_4 .item_banner strong {
	display: block;
	line-height: 1.2;
	margin: 13px 0 0;
	letter-spacing: -0.045em;
	font-size: 34px;
	font-weight: normal;
	font-family: 'noto7';
}

.benefit_cont .benefit_list_4 .item_banner .banner_noti {
	margin: auto 0 0;
	text-align: right;
	letter-spacing: -0.045em;
	color: #5e5e5e;
	font-size: 13px;
}

/* 자격증 */
.certification_cont {
	padding: 165px 0 181px;
	background-color: #d4ecff;
}

.certification_cont .main_title p {
	font-size: 50px;
	font-family: 'noto2';
}

.certification_cont .card-slide-wrap {
	width: 1200px;
	margin: 60px 0 0;
	/*overflow: hidden;*/
	position: relative;
}

.certification_cont .reason_card-Swiper {
	width: 1100px;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	/*padding: 20px 0;*/
}

.certification_cont .card-slide-wrap .item {
	width: 350px;
	height: 500px;
	background-color: #fff;
	margin: 0 auto;
	border-radius: 30px;
	padding: 45px 40px;
	position: relative;
	/*box-shadow: 0px 0px 13px 7px rgba(0,0,0, 0.2);*/
}
.certification_cont .card-slide-wrap .item em {
	font-size: 30px;
	font-family: noto5;
	line-height: 40px;
}
.certification_cont .card-slide-wrap .item p {
	margin-top: 20px;
	font-size: 20px;
	font-family: noto2;
	line-height: 30px;
}
.certification_cont .card-slide-wrap .reason-card-btn-left {
	left: -15px;
	right: auto;
	position: absolute;
	top: 50%;
	width: 42px;
	height: 72px;
	margin-top: -40px;
	z-index: 10;
	cursor: pointer;
	background-size: 27px 44px;
	background: url(/_skin/tpl_skin/basic_chemical_analysis/contents/001112/1_4/btn_left.png) no-repeat center;
}
.certification_cont .card-slide-wrap li .item-1::before {
	content: '';
	background: url(/_skin/tpl_skin/basic_chemical_analysis/contents/001112/1_4/reason_card_1.png) no-repeat bottom;
	width: 218px;
	height: 208px;
	display: block;
	position: absolute;
	bottom: 30px;
	left: 70px;
}
.certification_cont .card-slide-wrap li .item-2 {
	overflow: hidden;
}
.certification_cont .card-slide-wrap li .item-2 > div {
	/*background: url(/_skin/tpl_skin/basic_chemical_analysis/contents/001112/1_4/reason_card_02.png) no-repeat bottom;*/
	width: 368px;
	height: 280px;
	display: block;
	position: absolute;
	bottom: 0;
	left: -8px;
}
.certification_cont .card-slide-wrap li .item-3::before {
	content: '';
	background: url(/_skin/tpl_skin/basic_chemical_analysis/contents/001112/1_4/reason_card_3.png) no-repeat bottom;
	width: 271px;
	height: 248px;
	display: block;
	position: absolute;
	bottom: 0;
}
.certification_cont .card-slide-wrap li .item-4::before {
	content: '';
	background: url(/_skin/tpl_skin/basic_chemical_analysis/contents/001112/1_4/reason_card_4.png) no-repeat bottom;
	width: 291px;
	height: 252px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 28px;
}

.certification_cont .swiper-button-next {
	right: -15px;
	left: auto;
	position: absolute;
	top: 50%;
	width: 42px;
	height: 72px;
	margin-top: -40px;
	z-index: 1;
	cursor: pointer;
	background: url(/_skin/tpl_skin/basic_chemical_analysis/contents/001112/1_4/btn_right.png) no-repeat center;
}

/* 그래프 */
.graph_cont {
	background: #1c0f35 url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/graph_bg.png') no-repeat center top;
}

.graph_cont .main_inner {
	padding: 175px 0 148px;
}

.graph_cont img + .main_title {
	margin: 113px 0 0;
}

.graph_cont .main_title p {
	color: #d4ecff;
}

.graph_cont .main_title h3 {
	color: #fff;
}

.graph_cont .main_desc {
	margin: 37px 0 16px;
}

.graph_cont .graph_img_2 {
	margin: -114px 0 0;
}

/* 커리큘럼 */
.curriculum_cont {
	background: #f3f3f3;
}

.curriculum_cont .main_inner {
	padding: 0 0 172px;
}

.curriculum_cont .main_title {
	margin: 169px 0 0;
}

.curriculum_cont .main_desc {
	margin: 19px 0 0;
	color: #000;
}

.curriculum_cont .main_tab_wrap {
	width: 1100px;
	margin: 46px 0 0;
}

.curriculum_cont .tab_menu {
	display: flex;
	gap: 5px;
	width: 100%;
}

.curriculum_cont .tab_menu li {
	width: 100%;
}

.curriculum_cont .tab_menu .btn_tab {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
	border-radius: 70px;
	letter-spacing: -0.035em;
	color: #fff;
	font-size: 31px;
	font-family: 'noto7';
	background: #d4d3d7;
}

.curriculum_cont .tab_menu .btn_tab.is_active {
	background: #000;
}

.curriculum_cont .tab_content {
	display: none;
	margin: 20px 0 0;
}

.curriculum_cont .tab_content.is_active {
	display: block;
}

.curriculum_cont table {
	position: relative;
	width: 100%;
	height: 249px;
	margin: 30px auto 0;
	table-layout: fixed;
	border-collapse: collapse;
	border: 2px solid #000;
	background: #fff;
}
.curriculum_cont table.curri_table_2 {
	width: 850px;
	margin-top: 17px;
}
.curriculum_cont table tr:nth-child(1) {
	height: 73px;
}
.curriculum_cont table tr:nth-child(2) {
	height: 62px;
}
/* .curriculum_cont table th, */
.curriculum_cont table td {
	border: 1px solid #e1e1e1;
}

.curriculum_cont table tr:nth-child(2) td {
	padding: 0;
	vertical-align: middle;
	color: #000;
	font-size: 20px;
	font-family: 'noto7';
}

.curriculum_cont table th:not(:last-child),
.curriculum_cont table td:not(:last-child) {
	border-right: 1px solid #e1e1e1;
}

.curriculum_cont table th p {
	line-height: 1.2;
	letter-spacing: -0.035em;
	color: #fff;
	font-size: 14px;
	font-family: 'noto6';
}

.curriculum_cont table th strong {
	line-height: 1.2;
	letter-spacing: -0.035em;
	color: #fff;
	font-size: 23px;
	font-family: 'noto7';
}
.curriculum_cont table.curri_table th:first-child {
	background: #dedfed;
	border-left: 2px solid #000;
	border-right: 2px solid #000;
	letter-spacing: -0.055em;
	color: #272727;
	font-size: 19px;
}
.curriculum_cont table.curri_table tr + tr th:first-child {
	border-top: 1px solid #82838a;
}
.curriculum_cont table.curri_table tr:first-child th:first-child {
	border-top: 2px solid #000;
}
.curriculum_cont table.curri_table tr:last-child th:first-child {
	border-bottom: 2px solid #000;
}
.curriculum_cont table th:not(:first-child) {
	position: relative;
	border-bottom: 1px dashed #000;
}
.curriculum_cont table th:nth-child(2) {
	background: linear-gradient(to right, #7494e8, #5099e6);
}

.curriculum_cont table th:nth-child(3) {
	background: linear-gradient(to right, #4e99e5, #3c90e1);
}

.curriculum_cont table th:nth-child(4) {
	background: linear-gradient(to right, #3c8fe1, #3e79db);
}

.curriculum_cont table th:nth-child(5) {
	background: linear-gradient(to right, #3f78dc, #535dd7);
}
.curriculum_cont table.curri_table_2 th:last-child {
	border-style: solid;
	line-height: 1.2;
	padding: 33px 0 0 40px;
	text-align: left;
	vertical-align: top;
	color: #fff;
	font-size: 27px;
}
.curriculum_cont table th:not(:last-child):nth-child(n + 2):after {
	clear: both;
	content: '';
	display: block;
	position: absolute;
	right: 0;
	bottom: -5px;
	width: 7px;
	height: 10px;
	background: url('/_skin/tpl_skin/basic_attorney/images/apply/all_pass/curri_arrow.png') center no-repeat;
}
.curriculum_cont table.curri_table_2 th:last-child::after {
	top: 0px;
	bottom: auto;
	right: -72px;
	width: 292px;
	height: 228px;
	background: url('/_skin/tpl_skin/basic_judicial_scrivener/content5/v2/curri_img.png') no-repeat 0 0;
}
.curriculum_cont table td {
	position: relative;
	padding: 11px 0;
	border-top: 0;
	vertical-align: top;
	font-family: 'noto4';
	font-size: 18px;
	letter-spacing: -0.035em;
	text-align: center;
	line-height: 1.4;
}

.curriculum_cont table td strong {
	line-height: 1.2;
	letter-spacing: -0.035em;
	color: #393939;
	font-size: 22px;
	font-family: 'noto7';
}

.curriculum_cont table td p {
	line-height: 1.4;
	margin: 9px 0 0;
	letter-spacing: -0.035em;
	color: #393939;
	font-size: 18px;
}

.curriculum_cont table .table_badge {
	position: relative;
	top: 22px;
	width: 100%;
	margin: -3px 0 0;
	padding: 4px 0 4px;
	line-height: 1.2;
	text-align: center;
	letter-spacing: -0.035em;
	color: #fff;
	font-size: 18px;
	background: #fa4444;
}

/* 교수 */
.professor_cont {
	background: linear-gradient(to bottom, #fff 497px, #2b2b2e 497px);
}

.professor_cont .main_inner {
	padding: 169px 0 0;
}

.professor_cont .main_desc {
	margin: 18px 0 0;
	color: #000;
}

.professor_cont .professor_slide {
	position: relative;
	width: 1400px;
	margin: 61px 0 0;
	padding: 59px 0 0;
	overflow: hidden;
}

.professor_cont .professor_slide .swiper-pagination {
	display: flex;
	justify-content: center;
	gap: 13px;
	top: 0;
	width: 100%;
	z-index: 1;
}

.professor_cont .professor_slide .page_item {
	position: relative;
	width: 275px;
	height: 101px;
	cursor: pointer;
}

.professor_cont .professor_slide .page_item_1 {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/t_tab1_out.png') no-repeat 0 0;
}

.professor_cont .professor_slide .page_item_1:hover,
.professor_cont .professor_slide .page_item_1.is_active {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/t_tab1_over.png') no-repeat 0 0;
}

.professor_cont .professor_slide .page_item_2 {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/t_tab2_out.png') no-repeat 0 0;
}

.professor_cont .professor_slide .page_item_2:hover,
.professor_cont .professor_slide .page_item_2.is_active {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/t_tab2_over.png') no-repeat 0 0;
}

.professor_cont .professor_slide .swiper-slide {
	position: relative;
	width: 1400px;
	padding: 150px 0 0 150px;
	text-align: left;
	z-index: 1;
}
.professor_cont .professor_slide .swiper-slide::after {
	clear: both;
	content: '';
	display: block;
	position: absolute;
	top: 8px;
	right: -40px;
	width: 881px;
	height: 1082px;
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/teacher_1.png') center no-repeat;
	z-index: -1;
}
.professor_cont .professor_slide .swiper-slide_1::after {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/teacher_1.png') center bottom no-repeat;
}
.professor_cont .professor_slide .swiper-slide_2::after {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/teacher_2.png') center bottom no-repeat;
}
.professor_cont .professor_slide .swiper-slide_3::after {
	right: -20px;
	background: url('/_skin/tpl_skin/basic_fire_system/images/apply_2/ssang_refund/teacher_3.png') center bottom no-repeat;
}
.professor_cont .professor_slide .swiper-slide_4::after {
	background: url('/_skin/tpl_skin/basic_fire_system/images/apply_2/ssang_refund/teacher_4.png') center bottom no-repeat;
}
.professor_cont .professor_slide .swiper-slide_5::after {
	background: url('/_skin/tpl_skin/basic_fire_system/images/apply_2/ssang_refund/teacher_5.png') center bottom no-repeat;
}
.professor_cont .professor_slide .swiper-slide_6::after {
	right: -37px;
	background: url('/_skin/tpl_skin/basic_fire_system/images/apply_2/ssang_refund/teacher_6.png') center bottom no-repeat;
}
.professor_cont .professor_slide .swiper-slide_7::after {
	right: -37px;
	background: url('/_skin/tpl_skin/basic_fire_system/images/apply_2/ssang_refund/teacher_7.png') center bottom no-repeat;
}
.professor_cont .professor_slide .slide_badge {
	position: absolute;
	top: 332px;
	right: 0;
}
.professor_cont .professor_slide .slide_history {
	display: flex;
	gap: 16px;
	margin: 0 0 43px 0;
}

.professor_cont .professor_slide .slide_history li {
	width: 182px;
	height: 77px;
	padding: 15px 0 0;
	line-height: 1.2;
	letter-spacing: -0.075em;
	text-align: center;
	color: #e4d080;
	font-size: 18px;
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/teacher_shape.png') no-repeat 0 0;
}

.professor_cont .professor_slide .slide_sub_title {
	line-height: 1.28;
	margin-bottom: 12px;
	color: #fff;
	font-family: 'noto6';
	font-size: 36px;
	letter-spacing: -0.065em;
}
.professor_cont .professor_slide .slide_sub_title em {
	display: block;
	font-family: 'noto6';
}
.professor_cont .professor_slide .slide_title {
	display: flex;
	align-items: center;
	gap: 5px;
	width: fit-content;
	font-family: 'noto4';
	font-size: 30px;
	color: #ffde00;
}
.professor_cont .professor_slide .slide_title p,
.professor_cont .professor_slide .slide_title span {
	line-height: 1.1;
}
.professor_cont .professor_slide .slide_title span {
	display: flex;
	align-items: center;
	height: 32px;
	padding: 0 11px 0 12px;
	border-radius: 60px;
	background: #ffdb00;
}
.professor_cont .professor_slide .slide_name {
	display: block;
	line-height: 1.2;
	width: fit-content;
	margin: 13px 0 0;
	font-family: 'noto7';
	font-size: 55px;
	letter-spacing: -0.065em;
	color: #ffde00;
}
.professor_cont .professor_slide .slide_list {
	margin: 36px 0 0;
}
.professor_cont .professor_slide .slide_list li {
	line-height: 1.2;
	letter-spacing: -0.035em;
	color: #fff;
	font-size: 16px;
	font-family: 'noto4';
}
.professor_cont .professor_slide .slide_list li + li {
	margin: 6px 0 0;
}
.professor_cont .professor_slide .slide_list li::before {
	content: '·';
}
.professor_cont .professor_slide .slide_check {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin: 32px 0 0;
	gap: 11px;
}
.professor_cont .professor_slide .slide_check li {
	display: inline-flex;
	align-items: center;
	min-width: 532px;
	height: 52px;
	padding: 0 30px 0 56px;
	border: 2px solid #00834a;
	border-radius: 100px;
	letter-spacing: -0.065em;
	color: #fff;
	font-size: 21px;
	font-family: 'noto5';
	background: #2b3e3e url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/teacher_check.png') no-repeat 25px center;
}
.professor_cont .professor_slide .popupVideo {
	position: relative;
	width: 645px;
	height: 436px;
	margin: 5px 0 0 -53px;
}

.professor_cont .professor_slide .popupVideo a {
	position: absolute;
	top: 53px;
	left: 52px;
	width: 539px;
	height: 330px;
}

.professor_cont .professor_slide .btn_video {
	display: block;
	margin: 61px 0 0;
	width: 539px;
}

.professor_cont .professor_slide .slide_review {
	display: flex;
	gap: 35px;
	margin: 50px 0 0;
}

.professor_cont .professor_slide .slide_review li {
	display: flex;
	align-items: center;
	width: 343px;
	height: 165px;
	padding: 6px 20px 0 148px;
	border-radius: 20px;
	word-break: keep-all;
	box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.25);
	background: #fff url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_1.png') no-repeat 31px 31px;
}

.professor_cont .swiper-slide_1 .slide_review li:nth-child(1),
.professor_cont .swiper-slide_4 .slide_review li:nth-child(1) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_1.png');
}
.professor_cont .swiper-slide_1 .slide_review li:nth-child(2),
.professor_cont .swiper-slide_4 .slide_review li:nth-child(2) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_2.png');
}
.professor_cont .swiper-slide_1 .slide_review li:nth-child(3),
.professor_cont .swiper-slide_4 .slide_review li:nth-child(3) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_3.png');
}
.professor_cont .swiper-slide_2 .slide_review li:nth-child(1),
.professor_cont .swiper-slide_5 .slide_review li:nth-child(1),
.professor_cont .swiper-slide_7 .slide_review li:nth-child(1) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_4.png');
}
.professor_cont .swiper-slide_2 .slide_review li:nth-child(2),
.professor_cont .swiper-slide_5 .slide_review li:nth-child(2),
.professor_cont .swiper-slide_7 .slide_review li:nth-child(2) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_5.png');
}
.professor_cont .swiper-slide_2 .slide_review li:nth-child(3),
.professor_cont .swiper-slide_5 .slide_review li:nth-child(3),
.professor_cont .swiper-slide_7 .slide_review li:nth-child(3) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_6.png');
}
.professor_cont .swiper-slide_3 .slide_review li:nth-child(1),
.professor_cont .swiper-slide_6 .slide_review li:nth-child(1) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_7.png');
}
.professor_cont .swiper-slide_3 .slide_review li:nth-child(2),
.professor_cont .swiper-slide_6 .slide_review li:nth-child(2) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_8.png');
}
.professor_cont .swiper-slide_3 .slide_review li:nth-child(3),
.professor_cont .swiper-slide_6 .slide_review li:nth-child(3) {
	background-image: url('/_skin/tpl_skin/basic_sports_renew/images/cm_teacher/v2/reviewer_5.png');
}

.professor_cont .professor_slide .slide_review p {
	word-break: keep-all;
	line-height: 1.45;
	letter-spacing: -0.045em;
	font-size: 20px;
	font-family: 'noto4';
}

.professor_cont .professor_slide .slide_review em {
	color: #0054ff;
	font-family: 'noto6';
}
/* 도서 */
.book_cont .main_inner {
	padding: 162px 0 0;
}

.book_cont .main_desc {
	margin: 20px 0 0;
	color: #000;
}

.book_cont .book_video {
	position: relative;
	margin: 30px 0 0;
}

.book_cont .book_video .popupVideo {
	position: absolute;
	bottom: 36px;
	right: 58px;
	width: 340px;
	height: 193px;
}

.book_cont .book_video .popupVideo a {
	display: block;
	width: 400px;
	height: 300px;
}

.book_cont .book_slide {
	position: relative;
	width: 940px;
	height: 627px;
	margin: 17px 0 0 0;
	overflow: hidden;
}

.book_cont .book_slide img {
	width: 100%;
}

.book_cont .book_slide .swiper-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	bottom: 0;
	width: 100%;
	z-index: 2;
}

.book_cont .book_slide .swiper-pagination-bullet {
	width: 21px;
	height: 21px;
	border: none;
	border-radius: 30px;
	margin: 0;
	background: #edebf8;
	box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.3);
	opacity: 1;
}

.book_cont .book_slide .swiper-pagination-bullet-active {
	width: 70px;
	height: 21px;
	background: #9a3bf9;
	box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.book_cont .book_review {
	position: relative;
	width: 100%;
	height: 200px;
	padding: 10px 24px;
	margin: 51px 0 0;
	overflow: hidden;
}

.book_cont .book_review .swiper-slide {
	position: relative;
	width: 1056px;
	border: 2px solid #273859;
	border-radius: 30px;
}

.book_cont .book_review .slide_header {
	display: flex;
	align-items: center;
	width: 100%;
	height: 69px;
	padding: 0 167px 0 53px;
	border-radius: 20px 20px 0 0;
	background: #273859 url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_star.png') no-repeat right 36px center;
}

.book_cont .book_review .slide_contents {
	display: flex;
	align-items: center;
	width: 100%;
	min-height: 108px;
	padding: 10px 53px;
}

.book_cont .book_review .slide_header::after {
	content: '';
	width: 88px;
	height: 88px;
}

.book_cont .book_review .swiper-slide_1 .slide_header::after {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_face1.png') no-repeat 0 0;
}

.book_cont .book_review .swiper-slide_2 .slide_header::after {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_face2.png') no-repeat 0 0;
}

.book_cont .book_review .swiper-slide_3 .slide_header::after {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_face3.png') no-repeat 0 0;
}

.book_cont .book_review .swiper-slide_4 .slide_header::after {
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_face4.png') no-repeat 0 0;
}

.book_cont .book_review .slide_title {
	flex: 1 1 auto;
	line-height: 1.2;
	letter-spacing: -0.025em;
	color: #fff;
	font-size: 27px;
	font-family: 'noto7';
}

.book_cont .book_review .slide_text {
	width: 80%;
	line-height: 1.4;
	letter-spacing: -0.025em;
	word-break: keep-all;
	font-size: 20px;
	font-family: 'noto6';
}

.book_cont .book_review .swiper-button-prev,
.book_cont .book_review .swiper-button-next {
	top: 103px;
	width: 48px;
	height: 49px;
	margin: 0;
}

.book_cont .book_review .swiper-button-prev {
	left: 0;
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_btn_left.png') no-repeat 0 0;
}

.book_cont .book_review .swiper-button-next {
	right: 0;
	background: url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_2/v3/book_btn_right.png') no-repeat 0 0;
}

/* 모의고사 */
.mock_cont .main_inner {
	padding: 161px 0 156px;
}

.mock_cont .main_desc {
	margin: 19px 0 53px;
	color: #000;
}

/* 특강 */
.lecture_cont {
	background: #222025 url('/_skin/tpl_skin/basic_chemical_analysis/images/content1_4/special_lec_bg.png') no-repeat center top;
}

.lecture_cont .main_inner {
	padding: 167px 0 20px;
}

.lecture_cont .main_title p,
.lecture_cont .main_title h3 {
	color: #fff;
}

.lecture_cont .main_desc {
	margin: 20px 0 0;
}

.lecture_cont .lecture_img {
	margin: -19px 0 0 131px;
}

/* 후기 */
.review_cont {
	background: #4403da;
}

.review_cont .main_inner {
	padding: 161px 0 151px;
}

.review_cont .main_title p,
.review_cont .main_title h3 {
	color: #fff;
}

.review_cont .main_title p {
	color: #fff;
	font-size: 47px;
}

.review_cont .main_title h3 {
	color: #fff;
	font-size: 50px;
}

.review_cont .reviews_list {
	display: flex;
	flex-direction: column;
	gap: 17px;
	margin: 41px 0 0 18px;
}

/* 시작 */
.start_cont {
	height: 732px;
	background: url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/sidea_bg.png') no-repeat center top;
}

.start_cont .main_inner {
	padding: 135px 0 0;
}

.start_cont .main_title p {
	color: #fff;
	font-size: 50px;
	font-family: 'noto4';
}

.start_cont .main_title h3 {
	color: #40f37e;
}

.start_cont .start_list {
	display: flex;
	flex-wrap: wrap;
	gap: 17px 15px;
	width: 100%;
	margin: 86px 0 0 10px;
}

.start_cont .start_list .list_item {
	position: relative;
	width: 215px;
	height: 129px;
	padding: 18px 0 0;
	line-height: 1.2;
	text-align: center;
	letter-spacing: -0.03em;
	color: #fff;
	font-size: 21px;
	background: url('/_skin/tpl_skin/basic_tax_accountant/images/apply/refund/sidea_box.png') no-repeat 0 0;
}

.start_cont .start_list .list_item:nth-child(n + 5) {
	left: 90px;
}

.start_cont .start_list .list_item em {
	font-family: 'noto6';
}

.start_cont .main_title .evidence_area {
	top: 93px;
	right: 41px;
}

/* 하단 배너 */
.banner_bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 4;
}

.banner_bottom button {
	display: block;
}
