/*!**************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js!./node_modules/css-unicode-loader/index.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/theme-styles.scss ***!
  \**************************************************************************************************************************************************************************************************************************************/
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgb%285.2, 44, 101.2%29' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type > .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush > .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush > .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush > .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush > .accordion-item > .accordion-collapse,
.accordion-flush > .accordion-item > .accordion-header .accordion-button,
.accordion-flush > .accordion-item > .accordion-header .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='rgb%28109.8, 168, 253.8%29'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e");
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
  .carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  filter: var(--bs-carousel-control-icon-filter);
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e")*/;
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3e%3c/svg%3e") /*rtl:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0'/%3e%3c/svg%3e")*/;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--bs-carousel-indicator-active-bg);
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: var(--bs-carousel-caption-color);
  text-align: center;
}

.carousel-dark {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

:root,
[data-bs-theme=light] {
  --bs-carousel-indicator-active-bg: #fff;
  --bs-carousel-caption-color: #fff;
  --bs-carousel-control-icon-filter: ;
}

[data-bs-theme=dark] {
  --bs-carousel-indicator-active-bg: #000;
  --bs-carousel-caption-color: #000;
  --bs-carousel-control-icon-filter: invert(1) grayscale(100);
}

@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* CSS Variables */
:root {
  --theme-white: #ffffff;
  --theme-black: #000000;
  --theme-blue-dark: #00375f;
  --main-grey-500: #353433;
  --theme-blue-light: #cee6cc;
  --theme-beige: #fbf3e9;
  --theme-grey-100: #fdf9f4;
  --theme-grey-200: #535150;
  --theme-grey-400: #242424cc;
  --theme-grey-600: #2a2a2a;
  --theme-grey-800: #545454;
  --theme-grey-1000: #262626;
  --theme-natural-grey: #969696;
}

:root {
  font-size: 16px;
}

/* ==========================================================================
   Base Type
   ========================================================================== */
* {
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--theme-black) var(--theme-white);
}
*::-moz-focus-inner {
  border: 0;
}
*:focus, *:active, *:hover {
  outline: 0;
}
*:focus::-moz-focus-inner, *:active::-moz-focus-inner, *:hover::-moz-focus-inner {
  border: 0;
}
*::-webkit-scrollbar {
  height: 2px;
  width: 5px;
}
*::-webkit-scrollbar-track {
  background: var(--theme-white);
  height: 1px;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--theme-black);
  border-radius: 4px;
  background-clip: padding-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  height: 100%;
  margin: 0;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: "Poppins";
  color: var(--main-grey-500);
  font-weight: 500;
  font-size: 1rem;
  background-color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body,
input,
select,
textarea,
button {
  font-family: "Poppins";
}

a {
  color: var(--main-grey-500);
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}

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

p {
  margin: 0;
}
p:not(:last-of-type) {
  margin-bottom: 0.9375rem;
}

input[type=submit] {
  cursor: pointer;
}

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

select:focus {
  outline: none;
}

section {
  display: block;
}

/* text selection color */
::selection {
  background: #000;
  color: #fff;
}

::-moz-selection {
  background: #000;
  color: #fff;
}

label:has(input[type=radio]),
label:has(input[type=checkbox]) {
  position: relative;
  padding: 4px 0;
  padding-left: 28px;
}
label:has(input[type=radio])::before,
label:has(input[type=checkbox])::before {
  display: inline-block;
  position: absolute;
  left: 0px;
  top: 2px;
  width: 24px;
  height: 24px;
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
}
label:has(input[type=radio]) input[type=radio],
label:has(input[type=radio]) input[type=checkbox],
label:has(input[type=checkbox]) input[type=radio],
label:has(input[type=checkbox]) input[type=checkbox] {
  appearance: none;
  display: none;
}

/* ==========================================================================
   Headings and paragraph
   ========================================================================== */
h5,
.h5, h4,
.h4, h3,
.h3, h2,
.h2, h1,
.h1 {
  font-style: normal;
  font-family: "Poppins";
  line-height: 120%;
  font-weight: 200;
}

h1,
.h1 {
  font-size: 2.5rem;
  letter-spacing: -4px;
}
@media (max-width: 767px) {
  h1,
  .h1 {
    font-size: 2rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
  letter-spacing: -3.2px;
}
@media (max-width: 767px) {
  h2,
  .h2 {
    font-size: 1.5rem;
  }
}

h3,
.h3 {
  font-size: 1.75rem;
  letter-spacing: -2.8px;
}
@media (max-width: 767px) {
  h3,
  .h3 {
    font-size: 1.25rem;
  }
}

h4,
.h4 {
  font-size: 1.25rem;
  letter-spacing: -2px;
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 1.125rem;
    letter-spacing: -0.11px;
  }
}

h5,
.h5 {
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  h5,
  .h5 {
    font-size: 1rem;
  }
}

.body-font {
  font-family: "Poppins";
}

