:root {
  --bluedark: #13324D;
  --navy: #2A2F35;
  --navydark: #1b1e22;
  --bluelight: #4ECDC4;
  --background: #F5F5F5;
  --gold: #F7D87F;
  --white: #FFFFFF;
  --black: #1B1E22;
}

:root[data-theme=light] {
  --theme-background: var(--background);
  --theme-text: var(--black);
  --theme-text-muted: var(--navy);
  --theme-navbar-bg: var(--white);
  --theme-navbar-shadow: none;
}
:root[data-theme=light] .navbar-brand-dark {
  display: none;
}
:root[data-theme=light] .theme-switcher {
  --top: 74%;
}
:root[data-theme=light] .theme-switcher.vert:hover, :root[data-theme=light] .theme-switcher.vert:focus {
  --top: 25%;
}
:root[data-theme=light] .card.card-dm {
  color: var(--theme-text);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--white)), to(var(--theme-background)));
  background-image: linear-gradient(to bottom, var(--white), var(--theme-background));
}
:root[data-theme=light] .card.card-dm-white {
  color: var(--theme-text);
  background-color: var(--white);
}
:root[data-theme=light] .card.card-dark {
  color: var(--white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
}

:root[data-theme=dark] {
  --theme-background: var(--navydark);
  --theme-text: var(--white);
  --theme-text-muted: var(--background);
  --theme-navbar-bg: var(--navydark);
  --theme-navbar-shadow: 0 0.125rem 2rem -0.5rem rgba(0,0,0,0.35);
}
:root[data-theme=dark] .navbar-brand-light {
  display: none;
}
:root[data-theme=dark] .theme-switcher {
  --top: 25%;
}
:root[data-theme=dark] .theme-switcher.vert:hover, :root[data-theme=dark] .theme-switcher.vert:focus {
  --top: 74%;
}
:root[data-theme=dark] .main-header-trusted-item:not(.no-invert) img, :root[data-theme=dark] .dm-image {
  -webkit-filter: grayscale(1) invert(1) brightness(10);
          filter: grayscale(1) invert(1) brightness(10);
}
:root[data-theme=dark] .section .sign {
  opacity: 0.04;
}
:root[data-theme=dark] .card.card-dm {
  color: var(--theme-text);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
}
:root[data-theme=dark] .card.card-dm-white {
  color: var(--theme-text);
  background-color: var(--navy);
}
:root[data-theme=dark] .card.card-dark {
  color: var(--white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
}
:root[data-theme=dark] .breadcrumb {
  --bs-breadcrumb-item-active-color: var(--theme-text);
  --bs-breadcrumb-divider-color: var(--theme-text-muted);
}

html {
  scroll-padding-top: calc(var(--navbarHeight, 2rem) + 3rem);
}

body {
  color: var(--theme-text);
  font-size: 18px;
  background-color: var(--theme-background, var(--background));
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "XOPQ" 96, "XTRA" 468, "YOPQ" 79, "YTAS" 750, "YTDE" -203, "YTFI" 738, "YTLC" 514, "YTUC" 712;
}

.allura-regular {
  font-family: "Allura", cursive;
  font-weight: 400;
  font-style: normal;
}

.navbar {
  --bs-navbar-toggler-padding-y: 0.25rem;
  --bs-navbar-toggler-padding-x: 0.75rem;
  --bs-navbar-toggler-font-size: 1.25rem;
  --bs-navbar-toggler-icon-bg: none;
  --bs-navbar-toggler-border-color: rgba(var(--bs-emphasis-color-rgb), 0.15);
  --bs-navbar-toggler-border-radius: var(--bs-border-radius);
  --bs-navbar-toggler-focus-width: 0.25rem;
  --bs-navbar-toggler-transition: box-shadow 0.15s ease-in-out;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: var(--theme-navbar-bg);
  -webkit-box-shadow: var(--theme-navbar-shadow);
          box-shadow: var(--theme-navbar-shadow);
  padding: 0;
}
.navbar-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 2rem 2fr 2rem auto;
  grid-template-columns: auto 2fr auto;
  gap: 2rem;
}
.navbar-inner .navbar-toggler {
  border-width: 0;
  min-width: 44px;
  min-height: 44px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.navbar-inner .navbar-toggler:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.navbar-inner .navbar-toggler .line {
  display: block;
  background-color: var(--theme-text);
  width: 32px;
  height: 4px;
  border-radius: 8px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.navbar-inner .navbar-toggler .line + .line {
  margin-top: 4px;
}
.navbar-inner .navbar-toggler .line:nth-child(2) {
  background-color: var(--bluelight);
  z-index: -1;
}
.navbar-inner .navbar-toggler[aria-expanded=true] .line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}
.navbar-inner .navbar-toggler[aria-expanded=true] .line:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.navbar-inner .navbar-toggler[aria-expanded=true] .line:nth-child(3) {
  opacity: 0;
}
@media screen and (max-width: 1399px) {
  .navbar-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .navbar-inner .navbar-toggler {
    margin-left: auto;
  }
}
.navbar-brand {
  padding: 1.8rem 0;
  margin: 0;
}
.navbar-brand a {
  display: block;
}
.navbar-brand a img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1399px) {
  .navbar-collapse {
    position: fixed;
    top: var(--navbarHeight, 0);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--navbarHeight, 0)) !important;
    z-index: 11;
    background-color: var(--theme-navbar-bg);
    padding-top: 1rem;
    padding-bottom: 2rem;
    padding-inline: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: hidden;
    overflow-y: auto;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: height 0s linear, -webkit-transform 0.3s ease;
    transition: height 0s linear, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, height 0s linear;
    transition: transform 0.3s ease, height 0s linear, -webkit-transform 0.3s ease;
  }
  .navbar-collapse.collapsing {
    -webkit-transition: height 0s linear, -webkit-transform 0.3s ease;
    transition: height 0s linear, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, height 0s linear;
    transition: transform 0.3s ease, height 0s linear, -webkit-transform 0.3s ease;
  }
  .navbar-collapse.show {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .navbar-collapse hr {
    opacity: 0.1;
  }
  .navbar-collapse .navbar-nav {
    width: 100%;
    max-width: var(--containerWideWidth);
    margin: 0 auto;
    gap: 0.5rem;
  }
  .navbar-collapse .navbar-nav .nav-link {
    font-size: 1.15rem;
  }
  .navbar-collapse .navbar-nav .dropdown-item {
    padding-right: 0;
    font-size: 1.15rem;
  }
  .navbar-collapse .navbar-nav-additional {
    width: 100%;
    max-width: var(--containerWideWidth);
    margin: 0 auto;
  }
}
.navbar-nav {
  --bs-nav-link-color: var(--theme-text);
  --bs-nav-link-hover-color: var(--bluelight);
  --bs-nav-link-active-color: var(--bluelight);
  --bs-nav-link-disabled-color: var(--bs-navbar-disabled-color);
  --bs-navbar-active-color: var(--bluelight);
  width: 100%;
  gap: 4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1399px) {
  .navbar-nav {
    gap: 2rem;
  }
}
.navbar-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1399px) {
  .navbar-nav .nav-item {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.navbar-nav .nav-link {
  font-weight: 400;
}
@media screen and (max-width: 1399px) {
  .navbar-nav .dropdown {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.navbar-nav .dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-nav .dropdown-toggle svg {
  display: block;
  color: var(--bluelight);
  width: 1.25rem;
  margin-left: 0.5rem;
}
.navbar-nav .dropdown-toggle::after {
  display: none;
}
.navbar-nav .dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 12rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1rem;
  --bs-dropdown-color: var(--theme-text);
  --bs-dropdown-bg: var(--theme-navbar-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
  --bs-dropdown-inner-border-radius: calc(var(--bs-border-radius) - var(--bs-border-width));
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: none;
  --bs-dropdown-link-color: var(--theme-text);
  --bs-dropdown-link-hover-color: var(--bluelight);
  --bs-dropdown-link-hover-bg: var(--bs-tertiary-bg);
  --bs-dropdown-link-active-color: var(--bluelight);
  --bs-dropdown-link-active-bg: var(--theme-navbar-bg);
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.75rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  -webkit-transform: translateX(-25%);
          transform: translateX(-25%);
}
@media screen and (max-width: 1399px) {
  .navbar-nav .dropdown-menu {
    width: 100%;
    -webkit-transform: translate(0);
            transform: translate(0);
    opacity: 0.75;
  }
}
.navbar-nav .dropdown-item {
  border: 2px solid transparent;
}
.navbar-nav .dropdown-item:hover, .navbar-nav .dropdown-item:focus {
  color: var(--bs-dropdown-link-hover-color);
  background-color: var(--theme-navbar-bg);
  border: 2px solid var(--bluelight);
}
@media screen and (max-width: 1399px) {
  .navbar-nav .dropdown-item {
    text-align: right;
  }
}
.navbar-nav-additional {
  margin-top: auto !important;
}
.navbar-shortcut {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.navbar-shortcut .btn {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.theme-switcher {
  position: fixed;
  top: 35%;
  right: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 9;
  opacity: 0.8;
}
@media screen and (max-width: 1399px) {
  .theme-switcher:not(.theme-switcher-horizontal) {
    display: none;
  }
}
.theme-switcher-btn {
  position: relative;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.875rem;
  padding: 0.5rem;
  border-radius: 5rem;
  background-color: var(--bs-black);
  border: 3px solid var(--bs-black);
  opacity: 0.8;
  cursor: pointer;
}
.theme-switcher-btn:hover, .theme-switcher-btn:focus {
  opacity: 1;
}
.theme-switcher-btn .icon {
  position: relative;
  display: block;
  width: 24px;
  z-index: 1;
}
.theme-switcher-btn .icon svg {
  display: block;
  width: 100%;
  color: var(--gold);
}
.theme-switcher-btn .indicator {
  position: absolute;
  top: var(--top, 25%);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--white);
  -webkit-transition: top 0.3s ease, left 0.3s ease;
  transition: top 0.3s ease, left 0.3s ease;
}
.theme-switcher-horizontal {
  position: static;
  top: unset;
  left: unset;
  -webkit-transform: unset;
          transform: unset;
}
.theme-switcher-horizontal .theme-switcher-btn {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.theme-switcher-horizontal .theme-switcher-btn .indicator {
  width: unset;
  height: 100%;
  -webkit-transform: translateY(0) translateX(-50%);
          transform: translateY(0) translateX(-50%);
  top: unset;
  left: var(--top, 25%);
}

.main-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.main-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: var(--outboundContainerWidth, 0);
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
  width: 45%;
  max-width: 60rem;
  height: 100%;
  background-image: url("../img/china_map_dotted.png");
  background-repeat: no-repeat;
  background-position: center 15%;
  background-size: 100% auto;
  z-index: -2;
  opacity: 0.5;
}
.main-header-separator {
  position: absolute;
  left: -2px;
  bottom: 0;
  width: calc(100% + 2px);
  height: 75%;
  z-index: -1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.main-header-separator svg {
  display: block;
  width: 100%;
  max-height: 450px;
  height: 100%;
}
.main-header-separator svg .curvePath {
  fill: url(#curvePathGradient);
}
.main-header-content {
  position: relative;
  z-index: 2;
  padding: 15rem 0 15rem 0;
}
.main-header-title {
  font-weight: 600;
}
.main-header-title b {
  font-weight: 800;
}
.main-header-trusted p{
  color: var(--theme-text) !important;
}
.main-header-trusted-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2rem;
}
.main-header-trusted p {
  opacity: 0.5;
  color: var(--bs-black);
}
.main-header-trusted-roller {
  max-width: 640px;
}
.main-header-trusted-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3rem 0 0;
  width: 150px;
  height: 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.main-header-trusted-item img {
  display: block;
  width: 100%;
  max-width: 100px;
  height: auto;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  -o-object-position: center;
     object-position: center;
}
.main-header-person {
  position: relative;
}
.main-header-person-in {
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 100%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.main-header-person img {
  display: block;
  width: 100%;
  height: auto;
}
.main-header-quickcontact {
  position: absolute;
  bottom: 6rem;
  right: 2rem;
  z-index: 1;
}
@media screen and (max-width: 1919px) {
  .main-header:after {
    background-position: center 30%;
  }
  .main-header-content {
    padding: 14rem 0 14rem 0;
  }
}
@media screen and (max-width: 1778px) {
  .main-header::after {
    right: 1rem;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@media screen and (max-width: 1434px) {
  .main-header-content {
    padding: 4rem 0 12rem 0;
  }
  .main-header-person {
    right: 0;
  }
  .main-header-person-in {
    -webkit-transform: translateX(50%) translateY(6rem);
            transform: translateX(50%) translateY(6rem);
  }
  .main-header-trusted:not(.card) {
    display: none;
  }
  .main-header-trusted-mobile {
    margin-top: -5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .main-header-trusted-mobile .main-header-trusted-roller {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  .main-header:after {
    background-position: center 30%;
  }
  .main-header-person-in {
    width: 120%;
    -webkit-transform: translateX(40%) translateY(6rem);
            transform: translateX(40%) translateY(6rem);
  }
}
@media screen and (max-width: 959px) {
  .main-header-content .display-5 {
    font-size: calc(1.225rem + 2.1vw);
  }
  .main-header-person-in {
    width: 100%;
    -webkit-transform: translateX(35%) translateY(5rem);
            transform: translateX(35%) translateY(5rem);
  }
}
@media screen and (max-width: 899px) {
  .main-header-person-in {
    width: 100%;
    -webkit-transform: translateX(35%) translateY(0rem);
            transform: translateX(35%) translateY(0rem);
  }
}
@media screen and (max-width: 767px) {
  .main-header-content {
    padding: 4rem 0 16rem 0;
  }
  .main-header-person-in {
    right: 0;
    width: 55%;
    -webkit-transform: translateX(-10%) translateY(0rem);
            transform: translateX(-10%) translateY(0rem);
  }
}
@media screen and (max-width: 545px) {
  .main-header-content .btn {
    --bs-btn-padding-y: 1rem;
    --bs-btn-padding-x: 1.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main-header-person-in {
    right: 0;
    width: 70%;
  }
}
@media screen and (max-width: 440px) {
  .main-header-person-in {
    right: 0;
    width: 87%;
    -webkit-transform: translateX(5%) translateY(0);
            transform: translateX(5%) translateY(0);
  }
}

.section {
  position: relative;
}
.section-header {
  text-align: center;
  position: relative;
}
.section-title {
  font-weight: 700;
  letter-spacing: 2px;
}
.section-subtitle {
  font-weight: 400;
  opacity: 0.5 !important;
}
.section-w-sign .sign {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateY(-25%) translateX(20%);
          transform: translateY(-25%) translateX(20%);
  z-index: -1;
  opacity: 0.85;
  display: block;
  max-width: 800px;
}
@media screen and (max-width: 1929px) {
  .section-w-sign .sign {
    -webkit-transform: translateY(-25%) translateX(0%);
            transform: translateY(-25%) translateX(0%);
    right: 0;
    left: unset;
  }
}
@media screen and (max-width: 1199px) {
  .section-w-sign .sign {
    top: 8ch;
    width: 70vw;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    right: unset;
  }
}
.section-w-sign:nth-child(2n+2) .sign {
  -webkit-transform: translateY(-25%) translateX(-120%);
          transform: translateY(-25%) translateX(-120%);
}
@media screen and (max-width: 1929px) {
  .section-w-sign:nth-child(2n+2) .sign {
    -webkit-transform: translateY(-25%) translateX(0%);
            transform: translateY(-25%) translateX(0%);
    left: 0;
  }
}
@media screen and (max-width: 1199px) {
  .section-w-sign:nth-child(2n+2) .sign {
    top: 8ch;
    width: 70vw;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    right: unset;
  }
}

.quick-offer {
  margin-top: -5rem;
}
@media screen and (max-width: 1434px) {
  .quick-offer {
    margin-top: 0;
  }
}
.quick-offer .row {
  height: 100%;
}
.quick-offer-box {
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.quick-offer-box .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
@media screen and (max-width: 1399px) {
  .quick-offer-box .row .col-9 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    padding-right: var(--bs-gutter-x);
  }
}
.quick-offer-box:hover, .quick-offer-box:focus {
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
  color: var(--white);
}
.quick-offer-box:hover .btn .icon, .quick-offer-box:focus .btn .icon {
  margin-left: 0;
  opacity: 1;
}
@media screen and (max-width: 960px) {
  .quick-offer-box:hover, .quick-offer-box:focus {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
}
.quick-offer-box .btn {
  pointer-events: none;
  margin-top: auto;
}
.quick-offer-box .btn .icon {
  color: var(--bluelight);
  margin-left: -1.75rem;
  opacity: 0;
  -webkit-transition: margin-left 0.3s ease, opacity 0.3s ease;
  transition: margin-left 0.3s ease, opacity 0.3s ease;
}
.quick-offer-box-ico {
  padding: 2rem;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.15);
}
.quick-offer-box-inspection {
  color: var(--white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
}
.quick-offer-box-audit {
  color: var(--white);
  background-color: var(--bluelight);
}
.quick-offer-box-audit .quick-offer-box-ico img {
  margin-right: -0.5rem;
}
.quick-offer .card {
  overflow: hidden;
}
.quick-offer .card-title {
  font-weight: 700;
}
.quick-offer .card-body {
  height: 100%;
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.terriscope-box {
  color: var(--white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
}
.terriscope-box img {
  max-width: 400px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.whywe-box {
  color: var(--black);
  text-decoration: none;
  background-color: var(--white);
  -webkit-transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: background 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease;
  transition: transform 0.3s ease, background 0.3s ease, -webkit-transform 0.3s ease;
}
.whywe-box:hover, .whywe-box:focus {
  background-color: var(--bluelight);
  color: var(--white);
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}
.whywe-box:hover .btn .icon, .whywe-box:focus .btn .icon {
  margin-left: 0;
  opacity: 1;
}
.whywe-box .card-title {
  font-weight: 700;
}
.whywe-box .card-text {
  opacity: 0.8;
}

.cooperation .container-fluid-right {
  position: relative;
  overflow: hidden;
  padding-block: 2rem;
  margin-block: -2rem;
}
.cooperation .container-fluid-right .row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.cooperation .container-fluid-right .row .col:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 17%;
}
.cooperation .container-fluid-right .row .col:last-child {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  width: 100%;
}
@media screen and (max-width: 1434px) {
  .cooperation .container-fluid-right {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    width: 100%;
    max-width: unset;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: 0;
    margin-left: 0;
  }
  .cooperation .container-fluid-right > .row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cooperation .container-fluid-right > .row > [class^=col] {
    width: 100%;
  }
}
.cooperation-list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 2;
  height: 100%;
}
.cooperation-list .card-body {
  padding-top: 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1434px) {
  .cooperation-list {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
            transform: translate(-50%, 0%);
    width: 100%;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cooperation-list .card {
    width: 64px;
    height: 64px;
    padding: 0 !important;
  }
  .cooperation-list .card-body {
    display: none;
  }
}
.cooperation-box {
  gap: 1rem;
  color: var(--black);
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.cooperation-box:hover .card-badge, .cooperation-box[aria-current=true] .card-badge {
  background-color: var(--bluelight);
}
.cooperation-box .card-badge {
  --bs-badge-font-size: 2rem;
  --bs-badge-font-weight: 900;
  --bs-badge-color: var(--white);
  line-height: 0;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  aspect-ratio: 1/1;
  background-color: var(--navydark);
  width: 64px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
@media screen and (max-width: 1434px) {
  .cooperation-box .card-badge {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
}
@media screen and (max-width: 1434px) {
  .cooperation-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 64px;
            flex: 0 1 64px;
  }
}
.cooperation-rotator {
  --outboundWidth: calc(80% - var(--outboundContainerWidth) - (var(--bs-gutter-x) * 0.5));
  width: var(--outboundWidth);
  clip-path: polygon(-0.25% -5%, 100vw -5%, 100vw 105%, -0.25% 105%);
}
@media screen and (max-width: 1434px) {
  .cooperation-rotator {
    width: 100%;
  }
}
.cooperation-rotator-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  color: var(--white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
  overflow: hidden;
}
@media screen and (max-width: 1434px) {
  .cooperation-rotator-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cooperation-rotator-box .card-img {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  background-color: #f00;
}
.cooperation-rotator-box .card-img img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1434px) {
  .cooperation-rotator-box .card-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .cooperation-rotator-box .card-img img {
    position: static;
    aspect-ratio: 16/12;
    -o-object-position: center;
       object-position: center;
  }
}
.cooperation-rotator-box .card-body {
  padding: 2rem 3rem;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 1434px) {
  .cooperation-rotator-box .card-body {
    padding-top: 4rem;
    padding-inline: 2rem;
    width: 100%;
    min-height: auto;
  }
}
.cooperation-rotator-box .card-body .more {
  background-color: transparent;
  border: none;
  color: currentColor;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: -0.475rem;
}
.cooperation-rotator-box .card-body .more svg {
  width: 64px;
  display: block;
}
.cooperation-rotator-box .card-body .more:hover, .cooperation-rotator-box .card-body .more:focus {
  color: var(--bluelight);
}
.cooperation-rotator .owl-stage {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.cooperation-rotator .owl-stage-outer {
  height: 100%;
  overflow: unset;
}
@media screen and (max-width: 1434px) {
  .cooperation-rotator-box .card {
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;
  }
  .cooperation-rotator-box .card-img {
    max-height: 28ch;
  }
  .cooperation-rotator-box .card-body p:last-child:not(:nth-child(2)) {
    display: none;
  }
  .cooperation-rotator-box .card-body .more {
    display: none;
  }
}

.trustus-logo-train {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.trustus-logo-train + .trustus-logo-train {
  margin-top: 1.5rem;
}
@media screen and (max-width: 1434px) {
  .trustus-logo-train + .trustus-logo-train {
    margin-top: 1rem;
  }
}
.trustus-logo-train .scroller__inner {
  padding-block: 0;
  gap: 3rem;
}
@media screen and (max-width: 1434px) {
  .trustus-logo-train .scroller__inner {
    gap: 1rem;
  }
}
.trustus-logo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 2rem;
  background-color: var(--white);
  padding: 0;
  width: 308px;
  height: auto;
  aspect-ratio: 3/1;
  padding: 1.1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
@media screen and (max-width: 1434px) {
  .trustus-logo-item {
    width: 150px;
  }
}
.trustus-logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  -o-object-position: center;
     object-position: center;
}

.references-box {
  padding: 2rem;
}
.references-box-stars {
  --gap: 0.35rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  color: var(--gold);
}
.references-box-stars .stars-filled,
.references-box-stars .stars-outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
}
.references-box-stars .stars-filled {
  position: absolute;
  top: 0;
  overflow: hidden;
  fill: currentColor;
  width: calc(20% * var(--star));
}
.references-box-stars svg {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1.5rem;
}
@media screen and (max-width: 1506px) {
  .references-roller {
    width: calc(100% - var(--bs-gutter-x) * 2);
    margin-inline: auto;
  }
  .references-roller .owl-nav .owl-prev, .references-roller .owl-nav .owl-next {
    width: 44px !important;
    height: 44px !important;
  }
  .references-roller .owl-nav .owl-prev svg, .references-roller .owl-nav .owl-next svg {
    width: 26px !important;
  }
}

.contactus {
  --form-offset: 2.5rem;
}
.contactus-wrapper {
  margin-top: calc(var(--form-offset, 0) * 0.5);
  position: relative;
  color: var(--white);
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contactus-wrapper::before {
  content: "";
  position: absolute;
  top: calc(var(--form-offset, 0) * -0.5);
  left: 0;
  width: 100%;
  height: 88%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
  border-radius: inherit;
  z-index: -1;
}
@media screen and (max-width: 959px) {
  .contactus-wrapper {
    margin-bottom: calc(var(--form-offset) * 2);
  }
}
.contactus-data + .contactus-data {
  margin-top: 2rem;
}
.contactus-data-icon svg {
  display: block;
  width: 100%;
  max-width: 4.5rem;
  height: auto;
  color: var(--bluelight);
}
.contactus-data-content a {
  color: var(--white);
}
.contactus-data-content a:hover, .contactus-data-content a:focus {
  color: var(--bluelight);
}
@media screen and (max-width: 959px) {
  .contactus-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
.contactus-image {
  width: 100%;
  max-width:300px;
  margin-top: 0;
  margin-bottom: 0;
}
@media screen and (max-width: 959px) {
  .contactus-image {
    display: none;
  }
}
.contactus-form {
  margin-top: calc(var(--form-offset, 0) * -1);
  margin-right: -1rem;
}
.contactus-form .card-body {
  padding: var(--form-offset);
}
@media screen and (max-width: 959px) {
  .contactus-form {
    margin: 3rem calc(var(--form-offset) * -1.2) 0;
  }
}

.offer-sections-nav {
  position: sticky;
  top: -1px;
  padding: 1rem 2rem;
  margin: 1rem -2rem !important;
  z-index: 5;
  padding-top: calc(var(--navbarHeight) + 1rem);
  margin-top: calc(var(--navbarHeight) * -1 + 1rem) !important;
}


/*@supports (-webkit-touch-callout: none) and (not (translate: none)) {*/
/*  @media screen and (min-width: 1400px) {*/
/*    .offer-sections-nav.is-pinned {*/
/*      !*margin: 2px 0 !important;*!*/
/*      !*margin-top: calc(var(--navbarHeight) * -1 + 1.5rem) !important;*!*/
/*      !*background-color: var(--theme-navbar-bg-alt); !* Inny kolor tła *!*!*/
/*      !*border-radius: 0 0 2rem 2rem;*!*/
/*      !*-webkit-box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.2);*!*/
/*      !*box-shadow: 0 10px 10px -8px rgba(0, 0, 0, 0.2);*!*/
/*    }*/
/*    .offer-sections-nav.is-pinned a {*/
/*      !*color: #007aff; !* Kolor typowy dla Safari *!*!*/
/*    }*/
/*    .offer-sections-nav.is-pinned > span {*/
/*      !*display: block; !* Inne zachowanie dla Safari *!*!*/
/*    }*/
/*  }*/
/*}*/


@media screen and (min-width: 1400px) {

  .offer-sections-nav{
    background-color: var(--theme-background); /*var(--theme-navbar-bg);*/
    border-radius: 0 0 1rem 1rem;
    -webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.15);
    box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.15);
    /*z-index: 0;*/
  }

  .offer-sections-nav.is-pinned {
    margin: 1px 0 !important;
    margin-top: calc(var(--navbarHeight) * -1 + 1rem) !important;
    /*z-index: 1;*/
    /*background-color: var(--theme-navbar-bg);*/
    /*border-radius: 0 0 1rem 1rem;*/
    /*-webkit-box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.15);*/
    /*        box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.15);*/
  }
  .offer-sections-nav.is-pinned a{

  }
  .shadow-none.p-4{
    /*z-index: 10!important;*/
  }
  .offer-sections-nav.is-pinned > span {
    /*display: none;*/
  }
  .theme-switcher{
    z-index: 15;
  }
  .navbar{
    z-index: 11;
  }
}
@media screen and (max-width: 1399px) {
  .offer-sections-nav {
    top: var(--navbarHeight);
    padding-top: unset;
    margin-top: unset;
    margin: 0 0 !important;
    padding: 2rem 0 !important;
    background-color: var(--theme-background);
  }
}

.main-footer {
  color: var(--white);
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--navy)), to(var(--navydark)));
  background-image: linear-gradient(to bottom, var(--navy), var(--navydark));
}
.main-footer a {
  color: var(--white);
}
.main-footer a:hover, .main-footer a:focus {
  color: var(--bluelight);
}
.main-footer-bottom {
  background-color: var(--bs-black);
}
.main-footer .social-icon img {
  max-width: 1.5rem;
}
.main-footer .social-icon:hover, .main-footer .social-icon:focus {
  opacity: 0.5;
}
@media screen and (max-width: 991px) {
  .main-footer {
    text-align: center;
  }
}

.scroller__inner {
  padding-block: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: -webkit-gradient(linear, left top, right top, from(transparent), color-stop(20%, white), color-stop(80%, white), to(transparent));
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}
.scroller[data-animated=true] .scroller__inner {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
          animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-direction=right] {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.scroller[data-direction=right] .scroller__inner > div {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.scroller[data-direction=left] {
  --_animation-direction: forwards;
}
.scroller[data-speed=fast] {
  --_animation-duration: 20s;
}
.scroller[data-speed=slow] {
  --_animation-duration: 90s;
}
.scroller[data-offset=full] {
  --perc: 50%;
}
.scroller[data-offset=half] {
  --perc: 25%;
}

@-webkit-keyframes scroll {
  to {
    -webkit-transform: translate(calc(var(--perc, 50%) * -1 - 0.5rem));
            transform: translate(calc(var(--perc, 50%) * -1 - 0.5rem));
  }
}

@keyframes scroll {
  to {
    -webkit-transform: translate(calc(var(--perc, 50%) * -1 - 0.5rem));
            transform: translate(calc(var(--perc, 50%) * -1 - 0.5rem));
  }
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5) !important;
  color: var(--white);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.owl-carousel .owl-nav .owl-prev svg, .owl-carousel .owl-nav .owl-next svg {
  color: var(--white);
  width: 32px;
}
.owl-carousel .owl-nav .owl-prev {
  left: 0;
  -webkit-transform: translateY(-50%) translateX(-75%);
          transform: translateY(-50%) translateX(-75%);
}
.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel .owl-nav .owl-prev:focus {
  -webkit-transform: translateY(-50%) translateX(-75%) scale(0.95);
          transform: translateY(-50%) translateX(-75%) scale(0.95);
}
.owl-carousel .owl-nav .owl-next {
  right: 0;
  -webkit-transform: translateY(-50%) translateX(75%);
          transform: translateY(-50%) translateX(75%);
}
.owl-carousel .owl-nav .owl-next:hover, .owl-carousel .owl-nav .owl-next:focus {
  -webkit-transform: translateY(-50%) translateX(75%) scale(0.95);
          transform: translateY(-50%) translateX(75%) scale(0.95);
}

.shadow-xs {
  -webkit-box-shadow: 0 0.125rem 0.45rem rgba(0, 0, 0, 0.025);
          box-shadow: 0 0.125rem 0.45rem rgba(0, 0, 0, 0.025);
}

.product-categories-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 0.5rem;
}
.product-categories-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 0.5rem);
          flex: 1 0 calc(50% - 0.5rem);
}
.product-categories-item + .product-categories-item {
  margin-top: 0;
}
@media screen and (max-width: 1399px) {
  .product-categories-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
  }
}

.sidebar-sticky {
  position: sticky;
  top: calc(var(--navbarHeight, 0) + 1rem);
}
.sidebar-close {
  position: absolute;
  right: calc(var(--bs-gutter-x) * 0.5);
  background-color: transparent;
  border: none;
  color: var(--bluelight);
  width: 50px;
  height: 50px;
  background-color: var(--theme-navbar-bg);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  display: none;
}
.sidebar-close .icon {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1139px) {
  .sidebar {
    position: fixed;
    top: calc(var(--navbarHeight, 0) * -1);
    right: 0;
    width: 100%;
    height: calc(100dvh - var(--navbarHeight, 0)) !important;
    z-index: 11;
    background-color: var(--white);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
    border-radius: 0 !important;
    padding: 0 !important;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  }
  .sidebar .card-body {
    overflow: hidden;
    overflow-y: auto;
  }
  .sidebar.show {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  .sidebar-close {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sidebar-sticky {
    position: fixed;
    top: var(--navbarHeight, 0);
  }
}

.mobile-float-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: var(--white);
}

.fromceo {
  --offsetTitle: calc(-1.5rem - 3rem);
  --offsetImage: calc(-1.5rem - 6rem);
  margin-top: 4rem;
}
.fromceo .card-title {
  position: absolute;
  top: var(--offsetTitle);
  left: 0;
  margin: 0;
  color: var(--theme-text);
}
.fromceo-image {
  position: relative;
  margin: var(--offsetImage) 0;
}
.fromceo-image img {
  border-radius: 4.5rem;
}
@media screen and (max-width: 1434px) {
  .fromceo-image {
    margin: 0;
  }
  .fromceo-image img {
    border-radius: 1.5rem;
  }
}
.fromceo-signature {
  text-align: right;
  color: var(--theme-text);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-100%, 50%);
          transform: translate(-100%, 50%);
  padding: 0 2rem;
}
@media screen and (max-width: 1434px) {
  .fromceo-signature {
    position: static;
    bottom: unset;
    left: unset;
    -webkit-transform: unset;
            transform: unset;
    padding: 2rem;
    text-align: center;
  }
}
.fromceo-name {
  margin: 0;
}
.fromceo-title {
  opacity: 0.7;
}

.whyus-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1999px) {
  .whyus-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .whyus-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.whyus-item {
  position: relative;
  background-color: transparent;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  overflow: hidden;
  text-align: left;
}
.whyus-item > span:first-child {
  position: absolute;
  top: 50%;
  left: 90%;
  -webkit-transform: translate(-50%, -50%) rotate(5deg);
          transform: translate(-50%, -50%) rotate(5deg);
  opacity: 0.15;
}
.whyus-item > span:last-child {
  position: relative;
  z-index: 1;
  text-wrap: balance;
  width: 90%;
}
.whyus-item > span:last-child::first-letter {
  text-transform: uppercase;
}
.whyus-item svg {
  width: 128px;
  color: var(--bluelight);
}

.territorialscope-map {
  display: block;
  width: 100%;
  height: auto;
}
.territorialscope-map .st0 {
  fill: var(--theme-text);
  cursor: pointer;
}
.territorialscope-map .st0:hover, .territorialscope-map .st0:focus {
  fill: var(--bluelight);
}
.territorialscope-map .st0.active, .territorialscope-map .st0:target {
  fill: var(--bluelight);
}
@media screen and (max-width:959px) {
  .territorialscope-map {
    pointer-events: none;
  }
}
.territorialscope-region {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.territorialscope-region-map {
  width: 100%;
  max-width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.territorialscope-region-map img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  -o-object-position: center;
     object-position: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 959px) {
  .territorialscope-region {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: ;
    --bs-card-subtitle-color: ;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius-xl);
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius) var(--bs-card-border-radius) 0 0;
    -webkit-box-shadow: var(--bs-card-box-shadow);
            box-shadow: var(--bs-card-box-shadow);
    border: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2rem 2rem 0 2rem;
    gap: 2rem;
    margin: 2rem 0 0 0 !important;
  }
  .territorialscope-region-map {
    max-width: 100px;
    -webkit-filter: none !important;
            filter: none !important;
  }
  .territorialscope-region-desc {
    --bs-card-spacer-y: 1rem;
    --bs-card-spacer-x: 1rem;
    --bs-card-title-spacer-y: 0.5rem;
    --bs-card-title-color: ;
    --bs-card-subtitle-color: ;
    --bs-card-border-width: var(--bs-border-width);
    --bs-card-border-color: var(--bs-border-color-translucent);
    --bs-card-border-radius: var(--bs-border-radius-xl);
    --bs-card-box-shadow: ;
    --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    --bs-card-cap-padding-y: 0.5rem;
    --bs-card-cap-padding-x: 1rem;
    --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03);
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: var(--bs-body-bg);
    --bs-card-img-overlay-padding: 1rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    color: var(--bs-body-color);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: 0 0 var(--bs-card-border-radius) var(--bs-card-border-radius);
    -webkit-box-shadow: var(--bs-card-box-shadow);
            box-shadow: var(--bs-card-box-shadow);
    border: none;
    padding: 2rem 2rem 2rem 2rem;
    gap: 0;
  }
  .territorialscope-region-desc .owl-prev, .territorialscope-region-desc .owl-next {
    top: -20% !important;
    width: 44px !important;
    height: 44px !important;
  }
  .territorialscope-region-desc .owl-prev svg, .territorialscope-region-desc .owl-next svg {
    width: 24px !important;
    height: 24px !important;
  }
  .territorialscope-region-desc .owl-prev {
    -webkit-transform: translateY(-50%) translateX(2rem) !important;
            transform: translateY(-50%) translateX(2rem) !important;
  }
}
@media screen and (max-width: 959px) and (max-width: 1506px) {
  .territorialscope-region-desc .owl-prev {
    -webkit-transform: translateY(-50%) translateX(2rem) scale(0.75) !important;
            transform: translateY(-50%) translateX(2rem) scale(0.75) !important;
  }
}
@media screen and (max-width: 959px) {
  .territorialscope-region-desc .owl-next {
    -webkit-transform: translateY(-50%) translateX(-2rem) !important;
            transform: translateY(-50%) translateX(-2rem) !important;
  }
}
@media screen and (max-width: 959px) and (max-width: 1506px) {
  .territorialscope-region-desc .owl-next {
    -webkit-transform: translateY(-50%) translateX(-2rem) scale(0.75) !important;
            transform: translateY(-50%) translateX(-2rem) scale(0.75) !important;
  }
}

.searchform {
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .searchform {
    max-width: unset;
  }
}

.blog-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 1199px) {
  .blog-grid {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .blog-grid {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-item {
  overflow: hidden;
}
.blog-item-thumbnail {
  overflow: hidden;
}
.blog-item-thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 200px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.blog-item:hover-thumbnail, .blog-item:focus-thumbnail {
  overflow: hidden;
}
.blog-item:hover-thumbnail img, .blog-item:focus-thumbnail img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.nav-pagination input {
  width: 44px;
  text-align: center;
}
.nav-pagination svg {
  width: 1.25rem;
  margin: -1rem;
}
.nav-pagination .text-primary {
  color: var(--bluelight) !important;
}

.float-contact {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 4;
  border: none;
  -webkit-transform: translateX(150%);
          transform: translateX(150%);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.float-contact.show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
@media screen and (min-width: 960px) {
  .float-contact {
    display: none;
  }
}
.float-contact::before {
  position: absolute;
  content: "";
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 rgba(0, 0, 0, 0.2), 0 0 0 0.5rem rgba(0, 0, 0, 0.2);
  z-index: -1;
  -webkit-animation: ripples 1s linear infinite;
          animation: ripples 1s linear infinite;
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.float-contact:hover::before {
  opacity: 1;
}

@-webkit-keyframes ripples {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.25), 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25);
            box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.25), 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25), 0 0 0 1rem rgba(78, 205, 196, 0);
            box-shadow: 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25), 0 0 0 1rem rgba(78, 205, 196, 0);
  }
}

@keyframes ripples {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.25), 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25);
            box-shadow: 0 0 0 0 rgba(78, 205, 196, 0.25), 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25), 0 0 0 1rem rgba(78, 205, 196, 0);
            box-shadow: 0 0 0 0.33rem rgba(78, 205, 196, 0.25), 0 0 0 0.66rem rgba(78, 205, 196, 0.25), 0 0 0 1rem rgba(78, 205, 196, 0);
  }
}