/* Header --------------------------------------------------------------------------------------------------------*/
.header {
  padding: 15px 0 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E7E7E7;
}

.header-row {
  display: flex;
  justify-content: space-between;
}

.header-left-part {
  display: flex;
  align-items: flex-end;
}

.header-logo {
  display: block;
  margin-right: 20px;
}

.header-logo-img {
  display: block;
  width: 114px;
  height: 114px;
}

.header-company-name {
  padding-bottom: 5px;
}

.header-company-tagline {
  display: block;
  font-size: 0.938rem;
}

.header-right-part {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.header-right-part-top {
  display: flex;
}

.header-homepage-link {
  padding: 10px 15px;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
  margin-right: 10px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.header-homepage-link:hover {
  color: #0066CC;
  background: #e8f3ff;
}

.header-homepage-link-icon {
  display: block;
  margin: -2px 10px 0 0;
}

.header-language-link {
  display: block;
  padding: 4px 15px;
  background: #F2F2F2;
  font-size: 1rem;
  line-height: 1.813rem;
  font-weight: 700;
}

.header-social-network {
  display: flex;
  padding-left: 20px;
}

.header-social-network-item + .header-social-network-item {
  padding-left: 10px;
}

.header-social-network-link {
  display: block;
  padding: 7px;
  border: 1px solid #0066CC;
}
.header-social-network-link:hover {
  background: #e8f3ff;
}

.header-social-network-icon {
  display: block;
  height: 20px;
  width: 20px;
}

.header-search-form {
  position: relative;
  min-width: 288px;
  width: 100%;
}

.header-search-input {
  width: 100%;
  font-size: 1rem;
  line-height: 1rem;
  color: #595959;
  border: 1px solid #ededed;
  padding: 9px 20px;
}
.header-search-input:focus {
  border-color: #595959;
}

.header-search-btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: none;
  border: 0;
  padding: 0 15px;
}

.header-search-btn-icon {
  display: block;
  margin: auto;
}

.header-hamburger {
  padding: 11px;
  margin: 0;
  width: 51px;
  height: 51px;
  background: none;
  border: 0;
  cursor: pointer;
}

.header-hamburger-line {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: #0066CC;
  border-radius: 4px;
}

/* Responsive Media Queries --------------------------------------------------------------------------------------------------------*/
@media (max-width: 991.98px) {
  .header-homepage-link-icon {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  .header {
    padding: 15px 0;
    margin-bottom: 0;
    border-bottom: 0;
  }

  .header-row {
    align-items: center;
  }

  .header-logo-img {
    width: 83px;
    height: 83px;
  }

  .header-company-name {
    font-size: 1.25rem;
    line-height: 1.563rem;
  }
}

/*# sourceMappingURL=header.css.map */
