/* Global styles */
:root {
  --color-white: #fff;
  --color-red: #ce2038;
  --color-blue: #1f49a0;
  --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: "Proxima Nova Rg", sans-serif;
  --font-body: "Proxima Nova Rg", sans-serif;
  --bs-body-color: var(--color-text);
  --font-title: "Poppins", 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: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 0;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  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-red);
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: var(--color-white);
  --bs-btn-hover-bg: var(--color-red);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-color: var(--color-white);
  --bs-btn-active-bg: var(--color-red);
  --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;
  box-shadow: none;
}

.btn-primary:hover {
  box-shadow: 0 16px 28px rgba(206, 32, 56, 0.28);
}

.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;
}

/* 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: blur(2px);
}

.nav-01__inner {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.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;
}

.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 {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 124px;
  padding: 0 25px;
  background: rgba(255, 255, 255, 0.15);
  font-size: 14px;
  line-height: 1.1;
}

.nav-01.scrolled .nav-01__office-pill {
  background: #e5e5e5;
}

.nav-01__office-line {
  display: block;
  white-space: nowrap;
  color: var(--color-white);
}

.nav-01.scrolled .nav-01__office-line {
  color: var(--color-text);
}

.nav-01__office-line:first-child {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
}

.nav-01__office-line:last-child {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-01__phone-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.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;
}

.nav-01__phone-pill {
  gap: 10px;
  padding: 0 25px;
  background: var(--color-red);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.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__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: 22px;
  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;
  }
}

@media (max-width: 767.98px) {
  .nav-01 {
    padding-block: 12px;
  }

  .nav-01__inner {
    min-height: 46px;
    gap: 10px;
  }

  .nav-01__logo {
    width: 88px;
  }

  .nav-01__actions {
    gap: 7px;
  }

  .nav-01__phone-group {
    align-items: center;
    gap: 5px;
  }

  .nav-01__emergency-label {
    font-size: 7px;
    letter-spacing: 0.24em;
  }

  .nav-01__phone-pill {
    min-width: auto;
    height: 56px;
    padding: 0 25px;
    font-size: 20px;
  }

  .nav-01__phone-icon,
  .nav-01__menu-toggle {
    width: 56px;
    height: 56px;
  }

  .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__phone-group {
    display: none;
  }

  .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: 18px;
  }

  .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: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-red);
  }

  .nav-01__menu-panel-phone {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 0 16px 0 24px;
    border-radius: 999px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
  }

  .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 styles End */

/* single-banner-01 styles Start */
.single-banner-01 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.62) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.14) 38%, rgba(10, 10, 10, 0.44) 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: 470px;
}

.single-banner-01-title {
  margin-bottom: 15px;
}

.single-banner-01-text {
  margin: 0;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.2;
}

@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;
    background:
      linear-gradient(180deg, rgba(14, 14, 14, 0.26) 0%, rgba(14, 14, 14, 0.66) 100%),
      linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.48) 100%),
      url("/images/banner-01.png") 62% center / cover no-repeat;
  }

  .single-banner-01 .container {
    min-height: 82vh;
    padding-bottom: 30px;
  }
}

/* single-banner-01 styles End */

/* content-02-columns styles Start */

.content-02-columns {
  padding: 75px 0 95px;
}

.content-02-columns .row>.col-12+.col-md-6 .content-02-text {
  font-size: 22px;
  line-height: 30px;
  max-width: 540px;
}

.content-02-columns .row>.col-12+.col-md-6+.col-md-6 .content-02-text {
  font-size: 18px;
  line-height: 26px;
}

/* content-02-columns styles End */

/* services-01 styles Start */

.services-01 {
  padding: 75px 0 100px;
  background: #f5f5f5;
}

.services-01-row {
  --bs-gutter-x: 22px;
  --bs-gutter-y: 18px;
}

