/* main.css - 메인화면 전용 스타일 */
.main-container {
	max-width: 85%;
	margin: 0 auto;
}

.desktop.main-container {
	max-width: unset;
	margin: 0;
	width: calc(100% - 280px);
	margin-left: 280px;
}

.main-visual-container {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 20px;
	height: 580px;
	margin-top:0;
}

.main-visual {
	position: relative;
	overflow: hidden;
	height: 100%;
	width: 100%;
	background-image: url(../images/main_visial_bg.jpeg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #0077d636;
	background-blend-mode: screen;
	box-sizing: border-box;
	/* padding: 120px 40px 50px 40px; */
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	border-radius: 0; /* 기존 스타일과 일치시킴 */
	filter: brightness(0.92); /* 기존 이미지 필터와 일치 */
}

.video-wrapper {
	position: relative;
	width: 100%;
	height: 100vh; /* 필요에 따라 조정 */
	overflow: hidden;
}

.background-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	-webkit-object-fit: cover;
	-webkit-object-position: center center;
}
/* 비디오 컨트롤 숨기기 */
.background-video::-webkit-media-controls, .background-video::-webkit-media-controls-play-button,
	.background-video::-webkit-media-controls-start-playback-button,
	.background-video::-webkit-media-controls-panel {
	display: none !important;
	opacity: 0 !important;
}

/* 기존 텍스트 z-index 값 증가 */
.main-visual-content {
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 80%;
	transform: translate(-50%, -80%);
	display: flex;
	flex-direction: column;
	gap: 100px;
	width: 100%;
	align-items: center;
}

.main-visual-text {
	color: #fff;
	text-align: center;
}

.main-visual-text>p {
	font-size: 1.5em;
	margin-bottom: .5em;
}

.main-visual-text>h1 {
	font-size: 3em;
	font-weight: 600;
	margin-bottom: 18px;
	line-height: 1.1;
}

.main-visual-text span.font-600 {
	font-weight: 600;
}

.main-visual-menu {
	display: flex;
	align-items: center;
	gap: 50px;
}

.main-visual-menu>li {
	border-radius: 8px;
	padding: 40px 30px;
	box-shadow: 5px 5px 10px #0000004d;
	cursor: pointer;
}

.main-visual-menu>li>a {
	display: flex;
	align-items: center;
	gap: 50px;
}

.main-visual-menu>li:nth-child(1) {
	background: #003f94;
}

.main-visual-menu>li:nth-child(1) p.circle-btn {
	color: #003f94;
}

.main-visual-menu>li:nth-child(2) {
	background: #00b9ff;
}

.main-visual-menu>li:nth-child(2) p.circle-btn {
	color: #00b9ff;
}

.main-visual-menu>li:nth-child(3) {
	background: #2bbc9f;
}

.main-visual-menu>li:nth-child(3) p.circle-btn {
	color: #2bbc9f;
}

