@charset "UTF-8";

/* Utils */

/**
 * Typography 
 */

/**
 * Hover
 */

/**
 * Grid
 */

/**
 * Fonts
 */

/**
 * Color Palette
 */

/* Vendor */

/*!
 * Bootstrap Grid v5.3.2 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1170px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.justify-content-evenly {
  justify-content: space-evenly !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

.order-first {
  order: -1 !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

.order-5 {
  order: 5 !important;
}

.order-last {
  order: 6 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important;
}

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important;
}

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important;
}

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important;
}

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */

/* 3D Shadows */

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Slide styles end */

/* Base */

*,
::after,
::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  min-height: 100%;
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: left;
  background-color: #fff;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

p {
  margin: 0;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:not([href]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  overflow: auto;
}

figure {
  margin: 0;
}

img {
  border-style: none;
}

svg {
  overflow: hidden;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: none;
}

button,
input,
optgroup,
select,
textarea {
  border-radius: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

[type=button],
[type=reset],
[type=submit],
button {
  -webkit-appearance: button;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=datetime-local],
input[type=month],
input[type=time] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

ul,
ol {
  list-style: none;
}

ol,
ul,
li {
  margin: 0;
  padding: 0;
}

a {
  transition: 0s;
}

a:hover {
  text-decoration: none;
}

input,
button,
textarea {
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

input,
textarea {
  appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
}

button:focus {
  outline: none;
}

@font-face {
  font-family: "Open Sans";
  src: url("../static/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../static/fonts/OpenSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../static/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("../static/fonts/OpenSans-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../static/fonts/Oswald-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("../static/fonts/Oswald-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

html,
body {
  min-height: 100svh;
  scroll-behavior: smooth;
  background: linear-gradient(180deg, #f6f4f1 0%, rgba(246, 244, 241, 0) 100%), #fff;
  background-repeat: no-repeat;
  background-size: 100% 600px;
}

@supports not (zoom: 1) {
@media (max-resolution: 1.25dppx) and (min-height: 650px) {
    html html {
      font-size: 70%;
    }
}

@media screen and (max-resolution: 120dpi) and (min-height: 650px) {
    html html {
      font-size: 70%;
    }
}

@media (max-width: 2000px) and (min-height: 650px) and (any-hover: hover) and (any-pointer: fine) and (min-aspect-ratio: 13/10) {
    html html {
      font-size: 70%;
    }
}
}

@supports not (zoom: 1) {
@media screen and (max-height: 650px) {
    html {
      font-size: 75%;
    }
}
}

body {
  font-family: "Open Sans", sans-serif;
  color: #212529;
}

::placeholder {
  color: rgba(16, 24, 40, 0.5);
}

h1,
.h1 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 32px;
}

h2,
.h2 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 28px;
}

h3,
.h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
}

h4,
.h4 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}

h5,
.h5 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

p:not(:last-child) {
  margin-bottom: 20px;
}

p a,
li a {
  color: #ad8e6f;
  text-decoration: underline;
  font-weight: 600;
  transition: 0.2s;
}

p a:hover,
li a:hover {
  text-decoration: none;
}

ul,
ol {
  padding-left: 25px;
  margin-bottom: 20px;
}

ul li,
ol li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  list-style: disc;
}

ol li {
  list-style: decimal;
}

.label {
  font-family: "Oswald", serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  color: #ad8e6f;
  margin-bottom: 8px;
}

blockquote:not(.quote blockquote) {
  border-left: 2px solid #ad8e6f;
  padding-left: 20px;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

blockquote:not(.quote blockquote) p {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

blockquote:not(.quote blockquote) cite {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-style: normal;
}

img {
  max-width: 100%;
  height: auto;
}

p img {
  border-radius: 12px;
  margin: 20px 0;
}

.bg-light {
  background: #f7f5f2;
}

.bg-gradient {
  background: linear-gradient(to top, #f7f5f2 0%, #f7f5f2 100%);
}

.bg-gradient-reversed {
  background: linear-gradient(180deg, #f6f5f2 0%, rgba(246, 245, 242, 0) 34.03%), #ffffff;
}

.default-page img {
  margin: 20px 0;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin: 20px 0;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.default-page {
  margin: 40px 0;
}

.default-page .container {
  max-width: 900px;
}

.default-page iframe {
  margin: 25px 0;
}

.html-video,
video {
  max-width: 800px;
  height: auto;
}

.lang-switch {
  position: fixed;
  bottom: 30px;
  right: 30px;
  box-shadow: 0px 4px 16px rgba(16, 24, 40, 0.1);
  border-radius: 100px;
  background: #ffffff;
  z-index: 99999 !important;
}

.lang-switch .wpml-ls-legacy-list-horizontal.wpml-ls-statics-footer {
  margin-bottom: 0px;
}

.lang-switch .wpml-ls-native,
.lang-switch .wpml-ls-display {
  display: none;
}

/* Components */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ad8e6f;
  font-weight: 600;
  border: 1px solid #ad8e6f;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
}

.btn.no-hover {
  cursor: auto;
}

.btn:not(.no-hover):hover {
  background: #fff;
  color: #ad8e6f;
  border: 1px solid #ad8e6f;
  text-decoration: none;
}

.btn:not(.no-hover):hover img {
  filter: none;
}

.btn img {
  filter: brightness(0) invert(1);
  margin-left: 10px;
}

.btn.icon-left img {
  margin-left: 0;
  margin-right: 10px;
}

.btn-secondary {
  background: none;
  color: #ad8e6f;
  border: 1px solid #ad8e6f;
}

.btn-secondary img {
  filter: none;
}

.btn-secondary:not(.no-hover):hover {
  background: #ad8e6f;
  color: #fff;
  border: 1px solid #ad8e6f;
}

.btn-secondary:not(.no-hover):hover img {
  filter: brightness(0) invert(1);
}

.external-url {
  color: #ad8e6f;
  font-weight: bold;
}

.external-url:hover {
  color: #212529;
}

.external-url:hover img {
  transform: translate(3px, -3px);
}

.external-url img {
  margin-left: 5px;
  transition: transform 0.6s ease;
}

.btn-actions {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 12px;
  max-width: max-content;
}

.btn-actions.center {
  margin-left: auto;
  margin-right: auto;
}

.btn-actions.m-top {
  margin-top: 30px;
}

.btn-actions .btn {
  min-width: max-content;
  justify-self: stretch;
}

.pill-select {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 17px 20px;
  border: 1px solid #b3b8bb;
  border-radius: 100px;
  background: #fff;
  position: relative;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.pill-select__label {
  font-size: 15px;
}

.pill-select__control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  background: transparent;
  padding: 0 20px 0 0;
  font: inherit;
  font-weight: 700;
  color: #9c7a56;
  cursor: pointer;
}

.pill-select::after {
  content: "";
  position: absolute;
  right: 0.75rem;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  color: #9c7a56;
}

.pill-select:hover {
  border-color: #d6d9de;
}

#breadcrumbs span {
  font-size: 14px;
}

#breadcrumbs span a {
  color: #565f63;
  text-decoration: none;
  font-weight: normal;
}

#breadcrumbs span a:hover {
  text-decoration: underline;
}

#breadcrumbs .breadcrumb_last {
  color: #212529;
}

.gfield_label,
.gform-field-label,
legend {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
input[type=password],
textarea,
select {
  background: #f3f4f5;
  border: 1px solid #a9afb3;
  padding: 15px;
  color: #212529;
  width: 100%;
  border-radius: 6px;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ad8e6f;
}

textarea {
  resize: none;
  height: 160px !important;
}

input[type=radio] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #f3f4f5;
  border: 1px solid #a9afb3;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

input[type=radio]:checked {
  background: #ad8e6f;
  border-color: #ad8e6f;
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

input[type=radio]:focus {
  outline: none;
  border-color: #ad8e6f;
}

input[type=checkbox] {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #f3f4f5;
  border: 1px solid #a9afb3;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}

input[type=checkbox]:checked {
  background: #ad8e6f;
  border-color: #ad8e6f;
}

input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

input[type=checkbox]:focus {
  outline: none;
  border-color: #ad8e6f;
}

.gform-field-label--type-inline {
  display: inline;
  font-weight: 400;
  margin-bottom: 0;
  cursor: pointer;
}

.gchoice {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

input[type=file] {
  background: transparent;
  border: none;
  padding: 0;
}

.gfield {
  margin-bottom: 5px;
}

.gform_button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #ad8e6f;
  font-weight: 600;
  border: 1px solid #ad8e6f;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 100px;
  margin-top: 30px;
  width: 100%;
}

.gform_button:hover {
  background: #fff;
  color: #ad8e6f;
  border: 1px solid #ad8e6f;
  text-decoration: none;
}

.gform_fileupload_rules {
  font-size: 14px;
  opacity: 0.6;
}

.gfield_required_text {
  color: #ad8e6f;
  font-weight: normal;
  font-size: 14px;
  margin-left: 8px;
}

.gform_submission_error {
  font-size: 20px;
  line-height: 26px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: red;
}

.gfield_validation_message {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}

.gfield_error input {
  border: 1px solid red;
}

.gform_confirmation_message {
  background: #ad8e6f;
  border-radius: 12px;
  color: #fff;
  padding: 20px;
  font-weight: 600;
}

.call-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.call-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.call-popup {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.call-popup-overlay.active .call-popup {
  transform: scale(1);
}

.call-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: color 0.2s ease;
}

.call-popup__close:hover {
  color: #000;
}

.call-popup__close svg {
  width: 24px;
  height: 24px;
}

body.popup-open {
  overflow: hidden;
}

.approach-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.approach-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.approach-popup {
  background-color: #fff;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  max-height: 80vh;
  overflow-y: auto;
}

.approach-popup-overlay.active .approach-popup {
  transform: scale(1);
}

.approach-popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: color 0.2s ease;
}

.approach-popup__close:hover {
  color: #000;
}

.approach-popup__close svg {
  width: 24px;
  height: 24px;
}

.blocks__card--clickable {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.blocks__card--clickable:hover {
  transform: translateY(-5px);
}

/* Layout */

.navbar {
  padding: 40px 0;
}

.navbar .navbar__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar__logo {
  display: flex;
  position: relative;
  z-index: 1001;
}

.navbar__desktop {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar__menu {
  display: inline-flex;
  gap: 30px;
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.navbar__menu li {
  list-style: none;
  display: flex;
  align-items: center;
}

.navbar__menu li a {
  color: #212529;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.navbar__menu li a:hover {
  color: #ad8e6f;
}

.navbar__menu li.current-menu-item a {
  color: #ad8e6f;
}

.navbar__btn {
  color: #ad8e6f;
  background: #fff;
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}

.navbar__btn:hover {
  background: #212529;
  color: #fff;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.navbar__hamburger span {
  width: 25px;
  height: 3px;
  background: #212529;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.navbar__hamburger.active {
  opacity: 0;
  visibility: hidden;
}

.navbar__offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transition: right 0.3s ease;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.navbar__offcanvas.active {
  right: 0;
}

.navbar__offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.navbar__offcanvas-logo {
  display: flex;
}

.navbar__offcanvas-body {
  padding: 10px 30px 30px 30px;
}

.navbar__close {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: #212529;
  padding: 0;
  line-height: 1;
}

.navbar__close:hover {
  color: #ad8e6f;
}

.navbar__offcanvas-menu {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.navbar__offcanvas-menu li {
  margin: 0 0 0 0;
  list-style: none;
}

.navbar__offcanvas-menu li a {
  color: #212529;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.navbar__offcanvas-menu li a:hover {
  color: #ad8e6f;
}

.navbar__offcanvas-btn {
  color: #fff;
  background: #ad8e6f;
  padding: 15px 30px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.navbar__offcanvas-btn:hover {
  background: #212529;
  color: #fff;
}

.navbar__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.navbar__overlay.active {
  opacity: 1;
  visibility: visible;
}

.home .navbar {
  padding-top: 20px;
  position: fixed;
  z-index: 999;
  width: 100%;
}

.home .navbar .navbar__wrapper {
  background: #fff;
  box-shadow: 0px 14px 38px 3px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 15px 30px;
}

.home .navbar .navbar__btn {
  background: #ad8e6f;
  color: #fff;
  border-radius: 100px;
  padding: 10px 20px;
}

.home .navbar .navbar__btn img {
  filter: brightness(0) invert(1);
}

.home .navbar .navbar__btn:hover {
  background: #212529;
}

.navbar--sticky {
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  transition: all 0.3s ease;
}

.navbar--sticky .navbar__wrapper--sticky {
  background: #fff;
  box-shadow: 0px 14px 38px 3px rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  padding: 15px 30px;
}

.navbar--sticky .navbar__btn--sticky {
  background: #ad8e6f;
  color: #fff;
  border-radius: 100px;
  padding: 10px 20px;
}

.navbar--sticky .navbar__btn--sticky:hover {
  background: #212529;
}

.navbar--sticky .navbar__btn-img--sticky {
  filter: brightness(0) invert(1);
}

.post-type-archive-companies #menu-item-3611 a {
  color: #ad8e6f;
}

.single-post li.current_page_parent a {
  color: #ad8e6f;
}

.footer {
  background: #192730;
  background-image: url("../img/icons/footer-bg.svg");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: 57.5% center;
  color: #fff;
  padding: 70px 0 30px 0;
}

.footer-contact {
  background: #212529;
  background-image: none;
  padding: 20px;
}

.footer-contact .footer__bottom {
  margin-top: 0;
}

.footer .col-12 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer__logo {
  margin-bottom: 120px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__cta-actions {
  display: flex;
  gap: 16px;
}

.footer p,
.footer li,
.footer span {
  font-size: 15px;
}

.footer ul {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}

.footer ul li {
  list-style: none;
  margin-bottom: 8px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer span {
  font-family: "Oswald", serif;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.footer__contact {
  color: #fff;
  border-bottom: 1px dashed #fff;
  display: inline-block;
  margin-bottom: 16px;
}

.footer__contact:hover {
  color: #ad8e6f;
  border-bottom: 1px dashed #ad8e6f;
}

.footer__bottom {
  margin-top: 120px;
}

.footer__bottom p {
  font-size: 13px;
  color: #8d9397;
}

.footer__bottom ul {
  display: flex;
  gap: 30px;
}

.footer__bottom ul li {
  font-size: 13px;
  color: #8d9397;
}

.footer__bottom ul li a {
  color: #8d9397;
}

.footer__bottom ul li a:hover {
  color: #fff;
}

.hero {
  padding: 30px 0;
}

.hero h1 {
  text-transform: uppercase;
}

.hero__left-bottom {
  margin-top: 80px;
}

.hero__facts {
  padding: 0 0 0 0;
  display: flex;
  gap: 40px;
}

.hero__facts li {
  list-style: none;
  font-size: 15px;
}

.hero__facts li span {
  display: block;
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 32px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.hero__home {
  padding: 0;
  position: relative;
}

.hero__home::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to top, #172a39 0%, rgba(23, 42, 57, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__home h1 {
  font-size: 84px;
  line-height: 94px;
  color: #fff;
  max-width: 520px;
  margin-bottom: 15px;
}

.hero__home h1 span {
  color: #ad8e6f;
  font-size: 48px;
}

.hero__home p {
  color: #fff;
  font-size: 18px;
  padding-right: 30px;
}

.hero__home .hero__overlay {
  position: absolute;
  bottom: 60px;
  z-index: 2;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero__background {
  width: 100%;
  height: 700px;
  max-width: 100%;
  object-fit: cover;
}

@supports not (zoom: 1) {
@media (max-resolution: 1.25dppx) and (min-height: 650px) {
    .hero__background html {
      font-size: 70%;
    }
}

@media screen and (max-resolution: 120dpi) and (min-height: 650px) {
    .hero__background html {
      font-size: 70%;
    }
}

@media (max-width: 2000px) and (min-height: 650px) and (any-hover: hover) and (any-pointer: fine) and (min-aspect-ratio: 13/10) {
    .hero__background html {
      font-size: 70%;
    }
}
}

.hero__companies img {
  border-radius: 12px;
}

.hero__companies .hero__video-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
}

.hero__companies .hero__video-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #212529;
  font-size: 14px;
  font-weight: 600;
}

.hero__companies .hero__video-links a img {
  width: 12px;
  height: auto;
}

.hero__companies .hero__video-links a:hover {
  color: #ad8e6f;
}

.hero__esg {
  padding: 90px 0;
}

.hero__esg .hero__content {
  padding-right: 90px;
}

.hero__esg .hero__actions {
  flex-direction: column;
  max-width: 500px;
}

.hero__esg .hero__image img {
  border-radius: 12px;
}

.companies {
  padding: 70px 0;
  overflow: hidden;
}

.companies__filter {
  margin-bottom: 35px;
}

.companies__slider-wrapper {
  overflow: visible;
  margin-bottom: 25px;
}

.companies__slider-container {
  position: relative;
  overflow: hidden;
  padding-left: calc((100vw - 1360px) / 2);
}

.companies__slider {
  display: flex;
  gap: 25px;
  will-change: transform;
}

.companies__arrows {
  display: flex;
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 20px;
}

.companies__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ad8e6f;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.companies__arrow img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.companies__arrow:hover {
  background: #ad8e6f;
  transform: scale(1.1);
}

.companies__arrow:hover img {
  filter: brightness(0) invert(1);
}

.companies__arrow--prev img {
  transform: rotate(180deg);
}

.companies__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.companies__arrow:disabled:hover {
  background: transparent;
  transform: none;
}

.companies__arrow:disabled:hover img {
  filter: none;
}

.companies__card {
  position: relative;
  flex: 0 0 auto;
  width: 272.5px;
}

.companies__card-approach {
  width: 100%;
}

.companies__card-overview {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}

.companies__card-overview .companies__card-image {
  margin-bottom: 30px;
}

.companies__card-image {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companies__card-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center center;
  transition: transform 1s ease;
  max-height: 100px;
  max-width: 70%;
  width: auto;
}

.companies__card-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: white;
  z-index: 10;
  padding-right: 15px;
}

.companies__card-overlay .name {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0;
}

.companies__card-overlay .desc {
  font-size: 15px;
  opacity: 0.9;
}

.companies__card-overlay .blocks__card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  margin-top: 4px;
  font-weight: 600;
}

.companies__card-overlay .blocks__card-link img {
  width: 11px;
  height: 11px;
}

.companies__card:hover .companies__card-overlay {
  opacity: 1;
}

.companies__card:hover a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #212529, transparent);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.companies__header {
  margin-bottom: 40px;
}

.companies__header h2 {
  text-transform: uppercase;
}

.companies__header p {
  max-width: 600px;
}

.companies__footer {
  margin-top: 25px;
}

.approach__company .link {
  color: #212529;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.approach__company .link:hover {
  color: #ad8e6f;
}

.call-to-action {
  padding: 50px 0 60px 0;
  text-align: center;
}

.call-to-action h2 {
  text-transform: uppercase;
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
  margin-bottom: 25px;
}

.call-to-action__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.blocks {
  padding: 90px 0;
}

.blocks__header {
  text-align: center;
  margin-bottom: 40px;
}

.blocks__header h2 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 32px;
}

.blocks__card {
  position: relative;
  margin-bottom: 25px;
  overflow: hidden;
  transition: transform 1s ease;
}

.blocks__card:hover {
  transform: scale(1.01);
}

.blocks__card a {
  display: block;
  position: relative;
}

.blocks__card a h3,
.blocks__card a span {
  color: #fff;
  margin-bottom: 10px;
}

.blocks__card a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, #212529, transparent);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.blocks__card-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  object-fit: cover;
  transform-origin: center center;
  transition: transform 0.8s ease;
}

.blocks__card.big .blocks__card-image {
  aspect-ratio: 3/1;
}

.blocks__card-subtitle {
  font-size: 14px;
  text-transform: uppercase;
}

.blocks__card-overlay {
  position: absolute;
  width: 100%;
  bottom: 25px;
  left: 25px;
  z-index: 2;
  padding-right: 40px;
}

.blocks__card-overlay h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 28px;
}

.blocks__card-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.blocks__content {
  text-align: center;
  max-width: 650px;
  margin: 50px auto 0 auto;
}

.blocks__content .btn {
  margin-top: 20px;
}

.video {
  padding: 0 0 90px 0;
  text-align: center;
}

.video__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

.video__home .video__wrapper {
  margin-top: 40px;
}

.video__preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid white;
  border-radius: 100px;
  padding: 40px 44px;
  cursor: pointer;
  z-index: 2;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video__play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.video__play-btn svg {
  display: block;
}

.video__iframe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video__iframe-container iframe {
  width: 100%;
  height: 100%;
}

.video__content {
  max-width: 880px;
  margin: 50px auto 0 auto;
}

.video__content .btn {
  margin: 0 10px;
}

.team {
  padding: 70px 0;
  overflow: hidden;
}

.team__header {
  margin-bottom: 40px;
}

.team__header h2 {
  text-transform: uppercase;
}

.team__header p {
  max-width: 600px;
}

.team__slider-wrapper {
  overflow: visible;
  margin-bottom: 25px;
}

.team__slider-container {
  position: relative;
  overflow: hidden;
  padding-left: calc((100vw - 1360px) / 2);
}

.team__slider {
  display: flex;
  gap: 25px;
  will-change: transform;
}

.team__arrows {
  display: flex;
  gap: 20px;
  margin-top: 0px;
  margin-bottom: 20px;
}

.team__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ad8e6f;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team__arrow img {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.team__arrow:hover {
  background: #ad8e6f;
  transform: scale(1.1);
}

.team__arrow:hover img {
  filter: brightness(0) invert(1);
}

.team__arrow--prev img {
  transform: rotate(180deg);
}

.team__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.team__arrow:disabled:hover {
  background: transparent;
  transform: none;
}

.team__arrow:disabled:hover img {
  filter: none;
}

.team__overview .team__card {
  margin-bottom: 25px;
}

.team__card {
  position: relative;
  flex: 0 0 auto;
  width: 266.25px;
}

.team__card a {
  position: relative;
}

.team__card img {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.team__card-overlay {
  position: absolute;
  bottom: 25px;
  left: 25px;
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 2;
}

.team__card-overlay span {
  color: #fff;
}

.team__card-overlay span img {
  width: 18px;
  height: auto;
}

.team__card-overlay span.name {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  color: #fff;
}

.team__card:hover .team__card-overlay {
  opacity: 1;
}

.team__card:hover a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, #212529, transparent);
  border-radius: 12px;
  pointer-events: none;
  z-index: 1;
}

.team__footer {
  margin-top: 25px;
}

.gallery_item-link {
  display: flex !important;
}

.gallery_item-link:before {
  display: none;
}

.hero__team p {
  max-width: 555px;
}

.gallery {
  margin-top: 50px;
}

.gallery__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 60px;
}

.gallery .blocks__card .blocks__card-link img {
  width: 16px;
  height: auto;
}

.gallery__row {
  display: flex;
  gap: 24px;
}

.gallery__row:first-child .gallery_item:first-child {
  flex: 486;
}

.gallery__row:first-child .gallery_item:last-child {
  flex: 786;
}

.gallery__row:last-child .gallery_item:first-child {
  flex: 862;
}

.gallery__row:last-child .gallery_item:last-child {
  flex: 410;
}

.gallery__row .gallery_item_img_4 {
  max-width: 412px;
  display: flex;
  flex-direction: column;
}

.gallery__stats {
  padding: 60px 0 90px 0;
  display: flex;
  gap: 48px;
}

.gallery__stat-item {
  display: flex;
  flex-direction: column;
}

.gallery__stat-item span.number {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 28px;
  margin-bottom: 5px;
}

.gallery_item {
  display: flex;
  flex-direction: column;
}

.gallery_item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
}

.gallery_item span,
.gallery_item-link {
  margin-top: 16px;
  color: #212529;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery_item span img,
.gallery_item-link img {
  width: 10px;
  height: 10px;
}

.gallery_item span:hover,
.gallery_item-link:hover {
  color: #ad8e6f;
}

.gallery_item:hover span {
  color: #ad8e6f;
}

.gallery__row:first-child .gallery_item:first-child img {
  aspect-ratio: 1;
}

.gallery__row:first-child .gallery_item:last-child img {
  aspect-ratio: 786/486;
}

.gallery__row:last-child .gallery_item:last-child img {
  aspect-ratio: 1;
}

.team-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.team-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.team-popup {
  background: #fff;
  border-radius: 12px;
  max-width: 1000px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  padding: 35px 25px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.team-popup-overlay.active .team-popup {
  transform: translateY(0);
}

.team-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  font-size: 24px;
  line-height: 1;
  color: #666;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-popup__close:hover {
  background-color: rgba(0, 0, 0, 0.1);
  color: #212529;
}

.team-popup__info {
  margin-bottom: 30px;
}

.team-popup__image {
  width: 100%;
  max-width: 250px;
  border-radius: 12px;
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team-popup__position {
  margin-top: 5px;
}

.team-popup__icons-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ad8e6f;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 20px;
}

.team-popup__icons-phone:hover {
  color: #212529;
}

.team-popup__icons-phone img {
  height: 20px;
  width: auto;
}

.team-popup__icons ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.team-popup__icons ul li {
  list-style: none;
}

.team-popup__icons ul li a {
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #ad8e6f;
  text-decoration: none;
}

.team-popup__icons ul li a:hover {
  background: #212529;
}

.team-popup__icons ul li a img {
  height: 18px;
  width: auto;
}

.team-popup__content {
  padding-left: 0;
}

.team-popup__tabs {
  display: flex;
  margin-bottom: 30px;
  gap: 0;
}

.team-popup__tab {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #212529;
  font-size: 22px;
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
  font-family: "Oswald", serif;
  margin-right: 25px;
}

.team-popup__tab.active {
  color: #ad8e6f;
  border-bottom-color: #ad8e6f;
}

.team-popup__tab:hover:not(.active) {
  color: #212529;
}

.team-popup__tab-content {
  display: none;
  line-height: 1.6;
}

.team-popup__tab-content.active {
  display: block;
}

.team-popup__tab-content p {
  margin-bottom: 15px;
}

.team-popup__tab-content p:last-child {
  margin-bottom: 0;
}

.team-popup h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
  margin-bottom: 5px;
}

body.popup-open {
  overflow: hidden;
}

.about-content {
  padding: 90px 0;
}

.about-content .container {
  max-width: 1180px;
}

.about-content__image img {
  height: 590px;
  object-fit: cover;
  border-radius: 12px;
}

.about-content__text {
  padding-left: 60px;
}

.about-content .btn {
  margin-top: 20px;
  margin-right: 12px;
}

.latest-videos {
  padding: 90px 0;
}

.latest-videos__header {
  margin-bottom: 40px;
}

.latest-videos__header h2 {
  text-transform: uppercase;
}

.latest-videos__header p {
  max-width: 600px;
}

.we-are {
  padding: 10px 0 50px 0;
  text-align: center;
}

.we-are p {
  max-width: 800px;
  margin: 0 auto;
}

.we-are__items {
  margin-top: 60px;
}

.we-are__item {
  position: relative;
  margin-bottom: 25px;
  background: #f7f5f2;
  border: 1px solid #f7f5f2;
  border-radius: 12px;
  padding: 45px 30px;
  cursor: pointer;
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}

.we-are__item-top {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  transition: margin-bottom 0.4s ease;
}

.we-are__item-top img {
  height: 40px;
  width: auto;
}

.we-are__item h3 {
  margin-bottom: 0;
  transition: color 0.4s ease;
}

.we-are__item p,
.we-are__item a {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.we-are__item a {
  color: #ad8e6f;
  font-weight: 600;
  margin-top: 20px;
}

.we-are__item a:hover {
  color: #212529;
}

.we-are__item:hover {
  background: #fff;
  border-color: #ad8e6f;
  transform: translateY(-4px);
}

.we-are__item:hover .we-are__item-top {
  margin-bottom: 20px;
}

.we-are__item:hover h3 {
  color: #ad8e6f;
}

.we-are__item:hover p,
.we-are__item:hover a {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease 0.1s, visibility 0s linear 0s;
}

.we-are__item:hover p,
.we-are__item:hover a {
  position: static;
  max-width: 500px;
  margin: 0 auto;
}

.we-are__item:hover p {
  margin-bottom: 10px;
}

.we-are__item:hover a {
  margin-top: 20px;
}

.focus {
  padding: 90px 0 140px 0;
}

.focus__icons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-right: 50px;
}

.focus__icons h2 {
  text-transform: uppercase;
  margin-bottom: 10px;
}

.focus__icon-item {
  background: #f7f5f2;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.focus__icon-item img,
.focus__icon-item svg {
  width: 20px;
  height: auto;
}

.focus__icon-item h4 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  font-size: 21px;
  margin-bottom: 0;
}

.focus__content h2 {
  text-transform: uppercase;
}

.focus__content .btn {
  margin-top: 15px;
}

.quote {
  padding: 70px 0;
  text-align: center;
}

.quote .container {
  max-width: 830px;
}

.quote img {
  margin-bottom: 20px;
}

.quote blockquote {
  font-size: 36px;
  line-height: 44px;
  font-family: "Oswald", serif;
  margin-bottom: 30px;
}

.quote cite {
  font-style: normal;
}

.quote cite strong {
  display: block;
  font-style: normal;
}

.situations {
  padding: 90px 0;
}

.situations h1 {
  text-transform: uppercase;
}

.situations__content-top {
  margin-bottom: 90px;
}

.situations__content-top .hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.situations__details {
  position: sticky;
  top: 150px;
}

.situations__details span.h4 {
  display: block;
}

.situations__details ul {
  margin-top: 60px;
  padding: 0 0 0 0;
  display: inline-block;
}

.situations__details ul li {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Oswald", serif;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 20px 8px 8px;
  border-radius: 12px;
}

.situations__details ul li.active,
.situations__details ul li:hover {
  background: #dedede;
}

.situations__details ul li span {
  background: #efeeed;
  border-radius: 100px;
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
}

.situations__block {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #e1e0de;
  display: flex;
  gap: 30px;
}

.situations__block-number {
  font-family: "Oswald", serif;
  font-size: 30px;
  color: #cfd1d1;
}

.situations__block h2 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
  margin-top: 4px;
}

.situations__block-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.situations__block-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.situations__block a {
  display: block;
  text-decoration: none;
  cursor: pointer !important;
}

.situations__block a .situations__block-image {
  cursor: pointer !important;
}

.situations__block a * {
  cursor: pointer !important;
}

.situations__block-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.situations__block-text {
  position: absolute;
  bottom: 25px;
  left: 25px;
}

.situations__block-text h3,
.situations__block-text span {
  color: #fff;
  margin-bottom: 5px !important;
}

.situations__block-text span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.situations__block-text span img {
  width: 18px;
  height: auto;
}

.situations__block-text h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 28px;
  color: #fff;
  margin-bottom: 10px;
}

.situations__block-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.situations__block-logo img,
.situations__block-logo svg {
  height: 100px !important;
  width: auto !important;
  object-fit: contain !important;
}

.situations__block img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.approach .blocks__card {
  cursor: pointer;
  position: relative;
  display: block;
}

.approach .blocks__card img {
  aspect-ratio: 410/590;
}

.approach .blocks__card h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
  color: #fff;
  margin-bottom: 10px;
}

