body {
	width: 100%;
	font-family: 'Noto Sans KR', sans-serif;
}

#wrap {
	width: 100%;
}


/*  영상들어가는 메인  */

/* 5. 배경 파티클 효과 */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
}

 /* 주황색 파티클 - 더 진하고 크게 */
        .particle-orange {
            background: radial-gradient(
                circle, 
                rgba(255, 107, 53, 0.9) 0%, 
                rgba(255, 107, 53, 0.6) 30%, 
                rgba(255, 140, 66, 0.4) 60%, 
                rgba(255, 170, 85, 0.1) 100%
            );
            box-shadow: 
                0 0 15px rgba(255, 107, 53, 0.8),
                0 0 30px rgba(255, 107, 53, 0.4),
                0 0 45px rgba(255, 107, 53, 0.2),
                inset 0 0 10px rgba(255, 180, 120, 0.3);
            animation: float-orange 10s ease-in-out infinite;
            opacity: 0.9;
        }

        /* 황금색 파티클 - 더 밝고 화려하게 */
        .particle-gold {
            background: radial-gradient(
                circle, 
                rgba(255, 215, 0, 0.95) 0%, 
                rgba(255, 193, 7, 0.7) 30%, 
                rgba(255, 235, 59, 0.5) 60%, 
                rgba(255, 245, 157, 0.1) 100%
            );
            box-shadow: 
                0 0 12px rgba(255, 215, 0, 0.9),
                0 0 25px rgba(255, 215, 0, 0.5),
                0 0 40px rgba(255, 215, 0, 0.3),
                inset 0 0 8px rgba(255, 235, 59, 0.4);
            animation: float-gold 12s ease-in-out infinite;
            opacity: 0.8;
        }

        /* 흰색 파티클 - 더 밝고 선명하게 */
        .particle-white {
            background: radial-gradient(
                circle, 
                rgba(255, 255, 255, 0.95) 0%, 
                rgba(245, 245, 245, 0.7) 30%, 
                rgba(220, 220, 220, 0.4) 60%, 
                rgba(200, 200, 200, 0.1) 100%
            );
            box-shadow: 
                0 0 10px rgba(255, 255, 255, 0.8),
                0 0 20px rgba(255, 255, 255, 0.4),
                0 0 35px rgba(255, 255, 255, 0.2),
                inset 0 0 6px rgba(255, 255, 255, 0.3);
            animation: float-white 14s ease-in-out infinite;
            opacity: 0.8;
        }


/* 주황색 파티클 개별 위치 설정 */
.particle-orange:nth-of-type(1) {
    width: 12px;
    height: 12px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.particle-orange:nth-of-type(2) {
    width: 16px;
    height: 16px;
    top: 25%;
    right: 15%; /* left 대신 right 사용 */
    animation-delay: 2s;
}

.particle-orange:nth-of-type(3) {
    width: 10px;
    height: 10px;
    bottom: 30%; /* top 대신 bottom 사용 */
    left: 12%;
    animation-delay: 4s;
}

.particle-orange:nth-of-type(4) {
    width: 14px;
    height: 14px;
    top: 45%;
    right: 10%; /* left 대신 right 사용 */
    animation-delay: 1s;
}

.particle-orange:nth-of-type(5) {
    width: 11px;
    height: 11px;
    bottom: 20%; /* top 대신 bottom 사용 */
    right: 25%; /* left 대신 right 사용 */
    animation-delay: 3s;
}

.particle-orange:nth-of-type(6) {
    width: 13px;
    height: 13px;
    top: 35%;
    left: 5%;
    animation-delay: 5s;
}

/* 흰색 파티클 개별 위치 설정 */
.particle-white:nth-of-type(7) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 25%;
    animation-delay: 1s;
}

.particle-white:nth-of-type(8) {
    width: 12px;
    height: 12px;
    top: 55%;
    right: 30%; /* left 대신 right 사용 */
    animation-delay: 3s;
}

.particle-white:nth-of-type(9) {
    width: 7px;
    height: 7px;
    bottom: 25%; /* top 대신 bottom 사용 */
    left: 30%;
    animation-delay: 0s;
}

.particle-white:nth-of-type(10) {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 50%;
    animation-delay: 4s;
}

.particle-white:nth-of-type(11) {
    width: 11px;
    height: 11px;
    top: 20%;
    right: 60%; /* left 대신 right 사용 */
    animation-delay: 2s;
}

.particle-white:nth-of-type(12) {
    width: 9px;
    height: 9px;
    bottom: 15%; /* top 대신 bottom 사용 */
    left: 55%;
    animation-delay: 6s;
}
.particle-white:nth-of-type(12) {
    width: 9px;
    height: 9px;
    top: 21%; /* top 대신 bottom 사용 */
    left: 65%;
    animation-delay: 6s;
}
.particle-white:nth-of-type(12) {
    width: 9px;
    height: 9px;
    top: 15%; /* top 대신 bottom 사용 */
    left: 85%;
    animation-delay: 6s;
}

/* 애니메이션 */
@keyframes float-orange {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-15px) translateX(5px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) translateX(-5px) rotate(180deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-15px) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
}

@keyframes float-white {
	0%, 100% {
		transform: translateY(0px) translateX(0px) scale(1);
		opacity: 0.6;
	}
	40% {
		transform: translateY(-20px) translateX(-6px) scale(1.2);
		opacity: 0.9;
	}
	80% {
		transform: translateY(-35px) translateX(10px) scale(0.8);
		opacity: 0.7;
	}
}



/* 반응형 - 모바일에서 파티클 줄이기 */
@media (max-width: 768px) {
    /* 모바일에서는 파티클 절반만 표시 */
    .particle-orange:nth-of-type(n+4),
    .particle-white:nth-of-type(n+10) {
        display: none;
    }
    
    /* 남은 파티클들 크기 조정 */
    .particle-orange,
    .particle-white {
        transform: scale(0.8);
    }
}

@media (max-width: 480px) {
    /* 작은 모바일에서는 더 줄이기 */
    .particle-orange:nth-of-type(n+3),
    .particle-white:nth-of-type(n+9) {
        display: none;
    }
}
/* 추가 글로우 효과 */
.particle-orange:hover {
    box-shadow: 0 0 20px rgba(255, 107, 53, 1);
    transform: scale(1.5);
}

.particle-white:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    transform: scale(1.3);
}

.main-sec {
	width: 100%;
}
.main-sec > img {
	width: 100%;
}

.main-top {
	width: 100%;
	padding-top:80px;
	min-height: 100vh;
	position: relative;
	overflow: hidden; 
	
}

.main-top::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: url(../img/main/main2.png) center center / cover;
    /* animation: kenBurns 25s ease-in-out infinite alternate; */
    z-index: 1;
	overflow: hidden;
}

.ken-burns {
	background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)),url(../img/main/main2.png) no-repeat 0 0 /cover;
	/* animation: kenBurns 20s ease-in-out infinite alternate; */
}


@keyframes kenBurns {
    0% {
        transform: scale(1) translateY(-2%);
    }
    100% {
        transform: scale(1.1) translateY(2%);
    }
}

/* 컨텐츠는 z-index: 10으로 위에 배치 */
.intro {
    position: relative;
    z-index: 10;
}



.main-top > .intro {
	display: flex;
	flex-direction: column;
	align-self: flex-start;
	height: fit-content;
	color: white;
	font-weight: 700;
	letter-spacing: 1px;
	height: 80vh;
	margin-top: 60px;
	/* 등장 애니메이션 */
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 1s ease-out 0.5s forwards;
	font-weight: 500;
	width: 100%;
}

.main-text {
	display: flex;
	flex-direction: column;
	gap:14px;
	align-items: center;
	font-size: 88px;
	line-height: 1;
	overflow: hidden;
	letter-spacing: 1px;
	justify-content: center;
	flex: 1;
}

.main-text span:nth-child(2) {
	margin-top:20px;
}



.highlight-effect::after {
    content: "분양 광고";
    background-color: #ff5a00;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 5px; 
	white-space: nowrap;
}


.number-effect {
	font-size: 44px;
}

#counter {
	font-size: 74px;
	font-weight: 800;
	color: #ff5a00;
	position: relative;
    display: inline-block;
	animation: glow-pulse 1s ease-in-out infinite alternate;
  }

  #counter::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(
        90deg,
        #ff713d, #ff6b35, #ff8c42, #ffaa44,
        #ff7f00, #ff5722, #e53935, #d32f2f,
        #ff4500, #ff6b35, #ff8c42, #ffaa44,
        #ff7f00, #ff5722, #e53935, #d32f2f,
        #ff4500
    );
    background-size: 300% 100%;
    border-radius: 3px;
    box-shadow: 
        0 0 10px rgba(255, 69, 0, 0.6),
        0 0 20px rgba(255, 69, 0, 0.4),
        0 0 30px rgba(255, 69, 0, 0.2);
    animation: orange-red-flow 6s linear infinite;
}

@keyframes orange-red-flow {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

.sub-text {
	width: 100%;
	text-align: center;
}

.enhanced-text {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    font-size: 24px;
    line-height: 1.8;
    color: #ffffff;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    /* 등장 애니메이션 */
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 4s ease-out 0.5s forwards;
	font-weight: 500;
	width: 100%;
}

/* 상단 그라데이션 라인 (고정) */
.enhanced-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    opacity: 1;
    animation: none; /* 애니메이션 없음 */
}

