.visual-sec .txt-box {
	position: absolute;
	left: 50%;
	bottom: 5.3125rem;
	box-sizing: border-box;
	width: 100%;
	transform: translateX(-50%);
	z-index: 10;
}

.visual-sec .txt-box>h3 {
	color: var(--color-white);
	font-size: 5.75rem;
	font-weight: bold;
	line-height: 1.22;
	word-break: keep-all;
	transform: translateY(1.25rem);
	opacity: 0;
	transition: 1s 0.2s;
}

.visual-sec .txt-box>p {
	color: var(--color-white);
	margin-top: 1.5rem;
	font-size: 1.6rem;
	transform: translateY(1.25rem);
	opacity: 0;
	word-break: keep-all;
	transition: 1s 0.4s;
}

.visual-sec .swiper-slide-active .txt-box>h3,
.visual-sec .swiper-slide-active .txt-box>p {
	transform: translateY(0);
	opacity: 1;
}

.visual-sec .img-box {
	display: block;
	width: 100%;
	height: calc(var(--vh, 1vh) * 100);
	overflow: hidden;
}

.visual-sec img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
	transition: 1.5s 0.1s;
}

.visual-sec .swiper-slide-active img {
	transform: scale(1.0);
}

.visual-sec .all-box {
	position: absolute;
	width: 100%;
	left: 50%;
	bottom: 0;
	box-sizing: border-box;
	transform: translateX(-50%);
	z-index: 20;
}

.visual-sec .progress-box {
	position: relative;
	width: 100%;
	height: 5px;
	z-index: 11;
}

.autoplay-progress {
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 5px;
	background-color: rgba(34, 34, 34, 0.5);
}

.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	/* height: 100%; */
	stroke-width: 5px;
	stroke: #a9de1e;
	fill: none;
	stroke-dashoffset: calc(100 * (1 - var(--progress)));
	stroke-dasharray: 100;
}

/* stroke-dashoffset은 선의 테두리가 얼마나 이동하는지 결정 progress라는 변수를 사용하여 계산되어진 값이 들어감 100은전체길이 
		stroke-dasharray는 선의 테두리를 구성하는 선 조각의 길이를 설정 전체길이가 100
		*/
.visual-sec .arrow-box {
	position: absolute;
	right: 5.25rem;
	bottom: 5.3125rem;
	width: 9.9375rem;
	height: 2rem;
	padding: 0 2rem;
}

.visual-sec .swiper-pagination {
	display: flex;
	justify-content: space-between;
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	width: 2.875rem;
	margin: 0 auto;
	color: var(--color-white);
	line-height: 2rem;
	text-align: center;
}

.visual-sec .swiper-pagination:after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1px;
	height: 0.5rem;
	background-color: rgba(255, 255, 255, 0.5);
	transform: translate(-50%, -50%);
	content: '';
}

