/* Global styles */
:root {
  --color-white: #fff;
  --color-red: #a7161d;
  --color-red-hover: #881116;
  --color-darkBlue: #031a4a;
  --color-text: #3d3d3d;
  --nav-link-color: #344154;
  --nav-link-active-color: #8a97a4;
  --nav-link-underline-color: var(--color-red);
  --button-background: var(--color-red);
  --bs-link-color: var(--color-red);
  --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: "Cerebri Sans Pro", sans-serif;
  --font-body: "Cerebri Sans Pro", sans-serif;
  --bs-body-color: var(--color-text);
  --font-title: "Cerebri Sans Pro", sans-serif;
  --selection-color: var(--color-white);
  --selection-bg-color: var(--color-red);
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--bs-link-color);
}

.btn {
  display: flex;
  width: max-content;
  height: 62px;
  max-height: 62px;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  border: 0;
  border-radius: 31px;
  background: var(--button-background);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--color-red-hover);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-primary {
  --bs-btn-color: var(--color-white);
  --bs-btn-bg: var(--color-red);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-red-hover);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--color-white);
  --bs-btn-active-bg: var(--color-red-hover);
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-color: var(--color-white);
  --bs-btn-disabled-bg: var(--color-red);
  --bs-btn-disabled-border-color: transparent;
  background: var(--bs-btn-bg);
  color: var(--bs-btn-color);
  border-color: var(--bs-btn-border-color);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--bs-btn-hover-bg);
  color: var(--bs-btn-hover-color);
  border-color: var(--bs-btn-hover-border-color);
}

.btn-primary:active {
  background: var(--bs-btn-active-bg);
  color: var(--bs-btn-active-color);
  border-color: var(--bs-btn-active-border-color);
}

.btn-primary:disabled,
.btn-primary.disabled {
  background: var(--bs-btn-disabled-bg);
  color: var(--bs-btn-disabled-color);
  border-color: var(--bs-btn-disabled-border-color);
}

.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: 400;
  letter-spacing: -0.025em;
}

h1,
.h1 {
  font-size: 80px;
}

h2,
.h2 {
  font-size: 50px;
  margin-bottom: 20px;
}

h3,
.h3 {
  font-size: 26px;
}

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-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8896a4;
  margin-bottom: 25px;
}

@media (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 60px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }
}

@media (max-width: 767.98px) {
  h1,
  .h1 {
    font-size: 54px;
  }
}

@media (max-width: 575.98px) {
  h1,
  .h1 {
    font-size: 40px;
  }

  h2,
  .h2 {
    font-size: 36px;
  }
}

/* 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: var(--nav-link-color);
  font-size: 18px;
  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(--nav-link-active-color);
  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: 18px;
    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-red);
    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,
.nav-01.scrolled {
  min-height: 88px;
  padding: 0;
  background: var(--color-white);
  backdrop-filter: none;
  box-shadow: none;
}

.nav-01.scrolled {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.nav-01 .container {
  width: 100%;
  max-width: none;
  padding-right: 40px;
  padding-left: 40px;
}

.nav-01__inner,
.nav-01.scrolled .nav-01__inner {
  min-height: 88px;
  padding-block: 0;
  align-items: center;
  gap: 34px;
}

.nav-01__inner::after,
.nav-01__menu-backdrop {
  display: none;
}

.nav-01__brand,
.nav-01__brand:hover,
.nav-01__brand:focus-visible {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  color: #4e5158;
}

.nav-01__logo,
.nav-01.scrolled .nav-01__logo {
  display: block;
  width: 256px;
  height: auto;
  max-height: 70px;
  object-fit: contain;
  transition: none;
}

.nav-01__menu-list {
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 3.2vw, 46px);
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-01__menu-list .nav-link {
  position: relative;
  padding: 4px 0 11px;
  color: var(--nav-link-color);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.3px;
}

.nav-01__menu-list .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--nav-link-underline-color);
  transition: width 0.2s ease;
}

.nav-01__menu-list .nav-link:hover,
.nav-01__menu-list .nav-link:focus-visible,
.nav-01__menu-list .nav-link.active {
  color: var(--nav-link-active-color);
}

.nav-01__menu-list .nav-link:hover::after,
.nav-01__menu-list .nav-link:focus-visible::after,
.nav-01__menu-list .nav-link.active::after {
  width: 100%;
}

@media (max-width: 991.98px) {
  .nav-01,
  .nav-01.scrolled {
    min-height: auto;
  }

  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding-block: 10px;
  }

  .nav-01__menu-list {
    gap: 22px;
    margin-left: 0;
  }
}

@media (max-width: 575.98px) {
  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    min-height: 126px;
  }

  .nav-01__logo,
  .nav-01.scrolled .nav-01__logo {
    width: 220px;
    max-height: 58px;
  }

  .nav-01__menu-list {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 5px;
    column-gap: 18px;
  }

  .nav-01__menu-list .nav-link {
    font-size: 13px;
    padding-bottom: 8px;
  }
}

/* Responsive navigation */
.nav-01__menu-shell,
.nav-01__menu-toggle,
.nav-01__mobile-menu-list {
  display: none;
}

