body, html {
	font-family: 'Open Sans', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	color: #777;
	font-weight: 400;
	width: 100% !important;
	height: 100% !important;
}

.video-container {
    position: relative;
    display: inline-block;

}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    display: none; /* 기본적으로는 숨김 */
}

.play-button.show {
    display: block; /* 비디오가 일시정지 상태일 때 버튼 표시 */
}

.video-container2 {
    position: relative;
    display: inline-block;
}

.play-button2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    display: none; /* 기본적으로는 숨김 */
}

.play-button2.show {
    display: block; /* 비디오가 일시정지 상태일 때 버튼 표시 */
}

.video-container3 {
    position: relative;
    display: inline-block;
}

.play-button3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px 20px;
    font-size: 24px;
    cursor: pointer;
    display: none; /* 기본적으로는 숨김 */
}

.play-button3.show {
    display: block; /* 비디오가 일시정지 상태일 때 버튼 표시 */
}

.video-container3 video, 
.video-container2 video,
.video-container video {
    width: 100%;
    height: auto;
    aspect-ratio: 9/16; /* 비율을 16:9로 고정 */
    object-fit: cover; /* 비디오가 컨테이너를 가득 채우도록 설정 */
}



h2, h3, h4 {
	font-family: 'Raleway', sans-serif;
}
h2 {
	text-transform: uppercase;
	margin: 0 0 20px 0;
	font-weight: 800;
	font-size: 36px;
	color: #333;
}
h3 {
	font-size: 20px;
	font-weight: 600;
	color: #333;
}
h4 {
	font-size: 18px;
	color: #333;
	font-weight: 600;
}
h5 {
	text-transform: uppercase;
	font-weight: 700;
	line-height: 20px;
}
p {
	font-size: 15px;
}
p.intro {
	margin: 12px 0 0;
	line-height: 24px;
}
a {
	color: #608dfd;
	font-weight: 400;
}
a:hover, a:focus {
	text-decoration: none;
	color: #608dfd;
}
ul, ol {
	list-style: none;
}
ul, ol {
	padding: 0;
	webkit-padding: 0;
	moz-padding: 0;
}
hr {
	height: 2px;
	width: 70px;
	text-align: center;
	position: relative;
	background: #1E7A46;
	margin-bottom: 20px;
	border: 0;
}
/* Navigation */
#menu {
	padding: 15px;
	transition: all 0.8s;
}
#menu.navbar-default {
	background-color: #fff;
	border-color: rgba(231, 231, 231, 0);
	box-shadow: 0 0 10px rgba(0,0,0,0.15)
}
#menu a.navbar-brand {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #333;
	/* text-transform: uppercase; */
	background: linear-gradient(to right, #333, #333);
	-webkit-background-clip: text; /* 웹킷 기반 브라우저 (크롬, 사파리 등) */
	background-clip: text; /* 표준 속성 */
	color: transparent;
	position: relative;
  /* animation: slideInLeft 1s ease-out forwards; */

}


  
/* 애니메이션 정의 */
@keyframes slide-in {
	from {
	  left: -100%;
	}
	to {
	  left: 0;
	}
  }

  @keyframes slideInLefto {
	from {
	  transform: translateX(-100%);
	  opacity: 0;
	}
	to {
	  transform: translateX(0);
	  opacity: 1;
	}
  }
  .why{
	opacity: 1;
  }
  .hidden2 {
	opacity: 0;
	transform: translateY(40%); /* 초기 상태에서 왼쪽으로 이동시킵니다 다 사라지면 인식을 아예 못하니깐 조금 남겨놔야함 */
  }
  /* .hidden2 {
	opacity: 1;
	
  } */
  .slide-in-left {
	animation: slideInLeft 1.2s ease-out forwards;
	animation-delay: 0.3s; /* 애니메이션 시작을 0.5초 딜레이 */
  }
  /* 애니메이션 효과를 위한 CSS */