.approach .blocks__card span {
  max-width: 360px;
  color: #fff;
  display: flex;
  gap: 12px;
  align-items: center;
}

.approach .blocks__card span img {
  height: 20px;
  width: auto;
}

.hero__companies {
  padding-bottom: 50px;
}

.hero__companies .hero__content {
  margin-top: 80px;
}

.hero__companies .hero__content p {
  max-width: 728px;
  font-size: 18px;
  line-height: 28px;
}

.hero__companies .hero__details {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}

.hero__companies .hero__details span.label {
  display: block;
  margin-bottom: 5px;
}

.hero__companies .hero__image {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
}

.hero__companies .hero__image .hero__background {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__companies .hero__image .hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(transparent 0%, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

.hero__companies .hero__image .hero__overlay .hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: auto;
}

.hero__companies .hero__image .hero__overlay .hero__text {
  position: absolute;
  bottom: 25px;
  left: 25px;
  color: white;
}

.hero__companies .hero__image .hero__overlay .hero__text h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  margin: 0 0 5px 0;
  color: #fff;
}

.hero__companies .hero__image .hero__overlay .hero__text .hero__subtitle {
  display: block;
  margin: 0;
}

.overview {
  padding-top: 60px;
}

.overview h2,
.overview h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.overview__content p {
  max-width: 730px;
}

