.mt80 {margin-top:80px}
.yellow {color:#FFF800}
.footer-bg-01 {background:#074c96 !important;}
.footer-bg-02 {background:#056579 !important;}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    /*background-color: #2C1A40;*/
    color: white;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background: #fff
}

.wrap {
    max-width: 100%;
    width: 100%;
}

.container {
    max-width: 1024px;
    /* background-color: #2C1A40; */
    border-radius: 20px;
    margin: 0 auto;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    position: relative;
    padding: 37px 20px;
    margin-top: 20px;
}

.search-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
}

.search-container input[type="text"] {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
    background-color: #f0f0f0;
    outline: none;
    width: 200px;
    font-size: 14px;
    padding-right: 30px; /* Space for the icon */
}

.search-container .search-icon {
    position: absolute;
    right: 10px;
    font-size: 14px;
    color: #666;
}

.navbar-logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFB400;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.navbar-logo img {
    width: 130px;
}

.navbar-right {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.navbar-right a {
    color: #6c6c6c;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.navbar-right a:hover {
    text-decoration: underline;
}

.menu {
    display: flex;
    justify-content: space-around;
    background-color: #fff;
}

.menu a {
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    position: relative;
    width: 16.66%;
    text-align: center;
    font-weight: bold;
    padding-bottom: 20px;
}

.menu a.active, .menu a:hover {
    color: #784305;
}

.menu a.active::after, .menu a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #784305;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    justify-content: flex-end;
    transition: opacity 0.4s ease;
}

.mobile-menu {
    background-color: #f0f0f0;
    width: 300px;
    height: 100%;
    padding: 20px;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-icon {
    width: 30px;
    height: 3px;
    background-color: #FFB400;
    margin: 5px 0;
    transition: 0.4s;
}

.mobile-menu.open {
    transform: translateX(0);
}

.close-icon {
    font-size: 30px;
    color: #333;
    cursor: pointer;
    text-align: right;
}

.login-section {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.login-section span {
    font-size: 16px;
    color: #333;
    margin-left: 10px;
}

nav a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

nav a:hover {
    color: #FFB400;
}


.content-container {
    width: 100%;
}

.swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    height: auto;
}

.content-section {
    padding: 20px 0px;
    margin-top: 20px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.content-title h2 {
    font-size: 27px;
    color: #000000;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.content-title h2 span {
    color: #0E2096;
}

.content-title p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
    color: #000000;
    margin-top: 30px;
}

.content-title p strong {
    font-weight: bold;
    color: #000;
}

.content-link a {
    font-size: 14px;
    color: #000000;
    text-decoration: none;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.banner-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

.banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.banner-item:hover::before {
    opacity: 1;
}

.warranty-banner {
    max-width: 1700px;
    margin:0 auto;
    cursor: pointer;
    margin-top: 20px;
}

.warranty-banner img {
    width: 100%;
}

.warranty-banner .warranty-banner-mobile {
    display: none;
}

.info-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 110px;
}

.card {
    background-color: #f0f4f8;
    border: 2px solid #0056b3;
    border-radius: 10px;
    padding: 20px;
    max-width: 49%;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card h3 {
    color: #0056b3;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
}

.card p {
    color: #555;
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.card a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.footer {
    background: #000;
    margin-top:40px;
}

.footer .footer-container {
    position: relative;
    width: 100%;
    max-width: 100%;
}

#footer01-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 100%, rgba(255, 217, 0, 0.34) 0%, 17.5%, rgba(255, 217, 0, 0) 35%), radial-gradient(circle at 68.02734375% 68.974609375%, #0E2096 0%, 50%, rgba(14, 32, 150, 0) 100%), radial-gradient(circle at 31.515299479166664% 12.447916666666666%, #0E2096 0%, 50%, rgba(14, 32, 150, 0) 100%), radial-gradient(circle at 10.5908203125% 88.85416666666667%, #7EF4FC 0%, 17.5%, rgba(126, 244, 252, 0) 35%), radial-gradient(circle at 94.35384114583333% 89.61588541666666%, #7EF4FC 0%, 20%, rgba(126, 244, 252, 0) 40%), radial-gradient(circle at 6.165364583333333% 12.617187499999998%, #00EAFA 0%, 42%, rgba(0, 234, 250, 0) 70%), radial-gradient(circle at 93.6865234375% 11.42578125%, #FFC200 0%, 42%, rgba(255, 194, 0, 0) 70%), radial-gradient(circle at 48.9013671875% 49.521484375%, #FFFFFF 0%, 100%, rgba(255, 255, 255, 0) 100%);
}

#footer01-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease;
}

#footer-cont01 {
    padding-bottom: 70px;
}

#footer-cont02 {
    background-image: url("../images/footer_bg.webp");
    padding-bottom: 90px;
}