.heading-font {
  font-family: "Poppins";
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li {
  word-wrap: break-word;
  word-break: break-word;
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section.blog-carousel-section {
  position: relative;
}
section.blog-carousel-section .blog-carousel {
  display: flex;
  overflow: hidden;
}
section.blog-carousel-section .blog-carousel .blog-card {
  min-width: 399px;
  width: 100%;
  flex-direction: column;
  gap: 16px;
  display: flex;
  justify-content: space-between;
}
section.blog-carousel-section .blog-carousel .blog-card img {
  width: 100%;
  height: 322px;
  display: block;
  object-fit: cover;
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card img {
    height: 100%;
  }
}
section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta span.author,
section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta span.date {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.40625rem;
  color: var(--theme-natural-grey);
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta span.author,
  section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta span.date {
    font-size: 0.625rem;
    line-height: 0.9375rem;
    line-height: 150%; /* 15px */
  }
}
section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta span.date {
  text-align: right;
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card .card-content .category .meta {
    margin-bottom: 12px;
  }
}
section.blog-carousel-section .blog-carousel .blog-card .card-content .category h3 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.75rem;
  margin-bottom: 8px;
  color: var(--theme-grey-600);
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card .card-content .category h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    line-height: 140%; /* 28px */
    letter-spacing: -0.2px;
    margin-bottom: 6px;
  }
}
section.blog-carousel-section .blog-carousel .blog-card .card-content .category p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.40625rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card .card-content .category p {
    font-size: 0.875rem;
    line-height: 1.375rem;
    line-height: 160%; /* 22.4px */
    margin-bottom: 12px;
  }
}
section.blog-carousel-section .blog-carousel .blog-card .card-content .read-more a {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 991px) {
  section.blog-carousel-section .blog-carousel .blog-card .card-content .read-more a {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card .card-content .read-more a {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}
@media (max-width: 767px) {
  section.blog-carousel-section .blog-carousel .blog-card {
    min-width: unset;
  }
}
section.blog-carousel-section .blog-carousel .swiper-wrapper {
  display: flex;
}
section.blog-carousel-section .blog-carousel .swiper-button-wrapper {
  display: flex;
  width: max-content;
  gap: 24px;
  position: absolute;
  top: -80px;
  right: 0;
  cursor: pointer;
}
section.blog-carousel-section .blog-carousel .swiper-button-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 8px;
  border: 1px solid #353433;
}
@media (max-width: 991px) {
  section.blog-carousel-section .blog-carousel .swiper-button-wrapper div {
    padding: 12.222px 19.556px;
  }
}
@media (max-width: 991px) {
  section.blog-carousel-section .blog-carousel .swiper-button-wrapper {
    gap: 19px;
    top: auto;
    right: auto;
    bottom: -80px;
  }
}

section.blog-blog-carousel-customer-story {
  position: relative;
}
section.blog-blog-carousel-customer-story .blog-carousel {
  display: flex;
  overflow: hidden;
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card {
  width: 100%;
  flex-direction: column;
  gap: 16px;
  display: flex;
  height: 100%;
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card img {
  width: 100%;
  height: 322px;
  display: block;
  object-fit: cover;
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card img {
    height: 100%;
  }
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta span.author,
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta span.date {
  display: inline-block;
  font-family: "Poppins";
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.40625rem;
  color: var(--theme-natural-grey);
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta span.author,
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta span.date {
    font-size: 0.625rem;
    line-height: 0.9375rem;
    line-height: 150%; /* 15px */
  }
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta span.date {
  text-align: right;
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category .meta {
    margin-bottom: 12px;
  }
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category h3 {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.75rem;
  margin-bottom: 8px;
  color: var(--theme-grey-600);
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    line-height: 140%; /* 28px */
    letter-spacing: -0.2px;
    margin-bottom: 6px;
  }
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category p {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.40625rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .category p {
    font-size: 0.875rem;
    line-height: 1.375rem;
    line-height: 160%; /* 22.4px */
    margin-bottom: 12px;
  }
}
section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .read-more a {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
}
@media (max-width: 991px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .read-more a {
    text-decoration: underline;
  }
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card .card-content .read-more a {
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}
@media (max-width: 991px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card {
    flex-direction: column;
    flex: 1 0 auto;
  }
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .blog-card {
    min-width: unset;
  }
}
section.blog-blog-carousel-customer-story .blog-carousel .swiper-wrapper {
  display: flex;
}
section.blog-blog-carousel-customer-story .blog-carousel .swiper-button-wrapper {
  display: flex;
  width: max-content;
  gap: 24px;
  position: absolute;
  top: auto;
  right: 405px;
  bottom: 0;
  left: auto;
  right: auto;
  cursor: pointer;
}
section.blog-blog-carousel-customer-story .blog-carousel .swiper-button-wrapper div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 8px;
  border: 1px solid #353433;
}
@media (max-width: 767px) {
  section.blog-blog-carousel-customer-story .blog-carousel .swiper-button-wrapper div {
    padding: 12.222px 19.556px;
  }
}
@media (max-width: 991px) {
  section.blog-blog-carousel-customer-story .blog-carousel .swiper-button-wrapper {
    position: unset;
    gap: 19px;
    top: auto;
    right: auto;
    bottom: auto;
  }
}
@media (max-width: 991px) {
  section.blog-blog-carousel-customer-story .blog-carousel {
    flex-direction: column;
    gap: 32px;
  }
}

section.blog-partner-carousel .card-content {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kw-post-wrapper .blog-card-wrapper {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .kw-post-wrapper .blog-card-wrapper {
    margin-bottom: 32px;
  }
}

.kw-post-wrapper #load-more {
  color: #fdf9f4;
  font-family: "Poppins";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  border: 0px solid;
  margin: 0 auto;
  display: block;
  padding: 15px 35px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #363636;
}
@media (max-width: 767px) {
  .kw-post-wrapper #load-more {
    font-size: 12.453px;
    line-height: 150%; /* 18.679px */
  }
}

/*# sourceMappingURL=theme.min.css.map*/