@keyframes fadeInUp {
	from {
	  opacity: 0;
	  transform: translateY(20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  /* 클래스 적용 */
  .fade-in-up {
	opacity: 0; /* 시작 시 투명도 0 */
	animation: fadeInUp 1s ease-out 0.7s forwards; /* 1초 동안 애니메이션, 1초 후 시작, 애니메이션 완료 후 상태 유지 */
	
  }
  .fade-in-up1 {
	opacity: 0; /* 시작 시 투명도 0 */
	animation: fadeInUp 1s ease-out 3s forwards; /* 1초 동안 애니메이션, 1초 후 시작, 애니메이션 완료 후 상태 유지 */
	text-align : left;

  }
  .fade-in-up2 {
	opacity: 0; /* 시작 시 투명도 0 */
	animation: fadeInUp 1s ease-out 5.5s forwards; /* 1초 동안 애니메이션, 1초 후 시작, 애니메이션 완료 후 상태 유지 */
	text-align : left;
	margin-left: 4px;
  }

  .subtitle {
	
	text-align : left;

  }

/*끝*/
  

  
#menu.navbar-default .navbar-nav > li > a {
	font-family: 'Lato', sans-serif;
	text-transform: uppercase;
	color: #555;
	font-size: 15px;
	font-weight: 400;
	padding: 8px 2px;
	border-radius: 0;
	margin: 9px 20px 0 20px;
}
#menu.navbar-default .navbar-nav > li > a:after {
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 0;
	height: 2px;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	content: "";
	transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
	width: 100%;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
	background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after, .navbar-default .navbar-nav > .active > a:hover:after, .navbar-default .navbar-nav > .active > a:focus:after {
	display: block !important;
	position: absolute !important;
	left: 0 !important;
	bottom: -1px !important;
	width: 100% !important;
	height: 2px !important;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%) !important;
	content: "" !important;
	transition: width 0.2s !important;
}
.navbar-toggle {
	border-radius: 0;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
	background-color: #fff;
	border-color: #608dfd;
}
.navbar-default .navbar-toggle:hover>.icon-bar {
	background-color: #608dfd;
}
.section-title {
	margin-bottom: 70px;
}
.section-title h2 {
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	margin-left: 15px;
	text-align: left; /* 텍스트 좌측 정렬 */
}
.section-title h2::after {
	position: absolute;
	content: "";
	background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
	height: 4px;
	width: 60px;
	bottom: 0;
	margin-left: -30px;
	left: 4px; /* 선을 좌측 정렬 */
	margin-left: 0; /* 가운데 정렬 제거 */
}
.section-title p {
	font-size: 17.2px;
	margin-left: 10px;
	margin-right: 10px;
}


.section-title2 {
	margin-bottom: 70px;
}
.section-title2 h2 {
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
	margin-left: 0px;
	text-align: left; /* 텍스트 좌측 정렬 */
}
.section-title2 h2::after {
	position: absolute;
	content: "";
	background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
	height: 4px;
	width: 60px;
	bottom: 0;
	margin-left: -30px;
	left: 4px; /* 선을 좌측 정렬 */
	margin-left: 0; /* 가운데 정렬 제거 */
}
.section-title2 p {
	font-size: 17.2px;
	margin-left: 10px;
	margin-right: 10px;
}
.btn-custom {
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	color: #fff;
	background-color: #5ca9fb;
	background-image: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
	padding: 14px 20px;
	letter-spacing: 1px;
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	border-radius: 25px;
	transition: all 0.5s linear;
	border: 0;
}
.btn-custom:hover, .btn-custom:focus, .btn-custom.focus, .btn-custom:active, .btn-custom.active {
	color: #fff;
	background-image: none;
	background-color: #6372ff;
}

/* 우선순위를 높이기 위해 더 구체적인 선택자 사용 */
button.btn-custom2 {
	font-family: 'Raleway', sans-serif !important; /* 우선순위 강제 */
	text-transform: uppercase !important;
	color: #333333 !important;
	background-color: #ffffff !important;
	padding: 14px 25px !important;
	letter-spacing: 1px !important;
	margin-top: 20px !important;
	font-size: 17px !important;
	font-weight: 600 !important;
	border-radius: 25px !important;
	transition: all 0.5s linear !important;
	border: 0 !important;
}

/* Hover 상태 */
button.btn-custom2:hover, button.btn-custom2:focus, button.btn-custom2:active {
	color: #000000 !important;
	background-color: #ffffff !important;
}

/* Active 상태 */
button.btn-custom2:active {
	transform: scale(1.15) !important;
}

.btn:active, .btn.active {
	background-image: none;
	outline: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
a:focus, .btn:focus, .btn:active:focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn.active.focus {
	outline: none;
	outline-offset: none;
}
/* Header Section */

  
.intro {
	/* display: table; */
	width: 100%;
	padding: 0;
	background: url(../img/intro-bg9.webp) center center no-repeat;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

.intro .overlay {
	background: rgba(0,0,0,0.2);
}


.intro h1 {
	font-family: 'Raleway', sans-serif;
	color: #333;
	font-size: 42px;
	font-weight: 700;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 10px;
	text-align : left;
	margin-left: 10px;
	margin-right: 10px;
}
.intro h1 span {
	font-weight: 800;
	color: #5ca9fb;
}
.intro p {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	line-height: 30px;
	margin: 0 auto;
	margin-bottom: 40px;
	margin-left: 10px;
	margin-right: 10px;
}
header .intro-text {
	padding-top: 300px;
	padding-bottom: 200px;
	/* text-align: center; */
}
/* Features Section */
#features {
	padding: 100px 0;
	background: #f6f6f6;
}
#features i.fa {
	font-size: 38px;
	margin-bottom: 20px;
	transition: all 0.5s;
	color: #fff;
	width: 120px;
	height: 120px;
	padding: 40px 0;
	border-radius: 50%;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	box-shadow: 10px 10px 10px rgba(0,0,0,.05);
}
/* About Section */
#about {
	padding: 100px 0;
	background: #ffffff;
}
#about h3 {
	font-size: 22px;
	margin: 0 0 20px 0;
}
#about h2 {
	position: relative;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
