/* Global styles */
:root {
  --color-white: #fff;
  --color-red: #ce2038;
  --color-blue: #39b3ff;
  --color-darkBlue: #031a4a;
  --color-text: #1a1a1a;
  --button-background: var(--color-blue);
  --bs-link-color: var(--color-blue);
  --bs-link-color-rgb: var(--button-background);
  --bs-link-hover-color-rgb: var(--bs-link-color-rgb);
  --bs-border-radius: 0;
  --bs-border-width: 0;
  --bs-body-font-size: 18px;
  --bs-body-font-family: "Schibsted Grotesk", sans-serif;
  --font-body: "Schibsted Grotesk", sans-serif;
  --bs-body-color: var(--color-text);
  --font-title: "Schibsted Grotesk", sans-serif;
  --selection-color: var(--color-white);
  --selection-bg-color: var(--color-blue);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--bs-link-color);
}

.btn {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  border: 0;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  text-transform: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  --bs-btn-color: var(--color-white);
  --bs-btn-bg: var(--color-blue);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-darkBlue);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--color-white);
  --bs-btn-active-bg: var(--color-darkBlue);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: var(--color-white);
  --bs-btn-disabled-bg: var(--color-blue);
  --bs-btn-disabled-border-color: transparent;
  box-shadow: none;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0px;
  line-height: 1;
  font-family: var(--font-title);
  font-weight: 500;
  letter-spacing: -0.025em;
}

h1,
.h1 {
  font-size: 60px;
}

h2,
.h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: 20px;
  line-height: 28px;
  color: var(--color-text);
  overflow-x: hidden;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b6b6b6;
  margin-bottom: 25px;
}

@media (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 50px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }
}

@media (max-width: 575.98px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 30px;
  }
}

/* nav-01 styles Start */
.nav-01 {
  background: transparent;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease,
    padding-block 0.3s ease,
    box-shadow 0.3s ease;
  padding: 0;
}

.nav-01.scrolled {
  background: var(--color-white);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.nav-01 .container {
  position: relative;
  z-index: 1031;
}

.nav-01__mobile-callbar {
  display: none;
}

.nav-01__menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1020;
  background: rgba(7, 11, 19, 0.56);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  transition:
    opacity 0.28s ease,
    backdrop-filter 0.28s ease;
}

body.menu-open .nav-01__menu-backdrop {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: none;
}

.nav-01__inner {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-height: 52px;
  padding-block: 15px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition:
    min-height 0.28s ease,
    padding-block 0.28s ease;
}

.nav-01.scrolled .nav-01__inner {
  padding-block: 0;
}

.nav-01__inner::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(7, 11, 19, 0.56);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}

body.menu-open .nav-01__inner::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-01__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.nav-01__logo {
  display: block;
  height: 105px;
  width: auto;
  transition: height 0.24s ease;
}

.nav-01.scrolled .nav-01__logo {
  height: 75px;
  width: auto;
}

.nav-01__logo .logo-company-bg,
.nav-01__logo .logo-company-name,
.nav-01__logo .logo-mark {
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.nav-01__logo .logo-sqr {
  fill: #fff;
  transition: fill 0.24s ease;
}

.nav-01__logo .logo-mark {
  transform-origin: center center;
  transform-box: fill-box;
}

.nav-01.scrolled .nav-01__logo .logo-company-bg,
.nav-01.scrolled .nav-01__logo .logo-company-name {
  opacity: 0;
}

.nav-01.scrolled .nav-01__logo .logo-sqr {
  fill: #212121;
}

.nav-01.scrolled .nav-01__logo .logo-mark {
  transform: translate(-232px, 88px);
}

.nav-01__actions {
  display: flex;
  margin-left: auto;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 10px;
}

.nav-01__office-pill,
.nav-01__phone-pill {
  display: inline-flex;
  align-items: center;
  height: 56px;
  border-radius: 28px;
  color: var(--color-white);
}

.nav-01__office-pill {
  justify-content: center;
  min-width: auto;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.nav-01.scrolled .nav-01__office-pill {
  background: #e5e5e5;
}

.nav-01__office-line {
  display: block;
  white-space: nowrap;
  color: var(--color-white);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.nav-01.scrolled .nav-01__office-line {
  color: var(--color-text);
}

.nav-01__phone-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  transition: gap 0.24s ease;
}

.nav-01__emergency-label {
  padding-left: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-red);
  white-space: nowrap;
  text-align: center;
  max-height: 14px;
  overflow: hidden;
  transform: translateY(0);
  transform-origin: center top;
  transition:
    opacity 0.24s ease,
    max-height 0.24s ease,
    transform 0.24s ease;
}

.nav-01__phone-pill {
  display: inline-flex;
  gap: 10px;
  padding: 0 25px;
  background: var(--color-red);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  transition:
    min-width 0.24s ease,
    gap 0.24s ease,
    padding 0.24s ease;
}

.nav-01__phone-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.nav-01__phone-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transform-origin: left top;
  transition:
    opacity 0.24s ease,
    max-height 0.24s ease,
    transform 0.24s ease,
    margin-bottom 0.24s ease;
}