.overview .overview__focus {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.overview .overview__focus-title {
  margin-top: 50px;
  margin-bottom: 30px;
}

.overview .overview__focus .focus-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.overview .overview__focus .focus-item:hover .focus-label {
  color: #ad8e6f;
}

.overview .overview__focus .focus-item-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f5f2;
  padding: 20px;
  margin-bottom: 15px;
  min-width: 150px;
  border-radius: 12px;
}

.overview .overview__focus .focus-item-logo img,
.overview .overview__focus .focus-item-logo svg {
  height: 38px;
  width: auto;
  object-fit: contain;
  max-width: 80px;
}

.overview .overview__focus .focus-item-logo-text span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  font-size: 20px;
  margin-bottom: 0;
}

.overview .overview__focus .focus-item .focus-label {
  color: #212529;
}

.overview .overview__acquisition .focus-item:hover .focus-label {
  color: #212529;
}

.overview__approaches {
  display: flex;
  gap: 16px;
}

.overview__team {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.overview__team .team-member-link {
  position: relative;
  display: block;
  border-radius: 100px;
  overflow: hidden;
}

.overview__team .team-member-link .team-image {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 100px;
  display: block;
}

.overview__team .team-member-link .team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(173, 142, 111, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 100px;
}

.overview__team .team-member-link .team-member-overlay .team-member-icon {
  width: 18px;
  height: 18px;
}

.overview__team .team-member-link:hover .team-member-overlay {
  opacity: 1;
}

.blocks__insights {
  padding-top: 40px;
}

.blocks__insights h2,
.blocks__insights h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-right: 30px;
}