@media (max-width: 991.98px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-01 .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    min-height: 92px;
    flex-direction: row;
    justify-content: space-between;
    padding-block: 0;
  }

  .nav-01__menu-list {
    display: none;
  }

  .nav-01__menu-shell {
    display: block;
  }

  .nav-01__menu-toggle {
    display: grid;
    width: 50px !important;
    height: 50px !important;
    padding: 0;
    place-content: center;
    grid-template-rows: repeat(3, 2px);
    gap: 4px;
    border: 0;
    border-radius: 50%;
    background: #242424 !important;
  }

  .nav-01__menu-toggle span {
    display: block;
    width: 14px;
    height: 2px;
    border-radius: 1px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1032;
    border-radius: 50% !important;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-01__menu-panel {
    position: fixed;
    inset: 0;
    z-index: 1031;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 0;
    opacity: 1;
    transform: translateX(100%);
    transform-origin: right center;
    transition: transform 0.35s ease;
  }

  .nav-01__menu-shell.is-open .nav-01__menu-panel {
    transform: translateX(0);
  }

  .nav-01__mobile-menu-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
  }

  .nav-01__mobile-menu-list .nav-link {
    padding: 0;
    color: #bd2026;
    font-size: 29px;
    font-weight: 300;
    line-height: 1.2;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .nav-01__menu-panel {
    right: 0;
    left: auto;
    width: 380px;
  }
}

@media (max-width: 767.98px) {
  .nav-01 .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .nav-01__logo,
  .nav-01.scrolled .nav-01__logo {
    width: 288px;
  }
}

@media (max-width: 575.98px) {
  .nav-01__inner,
  .nav-01.scrolled .nav-01__inner {
    min-height: 77px;
  }

  .nav-01__logo,
  .nav-01.scrolled .nav-01__logo {
    width: 227px;
    max-height: none;
  }

  .nav-01__menu-toggle {
    width: 50px;
    height: 50px;
  }

  .single-banner-01 {
    min-height: calc(100vh - 77px);
    margin-top: 77px;
  }

  .single-banner-01 .container {
    min-height: calc(100vh - 77px);
  }
}

/* nav-01 styles End */

/* single-banner-01 styles Start */
.single-banner-01 {
  position: relative;
  min-height: calc(100vh - 88px);
  margin-top: 88px;
  overflow: visible;
  background:
    linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.04) 0%,
      rgba(10, 10, 10, 0.33) 58%,
      rgba(10, 10, 10, 0.62) 100%
    ),
    url("/images/main-banner-bg.webp") center center / cover no-repeat;
}