.nav-01__phone-number {
  display: block;
  line-height: 1;
  transition:
    font-size 0.24s ease,
    letter-spacing 0.24s ease;
}

.nav-01__phone-pill:hover,
.nav-01__office-pill:hover {
  color: var(--color-white);
}

.nav-01__phone-icon,
.nav-01__menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-01__phone-icon {
  font-size: 30px;
}

.nav-01.scrolled .nav-01__phone-group {
  gap: 0;
}

.nav-01.scrolled .nav-01__emergency-label {
  opacity: 0;
  max-height: 0;
  transform: translateY(-6px);
  pointer-events: none;
}

.nav-01.scrolled .nav-01__phone-pill {
  min-width: 220px;
  justify-content: space-between;
  gap: 14px;
}

.nav-01.scrolled .nav-01__phone-eyebrow {
  max-height: 12px;
  opacity: 1;
  margin-bottom: 2px;
  transform: translateY(0);
}

.nav-01.scrolled .nav-01__phone-number {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
}

.nav-01__menu-shell {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  isolation: isolate;
  margin-bottom: 2px;
}

.nav-01__menu-toggle {
  position: relative;
  z-index: 3;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: #2858c4;
  box-shadow: none;
  transition:
    transform 0.2s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
  border-radius: 28px;
}

.nav-01__menu-toggle:hover {
  transform: translateY(-1px);
}

.nav-01__menu-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.nav-01__menu-fa {
  position: absolute;
  font-size: 26px;
  line-height: 1;
  color: var(--color-white);
  transition:
    transform 0.34s ease,
    opacity 0.22s ease,
    color 0.22s ease;
}

.nav-01__menu-fa--open {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-01__menu-fa--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.55);
  color: var(--color-text);
}

.nav-01__menu-shell.is-open .nav-01__menu-toggle {
  background: transparent;
  box-shadow: none;
}

.nav-01__menu-shell.is-open .nav-01__menu-toggle:hover {
  transform: none;
}

.nav-01__menu-shell.is-open .nav-01__menu-fa--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.55);
}

.nav-01__menu-shell.is-open .nav-01__menu-fa--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nav-01__menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: min(244px, calc(100vw - 24px));
  padding: 25px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
  transform-origin: calc(100% - 28px) 28px;
  transform: scale(0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.46s cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 0.24s ease,
    visibility 0s linear 0.46s;
}

.nav-01__menu-shell.is-open .nav-01__menu-panel {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.nav-01__menu-panel-head {
  margin-bottom: 14px;
  padding-right: 56px;
}

.nav-01__menu-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bfbfbf;
}

