.logo-container {
    padding: .8rem 6%;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 6fr 2fr;
    border-bottom: .5px solid #e0e0e0;
    justify-content: center;
    align-items: center
}

.logo-container .hamburger-search-container {
    display: flex;
    gap: 1rem;
    min-width: 180px
}

@media only screen and (max-width:768px) {
    .logo-container .hamburger-search-container {
        min-width: fit-content
    }
}

.logo-container .hamburger-search-container .hamburgermenu-button {
    display: none
}

@media only screen and (max-width:) {
    .logo-container .hamburger-search-container .hamburgermenu-button {
        display: block
    }
}

@media only screen and (max-width:570px) {
    .logo-container div.megamenu-main-holder {
        display: none
    }
}

.logo-container a.megamenu-main-button {
    text-align: right
}

.logo-container a.megamenu-main-button button {
    margin-left: auto
}

@media only screen and (max-width:570px) {
    .logo-container a.megamenu-main-button {
        display: none
    }
}

.logo-container .logo-homepage-link {
    width: max-content;
    margin: 0 auto
}

.logo-container .bag-container {
    display: none
}

.logo-container .bag-container .menu-item {
    padding: 0;
    z-index: 1
}

@media only screen and (max-width:768px) {
    .logo-container .bag-container {
        display: flex;
        gap: 1rem;
        align-items: center;
        height: inherit
    }
}

@media only screen and (max-width:1024px) {
    .logo-container {
        padding: .975rem 1.3rem
    }
}

@media only screen and (max-width:768px) {
    .logo-container {
        grid-template-columns: 4fr 4fr 2fr 2fr;
        gap: 1.5rem;
        padding: 0 .975rem;
        height: 4.375rem
    }

    .logo-container .menu-item-container {
        display: flex;
        align-items: center
    }

    .logo-container .hamburger-search-container .hamburgermenu-button {
        display: block
    }
}

@media only screen and (max-width:570px) {
    .logo-container {
        display: flex;
        justify-content: space-between
    }
}

.logo-container .logo {
    margin: auto
}

@media only screen and (max-width:1024px) {
    .logo-container a .styled-button_curve-edge {
        display: none
    }
}

.logo-container a .styled-button_square-edge {
    display: none
}

@media only screen and (max-width:1024px) {
    .logo-container a .styled-button_square-edge {
        display: block
    }
}

.feature-contents-container {
    background-color: #f9f7f5
}

header.main-header {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 0;
    z-index: 999;
    background-color: #fff
}

header.main-header .announcement-container {
    width: 100%;
    height: 2.275rem;
    background-color: #27483e;
    color: #fff;
    overflow: hidden;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden
}

header.main-header .announcement-track {
    display: flex;
    width: fit-content;
    animation: scroll-left var(--animation-duration, 10s) linear infinite;
    will-change: transform
}

header.main-header .announcement-track:hover {
    animation-play-state: paused
}

header.main-header .announcement-item {
    flex-shrink: 0;
    height: 2.275rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3rem;
    white-space: nowrap;
    color: #fff;
    text-decoration: none;
    font-size: .78rem;
    line-height: 150%;
    min-width: fit-content
}

header.main-header .announcement-item:hover {
    text-decoration: underline
}

header.main-header .announcement-item p {
    color: #fff;
    text-align: center;
    font-size: .78rem;
    line-height: 150%
}

@keyframes scroll-left {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(calc(-100% / var(--total-duplicates, 3)))
    }
}

svg.logo {
    fill: #27483e;
    display: block
}

main {
    max-width: 100%;
    margin: 0 auto;
    min-height: 50vh
}

.global-search-bar_mobile {
    height: 65px;
    width: 100%;
    background-color: #f9f7f5;
    display: flex;
    align-items: center;
    padding: 0 24px;
    justify-content: space-around;
    gap: 8px
}