.single-banner-01 .container {
  position: static;
  display: flex;
  min-height: calc(100vh - 88px);
  align-items: flex-end;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 75px;
}

.single-banner-01-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  text-align: center;
}

.single-banner-01-title {
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.22);
}

.single-banner-01__small-break {
  display: none;
}

.single-banner-01-text {
  margin: 0 auto;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}

.single-banner-01 .btn {
  margin-top: 25px;
}

.single-banner-01__scroll {
  position: absolute;
  right: 39px;
  bottom: -40px;
  z-index: 2;
  display: flex;
  height: 200px;
  align-items: flex-start;
  color: var(--color-white);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.15;
  text-transform: uppercase;
  animation: scroll-marker-pulse 2.8s ease-in-out infinite;
}

.single-banner-01__scroll::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  margin-right: 16px;
  background: rgba(255, 255, 255, 0.85);
  transform-origin: top;
  animation: scroll-marker-line 2.8s ease-in-out infinite;
}

.single-banner-01__scroll span {
  margin-top: 7px;
  writing-mode: vertical-rl;
}

@keyframes scroll-marker-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }

  45% {
    opacity: 1;
    transform: translateY(12px);
  }
}

@keyframes scroll-marker-line {
  0%,
  100% {
    transform: scaleY(0.68);
  }

  45% {
    transform: scaleY(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .single-banner-01__scroll,
  .single-banner-01__scroll::before {
    animation: none;
  }
}

@media (max-width: 991.98px) {
  .single-banner-01 {
    min-height: calc(100vh - 92px);
    margin-top: 92px;
    background-position: 58% center;
  }

  .single-banner-01 .container {
    min-height: calc(100vh - 92px);
    padding-top: 100px;
    padding-bottom: 55px;
  }
}

@media (max-width: 767.98px) {
  .single-banner-01 {
    min-height: calc(100vh - 92px);
    background-position: 44% center;
  }

  .single-banner-01 .container {
    min-height: calc(100vh - 92px);
    padding-bottom: 55px;
    justify-content: center;
  }

  .single-banner-01-title {
    max-width: 400px;
    margin-bottom: 22px;
  }

  .single-banner-01__small-break {
    display: inline;
  }

  .single-banner-01-content {
    max-width: 100%;
  }

  .single-banner-01-text {
    display: block;
    max-width: 440px;
    font-size: 24px;
  }

  .single-banner-01 .btn {
    margin-top: 15px;
  }

  .single-banner-01__scroll {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .single-banner-01 {
    min-height: calc(100vh - 77px);
    margin-top: 77px;
    background-position: 53% center;
  }

  .single-banner-01 .container {
    min-height: calc(100vh - 77px);
    padding-top: 70px;
  }

  .single-banner-01-text {
    max-width: 350px;
    font-size: 21px;
    line-height: 1.35;
  }

  .single-banner-01-title {
    max-width: 300px;
  }
}

/* single-banner-01 styles End */

/* about-us styles Start */

.about-us {
  position: relative;
  padding: 85px 0 80px;
  background: var(--color-white);
  text-align: center;
}

.about-us-text {
  margin: 0 auto;
  max-width: 950px;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .about-us {
    padding: 55px 0 60px;
  }
}

@media (max-width: 575.98px) {
  .about-us {
    padding: 50px 0 42px;
  }

  .about-us-text {
    max-width: 330px;
    font-size: 20px;
    line-height: 1.3;
  }
}

/* about-us styles End */

/* our-services styles Start */

.our-services {
  position: relative;
  padding: 85px 0 50px;
  background: #f5f5f5;
}

.our-services .services-items {
  display: flex;
  flex-wrap: wrap;
  margin: 15px -12px 0;
  justify-content: center;
  gap: 1px;
}

.our-services .service-item {
  flex: 1 1 0;
  min-width: 0;
}

.our-services .service-item-img {
  aspect-ratio: 0.71;
  overflow: hidden;
}

.our-services .service-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.our-services .service-item:hover .service-item-img img {
  transform: scale(1.08);
}

.our-services .service-item__title {
  padding: 20px 0;
  color: #4e4e4e;
}

@media (max-width: 991.98px) {
  .our-services {
    padding: 55px 0 33px;
  }

  .our-services .service-item {
    flex-basis: calc(50% - 0.5px);
  }

  .our-services .service-item-img {
    aspect-ratio: 1.08;
  }
}

@media (max-width: 575.98px) {
  .our-services {
    padding: 50px 0 35px;
  }

  .our-services .services-items {
    margin-right: 12px;
    margin-left: 12px;
  }

  .our-services .service-item {
    flex-basis: 100%;
  }

  .our-services .service-item-img {
    aspect-ratio: 1.28;
  }
}

/* our-services styles End */

/*cta-01 styles Start*/

.cta-01 {
  position: relative;
  padding: 250px 0 200px;
  background: url("/images/cta-01-bg.webp") center center / cover no-repeat;
  color: var(--color-white);
  text-align: center;
}

.cta-01 .cta-01-text {
  font-size: 24px;
  line-height: 1.25;
  max-width: 650px;
  margin: 15px auto 0 auto;
}

.cta-01 .btn {
  margin: 25px auto 0 auto;
}

@media (max-width: 991.98px) {
  .cta-01 {
    padding: 200px 0 150px;
  }
}

@media (max-width: 767.98px) {
  .cta-01 {
    padding: 195px 0 145px;
  }

  .cta-01 .cta-01-text {
    max-width: 420px;
  }
}

@media (max-width: 575.98px) {
  .cta-01 {
    padding: 140px 0;
  }

  .cta-01-title {
    max-width: 170px;
    margin-right: auto;
    margin-left: auto;
  }

  .cta-01 .cta-01-text {
    max-width: 330px;
  }
}

/*cta-01 styles End*/

/* process-steps styles Start */

.process-steps {
  padding: 85px 0 65px;
  background: var(--color-white);
  text-align: center;
}

.process-steps__heading h2 {
  margin-bottom: 40px;
}

.process-steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps__item {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.process-steps__item:not(:last-child)::after {
  position: absolute;
  top: 18px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #c8cdd2 0 12px,
    transparent 12px 18px
  );
  content: "";
}

.process-steps__number {
  position: relative;
  z-index: 1;
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0f0f0;
  color: #7e8790;
  font-size: 14px;
  line-height: 1;
}

.process-steps__item img {
  display: block;
  width: 54px;
  height: 54px;
  margin-top: 24px;
  object-fit: contain;
}

.process-steps__item h3 {
  margin-top: 25px;
  color: #4e4e4e;
  font-size: 24px;
  line-height: 1.2;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .process-steps {
    padding: 110px 0 65px;
  }
}

@media (max-width: 575.98px) {
  .process-steps {
    padding: 80px 0 65px;
  }

  .process-steps__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 9px;
    row-gap: 40px;
  }

  .process-steps__item:not(:last-child)::after {
    top: 18px;
    right: auto;
    bottom: auto;
    left: calc(50% + 18px);
    width: calc(100% - 36px);
    height: 2px;
    background: repeating-linear-gradient(
      to right,
      #c8cdd2 0 12px,
      transparent 12px 18px
    );
  }

  .process-steps__item:nth-child(2)::after {
    display: none;
  }
}

/* process-steps styles End */

/* testimonials styles Start */

.testimonials {
  padding: 95px 0 80px;
  background: var(--color-white);
}

.testimonials .container {
  position: relative;
  background: #f7f7f7;
}

.testimonials__slider {
  background: transparent;
}

.testimonials__slide {
  padding: 28px 12% 85px;
}

.testimonials__heading {
  padding: 76px 12% 0;
  text-align: center;
}

.testimonials__heading .subtitle {
  margin-bottom: 23px;
}

.testimonials__heading h2 {
  margin-bottom: 38px;
}

.testimonials__quote {
  max-width: 765px;
  margin: 0 auto;
}

.testimonials__quote blockquote img {
  float: left;
  width: 51px;
  margin: 3px 18px 0 0;
}

.testimonials__quote blockquote {
  margin: 0;
  color: #555;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.43;
}

.testimonials__continue {
  display: none;
}

.testimonials__arrow {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #526273;
  font-size: 28px;
  line-height: 1;
  transform: translateY(-50%);
}

.testimonials__arrow--prev {
  left: -18px;
}

.testimonials__arrow--next {
  right: -18px;
}

.testimonials__arrow:hover,
.testimonials__arrow:focus-visible {
  color: var(--color-red);
}

.testimonials__arrow:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

@media (max-width: 1199.98px) {
  .testimonials__arrow--prev {
    left: -32px;
  }

  .testimonials__arrow--next {
    right: -32px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .testimonials__arrow--prev {
    left: 0;
  }

  .testimonials__arrow--next {
    right: 0;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .testimonials {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  .testimonials {
    padding: 65px 0 55px;
  }

  .testimonials__slide {
    padding: 25px 9% 60px;
  }

  .testimonials__heading {
    padding-top: 55px;
  }

  .testimonials__quote blockquote img {
    width: 51px;
    margin-right: 18px;
  }

  .testimonials__quote blockquote {
    font-size: 18px;
  }

  .testimonials__arrow--prev {
    left: -18px;
  }

  .testimonials__arrow--next {
    right: -18px;
  }
}

@media (max-width: 575.98px) {
  .testimonials {
    padding: 50px 0 55px;
  }

  .testimonials .container {
    width: calc(100% - 54px);
    padding-right: 0;
    padding-left: 0;
  }

  .testimonials__slide {
    padding: 4px 36px 55px;
  }

  .testimonials__heading {
    padding-top: 45px;
  }

  .testimonials__heading h2 {
    margin-bottom: 24px;
  }

  .testimonials__quote--expandable blockquote {
    position: relative;
    max-height: 280px;
    overflow: hidden;
  }

  .testimonials__quote--expandable blockquote::after {
    position: absolute;
    right: 0;
    bottom: 0;
    padding-left: 3px;
    background: #f7f7f7;
    content: "…";
  }

  .testimonials__quote--expandable.is-expanded blockquote {
    max-height: none;
  }

  .testimonials__quote--expandable.is-expanded blockquote::after {
    display: none;
  }

  .testimonials__continue {
    display: block;
    margin-top: 16px;
    padding-top: 17px;
    border-top: 1px solid #d1d1d1;
    background: transparent;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    color: var(--color-red);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
  }

  .testimonials__arrow {
    display: block !important;
  }

  .testimonials__arrow--prev {
    left: -16px;
  }

  .testimonials__arrow--next {
    right: -16px;
  }
}

/* testimonials styles End */

/* gallery-01 styles Start */

.gallery-01 {
  overflow: hidden;
  background: var(--color-white);
}

.gallery-01__row {
  display: flex;
  width: 100vw;
  height: max(330px, 20.35vw);
}

.gallery-01__row--offset {
  margin-left: -55px;
  width: calc(100vw + 110px);
}

.gallery-01__item {
  display: block;
  width: 0;
  height: 100%;
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--color-white);
}

.gallery-01__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  transition: transform 0.45s ease;
}

.gallery-01__row:first-child .gallery-01__item:nth-child(1),
.gallery-01__row:first-child .gallery-01__item:nth-child(4),
.gallery-01__row--offset .gallery-01__item:nth-child(1),
.gallery-01__row--offset .gallery-01__item:nth-child(3) {
  flex-grow: 500;
}

.gallery-01__row:first-child .gallery-01__item:nth-child(2),
.gallery-01__row:first-child .gallery-01__item:nth-child(3),
.gallery-01__row:first-child .gallery-01__item:nth-child(5),
.gallery-01__row--offset .gallery-01__item:nth-child(2),
.gallery-01__row--offset .gallery-01__item:nth-child(4),
.gallery-01__row--offset .gallery-01__item:nth-child(5) {
  flex-grow: 281;
}

.gallery-01__item:hover img,
.gallery-01__item:focus-visible img {
  transform: scale(1.08);
}

.gallery-01__item:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid var(--color-red);
  outline-offset: -3px;
}

@media (max-width: 767.98px) {
  .gallery-01__row {
    height: 220px;
  }

  .gallery-01__row--offset {
    margin-left: -35px;
    width: calc(100vw + 70px);
  }
}

@media (max-width: 575.98px) {
  .gallery-01__row {
    height: 165px;
  }

  .gallery-01__row--offset {
    margin-left: -25px;
    width: calc(100vw + 50px);
  }
}

/* Fixed mosaic with breakpoint-specific viewport offsets. */
.gallery-01__row,
.gallery-01__row--offset {
  width: 1843px;
  height: 377px;
  margin-left: 0;
  transform: translateX(-335px);
}

.gallery-01__row--offset {
  transform: translateX(-452px);
}

.gallery-01__row:first-child .gallery-01__item:nth-child(1),
.gallery-01__row:first-child .gallery-01__item:nth-child(4),
.gallery-01__row--offset .gallery-01__item:nth-child(1),
.gallery-01__row--offset .gallery-01__item:nth-child(3) {
  flex: 0 0 500px;
}

.gallery-01__row:first-child .gallery-01__item:nth-child(2),
.gallery-01__row:first-child .gallery-01__item:nth-child(3),
.gallery-01__row:first-child .gallery-01__item:nth-child(5),
.gallery-01__row--offset .gallery-01__item:nth-child(2),
.gallery-01__row--offset .gallery-01__item:nth-child(4),
.gallery-01__row--offset .gallery-01__item:nth-child(5) {
  flex: 0 0 281px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .gallery-01__row {
    transform: translateX(-455px);
  }

  .gallery-01__row--offset {
    transform: translateX(-571px);
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .gallery-01__row {
    transform: translateX(-600px);
  }

  .gallery-01__row--offset {
    transform: translateX(-718px);
  }
}

@media (max-width: 575.98px) {
  .gallery-01__row {
    transform: translateX(-576px);
  }

  .gallery-01__row--offset {
    transform: translateX(-693px);
  }
}

@media (min-width: 1400px) {
  .gallery-01__row {
    width: calc(100vw + 335px);
  }

  .gallery-01__row--offset {
    width: calc(100vw + 452px);
  }

  .gallery-01__item {
    flex: 1 1 0;
  }

  .gallery-01__row:first-child .gallery-01__item:nth-child(1),
  .gallery-01__row:first-child .gallery-01__item:nth-child(4),
  .gallery-01__row--offset .gallery-01__item:nth-child(1),
  .gallery-01__row--offset .gallery-01__item:nth-child(3) {
    flex-grow: 500;
  }

  .gallery-01__row:first-child .gallery-01__item:nth-child(2),
  .gallery-01__row:first-child .gallery-01__item:nth-child(3),
  .gallery-01__row:first-child .gallery-01__item:nth-child(5),
  .gallery-01__row--offset .gallery-01__item:nth-child(2),
  .gallery-01__row--offset .gallery-01__item:nth-child(4),
  .gallery-01__row--offset .gallery-01__item:nth-child(5) {
    flex-grow: 281;
  }
}

/* gallery-01 styles End */

/* map-01 styles Start */

.map-01 {
  position: relative;
  height: 545px;
  overflow: hidden;
  background: #e6e6e6;
}

.map-01::before {
  position: absolute;
  z-index: 450;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(238, 238, 238, 0.9) 0%,
    rgba(238, 238, 238, 0.82) 15%,
    rgba(238, 238, 238, 0) 35%
  );
  content: "";
  pointer-events: none;
}

.map-01__map {
  position: absolute;
  inset: 0;
}

.map-01__map .leaflet-tile-pane {
  filter: grayscale(1) contrast(0.75) brightness(1.12);
}

.map-01__content {
  position: relative;
  z-index: 500;
  height: 100%;
  pointer-events: none;
}

.map-01__panel {
  display: flex;
  width: 310px;
  height: 100%;
  padding: 135px 0 0 5px;
  flex-direction: column;
}

.map-01__panel h2,
.map-01__panel li {
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.map-01__panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-01__panel li {
  color: #bd292d;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.45;
}

.map-01__panel li::before {
  margin-right: 10px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  content: "\f061";
}

@media (max-width: 767.98px) {
  .map-01 {
    height: 545px;
  }

  .map-01__panel {
    width: 100%;
    height: auto;
    padding: 30px 0 0;
    align-items: center;
  }

  .map-01__desktop-break {
    display: none;
  }

  .map-01__panel ul {
    display: flex;
    gap: 24px;
  }

  .map-01__panel li {
    font-size: 24px;
    line-height: 1;
  }

  .map-01::before {
    background: rgba(238, 238, 238, 0.18);
  }
}

@media (max-width: 575.98px) {
  .map-01 {
    height: 545px;
  }

  .map-01__panel {
    padding-top: 40px;
  }

  .map-01__panel ul {
    gap: 14px;
  }

  .map-01__panel li {
    font-size: 16px;
  }
}

/* map-01 styles End */

/* footer-06 styles Start */

.footer-06 {
  padding: 110px 0 80px;
  background: #1c1c1c;
  color: var(--color-white);
}

.footer-06__info,
.footer-06__form-card {
  position: relative;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-06__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}

.footer-06__info-inner {
  position: relative;
  z-index: 1;
}

.footer-06__title {
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);
}

.footer-06__contact-lines,
.footer-06__consent-label {
  font-size: 18px;
  line-height: 26px;
  color: var(--color-white);
}

.footer-06__text {
  font-size: 24px;
  line-height: 1.25;
  color: var(--color-white);
  max-width: 470px;
  font-weight: 300;
}

.footer-06__text p,
.footer-06__contact-lines p {
  margin-bottom: 0;
}

.footer-06__text {
  display: block;
}

.footer-06__contact-lines {
  margin-top: 30px;
  font-size: 18px;
  line-height: 26px;
}

.footer-06__contact-lines a {
  color: var(--color-red);
}

.footer-06__form-head {
  margin-bottom: 28px;
}

.footer-06__form-title {
  margin-bottom: 8px;
  color: var(--color-white);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}

.footer-06__form-text {
  margin: 0;
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.4;
}

.footer-06__form {
  margin: 0;
}

.footer-06 .form.blocked {
  pointer-events: none;
}

.footer-06__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--color-white);
}