#about h2::after {
	position: absolute;
	content: "";
	background: linear-gradient(to right, #5ca9fb 0%, #6372ff 100%);
	height: 4px;
	width: 60px;
	bottom: 0;
	left: 0;
}
#about .about-text li {
	margin-bottom: 6px;
	margin-left: 6px;
	list-style: none;
	padding: 0;
}
#about .about-text li:before {
	content: '\f00c';
	font-family: 'FontAwesome';
	color: #5ca9fb;
	font-size: 11px;
	font-weight: 300;
	padding-right: 8px;
}
#about img {
	width: 520px;
	margin-top: 10px;
	background: #fff;
	border-right: 0;
	box-shadow: 0 0 50px rgba(0,0,0,0.06);
	border-radius: 20px;
}
#about p {
	line-height: 24px;
	margin: 30px 0;
}
/* Services Section */
#services {
	padding: 100px 0;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	color: #fff;
}
#services .service-desc {
	margin: 10px 10px 20px;
}
#services h2 {
	color: #fff;
}
#services .section-title h2::after {
	position: absolute;
	content: "";
	background: rgba(255,255,255,.3);
	height: 4px;
	width: 60px;
	bottom: 0;

	left: 0; /* 선을 좌측 정렬 */
	margin-left: 0; /* 가운데 정렬 제거 */
}
#services i.fa {
	font-size: 42px;
	width: 120px;
	height: 120px;
	padding: 40px 0;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	border-radius: 50%;
	color: #fff;
	box-shadow: 10px 10px 10px rgba(0,0,0,.05);
}
#services h3 {
	font-weight: 500;
	padding: 5px 0;
	color: #fff;
}
#services p {
	color: rgba(255,255,255,.75);
}
#services .service-desc {
	margin-bottom: 40px;
}
/*price*/
#pricing {
	padding: 100px 0;
	background: #f6f6f6;
  }
  .pricetext {
	color: #fff;

  }
  .pricetext2 {
	color: #333333;
	margin-bottom: 20px;
	font-size: 18px !important;
	text-align: center;

  }
  .pricetext2_1{
	color: #ffffff;
	margin-bottom: 10px;
	font-size: 20px !important;
  }
  .pricetext3 {
	color: #fff;
	margin-bottom: 20px;

  }
  .pricetext31{
	color: #8b8a8a ;
	margin-bottom: 20px;
	text-align: right;  

  }
  .price-card {
	background: #fff;
	border-radius: 25px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
	margin-bottom: 30px;
  }
  
  .price-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 22px 43px rgba(0, 0, 0, 0.15);
  }
  
  .price-card-header {
	background: #333;
	color: #fff;
	padding: 25px 0 20px 0;
  }
  
  .price-card-header h3 {
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 5px;
  }
  
  .price-card-header h4 {
	font-size: 48px;
	margin: 0;
	font-weight: 700;
  }
  
  .price-card-header .currency {
	font-size: 30px;
	position: relative;
	top: 0px;
  }
  
  .price-card-header .period {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
  }
  
  .price-card-body {
	
	padding-left: 30px;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-right: 30px;
	text-align: left;  
}
  
  .price-card-body ul {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
  }
  
  .price-card-body ul li {
	
	position: relative;
    padding: 10px 0 10px 25px; /* 아이콘을 위한 왼쪽 여백 추가 */
	border-bottom: 1px solid #e6e6e6;
  }
  
  .price-card-body ul li::before {
    content: "\2714"; /* 체크 마크 (✓) 유니코드 */
    color: rgb(28, 216, 94); /* 초록색 아이콘 */
    position: absolute;
    left: 0; /* 아이콘 위치 조정 */
    top: 50%;
    transform: translateY(-50%); /* 수직 중앙 정렬 */
    font-size: 16px; /* 아이콘 크기 */
}


