html body {
    margin: 0;
}

body header.header {
    height: 10.5rem;
    border-bottom: 0.0625rem solid rgba(199, 199, 199, 0.75);
    padding: 1.5rem;
    box-sizing: border-box;
}
body header.header .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
body header.header a {
    display: block;
    margin: auto;
    max-width: 100%;
    width: 17.5rem;
    margin-bottom: 1.5rem;
}
body header.header a img.header__logo {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
body header.header .search__wrapper {
    max-width: 100%;
    width: 25rem;
    height: 2.1875rem;
    margin: auto;
    position: relative;
}
body header.header .search__wrapper input.header__search {
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    box-shadow: -1px 0px 2px 0px #c7c7c7, 1px 0px 2px 0px #c7c7c7;
    padding: 0 1rem;
    font-family: Segoe, sans-serif;
    border: none;
    outline: none;
    transition: box-shadow 0.2s ease-in-out;
}
body header.header .search__wrapper input.header__search:hover,
body header.header .search__wrapper input.header__search:focus {
    box-shadow: 0 0 0.3rem #292727;
}
body header.header .search__wrapper.inactive::before {
    content: "";
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    z-index: 10;
    background-image: url(../search.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