.footer-06__control.form-control {
  min-height: 64px;
  padding: 10px 14px;
  border: 0;
  border-radius: 0;
  background: #f5f5f5;
  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: 229px;
  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: 229px;
}

.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: 32px !important;
  cursor: pointer;
  font-size: 14px;
  line-height: 20px;
}

.footer-06 form .checkbox + label::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
}

.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 .form-group {
  margin-bottom: 0;
}

.footer-06 .form-group.bottom-box {
  display: flex;
  justify-content: flex-start;
}

.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);
}

.footer-06 > .container > .row {
  --bs-gutter-y: 0;
}

.footer-06__form-card {
  margin-top: 52px;
}

.footer-06__form .row {
  --bs-gutter-y: 26px;
}

.footer-06 .form .tickbox {
  margin-bottom: 0;
}

.footer-06 .form-group.bottom-box .btn {
  width: 233px;
  height: 64px;
  max-height: 64px;
}

@media (max-width: 1199.98px) {
  .footer-06 > .container > .row > .col-lg-6 {
    width: 100%;
  }

  .footer-06__text {
    display: none;
  }

  .footer-06__form-card {
    margin-top: 38px;
  }
}

@media (max-width: 1199.98px) {
  .footer-06 .row {
    --bs-gutter-x: 56px;
  }
}

