
/* Basic styles for the header */
.header-body {
    width: 100%;
    margin: 0;
    padding: 0;
	 display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

/* Styles for the logo wrapper */
#wraplogo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 119px;
    height: auto;
}

/* Styles for the logo inside the wrapper */
.mb_logo_loader {
    width: 100%;
    height: auto;
}

/* Styles for the header column */
.header-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    box-sizing: border-box;
}

/* Styles for the header row */
.header-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
	height:100px;





}
/* Styles for the images inside the header row */
.header-row  img{
    max-width: 100%;
    height: auto;
	
}

/* Media query for larger screens */
@media (min-width: 768px) {
    .header-column {
        flex-direction: row;
        justify-content: space-between;
    }

    #wraplogo, .header-row {
        margin-bottom: 0;
    }
}

