
.widget.block-static-block{
    margin-bottom: 0;
}
.top-header-mini-container{
    display: flex;
    justify-content: center;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.top-header-wrapper{
    display: flex;
    padding: 8px 24px;
    align-items: center;
    width: 100%;
    max-width: 1237px;
    background-color:#555555;
    font-family:inherit;
}
.top-header-innerwrapper{
    flex-wrap: wrap;
    display: flex;
    flex: 1;
    width: 100%;
    justify-content: space-between;
}
.left-side-section, .right-side-section{
    display: flex;
    align-items: center;
    font-family:inherit;
}
.right-side-section a{
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    font-family:inherit;
}
.image-wrapper {
    opacity: 1;
    transition: transform .35s;
    display: flex;
    z-index: 1;
    overflow: hidden;
    position: relative;
    vertical-align: middle;
    max-width: 170px;
    line-height: 1;
    gap: 10px; /* Add space between flex items */
    background-color: transparent; /* Set initial background color */
    font-family:inherit;
    padding: 0 10px; /* Add padding to create space on the left and right */
}
.menu-wrapper.left-side-section .image-wrapper:first-child {
    max-width: 122px;
    padding-left:0px;
}
.image-wrapper::after {
    content: none;
}

.image-wrapper:last-child::after {
    content: ""; /* Use empty content for the pipe */
    position: absolute; /* Position the pipe relative to the .image-wrapper */
    top: 0; /* Align the pipe to the top of the container */
    bottom: 0; /* Align the pipe to the bottom of the container */
    right: calc(100% - 2px);
    width: 2px;
    background-color: #ffffff; /* Pipe color */
}
.image-wrapper:hover:last-child::after {
    filter: invert(1);
}

.image-wrapper:hover {
    transform: perspective(1000px) scale(1.03);
    filter: invert(100%); /* Apply filter on hover */
}
@media (max-width: 767px) {
    .top-header-innerwrapper{
        flex-direction: column;
    }
    .right-side-section{
        justify-content: center;
    }
}