@media (max-width: 991.98px) {
  .footer-06 {
    padding: 120px 0 96px;
  }

  .footer-06__info,
  .footer-06__form-card {
    min-height: auto;
    border-radius: 0;
    padding: 0;
  }

}

@media (min-width: 576px) and (max-width: 767.98px) {
  .footer-06 {
    padding: 88px 0 96px;
  }
}

@media (max-width: 575.98px) {
  .footer-06 {
    padding: 94px 0 80px;
  }

  .footer-06 .container {
    padding-right: 28px;
    padding-left: 28px;
  }

  .footer-06__text {
    font-size: 19px;
  }

  .footer-06 .form input[type="checkbox"] + label {
    font-size: 15px;
    line-height: 22px;
  }

  .footer-06 .form-group.bottom-box .btn {
    width: 100%;
  }
}

/* footer-06 styles End */

/* footer-02 styles Start */
.footer-02 {
  padding: 70px 0 60px;
  background: #202020;
  color: var(--color-white);
}

.footer-02 .row {
  display: flex;
  align-items: center;
}

.footer-02__meta {
  flex: 0 0 auto;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.45;
}

.footer-02__meta p {
  margin: 0;
}

.footer-02 a {
  color: var(--color-white);
}

.footer-02__meta a.footer-02__meta-link {
  font-weight: 600;
}