.blocks__insights .blocks__header {
  text-align: left;
  margin-bottom: 30px;
}

.hero__blog h1 {
  margin-top: 48px;
  margin-bottom: 15px;
}

.hero__blog img {
  aspect-ratio: 680/380;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.hero__blog .label {
  font-size: 14px;
  font-weight: 500;
}

.hero__blog-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__blog .hero__blog-content-extra {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.hero__blog .hero__blog-content-extra span {
  font-size: 15px;
}

.hero__blog .hero__blog-content-extra span a {
  color: #212529;
  text-decoration: underline;
}

.hero__blog .hero__blog-content-extra span a:hover {
  text-decoration: none;
}

.hero__blog .hero__blog-content-extra-companies span.title {
  display: block;
  font-family: "Oswald", serif;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero__blog .hero__blog-content-extra-companies-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #ad8e6f;
  border-radius: 100px;
  padding: 5px 16px;
  color: #ad8e6f !important;
  text-decoration: none !important;
}

.hero__blog .hero__blog-content-extra-companies-item span {
  font-size: 15px;
}

.hero__blog .hero__blog-content-extra-companies-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hero__blog .hero__blog-content-extra-companies-item:hover {
  background: #ad8e6f;
  color: #fff !important;
}

.hero__blog .hero__blog-content-details {
  margin-top: 60px;
  display: flex;
  gap: 32px;
  font-size: 15px;
}

.hero__blog .hero__blog-content-details .share-btn,
.hero__blog .hero__blog-content-details .copy-link-btn {
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
}

.hero__blog .hero__blog-content-details .share-btn:hover,
.hero__blog .hero__blog-content-details .copy-link-btn:hover {
  color: #ad8e6f;
}

.hero__blog .hero__blog-content-details .share-btn img,
.hero__blog .hero__blog-content-details .copy-link-btn img {
  height: 12px;
  width: auto;
  object-fit: contain;
}

.hero__blog .hero__blog-content-details .share-btn.copied,
.hero__blog .hero__blog-content-details .copy-link-btn.copied {
  color: #28a745;
}

.hero__blog .hero__blog-content-details {
  margin-top: 30px;
}

.blog-single {
  padding: 60px 0 80px 0;
}

.blog-single--video {
  padding-top: 0;
}

.blog-single .container {
  max-width: 650px;
  margin: 0 auto;
}

.blog-single .container.-big {
  max-width: 900px;
}

.blog-single .video__wrapper {
  margin-bottom: 40px;
}

.blog-single h1,
.blog-single h2,
.blog-single h3,
.blog-single h4,
.blog-single h5,
.blog-single h6 {
  margin-top: 30px;
}

.blog-single h2,
.blog-single .h2 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 24px;
}

.blog-single h3,
.blog-single .h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}