.price-card-body ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%); /* 수직 중앙 정렬 */
    width: 12px; /* 이미지의 너비 */
    height: 15px; /* 이미지의 높이 */
    background-image: url(../img/portfolio/checkgreen2.webp); /* 체크 아이콘 이미지 경로 */
    background-size: contain; /* 이미지 크기 조정 */
    background-repeat: no-repeat; /* 반복 방지 */
}

  .price-card.featured {
	transform: scale(1.05);
  }
  
  .price-card.featured .price-card-header {
	background: #5ca9fb;
	background: -webkit-linear-gradient(to right, #5ca9fb, #6372ff);
	background: linear-gradient(to right, #5ca9fb, #6372ff);
  }
  
  @media (max-width: 991px) {
	.price-card.featured {
	  transform: scale(1);
	}
  }
  
  @media (max-width: 767px) {
	.price-card {
	  max-width: 400px;
	  margin-left: auto;
	  margin-right: auto;
	}
  }
  .price-card-header .original-price {
	text-decoration: line-through;
	color: rgb(255, 255, 255); /* 원래 가격 색상 */
	margin-right: 8px; /* 할인된 가격과 간격 조정 */
	font-size: 28px; /* 원래 가격 크기 */
  }
  
  .price-card-header .discounted-price {
	color: #fff; /* 할인된 가격 색상 */
	font-size: 36px; /* 할인된 가격 크기 */
	font-weight: 700; /* 할인된 가격 강조 */
  }
  .btn-custom.page-scroll {
    margin-top: 20px;
}
.subsubtitle {
	
	text-align : left;
	font-size: 13px !important;
	color: #9c9c9c;
	
  }

/*faq*/
  #faq {
	padding: 100px 0;
	background: #f6f6f6;
  }
  
  #faq .panel-group {
	margin-top: 30px;
  }
  
  #faq .panel-heading {
	padding: 0;
	border: none;
	border-radius: 0;
  }

  #faq .panel-default{
     border-color: #dddddd00;
  }
  
  #faq .panel-title a {
	display: block;
	padding: 15px;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	background-color: #f8f8f8;
	border: 1px solid #ddd;
	transition: all 0.3s ease-in-out;
	border-radius: 10px;
  }
  
  #faq .panel-title a:hover,
  #faq .panel-title a:focus {
	color: #fff;
	background-color: #5ca9fb;
	border-color: #5ca9fb;
  }
  
  #faq .panel-title a.collapsed {
	color: #333;
	background-color: #fff;
  }
  
  #faq .panel-body {
	padding: 20px;
	font-size: 16px;
	line-height: 1.6;
	border: 1px solid #ddd;
	border-top: none;
	text-align: left; 
  }
  
  @media (max-width: 768px) {
	#faq .panel-title a {
	  font-size: 16px;
	}
	
	#faq .panel-body {
	  font-size: 16px;
	}
  }
/* Portfolio Section */
#portfolio {
	padding: 100px 0;
}
.portfolio-item {
	margin: 1px -15px 0 -14px;
	padding: 0;
}
.portfolio-item .hover-bg {
	overflow: hidden;
	position: relative;
	margin: 0;
}
.hover-bg .hover-text {
	position: absolute;
	text-align: center;
	margin: 0 auto;
	color: #fff;
	background: linear-gradient(to right, rgba(99,114,255,0.8) 0%, rgba(92,169,251,0.8) 100%);
	padding: 30% 0 0 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	transition: all 0.5s;
}
.hover-bg .hover-text>h4 {
	opacity: 0;
	color: #fff;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	transition: all 0.3s;
	font-size: 18px;
	letter-spacing: 1px;
	font-weight: 500;
	text-transform: uppercase;
}
.hover-bg:hover .hover-text>h4 {
	opacity: 1;
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.hover-bg:hover .hover-text {
	opacity: 1;
}
/* Testimonials Section */
#testimonials {
	padding: 100px 0;
	background: #fff;
}
#testimonials i {
	color: #e6e6e6;
	font-size: 32px;
	margin-bottom: 20px;
}

#testimonials i.fa {
	font-size: 30px;
	margin-bottom: 20px;
	transition: all 0.5s;
	color: #fff;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	box-shadow: 10px 10px 10px rgba(0,0,0,.05);
	display: flex;
    justify-content: center;
    align-items: center;
}
.testimonial {
	position: relative;
	padding: 20px;
}

