@charset "UTF-8";

input, textarea {
	background-color: white;
}

ul.ulOri {
    display: block;
    list-style-type: disc;
    list-style: initial;
  	padding-left: 1.5em; /* 불릿+텍스트 간격 */
}

ul.ulOri li {
    display: list-item;
    list-style: initial;
}

/* header */
#headPrimary {
    position: sticky;
    top: 0;
    height: 3.2rem;
    background-color: rgb(var(--clr-background));
    z-index: 9999;
}
#headPrimary > .inner-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
}

#logoPrimary { height: 1.6rem; }
#logoPrimary > svg { height: 100%; }
#logoPrimary .logo-main { fill: rgb(32 121 139); }
#logoPrimary .logo-point { fill: rgb(92 183 119); }

#areaBranding,
#navPrimary,
#areaControls {
    display: flex;
    align-items: center;
}

#areaBranding { justify-content: flex-start; }
#navPrimary { justify-content: center; }

#navPrimary > a { display: block; padding: 0.6rem; }
#navPrimary > a.active { color: rgb(var(--clr-theme)); font-weight: 700; }

#areaControls {
    justify-content: flex-end;
}

#btnInquiry {
    padding: 0.8rem 1.2rem;
    border-radius: var(--rad-full);
    background-color: rgb(var(--clr-theme));
    color: rgb(var(--clr-text-0));
    font-weight: 700;
}

/* 모바일 네비게이션 */

#mobileContainer {
    display: none;
    position: relative;
}

#btnBurger {
    anchor-name: --burger-button;

    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: var(--rad-full);
    background-color: lavender;
    outline: 1px solid slateblue;

}


 #btnBurger > .burger-slice {
        display: block;
        position: absolute;
        inset: 0;
        margin: auto;
        width: 0.1rem;
        height: 0.6rem;
        border-radius: var(--rad-full);
        background-color: currentColor;
        transition: 0.25s ease-out;
}
#btnBurger > .burger-slice.top{ margin-inline-start: 0.7rem; }
#btnBurger > .burger-slice.middle{ }
#btnBurger > .burger-slice.bottom{ margin-inline-end: 0.7rem; }

 #btnBurger:focus {
        background-color: slateblue;
        outline: 0.2rem solid darkslateblue;
        outline-offset: 0.1rem;
        color: rgb(var(--clr-text-0));
}
#btnBurger:focus > .burger-slice.top { margin-inline-start: 0.6rem; height: 0.6rem; }
#btnBurger:focus > .burger-slice.middle { height: 0.3rem; }
#btnBurger:focus > .burger-slice.bottom { margin-inline-end: 0.6rem; height: 0.6rem; }

#popMobile {
    position: absolute;
    position-anchor: --burger-button;
    position-area: bottom span-left;
    right: anchor(right);
    margin-top: 0.8rem;
    padding: 0.8rem;
    width: max-content;
    border: 0;
    border-radius: var(--rad-sm);
    background-color: white;
    box-shadow: 0 0.8rem 1.2rem -0.8rem rgb(var(--clr-black) / 0.25);
    outline: 0;
    color: inherit;
    overflow: clip;

    &:popover-open {
    }
}

#navMobile {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.8rem;
}

/* 반응형 쿼리 */

@container main-container (max-width: 1400px) {
}

@container main-container (max-width: 960px) {
    #headPrimary > .inner-wrapper {
		grid-template-columns: repeat(2, 1fr);
    }

    #navPrimary,
    #btnInquiry {
        display: none;
    }

    #mobileContainer {
        display: initial;
    }
}

@container main-container (max-width: 640px) {
    #logoPrimary {
        height: 1rem;
    }
}

/* 번역 토글 버튼 */
.trans {
	display: flex;
	width: 117px;
	height: 38px;
	padding: 5px 8px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	border-radius: 62px;
	border: 1px solid #F0F0F0;
	background: #F3F3F3;
}

.trans a {
	display: flex;
	width: 41px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	align-self: stretch;
	color: #BDBDBD;
	text-align: center;
	font-family: "NanumSquareNeo";
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 160%; /* 22.4px */
}
.trans a.on {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	align-self: stretch;
	border-radius: 49px;
	background: #FFF;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
	color: #6D727D;
	text-align: center;
	font-family: "NanumSquareNeo";
	font-size: 14px;
	font-style: normal;
	font-weight: 800;
	line-height: 160%; /* 22.4px */
}


/* main page */
.main .about {
	display: flex;
	width: 1200px;
	padding: 64px;
	align-items: flex-start;
	gap: 80px;
	border-radius: 12px;
	background: #E8F1F3;
}