.visual-sec .swiper-button-next,
.visual-sec .swiper-button-prev {
	width: 2rem;
	height: 2rem;
	top: 0;
	margin-top: 0;
	background: url(https://www.century21cc.co.kr/views/res/imgs/common/icon-arrow-left-fff.svg) no-repeat center / 100%;
}

.visual-sec .swiper-button-next {
	background-image: url(https://www.century21cc.co.kr/views/res/imgs/common/icon-arrow-right-fff.svg);
}

.visual-sec .swiper-button-next::after,
.visual-sec .swiper-button-prev::after {
	font-size: 0;
}

.sec {
	padding: 7.5rem 0;
}

.sec .title span {
	color: #aaa;
	font-size: 1.5rem;
	font-weight: bold;
}

.sec .title h3 {
	margin-top: 2.25rem;
	font-size: 3.75rem;
	font-weight: bold;
	line-height: 1.37;
	letter-spacing: -1.5px;
	color: var(--black);
	word-break: keep-all;
}

.sec1 {
	overflow: hidden;
	/* align-items: flex-start; */
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.sec1 .switch {
	position: fixed;
	top: 50%;
	right: 0;
	height: 19.25rem;
	transform: translate(100%, -50%);
	transition: transform 0.4s;
	z-index: 100;
}

.sec1 .switch.on {
	transform: translateY(-50%);
}

.sec1 .switch button {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	padding: 1.5rem;
	font-size: 1.25rem;
	font-weight: bold;
	line-height: 1.4;
	color: var(--black);
	/* writing-mode: vertical-lr;
	text-orientation: upright; */
	border-radius: 2rem 0 0 2rem;
	box-sizing: border-box;
	background-color: #fff;
}

.sec1 .switch button:after {
	display: inline-block;
	width: 2.5rem;
	height: 2.5rem;
	/* margin-top: 1.5rem; */
	border-radius: 100%;
	background-color: #121212;
	background-image: url(/resource/images/ic_more.svg);
	background-position: center;
	background-repeat: no-repeat;
	content: '';
}

.sec1 .panel-wrap {
	display: flex;
	position: relative;
	transition: transform 0.8s;
}

.sec1 .panel-wrap.on {
	transform: translateX(-100%);
}

.sec1 .panel {
	overflow: hidden;
	width: 100%;
	flex-shrink: 0;
	padding-bottom: 14.125rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.sec1 .p1 {
	background-image: url(../images/bg_yeoju.jpg);
	z-index: 1;
}

.sec1 .p2 {
	/* display: none; */
	background-image: url(../images/bg_gangnam.jpg);
	z-index: 2;
}

.sec1 [class*="cont-sec"] {
	min-height: 100vh;
	padding: 14.125rem 0;
	box-sizing: border-box;
}

.sec1 .cont-sec1,
.sec1 .cont-sec2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	text-align: center;
}

.sec1 .cont-sec1 img {
	display: block;
}

.sec1 .cont-sec1 p {
	margin-top: 2rem;
	color: rgb(192, 219, 232);
	font-size: 2.5rem;
	font-weight: bold;
	letter-spacing: -1px;
}

.sec1 .cont-sec2 {
	min-height: 0;
	padding-top: 7.625rem;
}

.sec1 .cont-sec2 p {
	color: var(--color-white);
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 2;
	letter-spacing: -1px;
}

.sec1 .cont-sec3 {
	position: relative;
}

.sec1 .cont-sec3 .inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sec1 .p2 .cont-sec3 .inner {
	padding-top: 14.125rem;
}

.sec1 .cont-sec3 .left {
	padding-left: 2.5rem;
}

.sec1 .cont-sec3 .left .box {
	width: 16rem;
}
.sec1 .cont-sec3 .left .box:after {
	display: block;
	padding-top: 100%;
	content:'';
}
.sec1 .cont-sec3 .left .box .text {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: var(--color-white);
	text-align: center;
	border-radius: 2rem;
	box-sizing: border-box;
	border: solid 4px var(--color-white);
}

.sec1 .cont-sec3 .left .box .text:hover {
	color: var(--black);
	background-color: var(--bg-color);
}
.sec1 .cont-sec3 .left .box .text:hover svg {
	animation-name: tongtong;
	animation-duration: 2s;
	animation-iteration-count: infinite;
}

@keyframes tongtong {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0);
	}
}



.sec1 .cont-sec3 .left .box+.box {
	margin-top: 3.5rem;
}

.sec1 .cont-sec3 .left .box2 {
	margin-left: 8rem;
}

.sec1 .cont-sec3 .left .box3 {
	margin-left: 16rem;
}

.sec1 .cont-sec3 .left .box p {
	margin-top: 1rem;
	font-size: 1.375rem;
	font-weight: bold;
	line-height: 1.45;
	letter-spacing: -1.1px;
}

.sec1 .cont-sec3 .right {
	position: absolute;
	right: 0;
	bottom: 0;
}

.sec1 .cont-sec3 .right .mark {
	position: absolute;
	text-align: center;
	cursor: pointer;
}

.sec1 .cont-sec3 .right .mark p {
	margin-top: 1rem;
	color: var(--color-white);
	font-size: 1.625rem;
	letter-spacing: -0.65px;
	background-color: #87b9e5;
}

.sec1 .cont-sec4 {
	margin-top: 14.125rem;
	padding-bottom: 28.25rem;
}

.sec1 .cont-sec4 .mb-hide ul {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	/* flex-wrap: wrap; */
	gap: min(2.5vw, 2.5rem);
	transition: all 0.3s;
}

.sec1 .cont-sec4 .mb-hide ul li {
	width: 100%;
	max-width: 16.25rem;
}

.sec1 .cont-sec4 .mb-hide ul li:nth-child(even) {
	margin-top: 5rem;
}

.sec1 .cont-sec4 ul li .text {
	overflow: hidden;
	position: relative;
	width: 100%;
	border-radius: 2rem;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.15);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% 100%;
	transition: all 0.3s;
}

.sec1 .cont-sec4 ul li .text:after {
	display: block;
	padding-top: 100%;
	content: '';
}

.sec1 .cont-sec4 ul li:nth-child(even) .text:after {
	padding-top: 138%;
}

.sec1 .cont-sec4 ul li .text-body {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 2.5rem 1.5rem;
	box-sizing: border-box;
}

.sec1 .cont-sec4 ul li span {
	font-size: 1.125rem;
	font-weight: bold;
	line-height: 1.67;
	color: rgb(221, 221, 221);
	transition: all 0.3s;
}

.sec1 .cont-sec4 ul li p {
	font-size: 1.325rem;
	font-weight: normal;
	line-height: 1.42;
	letter-spacing: -0.6px;
	color: var(--color-white);
	transition: all 0.3s;
}

.sec1 .cont-sec4 ul li small {
	font-size: 1.125rem;
	line-height: 1.78;
	letter-spacing: -0.45px;
	color: rgb(206, 206, 206);
	transition: all 0.3s;
}

.sec1 .cont-sec4 .mb-hide ul li:hover .text {
	transform: scale(1.2);
}

/* .sec1 .cont-sec4 ul li:hover .text {
	width: 21.25rem;
	transition: all 0.3s;
}

.sec1 .cont-sec4 ul li:hover span {
	font-size: 1.4375rem;
}

.sec1 .cont-sec4 ul li:hover p {
	font-size: 1.75rem;
}

.sec1 .cont-sec4 ul li:hover small {
	font-size: 1.4375rem;
} */

.sec1 .cont-sec4 .slide-control {
	display: none;
}
.sec1 .p1 .cont-sec3 .right .mark {
	top: 55%;
	left: 43%;
}
.sec1 .p1 .cont-sec4 ul li:nth-child(1) .text {
	background-image: url(../images/img_contsec04-01.png);
}

.sec1 .p1 .cont-sec4 ul li:nth-child(2) .text {
	background-image: url(../images/img_contsec04-02.png);
}

.sec1 .p1 .cont-sec4 ul li:nth-child(3) .text {
	background-image: url(../images/img_contsec04-03.png);
}

