.top-header {
	background: transparent;
    position: absolute;
    z-index: 100;
    width: 100%;
}
.top-header .container {
	width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
.top-header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-header .span4 {
    flex: 1 1 0;
    min-width: 0;
}
.top-header .logo {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}
.top-header .logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
}
.top-header .logo img {
    height: 48px;
    margin-right: 12px;
}
.top-header .tel {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px;
    font-size: 18px;
}
.top-header .tel li a {
    color: #757575;
    text-decoration: none;
    transition: color 0.2s;
	margin-left: 30px;
}
.top-header .tel li a:hover {
    color: #000;
}
.top-header .top-menu-navigation {
    display: flex;
    justify-content: flex-end;
}
.top-header .menu-list {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
	align-items: center;
}
.top-header .menu-list li a {
    color: #757575;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.2s;
}
.top-header .menu-list li a:hover {
    color: #000;
	text-decoration: none;
}