.nav-01__menu-list {
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-01__menu-panel-cta {
  display: none;
}

.nav-01__menu-list .nav-link {
  padding: 0;
  border-bottom: 0;
  color: #282828;
  font-family: "Proxima Nova Rg", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: 2.5px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-01__menu-list .nav-link:hover,
.nav-01__menu-list .nav-link:focus-visible {
  color: var(--color-blue);
  transform: translateX(2px);
}

@media (max-width: 991.98px) {
  .nav-01__office-pill {
    min-width: 112px;
  }

  .nav-01__phone-pill {
    min-width: 136px;
    padding-left: 16px;
  }

  .nav-01.scrolled .nav-01__phone-pill {
    min-width: 192px;
    padding-right: 18px;
  }

  .nav-01.scrolled .nav-01__phone-eyebrow {
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .nav-01.scrolled .nav-01__phone-number {
    font-size: 15px;
    letter-spacing: 0.8px;
  }
}

@media (max-width: 767.98px) {
  .nav-01 {
    padding-block: 12px;
  }

  .nav-01__inner {
    min-height: 46px;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .nav-01 .mobile-phone {
    font-size: 22px;
    color: #fff;
  }

  .nav-01__logo {
    width: 88px;
  }

  .nav-01__actions {
    gap: 7px;
    margin-left: 0;
  }

  .nav-01__phone-group {
    align-items: center;
    gap: 5px;
  }

  .nav-01__phone-pill {
    min-width: auto;
    height: 56px;
    padding: 0 25px;
    font-size: 20px;
  }

  .nav-01.scrolled .nav-01__phone-pill {
    min-width: 176px;
    padding: 0 18px;
    gap: 10px;
  }

  .nav-01.scrolled .nav-01__phone-eyebrow {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .nav-01.scrolled .nav-01__phone-number {
    font-size: 14px;
    letter-spacing: 0.6px;
  }

  .nav-01__phone-icon,
  .nav-01__menu-toggle {
    height: 56px;
  }

  .nav-01__menu-toggle {
    background: none !important;
    width: 30px !important;
  }

  .nav-01__phone-pill .nav-01__phone-icon {
    width: 30px;
    height: 30px;
  }

  .nav-01__menu-panel {
    width: min(236px, calc(100vw - 16px));
    padding: 16px 20px 22px;
    border-radius: 28px;
  }

  .nav-01__menu-list .nav-link {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 575.98px) {
  .nav-01 {
    padding: 0;
  }

  .nav-01.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
  }

  .nav-01 .container {
    padding-top: 0;
  }

  .nav-01__mobile-callbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    max-height: 56px;
    padding: 10px 28px 10px 28px;
    overflow: hidden;
    background: var(--color-red);
    color: var(--color-white);
    transition:
      max-height 0.28s ease,
      padding 0.28s ease,
      opacity 0.2s ease;
  }

  .nav-01.scrolled .nav-01__mobile-callbar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
  }

  .nav-01__mobile-callbar:hover {
    color: var(--color-white);
  }

  .nav-01__mobile-callbar-label {
    flex: 0 0 auto;
    max-width: 92px;
    font-size: 12px;
    font-weight: 700;
    line-height: 14px;
    letter-spacing: 2.6px;
    text-transform: uppercase;
  }

  .nav-01__mobile-callbar-number {
    flex: 1 1 auto;
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .nav-01__mobile-callbar-icon {
    flex: 0 0 auto;
    font-size: 32px;
    line-height: 1;
  }

  .nav-01__inner {
    min-height: 84px;
    align-items: center;
    transition: min-height 0.28s ease;
  }

  .nav-01.scrolled .nav-01__inner {
    min-height: 64px;
  }

  .nav-01__brand {
    padding-bottom: 0;
  }

  .nav-01__logo {
    width: 112px;
    height: auto;
  }

  .nav-01__actions {
    align-items: center;
    align-self: center;
  }

  .nav-01__menu-shell {
    margin-bottom: 0;
  }

  .nav-01__menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
  }

  .nav-01__menu-panel {
    width: min(224px, calc(100vw - 12px));
    border-radius: 28px;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle {
    position: fixed;
    top: 38px;
    right: 42px;
    z-index: 1034;
    width: 40px;
    height: 40px;
    border-radius: 0;
  }

  .nav-01__menu-fa {
    font-size: 26px;
  }

  .nav-01__menu-panel {
    position: fixed;
    top: 30px;
    right: 30px;
    left: 30px;
    width: auto;
    min-height: calc(100vh - 60px);
    padding: 25px;
    border-radius: 32px;
    transform-origin: calc(100% - 34px) 34px;
  }

  .nav-01__menu-panel-head {
    margin-bottom: 24px;
    padding-right: 52px;
  }

  .nav-01__menu-eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .nav-01__menu-panel-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
  }

  .nav-01__menu-panel-cta-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: var(--color-blue);
    margin-bottom: 20px;
  }

  .nav-01__menu-panel-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 16px 0 24px;
    border-radius: 999px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  .nav-01__menu-panel-phone:hover {
    color: var(--color-white);
  }

  .nav-01__menu-panel-phone-icon {
    flex: 0 0 auto;
    font-size: 30px;
    line-height: 1;
  }
}

/* nav-01 design refresh */
.nav-01 {
  min-height: 94px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.nav-01.scrolled {
  min-height: 94px;
  padding: 0;
  background: rgba(3, 26, 74, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(3, 26, 74, 0.18);
}

.nav-01__inner,
.nav-01.scrolled .nav-01__inner {
  min-height: 94px;
  padding-block: 0;
  gap: 30px;
}

.nav-01__inner::after {
  background: transparent;
}

.nav-01__menu-backdrop {
  background: rgba(3, 26, 74, 0.28);
}

.nav-01__brand,
.nav-01__brand:hover,
.nav-01__brand:focus-visible {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.75px;
}

.nav-01__actions {
  align-items: center;
  gap: 30px;
}

.nav-01__office-pill,
.nav-01__phone-pill,
.nav-01.scrolled .nav-01__office-pill,
.nav-01.scrolled .nav-01__phone-pill {
  height: auto;
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.nav-01__office-line,
.nav-01.scrolled .nav-01__office-line,
.nav-01__email-link,
.nav-01__email-link:hover,
.nav-01__email-link:focus-visible {
  display: block;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-01__office-pill:hover .nav-01__office-line,
.nav-01__office-pill:focus-visible .nav-01__office-line,
.nav-01__email-link:hover,
.nav-01__email-link:focus-visible {
  color: var(--color-white);
}

.nav-01__phone-group,
.nav-01.scrolled .nav-01__phone-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}

.nav-01__emergency-label,
.nav-01__phone-icon,
.nav-01__phone-text,
.nav-01__phone-eyebrow,
.nav-01__phone-number {
  display: none;
}

.nav-01__menu-shell {
  margin: 0 0 0 1px;
}

.nav-01__menu-shell.is-open {
  z-index: 1033;
}

.nav-01__menu-toggle,
.nav-01.scrolled .nav-01__menu-toggle {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.22);
}

.nav-01__menu-toggle:hover,
.nav-01__menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.3);
}

.nav-01__menu-fa {
  font-size: 26px;
  color: var(--color-white);
}

.nav-01__menu-shell.is-open .nav-01__menu-toggle {
  opacity: 0;
  pointer-events: none;
}

.nav-01__menu-shell.is-open .nav-01__menu-fa--close {
  color: var(--color-white);
}

.nav-01__menu-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1033;
  width: min(420px, 100vw);
  min-height: 100vh;
  padding: 50px 42px 42px;
  border-radius: 0;
  background: rgba(3, 26, 74, 0.96);
  color: var(--color-white);
  transform-origin: right center;
  transform: translateX(100%);
}

.nav-01__menu-shell.is-open .nav-01__menu-panel {
  transform: translateX(0);
}

.nav-01__menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  z-index: 1;
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 30px;
  line-height: 1;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.nav-01__menu-close:hover,
.nav-01__menu-close:focus-visible {
  background: transparent;
  color: var(--color-blue);
}

.nav-01__menu-eyebrow {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-weight: 500;
}

.nav-01__menu-list .nav-link {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0;
}

.nav-01__menu-list .nav-link:hover,
.nav-01__menu-list .nav-link:focus-visible {
  color: var(--color-blue);
}

@media (max-width: 991.98px) {
  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    gap: 20px;
  }

  .nav-01__actions {
    row-gap: 0;
    column-gap: 20px;
    display: grid;
    grid-template-areas:
      "top-left right"
      "bottom-left right";
    justify-items: end;
  }

  .nav-01__office-pill {
    grid-area: top-left;
    align-self: end;
  }

  .nav-01__email-link {
    grid-area: bottom-left;
    align-self: start;
  }

  .nav-01__menu-shell {
    grid-area: right;
  }
}