.blog-single h4,
.blog-single .h4 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.blog-single h5,
.blog-single .h5 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}

.blocks__blog h2 {
  text-transform: uppercase;
  margin-bottom: 40px;
}

.blocks__blog h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}

.blocks__blog-overview {
  padding-top: 40px;
}

.blocks__blog-overview h2 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
  color: #fff;
}

.blog-overview__filters ul {
  display: flex;
  gap: 12px;
  margin: 30px 0 0 0;
  padding: 0;
}

.blog-overview__filters ul li {
  list-style: none;
}

.filter-item {
  cursor: pointer;
  padding: 8px 20px;
  background: #f7f5f2;
  color: #ad8e6f;
  font-size: 15px;
  font-family: "Oswald", serif;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.filter-item:hover {
  background: #ad8e6f;
  color: #fff;
}

.filter-item.active {
  background: #ad8e6f;
  color: #fff;
}

.post-item {
  transition: all 0.3s ease;
}

.loading-spinner {
  text-align: center;
  padding: 2rem;
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.load-more-container {
  text-align: center;
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.load-more-btn {
  transition: all 0.3s ease;
}

.load-more-btn:hover {
  transform: translateY(-2px);
}

.blog-search {
  margin-top: 20px;
}

.search-input-container {
  position: relative;
  display: flex;
  max-width: 300px;
}

.search-input-container #search {
  flex: 1;
  padding: 10px 45px 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-input-container #search:focus {
  border-color: #ad8e6f;
}

.search-input-container #search::placeholder {
  color: #999;
}

.search-input-container .search-submit {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.search-input-container .search-submit:hover {
  color: #ad8e6f;
}

.search-input-container .search-submit svg {
  width: 14px;
  height: 14px;
}

.blog-overview__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.no-posts-message {
  text-align: center;
  padding: 4rem 2rem;
  color: #666;
}

.no-posts-message svg {
  color: #ccc;
  margin-bottom: 1.5rem;
}

.no-posts-message h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.no-posts-message p {
  margin-bottom: 2rem;
  color: #666;
  font-size: 1rem;
}

.no-posts-message .btn {
  margin-top: 1rem;
}

.share-menu {
  position: absolute;
  z-index: 1000;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e5e5;
  min-width: 180px;
}

.share-menu .share-menu-content {
  padding: 8px 0;
}

.share-menu .share-menu-content a,
.share-menu .share-menu-content button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.share-menu .share-menu-content a:hover,
.share-menu .share-menu-content button:hover {
  background-color: #f8f9fa;
}

.share-menu .share-menu-content a svg,
.share-menu .share-menu-content button svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.share-menu .share-menu-content .share-copy-btn {
  color: #ad8e6f;
}

.share-menu .share-menu-content .share-copy-btn:hover {
  background-color: white;
}

.hero__working-at img {
  border-radius: 12px;
}

.insight-fields {
  padding: 60px 0;
}

.insight-fields__content {
  display: flex;
  justify-content: space-between;
}

.insight-fields__content p {
  max-width: 900px;
}

.insight-fields__video {
  margin-top: 30px;
}

.insight-fields__video video {
  width: 100%;
}

.text-blocks {
  padding: 70px 0;
}

.text-blocks__item {
  display: flex;
}

.text-blocks__content {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
}

.text-blocks__content h3 {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}

.text-blocks__content .btn {
  margin-top: 25px;
}

.benefits {
  padding: 90px 0 0 0;
}

.benefits h2 {
  text-transform: uppercase;
}

.benefits__items {
  display: flex;
}

.benefits__content {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.benefits__content img {
  border-top-right-radius: 12px;
  border-top-left-radius: 12px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 410/230;
}

.benefits__content-text {
  padding: 20px 30px 35px 30px;
}

.not-found {
  padding: 200px 0;
}

.not-found__content {
  text-align: center;
}

.not-found__content h1 {
  font-size: 84px;
  opacity: 0.4;
}

.not-found__content .btn {
  margin-top: 50px;
}

.contact-hero {
  background: #192730;
  padding: 50px 0;
}

.contact-hero .row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-hero__back {
  position: absolute;
  left: 0;
  font-weight: 500;
  cursor: pointer;
  padding-left: 1rem;
}

.contact-hero__back a {
  color: #fff;
  opacity: 0.6;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-hero__back a:hover {
  opacity: 1;
}

.contact-hero__back img {
  rotate: 180deg;
  margin-right: 10px;
}

.contact-hero__logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.contact-hero__logo img {
  height: 35px;
  display: block;
  filter: brightness(0) invert(1);
}

.contact {
  background: #192730;
  padding: 50px 0;
}

.contact .container {
  max-width: 600px;
  margin: 0 auto;
}

.contact__block {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
}

.contact__block-top {
  text-align: center;
  margin-bottom: 30px;
}

.contact__block-top h1 {
  margin-bottom: 10px;
}

.locations {
  background: #192730;
  padding: 50px 0;
}

.locations .row[class*=location-] {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0 80px 0;
}

.locations .row[class*=location-].active {
  display: flex;
}

.locations__tabs {
  display: flex;
  justify-content: center;
}

.locations__tabs ul {
  padding: 0;
  display: flex;
  gap: 32px;
}

.locations__tabs ul li {
  font-family: "Oswald", serif;
  font-weight: 400;
  text-wrap: balance;
  color: #212529;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
  color: #fff;
  list-style: none;
  cursor: pointer;
}

.locations__tabs ul li.active {
  border-bottom: 2px solid #ad8e6f;
  padding-bottom: 5px;
}

.locations__tabs ul li:hover {
  color: #ad8e6f;
}

.locations__details {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.locations__details img {
  margin-top: 8px;
}

.locations__details ul {
  margin: 0 0 20px 0;
  padding: 0;
}

.locations__details ul li {
  line-height: 32px;
  color: #fff;
  list-style: none;
}

.locations__details ul li a {
  color: #ad8e6f;
  text-decoration: none;
  font-size: 14px;
}

.locations__details ul li a:hover {
  color: #fff;
}

.locations__details ul li a img {
  margin-left: 5px;
}

.locations__contact {
  border-top: 1px solid #2a363f;
  margin-top: 10px;
  padding-top: 30px;
}

.locations__contact ul {
  margin: 0;
  padding: 0;
}

.locations__contact ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.locations__contact ul li a {
  color: #fff;
  font-weight: normal;
  text-decoration: none;
  border-bottom: 1px dashed #fff;
}

.locations__contact ul li a:hover {
  color: #ad8e6f;
  border-bottom: 1px dashed #ad8e6f;
}

.locations .map-responsive {
  overflow: hidden;
  padding-bottom: 110%;
  position: relative;
  height: 0;
  border-radius: 12px;
}

.locations .map-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

@media (min-width: 576px) {
  .container-sm,
  .container {
    max-width: 540px;
  }

  .col-sm {
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }

  .order-sm-first {
    order: -1 !important;
  }

  .order-sm-0 {
    order: 0 !important;
  }

  .order-sm-1 {
    order: 1 !important;
  }

  .order-sm-2 {
    order: 2 !important;
  }

  .order-sm-3 {
    order: 3 !important;
  }

  .order-sm-4 {
    order: 4 !important;
  }

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 768px) {
  .container-md,
  .container-sm,
  .container {
    max-width: 720px;
  }

  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }

  .order-md-first {
    order: -1 !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .order-md-2 {
    order: 2 !important;
  }

  .order-md-3 {
    order: 3 !important;
  }

  .order-md-4 {
    order: 4 !important;
  }

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .team-popup__info {
    margin-bottom: 0;
    padding-right: 30px;
  }
}

@media (min-width: 992px) {
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 960px;
  }

  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }

  .order-lg-first {
    order: -1 !important;
  }

  .order-lg-0 {
    order: 0 !important;
  }

  .order-lg-1 {
    order: 1 !important;
  }

  .order-lg-2 {
    order: 2 !important;
  }

  .order-lg-3 {
    order: 3 !important;
  }

  .order-lg-4 {
    order: 4 !important;
  }

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1170px) {
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1140px;
  }

  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }
}

@media (min-width: 1400px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: 1360px;
  }

  .col-xxl {
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }
}

