
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*
@font-face {
    font-family: 'NanumGothic';
    src: url('/rentcar/main/fonts/NanumGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
*/
body{
    font-family: 'Roboto', 'NanumGothic', sans-serif;
}
#event-banner {
    /*animation: blink 1s infinite alternate;*/
    background-color: #FFA033;
    color: white;
    padding: 10px;
    text-align: center;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 998;
}
/* 닫기(X) 버튼 스타일 */
#close-banner {
    position: absolute;
    right: 30%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    /*align-items: center;*/
    justify-content: center;
}

@keyframes blink {
    from {
        background-color: #ff9800;
    }
    to {
        background-color: #ffc107;
    }
}
.content {
    display: none;
    padding: 20px;
    background: #f4f4f4;
}
.header_wrap *{
    list-style:  none;
    margin: 0;
    padding: 0;
}

.header_wrap{
    /*background-color: #FFFFFF;*/
    background-color: #ffcc00;
    width: 100%;
    position: sticky;
    top: 0; /* 상단에 고정 */
    z-index: 999; /* 다른 요소 위에 표시 */
}
.header{
    margin: auto;
    font-family: 'Roboto', sans-serif;
    width: 1200px;
    margin: auto;
    display: flex;
    /*background-color: #0000;*/  
}
.header a{
  /*color: #4c4c4c;*/
  color: #000;
  font-size: inherit;
  font-family: inherit;
  /*font-weight: bold;*/
  font-weight: 500;
  text-decoration: none;
}
.logo{
    margin-top: 20px;
    width: 20%;
    height: 80px;
    line-height: 100px;
}
.logo img {
    width: 190px;
    height: 50px;
}
.header_left{
    width: 80%;
}
.header_left .menu_top_nav{
    display: flex;
    justify-content: flex-end;

    height: 30px;
}
.header_left .nav{

    display: flex;
    justify-content: flex-end;
    line-height: 50px;
}
.header_left .menu_top_nav > li{

    margin-left: 1%;
}
.header_left .menu_top_nav > li > a{
    font-size: 15px;
}
.header_left .nav > li {
    margin-left: 5%;
}
.header_left .nav > li a{
    padding: 10px 0;
}


.nav li > a.selected {
    font-weight: bold;
    color: #000;
    border-bottom: 3px solid #000;
}
