.ly_header {
  width:100%;
  background-color:white;
  box-shadow: 0px 2px 2px 1px #0000001A;
  padding: 1rem 0;
}

.ly_headerContent{
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.header_left {
  width:100%;
  display:flex;
  justify-content:right;
  margin-left:20px;
  max-width: 18rem;
}

.header_right {
  display:flex;
  width:100%;
  height:100%;
  justify-content: flex-end;
  align-items:center;
  gap: 1rem;
}

.nav_menu {
  display:flex;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0;
  list-style: none;
  margin: 0;
  gap: 0.8rem;
}

.nav_menu > li > a{
  font-size: 1.4rem;
}

.nav_menu > li > a:hover{
  text-decoration: underline;
}

.header-right-estate {
  display:inline-block;
  padding:10px 22px;
  border-radius:10px;
  background-color:#EBB108;
  margin: 0 10px;
  color:white;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
}

.header-right-menber {
  display:inline-block;
  padding:10px 22px;
  margin:0 10px;
  border-radius:10px;
  background-color:#66AA51;
  color:white;
  font-size: 14px;
  font-weight: 700;
  line-height: 22.4px;
  text-align: center;
}

.nav_content {
  color: var(--black);
}

.hamburger_menu {
  display: none;
  margin:0 10px;
}

@media (max-width: 1100px) {

}


@media(max-width: 768px){
  .header_right {
    display: none;
  }
}



.btn_base_header{
  border-radius: 0.8rem;
  cursor: pointer;
  font-weight: 700;
  padding: 1.2rem 2.4rem;
  text-align: center;
  width: 100%;
  display: block;
}

.btn_base_header.is_middle{
  width: fit-content;
  padding: 1rem 1.6rem;
  font-size: 1.4rem;
  white-space: nowrap;
}


{# main #}
.btn_base_header.is_main{
  border: 1px solid #ebb108;
  background: #ebb108;
  color: var(--white);
}
.btn_base_header.is_main:hover{
  opacity: 0.8;
}

{# sub #}
.btn_base_header.is_sub{
  border: 1px solid #66aa51;
  background: #66aa51;
  color: var(--white);
}
.btn_base_header.is_sub:hover{
  opacity: 0.8;
}