.sec1 .p1 .cont-sec4 ul li:nth-child(4) .text {
	background-image: url(../images/img_contsec04-04.png);
}

.sec1 .p1 .cont-sec4 ul li:nth-child(5) .text {
	background-image: url(../images/img_contsec04-05.png);
}

.sec1 .p2 .cont-sec3 .right .mark {
	top: 55%;
	left: 35%;
}

.sec1 .p2 .cont-sec3 .right .mark p {
	background-color: #64a4d6;
}

.sec1 .p2 .cont-sec4 ul li:nth-child(1) .text {
	background-image: url(../images/img_contsec04-06.png);
}

.sec1 .p2 .cont-sec4 ul li:nth-child(2) .text {
	background-image: url(../images/img_contsec04-07.png);
}

.sec1 .p2 .cont-sec4 ul li:nth-child(3) .text {
	background-image: url(../images/img_contsec04-08.png);
}

.sec1 .p2 .cont-sec4 ul li:nth-child(4) .text {
	background-image: url(../images/img_contsec04-09.png);
}


.sec2 {
	overflow: hidden;
	position: relative;
}
.sec2 .title {
	width: 46%;
}
.sec2 .img {
	margin-top: 7.875rem;
	margin-bottom: -7.5rem;
}

.sec2 .swiper-box {
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 50%;
	width: 50%;
	transform: translateY(-50%);
}

.sec2 .swiper,
.sec2 .swiper * {
	cursor: none;
}

.sec2 .swiper-wrapper {
	align-items: flex-end;
}

.sec2 .swiper-slide {
	display: flex;
	align-items: flex-end;
	height: 45.5rem;
}

.sec2 .swiper-slide>a {
	overflow: hidden;
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	color: var(--color-white);
	border-radius: 2rem;
	transition: all 0.8s;
}

.sec2 .swiper-slide>a .act {
	position: absolute;
	top: 0%;
	left: 0%;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-flow: column;
	width: 100%;
	height: 100%;
	padding: 3.825rem;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	opacity: 0;
	transition: opacity 0.4s;
	z-index: 2;
}

.sec2 .swiper-slide>a .off {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20.25rem;
	height: 25.9375rem;
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: cover;
	transition: opacity 0.4s;
	z-index: 1;
}

.sec2 .swiper-slide>a p {
	margin-top: 1.5rem;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	letter-spacing: -1.6px;
}

.sec2 .swiper-slide>a span {
	margin-top: 2.5rem;
	font-size: 1.25rem;
	line-height: 1.7;
	letter-spacing: -0.5px;
	/* white-space: nowrap; */
}

.sec2 .swiper-slide-active>a {
	width: 100%;
	height: 100%;
	text-align: left;
}

.sec2 .swiper-slide-active>a .act {
	top: 0;
	left: 0;
	box-sizing: border-box;
	opacity: 1;
}

.sec2 .swiper-slide-active>a .off {
	opacity: 0;
}

.sec2 .swiper-slide-active>a .action p {
	margin-top: 2.5rem;
}

.sec2 .swiper-slide-active>a span {
	display: block;

}

.sec3 {
	overflow: hidden;
	background-color: #f6f6f6;
}

.sec3 .title .tab-tit {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 2.25rem;
}

.sec3 .title .tab-tit h3 {
	margin-top: 0;
}

.sec3 .title .tab-tit ul {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.sec3 .title .tab-tit ul li a {
	display: block;
	padding: 1rem 1.25rem;
	color: var(--color-white);
	font-size: 1.125rem;
	font-weight: bold;
	border-radius: 2.5rem;
	background-color: var(--black);
	background-repeat: no-repeat;
	background-position: calc(100% - 1.25rem) 50%;
	transition: all 0.2s;
}

.sec3 .title .tab-tit ul li.on a,
.sec3 .title .tab-tit ul li:hover a {
	padding-right: 3.125rem;
	background-color: #235c1b;
	background-image: url(../images/ic_more.svg);
}

.sec3 .thumb-list {
	margin-top: 4rem;
}

.thumb-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(300px, auto));
	gap: 2.5rem;
}

.thumb-list .list {
	/* width: 100%; */
	border: 1px solid var(--border-gray);
	border-radius: 2rem;
	background-color: #fff;
	transition: all 0.2s;
}

.thumb-list .list * {
	transition: all 0.2s;
}

.thumb-list .list {
	display: flex;
	flex-flow: column;
	padding: 2.5rem 2rem;
	box-sizing: border-box;
}

.thumb-list .list:first-child {
	grid-column: 1 / span 2;
	grid-row: 1 / span 1;
}
.thumb-list .list:nth-child(2) {
	grid-column: 1 / span 2;
	grid-row: 2 / span 1;
}
.thumb-list .list:nth-child(3) {
	grid-column: 3 / span 1;
	grid-row: 1 / span 2;
}
.thumb-list .list:last-child {
	grid-column: 4 / span 1;
	grid-row: 1 / span 2;
}

.thumb-list .list > a {
	display: flex;
	flex-flow: column;
}

.thumb-list .list > a:last-child {
	height: 100%;
}

.thumb-list .list .label {
	display: block;
	margin-bottom: 1.5rem;
	font-size: 1rem;
	font-weight: bold;
}

.thumb-list .list .label.green {
	color: #235c1b;
}

.thumb-list .list .label.red {
	color: #b41924;
}

.thumb-list .list .label.orange {
	color: #ff9500;
}