.main .about .left {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex: 1 0 0;
	align-self: stretch;
}

.main .about .left .top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}

.main .about .left .top .title {
	color: #04543D;
	font-family: Paperlogy;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 68px; /* 141.667% */
	letter-spacing: -0.96px;
}
.main .about .left .top .descript {
	color: #171A1F;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	letter-spacing: -0.36px;
}

.main .about .left .bottom {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}

.main .about .left .bottom .row {
	display: flex;
	padding-left: 16px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	
	color: #171A1F;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px; /* 155.556% */
	
	border-bottom: 1px solid var(--main-color-00, #5CB777);
}

.main .about .left .bottom .row.on {
	color: #04543D;
	font-weight: 700;
	line-height: 32px; /* 177.778% */
}

.main .about .right {
	width: 484px;
	height: 502px;
}

.main .management {
	display: flex;
	width: 1200px;
	flex-direction: column;
	align-items: center;
	gap: 36px;
}

.main .management .title {
	color: #04543D;
	text-align: center;
	font-family: Paperlogy;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 68px; /* 141.667% */
	letter-spacing: -0.96px;
}

.main .management .content {
	display: grid;
	grid-template-columns: repeat(3, 1fr); /* 3개씩 배치 */
	gap: 32px;
	align-self: stretch;
}

.main .management .content figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 0 0;
	
	border-radius: 8px;
	border: 1px solid #DEE1E6;
	background: #FFF;
}
.main .management .content figure img {
	border-radius: 8px 8px 0 0;
	height: 180px;
	align-self: stretch;
}

.main .management .content figure .text{
	display: flex;
	padding: 16px 24px;
	flex-direction: column;
	align-items: center;
/* 	align-items: flex-end; */
	gap: 24px;
	align-self: stretch;
	
	color: #323842;
	text-align: center;
	font-family: Pretendard;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 28px */
}

#secSolutions {
	background: linear-gradient(111deg, rgba(0, 0, 0, 0.00) 0.09%, rgba(0, 0, 0, 0.20) 99.91%), #04543D;
}

.main .solution {
	display: flex;
    width: 100%;
    padding: 64px 0 80px 0;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 0 2px 0 rgba(23, 26, 31, 0.12), 0 0 1px 0 rgba(23, 26, 31, 0.07);
}

.main .solution .title {
	color: #FFF;
	text-align: center;
	font-family: Paperlogy;
	font-size: 48px;
	font-style: normal;
	font-weight: 700;
	line-height: 68px; /* 141.667% */
	letter-spacing: -0.96px;
}

.main .solution .desc {
	color: rgba(255, 255, 255, 0.80);
	text-align: center;
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 25.2px */
	letter-spacing: -0.36px;
	margin-bottom: 52px;
}

.main .solution .content {
	display: grid;
	grid-template-columns: repeat(2, 1fr); /* 2개씩 배치 */
	gap: 24px;
	align-self: stretch;
}

.main .solution .content figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 0 0;
	
	border-radius: 8px;
	border: 2px solid rgba(222, 225, 230, 0.40);
	
	overflow: hidden;
}

.main .solution .content figure .img {
	height: 160px;
	align-self: stretch;
	border-radius: 8px 8px 0 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.main .solution .content figure figcaption {
	display: flex;
	padding: 16px 24px 20px 24px;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	background: #FFF;
	
	flex-grow: 1;
}

.main .solution .content figure figcaption h4 {
	color: #323842;
	font-family: Pretendard;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 28px */
	margin-bottom: 8px;
}

.main .solution .content figure figcaption h5 {
	color: #323842;
	font-family: Pretendard;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%;
}

.main .solution .content figure figcaption p {
	color: #9095A0;
	font-family: Pretendard;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 140%; /* 19.6px */
	letter-spacing: -0.28px;
}




main#contentView {
	display: flex;
	flex-direction:column;
	gap: 45px;
	justify-content: space-between;
	align-items: center;
}

main#contentView section > *:has(> .section_title) {
	margin-top: -20px;
}

.section_title {
	display: inline-flex;
	padding: 8px 40px;
	margin-bottom: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #20798B;
	font-family: Pretendard;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 140%; /* 22.4px */
	position: relative;
	margin-left: 25px;
	border-radius: 0 100px 100px 0;
	background: #E9F2F3;
}

.section_title::before {
	content: url("../images/about/Atom-r.svg");
	position: absolute;
	left: -25px;
}
