@charset "utf-8";
/* CSS Document */

header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 999;

    background: rgba(255, 255, 255, .9);
    border-bottom: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
}

.header_top_bar {
    background-color: var(--color-primary);
    color: white;
    width: 100%;
    padding: 8px 20px;
}

.header_center {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
}

.header_part {
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_part:first-child {
    justify-content: start;
}

.header_part:last-child {
    justify-content: end;
}

.header_logo {
    display: flex;
    align-items: center;
}

.header_logo img {
    height: 40px;
}

.header_business_info {
    margin-left: 12px;
    color: #111827;
}

.header_business_name {
    font-weight: bold;
    font-size: 1.2em;
}

.header_business_slogan {

}

.header_center nav {
    display: flex;
    gap: 24px;
}

.header_center nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    font-size: 16px;
    padding: 6px 0;
    position: relative;
}

.header_center nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: #111827;
    transition: .3s;
}

.header_center nav a:hover::after {
    width: 100%;
}

@media (min-width: 480px) {

}

@media (min-width: 600px) {

}

@media (min-width: 768px) {

}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}