#footer-cont02 ul {
    line-height: 20px;
    font-weight: 300;
}

#footer-cont02 ul li {
    margin-bottom: 45px;
}

#footer-cont02 ul li:last-child {
    margin-bottom: 0px;
}

.custom-content-section {
    padding: 20px;
    color: #fff;
    margin: auto;
    position: relative;
    max-width: 1024px;
}

.custom-section-header {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 50px;
}

.custom-section-header .custom-icon {
    font-size: 30px;
    display: block;
    margin: 0 auto 10px;
}

.custom-section-header h1 {
    font-size: 27px;
    margin: 0;
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: #fff;
}

.custom-section-header h1 span {
    color:#FFD900
}

.custom-section-header h1::before {
    content: '🌟';
    position: absolute;
    left: -30px;
    top:0px;
}

.custom-description {
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 200;
}

.custom-content-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 140px;
}

.custom-highlight-section {
    background-color: #074c96;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    color: #fff;
}

.custom-highlight-title {
    position: absolute;
    top: -110px;
    right: 30px;
    font-size: 48px;
    color: #FF0000;
    margin: 0;
    line-height: 1;
}

.custom-highlight-title img {
    width: 190px;
}

.custom-highlight-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
}

.custom-highlight-section ul li {
    margin-bottom: 20px;
}

.custom-highlight-section ul li:last-child {
    margin-bottom: 0px;
}

.custom-recommendation-section {
    background-color: #056579; /* Ã¬Â¶â€Ã¬Â²Å“ Ã«Â°â€¢Ã¬Å Â¤ Ã«Â°Â°ÃªÂ²Â½ */
    padding: 20px 40px 50px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    align-items: center;
}

.custom-icon-wrapper img {
    max-width: 100px;
    margin-right: 20px;
}

.custom-recommendation-content {
    flex-grow: 1;
}

.custom-recommendation-content h2 {
    font-size: 28px;
    color: #FFB400;
    margin: 10px 0;
    margin-bottom: 30px;
}

.custom-recommendation-content p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
}

.custom-footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    font-size: 14px;
    margin-top: 50px;
    padding-bottom: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo img {
    max-width: 150px;
}

.footer-copyright {
    flex: 1;
    padding: 0 80px;
}

.footer-copyright ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.footer-copyright li {
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 300;
}

.footer-contact {
    text-align: right;
}

.footer-contact h2 {
    font-size: 18px;
    margin-bottom: 13px;
}

.contact-button {
    background-color: #1A73E8;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 300;
}

#content02 {
    border-top: 5px solid #ffe2a3;
    background: linear-gradient(
            to bottom,
            #ffe2a3, /* 좌측 상단 */
            #fff3d9 25%, /* 우측 상단 */
            #e2f5ec 50%, /* 좌측 중간 */
            #fff 75%, /* 우측 중간 */
            #fff 100% /* 좌측 하단 및 우측 하단 */
    );
    /*background-attachment: fixed;*/
    /*background-size: cover;*/
}

#content03 {
    border-top: 5px solid #1c7fc1
}

#content04 {
    border-top: 5px solid #1c7fc1
}

.custom-list-title {
    font-size: 24px;
    color: #0E2096;
    margin-bottom: 20px;
}

.custom-list-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.custom-list-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custom-list-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.custom-list-image {
    width: 169px;
    height: 169px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
}

.custom-list-content {
    flex-grow: 1;
}

.custom-list-content h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-list-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
    font-weight: 400;
}

.unique-content-section {
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.unique-content-block {
    margin-bottom: 40px;
    margin-top: 60px;
}

.unique-content-block:last-child {
    margin-bottom: 100px;
}

.unique-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.unique-icon {
    font-size: 24px;
    margin-right: 10px;
}

.unique-title h2 {
    font-size: 25px;
    color: #0E2096;
    margin: 0;
    font-weight: bold;
}

.unique-content-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    margin-top: 30px;
}

.unique-image-block img{
    width: 100%;
    cursor: pointer;
}

.unique-image-left h3 {
    font-size: 24px;
    color: #fff;
    margin: 0;
}

.unique-image-left p {
    font-size: 14px;
    color: #C1D4FA;
    margin-top: 5px;
}

.unique-image-right a {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    background-color: #2A8BF2;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.unique-image-right a:hover {
    background-color: #1A6BB8;
}


/* signup */

/* 회원가입 컨테이너 스타일 */
.signup-container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.signup-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
    color:#000
}

.signup-form {
    display: flex;
    flex-direction: column;
}

/* 폼 그룹 기본 스타일 */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    margin-bottom: 5px;
}

