﻿ 
.header-bg_placeholder {
    height: 70px;
    width: 100%;
    background-color: #fff;
    border-radius: 0 0 16px 16px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 0px 0px 16px 16px;
      padding-block:clamp(12px, 2.381vw - 6.286px, 28px);
}
header .container{
	max-width: 1200px;
  	box-sizing: content-box;
}
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(1rem, -0.714rem + 3.57vw, 2.5rem);
}

.header-logo {
    line-height: 0;
}

.header-logo img {
  aspect-ratio: 1;
  width: 32px;
  object-fit: contain;
}

.header_city {
    display: flex;
    gap: 4px;
    padding: 0;
    background: none;
    color: var(--black);
    align-items: center;
}

.header_btn {
    display: flex;
    gap: 8px;
    margin-left: auto;
    align-items: center;
}

.header_city.active span,
.header_city.active path {
    color: var(--deep-blue);
    fill: var(--deep-blue);
}
