
/* font */
@import url('https://fonts.googleapis.com/css2?family=Do+Hyeon&family=Gothic+A1:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {     
    --base-color: #f3bb3a;
    --alt-font: 'Do Hyeon', sans-serif;
    --primary-font: 'Gothic+A1', sans-serif;
    --dark-gray: #252840;
    --medium-gray: #868d98;
} 
/* reset */
body {
    font-size: 17px;
    line-height: 32px; 
}
a {
    color: #868d98;
} 
b, strong {
    font-weight: 800;
}
::-webkit-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
}
::-moz-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
:-ms-input-placeholder {
    color: #868d98 !important;
    text-overflow: ellipsis;
    opacity:1;
}
/* bg color */
.bg-gradient-emerald-blue-emerald-green {
    background-image:linear-gradient(50deg,#f7890f 0,#f7aa0f 100%);
}
.bg-gradient-black-green {
    background-image: linear-gradient(to right top, #1f2021, #1b1d1c, #1b1d1c, #222523, #333c37);
}
/* text color */
.text-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right top, #f7890f, #f7aa0f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* button gradient */
.btn-gradient-emerald-blue-emerald-green {
    background-image: linear-gradient(to right, #f7aa0f, #f7890f, #f7aa0f);
    background-size: 200% auto;
    color: var(--white);
}
/* btn */
.btn{
    font-weight: 500;
    text-transform: inherit;
}
.btn.btn-extra-large {
    font-size: 22px;
}
.btn.btn-large {
    font-size:17px;
}
.btn.btn-medium {
    font-size: 16px;
}
.btn.btn-small {
    font-size: 15px;
}
.btn.btn-very-small {
    font-size: 13px;
}
.btn.btn-large .btn-icon i {
    top: 1px;
}
.btn.btn-link {
    padding: 0 0 2px;
}
.btn.btn-link-gradient {
    padding: 0 0 3px;
}
/* header */
header .navbar-brand img {
    max-height: 30px;
}
.navbar .navbar-nav .nav-link {
    font-size: 17px;
    letter-spacing: .5px;
    padding: 10px 22px
}
.push-menu .close-menu {
    right: 30px;
    top: 30px;
}
/* newsletter style  */
.newsletter-style-02 input {
    font-size: 14px;
}
/* footer */
footer ul li {
    margin-bottom: 2px;
}
/* media query responsive */
@media (max-width: 1199px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 17px;
    }
}


span.flex-center {
    display: flex; align-items: center;
}


/*about custom css 2026-04-02 김팀장*/

/* =========================
   카드 리스트 기본 구조
========================= */
.ih-card-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}

/* =========================
   3개 + 2개 레이아웃
========================= */
.ih-card-list li {
    width: calc(33.333% - 14px);
}

.ih-card-list li:nth-child(n+4) {
    width: calc(50% - 10px);
}

/* =========================
   카드 스타일
========================= */
.ih-card-list li a {
    position: relative;
    display: block;
    height: 260px;
    color: #fff;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 16px;
}

/* =========================
   오버레이 (어두운 필터)
========================= */
.ih-card-list .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    transition: all 0.3s ease;
}

/* =========================
   텍스트 영역
========================= */
.ih-card-list .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

/* 소제목 뱃지 스타일 */
.ih-card-list em {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    padding: 2px 20px;
    margin-bottom: 8px;
    font-style: normal;
    opacity: 1;
}