.testimonial-image {
    float: left;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;

}
.testimonial-image, .testimonial-image img {
	display: block;
	width: 64px;
	height: 64px;
	border-radius: 50%;
}
.testimonial-content {
	position: relative;
	overflow: hidden;
}
.testimonial-content p {
	margin-bottom: 0;
	font-size: 14px;
	font-style: italic;
}
.testimonial-meta {
	margin-top: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #666;
}

/*quiz*/
#quiz1{
    background: linear-gradient(135deg, #cdebf5, #c6e1d2);
 
	padding-top: 50px;
    border-radius: 0px;
    margin: 0px 0;
}
#quiz1 .section-title {
	margin-bottom: 20px;
	margin-top: 40px;
}
.survey-section {
    background: linear-gradient(135deg, #cdebf500, #c6e1d200);
    padding:90px 20px;
    border-radius: 0px;
   
	margin-top: 0px;
	margin-bottom: 30px;

  }
  .survey-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	overflow: hidden;
  }
  .progress-container {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .progress-bar {
    width: 0;
    height: 100%;
    background-color: #64c1dd;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
  }
  .question-container {
    text-align: center;
  }
  .question-container h2 {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
	text-align: left; 
	
  }
  .button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .survey-btn {
    padding: 15px 30px;
    font-size: 18px;
    border: none;
    border-radius: 14px;
    background-color: #fff;
    color: #505050;
    cursor: pointer;
	box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
	7px 7px 20px 0px rgba(0,0,0,.1),
	4px 4px 5px 0px rgba(0,0,0,.1);
	transition: all 0.3s ease, background-color 0.1s ease;
  }

  .survey-btn:hover {
    background-color: #fff;
	box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
	7px 7px 20px 0px rgba(0,0,0,.1),
	4px 4px 5px 0px rgba(0,0,0,.1);
  }

  /* .survey-btn:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.35);
  }
  .survey-btn.no-hover:hover {
	background-color: #fff;
	transform: none;
	box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  } */

  
  .survey-btn.clicked {
	animation: clickEffect 0.5s forwards;
  }
  
  @keyframes clickEffect {
	0% {
	  background-color: #f0f0f0;
	  transform: translateY(-2px);
	  box-shadow: 0 4px 8px rgba(0,0,0,0.35);
	}
	100% {
	  background-color: #fff;
	  transform: translateY(0);
	  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	}
  }
  .result {
    text-align: center;
	
  }
  .result h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }
  .result p {
    font-size: 18px;
    color: #555;
	text-align: left; 
  }
  .fade-in {
	animation: slideInLefto 1s ease forwards;
	
  }
  .fadeqq{
	animation:fadequick 0.2s ease forwards;
  }
  
  @keyframes fadeInUpDown {
	0% {
	  opacity: 0;
	  transform: translateY(50px) scale(0.9);
	}
	50% {
	  opacity: 1;
	  transform: translateY(-10px) scale(1.02);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0) scale(1);
	}
  }
  @keyframes slideInRight {
	0% {
	  opacity: 0;
	  transform: translateX(90%);
	}
	
	100% {
	  opacity: 1;
	  transform: translateX(0);
	}
  }
  @keyframes slideInLeft {
	0% {
	  opacity: 0;
	  transform: translateY(40%);
	}
	
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  @keyframes fadequick {
	0% {
	  opacity: 0;
	 
	}
	
	100% {
	  opacity: 1;

	}
  }
  @keyframes growFromBottomCenter {
	0% {
	  opacity: 0;
	  transform: scale(0.1) translateY(100%);
	}
	100% {
	  opacity: 1;
	  transform: scale(1) translateY(0);
	}
  }
  @keyframes growFromBottomRight {
	0% {
	  opacity: 0;
	  transform: scale(0.1) translate(50%, 50%);
	}
	100% {
	  opacity: 1;
	  transform: scale(1) translate(0, 0);
	}
  }
/* 이미지 애니메이션 */
@keyframes growFromTopLeft {
	0% {
	  opacity: 1;
	  transform: scale(0.1);
	  transform-origin: top left;
	}
	100% {
	  opacity: 1;
	  transform: scale(1);
	  transform-origin: top left;
	}
  }
  
  /* 애니메이션 클래스 */
  .image-animate {
	animation: growFromTopLeft 0.8s ease-out forwards;
  }
  
  /* 결과 컨테이너 애니메이션 */
  @keyframes expandContainer {
	0% {
	  max-height: 0;
	  opacity: 1;
	}
	100% {
	  max-height: 1000px; /* 충분히 큰 값으로 설정 */
	  opacity: 1;
	}
  }
  
  .result2 {
	overflow: hidden;
	max-height: 0; /* 시작 시 최대 높이를 0으로 설정 */
	opacity: 0;
	animation: expandContainer 2.4s ease-out forwards; /* 부모 요소에 애니메이션 적용 */
  }
  .result2 h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
  }
  .result2 p {
    font-size: 18px;
    color: #555;
	text-align: left; 
  }
  
  
  @media (max-width: 768px) {
    .survey-section {
      padding: 30px 16px;
    }
    .question-container h2 {
      font-size: 18px;
    }
    .survey-btn {
      font-size: 16px;
      padding: 12px 24px;
    }
	.survey-btn:hover {
		background-color: #ffffff;
		box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
		7px 7px 20px 0px rgba(0,0,0,.1),
		4px 4px 5px 0px rgba(0,0,0,.1);
	  }
  /* 애니메이션 클래스 */
  .image-animate {
	animation: growFromTopLeft 0.6s ease-out forwards;
  }

	  .result2 {
		overflow: hidden;
		max-height: 0; /* 시작 시 최대 높이를 0으로 설정 */
		opacity: 0;
		animation: expandContainer 2.4s ease-out forwards; /* 부모 요소에 애니메이션 적용 */
	  }
  }
  /*modal*/

  .modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	/* 플렉스 컨테이너로 설정 */
	/* display: flex; */
	justify-content: center;
	align-items: center;
  }

  .modal-content {
	
    background-color: #fefefe;
    margin: 0;
    padding: 20px;
    border-radius: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .modal-icon {
    font-size: 48px;
    color: #5da5fb;
    margin-bottom: 20px;
  }

  .modal h2 {
    margin-top: 0;
	font-size: 30px;
  }

  .modal-buttons {
    margin-top: 20px;
  }

  .modal-buttons button {
    padding: 10px 20px;
    background-color: #5da5fb;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

/* Team Section */
#team {
	padding: 100px 0;
}
#team h4 {
	margin: 5px 0;
}
#team .team-img {
	width: 240px;
}
#team .thumbnail {
	background: transparent;
	border: 0;
}
#team .thumbnail .caption {
	padding: 10px 0 0 0;
	color: #888;
}