.main-visual-menu li {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-visual-menu li:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.main-visual-menu li a {
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

/* 카드 내부 요소들 hover 효과 */
.main-visual-menu li:hover .menu-box h2 {

    transform: scale(1.05);
    transition: all 0.3s ease;
}

.main-visual-menu li:hover .menu-box p {

    transition: color 0.3s ease;
}

/* 화살표 버튼 hover 효과 */
.main-visual-menu li .circle-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.main-visual-menu li:hover .circle-btn {
    background: #ffd335;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.main-visual-menu li:hover .circle-btn i {
    transform: translateX(2px);
    transition: transform 0.3s ease;
}

/* pulse 효과 (선택사항) */
.main-visual-menu li .circle-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.main-visual-menu li:hover .circle-btn::before {
    width: 120%;
    height: 120%;
}

/* 카드 배경 밝아지는 효과 */
.main-visual-menu li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    border-radius: inherit;
    transition: all 0.3s ease;
    pointer-events: none;
}

.main-visual-menu li:hover::before {
    background: rgba(255, 255, 255, 0.1);
}

/* 부드러운 애니메이션을 위한 기본 설정 */
.main-visual-menu li {
    position: relative;
    will-change: transform;
}

.menu-box {
	color: #fff;
}

.menu-box h2 {
	font-size: 1.5em;
	margin-bottom: 1rem;
}

p.circle-btn {
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 5px 5px 10px #00000026;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2em;
}

.main-search-form {
	display: flex;
	align-items: center;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 40px;
	padding: 15px 20px;
	box-shadow: 0 2px 10px rgb(0 0 0/ 21%);
	width: 70%;
	display: none;
}

.main-search-form input {
	border: none !important;
	outline: none;
	background: transparent !important;
	font-size: 1.1rem;
	padding: 8px 0 8px 8px;
	width: 100%;
}

.main-search-btn {
	border: none;
	width: 32px;
	height: 32px;
	cursor: pointer;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-search-btn::before {
	content: '\F52A';
	font-family: 'bootstrap-icons' !important;
	font-size: 2em;
	color: #019ac4;
}

.main-info-box {
	background: linear-gradient(147deg, #4c9bc2, #369db6, #0ea3a3);
	color: #fff;
	border-radius: 16px;
	box-sizing: border-box;
	padding: 30px;
	box-shadow: 0 2px 12px rgba(30, 144, 228, 0.07);
	width: 35%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.main-info-title {
	font-size: 1.6rem;
	font-weight: 500;
	margin-bottom: 16px;
	position: relative;
}

.main-info-title button {
	background: transparent;
	position: absolute;
	right: 0px;
}

.main-info-title button:after {
	content: '\F3E5';
	font-family: 'bootstrap-icons' !important;
	font-size: 1.6rem;
	color: #fff;
}

.main-info-content {
	box-sizing: border-box;
	padding: 10px;
}

.main-info-content>div {
	margin-bottom: 14px;
	font-weight: 700;
	font-size: 1.2rem;
	align-items: center;
}

.main-info-content>div.login-message {
	margin-bottom: 0;
}

.main-info-box.login .main-info-content>div {
	display: flex;
	gap: 10px;
}

.main-info-content span {
	font-weight: 400;
	margin-left: 8px;
	flex: 1;
	min-width: 0;
	overflow: visible;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.main-info-status {
	padding: 20px;
	background: #ffffff36;
	border-radius: 8px;
	margin-bottom: 0;
	margin: 0 !important;
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
}

.main-info-status a {
	color: white;
}

.main-info-status:after {
	content: '\F285';
	font-family: 'bootstrap-icons' !important;
	font-size: 1.5rem;
	color: #fff;
	position: absolute;
	right: 20px;
}

.main-info-status-btn {
	background: #fff;
	color: #1e90e4;
	border: none;
	border-radius: 16px;
	padding: 4px 18px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	margin-left: 8px;
}

.main-notice-section {
	display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background:#e8f3fd;
    padding:20px 13%;
}

.main-notice-wrap {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: calc(100% - 100px);
}

.main-notice-title {
	font-size: 1.2rem;
	font-weight: 600;
	display: flex;
	flex-shrink: 0;
	margin-right: 20px;
	align-items: center;
	color: #0d4aa6;
}

.main-section-title {
	font-size: 1.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	color: #0d4aa6;
}

.main-notice-more-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-notice-more {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	font-size: 1.5em;
	color: #0d4aa6;
	border: 1px solid #0d4aa6;
	display: flex;
    align-items: center;
    justify-content: center;
}

.main-notice-list {
	padding: 0;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
	flex: 1;
	width:100%;
}

.main-notice-list li {
    flex: 1; /* 남은 공간을 모두 차지 */
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 0;
}
.main-notice-list li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    width:100%;
}
.main-notice-list li span {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #000;
	font-weight: 500;
}

.main-notice-date {
	color: #adadad;
	font-size: 1.1rem;
	font-weight: 400;
}

.main-solution-section, .main-site-section {
	padding: 20px 13%;
}

.main-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.main-solution-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
}

.solution-tabs {
	display: flex;
	gap: 25px;
}

.solution-tab {
	padding: 8px 0px;
	color: #151616;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.2s ease;
	font-weight: 500;
}

.solution-tab.active {
	color: #1853aa;
	font-weight: 600;
}

.solution-tab:hover:not(.active) {
	color: #151616;
}

.solution-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.solution-item {
	display: flex;
	align-items: center;
	cursor: pointer;
	transition: background-color 0.2s ease;
	background: #fff;
	border-radius: 40px;
	box-sizing: border-box;
	padding: 15px 30px;
	margin: 10px 0;
	border: 1px solid #d9d9d9;
}

.solution-item:hover, .solution-item:focus {
	border: 3px solid #0d4aa6;
}

.solution-icon {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-size: 1.1rem;
	font-weight: 600;
	text-align: left;
	min-width: 150px; /* 고정 너비 설정 */
	flex-shrink: 0; /* 축소되지 않도록 */
}

.solution-icon.question {
	color: #00b9ff;
}

.solution-icon.mediaGuide {
	color: #2bbc9f;
}

.solution-icon.imageGuide {
	color: #1752aa;
}

.solution-icon.prdManual {
	color: #6f42c1;
}

.solution-content {
	flex: 1;
	min-width: 0;
	margin-right: 20px;
}

.solution-text {
	font-size: 1rem;
	color: #151616;
	line-height: 1.4;
	font-weight: 500;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; /* 한 줄로 제한 */
}

.solution-tag {
	font-size: 12px;
	color: #999;
	margin-top: 4px;
	display: none;
}

.solution-item:has(.solution-icon.question) .list_add {
	background-color: #00b9ff;
}

.solution-item:has(.solution-icon.mediaGuide) .list_add {
	background-color: #2bbc9f;
}

.solution-item:has(.solution-icon.imageGuide) .list_add {
	background-color: #1752aa;
}

.solution-item:has(.solution-icon.prdManual) .list_add {
	background-color: #6f42c1;
}

p.list_add {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: visible; /* visible로 변경 */
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index:3;
}

/* 지속적인 pulse 효과 */
p.list_add::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: inherit;
	opacity: 0.4;
	transform: translate(-50%, -50%);
	animation: pulse-expand 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 1;
}

/* 두 번째 pulse 효과 (딜레이) */
p.list_add::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: inherit;
	opacity: 0.1;
	transform: translate(-50%, -50%);
	animation: pulse-expand 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
	animation-delay: 2s;
}
/* pulse 애니메이션 */
@keyframes pulse-expand {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}
.solution-arrow {
	color: #fff;
	font-size: 1.5em;
}

.main-service-section {
	display: flex;
	flex-direction: column;
	padding: 20px 13%;
}

.main-service-item-container {
	gap: 40px;
	display: flex;
}

.main-service-column {
	display: flex;
	flex-direction: column;
	gap: 25px;
	flex: 0.5;
}

.main-service-item {
	flex: 0.5;
	background: #fff;
	border-radius: 26px;
	padding: 50px 30px;
	text-align: left;
	cursor: pointer;
}

.main-service-item {
	position: relative;
}

#contactInfo {
	background-image: url(../images/contactBg.png);
	background-size: 100%;
	background-position: right bottom;
	background-repeat: no-repeat;
	background-color: #d3eaff;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}

.contactInfo-title {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contactInfo-title p {
	background: #2d8dde;
	width: fit-content;
	padding: 10px 40px;
	border-radius: 50px;
	color: #fff;
	font-weight: 500;
}

.contactInfo-title h2 {
	font-size: 2.5em;
	color: #000;
	font-weight: 700;
}

.contactInfo-desc {
	color: #6d9ec9;
	font-weight: 500;
}

.contactInfo-desc p {
	font-size: 1.2rem;
	line-height: 1.4;
}

.main-service-item img {
	position: absolute;
	right: 10px;
	bottom: 50%;
	width: 23%;
	transform: translate(-10px, 50%);
}

.main-service-title {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 0px;
}

.main-service-desc {
	color: #ffffffc9;
	font-size: 1.2rem;
	font-weight: 400;
}

.main-service-solve {
	background: #d8f4ff;
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.main-service-as {
	background: #d8e1ff;
	color: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ###########참고사이트 css ############# */
.main-site-section {
	height: fit-content;
}
/* Swiper 컨테이너 */
.site-swiper {
	width: 100%;
	overflow: hidden;
	padding-bottom: 50px !important;
	padding-top: 10px !important;
	padding-left: 10px !Important;
	padding-right: 10px !Important;
}

.site-swiper .swiper-wrapper {
	align-items: stretch;
}
.swiper-wrapper>div:nth-child(2) .site-card{
	background-image: url(/images/siteImg_1.png);
    background-size: 35%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(3) .site-card{
	background-image: url(/images/siteImg_2.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(4) .site-card{
	background-image: url(/images/siteImg_3.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(5) .site-card{
	background-image: url(/images/siteImg_4.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}

.swiper-wrapper>div:nth-child(6) .site-card{
	background-image: url(/images/siteImg_5.png);
    background-size: 35%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(7) .site-card{
	background-image: url(/images/siteImg_6.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(8) .site-card{
	background-image: url(/images/siteImg_7.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(9) .site-card{
	background-image: url(/images/siteImg_8.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}

.swiper-wrapper>div:nth-child(10) .site-card{
	background-image: url(/images/siteImg_9.png);
    background-size: 35%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(11) .site-card{
	background-image: url(/images/siteImg_10.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(12) .site-card{
	background-image: url(/images/siteImg_11.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
.swiper-wrapper>div:nth-child(13) .site-card{
	background-image: url(/images/siteImg_12.png);
    background-size: 30%;
    background-position: right 20px bottom 20px;
    background-repeat: no-repeat;
}
/* 사이트 카드 스타일 */
.site-card {
	background: #fff;
	border-radius: 26px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	border: 1px solid #e5e7eb;
	transition: all 0.3s ease;
	cursor: pointer;
	height: 180px;
	position: relative;
}

.site-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* 사이트별 배경색 */
.site-card.keris {
	background: linear-gradient(135deg, #22aea9 0%, #0380c5 100%);
	color: #fff;
}

.site-card.keris .site-title {
	font-size: 1.2rem;
	font-weight: 500;
}

.site-card.keris .site-arrow {
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	font-size: 1.5rem;
	background: #ffffff42;
}

.site-card.keris:hover .site-arrow {
	background: #ffffff26;
}

/* 사이트 로고/아이콘 영역 */
.site-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 15px;
	backdrop-filter: blur(10px);
}

.site-title {
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 8px;
	line-height: 1.3;
}

.site-subtitle {
	font-size: 14px;
	font-weight: 500;
	opacity: 0.9;
	margin-bottom: auto;
	line-height: 1.3;
	display: none;
}

/* 화살표 아이콘 */
.site-arrow {
	position: absolute;
	bottom: 65%;
	right: 20px;
	width: 35px;
	height: 35px;
	background: #2d8dde;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	transition: all 0.3s ease;
	border-radius: 50%;
}

.site-card:hover .site-arrow {
	background: #2d8ddeb0;
	transform: translateX(2px);
}

/* Swiper Pagination */
.site-swiper .swiper-pagination {
	bottom: 10px;
}

.site-swiper .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #d1d5db;
	opacity: 1;
	transition: all 0.3s ease;
}

.site-swiper .swiper-pagination-bullet-active {
	background: #3b82f6;
	transform: scale(1.2);
}

/* 반응형 */
@media ( max-width : 768px) {
	.main-site-section {
		padding: 24px 16px;
	}
	.site-card {
		height: 160px;
		padding: 20px;
	}
	.site-icon {
		width: 40px;
		height: 40px;
		font-size: 20px;
	}
	.site-title {
		font-size: 14px;
	}
	.site-subtitle {
		font-size: 12px;
	}
}
/* ############################## 마이페이지 모달 CSS */
body {
	color: #555;
	background: #f4faff;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

a {
	color: #222;
	text-decoration: none;
}

.container {
	width: 100%;
	padding: 0;
}

ul.tabs {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	width: 100%;
	border-bottom: 2px solid #2196f3;
	position: relative;
	margin-top: 10px;
}

ul.tabs li {
	padding: 12px 20px;
	cursor: pointer;
	color: #aaa;
	font-weight: 500;
	position: relative;
	background-color: transparent;
	border: 2px solid transparent;
	position: relative;
	top: 2px;
}

ul.tabs li.on {
	background-color: #fff;
	border: 2px solid #2196f3;
	border-bottom: none;
	font-weight: 600;
	z-index: 2;
	color: #008CFF;
}

.tabs .tab-item a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 12px 20px;
	box-sizing: border-box;
	color: #A8A8A8;
	text-decoration: none;
}

.tabs .tab-item {
	padding: 0;
	position: relative;
	border: 2px solid transparent;
	background-color: transparent;
	cursor: pointer;
}

.tabs .tab-item.on a {
	color: #008CFF;
	font-weight: 600;
	border-bottom: 1px solid #fff;
}

.tabs .tab-item.on {
	background-color: #fff;
	border: 2px solid #2196f3;
	border-bottom: none;
	z-index: 2;
	box-sizing: border-box;
}

#tab-info {
	border-top: none;
}

.tab-content {
	display: none;
	background-color: #fff;
	border-top: none;
}

.tab-content.on {
	display: block;
}

#mypageModal .modal-dialog {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}

.information-box {
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.form-row {
	display: flex;
	flex-direction: row;
	gap: 30px;
	margin-top: 30px;
	width: 100%;
	box-sizing: border-box;
	justify-content: flex-start;
}

.form-group {
	flex: 1;
	min-width: 0;
}

.form-group label {
	font-size: 17px;
	color: #000;
}

.required {
	color: red;
	margin-left: 4px;
}

.form-group input[type="text"], .form-group input[type="email"],
	.form-group select, .form-group input[type="password"] {
	height: 50px;
	padding: 0 14px;
	font-size: 14px;
	border-radius: 4px;
	/* border: 1px solid #ccc; */
	box-sizing: border-box;
}

.form-group input::placeholder {
	color: #AFAFAF;
}

/* 학년/반/번호 */
.grade-inputs {
	display: flex;
	flex-direction: row;
	gap: 8px;
	width: 100%;
	box-sizing: border-box;
}

.grade-inputs input {
	flex: 1;
	min-width: 0;
	height: 50px;
	padding: 0 10px;
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

/* 학교명 검색 */
.select-btn {
	display: flex;
	gap: 8px;
	flex-wrap: nowrap;
	box-sizing: border-box;
}

.select-btn input {
	width: 100%;
}

.select-btn .btn-gray, .auth-area .btn-gray {
	height: 50px;
	font-size: 16px;
	border: none;
	border-radius: 5px;
	padding: 0 20px;
	background-color: #4d4d4d;
	color: #fff;
	cursor: pointer;
	white-space: nowrap;
}

.select-btn .btn-gray:hover {
	background-color: #000000;
}

.input-row {
	display: flex;
	gap: 10px;
	align-items: center;
	width: 90%;
}

.input-row .input-product {
	flex: 1;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

#asStatus {
	background-color: #EDF9FF;
	color: #008CFF;
	border: none;
}

.form-group input[type="email"] {
	border: 1px solid #E3E3E3;
	border-radius: 4px;
	padding: 10px 12px;
	font-size: 14px;
	background-color: #fff;
	color: #333;
}

.information-box input[type="text"] {
	border: 1px solid #E3E3E3;
	border-radius: 4px;
	padding: 10px 12px;
	font-size: 14px;
	background-color: #fff;
	color: #666666;
}

.information-box input[type="text"][readonly] {
	background-color: #f9f9f9;
	color: #BEBEBE;
	cursor: not-allowed;
}

.information-box input[type="password"][readonly] {
	background-color: #f9f9f9;
	color: #BEBEBE;
	cursor: not-allowed;
}

input[type="text"]:focus:not(.search-input),
input[type="email"]:focus:not(.search-input),
input[type="password"]:focus:not(.search-input),
select:focus {
	outline: none;
	border: 1px solid #008CFF;
	box-shadow: 0 0 0 2px rgba(0, 140, 255, 0.2);
}

/* 마이페이지 비밀번호 변경 모달 */
.popup-modal {
	display: none;
	position: fixed;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -30%);
	background: white;
	padding: 20px;
	border: 1px solid #ccc;
	z-index: 999;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
	border-radius: 6px;
}

.modal-body-title h5 {
	font-size: 25px;
	margin-bottom: 5px;
	color: black;
	text-align: left;
}

.modal-body-title p {
	color: #666;
	margin-bottom: 10px;
}

.modal-body-contents {
	display: flex;
	flex-direction: column;
	gap: 0px;
}

.password-input-field {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.password-input-field label {
	font-weight: 600;
}

.password-input-field .required {
	color: red;
	margin-left: 4px;
}

.password-input-field input.form-control {
	padding: 8px;
	border-radius: 4px;
	border: 1px solid #ccc;
}

#confirmChangeModal .modal-dialog {
	max-width: 400px;
}

.auth-area {
	display: flex;
	gap: 8px;
	align-items: center;
	margin-top: 8px;
}

.auth-area input {
	flex: 1;
	height: 40px;
	padding: 8px;
	font-size: 14px;
	width: 100%;
}

.btn-uniform {
	height: 40px;
	padding: 8px 12px;
	font-size: 14px;
	text-align: center;
	white-space: nowrap;
	border: none;
	border-radius: 4px;
}

@media screen and (max-width: 1700px) {
	.main-visual-menu {
		gap: 20px;
	}
	.main-visual-menu>li>a {
		gap: 20px;
	}
	.menu-box h2 {
		font-size: 1.2em;
	}
	.menu-box p {
		font-size: 0.8em;
	}
	.main-notice-section {
		padding: 5px 8%;
	}
	.main-solution-section, .main-service-section, .main-site-section {
		padding: 20px 8%;
	}
}

@media screen and (max-width: 1420px) {
	.main-container {
		max-width: 90%;
		padding: 0;
	}
	.menu-box h2 {
		font-size: 1em;
	}
	.menu-box p {
		font-size: 0.8em;
	}
	.main-notice-section {
		padding: 5px 5%;
	}
	.main-solution-section, .main-service-section, .main-site-section {
		padding: 20px 5%;
	}
}

@media screen and (max-width: 1199px) {
	.mobile.main-container {
		padding: 60px 0px;
		max-width: 100%;
		margin-left: 0 !important;
		width: 100%;
	}
	.main-visual-container {
		flex-direction: column;
		height: auto;
		gap: 20px;
	}
	.mobile .main-visual {
		width: 100%;
		height: 250px;
	}
	.mobile .main-visual-content {
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.main-visual-menu {
		display: none;
	}
	.main-info-box {
		width: 100%;
	}
	.main-notice-section{
		padding:10px 5%;
	}
	.main-notice-title{
		font-size:1rem;
	}
	.main-section-title {
		font-size: 1.1rem;
	}
	.main-notice-list li span {
		font-size: 0.8rem;
	}
	.main-notice-more {
		width: 30px;
		height: 30px;
		font-size: 1.3rem;
	}
	.solution-tab {
		font-size: 0.9rem;
	}
	.solution-icon {
		font-size: 0.8rem;
		min-width:110px;
	}
	
	p.list_add{
		width:30px;
		height:30px;
		font-size:1rem;
	}
	.solution-item {
		padding: 10px 20px;
	}
	
	.solution-text{
		font-size:0.8rem;
	}
	
	
	.main-service-column{
		flex-direction:row;
	}
	#contactInfo{
		background-size:contain;
	}
	.contactInfo-title{
		gap:15px;
	}
	.contactInfo-title p{
		font-size:0.8rem;
	}
	.contactInfo-title h2{
		font-size:2em;
	}
	
	.contactInfo-desc p{
		font-size:0.8em;
	}

	.main-service-item img {
		width: 70px;
		right: 30px;
	}
	.main-service-item-container {
		flex-direction: column;
		gap: 15px;
	}
	.main-service-item {
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 40px 30px;
		height: 120px;
		position: relative;
		overflow: hidden;
		border-radius:16px;
	}
	.main-service-title {
		font-size: 1.5em;
	}
	.main-service-desc {
		font-size: 1.1rem;
	}
	.main-service-item img {
		width: 100px;
		right:10px;

	}

	/* 서비스 아이템 색상 재정의 */
	.main-service-as {
		background: #00b1b6;
	}
	.main-service-solve {
		background: #d8f4ff;
	}
	.main-service-as {
		background: #d8e1ff;
	}
}

@media (max-width : 1024px){
	.swiper-wrapper>div:nth-child(2) .site-card{
    background-size: 30%;
}
.swiper-wrapper>div:nth-child(3) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(4) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(5) .site-card{
    background-size: 25%;
}

.swiper-wrapper>div:nth-child(6) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(7) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(8) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(9) .site-card{
    background-size: 25%;
}

.swiper-wrapper>div:nth-child(10) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(11) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(12) .site-card{
    background-size: 25%;
}
.swiper-wrapper>div:nth-child(13) .site-card{
    background-size: 25%;
}
}


@media ( max-width : 959px) {
	.main-visual {
		height: 450px;
	}
	.main-visual-text {
		bottom: 0;
	}
	.main-visual-text {
		gap: 20px;
	}
	.main-visual-text h1 {
		font-size: 2.5rem;
	}
}

@media ( max-width : 767px) {
	#mypageModal .modal-dialog {
		
	}
	.main-container {
		padding: 20px 0px;
		padding-top: 80px;
	}
	.main-visual {
		height: 450px;
	}
	.main-visual-text {
		gap: 0;
		padding-left: 20px;
	}
	.main-visual-container {
		gap: 15px;
	}
	.main-visual-text h1 {
		font-size: 1.8rem;
	}
	.main-search-form {
		padding: 5px 20px;
	}
	.main-search-form {
		width: 80%;
	}
	.main-search-form {
		font-size: 1.4rem;
	}
	.main-search-btn::before {
		font-size: 1.4rem;
	}
	.main-info-box {
		padding: 20px;
	}
	.main-info-content>div {
		font-size: 1rem;
	}
	.main-info-content span {
		font-size: 0.9rem;
	}
	.login-message p {
		font-size: 16px !important;
	}
	.main-info-title {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	.main-info-title button:after {
		font-size: 1.2rem;
	}
	.main-info-status:after {
		font-size: 1rem;
	}
	
	
	.main-notice-list {
		padding: 0;
	}

	.main-notice-title {
		font-size: 0.8rem;
	}
	.main-notice-section{
		padding:10px 5%;
	}
	.main-notice-more{
		width:25px;
		height:25px;
	}
	.main-solution-section, .main-service-section, .main-site-section{
		padding:20px 5%;
	}
	
	
	.main-section-title {
		font-size: 1rem;
	}
	
	.main-section-header{
		flex-direction: column;
		gap:10px;
		margin-bottom:0;
	}
	
	.solution-tabs{
		gap:5px 10px;
		flex-wrap: wrap;
	    align-items: center;
	    justify-content: center;
	}
	
	.solution-tab{
		font-size:0.8rem;
		padding:0;
	}
	
	.solution-list{
		margin-top:20px;
	}
	.solution-icon{
		min-width:100px;
	}
	p.list_add{
		width:25px;
		height:25px;
		font-size:0.9rem;
		display:flex;
	}
	.main-service-item {
		padding: 20px 25px;
	}
	.main-service-title {
		font-size: 1rem;
	}
	.main-service-desc {
		font-size: 1rem;
	}
	.main-service-item img {
		width: 60px;
	}
	.main-service-column{
		flex-direction:column;
		gap:10px;
	}
	.contactInfo-title h2{
		font-size:1.5em;
	}
	.site-card{
	
		border-radius:16px;
	}
	
	.site-card.keris .site-title{
		font-size:1.1rem;
	}
	
	.site-title{
		font-size:1.1rem;
	}
	.site-swiper{
		padding-top:20px !important;
	}
	/*   #######################################################   */
	.modal-body {
		flex: 1;
		min-width: 0;
	}
	.information {
		padding: 20px 10px;
		gap: 20px;
	}
	.form-group label {
		font-size: 14px;
	}
	.form-group input[type="text"] {
		height: 40px;
		padding: 0 10px;
		font-size: 13px;
	}
	.form-group input::placeholder {
		color: #AFAFAF;
		font-size: 12px;
	}
	.form-group input[type="text"], .form-group input[type="email"],
		.form-group input[type="password"], .form-group select {
		font-size: 12px;
		border-radius: 4px;
		border: 1px solid #ccc;
		box-sizing: border-box;
	}
	.input-box .input-num {
		width: 100%;
		outline: none;
	}
	.input-box .input-row {
		display: flex;
		gap: 8px;
	}
	.information-box .form-row {
		flex-direction: column;
		gap: 20px;
		margin-top: 20px;
	}
	.select-btn .btn-gray, .auth-area .btn-uniform {
		height: 40px;
		padding: 0 12.5px;
		font-size: 0.8rem !important;
		border-radius: 5px;
	}
	.info-note ul {
		font-size: 0.8rem;
	}
	.grade-inputs {
		flex-direction: row;
		width: 100%;
		gap: 10px;
	}
	.grade-inputs input {
		width: 100%;
	}
	ul.tabs li {
		padding: 10px;
		font-size: 14px;
	}
	.modal-body-title h5 {
		font-size: 23px;
		margin-bottom: 5px;
		color: black;
	}
}

.top-login-btn{
    position:fixed;   /* 스크롤해도 화면에 고정 */
    top:20px;
    right:20px;
    z-index:9999;
}

.top-login-btn a{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    width:70px;
    height:70px;
    background:#bacfef;
    border-radius:50%;
    text-align:center;
    text-decoration:none;
    color:#2e3a66;
    font-size:11px;
    font-weight:600;
    line-height:1.2;
    transition:all 0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.top-login-btn img{
    width:18px;
    margin-bottom:4px;
}

.top-login-btn a:hover{
    background:#08384d;
    color:#fff;
}

/* 모바일 숨김 */
@media screen and (max-width:1199px){
    .top-login-btn{
        display:none;
    }
}