/*기본 세팅*/
* {
    margin: 0px;
    padding: 0px;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none
}

@font-face {
    font-family: 'JeonjuCraftGoR';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2310@1.0/JeonjuCraftGoR.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

body {
	font-family: 'JeonjuCraftGoR' !important;
	overflow-x:hidden;
	font-size: 14px;
}

.text-center {
    text-align: center !important;
}
.text-start {
    text-align: start !important;
}
.text-end {
    text-align: end !important;
}

.row{
    display: flex;
    flex-wrap: wrap;
}

a {
    text-decoration: none;
    width: 100%;
    color: #333;  
}

.grid_wrap{
    max-width:1400px;
    margin: 0 auto;
}
#bread_wrap{
    margin-top: 30px;
    margin-bottom: 50px;
    font-size: 14px;
}
.bread_last{
    color: #7e92fd;
}

#header {
    border-bottom: 1px solid #ddd;
}
#header_wrap {
    width: 100%;
}
#header_wrap {
    height: 100px;
    position:relative;
    display: flex;
    justify-content: end;
}
#sub_wrap {
    margin: 0 auto;
    height: 100px;
}
#logo_wrap{
    position:absolute;
    top: 50%;
    left: 30px;
    transform:translateY(-50%);
}
#headerlogo {
    width: 150px;
}
#sub_wrap {
    float: right;
    width: 380px;
}
#menu_wrap {
    float: left;
    margin: 35px 0;
}
#menu_wrap ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#menu_wrap li {
    float: left;
    margin: 0 27px 0 28px;
}
#menu_wrap a:hover{
    color: #999;
}
.main_menu {
    font-size: 16px;
    font-weight: 700;
}
.dropbtn{
    position : relative;
    padding-bottom: 20px;
}
.dropdown-content{
    display : none;
    position : absolute;
    z-index : 2; /*다른 요소들보다 앞에 배치*/
    font-weight: 400;
    background-color: #f9f9f9;
    min-width: 110px;
    top: 25px;
    left: -20px;
    text-align: center;
    box-shadow: 3px 5px 5px 0px gray;
    border-radius: 3px;
}
.dropdown-content a{
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
}
.dropdown-content a:hover{
    background-color : #ececec
}
.dropbtn:hover .dropdown-content {
    display: block;
}


#sub_wrap ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#sub_wrap li {
    float: left;
    padding: 0 10px;
    margin: 40px 0;
}
#sub_wrap li:first-child {
    float: left;
    margin: 40px 0;
    padding-left: 0;
    border-right: 2px solid #eee;
}
.sub_menu {
    font-size: 14px;
    font-weight: 500;
}
.sub_menu .logo {
        width: 20px;
        height: 20px;
        border-radius: 10px;
        background-color: #ddd; 
        background-image: url('../images/avatar.jpg'); 
        display: inline-block;
        margin-right: 10px;
}

.hero-fullscreen {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
}

	a{
		color: black;
		text-decoration: none;
	}
	a:hover{
		outline: 0;
		text-decoration: none;
	}
	/* Reset some default styles */


.main-menu ul {
    list-style-type: none;
    display: flex;
}

.main-menu ul li {
    margin-right: 20px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: all 0.3s ease;
}

.main-menu ul li a:hover {
    color: #007bff;
}

.menu-toggle {
    display: none; /* Hide on desktop */
    cursor: pointer;
            font-size: 28px;
        position: absolute;
        right: 20px;
        top: 20px;
}
    #mobile_menu {
        width: 0; /* Hide mobile menu by default */
        display:none;
        border:1px solid #999;
        position: absolute;
    top: 0;
    z-index: 1001;
    background: white;
    overflow: hidden;
	right:0;
    }

@media only screen and (max-width: 420px) {
    #menu_wrap {
        display: none; /* Hide main menu on mobile */
    }

    .menu-toggle {
        display: block; /* Show menu toggle on mobile */
        font-size: 28px;
        position: absolute;
        right: 20px;
        top: 20px;
    }

    #mobile_menu {
        width: 0; /* Hide mobile menu by default */
        display:block;
    }

    #mobile_menu.active {
        display: block; /* Show mobile menu when active */
        width:200px;
    }

    #mobile_menu ul {
        list-style-type: none;
    }

    #mobile_menu ul li {
        margin-bottom: 10px;
    }

    #mobile_menu ul li a {
        display: block;
        padding: 10px;
        color: #333;
        text-decoration: none;
    }

    #mobile_menu ul li a:hover {
        background-color: #f0f0f0;
    }
}