@media (max-width: 767.98px) {
  .nav-01,
  .nav-01.scrolled {
    min-height: 76px;
  }

  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    min-height: 76px;
  }

  .nav-01__actions {
    gap: 12px;
  }

  .nav-01__phone-group {
    display: none;
  }

  .nav-01__menu-toggle,
  .nav-01.scrolled .nav-01__menu-toggle {
    width: 64px;
    height: 64px;
  }

  .nav-01__menu-panel {
    width: min(380px, 100vw);
    padding: 48px 32px 36px;
    text-align: left;
  }

  .nav-01__menu-close {
    right: 24px;
  }
}

@media (max-width: 575.98px) {
  .nav-01__mobile-callbar {
    display: none;
  }

  .nav-01 .container {
    padding-top: 0;
  }

  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    min-height: 72px;
  }

  .nav-01__office-pill {
    display: none !important;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle {
    width: 64px;
    height: 64px;
    border-radius: 4px;
  }

  .nav-01__menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(340px, 100%);
    min-height: 100%;
    padding: 46px 28px 32px;
    border-radius: 0;
    transform-origin: right center;
  }

  .nav-01__menu-panel-cta {
    display: flex;
  }

  .nav-01__menu-panel-cta-label {
    color: var(--color-blue);
  }

  .nav-01__menu-panel-phone {
    background: var(--color-blue);
    color: var(--color-darkBlue);
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 500;
  }
}

