 :root {
  --st-navy: #062544;
  --st-orange: #ff6b1a;
  --st-line: #e8edf3
}

.st-header,
.st-header * {
  box-sizing: border-box
}

.st-header {
  position: relative;
  z-index: 10000;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--st-line);
  box-shadow: 0 5px 25px rgba(6, 37, 68, .08);
  font-family: inherit
}

.st-header__inner {
  width: min(1420px, calc(100% - 40px));
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 26px
}

.st-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto
}

.st-logo img {
  display: block;
  width: auto;
  max-width: 170px;
  height: 91px;
  object-fit: contain
}

.st-desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 2px
}

.st-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 15px;
  color: #071c35 !important;
  background: transparent;
  border: 0;
  text-decoration: none !important;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer
}

.st-nav-link:after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 19px;
  height: 3px;
  border-radius: 3px;
  background: var(--st-orange);
  transform: scaleX(0);
  transition: .2s
}

.st-nav-link:hover,
.st-nav-link:focus,
.st-nav-link.is-active,
.st-dropdown.is-active>.st-nav-link {
  color: var(--st-orange) !important
}

.st-nav-link:hover:after,
.st-nav-link:focus:after,
.st-nav-link.is-active:after,
.st-dropdown.is-active>.st-nav-link:after {
  transform: scaleX(1)
}

.st-dropdown {
  position: relative;
  display: flex
}

.st-dropdown__menu {
  position: absolute;
  top: calc(100% - 12px);
  left: 0;
  width: 230px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--st-line);
  border-radius: 13px;
  box-shadow: 0 18px 45px rgba(6, 37, 68, .15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s
}

.st-dropdown:hover .st-dropdown__menu,
.st-dropdown:focus-within .st-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: none
}

.st-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  border-radius: 9px;
  color: #132d49 !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600
}

.st-dropdown__menu a:hover {
  background: #fff2e9;
  color: var(--st-orange) !important
}

.st-dropdown__menu i {
  width: 18px;
  text-align: center
}

.st-header__actions {
  display: flex;
  align-items: center;
  gap: 9px
}

.st-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 15px;
  border-radius: 12px;
  background: var(--st-navy);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
  white-space: nowrap
}

.st-call i {
  font-size: 18px
}

.st-call:hover {
  background: var(--st-orange)
}

.st-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: #f0f5f9;
  color: var(--st-navy);
  font-size: 20px;
  cursor: pointer
}

.st-mobile-menu,
.st-menu-overlay,
.st-app-nav {
  display: none
}

@media(max-width:1180px) {
  .st-header__inner {
    gap: 14px
  }

  .st-logo img {
    max-width: 125px
  }

  .st-nav-link {
    padding: 0 9px;
    font-size: 12px
  }

  .st-nav-link:after {
    left: 9px;
    right: 9px
  }

  .st-call span {
    display: none
  }

  .st-call {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center
  }
}

@media(max-width:900px) {
  body {
    padding-bottom: 72px !important
  }

  .st-header {
    position: sticky;
    top: 0
  }

  .st-header__inner {
    width: 100%;
    height: 68px;
    padding: 6px 14px;
    gap: 10px
  }

  .st-logo img {
    height: 54px;
    max-width: 142px
  }

  .st-desktop-nav {
    display: none
  }

  .st-header__actions {
    margin-left: auto
  }

  .st-call {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #fff4ea;
    color: var(--st-orange) !important
  }

  .st-menu-button {
    display: grid;
    place-items: center
  }

  .st-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10001;
    border: 0;
    background: rgba(4, 22, 40, .58);
    opacity: 0;
    visibility: hidden;
    transition: .25s
  }

  .st-menu-overlay.is-open {
    opacity: 1;
    visibility: visible
  }

  .st-mobile-menu {
    display: flex;
    position: fixed;
    z-index: 10002;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(88vw, 370px);
    padding: 18px;
    background: #f7f9fc;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .28s ease;
    overflow: auto
  }

  .st-mobile-menu.is-open {
    transform: none
  }

  .st-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 2px 16px;
    color: var(--st-navy);
    font-size: 19px
  }

  .st-mobile-menu__head button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: #e8eef5;
    color: var(--st-navy);
    font-size: 18px
  }

  .st-mobile-menu__links {
    display: grid;
    gap: 7px
  }

  .st-mobile-menu__links>a,
  .st-mobile-menu summary {
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid #e3e9f0;
    border-radius: 13px;
    background: #fff;
    color: #102b47 !important;
    text-decoration: none !important;
    font-weight: 650;
    list-style: none
  }

  .st-mobile-menu summary::-webkit-details-marker {
    display: none
  }

  .st-mobile-menu details>a {
    display: block;
    margin-left: 35px;
    padding: 11px 13px;
    border-left: 2px solid var(--st-orange);
    color: #294560 !important;
    text-decoration: none !important
  }

  .st-mobile-menu details[open] summary {
    color: var(--st-orange) !important;
    border-color: #ffd9c3
  }

  .st-mobile-menu details[open] summary .fa-angle-down {
    transform: rotate(180deg)
  }

  .st-mobile-book {
    margin-top: auto;
    display: block;
    padding: 15px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--st-orange), #ff8b28);
    color: #fff !important;
    text-align: center;
    text-decoration: none !important;
    font-weight: 800
  }

  .st-app-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    z-index: 9999;
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 62px;
    padding: 6px 3px calc(5px + env(safe-area-inset-bottom));
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 18px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 35px rgba(6, 37, 68, .22);
    backdrop-filter: blur(12px)
  }

  .st-app-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #476078 !important;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 700
  }

  .st-app-nav i {
    font-size: 18px
  }

  .st-app-nav__book {
    position: relative;
    top: -19px
  }

  .st-app-nav__book i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--st-orange), #ff9b31);
    box-shadow: 0 8px 18px rgba(255, 107, 26, .35);
    color: #fff;
    font-size: 19px
  }

  .st-app-nav__book span {
    color: var(--st-orange)
  }

  body.st-menu-open {
    overflow: hidden
  }
}

@media(max-width:380px) {
  .st-logo img {
    max-width: 115px
  }

  .st-header__inner {
    padding-left: 10px;
    padding-right: 10px
  }

  .st-app-nav {
    left: 4px;
    right: 4px;
    bottom: 4px
  }
}