.services-01-card {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 110px;
  padding: 25px;
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-text);
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.services-01-card__icon {
  display: flex;
  width: 80px;
  max-width: 80px;
  align-items: center;
  justify-content: center;
}

.services-01-card__icon img {
  display: block;
  width: auto;
  max-width: 80px;
  height: auto;
  transition: filter 0.25s ease;
}

.services-01-card__title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.025em;
}

.services-01-card:hover {
  background: #2950aa;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(41, 80, 170, 0.16);
}

.services-01-card:hover .services-01-card__icon img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1199.98px) {
  .services-01 {
    padding: 72px 0 90px;
  }



  .services-01-row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 18px;
  }

  .services-01-card {
    gap: 20px;
    padding: 22px 20px;
  }


}

@media (max-width: 991.98px) {
  .services-01 {
    padding: 64px 0 80px;
  }

  .services-01-title {
    margin-bottom: 24px;
  }

  .services-01-row {
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
  }

  .services-01-card {
    gap: 18px;
    min-height: 104px;
    padding: 20px 18px;
  }

  .services-01-card__icon {
    width: 72px;
    max-width: 72px;
  }

  .services-01-card__icon img {
    max-width: 72px;
  }
}

@media (max-width: 767.98px) {
  .services-01 {
    padding: 56px 0 68px;
  }

  .services-01-title {
    margin-bottom: 22px;
  }

  .services-01-row {
    --bs-gutter-x: 14px;
    --bs-gutter-y: 14px;
  }

  .services-01-card {
    gap: 16px;
    min-height: 100px;
    padding: 18px;
  }

  .services-01-card__icon {
    width: 64px;
    max-width: 64px;
    min-width: 64px;
  }

  .services-01-card__icon img {
    max-width: 64px;
  }


}

@media (max-width: 575.98px) {
  .services-01-row {
    --bs-gutter-x: 0;
  }



  .services-01-card {
    min-height: 96px;
    padding: 18px 20px;
  }
}

/* services-01 styles End */

/* cta-01 styles Start */

.cta-01 {
  position: relative;
  padding: 90px 0 75px;
  color: var(--color-white);
  background: var(--color-blue) url("/images/cta-01-bg.png") center center / cover no-repeat;
}

.cta-01::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 75px;
  left: 0;
  bottom: 0;
  background: var(--color-white);
}

.cta-01__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 90%;
  align-items: flex-start;
}

.cta-01__title {
  margin-bottom: 20px;
}

.cta-01__text {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white);
  max-width: 580px;
}

.cta-01__media {
  position: relative;
  width: 100%;
  margin-bottom: -35px;
}

.cta-01__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.cta-01__logo-part {
  position: absolute;
  right: 45px;
  bottom: -40px;
  width: 100%;
  max-width: 87px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 1199.98px) {
  .cta-01 {
    padding: 78px 0 72px;
  }

  .cta-01::before {
    height: 72px;
  }



  .cta-01__text {
    max-width: 500px;
    font-size: 19px;
    line-height: 26px;
  }

  .cta-01__logo-part {
    right: 32px;
    bottom: -34px;
    max-width: 78px;
  }
}

@media (max-width: 991.98px) {
  .cta-01 {
    padding: 64px 0 72px;
    background-position: center top;
  }

  .cta-01::before {
    height: 64px;
  }

  .cta-01__content {
    height: auto;
    max-width: 100%;
    padding-right: 0;
  }


  .cta-01__text {
    max-width: 100%;
    font-size: 18px;
    line-height: 26px;
  }

  .cta-01__media {
    max-width: 640px;
    margin-bottom: -28px;
  }

  .cta-01__logo-part {
    right: 28px;
    bottom: -28px;
    max-width: 74px;
  }
}

@media (max-width: 767.98px) {
  .cta-01 {
    padding: 52px 0 58px;
  }

  .cta-01::before {
    height: 52px;
  }

  .cta-01__title {
    margin-bottom: 16px;
  }

  .cta-01__text {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 24px;
  }

  .cta-01__media {
    margin-bottom: -22px;
  }

  .cta-01__image {
    border-radius: 8px;
  }

  .cta-01__logo-part {
    right: 22px;
    bottom: -22px;
    max-width: 66px;
  }
}