/* nav-01 styles End */

/* single-banner-01 styles Start */
.single-banner-01 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.64) 38%,
      rgba(10, 10, 10, 0.14) 100%
    ),
    url("/images/banner-01.png") center center / cover no-repeat;
}

.single-banner-01 .container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100vh;
  align-items: flex-end;
  padding-bottom: 75px;
}

.single-banner-01-content {
  z-index: 1;
  color: var(--color-white);
  max-width: 560px;
}

.single-banner-01-title {
  margin-bottom: 14px;
}

.single-banner-01-text {
  margin: 0;
  color: var(--color-white);
  font-size: 22px;
  line-height: 1.2;
  max-width: 560px;
}

.single-banner-01__link {
  margin-top: 24px;
}

@media (max-width: 991.98px) {
  .single-banner-01 {
    background-position: 58% center;
  }

  .single-banner-01 .container {
    padding-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .single-banner-01 {
    min-height: 82vh;
  }

  .single-banner-01 .container {
    min-height: 82vh;
    padding-bottom: 30px;
    justify-content: center;
  }

  .single-banner-01-content {
    max-width: 100%;
  }

  .single-banner-01-title {
    text-align: center;
  }

  .single-banner-01-text {
    display: none;
  }

  .single-banner-01__link {
    width: 100%;
  }
}

/* single-banner-01 styles End */

/* content-02-columns styles Start */

.content-02-columns {
  padding: 75px 0 60px;
  background: var(--color-darkBlue);
  color: var(--color-white);
}

.content-02-columns .row {
  align-items: flex-start;
}

.content-02-title {
  margin: 0;
  color: var(--color-white);
}

.content-02-text {
  font-size: 18px;
  line-height: 24px;
  color: var(--color-white);
}

.content-02-text p {
  margin: 0;
}

@media (max-width: 767.98px) {
  .content-02-columns {
    padding: 54px 0 56px;
  }

  .content-02-title {
    margin-bottom: 15px;
    text-align: center;
  }

  .content-02-text {
    text-align: center;
  }
}

/* content-02-columns styles End */

/* services-01 styles Start */

.services-01 {
  padding: 0 0 63px;
  background: var(--color-darkBlue);
}

.services-01__grid {
  --bs-gutter-x: 29px;
  --bs-gutter-y: 29px;
}

.services-01__card {
  position: relative;
  display: block;
  min-height: 435px;
  overflow: hidden;
  border-radius: 5px;
  color: var(--color-white);
  isolation: isolate;
}

.services-01__card:hover,
.services-01__card:focus-visible {
  color: var(--color-white);
}

.services-01__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.services-01__card:hover .services-01__image,
.services-01__card:focus-visible .services-01__image {
  transform: scale(1.03);
}

.services-01__label,
.services-01__arrow {
  position: absolute;
  z-index: 2;
  color: var(--color-white);
}

.services-01__label {
  left: 35px;
  bottom: 35px;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.25px;
}

.services-01__arrow {
  right: 32px;
  bottom: 35px;
  font-size: 18px;
  line-height: 24px;
}
.services-01 .row,
.services-01__grid {
  align-items: stretch;
}

.services-01__card {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.services-01__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1 1 auto;
  object-fit: cover;
}

@media (max-width: 991.98px) {
  .services-01__label {
    left: 25px;
    bottom: 25px;
  }

  .services-01__arrow {
    right: 25px;
    bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .services-01__card {
    max-height: 260px;
  }
}

@media (max-width: 575.98px) {
  .services-01 {
    padding-bottom: 44px;
  }
}

/* services-01 styles End */

/* cta-01 styles Start */

.cta-01 {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  color: var(--color-darkBlue);
  background: var(--color-white) url("/images/cta-01.png") center center / cover
    no-repeat;
}

.cta-01__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 480px;
  min-height: 550px;
}

.cta-01__title {
  margin-bottom: 16px;
  color: var(--color-darkBlue);
}

.cta-01__text {
  max-width: 440px;
  font-size: 20px;
  line-height: 24px;
  color: var(--color-darkBlue);
}

@media (max-width: 1199.98px) {
  .cta-01 {
    min-height: 500px;
    background-position: 58% center;
  }
}

@media (max-width: 991.98px) {
  .cta-01 {
    min-height: 460px;
    background-position: 62% center;
  }

  .cta-01__content {
    min-height: 460px;
    max-width: 400px;
  }
}

@media (max-width: 767.98px) {
  .cta-01 {
    min-height: 590px;
    background-image: url("/images/cta-01-mobile.webp");
  }

  .cta-01 .cta-text {
    text-align: center;
  }

  .cta-01__content {
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
  }

  .cta-01__title {
    font-size: 50px;
  }
}

@media (max-width: 575.98px) {
  .cta-01__title {
    font-size: 40px;
  }

  .cta-01__text {
    font-size: 18px;
    line-height: 24px;
  }

  .cta-01__link {
    width: 100%;
  }
}

/* cta-01 styles End */

/* benefits-01 styles Start */

.benefits-01 {
  padding: 84px 0 86px;
  background: var(--color-darkBlue);
  color: var(--color-white);
}

.benefits-01__row {
  align-items: center;
  --bs-gutter-x: 24px;
  --bs-gutter-y: 40px;
}

.benefits-01__title {
  margin: 0;
  color: var(--color-white);
}

.benefits-01__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 31px;
}