/* 작은 설명 텍스트 */
.form-group small {
    font-size: 12px;
    color: #888;
}

/* 입력 필드와 버튼 함께 배치 */
.input-group {
    display: flex;
}

.input-group input {
    flex: 1;
    margin-right: 10px;
}

.duplicate-check {
    background-color: #00A5FF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    height: 38px;
}

.duplicate-check:hover {
    background-color: #0086cc;
}

/* 아이콘 스타일 */
.icon {
    color: #ff5b5b;
    font-size: 14px;
    margin-right: 5px;
}

/* 가입 버튼 스타일 */
.signup-btn {
    width: 100%;
    padding: 15px;
    background-color: #2E3A8C;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.signup-btn:hover {
    background-color: #1F285A;
}


/* Login*/

/* 전체 로그인 컨테이너 */
.login-container {
    max-width: 1024px;
    width: 100%;
    margin: 100px auto 0;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.signup-btn-cont {
    display: inline-block;
    margin:0 auto;

}

.login-logo {
    margin-bottom: 20px;
}

.login-logo img {
    width: 150px;
}

.login-form {
    display: flex;
    flex-direction: column;
}

/* 폼 그룹 스타일 */
.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

/* 옵션 (아이디 저장, 회원가입 링크) */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-options label {
    cursor: pointer;
}

.form-options a {
    color: #000;
    text-decoration: none;
}

.form-options a:hover {
    text-decoration: underline;
}

/* 로그인 버튼 스타일 */
.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.login-btn:hover {
    background-color: #0056b3;
}


/* Mobile Styles */
/*@media (max-width: 768px) {*/
@media (max-width: 1023px) {
    body {
        /* flex-direction: column; */
        /* align-items: center; */
    }

    .search-container input[type="text"] {
        width: 100px;
    }

    .menu a {
        padding: 10px;
        font-size: 12px;
    }

    .menu a:first-child {
        display: none;
    }

    .menu-icon {
        width: 25px;
        height: 2px;
        background-color: #FFB400;
        margin: 5px 0;
        transition: 0.4s;
    }

    .navbar {
        position: relative;
        padding: 10px 20px;
        justify-content: space-between;
        height: 50px;
    }

    .navbar-logo {
        flex: 1;
        text-align: center;
    }

    .hamburger-menu {
        display: block;
        position: absolute;
        right: 20px;
        top: 6px;
        z-index: 1001;
    }

    .navbar-right, .search-container {
        display: none;
    }

    .banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-logo img {
        width: 90px;
    }

    .warranty-banner .warranty-banner-pc {
        display: none;
    }

    .warranty-banner .warranty-banner-mobile {
        display: block;
    }

    .info-cards {
        flex-direction: column;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .card {
        max-width: 100%;
    }

    .content-header {
        padding-bottom: 40px;
    }

    .content-link {
        position: absolute;
        right: 20px;
        bottom:0px;
    }

    .content-section {
        padding: 20px 20px
    }

    .custom-section-header {
        padding-left: 33px;
    }
    .custom-section-header h1 {
        font-size: 20px;
    }
    .custom-section-header h1::before {
        left:-24px
    }

    .custom-description {
        font-size: 13px;
    }

    .custom-recommendation-content p {
        font-size: 13px;
    }

    .custom-content-boxes {
        flex-direction: column;
        margin-top:70px;
    }

    .custom-highlight-section ul {
        font-size: 13px;
        line-height: 20px;
    }

    .custom-recommendation-section {
        flex-direction: column;
        text-align: center;
    }

    .custom-icon-wrapper img {
        margin: 0 auto 15px;
    }

    .custom-highlight-title {
        position: static;
        text-align: center;
        font-size: 36px;
        margin-bottom: 20px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-contact {
        order: 2;
        margin-top: 20px;
    }

    .contact-button {
        width: 100%;
        padding: 15px;
        font-size: 18px;
    }

    .footer-copyright {
        order: 3;
        padding: 0;
        margin-top: 20px;
    }

    .custom-list-items {
        gap: 15px;
    }

    .custom-list-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: center;
    }

    .custom-list-image {
        margin: 0 auto 15px;
        width: 80px;
        height: 80px;
    }

    .unique-content-section {
        padding:20px;
    }

    .unique-content-block {
        margin-top: 40px
    }

    .unique-content-block:last-child {
        margin-bottom: 40px;
    }

    .custom-list-content h3 {
        font-size: 16px;
    }

    .custom-list-content p {
        font-size: 13px;
    }

    .unique-image-block {
        flex-direction: column;
        text-align: center;
    }

    .unique-image-left {
        margin-bottom: 20px;
    }

    .unique-image-right a {
        width: 100%;
        text-align: center;
    }
}