.footer-02__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-02__nav a {
  color: var(--color-white);
  font-size: 20px;
  line-height: 1;
}

.footer-02__nav a:hover,
.footer-02__nav a:focus-visible {
  color: var(--color-red);
}

@media (min-width: 992px) {
  .footer-02 .row > .col-md-6:first-child {
    width: 33.333333%;
  }

  .footer-02 .row > .col-md-6:last-child {
    width: 66.666667%;
  }
}

@media (max-width: 991.98px) {
  .footer-02 {
    padding: 45px 0 40px;
  }

  .footer-02 .row > .col-md-6 {
    width: 100%;
  }

  .footer-02 .row > .col-md-6:last-child {
    order: -1;
    margin-bottom: 28px;
  }

  .footer-02__nav {
    gap: 0;
  }

  .footer-02__meta {
    display: flex;
    justify-content: space-between;
  }
}

@media (max-width: 575.98px) {
  .footer-02 {
    padding: 44px 0 40px;
  }

  .footer-02 .row {
    justify-content: center;
  }

  .footer-02 .row > .col-md-6:last-child {
    margin-bottom: 37px;
  }

  .footer-02__nav {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .footer-02__nav a {
    font-size: 18px;
  }

  .footer-02__meta {
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
}

/* footer-02 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-red);
  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 */

/* lightbox navigation styles Start */

.lightbox__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
  color: var(--color-white);
  font-family: "Font Awesome 6 Pro";
  font-size: 30px;
  font-weight: 300;
  opacity: 0.85;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.lightbox__button::before {
  line-height: 1;
}

.lightbox__nav--prev::before {
  content: "\f060";
}

.lightbox__nav--next::before {
  content: "\f061";
}

.lightbox__close::before {
  content: "\f00d";
}

.lightbox__nav--prev {
  left: 32px;
}

.lightbox__nav--next {
  right: 32px;
}

.lightbox__close {
  right: 24px;
  top: 24px;
}

@media (max-width: 575.98px) {
  .lightbox__nav--prev {
    left: 14px;
  }

  .lightbox__nav--next {
    right: 14px;
  }
}

/* lightbox navigation styles End */