/* Contact Section */
#contact {
	padding: 100px 0 60px 0;
	background: linear-gradient(to right, #6372ff 0%, #5ca9fb 100%);
	color: rgba(255,255,255,.75);
}
#contact .section-title {
	margin-bottom: 40px;
}
#contact .section-title p {
	font-size: 17px;
}
#contact h2 {
	color: #fff;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-bottom: 15px;
}
#contact .section-title h2::after {
	position: absolute;
	content: "";
	background: rgba(255,255,255,.3);
	height: 4px;
	width: 60px;
	bottom: 0;
	left: 0px;
}
#contact h3 {
	color: #fff;
	margin-top: 80px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	font-weight: 400;
}
#contact form {
	padding-top: 20px;
}
#contact .text-danger {
	color: #f2f2f2;
	text-align: left;
	font-size: 13px;
}
#contact .btn-custom {
	margin: 30px 0;
	background: transparent;
	border: 2px solid #fff;
}
#contact .btn-custom:hover {
	color: #1f386e;
	background: #fff;
}
label {
	font-size: 14px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
	float: left;
}
#contact .form-control {
	display: block;
	width: 100%;
	padding: 6px 12px;
	font-size: 17px;
	line-height: 1.42857143;
	color: #444;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ddd;
	border-radius: 4px !important;
	-webkit-box-shadow: none;
	box-shadow: none;
	-webkit-transition: none;
	-o-transition: none;
	transition: none;
}
#contact .form-control:focus {
	border-color: #999;
	outline: 0;
	-webkit-box-shadow: transparent;
	box-shadow: transparent;
}
.form-control::-webkit-input-placeholder {
color: #777;
}
.form-control:-moz-placeholder {
color: #777;
}
.form-control::-moz-placeholder {
color: #777;
}
.form-control:-ms-input-placeholder {
color: #777;
}
#contact .contact-item {
	margin: 20px 0;
}
#contact .contact-item span {
	color: rgba(255,255,255,1);
	margin-bottom: 10px;
	display: block;
}
#contact .contact-item i.fa {
	margin-right: 10px;
}
#contact .social {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding-top: 50px;
	margin-top: 50px;
	text-align: center;
}
#contact .social ul li {
	display: inline-block;
	margin: 0 20px;
}
#contact .social i.fa {
	font-size: 22px;
	width: 48px;
	height: 48px;
	padding: 12px 0;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 50%;
	transition: all 0.3s;
}
#contact .social i.fa:hover {
	color: #608dfd;
	background: #fff;
}
/*개인정보*/
.agreen-wrap {
    margin-top: 40px;
}