.ih-card-list strong {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.ih-card-list p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* =========================
   Hover 효과
========================= */
.ih-card-list li a:hover {
    transform: translateY(-6px);
}

.ih-card-list li a:hover .overlay {
    background: rgba(0,0,0,0.6);
}

/* =========================
   반응형
========================= */

/* 태블릿 */
@media (max-width: 992px) {
    .ih-card-list li,
    .ih-card-list li:nth-child(n+4) {
        width: calc(50% - 10px);
    }
}

/* 모바일 */
@media (max-width: 576px) {
    .ih-card-list li,
    .ih-card-list li:nth-child(n+4) {
        width: 100%;
    }
}

/* 아이콘 5가지 카드*/
/* =========================
   서비스 영역 (부모)
========================= */
.service-item {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
}
/* 태블릿 */
@media (max-width: 1200px) {
    .service-item {
        width: 100%;
        flex-wrap: wrap;
    }

    .service-item a {
        flex: 0 0 calc(50% - 8px);
    }
}

/* 모바일 */
@media (max-width: 576px) {
    .service-item a {
        flex: 0 0 100%;
    }
}
/* =========================
   카드 (a)
========================= */
.service-item a {
    position: relative;
    display: block; /* flex 제거 */

    padding: 50px 24px 24px;

    border: 1px solid #f3c14c;
    border-radius: 8px;
    background-color: rgba(243, 193, 76, 0.2);

    text-decoration: none;
    color: #222;

    transition: all 0.3s ease;
}

/* =========================
   텍스트 영역
========================= */
.service-item .text-box {
    margin-top: 10px;
}
.service-item a .text-box {
    display: flex;
    flex-direction: column;
}
.service-item {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
@media (max-width: 992px) {
    .service-item {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-item {
        grid-template-columns: 1fr;
    }
}
/* 상단 배지 */
.service-item span {
    position: absolute;
    top: -10px;
    left: 20px;

    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;

    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.24px;

    color: #fff;
    background-color: #f3c14c;
}

/* 본문 텍스트 */
.service-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.service-item strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-top: 4px;
}

/* =========================
   아이콘
========================= */
.service-item i {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
}

/* =========================
   hover
========================= */
.service-item a:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* =========================
   반응형
========================= */

/* 태블릿 */
@media (max-width: 992px) {
    .service-item a {
        flex: 0 0 calc(50% - 8px);
    }
}

/* 모바일 */
@media (max-width: 576px) {
    .service-item a {
        flex: 0 0 100%;
    }
}


/*미션과 비전*/

/* 전체 리스트 */
.mission-list {
    display: flex;
    flex-direction: column;
    gap: 10px; /* margin 대신 gap */
}

/* 각각의 블록 */
.mission-item {
    width: 100%;
    padding: 25px 50px;
    text-align: left;

    border: 1px solid #eeeeee;
    background: #fafafa;

    border-radius: 8px; /* 요건 살짝 추가 (요즘 스타일) */
}

/* 제목 */
.mission-item .tit {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

/* 설명 */
.mission-item .txt {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}


/*회사개요 영역*/
/* 설명 텍스트 */
.section-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* 원형 리스트 */
.service-list {
    padding: 0;
    margin: 0;
    list-style: none;
    overflow: hidden; /* float 정리 */
}

.service-list li {
    float: left;
    width: 120px;
    height: 120px;

    margin-right: 8px;
    margin-bottom: 16px;

    border: 8px solid #f3c14c;
    border-radius: 100%;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.service-list li strong {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: #333;
}

/* 정보 영역 */
.company-info dl {
    margin-bottom: 20px;
}

.company-info dt {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 5px;
}

.company-info dd {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/*****고객약속******/

/* 섹션 전체 */
.esg-sec {
    position: relative;
    overflow: hidden;
}

/* 🔥 핵심: 높이 맞추기 */
.esg-sec .row {
    align-items: stretch;
}

/* 🔥 col 내부 flex */
.esg-sec .col-lg-6 {
    display: flex;
}

/* 텍스트 영역 */
.bg-text {
    background: #fef8ec;

    padding: 60px 40px;

    /* 🔥 높이 맞춤 */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;

    /* 🔥 좌측만 radius */
    border-radius: 10px 0 0 10px;
}

.bg-text .text1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.bg-text .desc {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.bg-text .text2 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8;
    font-style: normal;
}

/* 이미지 영역 */
.img-box {
    position: relative;

    /* 🔥 높이 맞춤 */
    width: 100%;
    height: 100%;
    overflow: hidden;

    /* 🔥 우측만 radius */
    border-radius: 0 10px 10px 0;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 반응형 */
@media (max-width: 768px) {

    /* 모바일에서는 다시 자연스럽게 */
    .esg-sec .col-lg-6 {
        display: block;
    }

    .bg-text {
        text-align: center;
        padding: 40px 15px;

        /* 🔥 모바일에서는 전체 radius */
        border-radius: 10px;
    }

    .img-box {
        text-align: center;
        margin-top: 20px;

        border-radius: 10px;
    }
}