.benefits-01__card {
  display: flex;
  box-sizing: border-box;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 17px;
  padding: 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  text-align: center;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.benefits-01__icon {
  font-size: 48px;
  line-height: 1;
  color: var(--color-blue);
  transition: transform 0.25s ease;
}

.benefits-01__label {
  margin: 0;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.25px;
  white-space: nowrap;
}

.benefits-01__card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.benefits-01__card:hover .benefits-01__icon {
  transform: scale(1.08);
}

@media (max-width: 1199.98px) {
  .benefits-01__card {
    aspect-ratio: auto;
    height: 100%;
    padding: 35px 15px;
    justify-content: flex-start;
  }

  .benefits-01__label {
    white-space: normal;
  }
}

@media (max-width: 767.98px) {
  .benefits-01__title {
    text-align: center;
  }

  .benefits-01__card {
    background: none;
    padding: 15px 0;
    border-radius: 5px;
  }
}

@media (max-width: 575.98px) {
  .benefits-01 {
    padding: 58px 0 62px;
  }

  .benefits-01__title br {
    display: none;
  }

  .benefits-01__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* benefits-01 styles End */

/* map-01 styles Start */

.map-01 {
  padding: 88px 0 70px;
  background: var(--color-white);
  color: var(--color-darkBlue);
}

.map-01__row {
  align-items: start;
  --bs-gutter-x: 24px;
  --bs-gutter-y: 36px;
}

.map-01__title {
  margin: 0 0 27px;
  color: var(--color-darkBlue);
}

.map-01__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.map-01__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.25px;
}

.map-01__list a::before {
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.map-01__list a:hover,
.map-01__list a:focus-visible {
  color: var(--color-darkBlue);
}

.map-01__media {
  display: flex;
  justify-content: center;
}

.map-01__image {
  display: block;
  width: 100%;
  max-width: 890px;
  height: auto;
}

@media (max-width: 991.98px) {
  .map-01__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px 28px;
  }
}

@media (max-width: 767.98px) {
  .map-01__title {
    text-align: center;

    & br {
      display: none;
    }
  }

  .map-01__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575.98px) {
  .map-01 {
    padding: 58px 0 54px;
  }

  .map-01__list {
    grid-template-columns: 1fr;
    margin: 0 auto;
    width: max-content;
  }
}

/* map-01 styles End */

/* footer-06 styles Start */

.footer-06 {
  padding: 90px 0;
  background: var(--color-darkBlue);
  color: var(--color-white);
}

.footer-06 .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.footer-06__info,
.footer-06__form-card {
  position: relative;
  min-height: 672px;
  padding: 45px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.18);
}

.footer-06__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.footer-06__info-inner {
  position: relative;
  z-index: 1;
}

.footer-06__title {
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.footer-06__contact-lines,
.footer-06__consent-label {
  font-size: 18px;
  line-height: 26px;
  color: var(--color-white);
}

.footer-06__copyright {
  font-size: 14px;
  line-height: 22px;
}

.footer-06__text {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white);
  max-width: 400px;
}