.agreen-wrap .title {
    font-size: 16px;
    color: #fff;
    font-weight: 500;

	display: flex;
    justify-content: space-between;
    align-items: center;
}

.agreen-wrap .view-toggle {
    font-size: 14px;
	font-weight: 700;

    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.agreen-list {
	display: none; /* Initially hidden */
    margin-top: 20px;
    border: 1px solid #CCC;
    background-color: #F8F8F800;
    padding: 20px 30px;
    font-size: 12px;
    color: #f2f2f2;
}

.agreen-list .txt {
    color: #f2f2f2;
}

.agreen-list p {
    line-height: 22px;
	font-size: 14px;
}

.agreen-list p + p {
    margin-top: 15px;
}

.check-box {
    margin-top: 10px;
}

.form-check {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin: 8px 10px 8px 0;
    line-height: 1;
}

.form-check input {
    display: block;
    overflow: hidden;
    position: absolute;
    left: 1px;
    top: 1px;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 0;
}

.form-check label {
    display: inline-block;
    position: relative;
    min-width: 14px;
    min-height: 16px;
    line-height: 16px;
    vertical-align: top;
    cursor: pointer;
}

.form-check label span {
    display: inline-block;
    padding-left: 28px;
    vertical-align: top;
	font-size: 17px;
}

.form-check label:before, .form-check label:after {
    content: '';
    position: absolute;
    top: 0;
    background: #fff;
}

.form-check label:before {
    left: 0;
    top: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #999;
    background: #fff;
}

.form-check input + label:before {
    border-color: #999;
    background: #fff;
}

/* checked */
.form-check input:checked + label:before {
    border-color: #1F4270;
    background: #1F4270;
}

.form-check input:checked + label:after {
    left: 3px;
    top: 3px;
    width: 10px;
    height: 7px;
    background: none;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
}

/* focused */
.form-check input.is-focused + label:before,
.form-check input:hover + label:before,
.form-check input:focus + label:before {
    border-color: #888;
}

.form-check input:checked:focus + label:before,
.form-check input:checked:hover + label:before {
    border-color: #333;
    transition: all 0.3s;
}



/* Footer Section*/
#footer {
	background: #f6f6f6;
	padding: 30px 0;
}
#footer p {
	color: #888;
	font-size: 14px;
}
#footer a {
	color: #608dfd;
}
#footer a:hover {
	border-bottom: 2px solid #608dfd;
}

@media (max-width: 768px) {
#about img {
	margin: 50px 0;
}
.intro {
	/* display: table; */
	width: 100%;
	padding: 0;
	background: url(../img/intro-bg9m.webp) center center no-repeat;
	background-color: #e5e5e5;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}
}

/* 롤링 배너 */
.rollingbanner {
    position: absolute;
    top: 80px; /* navbar 바로 아래에 위치하도록 */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 32px;
    font-size: .875rem;
    letter-spacing: -1px;
    padding: 7px 15px;
    box-sizing: border-box;
    background-color: #f5f3f3;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	
    z-index: 999;
}

/* 타이틀 */
.rollingbanner > .title {
    font-weight: bold;
    float: left;
    padding-right: 10px;
}

/* 롤링 배너 */
.rollingbanner > .wrap {
    position: relative;
    width: auto;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}        

.rolling ul {
    list-style: none;
}

.rollingbanner li {
    position: absolute;
    top: -36px;
    left: 0;
	font-size: 12px;
	
}

/* 이전, 현재, 다음 롤링 배너 표시 */
.rollingbanner li.prev {
    top: 36px;
    transition: top 0.5s ease;
}

.rollingbanner li.current {
    top: 0;
    transition: top 0.5s ease;
	
		color: #007bff; /* 기본 링크 색상 */

}

.rollingbanner li.next {
    top: -36px;
}

.rollingbanner a {
    display: block;
    text-decoration: none;
    overflow: hidden;
   color: #175cff;
}


