body {
  padding-top: 90px;
}
@media screen and (max-width: 980px) {
  body {
    padding-top: 60px;
  }
}
body.is-drawer-open {
  overflow: hidden;
}
.Header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 90px;
  background-color: var(--color-primary);
}
@media screen and (max-width: 980px) {
  .Header {
    height: 60px;
    background-color: #fff;
  }
}
.Header__Inner {
  width: 100%;
  height: 100%;
  display: flex;
}
.Header-Logo {
  width: 234px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: var(--color-white);
}
@media screen and (max-width: 980px) {
  .Header-Logo {
    width: auto;
    padding-left: 8px;
    padding-right: 8px;
    align-items: center;
  }
  .Header-Logo img {
    width: 94px;
    height: auto;
  }
}
.Header-Nav {
  margin-left: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 12px;
}
@media screen and (max-width: 980px) {
  .Header-Nav {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    align-items: center;
  }
}
.Header-Nav-List {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 980px) {
  .Header-Nav-List {
    display: none;
  }
}
.Header-Nav-List-Item {
  height: 100%;
}
.NavLink {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.12em;
  color: var(--color-white);
  font-weight: bold;
}
.ContactButton {
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-left: 20px;
  padding-right: 16px;
  background-color: #f16908;
}
.ContactButton-Icon {
  width: 26px;
}
.PhoneNumberButton {
  display: grid;
  grid-template-columns: 22px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "icon number" "time time";
}
.PhoneNumberButton-Icon {
  grid-area: icon;
}
.PhoneNumberButton-Number {
  grid-area: number;
}
.PhoneNumberButton-Time {
  grid-area: time;
}
.Header-SpActions {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 8px;
  padding-right: 6px;
}
@media screen and (max-width: 980px) {
  .Header-SpActions {
    display: flex;
  }
}
.Header-SpActions-Phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-top: 8px;
  padding-right: 12px;
  padding-bottom: 8px;
  padding-left: 12px;
  height: 48px;
  border-radius: 5px;
  background-color: #f16908;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.Header-SpActions-Phone-Icon {
  flex: 0 0 auto;
  width: 16px;
  height: auto;
}
.Header-SpActions-MenuButton {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 48px;
  border-width: 0;
  border-radius: 5px;
  background-color: var(--color-primary, #0d366d);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.HeaderDrawer {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 40;
  overflow-y: auto;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: var(--color-primary, #0d366d);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.HeaderDrawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease, visibility 0s linear 0s;
}
@media screen and (min-width: 981px) {
  .HeaderDrawer {
    display: none;
  }
}
.HeaderDrawer__Inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-right: 24px;
  padding-bottom: 48px;
  padding-left: 24px;
}
.HeaderDrawer-Nav {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}
.HeaderDrawer-Nav-Item {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255,255,255,0.3);
}
.HeaderDrawer-Nav-Item:first-child {
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255,255,255,0.3);
}
.HeaderDrawer-Nav-Link {
  display: block;
  padding-top: 18px;
  padding-right: 8px;
  padding-bottom: 18px;
  padding-left: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.HeaderDrawer-Ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.HeaderDrawer-Cta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-right: 32px;
  padding-bottom: 18px;
  padding-left: 32px;
  border-radius: 4px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.2s;
}
.HeaderDrawer-Cta:hover {
  opacity: 0.9;
}
.HeaderDrawer-Cta--form {
  background-color: #f16908;
}
.HeaderDrawer-Cta--phone {
  background-color: #f16908;
  gap: 32px;
}
.HeaderDrawer-Cta--line {
  background-color: #00b623;
  gap: 32px;
}
.HeaderDrawer-Cta-Icon {
  flex: 0 0 auto;
  width: auto;
  width: 32px;
}