/* 강조 단어 스타일 */
.highlight {
    color: #ff6b35;
    font-weight: 600;
    /* text-shadow: 0 0 10px rgba(255, 107, 53, 0.8); */
    
    position: relative;
}

/* 글로우 펄스 애니메이션 */
@keyframes glow-pulse {
    from {
		text-shadow: 0 0 20px rgb(255, 255, 255);
        color: #ffffff;
    }
    to {
        text-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
        color: #da5221;
    }

}

/* 등장 애니메이션 */
@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1380px) {

}

@media (max-width: 1020px) {
	.main-text{
		font-size: 64px;
		letter-spacing:normal;
		font-weight: 700;
	}
	.number-effect{
		font-size: 44px;
	}
	#counter{
		font-size: 54px;
		font-weight: 600;
	}


}



@media (max-width: 780px) {
	.main-text{
		font-size: 54px;
		letter-spacing:normal;
		font-weight: 700;
	}
	.number-effect{
		font-size: 34px;
	}
	#counter{
		font-size: 44px;
		font-weight: 600;
	}

    .enhanced-text {
        padding: 20px;
        font-size: 14px;
        margin: 15px 0;
    }

}
@media(max-width: 520px) {
	.main-text{
		font-size: 34px;
		letter-spacing:normal;
		font-weight: 700;
	}
	.number-effect{
		font-size: 24px;
	}
    #counter{
		font-size: 34px;
		font-weight: 600;
	}
    .enhanced-text {
        padding: 20px;
        font-size: 14px;
        margin: 14px 0;
    }
}


.desc-logo {
	font-size: 40px;
}


.main-vi > .m-ar {
	display: inline-block;
	width: 41.6px;
	height: 105.6px;
	background: url(../img/main/m_arrow.png) no-repeat 0 0 / contain;
	position: absolute;
	top: 42%;
	right: 6%;
	text-indent: -9999px;
	animation: m-ar 0.4s linear infinite alternate;
}





.ka-rap,
.ka-rap1 {
	width: 70%;
    text-align: center;
    margin: 0 auto;
    padding: 5% 0;
    background-color: #f9e000;
}


.ka-rap {
	margin: 10% auto 0;
}

.ka-rap img {
    width: 50%;
    margin: 0 auto;
}

.ka-rap1 img {
    width: 80%;
}

@-webkit-keyframes m-ar {
	from{
		top: 42%;
	}
	to{
		top: 46%;
	}
}

@media(max-width: 1220px) {
	.ka-rap img {
		width: 70%;
	}
}

@media(max-width: 820px) {
	.ka-rap img {
		width: 100%;
	}
}



@media (max-width: 1380px) {

	.main-vi > .m-ar {
		width: 33.3px;
		height: 84.5px;
	}
}

@media (max-width: 1020px) {

	.main-vi > .m-ar {
		width: 26.6px;
		height: 67.6px;
	}
}

@media (max-width: 780px) {

	.main-vi > .m-ar {
		width: 21.28px;
		height: 54px;
	}
}

@media (max-width: 780px) {

	.main-vi > .m-ar {
		width: 21.28px;
		height: 54px;
	}
}
@media(max-width: 520px) {
	.main-vi > .pc {
		display: none;
	}
	.main-vi > video.mo {
		display: block;
	}
	.main-vi > .m-ar {
		display: none;
	}
}

/*  sec1 회사소개 부분 */

        /* SKPR 로고 컨테이너 */
		.skpr-logo-container {
			position: relative;
			display: inline-block;
			margin: 0 0;
			cursor: pointer;
			transform: translateX(50px);
			opacity: 0;
			animation: slide-left 1s ease-out 0.5s forwards;
			margin-top: 10px;
		}
		
		@keyframes slide-left {
			0% {
				transform: translateX(50px);
				opacity: 0;
			}
			100% {
				transform: translateX(0);
				opacity: 1;
			}
		}
        /* SKPR 로고 CSS */
        .skpr-logo {
            font-size: 10rem;
            font-weight: 900;
            letter-spacing: 3px;
            font-family: 'Arial Black', Arial, sans-serif;
            display: inline-block;
            position: relative;
            z-index: 2;
			width: 100%;
			margin:24px auto;
        }

		.skpr-logo .txt2{
			color:#444444;
			font-size: 44px;
		}

        /* S,K 글자 - 흐르는 그라데이션 애니메이션 */
        .s-letter,
        .k-letter {
            background: linear-gradient(
                45deg,
				#FFAF00,
				#FF9A00,
				#FF8500,
				#FF7000,
				#FF5A00,
				#FF4B00,
				#FF3C00,
				#FF2D00
            );
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            animation: gradient-flow 1s ease-in-out infinite;
            display: inline-block;
        }

        /* PR 글자 - 검정색 고정 */
        .pr-letters {
            color: #ffffff;
            display: inline-block;
        }

        /* 흐르는 그라데이션 애니메이션 */
        @keyframes gradient-flow {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }

		@keyframes slide-left {
			0% {
				transform: translateX(-50px);
				opacity: 0;
			}
			100% {
				transform: translateX(0);
				opacity: 1;
			}
		}


        /* 어두운 배경 */
        .dark-bg {
            background: #2a2a2a;
            color: white;
        }

        .dark-bg .pr-letters {
            color: #ffffff;
        }

        /* 반응형 */
        @media (max-width: 768px) {
            .skpr-logo {
                font-size: 4rem;
                letter-spacing: 2px;
            }
            
            .double-curved-arrow svg {
                width: 180px;
                height: 36px;
            }
        }

        @media (max-width: 480px) {
            .skpr-logo {
                font-size: 3rem;
                letter-spacing: 1px;
            }
            
            .double-curved-arrow svg {
                width: 150px;
                height: 30px;
            }
        }

.sec1-comin {
	width: 100%;
	margin:0 auto;
	overflow: hidden;
	background-color: #0C0D10;
	margin-top: -30px;
}
.sec1-in {
	width: 80%;
	margin: 0 auto;
	min-height: 300vh;
	padding: 4% 0 0 0;
	position: relative;
	overflow: visible;
	z-index: 0;
	margin-bottom: 0px;
}

@media(max-width: 1740px) {
	.sec1-in {
		padding-bottom: 5%;
	}
}

@media(max-width: 1530px) {
	.sec1-in {
		padding-bottom: 110%;
	}
}

@media(max-width: 1000px) {
	.sec1-in {
		padding-bottom: 170%;
	}
}


@media (max-width: 920px) {
	.sec1-in {
		padding-bottom: 165%;
		background-size: 156%;
	}
}

@media (max-width: 690px) {
	.sec1-in {
		padding-bottom: 165%;
		background-size: 164%;
	}

}

@media (max-width: 560px) {
	.sec1-in {
		padding-bottom: 205%;
	}

}
@media (max-width: 510px) {
	.sec1-in {
		background-size: 216%;
		padding-bottom: 180%;
	}
}


.section1-header .text-box {	
padding:20px;
}

.sec1-in .text-box > .sec-tit {
	font-size: 81px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #565454;
	top: 0;
	left: 0;
	z-index: 15;
	display: block;
}



.sec1-in .text-box > div > span {
	font-weight: 700;
	display: block;
	font-size: 35px;
	margin-top: 12px;
	margin-bottom: 10px;
 
}


.sec1-in .text-box > div > .com-text {
	font-weight: 800;
	font-size: 28px;
	line-height: 1.65;
	color:white;
	transform: translateX(50px);
    opacity: 0;
    animation: slide-left 1s ease-out 0.5s forwards;
}

.com-text span:nth-child(1) {
	color: #ff5a00
}

.sec1-text2 { 
	display: flex;
	align-items: center;
	color:white;
	justify-content: center;

}


.sec1-text2 .target {         
    border-radius: 50%;        
    display: flex;             
    align-items: center;       
    justify-content: center;   
	width: 400px;
	height: 400px;

}


.sec1-text2 img{
	position: absolute;
	width: 500px;
	height: 500px;
}

.sec1-text2 .target::before {
    content: '';
    position: relative;
	top: -8px;    
    left: -3px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    box-shadow: 0 0 18px #FF5A00, 0 0 34px #ff3300;
    animation: glow 1s ease-in-out infinite alternate;
    z-index: -1;
	width: 300px;
	height: 300px;
	background: conic-gradient(
    from 0deg,
    white,
    #FF5A00,
    rgb(255, 115, 50),
    #FF7A00,
    #FFB347,
    white
);
}

.sec1-sub {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 80px;
}

.sec1-sub span:nth-child(1){
    color: #fcfcfc;
    line-height: 1.8;
	font-size: 28px;
	margin-bottom: 40px;
}

/* 3. 애니메이션 형광펜 */
.highlight-animated {
    background: linear-gradient(90deg, transparent 0%, #ffeb3b 50%, transparent 100%);
    background-size: 200% 100%;
    animation: highlight-sweep 2s ease-in-out;
	color: #fcfcfc !important; 
}

.sec1-sub-text {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
}

.sec1-sub-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #ffa600, #ff5100);
    border-radius: 4px 0 0 4px;
}

.sec1-sub-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sec1-sub-text li {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    opacity: 0.7; /* 기본 상태는 약간 투명 */
}

.sec1-sub-text li:last-child {
    border-bottom: none;
}

