@media (min-width: 1024px) {
    /*헤더 스타일*/
    .header-container{
        width: 100%;
        height: 120px;
        display: flex;
        justify-content: space-between;
        border-bottom: 0.5px solid rgba(255, 255, 255, 0.349);
        transition: ease-out .15s;
        color: white;
        top: 0;
        left: 0;
        right: 0;
    }

    /*헤더 왼쪽 스타일*/
    .header-left-contaner{
        width: 250px;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /*헤더 왼쪽 로고 스타일*/
    .logo-image{
        width: 200px;
        height: 50px;
        cursor: pointer;
        display: flex;
        align-items: center;
        font-size: 20px;
    }

    .logo-image2{
        width: 200px;
        height: 50px;
        cursor: pointer;
        display: none;
        align-items: center;
        font-size: 20px;
    }
    /*로고*/
    .logo-fk{
        width: 70%;
    }

    .logo-text{
        font-family: 'NanumSquareAcb';
    }

    /*헤더 가운데 스타일*/
    .header-center-contaner{
        width: 750px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /*헤더 가운데 메뉴들 스타일*/
    .header-center-menu{
        width: 150px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        cursor: pointer;
        font-size: 19px;
        position: relative;
        font-weight: 700;
    }

    .menu-link{
        display: block;
        padding: 40px 40px;
    }

    .menu-link:hover{
        color: #a3894c;
    }

    .sub-menu{
        z-index: 10001;
        overflow: hidden;
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content:space-around;
        top: 110px;
        width: 180px;
        height: 100px;
        background: #fff;
        padding: 10px 0;
        color: #7e7e7e;
        transition: ease-out .15s;
        opacity: 0;
        visibility: hidden;
        font-size: 13px;
        font-weight: 700;
    }

    .sub-menu:hover{
        border-top: 1px solid #a3894c; 
    }

    .sub-menu-name:hover{color: #a3894c;}

    /*헤더 오른쪽 스타일*/
    .header-right-contaner1{
        width: 250px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

    
    .header-right-contaner2{
        display: none;
    }

    .moblie-header-center-menu{
        display: none;
    }
    .moblie-header-toggle-menu{
        display: none;
    }
    .moblie-header-toggle-menus{
        display: none;
    }
    .moblie-header-toggle-menu-title{
        display: none;
    }
    .moblie-header-toggle-menu-content{
        display: none;
    }
}  

@media (max-width: 1023px) {
        /*헤더 스타일*/
        .header-container{
            width: 100%;
            height: 120px;
            display: flex;
            justify-content: space-between;
            border-bottom: 0.5px solid rgba(255, 255, 255, 0.349);
            transition: ease-out .15s;
            color: white;
            top: 0;
            left: 0;
            right: 0;
            position: relative;
        }
    
        /*헤더 왼쪽 스타일*/
        .header-left-contaner{
            width: 200px;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
    
        /*헤더 왼쪽 로고 스타일*/
        .logo-image{
            width: 200px;
            height: 50px;
            cursor: pointer;
            display: none;
            align-items: center;
            font-size: 20px;
        }

        .logo-image2{
            width: 200px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-size: 20px;
        }
        /*로고*/
        .logo-fk{
            width: 70%;
        }
    
        .logo-text{
            font-family: 'NanumSquareAcb';
        }
    
        /*헤더 가운데 스타일*/
        .header-center-contaner{
            height: 100%;
            flex: 1;
            display: none;
            align-items: center;
        }
    
        /*헤더 가운데 메뉴들 스타일*/
        .header-center-menu{
            width: 150px;
            height: 100%;
            display: none;
        }
    
        .menu-link{
            display: none;
            padding: 40px 40px;
        }
    
        .menu-link:hover{
            color: #a3894c;
        }
    
        .sub-menu{
            z-index: 10001;
            overflow: hidden;
            position: absolute;
            display: flex;
            flex-direction: column;
            justify-content:space-around;
            top: 110px;
            width: 180px;
            height: 100px;
            background: #fff;
            padding: 10px 0;
            color: #7e7e7e;
            transition: ease-out .15s;
            opacity: 0;
            visibility: hidden;
            font-size: 13px;
            font-weight: 700;
        }
    
        .sub-menu:hover{
            border-top: 1px solid #a3894c; 
        }
    
        .sub-menu-name:hover{color: #a3894c;}
    
        /*헤더 오른쪽 스타일*/
        .header-right-contaner1{
            display: none;
        }

        .header-right-contaner2{
            width: 200px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: end;
        }

        .moblie-header-center-menu{
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 100%;
            height: auto;
            top: 100%;
            background-color: white;
            border-bottom: 0.5px solid rgba(255, 255, 255, 0.801);
            position: absolute;
            font-size: 13px;
            font-weight: 700;
            color: #7e7e7e;
            z-index: 1;
        }

        .moblie-header-toggle-menus{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            height: auto;
            width: 100%;
        }

        .moblie-header-toggle-menu-title{
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            color: #3a3a3a;
            height: 50px;
            width: 160px;
            cursor: pointer;
        }

        .moblie-header-toggle-menu{
            display: none;
            align-items: center;
            height: auto;
            width: 100%;
            cursor: pointer;
        }

        .moblie-header-toggle-menu-content{
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #7e7e7e;
            height: 50px;
            width: 200px;
            cursor: pointer;
        }
        .btn-mobile-menu{
            margin-right: 20px;
        }
}