.thumb-list .list .text p {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.563rem;
	color: var(--black);
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.67;
}
.thumb-list .list .text p b {
	overflow: hidden;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.thumb-list .list .text span {
	overflow: hidden;
	display: -webkit-box;
	color: #555;
	font-size: 1.125rem;
	font-weight: 300;
	line-height: 1.89;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.thumb-list .list .more {
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
	margin-left: auto;
	text-indent: -9999px;
	border-radius: 100%;
	border: solid 1px var(--border-gray);
	background-color: var(--color-white);
	background-repeat: no-repeat;
	background-position: center;
	background-image: url("data:image/svg+xml,%3Csvg id='ic_arrow_right' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %23121212; %7D %3C/style%3E%3C/defs%3E%3Cpath id='Path_384' data-name='Path 384' class='cls-1' d='M0,0H24V24H0Z'/%3E%3Cg id='Group_10' data-name='Group 10' transform='translate(24 -4) rotate(90)'%3E%3Cpath id='Path_385' data-name='Path 385' class='cls-2' d='M15.41,7.41,14,6,8,12l6,6,1.41-1.41L10.83,12Z' transform='translate(28 -4) rotate(90)'/%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' class='cls-2' width='14' height='2' transform='translate(17 6) rotate(90)'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.thumb-list .list:hover .more {
	background-color: #235c1b;
	background-image: url("data:image/svg+xml,%3Csvg id='ic_arrow_right' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %23ffffff; %7D %3C/style%3E%3C/defs%3E%3Cpath id='Path_384' data-name='Path 384' class='cls-1' d='M0,0H24V24H0Z'/%3E%3Cg id='Group_10' data-name='Group 10' transform='translate(24 -4) rotate(90)'%3E%3Cpath id='Path_385' data-name='Path 385' class='cls-2' d='M15.41,7.41,14,6,8,12l6,6,1.41-1.41L10.83,12Z' transform='translate(28 -4) rotate(90)'/%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' class='cls-2' width='14' height='2' transform='translate(17 6) rotate(90)'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.thumb-list .list .img {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin-bottom: 2.5rem;
	/* border: 1px solid var(--border-gray); */
	border-radius: 1rem;
	box-sizing: border-box;
}

.thumb-list .list .img:before {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0 1rem 0 0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 10;
}
.thumb-list .list .img.yt:before {
	background-color: #fc3832;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23FC3832; opacity: 1; %7D .cls-2 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cg id='play' transform='translate(-190.832 -636.598)'%3E%3Cpath id='Rectangle_163' data-name='Rectangle 163' class='cls-1' d='M0,0H24A16,16,0,0,1,40,16V40a0,0,0,0,1,0,0H16A16,16,0,0,1,0,24V0A0,0,0,0,1,0,0Z' transform='translate(190.832 636.598)'/%3E%3Cpath id='Triangle' class='cls-2' d='M205.537,656.731l10.1-5.234-10.1-5.27Z' transform='translate(1.29 5.116)'/%3E%3C/g%3E%3C/svg%3E%0A");
	content: '';
}

.thumb-list .list .img.vod:before {
	background-color: #a9de1e;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23A9DE1E; opacity: 1; %7D .cls-2 %7B fill: %23fff; %7D %3C/style%3E%3C/defs%3E%3Cg id='play' transform='translate(-190.832 -636.598)'%3E%3Cpath id='Rectangle_163' data-name='Rectangle 163' class='cls-1' d='M0,0H24A16,16,0,0,1,40,16V40a0,0,0,0,1,0,0H16A16,16,0,0,1,0,24V0A0,0,0,0,1,0,0Z' transform='translate(190.832 636.598)'/%3E%3Cpath id='Triangle' class='cls-2' d='M205.537,656.731l10.1-5.234-10.1-5.27Z' transform='translate(1.29 5.116)'/%3E%3C/g%3E%3C/svg%3E%0A");
	content: '';
}
.thumb-list .list .img:after {
	display: block;
	padding-top: 55%;
	content: '';
}

.thumb-list .list .img img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.thumb-list .list .img.bro img {
	object-fit: contain;
}

.thumb-list .list .img.blank {
	background-color: #eee;
}

.thumb-list .list .img.blank img {
	top: 50%;
	left: 50%;
	max-height: 25% !important;
	width: auto !important;
	transform: translate(-50%, -50%);
}

.thumb-list .list .foot {
	display: grid;
	margin-top: auto;
}

.thumb-list .list .foot p {
	grid-column: 1 / span 2;
	overflow: hidden;
	display: -webkit-box;
	margin-bottom: 1rem;
	font-size: 1.125rem;
	font-weight: bold;
	text-overflow: ellipsis;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.thumb-list .list .foot span {
	grid-row: 2 / span 1;
	grid-column: 1 / span 1;
	color: #aaa;
	font-size: 0.875rem;
	font-weight: bold;
}

.thumb-list .list .foot .more {
	grid-column: 4 / span 1;
	grid-row: 1 / span 2;
}

.thumb-list .list.txt-list .label {
	margin-bottom: 0;
}

.thumb-list .list .list-empty {
	margin-top: 3rem;
}
.thumb-list .list .list-empty span {
	padding-left: 2.375rem;
	color: #666;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.2;
	white-space: nowrap;
	background-image: url("/resource/images/ic_warning.svg");
	background-repeat: no-repeat;
	background-position: 0 50%;
	background-size: auto 100%;
}

.thumb-list .list.img-list .list-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin-top: 0;
}

.pointed {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 10rem;
	height: 10rem;
	cursor: none;
	pointer-events: none;
	background-image: url(../images/cursor.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transform: translate(-50%, -50%);
	/* transition: transform 0.3s, opacity 0.3s; */
	z-index: 100;
	opacity: 0;
}

.pointed.on {
	display: block;
	opacity: 1;
}

.pointed.act {
	transform: translate(-50%, -50%) scale(0.8);
}

@media screen and (max-width: 1660px) {
	.sec1 .panel {
		background-size: auto 100%;
	}
	.sec2 .inner {
		display: flex;
	}
	.sec2 .img {
		position: absolute;
		bottom: 0;
		left: 0;
		margin-bottom: 0;
	}
	.sec2 .swiper-box {
		position: static;
		width: 100%;
		margin-left: auto;
		margin-right: -2rem;
		margin-top: 5rem;
		transform: translateY(0);
	}
	.sec2 .swiper-box .swiper {
		width: 100%;
		margin-right: 0;
	}
}

@media screen and (max-width: 1460px) {
	.sec1 .p2 .cont-sec3 .inner {
		padding-top: 0;
	}
	.sec1 .cont-sec3 .left {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}
	.sec1 .cont-sec3 .left .box+.box {
		margin-top: 0;
	}
	.sec1 .cont-sec3 .left .box:nth-child(2) .text,
	.sec1 .cont-sec3 .left .box:nth-child(4) .text {
		margin-top: 3.125rem;
	}
	.sec1 .cont-sec3 .left .box2,
	.sec1 .cont-sec3 .left .box3 {
		margin-left: 0;
	}
	.sec1 .cont-sec3 .right {
		position: relative;
		/* width: 100%; */
		margin-top: 10rem;
		margin-left: auto;
		text-align: right;
	}
	.sec1 .cont-sec4 {
		margin-top: 0;
	}
	.sec1 .cont-sec4 ul li .text-body span {
		font-size: 1rem;
	}
	.sec1 .cont-sec4 ul li .text-body p {
		font-size: 1.25rem;
	}
	.sec1 .cont-sec4 ul li .text-body small {
		font-size: 1rem;
	}
	.sec2 .inner {
		display: block;
	}
	.sec2 .title {
		width: 100%;
	}
	.sec2 .swiper-box {
		margin-left: 0;
	}

	.thumb-list {
		display: flex;
		flex-wrap: wrap;
	}

	.thumb-list .list {
		width: calc(50% - 1.25rem);
	}
}

@media screen and (max-width: 1280px) {
	.visual-sec .txt-box {
		bottom: 6.625rem;
	}
	.visual-sec .arrow-box {
		left: 1rem;
		right: auto;
		bottom: 2.5rem;
	}
	.sec1 .cont-sec2 p {
		font-size: 2.125rem;
	}
	.sec1 .cont-sec4 .mb-hide ul {
		flex-wrap: wrap;
	}
	.sec1 .cont-sec4 .mb-hide ul li {
		width: 33.33%;
	}
	.sec1 .cont-sec4 .mb-hide ul li:hover .text {
		transform: scale(1.1);
	}
}

@media screen and (max-width: 1024px) {
	.sec1 .cont-sec2 p {
		font-size: 1.825rem;
	}
	.sec1 .p1 .cont-sec3 .right .mark {
		top: 54%;
		left: 42%;
	}
	.sec1 .p2 .cont-sec3 .right .mark {
		top: 53%;
		left: 33%;
	}
	.sec3 .title .tab-tit {
		flex-flow: column;
	}
	.sec3 .title .tab-tit ul {
		display: none;
		margin-top: 2.5rem;
	}

	.thumb-list {
		display: flex;
		flex-wrap: wrap;
	}
	.thumb-list .list {
		width: calc(50% - 1.25rem);
	}
	.thumb-list .list .text p b {
		display: -webkit-box;
		text-overflow: ellipsis;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
		white-space: normal;
	}

		
}

@media screen and (max-width: 800px) {

	.visual-sec .txt-box>h3 {
		font-size: 2.625rem;
	}

	.visual-sec .txt-box>p {
		font-size: 1.5rem;
	}

	.visual-sec .all-box {
		bottom: 0;
	}
	.visual-sec .arrow-box {
		left:0;
	}
	.sec {
		padding:5rem 0;
	}
	.sec .title span {
		font-size: 0.875rem;
	}
	.sec .title h3 {
		margin-top: 1rem;
		font-size: 2rem;
	}

	.sec1 .switch {
		height: 4.875rem;
	}
	.sec1 .switch button {
		justify-content: center;
		flex-flow: column;
		width: 3.6rem;
		padding:0.5rem;
		color: var(--color-white);
		font-size: 0.875rem;
		border-radius: 1rem 0 0 1rem;
		word-break: break-all;
		writing-mode:lr;
		background-color: #a9de1e;
	}
	.sec1 .switch button:after {
		display: none;
		width: 0.75rem;
		height: 0.75rem;
		margin-top: 0.5rem;
		background-color: transparent;
	}
	.sec1 [class*="cont-sec"] {
		min-height: 0;
		padding-top: 18.75rem;
		padding-bottom: 0;
	}
	.sec1 .cont-sec1 img {
		/* image-rendering: pixelated; */
		/* width: 17.625rem; */
	}
	.sec1 .cont-sec1 p {
		margin-top: 1rem;
		font-size: 1.25rem;
	}
	.sec1 .cont-sec2 p {
		padding: 0 1rem;
		font-size: 1.25rem;
		font-weight: 300;
		line-height: 2.5;
		letter-spacing: -0.5px;
	}
	.sec1 .cont-sec3 .left {
		padding-left: 0;
		width: 80%;
		margin:0 auto;
		gap: 1rem;
	}
	.sec1 .cont-sec3 .left .box {
		position: relative;
		width: 100%;
		height: auto;
		border-width: 3px;
	}
	.sec1 .cont-sec3 .left .box:after {
		display: block;
		padding-top: 100%;
		content:'';
	}
	.sec1 .cont-sec3 .left .box .text {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-flow: column;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.sec1 .cont-sec3 .left .box svg {
		width: 3.75rem;
		height: 3.75rem;
	}
	.sec1 .cont-sec3 .left .box p {
		font-size: 1rem;
	}
	.sec1 .cont-sec3 .right {
		margin-left: -1rem;
		margin-right: -1rem;
	}
	.sec1 .cont-sec3 .right .mark img {
		width: 2.25rem;
	}
	.sec1 .cont-sec3 .right .mark p {
		font-size: 1rem;
	}
	
	.sec1 .p1 .cont-sec3 .right .mark {
		top: 56%;
		left: 46%;
	}
	.sec1 .p2 .cont-sec3 .right .mark {
		top: 54%;
		left: 38%;
	}
	/* .sec1 .cont-sec4 ul {
		position: relative;
		justify-content: flex-start;
		flex-wrap: nowrap;
		gap: 0;
	}
	.sec1 .cont-sec4 ul li {
		margin-right: 3rem;
	}
	.sec1 .cont-sec4 ul li:nth-child(even) {
		margin-top: 0;
	}
	.sec1 .cont-sec4 ul li .text {
		width: 50vw;
	}
	.sec1 .cont-sec4 ul li span {
		font-size: 0.875rem;
	}
	.sec1 .cont-sec4 ul li p {
		font-size: 1.125rem;
	}
	.sec1 .cont-sec4 ul li:hover .text {
		width: 50vw;
	}
	.sec1 .cont-sec4 ul li:hover span {
		font-size: 0.875rem;
	}
	.sec1 .cont-sec4 ul li:hover p {
		font-size: 1.125rem;
	} */
	.sec1 .cont-sec4 .inner {
		padding-right: 0;
	}
	.sec1 .cont-sec4 .slide-control {
		display: none;
		/* display: inline-flex; */
		gap: 2.5rem;
		position: relative;
		margin-top: 1.5rem;
	}
	.sec1 .cont-sec4 .slide-control:after {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 1px;
		height: 1rem;
		background-color:rgba(255,255,255,0.8);
		transform: translate(-50%, -50%);
		content:'';
	}
	.sec1 .cont-sec4 .slide-control .prev,
	.sec1 .cont-sec4 .slide-control .next {
		width: 1.5rem;
		height: 1.5rem;
		text-indent: -99999px;
		background-repeat: no-repeat;
		background-position: center;
		background-image: url("data:image/svg+xml,%3Csvg id='ic_arrow_right' xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %23ffffff; %7D %3C/style%3E%3C/defs%3E%3Cpath id='Path_384' data-name='Path 384' class='cls-1' d='M0,0H24V24H0Z'/%3E%3Cg id='Group_10' data-name='Group 10' transform='translate(24 -4) rotate(90)'%3E%3Cpath id='Path_385' data-name='Path 385' class='cls-2' d='M15.41,7.41,14,6,8,12l6,6,1.41-1.41L10.83,12Z' transform='translate(28 -4) rotate(90)'/%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' class='cls-2' width='14' height='2' transform='translate(17 6) rotate(90)'/%3E%3C/g%3E%3C/svg%3E%0A");
	}
	.sec1 .cont-sec4 .slide-control .prev {
		transform: rotate(-180deg);
	}
	.sec1 .cont-sec4 ul li .text-body p {
		font-size: 1.125rem;
	}
	.sec2 .swiper-box {
		width:calc(100% + 1rem);
		margin-top: 2rem;
	}
	.sec2 .swiper-slide {
		height: 27.5rem;
	}
	.sec2 .swiper-slide>a {
		
	}
	.sec2 .swiper-slide>a img {
		width: 3.625rem;
	}
	.sec2 .swiper-slide>a p {
		margin-top: 1.25rem;
		font-size: 1.5rem;
	}
	.sec2 .swiper-slide>a span {
		margin-top: 1.25rem;
		font-size: 1rem;
		word-break: keep-all;
		white-space: normal;
	}
	.sec2 .swiper-slide>a .off {
		height: 13.75rem;
	}
	.sec2 .swiper-slide-active>a {
		height: 27.5rem;
	}
	.sec2 .swiper-slide-active>a .act {
		padding:2rem;
	}

	.sec3 .title .tab-tit ul li a {
		font-size: 1rem;
	}
	.sec3 .thumb-list {
		margin-top: 2.5rem;
	}

	.thumb-list {
		gap:1.25rem;
	}
	.thumb-list .list {
		width: 100%;
	}
	.thumb-list .list .more {
		display: none;
		width: 3rem;
		height: 3rem;
	}
	.thumb-list .list > a:last-child {
		height: auto;
	}
	.thumb-list .list .label {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 1rem;
		font-size: 1rem;
	}
	.thumb-list .list .label:after {
		width: 1rem;
		height: 1rem;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %23121212; %7D %3C/style%3E%3C/defs%3E%3Cg id='ic_more' transform='translate(-4 -4)'%3E%3Cpath id='Path_384' data-name='Path 384' class='cls-1' d='M0,0H16V16H0Z' transform='translate(4 4)'/%3E%3Cg id='Group_10' data-name='Group 10' transform='translate(25 -4) rotate(90)'%3E%3Crect id='Rectangle_28' data-name='Rectangle 28' class='cls-2' width='14' height='2' transform='translate(17 6) rotate(90)'/%3E%3Crect id='Rectangle_164' data-name='Rectangle 164' class='cls-2' width='14' height='2' transform='translate(23 14) rotate(-180)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
		background-repeat: no-repeat;
		background-size: 100% auto;
		content:'';
	}
	.thumb-list .list .img {
		margin-bottom: 1.25rem;
	}
	.thumb-list .list .text {
		margin-bottom: 1.25rem;
	}
	.thumb-list .list .text p {
		font-size: 1.25rem;
	}
	.thumb-list .list .text span {
		display: none;
	}
	.thumb-list .list .foot {
		margin-top: 0;
	}
	.thumb-list .list .foot p {
		margin-bottom: 0.25rem;
	}
	.thumb-list .list .foot span {
		font-size: 0.875rem;
	}

	.thumb-list .list.txt-list .label {
		margin-bottom: 1.825rem;
	}

	.thumb-list .list .list-empty {
		margin-top: 1.175rem;
		
	}
	.thumb-list .list .list-empty span {
		font-size: 1.25rem;
	}
	.thumb-list .list.img-list .list-empty {
		justify-content: flex-start;
		height: auto;
		margin-top: 1.175rem;
	}
}
@media screen and (max-width: 680px) {
	.sec1 .p1 .cont-sec3 .right .mark {
		top: 55%;
		left: 43%;
	}
	.sec1 .p2 .cont-sec3 .right .mark {
		top: 53%;
		left: 35%;
	}
	.sec1 .cont-sec4 {
		margin-top: 7.5rem;
	}
}
@media screen and (max-width: 480px) {
	.sec1 [class*="cont-sec"] {
		padding-top: 12.5rem;
	}
	.sec1 .cont-sec3 .left {
		width: 100%;
	}
	.sec1 .cont-sec3 .right {
		overflow: hidden;
		text-align: left;
	}
	.sec1 .p1 .cont-sec3 .right > img {
		max-width: 10000px;
		height: 45.062rem;
	}
	.sec1 .p1 .cont-sec3 .right .mark {
		top: 54%;
		left: 62%;
	}
	.sec1 .p2 .cont-sec3 .right > img {
		max-width: 10000px;
		height: 47.15rem;
	}
	.sec1 .p2 .cont-sec3 .right .mark {
		top: 53%;
		left: 47%;
	}
	.sec1 .cont-sec4 {
		margin-top: 0;
	}
	.sec3 .title .tab-tit ul {
		width: 100%;
	}
	.sec3 .title .tab-tit ul li {
		width: 100%;
	}
	.sec3 .title .tab-tit ul li a {
		text-align: center;
	}
	
}



/* 
	popup
*/
#mainPopup {
	display: flex;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 10000;
}

#mainPopup .mainPopupWrap {
	max-width: 1360px;
	width: 100%;
	margin:0 auto;
}
#mainPopup .popH {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin-bottom: 3.125rem;
}
#mainPopup .popTit {
	color: var(--color-white);
	font-size: 3rem;
	font-weight: bold;
	letter-spacing: .025em;
	line-height: 1.35;
}
#mainPopup .paging {
	width: 5.625rem;
	height: 3.375rem;
	line-height: 3.375rem;
	font-size: 1.125rem;
	font-weight: 400;
	color: #aaaaaa;
	background-color: var(--bg-color);
	text-align: center;
	border-radius: 1.6875rem;
	letter-spacing: 0;
	margin-left: 1.25rem;
}
#mainPopup .paging .now {
	color: #a9de1e;
}
#mainPopup .close {
	position: absolute;
	right: 0;
	top: 50%;
	width: 1.625rem;
	height: 1.625rem;
	text-indent: -9999px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath data-name='Rectangle 193' style='fill:none' d='M0 0h16v16H0z'/%3E%3Cg data-name='Group 46'%3E%3Cpath data-name='Rectangle 6' transform='rotate(45 .63 3.194)' style='fill:%23ffffff' d='M0 0h18.777v1.878H0z'/%3E%3Cpath data-name='Rectangle 57' transform='rotate(135 7.483 4.165)' style='fill:%23ffffff' d='M0 0h18.777v1.878H0z'/%3E%3C/g%3E%3C/svg%3E%0A");
	background-size: 100%;
	transform: translateY(-50%);
}
#mainPopup .popM {
	padding-left: 6.875rem;
	padding-right: 6.875rem;
}
#mainPopup .popM li.slick-slide {
	overflow: hidden;
	padding: 0 1rem;
}
#mainPopup .popM li.slick-slide > div {
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	background-color: #fff;
}
/* #mainPopup .popM li.slick-slide > div:after {
	display: block;
	padding-top: 130%;
	content:'';
} */
#mainPopup .popM li.slick-slide a {
	display: block;
	/* position: absolute;
	top: 0;
	left: 0; */
	width: 100%;
	height: 100%;
	padding: 2.5rem 1.25rem;
	padding-top: 11.625rem;
	text-align: center;
	word-break: break-all;
	box-sizing: border-box;
}
#mainPopup .popM li.slick-slide a .s_tit {
	display: flex;
	align-items: center;
	height: 4.313rem;
}
#mainPopup .popM li.slick-slide a .s_tit span {
	width: 100%;
	font-size: 1.625rem;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