.service-image {
    width: 60px;
    height: 60px;
    margin-right: 25px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #e9ecef;
    transition: all 0.5s ease;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.service-content {
    flex: 1;
}

.service-title {
    font-weight: 700;
    font-size: 18px;
    color: #ff5a00;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.service-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    transition: all 0.3s ease;
}

/* 활성화된 상태 */
.sec1-sub-text li.active {
    background: #f8fafc;
    transform: translateX(5px);
    padding-left: 10px;
    margin: 0 -10px;
    border-radius: 6px;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.sec1-sub-text li.active .service-image {
    border-color: #ff5a00;
    transform: scale(1.05);
}

.sec1-sub-text li.active .service-title {
    color: #ff5a00;
}
.sec1-sub-text li.active .service-description{
    color: #ff5a00;
}

/* 호버 시에도 동일한 효과 */
.sec1-sub-text li:hover {
    background: #f8fafc;
    transform: translateX(5px);
    padding-left: 10px;
    margin: 0 -10px;
    border-radius: 6px;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.sec1-sub-text li:hover .service-image {
    border-color: #ff5a00;
    transform: scale(1.05);
}

.sec1-sub-text li:hover .service-title {
    color: #ff5a00;
}

.sec1-btn {
	margin-top: 40px;
	text-align: center;
}

.sec1-btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 300px;
	padding: 20px 40px;
	background: linear-gradient(135deg, #f35912, #ff6b35);
	color: white !important;
	border: none;
	border-radius: 12px;
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
	transition: all 0.3s ease;
	gap: 15px;
	position: relative;
	overflow: hidden;
}

.sec1-btn a::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.sec1-btn a:hover::before {
	left: 100%;
}

.phone-svg {
	width: 22px;
	height: 22px;
	fill: white;
	transition: transform 0.3s ease;
}

.sec1-btn a:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(243, 89, 18, 0.3);
}

.sec1-btn a:hover .phone-svg {
	transform: scale(1.1) rotate(10deg);
}

/* 반응형 */
@media (max-width: 768px) {
	.sec1-btn a {
		min-width: 250px;
		font-size: 16px;
		padding: 16px 25px;
	}
}

@keyframes glow {
    0% { 
		transform: rotate(0deg);
        box-shadow: 0 0 10px #FF5A00, 0 0 20px #FF5A00; 
    }
    100% {
		transform: rotate(360deg); 
        box-shadow: 0 0 18px #0e0d0c, 0 0 30px #f35912, 0 0 30px #ff4e19; 
    }
}



.sec1-process{
	border:1px solid whitesmoke;
	color:whitesmoke;

	margin-top: 180px;
}

.sec1-process-v2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	margin-top: 180px;
}

.sec1-process-v2 span { 
	color: white;
	line-height: normal;
}
.sec1-process-v2 div {
	display: flex; 
	gap: 12px;
}
.sec1-process-v2 .items{
	margin-top: 40px;
}

.ad-content {
    background-size: cover;
    background-position: center;
    position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ad-content1{
	background-image: url(../../img/sub/sub05/benner1.png);
}
.ad-content2{
	background-image: url(../../img/sub/sub08/ex-3.jpg);
}

.ad-content3{
	background-image: url(../img/sub/sub09/ex2-9.jpg);
}

/* 방법 1: 반투명 오버레이 */
.ad-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* 검은색 60% 투명도 */
    z-index: 1;
}

.ad-content > * {
    position: relative;
    z-index: 2;
}

.ad-item {
	flex: 1;
	background: linear-gradient(135deg, #b4692b 0%, #a34b18 100%);
	color: white;
	/* padding: 30px 20px; */
	border-radius: 12px;
	text-align: center;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.ad-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s;
}

.ad-item:hover::before {
	left: 100%;
}

.ad-item:hover {
	transform: scale(1.02);
}

.ad-number {
	font-size: 2.5em;
	font-weight: 800;
	margin-bottom: 15px;
	opacity: 0.8;
}

.ad-name {
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.3;
}


.sec1-history-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding: 80px 20px;
    background: 
        linear-gradient(135deg, rgba(138, 82, 30, 0.9) 0%, rgba(8, 8, 8, 0.8) 100%),
        url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&h=800&fit=crop') center/cover;
    border-radius: 15px;
    overflow: hidden;
	margin-top: 280px;
}

 
 .history-year-badge {
	display: inline-block;
	background: #f35912;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 0.9em;
	font-weight: 600;
	margin-bottom: 15px;
 }
 
 .history-main-text {
	font-size: 3.8em;
	font-weight: 900;
	font-style: italic;
	color: #ffffff;
	letter-spacing: -2px;
	line-height: 1.1;
	margin: 20px 0;
	position: relative;
 }
 
 .history-main-text .highlight {
	color: #f35912;
	position: relative;
 }
 
 .history-main-text .highlight::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	height: 8px;
	background: rgba(93, 97, 102, 0.3);
	border-radius: 4px;
	z-index: -1;
 }
 
 .history-subtitle {
	font-size: 1.3em;
	color: #ffffff;
	font-weight: 400;
	margin-top: 20px;
	line-height: normal;
 }
 
 /* 반응형 */
 @media (max-width: 768px) {
	.history-main-text {
		font-size: 1.8em;
	}
	.sec1-process-v2 div {
		display: flex; 
		gap: 12px;
		flex-direction: column;
	}
	.sec1-process-v2 {
		margin-top: 60px;
	}
	.history-subtitle{
		font-size: 16px;
	}
	
 }

.sec1-text3 {
	margin-top: 280px;
}

.sec1-text3 span:nth-child(1) {
    font-size: 28px !important;
    color: #ffffff;
    position: relative;
    display: inline-block;
    z-index: 1;
	width: fit-content;
}

.sec1-text3 span:nth-child(1)::before {
    content: '';
    position: absolute;
    left: -2px;         
    right: -2px;       
    top: 25%;            
    bottom: 0;         
    background: #ff5512;   
    z-index: -1;      
    transform: skew(-2deg);

}


.sec1-text3 span:nth-child(2){
	font-size:28px;
	line-height: 1.4;
	color: white;
}

.sec1-btn {
    margin-top: 40px;
    text-align: center; /* 버튼 중앙 정렬을 위해 추가 */
}