.footer-06__text p,
.footer-06__contact-lines p,
.footer-06__copyright p {
  margin-bottom: 0;
}

.footer-06__contact-lines {
  margin-top: 22px;
}

.footer-06__contact-lines a,
.footer-06__copyright a {
  color: var(--color-blue);
}

.footer-06__advansys-logo {
  display: inline-block;
  height: 16px;
  width: auto;
}

.footer-06__form {
  margin: 0;
}

.footer-06 .form.blocked {
  pointer-events: none;
}

.footer-06__form .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 24px;
}

.footer-06__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.25px;
  color: var(--color-white);
}

.footer-06__control.form-control {
  min-height: 54px;
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  background: #ececec;
  box-shadow: none;
  font-size: 15px;
  color: #111;
}

.footer-06__control.form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.25);
}

.footer-06__textarea {
  min-height: 198px;
  resize: none;
}

.footer-06 .form .tickbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer-06 .form .form-error {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #b94a48;
  font-size: 15px;
  line-height: 140%;
}

.footer-06 .form textarea.form-control {
  height: 198px;
}

.footer-06 .form input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-top: 5px;
}

.footer-06 .form input[type="checkbox"] + label {
  padding: 0 0 0 5px;
}

.footer-06 form input[type="checkbox"] + label + .form-error {
  display: none;
}

.footer-06 form .checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer-06 form .checkbox + label {
  position: relative;
  padding-left: 30px !important;
  cursor: pointer;
}

.footer-06 form .checkbox + label::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  background-color: #fff;
  box-shadow: inset 0 2px 2px rgba(172, 172, 172, 0.27);
}

.footer-06 form .checkbox:checked + label::after {
  content: "\f00c";
  position: absolute;
  top: 3px;
  left: 4px;
  display: inline-block;
  color: #000;
  cursor: pointer;
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.footer-06__consent-label {
  margin: 0;
}

.footer-06 .required-star {
  color: var(--color-red);
}

.footer-06 .btn-primary {
  --bs-btn-bg: var(--color-blue);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: var(--color-blue);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: var(--color-blue);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-bg: var(--color-blue);
  --bs-btn-disabled-border-color: transparent;
}

.footer-06 .btn-primary:hover {
  box-shadow: 0 16px 28px rgba(57, 179, 255, 0.24);
}

.footer-06 .form-group {
  margin-bottom: 0;
}

.footer-06 .form-group label.error {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--color-red);
}

.footer-06 .form-group.has-error .footer-06__control.form-control {
  box-shadow: 0 0 0 2px var(--color-red);
}

.footer-06 .form-group.has-error .footer-06__consent-label {
  color: #fff;
}

.footer-06 form .tickbox.has-error label::before {
  border-color: var(--color-red);
}

@media (max-width: 1199.98px) {
  .footer-06__info,
  .footer-06__form-card {
    min-height: 520px;
  }
}

@media (max-width: 991.98px) {
  .footer-06 {
    padding: 60px 0;
  }

  .footer-06__info,
  .footer-06__form-card {
    min-height: auto;
    border-radius: 0;
    padding: 0;
  }

  .footer-06__info {
    padding: 45px 45px 0 45px;
    border-radius: 10px 10px 0 0;
  }

  .footer-06__form-card {
    padding: 0 45px 45px 45px;
    border-radius: 0 0 10px 10px;
  }

  .footer-06__copyright {
    margin: 50px 0 30px;
    width: 100%;
    justify-content: space-between;
  }

  .footer-06 .btn-primary {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .footer-06__title {
    font-size: 30px;
  }

  .footer-06__copyright {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575.98px) {
  .footer-06 {
    padding: 35px 0 10px;
  }

  .footer-06__text {
    display: none;
  }

  .footer-06__submit.btn {
    width: 100%;
  }

  .footer-06 .form input[type="checkbox"] + label {
    font-size: 15px;
    line-height: 22px;
  }
}

/* footer-06 styles End */

/* modal styles Start */
.modal {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal .modal-content {
  border: none;
}

.modal .modal-header {
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: 0.5rem 0.5rem 0 0;
  justify-content: space-between;
}

.modal .modal-header .close {
  font-size: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: none !important;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-text);
  padding-top: 3px;
}

.modal .modal-body {
  color: var(--color-dark);
}

.modal .modal-footer {
  border-top: none;
}

/* modal styles End */