@media (max-width: 575.98px) {
  .cta-01 {
    padding: 44px 0 50px;
  }

  .cta-01::before {
    height: 44px;
  }



  .cta-01__text {
    font-size: 16px;
    line-height: 23px;
  }

  .cta-01__link {
    width: 100%;
  }

  .cta-01__media {
    margin-bottom: -18px;
  }

  .cta-01__logo-part {
    right: 16px;
    bottom: -18px;
    max-width: 58px;
  }
}

/* cta-01 styles End */

/* testimonial-carousel styles Start */

.testimonial-carousel {
  padding: 20px 0 80px;
}

.testimonial-carousel__title {
  max-width: 450px;
}

.testimonial-carousel__nav {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.testimonial-carousel__button {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #ececec;
  color: #1f1f1f;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
  font-size: 24px;
}

.testimonial-carousel__button:hover {
  transform: translateY(-1px);
  background: #e3e3e3;
}

.testimonial-carousel__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.testimonial-carousel__viewport {
  min-height: 100%;
}

.testimonial-carousel__viewport .slick-list {
  transition: height 0.25s ease;
}

.testimonial-carousel__text {
  max-width: 590px;
  color: #2f2f2f;
}

.testimonial-carousel__text .review-text {
  margin: 0;
  font-size: 20px;
  line-height: 1.45;
}

.testimonial-carousel__text:not(.is-expanded) .review-text--clamp {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-carousel__toggle {
  display: inline-flex;
  padding: 0;
  margin-top: 18px;
  border: 0;
  background: transparent;
  color: var(--color-blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.testimonial-carousel__meta {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 25px;
}

.testimonial-carousel__accent {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--color-blue);
}

.testimonial-carousel__author {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text);
}

@media (max-width: 1199.98px) {
  .testimonial-carousel {
    padding: 30px 0 50px;
  }
}

@media (max-width: 991.98px) {
  .testimonial-carousel {
    padding: 25px 0 40px;
  }

  .testimonial-carousel .row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    row-gap: 20px;
    margin-right: 0;
    margin-left: 0;
  }

  .testimonial-carousel .row>[class*="col-"] {
    display: contents;
  }

  .testimonial-carousel .subtitle {
    order: 1;
  }

  .testimonial-carousel__title {
    order: 2;
    max-width: 100%;
  }

  .testimonial-carousel__viewport {
    order: 3;
    margin-top: 0;
  }

  .testimonial-carousel__nav {
    order: 4;
    margin-top: 0;
  }

  .testimonial-carousel__text {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .testimonial-carousel__nav {
    margin-top: 22px;
  }

  .testimonial-carousel__text .review-text {
    font-size: 18px;
    line-height: 1.5;
  }

  .testimonial-carousel__toggle {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  .testimonial-carousel__text:not(.is-expanded) .review-text--clamp {
    -webkit-line-clamp: 5;
  }
}

/* testimonial-carousel styles End */

/* instagram-feed01 styles Start */

.instagram-feed01 {
  --gallery-grid-gap: 24px;
  --gallery-grid-rows: 2;
  --gallery-grid-columns: 4;
  --gallery-grid-center-width: calc(100vw - 120px);
  --gallery-grid-edge-peek: clamp(32px, 5vw, 72px);
  padding: 0 0 52px;
  overflow: clip;
  background:
    linear-gradient(180deg,
      var(--color-white) 0 70%,
      var(--color-blue) 70% 100%);
}

.instagram-feed01__items {
  display: grid;
  grid-template-areas:
    "n6 n1 n1 n2 n4 n3"
    "n6 n1 n1 n7 n5 n5";
  --gallery-grid-cell-size: calc((var(--gallery-grid-center-width) - var(--gallery-grid-gap) * calc(var(--gallery-grid-columns) - 1)) / var(--gallery-grid-columns));
  grid-template-rows: repeat(var(--gallery-grid-rows), var(--gallery-grid-cell-size));
  grid-template-columns:
    auto repeat(var(--gallery-grid-columns), var(--gallery-grid-cell-size)) auto;
  gap: var(--gallery-grid-gap);
  width: calc(100% + var(--gallery-grid-edge-peek) * 2);
  margin-left: calc(var(--gallery-grid-edge-peek) * -1);
}

.instagram-feed01__item {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  transform: translateZ(0);
}

.instagram-feed01__item:nth-of-type(1) {
  grid-area: n1;
}

.instagram-feed01__item:nth-of-type(2) {
  grid-area: n2;
}

.instagram-feed01__item:nth-of-type(3) {
  grid-area: n3;
}

.instagram-feed01__item:nth-of-type(4) {
  grid-area: n4;
}

.instagram-feed01__item:nth-of-type(5) {
  grid-area: n5;
}

.instagram-feed01__item:nth-of-type(6) {
  grid-area: n6;
}

.instagram-feed01__item:nth-of-type(7) {
  grid-area: n7;
}

.instagram-feed01__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.instagram-feed01__item:hover .instagram-feed01__image {
  transform: scale(1.03);
  filter: saturate(1.05);
}

.instagram-feed01__item:nth-of-type(3) .instagram-feed01__image,
.instagram-feed01__item:nth-of-type(5) .instagram-feed01__image {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.instagram-feed01__item:nth-of-type(6) .instagram-feed01__image {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

@media (min-width: 576px) {
  .instagram-feed01 {
    --gallery-grid-center-width: 540px;
  }
}

@media (min-width: 768px) {
  .instagram-feed01 {
    --gallery-grid-center-width: 720px;
  }
}

@media (min-width: 992px) {
  .instagram-feed01 {
    --gallery-grid-center-width: 960px;
  }
}

@media (min-width: 1200px) {
  .instagram-feed01 {
    --gallery-grid-center-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .instagram-feed01 {
    --gallery-grid-center-width: 1320px;
  }
}

@media (max-width: 1199.98px) {
  .instagram-feed01 {
    --gallery-grid-gap: 20px;
    padding-bottom: 46px;
  }
}

@media (max-width: 991.98px) {
  .instagram-feed01 {
    --gallery-grid-gap: 16px;
    --gallery-grid-rows: 2;
    --gallery-grid-columns: 3;
    --gallery-grid-edge-peek: clamp(20px, 4vw, 44px);
  }

  .instagram-feed01__items {
    grid-template-areas:
      "n6 n1 n1 n2 n4"
      "n7 n1 n1 n2 n5";
  }

  .instagram-feed01__item:nth-of-type(3) {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .instagram-feed01 {
    padding: 24px 0 42px;
  }
}

@media (max-width: 575.98px) {
  .instagram-feed01 {
    --gallery-grid-center-width: calc(100vw - 40px);
    --gallery-grid-columns: 1;
    --gallery-grid-gap: 12px;
    --gallery-grid-edge-peek: 18px;
    padding: 20px 0 34px;
  }

  .instagram-feed01__items {
    grid-template-areas:
      "n6 n1 n4"
      "n7 n1 n4";
    grid-template-rows: repeat(2,
        calc((var(--gallery-grid-cell-size) - var(--gallery-grid-gap)) / 2));
  }

  .instagram-feed01__item:nth-of-type(2),
  .instagram-feed01__item:nth-of-type(5) {
    display: none;
  }
}

/* instagram-feed01 styles End */

/* footer-06 styles Start */

.footer-06 {
  padding: 52px 0 58px;
  background: var(--color-blue);
  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: 560px;
  padding: 45px;
  border-radius: 10px;
  background: #1a4497;
}

.footer-06__info {
  overflow: hidden;
}

.footer-06__info-inner {
  position: relative;
  z-index: 1;
}

.footer-06__title,
.footer-06__form-title {
  margin-bottom: 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.footer-06__address,
.footer-06__contact-lines,
.footer-06__consent-label {
  font-size: 16px;
  line-height: 22px;
  color: var(--color-white);
}

.footer-06__text {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-white);
}

.footer-06__text p,
.footer-06__address p,
.footer-06__contact-lines p {
  margin-bottom: 0;
}

.footer-06__address,
.footer-06__contact-lines,
.footer-06__socials {
  margin-top: 28px;
}

.footer-06__address strong,
.footer-06__contact-lines strong {
  font-weight: 600;
}



.footer-06__contact-lines a {
  color: var(--color-white);
}

.footer-06__socials {
  display: flex;
}

.footer-06__social {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #133d8e;
  color: var(--color-white);
  font-size: 18px;
}

.footer-06__watermark {
  position: absolute;
  left: 45px;
  bottom: 45px;
  width: 110px;
  height: auto;
  pointer-events: none;
}

.footer-06__form {
  margin: 0;
}

.footer-06 .form.blocked {
  pointer-events: none;
}

.footer-06__form .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 16px;
}

.footer-06__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.2;
  color: var(--color-white);
}

.footer-06__control.form-control {
  min-height: 63px;
  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: 260px;
  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: 260px;
}

.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: 5px;
  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: #0d205b;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: #0d205b;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: #0d205b;
  --bs-btn-active-border-color: transparent;
  --bs-btn-disabled-bg: #0d205b;
  --bs-btn-disabled-border-color: transparent;
}

.footer-06 .btn-primary:hover {
  box-shadow: 0 16px 28px rgba(13, 32, 91, 0.28);
}

.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: 46px 0 52px;
  }

  .footer-06__info,
  .footer-06__form-card {
    min-height: auto;
  }

  .footer-06__watermark {
    left: auto;
    right: 26px;
    bottom: 26px;
    width: 88px;
  }
}

@media (max-width: 575.98px) {
  .footer-06 {
    padding: 34px 0 38px;
  }

  .footer-06__info,
  .footer-06__form-card {
    padding: 24px 18px;
  }

  .footer-06__form .row {
    --bs-gutter-y: 14px;
  }

  .footer-06__title,
  .footer-06__form-title {
    font-size: 34px;
  }

  .footer-06__submit.btn {
    width: 100%;
  }
}

/* footer-06 styles End */

/* footer-02 styles Start */

.footer-02 {
  padding: 34px 0 42px;
  background: var(--color-blue);
  color: var(--color-white);
}

.footer-02__row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.footer-02__meta {
  font-size: 14px;
  line-height: 1.35;
  color: var(--color-white);
}

.footer-02__meta p {
  margin-bottom: 0;
}

.footer-02__nav {
  width: 100%;
}

.footer-02__menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-02__menu a {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

@media (max-width: 991.98px) {
  .footer-02 {
    padding: 30px 0 38px;
  }

  .footer-02__meta {
    text-align: left;
  }

  .footer-02__menu {
    justify-content: flex-start;
    gap: 18px 42px;
  }
}

@media (max-width: 767.98px) {
  .footer-02__nav {
    display: flex;
    justify-content: center;
  }

  .footer-02__meta {
    text-align: center;
  }

  .footer-02__menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 420px);
    justify-content: center;
    gap: 16px 36px;
  }

  .footer-02__menu li {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .footer-02 {
    padding: 26px 0 32px;
  }

  .footer-02__meta {
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
  }

  .footer-02__menu {
    width: min(100%, 320px);
    gap: 14px 24px;
  }

  .footer-02__menu a {
    font-size: 18px;
  }
}

@media (max-width: 479.98px) {
  .footer-02__menu {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 14px;
  }
}

/* footer-02 styles End */