@media (max-width: 2000px) and (min-height: 650px) and (any-hover: hover) and (any-pointer: fine) and (min-aspect-ratio: 13/10) {
  html html {
    zoom: 0.75;
    overflow-x: hidden;
  }

  .hero__background .hero__background {
    height: 600px;
  }
}

@media (max-width: 1399px) {
  .companies__slider-container {
    padding-left: calc((100vw - 1140px) / 2);
  }

  .team__slider-container {
    padding-left: calc((100vw - 1140px) / 2);
  }
}

@media (max-width: 1200px) {
  .navbar__menu {
    gap: 12px;
  }
}

@media (max-width: 1199px) {
  .companies__slider-container {
    padding-left: calc((100vw - 960px) / 2);
  }

  .companies__card {
    width: 303.3333333333px;
  }

  .team__slider-container {
    padding-left: calc((100vw - 960px) / 2);
  }

  .team__card {
    width: 221.25px;
  }
}

@media (max-width: 991px) {
  .navbar__logo {
    z-index: 999;
  }

  .navbar__desktop {
    display: none;
  }

  .navbar__menu {
    position: static;
    transform: none;
  }

  .navbar__btn {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
  }

  .companies__slider-container {
    padding-left: calc((100vw - 720px) / 2);
  }

  .companies__card {
    width: 223.3333333333px;
  }

  .team__slider-container {
    padding-left: calc((100vw - 720px) / 2);
  }

  .team__card {
    width: 161.25px;
  }
}