.sec1-btn a {
    display: inline-block;
    width: 30%;
    min-width: 200px; /* 최소 너비 보장 */
    padding: 20px 20px;
    margin-top: 40px;
    background: #f35912;
    color: white !important;
    border-radius: 4px !important;
    font-size: 28px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.sec1-btn a:hover {
    background: #d94a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(243, 89, 18, 0.3);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .sec1-btn a {
        width: 80%;
        font-size: 18px;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .sec1-btn a {
        width: 90%;
        font-size: 16px;
    }
}

.sec1-logo {
    width: 320px;
    margin: 4% auto 0;
    text-align: center;
}

.logo-image {
    width: 100%;
    height: auto;
    max-width: 320px;
    object-fit: contain;
}

.sec1-history {
	display: flex;
	position: relative;
	margin:0px 5px;
	min-height: 160vh;
	justify-content: center;
}

.history-line {
    flex-grow: 1;
}

.history-year {
    flex-grow:3;
    color: white;
    margin-left: 40px;
	display: flex;
	flex-direction: column;
}

.year-section {
    margin-bottom: 10px;
}

.year-section span {
    display: block;
}

/* 연도 */
.year-section span:first-child {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #ffffffd0;
}

/* 프로젝트 목록 */
.year-section span:not(:first-child) {
    margin-bottom: 8px;
    padding-left: 10px;
    line-height: 1;
	color: #cccccc91;
}

/* 마지막 항목은 아래 간격 제거 */
.year-section span:last-child {
    margin-bottom: 0;
}


.cards-containter {
    display: flex;
    flex-grow: 2;
    flex-direction: column; 
    align-items: flex-end; 
	justify-content: flex-end;
}

.history-year div {
	display: flex;
	flex-direction: column;
}



.history-line {
	position: absolute;
	top: 20px;
	left:10px;
	display: flex;
	align-items: center;
	height: 100%;
}

.line {
	position: relative;
	z-index: 20;
	height: 100%;
	width: 3px;
	background-color: #ff5a00;
}

.line-icon {
		width: 2.5rem;        
		height: 2.5rem;       
		position: absolute;    
		left: 50%;             
		top: 0;               
		z-index: 20;           
		transform: translate3d(-50%, 0%, 0px) translate3d(0px, 0px, 0px);
		transition: transform 0.3s ease-out;
		will-change: transform;
		transform-origin: center top;
}

.line-icon img {
	width: 100%;
	height: 100%;
}

.cards-row {
	display: flex;
	gap:68px;
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.cards-row.fade-up {
	opacity: 1;
	transform: translateY(0);
}



/* 각 row별로 다른 지연 시간 적용 */
.cards-row:nth-child(1).fade-up {
	transition-delay: 0s;
}

.cards-row:nth-child(2).fade-up {
	transition-delay: 0.1s;
}

.cards-row:nth-child(3).fade-up {
	transition-delay: 0.2s;
}

.cards-row:nth-child(4).fade-up {
	transition-delay: 0.3;
}





.card {
	margin-bottom: 3.5rem;
    border-radius: 0.5rem;
    /* box-shadow: 0 0 0 2px #1ACCE0; */
    transition: transform 300ms ease;
    transform: scale(1.05);
    /* color: #1ACCE0; */
    
    /* 추가 스타일링 */

    cursor: pointer;
	height: 400px;
	overflow: hidden;
}

.card1 {
	margin-bottom: 68px;
}
.card2 {
	margin-top: 68px;
}

/* 호버 시 더 확대 */
.card:hover {
    transform: scale(1.1);
}

/* 포커스 상태 */
.card:focus {
    outline: none;
    box-shadow: 0 0 0 2px #1ACCE0, 0 0 0 4px rgba(26, 204, 224, 0.2);
}

.card-item {
    width: 400px;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size:contain;
}


.sec2 {
	background-color: white;
}


.orange-filter {
	filter: 
		sepia(80%) 
		saturate(150%) 
		hue-rotate(25deg) 
		brightness(0.9) 
		contrast(1.1);
}

.sec1-card-containter {
	width: 100%;
	margin-top: 100px;
}

.service-card {
	padding: 20px;
	margin-left: auto;
	margin-right: auto;
	background: white;
	border-radius: 24px;
	padding: 40px;
	width: 80%;
	max-width: 95vw;
	height: 700px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
	transition: all 0.4s ease;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 50px;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: #2a2a2a;
	background-size: 300% 100%;
	animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.left-content {
	flex: 1;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.right-content {
	flex: 1;
	height: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.flyers-showcase {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-flyer {
	width: 300px;
	height: 300px;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 3;
	transition: transform 0.3s ease;
}

.service-card:hover .main-flyer {
	transform: scale(1.05) rotate(2deg);
}

.main-flyer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.floating-flyer {
	position: absolute;
	width: 200px;
	height: 200px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
	opacity: 0.8;
	transition: all 0.3s ease;
}

.floating-flyer.flyer-1 {
	top: 20px;
	left: 20px;
	z-index: 1;
	transform: rotate(-10deg);
}

.floating-flyer.flyer-2 {
	bottom: 20px;
	right: 20px;
	z-index: 2;
	transform: rotate(8deg);
}

.service-card:hover .floating-flyer.flyer-1 {
	transform: rotate(-15deg) scale(1.1);
}

.service-card:hover .floating-flyer.flyer-2 {
	transform: rotate(12deg) scale(1.1);
}

.floating-flyer img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
	z-index: 10;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.05); }
}

.service-icon {
	font-size: 56px;
	margin-bottom: 20px;
	display: inline-block;
	animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-10px); }
}

.service-title {
	font-size: 28px;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 20px;
	position: relative;
	line-height: 1.2;
}

.service-containter { 
    display: flex; 
    
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 30px;
    max-width: 500px; /* 전체 그리드 최대 너비 제한 */
    margin: 30px auto 0; /* 중앙 정렬 */
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.photo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.service-description {
	font-size: 20px;
    font-weight: 500;
	color: #f8f8f8;
	line-height: 1.7;
	margin-bottom: 30px;
}

.style span {
    background-color: #FF5A00;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 30px;
}

.feature-item {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	background: linear-gradient(135deg, rgba(194, 135, 81, 0.1), rgba(146, 41, 41, 0.1));
	border-radius: 12px;
	font-size: 18px;
	color: #272727;
	transition: transform 0.3s ease;
}

.feature-item:hover {
	transform: translateX(5px);
}

.feature-icon {
	width: 24px;
	height: 24px;
	background: linear-gradient(135deg, #667eea, #764ba2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	margin-right: 12px;
	flex-shrink: 0;
}

.stats-container {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
}

.stat-item {
	text-align: center;
	flex: 1;
	padding: 20px 15px;
	background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	border-radius: 16px;
	transition: transform 0.3s ease;
}

.stat-item:hover {
	transform: translateY(-5px);
}

.stat-number {
	font-size: 28px;
	font-weight: 800;
	color: #2d3436;
	display: block;
}

.stat-label {
	font-size: 13px;
	color: #636e72;
	margin-top: 8px;
	font-weight: 500;
}

.action-button {
	width: 100%;
	padding: 20px;
	background:#FF5A00;
	color: white;
	border: none;
	border-radius: 16px;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.action-button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.action-button:hover::before {
	left: 100%;
}

.action-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(219, 112, 49, 0.4);
}

.sparkle {
	position: absolute;
	color: #feca57;
	font-size: 20px;
	animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle:nth-child(1) { top: 10%; right: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 5%; animation-delay: 1s; }
.sparkle:nth-child(3) { bottom: 20%; right: 10%; animation-delay: 2s; }

@keyframes sparkleFloat {
	0%, 100% { 
		opacity: 0.4; 
		transform: translateY(0px) rotate(0deg); 
	}
	50% { 
		opacity: 1; 
		transform: translateY(-10px) rotate(180deg); 
	}
}

/* 반응형 대응 */
/* 반응형 대응 */
@media (max-width: 768px) {
	.sec1-text2 .target {
		border-radius: 50%;   
		display: flex;             
		align-items: center;       
		justify-content: center;        
		width: 240px;
		height: 240px;
	}

	.sec1-text2 .target::before{
		width: 240px;
		height: 240px;
	}

	.sec1-text2 {
		font-size: 20px;
		display: flex;
		display: flex;
    	flex-direction: column;
    	gap: 60px;
	}

	.sec1-text3 span:nth-child(2) {
		font-size: 20px;
	}
	.sec1-btn{
		width: 100%;
	}

	.history-year{
		margin-left: 0;
	}
}


@media (max-width: 1690px) {

}
/* 더 작은 모바일 (480px 이하) */
@media (max-width: 1280px) {
	.sec1-history{
		display: flex;
		flex-direction: column;
		margin: 20px 5px;
        padding: 10px 0;
	}
	.history-line{
		display: none;
	}


    .history-year {
        margin-bottom: 15px;
        margin-left: 0;
        flex-basis: 150px;
        position: relative;
        z-index: 1; /* 텍스트를 뒤로 */
        background: rgba(0, 0, 0, 0.3); /* 반투명 배경 추가 */
        padding: 10px;
        border-radius: 8px;
    }

	.year-section {
        margin-bottom: 20px;
        padding: 12px;
        width: 100%;
        background: rgba(255, 255, 255, 0.1); /* 텍스트 배경 */
    }

    .year-section span:first-child {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .year-section span:not(:first-child) {
        font-size: 13px;
        margin-bottom: 4px;
        padding-left: 8px;
    }

    .history-line {
        height: 150px;
        margin: 15px auto;
    }

    .line-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    /* cards-container를 앞으로 */
    .cards-containter {
		flex-grow: 0;
        flex-shrink: 0;
        flex-basis: auto;
           
        display: flex;
        flex-direction: column;
        
        position: absolute;
        top: -30% !important;
        right: 0;
        width: 50%;
        height: 100%;
        z-index: 3;
	
	
    }

    .cards-row {
        gap: 15px;
    }

    .card {
        max-width: 180px;
		height:100px;
		margin-bottom: 2px;
    }

	.card-item{
		max-width: 100px;
		height:100px;
	}
}






/* 반응형 대응 fin*/
@media (max-width: 1024px) {
	.service-card {
		flex-direction: column;
		height: auto;
		width: 90vw;
		padding: 30px;
		gap: 30px;
	}

	.left-content, .right-content {
		flex: none;
		width: 100%;
		height: auto;
	}

	.service-title {
		font-size: 32px;
	}

	.main-flyer {
		width: 250px;
		height: 250px;
	}

	.floating-flyer {
		width: 150px;
		height: 150px;
	}
}

/* 애니메이션 */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* 반응형 */
@media (max-width: 768px) {
	.service-section {
		padding: 60px 0;
	}

	.services-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.service-card {
		padding: 30px 25px;
	}

	.section-header {
		margin-bottom: 50px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.sec1-sub-text{
		padding:20px;
	}
	.service-title {
		font-size: 20px;
	}
	.service-description{
		font-size: 18px;
	}
	.sec1-text3{
		margin-top: 40px;
		padding-top: 0px;
	}
}

@media (max-width: 480px) {
	.stats-grid {
		grid-template-columns: 1fr;
	}
}

/* 반응형 대응 */
@media (max-width: 768px) {
    .sec1-logo {
        width: 250px;
        margin-top: 5%;
    }
	.sec1-in .text-box > div > .com-text {
		font-size: 24px;
		line-height:normal;
	}

}

@media (max-width: 480px) {
    .sec1-logo {
        width: 200px;
        margin-top: 3%;
    }
}

@media (max-width: 1690px) {
	.sec1-in .text-box {
		top: 12%;
		left: 12%;
	}
	.sec1-in .text-box > div {
    padding-top:110px;
  }
	.sec1-in .text-box > .sec-tit {
		font-size: 75px;
	}
	.sec1-in .text-box > div > .com-text {
		font-size: 24px;
		line-height:normal;
	}

}


@media (max-width: 1460px) {

	.sec1-in .text-box > .sec-tit {
		font-size: 60px;
	}
	.sec1-in .text-box > div {
    padding-top:90px;
  }
	.sec1-in .text-box > div > span {
		font-size: 20px;
	}
	.sec1-in .text-box > div > .com-text {
		font-size: 20px;
		line-height:normal;
	}

}



@media (max-width: 790px) {

	.sec1-in .text-box > .sec-tit {
		font-size: 52px;
	}
	.sec1-in .text-box > div {
    padding-top:70px;
  }
	.sec1-in .text-box > div > span {
		font-size: 18px;
		margin-bottom:5px;
	}
	.sec1-in .text-box > div > .com-text {
		font-size: 20px;
		line-height: normal;
		margin-top:0px;
	}

	.sec1-history-title{
		margin-top: 60px;
	}
}
@media (max-width: 690px) {
	.sec1-in .text-box {
		width: 100%;
		top: 12%;
	}
	.sec1-in .text-box > div {
		width: 100%;
    padding-top: 55px;
  }
	.sec1-in .text-box > .sec-tit {
		font-size: 45px;
	}
	.sec1-in .text-box > div > .com-text {
		display: none;
	}
}

@media (max-width: 550px) {
	.sec1-in .text-box > .sec-tit {
		font-size: 40px;
	}
	/* .sec1-in .text-box > div {
		padding-top: 35px;
	} */
	.sec1-sub {
		font-size: 10px;
	}
	.sec1-text3 {
		padding-top: 10px;
		margin-top: 10px;
	}
	.sec1-text3 > span {
		font-size: 10px;
	}

}


@media (max-width: 480px) {
	.sec1-in .text-box > .sec-tit {
		font-size: 35px;
	}
	}

	/*  sec1 배경  */

	.sec1-in .y-bbox {
		display: inline-block;
	/*width: 390px;
	height: 444px;*/
	width: 18%;
	height: 0;
	padding-bottom: 22%;
	background: url(../img/sec1/y_bbox.png) no-repeat 0 0 / 100%;
	top: -8%;
	left: -5%;
	animation: y-bbox 1.5s linear infinite alternate;
}
.sec1-in .y-bbox:hover {
	transition: 1.5s;
	transform: translateX(60px);
}

@-webkit-keyframes y-bbox {
	from{
		top: -8%;
	}
	to{
		top: -6%;
	}
}



.sec1-in .b-ubox {
	display: inline-block;
	/*width: 118px;
	height: 134px;
	height: 6.6%;*/
	width: 6%;
	height: 0;
	padding-bottom: 7%;
	background: url(../img/sec1/b_ubox.png) no-repeat 0 0 / 100%;
	top: 7%;
	left: 33%;
	animation: b-ubox  1.5s linear infinite alternate;
}
.sec1-in .b-ubox:hover {
	transition: 1.5s;
	transform: translateY(60px);
}
@-webkit-keyframes b-ubox  {
	from{
		left: 33%;
	}
	to{
		left: 36%;
	}
}


.sec1-in .g-box {
	display: inline-block;
	/*width: 252px;
	height: 293px;*/
	width: 11%;
	/*height: 12.5%;*/
	height: 0;
	padding-bottom: 13%;
	background: url(../img/sec1/g_box.png) no-repeat 0 0 / 100%;
	top: -6%;
	right: 25%;
	animation: g-box  1s linear infinite alternate;
}
.sec1-in .g-box:hover {
	transition: 1.5s;
	transform: translateX(80px);
}
@-webkit-keyframes g-box  {
	from{
		top: -6%;
	}
	to{
		top: -5%;
	}
}

.sec1-in .g-box2 {
	display: inline-block;
	/*width: 411px;
	height: 478px;*/
	width: 22.5%;
	height: 25%;
	background: url(../img/sec1/g_box1.png) no-repeat 0 0 / 100%;
	top: 37%;
	left: -6%;
	z-index: 2;
	animation: g-box2 2s linear infinite alternate;
}
.sec1-in .g-box2:hover {
	transition: 1s;
	transform: translateY(-80px);
}
@-webkit-keyframes g-box2  {
	from{
		left: -6%;
	}
	to{
		left: -4%;
	}
}
.sec1-in .g-ebox{
	display: inline-block;
	/*width: 239px;
	height: 271px;*/
	width: 13%;
	height: 14%;
	background: url(../img/sec1/gr_box.png) no-repeat 0 0 / 100%;
	top: 36%;
	left: 15.2%;
	z-index: 1;
	animation: g-ebox 1s linear infinite alternate;
}
.sec1-in .g-ebox:hover {
	transition: 1s;
	transform: translateX(-80px);
}
@-webkit-keyframes g-ebox  {
	from{
		left: 15.2%;
	}
	to{
		left: 17%;
	}
}

.sec1-in .y-box{
	display: inline-block;
	/*width: 106px;
	height: 120px;*/
	width: 4.4%;
	height: 5%;
	background: url(../img/sec1/y_box.png) no-repeat 0 0 / 100%;
	top: 37%;
	left: 45%;
	animation: y-box 1.1s linear infinite alternate;
}
.sec1-in .y-box:hover {
	transition: 1s;
	transform: translateX(-80px);
}
@-webkit-keyframes y-box  {
	from{
		top: 37%;
	}
	to{
		top: 35%;
	}
}

.sec1-in .r-cbox{
	display: inline-block;
	/*width: 547px;
	height: 621px;*/
	width: 30%;
	height: 31%;
	background: url(../img/sec1/r_cbox.png) no-repeat 0 0 / 100%;
	top: 33%;
	right: -10%;
	animation: r-cbox 1.1s linear infinite alternate;
}
.sec1-in .r-cbox:hover {
	transition: 1s;
	transform: translateY(-80px);
}
@-webkit-keyframes r-cbox  {
	from{
		top: 33%;
		right: -10%;
	}
	to{
		top: 32%;
		right: -6%;
	}
}

.sec1-in .logo{
	display: inline-block;
	/*width: 481px;
	height: 504px;*/
	width: 22%;
	height: 22.5%;
	background: url(../img/sec1/logo.png) no-repeat 0 0 / contain;
	top: 12%;
	right: 14%;
	animation: logo 1.5s linear infinite alternate;
}
.sec1-in .logo:hover {
	transition: 1s;
	transform: translateX(-40px);
}
@-webkit-keyframes logo  {
	from{
		top: 11%;
		right: 14%;
	}
	to{
		top: 15%;
		right: 11%;
	}
}

@media (max-width: 1690px) {

	.sec1-in .g-box2 {
		top: 43%;
	}

	.sec1-in .g-ebox {
		top: 41%;
	}

	.sec1-in .y-box {
		top: 43%;
	}
	@-webkit-keyframes y-box  {
		from{
			top: 43%;
		}
		to{
			top: 41%;
		}
	}
	.sec1-in .logo {
		top: 17%;
		right: 12.5%;
	}
	/*@-webkit-keyframes logo  {
		from{
			top: 17%;
			right: 12.5%;
		}
		to{
			top: 21%;
			right: 10%;
		}
	}*/
	.sec1-in .r-cbox{
		top: 36%;
		right: -10%;
	}
	/*@-webkit-keyframes r-cbox  {
		from{
			top: 36%;
			right: -10%;
		}
		to{
			top: 34%;
			right: -6%;
		}
	}*/

}
@media(max-width: 920px) {
    .sec1-in .y-bbox  {
    	top: -4%;
    }
    @-webkit-keyframes y-bbox {
	from{
		top: -4%;
	}
	to{
		top: -2%;
	}
}
    .sec1-in .g-box {
    	top: -4%;
    	right: 18%;
    }
    .sec1-in .b-ubox {
    	top: 10%;
    	left: 36%;
    }

}

@media (max-width: 790px) {
	.sec1-in .logo {
		top: 14%;
	}
	/*@-webkit-keyframes logo  {
		from{
			top: 14%;
			right: 12.5%;
		}
		to{
			top: 17%;
			right: 10%;
		}
	}*/
}

@media (max-width: 690px) {
	.sec1-in .logo {
		top: 17%;
	}
	/*@-webkit-keyframes logo  {
		from{
			top: 17%;
			right: 12.5%;
		}
		to{
			top: 20%;
			right: 10%;
		}
	}*/
}

@media(max-width: 520px) {
	.sec1-in .y-bbox {
		width: 23%;
		padding-bottom: 27%;
	}
	.sec1-in .g-box {
		width: 15%;
		padding-bottom: 17.5%;
	}
	.sec1-in .b-ubox {
		width: 7.5%;
		padding-bottom: 9%;
	}
}

/*sec1안에 sec2 */

.sec2-in {
	width: 80%;
	top: 60%;
	z-index: 3;
}

.sec2-in > .sec2-tit {
	text-align: right;
	position: absolute;
	top: 10%;
	right: 20%;

}

.sec2-in > .sec2-tit > p {
	width: 100%;
	font-size: 30px;
	font-weight: bold;
	color: #370202;
	background: #fff;
	padding: 10px 10px 5px 10%;
	box-shadow: 9px 8px 9px 3px #9d9b9b4f;
	position: relative;
}

.sec2-tit > p::before {
	display: inline-block;
	content: "";
	width: 100%;
	height: 60px;
	background: url(../img/sec2/tit_bg.png) no-repeat 0 0/contain;
	position: absolute;
	top: -37%;
	left: -5%;
	z-index: -1;

}
.sec2-tit > p::after {
	display: inline-block;
	content: "";
	width: 30px;
	height: 4px;
	background-color: #370202;
	position: absolute;
	bottom: 10px;
	left: 6px;
}
.sec2-in > .sec2-con {
	width: 100%;
	height: 0;
	margin-top: 13%;
	/*padding-bottom: 50%;*/
	padding-bottom: 35.7%;
	display: inline-flex;
}
.sec2-con > div {
	width: 50%;
/*	height: 0;
	padding-bottom: 50%;*/
} 

.sec2-con .img-box > .box {
	display: inline-block;
	/*width: 558px;
	height: 468px;*/
	width: 65%;
	height: 0;
	padding-bottom: 53%;
	background: url(../img/sec2/sec2_box.png) no-repeat 0 0/contain;
	margin-left: 7%;
}

/*.sec2-con .img-box > .box::after {
	display: inline-block;
	content: "";
	width: 60px;
	height: 60px;
	background: url(../img/sec2/click.png) no-repeat 0 0 / contain;
	position: absolute;
	top: 45%;
	right: 23%;
}*/

.sec2-con .img-box > .box::after {
	display: inline-block;
	content: "";
	/*width: 121px;
	height: 95px;*/
	width: 5%;
	height: 0;
	padding-bottom: 5%;
	background: url(../img/sec2/click3.png) no-repeat 0 0 / contain;
	position: absolute;
	top: 58%;
	right: 21%;
	z-index: 10;
}

.sec2-con .img-box > .box:hover::after {
	transition: 1.2s;
	transform: translateY(50px);
}

/*상자 btn 부분*/
.sec2-con .btn-box {
	position: relative;
}
.sec2-con .btn-box > ul {
	width: 50%;
	height: 0;
	padding-bottom: 56%;
	position: relative;
	margin-left: 30%;
}
.sec2-con .btn-box > ul::after {
	display: inline-block;
	content: "";
	/*width: 60px;
	height: 60px;*/
	width: 10%;
	height: 0;
	padding-bottom: 12%;
	background: url(../img/sec2/click4.png) no-repeat 0 0 / contain;
	position: absolute;
	top: 20%;
	right: 3%;
	animation: click 1.2s linear infinite alternate;

}
@-webkit-keyframes click  {
	from{
		top: 20%;
	}
	to{
		top: 30%;
	}
	
}
.sec2-con .btn-box > ul > li  {
	display: inline-block;
    /*width: 133px;
    height: 152px; */
    width: 28%;
    height: 0;
    padding-bottom: 32%;
    background: url(../img/sec2/rbox.png) no-repeat 0 0 / contain;
    position: absolute;
    top: 0;
    left: 35%;
    cursor: pointer;
} 

.sec2-con .btn-box > ul > li  span {
	display: none;
	font-style: italic;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	margin-top: 65%;
	margin-left: 10%;
	color: #fff;
}

.sec2-con .btn-box > ul > li:nth-child(5),
.sec2-con .btn-box > ul > li:nth-child(6),
.sec2-con .btn-box > ul > li:nth-child(7) {
	background-image: url(../img/sec2/ybox.png);
}

.sec2-con .btn-box > ul > li:nth-child(8),
.sec2-con .btn-box > ul > li:nth-child(9),
.sec2-con .btn-box > ul > li:nth-child(11) {
	background-image: url(../img/sec2/gbox.png);
}

.sec2-con .btn-box > ul > li:nth-child(10),
.sec2-con .btn-box > ul > li:nth-child(12),
.sec2-con .btn-box > ul > li:nth-child(13) {
	background-image: url(../img/sec2/bbox.png);
}


.sec2-con .btn-box > ul > li:first-child {
	top: 0;
	left: 35%;
	background-image: url(../img/sec2/btn01.png);
}
.sec2-con .btn-box > ul > li:nth-child(2) {
	top: 10%;
	left: 16%;
	z-index: 3;
	background-image: url(../img/sec2/btn02.png);
}
.sec2-con .btn-box > ul > li:nth-child(3) {
	top: 10%;
	left: 54%;
	z-index: 3;
	background-image: url(../img/sec2/btn03.png);
}
.sec2-con .btn-box > ul > li:nth-child(4) {
	top: 19%;
	left: 35%;
	z-index: 3;
	background-image: url(../img/sec2/btn04.png);
}
.sec2-con .btn-box > ul > li:nth-child(5) {
	top: 28.5%;
	left: 16%;
	z-index: 2;
	background-image: url(../img/sec2/btn05.png);
}
.sec2-con .btn-box > ul > li:nth-child(6) {
	top: 28.5%;
	left: 54%;
	z-index: 2;
	background-image: url(../img/sec2/btn07.png);
}
.sec2-con .btn-box > ul > li:nth-child(7) {
	top: 37.5%;
	left: 35%;
	z-index: 2;
	background-image: url(../img/sec2/btn06.png);
}
.sec2-con .btn-box > ul > li:nth-child(8) {
	top: 46.5%;
	left: 16%;
	z-index: 1;
	background-image: url(../img/sec2/btn08.png);
}
.sec2-con .btn-box > ul > li:nth-child(9) {
	top: 46.5%;
	left: 54%;
	z-index: 1;
	background-image: url(../img/sec2/btn09.png);
}
.sec2-con .btn-box > ul > li:nth-child(10) {
	top: 64%;
	left: 16%;
	background-image: url(../img/sec2/btn10.png);
}
.sec2-con .btn-box > ul > li:nth-child(11) {
	top: 70%;
	left: 105%;
	background-image: url(../img/sec2/btn11.png);
}

.sec2-con .btn-box > ul > li:nth-child(12) {
	top: 64%;
	left: 54%;
	background-image: url(../img/sec2/btn12.png);
}
.sec2-con .btn-box > ul > li:nth-child(13) {
	top: 72%;
	left: 35%;
	background-image: url(../img/sec2/btn13.png);
}

.btn-box > ul > li > div.btn-img {
	display: none;
	width: 325%;
	height: 0;
	padding-bottom: 325%;
	position: absolute;
	top: 44%;
	right: -654%;
	background: url(../img/sec2/btn01-box.png) no-repeat 0 0 / contain;
}

.btn-box > ul > li:nth-child(2) > div.btn-img {
	background-image: url(../img/sec2/btn02-box.png);
	top: 9%;
	right: -721.5%;
}
.btn-box > ul > li:nth-child(3) > div.btn-img {
	background-image: url(../img/sec2/btn03-box.png);
	top: 9.2%;
	right: -585.5%;
}
.btn-box > ul > li:nth-child(4) > div.btn-img {
	background-image: url(../img/sec2/btn04-box.png);
	top: -22.5%;
	right: -653.5%;
}
.btn-box > ul > li:nth-child(5) > div.btn-img {
	background-image: url(../img/sec2/btn05-box.png);
	top: -56%;
	right: -721.5%;
}
.btn-box > ul > li:nth-child(6) > div.btn-img {
	background-image: url(../img/sec2/btn06-box.png);
	top: -56%;
	right: -586%;
}
.btn-box > ul > li:nth-child(7) > div.btn-img {
	background-image: url(../img/sec2/btn07-box.png);
	top: -87%;
	right: -654%;
}
.btn-box > ul > li:nth-child(8) > div.btn-img {
	background-image: url(../img/sec2/btn08-box.png);
	top: -119%;
	right: -721.5%;
}
.btn-box > ul > li:nth-child(9) > div.btn-img {
	background-image: url(../img/sec2/btn09-box.png);
	top: -119%;
	right: -585.5%;
}
.btn-box > ul > li:nth-child(10) > div.btn-img {
	background-image: url(../img/sec2/btn10-box.png);
	top: -180%;
	right: -721.5%;
}
.btn-box > ul > li:nth-child(11) > div.btn-img {
	background-image: url(../img/sec2/btn11-box.png);
	top: -201%;
	right: -403.5%;
}
.btn-box > ul > li:nth-child(12) > div.btn-img {
	background-image: url(../img/sec2/btn12-box.png);
	top: -180%;
	right: -585.5%;
}
.btn-box > ul > li:nth-child(13) > div.btn-img {
	background-image: url(../img/sec2/btn13-box.png);
	top: -208%;
	right: -654%;
}
.btn-box > ul > li.on > div.btn-img{
	display: block;
}

.btn-box > ul > li > div.btn-img > a {
	display: inline-block;
	width: 100%;
	height: 0;
	padding-bottom: 100%;
}

/*mo-slide*/

.sec2-mo {
	display: none;
	width: 90%;
	height: 0;
	padding-bottom: 60%;
	margin: 0 auto;
	padding-top: 20px;
}
.sec2-mo >.mo-slide {
	width: 100%;
	margin-top: 130px;
	position: relative;
}

.sec2-mo >.mo-slide > div {
	display: inline-block;
	width: 100%;
}
.sec2-mo >.mo-slide > div > a {
	display: inline-block;
	width: 100%;
}
.sec2-mo >.mo-slide > div img {
	width: 55%;
	margin: 0 auto;
}
.mo-slide > ul.slick-dots {
	width: 100%;
	text-align: center;
	/*margin-top: 40px;*/
	position: absolute;
	bottom: -10%;
	left: 50%;
	transform: translateX(-50%);
}

.mo-slide > ul > li {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	/*width: 15px;
	height: 15px;
	border-radius: 50px;
	background-color: #9b9d9e;*/
	background: url(../img/sec2/mo/dot/dot1.png)no-repeat 0 0 /contain; 
	margin: 0 5px;
}
.mo-slide > ul > li:nth-child(4),
.mo-slide > ul > li:nth-child(5),
.mo-slide > ul > li:nth-child(6) {
	background-image: url(../img/sec2/mo/dot/dot2.png);
}

.mo-slide > ul > li:nth-child(7),
.mo-slide > ul > li:nth-child(8),
.mo-slide > ul > li:nth-child(9) {
	background-image: url(../img/sec2/mo/dot/dot3.png);
}

.mo-slide > ul > li:nth-child(10),
.mo-slide > ul > li:nth-child(11),
.mo-slide > ul > li:nth-child(12),
.mo-slide > ul > li:nth-child(13) {
	background-image: url(../img/sec2/mo/dot/dot4.png);
}

.mo-slide > ul > li.slick-active {
	background-image: url(../img/sec2/mo/dot/dot-act.png);
	background-color: none;
}

.mo-slide > .slick-arrow {
	width: 70px;
	height: 70px;
	background: url(../img/sec2/mo/mo-pre.png) no-repeat 0 0/ contain;
	position: absolute;
	top: 50%;
	transform: translateY(-40px);
	left: 5%;
	text-indent: -9999px;
	z-index: 1;
}
.mo-slide > .slick-arrow.slick-next {
	left: 83%;
	background: url(../img/sec2/mo/mo-next.png) no-repeat 0 0/ contain;
}

@media (max-width: 1520px) {
	.sec2-in > .sec2-tit > p {
		font-size: 25px;
	}
}

@media (max-width: 1320px) {
	.sec2-in > .sec2-tit > p {
		font-size: 20px;
		padding-left: 14%;
	}
}

@media (max-width: 1120px) {
	.sec2-in > .sec2-tit > p {
		font-size: 18px;
	}
}

@media (max-width: 920px) {
	.sec2-in > .sec2-tit {
		right: 50%;
		transform: translateX(50%);
		/*right: 35%;*/
	}
	.sec2-in {
		top: 54%;
	}
	.sec2-in > .sec2-con {
		display: none;
	}
	.sec2-in > .sec2-mo {
		display: block;
	}
	.sec2-in .mo-tit {
		display: none;
	}
}

@media(max-width: 760px) {
	.sec2-mo {
		padding-top: 0;
	}
	.sec2-mo >.mo-slide {
		margin-top: 110px;
	}
	.mo-slide > ul.slick-dots {
		margin-top: 20px;
	}
}

@media(max-width: 660px) {
	
    .sec2-in {
		top: 54%;
	}

	.sec2-in > .sec2-tit > p {
		font-size: 16px;
	}

	.sec2-tit > p::after {
		width: 24px;
	}
	.mo-slide > .slick-arrow {
		width: 55px;
		height: 55px;
	}
	.mo-slide > ul.slick-dots > li {
		width: 22px;
		height: 22px;
		margin: 0 3px;
	}
}

@media(max-width: 640px) {
	.mo-slide {
		text-align: center;
	}
	.mo-slide > .slick-arrow {
		width: 30px;
		height: 30px;
		background: url(../img/sec3/s-pre.png) no-repeat 0 0 / contain;
		transform: translateY(-15px);
		left: 10%;
	} 
	.mo-slide > .slick-arrow.slick-next {
		background: url(../img/sec3/s-next.png) no-repeat 0 0 / contain;
		left: 82%;
	}
	.mo-slide > ul.slick-dots {
		bottom: -15%;
	}
	.mo-slide > ul.slick-dots > li {
		width: 15px;
		height: 15px;
		margin: 0 5px;
		background-image: none;
		background-color: #9b9d9e;
		border-radius: 50px;
	}
	.mo-slide > ul.slick-dots > li.slick-active {
		background-color: #565454;
	}
	.sec2-in .mo-tit {
		display: inline-block;
		margin-top: 20px;
		color: #370202;
		font-weight: 600;
	}
}

@media(max-width: 510px) {
	.sec2-in {
		top: 58%;
	}
	.sec2-in > .sec2-tit > p {
		font-size: 15px;
	}
	.mo-slide > ul.slick-dots {
		margin-top: 50px;
	}
}

@media(max-width: 470px) {
	.mo-slide > ul.slick-dots > li {
		width: 12px;
		height: 12px;
	}
}

@media(max-width: 420px) {
	.mo-slide > ul.slick-dots > li {
		margin: 0 4px;
	}
}



/*   sec3   */


.sec3-slide{
	width: 100%;
	height: 900px;
	text-align: center;
	background-color: #f2d2a8;
	position: relative;
}

.sec3-slide > h2 {
	font-size: 30px;
	font-weight: bold;
	color: #565454;
	padding: 60px 0  60px;
	text-align: left;
	margin-left: 6%;
}
.sec3-slide > h2::before {
	display: inline-block;
	content: "";
	width: 30px;
	height: 4px;
	background-color: #565454;
	margin-right: 5px;
}
.sec3-in {
	width: 100%;
	height: 90%;
}

.ad-slide {
	width: 90%;
    height: 90%;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding-left: 10px;
}
.ad-slide > div {
	position: relative;
}
.ad-slide  .ad-sin{
	width: 22%;
	height: 0;
	padding-bottom: 60%;
	position: relative;
	z-index: 15;
}

.ad-slide  .ad-sin::after {
	display: inline-block;
	content: "";
	width: 86%;
	height: 0;
	padding-bottom: 57%;
	background-color: #c52f36;
	position: absolute;
	top: 30px;
	left:40px;
	z-index: -1;
}
.ad-slide  .ad-sin.ads-03::after,
.ad-slide  .ad-sin.ads-04::after,
.ad-slide  .ad-sin.ads-11::after,
.ad-slide  .ad-sin.ads-12::after {
    background-color: #e19635;
} 

.ad-slide  .ad-sin.ads-05::after,
.ad-slide  .ad-sin.ads-06::after,
.ad-slide  .ad-sin.ads-13::after,
.ad-slide  .ad-sin.ads-14::after {
    background-color: #65a947;
} 

.ad-slide  .ad-sin.ads-07::after,
.ad-slide  .ad-sin.ads-08::after,
.ad-slide  .ad-sin.ads-15::after,
.ad-slide  .ad-sin.ads-16::after {
    background-color: #1985a7;
}
.ad-slide  .ad-sin.ad-top {
	margin-bottom: 70px;
}
.ad-slide  .ad-sin > a {
	display: inline-block;
	width: 100%;
	height: 0;
	padding-bottom: 57%;
	background: url(../img/sec3/slide1.jpg) no-repeat 0 0 / contain;
}
.ad-slide  .ads-02 > a {
	background-image: url(../img/sec3/slide2.jpg);
}
.ad-slide  .ads-03 > a {
	background-image: url(../img/sec3/slide3.jpg);
}
.ad-slide  .ads-04 > a {
	background-image: url(../img/sec3/slide4.jpg);
}
.ad-slide  .ads-05 > a {
	background-image: url(../img/sec3/slide5.jpg);
}
.ad-slide  .ads-06 > a {
	background-image: url(../img/sec3/slide6.jpg);
}
.ad-slide  .ads-07 > a {
	background-image: url(../img/sec3/slide7.jpg);
}
.ad-slide  .ads-08 > a {
	background-image: url(../img/sec3/slide8.jpg);
}
.ad-slide  .ads-09 > a {
	background-image: url(../img/sec3/slide9.jpg);
}
.ad-slide  .ads-10> a {
	background-image: url(../img/sec3/slide10.jpg);
}
.ad-slide  .ads-11> a {
	background-image: url(../img/sec3/slide11.jpg);
}
.ad-slide  .ads-12> a {
	background-image: url(../img/sec3/slide12.jpg);
}
.ad-slide  .ads-13> a {
	background-image: url(../img/sec3/slide13.jpg);
}
.ad-slide  .ads-14> a {
	background-image: url(../img/sec3/slide14.jpg);
}
.ad-slide  .ads-15> a {
	background-image: url(../img/sec3/slide15.jpg);
}
.ad-slide  .ads-16> a {
	background-image: url(../img/sec3/slide16.jpg);
}
.ad-slide  .ad-sin> a > span {
	display: inline-block;
	font-size: 25px;
	font-weight: 600;
	color: #fff;
	margin-top: 40px;
	margin-left: -50px;
}
.ad-slide .slick-arrow {
	width: 48px;
	height: 48px;
	text-indent: -9999px;
	background-color: #dcdfe0;
	border-radius: 10px;
	box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 12%);
	background: #dcdfe0 url(../img/sec3/s-next.png) no-repeat center center / 50%;
    position: absolute;
	top: -70px;
	right:17px;
}
.ad-slide .slick-arrow.slick-prev {
	right: 83px;
	background-image: url(../img/sec3/s-pre.png);
} 

.ad-slide ul.slick-dots {
	display:  block;
	position: absolute;
	bottom: 5%;
	left: 50%;
	transform: translateX(-35px);
}

.ad-slide .slick-dots > li {
	display: inline-block;
	width: 15px;
	height: 15px;
	border-radius: 50px;
	background: #9b9d9e;
	text-indent: -9999px;
	margin: 0 10px;
}  
.ad-slide .slick-dots > li.slick-active {
	background-color: #565454;
}

@media(max-width: 1720px) {
	.ad-slide  .ad-sin.ad-top {
		margin-top: 30px;
	}
	.ad-slide ul.slick-dots {
		bottom: 12%;
	}
}

@media(max-width: 1520px) {
	.sec3-slide {
		height: 820px;
	}
	.sec3-slide > h2 {
		font-size: 25px;
	}
	.ad-slide {
		padding-left: 0;
	}
	.ad-slide .ad-sin > a {
		width: 95%;
	}
	.ad-slide .ad-sin> a > span {
		font-size: 20px;
		margin-left:-20px;
	}
}

@media(max-width: 1320px) {

	.sec3-slide > h2 {
		font-size: 20px;
	}
}

@media(max-width: 1290px) {
	.ad-slide .ad-sin {
		margin-left: -10px;
	}
	.ad-slide .ad-sin > a {
		width: 90%;
	}
	.ad-slide .slick-arrow {
		width: 40px;
		height: 40px;
	}
	.ad-slide .slick-arrow.slick-prev {
		right: 75px;
	}
	
}

@media(max-width: 1220px) {
	.sec3-slide {
		height: 700px;
	}

	.ad-slide .ad-sin> a > span {
		font-size: 16px;
		margin-left:0px;
	}	
}

@media(max-width: 1110px) {
	.ad-slide .ad-sin {
		margin-left: -15px;
	}
	.ad-slide .ad-sin::after {
		padding-bottom: 55%; 
	}
	.ad-slide  .ad-sin.ad-top {
		margin-bottom: 50px;
	}
	.ad-slide .ad-sin > a {
		width: 88%;
	}

}

@media(max-width: 1030px)  {
	.ad-slide .ad-sin {
		margin-left: -20px;
	}
}

@media(max-width: 760px)  {
	.sec3-slide {
		height: 600px;
	}
	.ad-slide .ad-sin > a {
		width: 80%;
	}
	.ad-slide .ad-sin::after {
		padding-bottom: 50%;
	}
	.ad-slide .ad-sin> a > span {
		margin-top: 25px;
		font-size: 14px;
	}
	.ad-slide  .ad-sin.ad-top {
		margin-bottom: 30px;
	}
}

@media(max-width: 710px) {
	.sec3-slide {
		height: 680px;
	}
	.ad-slide ul.slick-dots {
		transform: translateX(-70px);
	}
}

@media(max-width: 660px) {
	.sec3-slide > h2 {
		font-size: 16px;
	}
	.sec3-slide > h2::before {
		width: 24px;
		height: 3.5px;
	}
}

@media(max-width: 560px) {
	.sec3-slide {
		height: 640px;
	}
	.ad-slide .ad-sin {
		margin-left: -25px;
	}
}

@media(max-width: 472px) {
	.sec3-slide {
		height: 560px;
	}
	.ad-slide .ad-sin {
		margin-left: -30px;
	}
}

@media(max-width: 440px) {
	.ad-slide .ad-sin > a {
		width: 78%;
	}
	.ad-slide .ad-sin::after {
		width: 84%;
		padding-bottom: 48%;
	}
	.ad-slide .ad-sin> a > span {
		font-size: 12px;
	}
	.sec2-in > .sec2-tit > p {
		font-size: 13px;
	}
	.ad-slide .slick-arrow {
		width: 35px;
		height: 35px;
		top: -80px;
		right: 10px;
	}
	.ad-slide .slick-arrow.slick-prev {
		right: 60px;
	}
}

@media(max-width: 390px) {
	.ad-slide .ad-sin {
		margin-left: -34px;
	}
}

@media(max-width: 360px) {
	.sec3-slide {
		height: 530px;
	}
	.ad-slide .ad-sin> a > span {
		font-size: 11px;
	}
}


/*거래처 브랜드 sec*/
.cust-sec {
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
	/*background-color: #eee;*/
}


.cust-sec  h3 {
	width: 30%;
	font-size: 45px;
	font-weight: bold;
	/*color: #ababab;*/
	color: #7c7878;
	text-align: left;
	padding: 4.2% 0 1%;
	line-height: 1.2;
	text-shadow: 4px 4px 3px #d7d7d7; 
}

.cust-sec p {
	font-size: 22px;
	font-weight: 550;
	color: #d5d5d5;
	text-align: left;
	padding: 1% 0 3.6%;
}

/*.cust-sec  h3::before {
	display: inline-flex;
	align-items: center;
	content: "";
	width: 30px; 
	height: 4px;
	background-color: #7c7878;
	margin: 0 5px;
	line-height: 30px;
}*/

.cust-in {
	display: inline-block;
	width: 80%;
	margin: 5% auto 10%; 
}

.cust-in > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;

}

.cust-in > div > img {
    width: 15%;
    margin: 2% auto;
    box-shadow: 0px 1px 4px 1px #e1e0e0;
}


@media(max-width: 1520px) {
	.cust-sec  h3 {
		font-size: 38px;
	}
}

@media(max-width: 1220px) {
	.cust-sec  h3 {
		font-size: 32px;
	}
}

@media(max-width: 1020px) {
	.cust-sec  h3 {
		font-size: 28px;
	}

	.cust-sec p  {
		font-size: 18px;
	}
	.cust-in > div > img {
	    width: 18%;
	}
}



@media(max-width: 620px) {
	.cust-in {
		margin: 10% 0 22%;
	}
	.cust-sec h3 {
		padding-bottom: 3%;
	}
	.cust-sec p {
		padding-bottom: 4.8%;
	}
	.sec1-in {
		padding-bottom: 165%;
	}
}

@media(max-width: 520px) {

	.cust-in {
		width: 75%;
	}

	.cust-in > div > img {
	    width: 44%;
	}
}

@media(max-width: 420px) {

	.cust-in  {
		margin: 20% 0 35%;
	}
	.cust-sec  h3 {
		font-size: 25px;
	}

	.cust-sec p  {
		font-size: 16px;
		padding-bottom: 12%;
	}

}

@media(max-width: 360px) {

	.cust-in  {
		margin: 20% 0 35%;
	}
	.cust-sec  h3 {
		font-size: 22px;
	}

	.cust-sec p  {
		font-size: 15px;
		padding-bottom: 12%;
	}

}


.ft-btn {
	width: 100px;
}





/****SEOYA0622 START****/

/*cont2 새로추가 16박스 START*/

.sec1-in .cont2{width:100%;overflow: hidden;z-index:100;}
.sec1-in .cont2 .cont2_in{padding-top: 36%;margin:0 auto;width:100%;overflow: hidden;}
.cont2_in h3 {display:inline-block;line-height:30px;border-bottom:3px solid #565454;font-size:16px;font-weight:700;color:#565454;margin-bottom: 50px;}
.cont2_in .c2{width:100%;}
.cont2_in .c2 ul{width:100%;}
.cont2_in .c2 ul li{float:left;position: relative;}
.cont2_in .c2 ul li img{width:100%;}
.sec1-in .cont2 .cont2_in{width: 1200px;}
.cont2_in .c2 ul li{width:20%;margin:0 3% 3% 0;}
.cont2_in .c2 ul li:nth-child(4),.c2 ul li:nth-child(8),.c2 ul li:nth-child(12),.c2 ul li:nth-child(16){margin-right:0px;}
.sec-tit{margin-left:3px;}

.cont2_in .c2 ul li .ad_title{position: absolute;top:10%;left:5%;width:85%;z-index:1;}
.cont2_in .c2 ul li .ad_txt{position:absolute;bottom:15%;left: 0;	right: 3%;	margin-left: auto;	margin-right: auto;z-index:2;opacity:0;width:65%}
.cont2_in .c2 ul li .ad_img{position:absolute;top:0px;left:0px;}

.cont2_in .c2 ul li:hover .ad_title{top:17%;opacity:1;}
.cont2_in .c2 ul li:hover .ad_img{opacity:0.4;}
.cont2_in .c2 ul li:hover .ad_txt{opacity:1;bottom:25%;}

.cont2_in .c2 ul li .ad_img{opacity:1;transition: all 0.3s;}
.cont2_in .c2 ul li .ad_title{opacity:1;transition: all 0.3s;}
.cont2_in .c2 ul li .ad_txt{transition: all 0.3s;}


	
	@media screen and (max-width:1690px) {
		.sec1-in .cont2 .cont2_in{width: 1200px;}
		.cont2_in .c2 ul li{width:20%;margin:0 3% 3% 0;}
		.cont2_in .c2 ul li:nth-child(4),.c2 ul li:nth-child(8),.c2 ul li:nth-child(12),.c2 ul li:nth-child(16){margin-right:0px;}
		}
	
	@media screen and (max-width:1460px) {
		.sec1-in .cont2 .cont2_in{width: 76%;}
		}
		
	@media screen and (max-width:1290px) {
		.sec1-in .cont2 .cont2_in{padding-top: 37%;}
		}

	@media screen and (max-width:920px) {
		.sec1-in .cont2 .cont2_in{padding-top: 45%;}
		}
	
	@media screen and (max-width:690px) {
		.sec1-in .cont2 .cont2_in{padding-top: 55%;}
		.cont2_in .c2 ul li{width:25%;margin:0 3% 3% 0;}
		.cont2_in .c2 ul li:nth-child(4),.c2 ul li:nth-child(8),.c2 ul li:nth-child(12),.c2 ul li:nth-child(16){margin-right:3%;}
		.cont2_in .c2 ul li:nth-child(3),.c2 ul li:nth-child(6),.c2 ul li:nth-child(9),.c2 ul li:nth-child(12),.c2 ul li:nth-child(15){margin-right:0px;}
		.cont2_in h3 {margin-bottom: 30px;}
	
		}


		@media screen and (min-width:820px) {
		.cust-sec{margin-bottom:50px;}
		}



.sec3-slide{display: none;}




/*메인 좌측 상단 전화번호 삽입*/

.cube_tel{
	position: absolute;
	top:80px;
	left:3%;
	z-index: 4;
	font-size:40px;
	color:#fff;
	text-shadow: 0 0 3px rgb(0,0,0,0.7);
	font-weight: 700;
	letter-spacing: 1px;
}

.cube_tel a{
	color:#fff;
	text-decoration: none;
}

@media(max-width: 520px) {

	.cube_tel{
		top:71px;
		left:5%;
		font-size:30px;
	}
}

/* 탑버튼 */

.btn_top{
	position: fixed;
	right: 10%;
	bottom: 5%;
	display: none;
	z-index: 10000;
	width: 50px;
	height: 50px;
	border: 2px solid #b1b1b1;
	text-align: center;
	line-height: 50px;
	
	background-color: #575757;
	border-radius: 50%;
	padding: 0.2% 0.2%;
}

.btn_top span{
	color: #fff;
	font-size: 20px;

}