#loading {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	width: 64px; /* 이미지의 너비와 동일하게 설정 */
    height: 64px; /* 이미지의 높이와 동일하게 설정 */
  }
  #loading img {
	width: 100%; /* 이미지의 너비를 50%로 줄임 */
	height: 100%; /* 이미지의 높이를 50%로 줄임 */
  }
  
  /* Floating button style */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333; /* 검은색 배경 */
    color: #fff; /* 흰색 글씨 */
    padding: 15px 30px;
    border-radius: 50px; /* 좌우 모서리 둥글게 */
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect for floating button */
.floating-btn:hover {
    background-color: #333; /* 살짝 밝은 검은색으로 변경 */
    transform: translateY(-5px); /* 살짝 위로 올라가는 효과 */
}

@media (max-width: 768px) {
	.floating-btn {
		position: fixed;
		bottom: 15px;
		right: 10px;
		background-color: #333; /* 검은색 배경 */
		color: #fff; /* 흰색 글씨 */
		padding: 15px 20px;
		border-radius: 50px; /* 좌우 모서리 둥글게 */
		text-align: center;
		font-size: 16px;
		font-weight: bold;
		box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
		cursor: pointer;
		text-decoration: none;
		transition: background-color 0.3s ease, transform 0.3s ease;
	}
	}

	/* Floating button style - Long version */
.floating-btn-long {
    position: fixed;
    top: 125px; /* 화면 상단에 위치 */
	right: 20px;
	background: linear-gradient(90deg, #42a5f5, #68c2fe); /* 밝은 파란색 그라데이션 */
    color: #fff; /* 흰색 글씨 */
    padding: 10px 20px; /* 상하좌우 여백 */
	display: inline-block; /* 텍스트 길이에 맞게 너비 조정 */
  
    border-radius: 50px; /* 둥근 모서리 */
    text-align: center; /* 텍스트 중앙 정렬 */
    font-size: 15px; /* 작은 글씨 */
    font-weight: 500; /* 글씨 두께 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* 그림자 효과 */
    cursor: pointer; /* 마우스 포인터 */
    text-decoration: none; /* 밑줄 제거 */
    transition: background-color 0.3s ease, transform 0.3s ease; /* 부드러운 효과 */
    z-index: 1000; /* 다른 요소 위에 표시 */
}

/* Hover effect for floating button */
.floating-btn-long:hover {
	color: #fff; /* 흰색 글씨 */
    background-color: #555; /* 밝은 검은색으로 변경 */
    transform: translateY(-3px); /* 살짝 위로 올라가는 효과 */
}

@media (max-width: 768px) {
    .floating-btn-long {
		position: fixed; /* 화면에 고정 */
		top: 101px; /* 수직 위치 */
		left: 50%; /* 화면의 수평 중앙 */
		transform: translateX(-50%); /* 수평 중앙 정렬 */
        padding: 8px 15px; /* 모바일에 맞는 여백 */
        font-size: 15px; /* 글씨 크기 축소 */
		display: inline-block; /* 텍스트 길이에 맞게 너비 조정 */
		text-align: center; /* 텍스트 중앙 정렬 */
		min-width: 320px; /* 모바일에서 최대 너비 제한 */
		word-wrap: break-word; /* 텍스트가 잘리지 않도록 줄바꿈 */
    }

	.floating-btn-long:hover {
        transform: translate(-50%, -3px); /* 살짝 위로 올라가는 효과 */
        background-color: #555; /* 밝은 검은색 배경 */
        color: #fff; /* 흰색 글씨 */
    }
	.mobile-break {
        display: block; /* 모바일에서는 줄바꿈 */
        margin-top: 10px; /* 위 텍스트와 간격 */
        text-align: center; /* 중앙 정렬 */
    }
	.mobile-break2 {
        display: block; /* 모바일에서는 줄바꿈 */
        margin-top: 10px; /* 위 텍스트와 간격 */
        text-align: left; /* 중앙 정렬 */
    }
}
.mobile-break {
    background: linear-gradient(to right, #ffffff, #ffffff); /* 하늘색 형광펜 느낌 */
    padding: 2px 4px; /* 텍스트 위아래 여백 */
    border-radius: 3px; /* 부드러운 모서리 */
    display: inline-block; /* 형광펜 효과 유지 */
    font-weight: bold; /* 텍스트 굵게 */
    color: #000; /* 검은색 텍스트 */
	
}
.mobile-break2 {
    background: linear-gradient(to right, #ffffff, #ffffff); /* 하늘색 형광펜 느낌 */
    padding: 2px 4px; /* 텍스트 위아래 여백 */
    border-radius: 3px; /* 부드러운 모서리 */
    display: inline-block; /* 형광펜 효과 유지 */
    font-weight: bold; /* 텍스트 굵게 */
    color: #000; /* 검은색 텍스트 */
}