@media (max-width: 768px) {
  .blog-overview__bottom {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 767px) {
  .companies__slider-container {
    padding-left: calc((100vw - 540px) / 2);
  }

  .companies__card {
    width: 255px;
  }

  .team__slider-container {
    padding-left: calc((100vw - 540px) / 2);
  }

  .team__card {
    width: 255px;
  }
}

@media (max-width: 575.98px) {
  .call-popup {
    padding: 30px 20px;
  }

  .approach-popup {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .companies__slider-container {
    padding-left: 15px;
  }

  .companies__card {
    width: calc(100vw - 60px);
  }

  .team__slider-container {
    padding-left: 15px;
  }

  .team__card {
    width: calc(100vw - 60px);
  }
}

@media (max-width: 73.0625em) {
  .footer .col-12 {
    gap: 20px;
  }

  .footer .col-12 > div:nth-child(1),
  .footer .col-12 > div:nth-child(2) {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }

  .footer .col-12 > div:nth-child(3),
  .footer .col-12 > div:nth-child(4) {
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 20px;
  }

  .footer__logo {
    margin-bottom: 40px;
  }

  .blocks__card-overlay h3 {
    font-family: "Oswald", serif;
    font-weight: 400;
    text-wrap: balance;
    color: #212529;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}

@media (max-width: 73.0625em) and (max-width: 47.9375em) {
  .blocks__card-overlay h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }
}

@media (max-width: 61.9375em) {
  .gallery__row:last-child {
    flex-direction: column;
  }

  .gallery__row:last-child .gallery_item {
    width: 100%;
  }

  .gallery__row .gallery_item_img_4 {
    max-width: 100%;
  }

  .hero__blog-content {
    flex-direction: column;
    display: block;
  }
}

@media (max-width: 47.9375em) {
  h1,
  .h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  h2,
  .h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  h3,
  .h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 18px;
  }

  h4,
  .h4 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  h5,
  .h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  p:not(:last-child) {
    margin-bottom: 15px;
  }

  ul,
  ol {
    margin-bottom: 15px;
  }

  blockquote:not(.quote blockquote) p {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .btn-actions {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
  }

  .btn-actions .btn {
    min-width: 0;
    width: 100%;
    justify-self: stretch;
    display: block;
    box-sizing: border-box;
  }

  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=url],
  input[type=number],
  input[type=date],
  input[type=password],
  textarea,
  select {
    padding: 10px;
  }

  .navbar {
    padding: 15px 0;
  }

  .footer .col-12 {
    flex-direction: column;
    gap: 20px;
  }

  .footer .col-12 > div,
  .footer .col-12 > div:nth-child(1),
  .footer .col-12 > div:nth-child(2),
  .footer .col-12 > div:nth-child(3),
  .footer .col-12 > div:nth-child(4) {
    flex: none !important;
    width: 100% !important;
    margin-bottom: 20px;
  }

  .footer__bottom {
    margin-top: 60px;
  }

  .footer__bottom ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero__left-bottom {
    margin-top: 30px;
  }

  .hero__facts {
    flex-direction: column;
    gap: 24px;
  }

  .hero__facts li span {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .hero__facts li span {
    font-family: "Oswald", serif;
    font-weight: 400;
    text-wrap: balance;
    color: #212529;
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 24px;
    margin-bottom: 5px !important;
  }

  .hero__image {
    margin-top: 40px;
  }

  .hero__home h1 {
    font-size: 48px;
    line-height: 54px;
  }

  .hero__home h1 span {
    font-size: 26px;
  }

  .hero__companies {
    padding-left: 15px;
  }

  .hero__companies .video__wrapper {
    margin-top: 35px;
  }

  .hero__esg {
    padding: 40px 0;
  }

  .hero__esg .hero__content {
    padding-right: 15px;
  }

  .companies__archive {
    padding: 0px;
  }

  .companies__card-overlay .name {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .call-to-action h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 18px;
  }

  .call-to-action__actions {
    flex-direction: column;
  }

  .blocks__header h2 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }

  .blocks__card.big .blocks__card-image {
    aspect-ratio: 1/1;
  }

  .blocks__card-overlay h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .team__overview {
    padding-bottom: 0;
  }

  .team__card-overlay span.name {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .gallery {
    margin-top: 0;
  }

  .gallery__items {
    gap: 24px;
  }

  .gallery__stats {
    padding: 0;
  }

  .gallery__stats {
    flex-direction: column;
    gap: 24px;
  }

  .gallery__stat-item span.number {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .team-popup h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .about-content {
    padding: 0 0 50px 0;
  }

  .about-content__text {
    padding-left: 20px;
    padding-top: 25px;
  }

  .latest-videos {
    padding: 50px 0;
  }

  .we-are {
    padding-bottom: 30px;
  }

  .we-are__item {
    background: #fff;
    border-color: #ad8e6f;
  }

  .we-are__item .we-are__item-top {
    margin-bottom: 20px;
  }

  .we-are__item p,
  .we-are__item a {
    position: static;
    opacity: 1;
    visibility: visible;
    max-width: 500px;
    margin: 0 auto;
  }

  .we-are__item p {
    margin-bottom: 20px;
  }

  .we-are__item a {
    margin-top: 20px;
  }

  .focus {
    padding: 20px 0 50px 0;
  }

  .focus__icons {
    padding-right: 20px;
    margin-bottom: 50px;
  }

  .focus__icon-item h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .quote blockquote {
    font-size: 24px;
    line-height: 32px;
  }

  .situations {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .situations__details {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .situations__details ul {
    display: none;
  }

  .situations__block {
    gap: 16px;
  }

  .situations__block-number {
    font-size: 24px;
  }

  .situations__block h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .situations__block-text h3 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }

  .situations__block-logo {
    display: none;
  }

  .approach {
    padding: 50px 0;
  }

  .approach .blocks__card h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .hero__companies .hero__content {
    margin-top: 30px;
  }

  .hero__companies .hero__image {
    margin-top: 30px;
  }

  .hero__companies .hero__image .hero__overlay .hero__text h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .overview h2,
  .overview h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .overview__content {
    margin-bottom: 50px;
  }

  .overview .overview__focus .focus-item-logo-text span {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .blocks__insights h2,
  .blocks__insights h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .hero__blog h1 {
    margin-top: 20px;
  }

  .hero__blog .hero__blog-content-details {
    margin-top: 20px;
  }

  .single-post .hero__image {
    display: none;
  }

  .blog-single {
    padding: 0;
  }

  .blog-single h2,
  .blog-single .h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 18px;
  }

  .blog-single h3,
  .blog-single .h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .blog-single h4,
  .blog-single .h4 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .blog-single h5,
  .blog-single .h5 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 14px;
  }

  .blocks__blog h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .blocks__blog-overview h2 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .hero__working-at img {
    margin-top: 40px;
  }

  .insight-fields__content {
    flex-direction: column;
    gap: 24px;
  }

  .text-blocks {
    padding: 70px 0 0 0;
  }

  .text-blocks__content {
    margin-bottom: 30px;
  }

  .text-blocks__content h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .benefits {
    padding: 60px 0 0 0;
  }

  .benefits__content {
    margin-bottom: 30px;
  }

  .contact-hero {
    padding: 20px 0 35px 0;
  }

  .contact-hero .col {
    flex-direction: column;
  }

  .contact-hero__back {
    position: relative;
    margin-bottom: 20px;
  }

  .contact {
    padding: 0;
  }

  .contact__block {
    padding: 20px;
  }

  .locations .row[class*=location-] {
    padding-bottom: 20px;
  }

  .locations__tabs ul li {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .locations .map-responsive {
    margin-bottom: 35px;
  }
}

@media (max-width: 47.9375em) and (max-width: 47.9375em) {
  .hero__facts li span {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 18px;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-inline-grid {
    display: inline-grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}

@media (max-resolution: 1.25dppx) and (min-height: 650px) {
  html html {
    zoom: 0.75;
    overflow-x: hidden;
  }

  .hero__background .hero__background {
    height: 600px;
  }
}

@media screen and (max-resolution: 120dpi) and (min-height: 650px) {
  html html {
    zoom: 0.75;
    overflow-x: hidden;
  }

  .hero__background .hero__background {
    height: 600px;
  }
}

@media screen and (max-height: 650px) {
  html {
    zoom: 0.75;
    overflow-x: hidden;
  }

  .hero__background {
    height: 550px;
  }
}
/*# sourceMappingURL=bundle.css.map */