#mainPopup .popM li.slick-slide a .txt {
	margin-top: 0.5rem;
	min-height: 9.5625rem;
}
#mainPopup .popM li.slick-slide a .txt span {
	display: -webkit-box;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.6;
	overflow: hidden;
	text-overflow: ellipsis;
	-webkit-line-clamp: 6;
	-webkit-box-orient: vertical;
}
#mainPopup .popM .btnArrow {
	position: absolute;
	top: 50%;
	width: 2rem;
	height: 2rem;
	background-image: url(https://www.century21cc.co.kr/views/res/imgs/common/icon-arrow-right-fff.svg);
	background-size: 100%;
	transform-origin: center;
}
#mainPopup .popM .btnArrow.left {
	-moz-transform: translateY(-50%) rotate(180deg);
	-webkit-transform: translateY(-50%) rotate(180deg);
	-ms-transform: translateY(-50%) rotate(180deg);
	-o-transform: translateY(-50%) rotate(180deg);
	transform: translateY(-50%) rotate(180deg);
	left: -2.8125rem;
}

#mainPopup .popM .btnArrow.right {
	-moz-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	right: -2.8125rem;
}
#mainPopup .popB {
	text-align: center;
}
#mainPopup .popB button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}
#mainPopup .popB input {
	display: none;
}
#mainPopup .popB label {
	color: var(--color-white);
	font-size: 1rem;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-use-select: none;
	user-select: none;
	cursor: pointer;
}
#mainPopup .popB button:hover label {
	text-decoration: underline;
	text-underline-position: under;
}
#mainPopup .popB .inputCheck {
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 4px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' id='check_big' x='0px' y='0px' viewBox='0 0 27 27' enable-background='new 0 0 27 27' fill='%23ffffff' xml:space='preserve'%3E%3Cpath id='icon_copy_2' d='M19.95,10.27l-8.271,8.28l-0.192-0.2l-0.044,0.05l-5.514-5.52l1.838-1.84l3.868,3.871l6.476-6.48 L19.95,10.27z'/%3E%3C/svg%3E%0A");
	background-size: 100% auto;
	background-color: #a9de1e;
}
/* @media all and (max-width: 1420px) {
	#mainPopup .popM li.slick-slide a {
		padding: 2.5vw 1.25rem;
	}
	#mainPopup .popM li.slick-slide a .txt {
		padding: 2.75vw 1.25rem;
	}
} */
@media all and (max-width: 1280px) {
	#mainPopup .popH {
		padding-top: 5.31636rem;
	}
	#mainPopup .popTit {
		font-size: 2.25rem;
	}
	#mainPopup .close {
		top: 0;
		right: 50%;
		width: 4rem;
		height: 4rem;
		border-radius: 50%;
		background-color: #222;
		background-size: 1.5rem;
		background-repeat: no-repeat;
		background-position: center;
		transform: translate(50%, 0%);
	}
	#mainPopup .popM li.slick-slide a {
		
	}
	#mainPopup .popM .btnArrow.left {
		left: -4.37818rem;
	}
	#mainPopup .popM .btnArrow.right {
		right: -4.37818rem;
	}
}
@media all and (max-width: 800px) {
	#mainPopup .popH {
		padding-top: 3.5rem;
		margin-bottom: 1rem;
	}
	#mainPopup .popTit {
		font-size: 1.825rem;
	}
	#mainPopup .paging {
		width: 4.625rem;
		height: 2.375rem;
		line-height: 2.375rem;
	}
	#mainPopup .close {
		width: 3rem;
		height: 3rem;
		background-size: 1rem;
	}
	#mainPopup .popM {
		max-width: 31rem;
		margin: 0 auto;
		padding-left: 2.875rem;
		padding-right: 2.875rem;
	}
	#mainPopup .popM .btnArrow.left {
		left: -2.325rem;
	}
	#mainPopup .popM .btnArrow.right {
		right: -2.325rem;
	}
}
@media screen and (max-width:480px) {
	#mainPopup .popM li.slick-slide {
		padding:0;
	}
	
	#mainPopup .popM li.slick-slide a {
		padding: 2rem;
		padding-top: 9rem;
	}

	#mainPopup .popM li.slick-slide a .s_tit span {
		font-size: 1.25rem;
	}

	#mainPopup .popM li.slick-slide a .p_tit {
		margin-top: 1rem;
		font-size: 1.5rem;
	}

	#mainPopup .popM li.slick-slide a .txt {
		min-height: 7.25rem;
		margin-top: 0;
		font-size: 1rem;
	}
	#mainPopup .popM li.slick-slide a .txt span {
		line-height: 1.8;
		-webkit-line-clamp: 4;
	}
	#mainPopup .popB button {
		margin-top: 1rem;
	}
}
#mainPopup .no_data {
	font-size: 1.25rem;
	text-align: center;
	padding: 2.25rem 0 2.25rem;
	color: #f5f5f5;
}


/* 
영문 레이아웃 
*/
.en .sec .title h3 {
	font-size: 3.125rem;
}
.en .sec3 .title .tab-tit ul {
	flex-shrink: 0;
}
@media screen and (max-width:1024px) {
	.en .sec .title h3 {
		font-size: 2.625rem;
	}
}

@media screen and (max-width:800px) {
	.en .sec .title h3 {
		font-size: 2rem;
	}
}