:root,
[data-color-mode="light"] {
  --primary-color: #005825;
  --primary-color-rgb: 0, 88, 37;
  --secondary-color: #107ba2;
  --secondary-color-rgb: 16, 123, 162;
  --accent-color: #bad800;
  --accent-color-rgb: 186, 216, 0;
  --maroon-color: #8c0304;
  --maroon-color-rgb: 140, 3, 4;
  --yellow-color: #fce027;
  --navyblue-color: #342762;
  --body-font: "Montserrat", sans-serif;
  --heading-font: var(--bs-font-sans-serif), sans-serif;
  --breakpoint-min: 414;
  --breakpoint-max: 1200;
  --breakpoint-range: calc(var(--breakpoint-max) - var(--breakpoint-min));
  --breakpoint-diff: calc(100vw - (var(--breakpoint-min) * 1px));
  --fs-large-banner: clamp(
    2rem,
    calc((16 * 3.5) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    3.5rem
  );
  --fs-title: clamp(
    1.75rem,
    calc((16 * 2.75) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    2.75rem
  );
  --fs-small-banner: clamp(
    1.3125rem,
    calc((16 * 2) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    2rem
  );
  --fs-sub-title: clamp(
    1.25rem,
    calc((16 * 1.5) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    1.5rem
  );
  --fs-caption: clamp(
    1.1875rem,
    calc((16 * 1.25) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    1.25rem
  );
  --fs-lead: 1.125rem;
  --fs-text: 1rem;
  --fs-small: 0.875rem;
  --button-padding-y: clamp(
    0.5rem,
    calc((16 * 1) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    1rem
  );
  --button-padding-x: clamp(
    1.5rem,
    calc((16 * 2) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    2rem
  );
  --border-roundness: clamp(
    2rem,
    calc((16 * 4) * (var(--breakpoint-diff) / var(--breakpoint-range))),
    4rem
  );
  --top-bar-height: 0;
  --menu-height: 0;
  --body-color: #333333;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--menu-height) + 16px);
}
[data-color-mode="dark"] {
  --body-color: #c9c9c9;
  --primary-color: color-mix(
    in srgb,
    rgb(var(--primary-color-rgb)) 100%,
    white 25%
  );
  --maroon-color: color-mix(
    in srgb,
    rgb(var(--maroon-color-rgb)) 100%,
    white 25%
  );
}
body {
  font-family: var(--body-font);
  color: var(--body-color);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
:is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  font-family: var(--heading-font);
  font-weight: 600;
}
:is(ul, ol):not([role="list"]) {
  list-style: none;
  padding-inline-start: 0;
}
:is(ul, ol)[role="list"] > li {
  margin-block-end: 0.5rem;
}
:is(ul, ol)[style*="--list-margin"] > li {
  margin-block-end: var(--list-margin);
}
:is(ul, ol)[style*="--list-marker"] > li::marker {
  content: var(--list-marker);
}
img {
  max-width: 100%;
}
a:not([class]) {
  text-decoration: none;
  color: inherit;
}
.sc_py {
  padding-block: clamp(2rem, calc(2rem + 1.5vw), 3.5rem);
}
.sc_pt {
  padding-block-start: clamp(2rem, calc(2rem + 1.5vw), 3.5rem);
}
.sc_pb {
  padding-block-end: clamp(2rem, calc(2rem + 1.5vw), 3.5rem);
}
[class*="color-"] {
  --text-opacity: 1;
}
.color-primary {
  color: rgba(var(--primary-color-rgb), var(--text-opacity)) !important;
}
.color-secondary {
  color: rgba(var(--secondary-color-rgb), var(--text-opacity)) !important;
}
.color-accent {
  color: rgba(var(--accent-color-rgb), var(--text-opacity)) !important;
}
[class*="background-"] {
  --bg-opacity: 1;
}
.background-primary {
  background: rgba(var(--primary-color-rgb), var(--bg-opacity)) !important;
}
.background-secondary {
  background: rgba(var(--secondary-color-rgb), var(--bg-opacity)) !important;
}
.background-accent {
  background: rgba(var(--accent-color-rgb), var(--bg-opacity)) !important;
}
.sticky-lg-top,
.sticky-top {
  top: -1px;
}
.sticky-padding {
  top: var(--menu-height);
}
.hidden {
  display: none;
}
.text-justify {
  text-align: justify;
}
.line-clamp {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.section__title {
  color: var(--primary-color);
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 1.3;
}
.section__title span {
  display: block;
  font-size: var(--fs-lead);
  color: var(--maroon-color); /* line-height: 1.2em; */
}
.section__subtitle {
  color: rgba(var(--primary-color-rgb), 0.85);
  font-weight: 500;
  font-size: var(--fs-lead);
  margin-block: 1rem;
}
.section__subtitle:has(+ p) {
  margin-block-end: 0;
}
.text-heading {
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: var(--fs-small-banner);
}
.text-heading-2 {
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: var(--fs-sub-title);
}
.text-caption {
  font-size: var(--fs-caption);
  font-weight: 500;
}
.text-lead {
  font-size: var(--fs-lead);
  font-weight: 500;
  margin-bottom: 0.33em;
}
.sublist-increment {
  counter-reset: item;
}
.sublist-increment > li::before {
  counter-increment: item;
  content: counter(item) " ";
  margin-inline-start: -4px;
}
.form-honeypot {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  opacity: 0;
  z-index: -1;
}
.pattern-text {
  display: none;
  font-size: 9pt;
}
.pattern-error + .pattern-text {
  display: block;
}
.colorModeSwitch {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 11;
  padding-bottom: 1rem;
}
#modeSwitchButton {
  --sun-color: var(--bs-orange);
  --moon-color: var(--bs-light);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  padding: 0 0.25rem;
  border-radius: 50vw;
  border: 1px solid var(--bs-border-color);
}
#modeSwitchButton label {
  display: inline-flex;
  padding: 0.25rem;
  line-height: 1;
  cursor: pointer;
}
#modeSwitchButton .toggleColorIcons {
  display: inline-flex;
  flex-direction: row;
  column-gap: 0.5em;
  position: relative;
  font-size: small;
}
#modeSwitchButton .toggleColorIcons::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--sun-color);
  border-radius: 50%;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
  transition: 250ms ease-out;
}
#modeSwitchButton input:checked + label .toggleColorIcons::before {
  background: var(--moon-color);
  left: 50%;
}
#modeSwitchButton .toggleColorIcons i[class*="sun"] {
  color: var(--sun-color);
}
#modeSwitchButton label span i[class*="moon"] {
  color: var(--moon-color);
}
#scrollToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 5px;
  z-index: 99;
  outline: none;
  background-color: rgba(var(--secondary-color-rgb), 0.5);
  color: var(--bs-light);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  line-height: 1;
  padding: 1rem;
  font-size: 15px;
}
#scrollToTop:hover {
  background-color: #bbd800;
}
.scrollToTop.show {
  z-index: 1111;
  transform: translateY(0);
  opacity: 1;
}
.top__bar {
  background: rgba(var(--primary-color-rgb), 0.125);
}
.top__bar .logo {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 0.875rem;
}
.top__bar .brand {
  /* font-family: var(--bs-font-sans-serif); */
  text-align: center;
  font-size: var(--fs-title);
  line-height: 0.65;
}
.top__bar .brand .brand__name {
  font-weight: 600;
  color: var(--primary-color);
  font-family: "Carlito";
}
.top__bar .brand .brand__tag {
  font-size: var(--fs-caption);
}
.top__bar .search-bar {
  border-radius: 50vw;
  overflow: hidden;
  background: var(--primary-color);
  padding: calc(var(--button-padding-y) / 2) var(--button-padding-x);
}
.top__bar .search-bar :where(input, button) {
  background: none;
  border: none;
  color: #fff;
}
.top__bar .search-bar input:focus {
  box-shadow: none;
}
.top__bar .search-bar input::placeholder {
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  opacity: 0.75;
  letter-spacing: 0.25pt;
}
.top__bar .search-bar button {
  opacity: 0.75;
}
.menu__bar.sticky-lg-top {
  top: -1px;
}
.menu__bar .navbar {
  background: var(--secondary-color);
  position: relative;
  --logo-width: 32px;
}
.menu__bar .navbar-brand {
  position: relative;
  isolation: isolate;
}
.menu__bar.sticky-active .navbar-brand {
  width: var(--logo-width);
  height: var(--logo-width);
  padding-block: 0.25rem;
}
.menu__bar .navbar-brand .navbar-logo {
  width: 80px;
  height: 80px;
  position: absolute;
  inset: 0;
  display: none;
}
.menu__bar .navbar-brand .navbar-logo .navbar-diamond {
  position: relative;
}
.menu__bar.sticky-active .navbar-brand .navbar-logo {
  display: block;
  animation: logoSlideDown 750ms ease-in-out;
}
.menu__bar.sticky-active .navbar-brand + .navbar-nav {
  margin-left: var(--logo-width);
}
.menu__bar .nav-link {
  color: var(--bs-light);
  font-size: 0.938rem;
}
.menu__bar .dropdown {
  position: initial;
}
.menu__bar .dropdown-menu {
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border-top: 3px solid var(--primary-color);
  top: 100%;
  left: inherit;
  min-width: 270px;
}
@media (hover: hover) and (pointer: fine) {
  .menu__bar .dropdown-menu {
    display: block;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: 300ms ease-in-out;
    transition-delay: 150ms;
  }
  .menu__bar .dropdown:hover > .dropdown-menu {
    transition-delay: 0s;
    opacity: 1;
    transform: scaleY(1);
  }
}
.menu__bar .mega-menu .dropdown-menu {
  left: 0.5rem;
  width: calc(100% - 1rem);
}
.menu__bar .dropdown-toggle::after {
  font-family: "bootstrap-icons";
  content: "\F282";
  border: none;
  vertical-align: middle;
  font-size: 0.625rem;
  font-weight: bold;
}
.menu__bar .dropdown-item {
  font-size: 0.875rem;
  color: var(--primary-color);
  font-weight: 500;
  padding-block: 0.75rem;
  margin-block: 0.25rem;
  transition: 300ms ease-in-out;
  position: relative; /* overflow: hidden; */
  white-space: inherit;
}
.menu__bar .dropdown-item:hover {
  color: #fff;
  transform: translateX(0.5rem);
}
.menu__bar .dropdown-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  transform: scaleX(0) translateZ(0);
  transform-origin: right center;
  transition: transform 300ms ease;
  z-index: -1;
}
.menu__bar .dropdown-item:hover::before {
  transform-origin: left center;
  transform: scaleX(1) translateZ(0);
}
.menu__bar .dropend .dropdown-toggle {
  color: inherit;
  text-decoration: none; /* display: block; width: 100%; */
}
.menu__bar .dropend .dropdown-toggle::after {
  content: "\F285";
}
@media (hover: hover) and (pointer: fine) {
  .menu__bar .dropend .dropdown-menu {
    transform: scaleX(0);
    transform-origin: left center;
    top: 0;
    right: auto;
    left: 100%;
    z-index: 1111;
  }
  .menu__bar .dropend:hover > .dropdown-menu {
    transform: scaleX(1);
    opacity: 1;
  }
}
footer {
  margin-top: auto;
  background: rgb(var(--primary-color-rgb));
}
.footer__main {
  position: relative; /* color: var(--bs-body-bg); */
  z-index: 1;
}
.footer__main::before {
  content: "";
  position: absolute;
  height: 20%;
  width: 100%;
  background: var(--bs-body-bg);
  z-index: -1;
}
.footer__main::after {
  content: "";
  position: absolute;
  background: url("../images/backgrounds/footer.webp") no-repeat left;
  inset: 0;
  opacity: 0.15;
  background-blend-mode: luminosity;
  transform: translateX(0);
  animation: bobX 5s linear alternate-reverse infinite;
  z-index: -2;
}
.footer__logo {
  position: relative; /* float: inline-start; margin-inline-end: 1.5rem; */
  z-index: 1;
  padding: 0.25rem;
  width: 72px;
  height: 72px;
}
.footer__logo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow-color);
  z-index: -1;
  transform: rotate(45deg);
  border-radius: 0.5rem;
}
.footer__info p.small {
  color: var(--yellow-color);
  margin-bottom: 0;
}
.footer__info .list-group {
  --bs-list-group-bg: transparent;
  --bs-list-group-border-color: color-mix(
    in srgb,
    var(--primary-color) 75%,
    var(--bs-body-bg) 25%
  );
  margin-top: 1rem;
}
.footer__info .list-group .bi {
  color: var(--bs-light);
}
.footer__widget .footer__title {
  color: var(--accent-color);
}
.footer__widget--cta {
  text-align: center;
  background: var(--accent-color);
  padding: 2rem;
  border-radius: calc(var(--border-roundness) / 2) 0;
}
.footer__widget--cta .footer__title {
  font-weight: 700;
  color: color-mix(in srgb, var(--primary-color) 85%, grey 15%);
}
.footer__widget--cta p {
  color: color-mix(in srgb, var(--primary-color) 50%, black 50%);
  font-weight: 600;
}
.footer__cpr {
  background: color-mix(in srgb, var(--primary-color) 100%, black 25%);
  color: var(--bs-light);
}
.breadcrumb__sc {
  background:
    linear-gradient(
      rgba(var(--primary-color-rgb), 0.7),
      rgba(var(--primary-color-rgb), 0.7)
    ),
    url("../images/backgrounds/breadcrumb.webp") no-repeat center/cover;
  padding-block: clamp(3rem, calc(3rem + 1.5vw), 5rem);
  position: relative;
}
.breadcrumb__sc .breadcrumb {
  background: var(--bs-body-bg);
  display: inline-flex;
  max-width: max-content;
  min-width: 375px;
  line-height: 1.2;
  padding: 0.5rem 2rem;
  border-radius: 50vw;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%, 50%);
}
.breadcrumb__sc .breadcrumb-item {
  color: var(--primary-color);
}
.breadcrumb__sc .breadcrumb-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.page__wrapper .section__title {
  font-size: var(--fs-small-banner);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.page__wrapper.blogs .section__title {
  font-size: var(--fs-title);
}
.blogs p:has(+ :is(ul, ol)) {
  margin-block-end: 8px;
}
.page__wrapper.blogs h1 {
  margin-bottom: 0.6em;
}
.page__wrapper.blogs h2 {
  margin-top: 0.6em;
}
.page__wrapper.blogs h3 {
  margin-top: 1em;
  font-size: var(--fs-caption);
  margin-bottom: 0.75em;
}
.page__wrapper.blogs h3:has(+ p) {
  margin-bottom: 0.3em;
}
.page__wrapper.blogs p {
  margin-bottom: 0.6em;
}
b,
strong {
  font-weight: bold;
}
.chat,
.wa-chat {
  position: fixed;
  bottom: 30px;
  right: 61px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border: 2px solid var(--bs-light);
  border-radius: 50%;
  padding: 1rem;
  line-height: 1;
  z-index: 1111;
  cursor: pointer;
  transform: translateY(1rem);
  opacity: 0;
  transition: 500ms ease-in-out;
}

.wa-chat {
  color: #fff;
  background: #25d366;
  padding: 0.75rem;
  font-size: 1.5rem;
}
.chat .bi {
  -webkit-text-stroke: 1px;
}
.chat.show,
.wa-chat.show {
  transform: none;
  opacity: 1;
}
.btn {
  border-radius: 50vw;
  padding: var(--button-padding-y) var(--button-padding-x);
  border: transparent;
  font-size: 0.875rem;
  font-weight: 600;
}
.btn-sm {
  padding: calc(var(--button-padding-y) / 2) calc(var(--button-padding-x) / 2);
}
.btn-main {
  background: var(--accent-color);
  color: var(--primary-color) !important;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 250ms ease-in-out;
}
.btn-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primary-color);
  border-radius: 50vw;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 500ms ease-in-out;
}
.btn-main:hover {
  color: #fff !important;
}
.btn-main:hover::before {
  transform: translateX(0%);
}
.btn-main i.bi {
  font-size: 1rem;
  background: #fff;
  padding: var(--button-padding-y);
  border-radius: 50%;
  line-height: 1;
  display: inline-block;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-text-stroke: 1px;
}
.btn-sm.btn-main i.bi {
  padding: calc(var(--button-padding-y) / 2);
}
.btn-main:hover i.bi {
  color: var(--primary-color);
}
.btn-main span {
  margin-left: 1.5rem;
}
.btn-alt {
  padding: calc(var(--button-padding-y) / 2) calc(var(--button-padding-x) / 1);
  background: var(--primary-color);
  color: var(--bs-body-bg);
}
.my-slider-section {
  width: 90%;
  margin: 40px auto;
}
.my-slider img {
  border-radius: 10px;
  display: block;
}
.my-slider .slick-slide {
  margin: 0 15px;
}
.my-slider .slick-list {
  margin: 0 -15px;
}
.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.slick-prev:before,
.slick-next:before {
  color: #414744 !important;
  font-size: 28px !important;
}
.slick-prev {
  left: -50px;
}
.slick-next {
  right: -50px;
}
.slick-dots {
  bottom: -40px;
}
.slick-dots li button:before {
  font-size: 12px;
  color: #bbb;
  opacity: 1;
}
.slick-dots li.slick-active button:before {
  color: #000;
}
.slick-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0.25turn,
    var(--bs-body-bg) -15%,
    transparent,
    var(--bs-body-bg) 115%
  );
  z-index: 11;
}
.hero .carousel-item {
  z-index: 1;
  max-height: calc(100svh - var(--top-bar-height));
  overflow: hidden;
  min-height: 50svh;
}
.hero .carousel-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--secondary-color-rgb), 0.65);
  z-index: 1;
}
.hero .carousel-item img {
  animation: carouselScale 10s ease-out forwards;
  min-height: 50svh;
  object-fit: cover;
}
.hero .carousel-caption {
  z-index: 2;
  text-align: start;
  bottom: 50%;
  transform: translateY(50%);
  overflow: hidden;
}
.hero .carousel-title {
  max-width: 21ch;
  color: var(--bs-light);
  font-size: var(--fs-large-banner);
  font-style: italic;
  line-height: 1.2em;
  opacity: 0;
  transform: perspective(300px) rotateY(21deg) translateY(80px);
  transform-origin: bottom;
  margin-bottom: 1rem;
  font-weight: 600;
}
.hero .carousel-item.active .carousel-title {
  animation: captionSlideIn 1000ms 500ms ease forwards;
}
.hero .carousel-caption .btn-main {
  transform: translateY(80px);
}
.hero .carousel-item.active .btn-main {
  animation: captionSlideUp 1500ms 1500ms ease forwards;
}
@keyframes captionSlideIn {
  100% {
    opacity: 1;
    transform: perspective(300px) rotateY(0deg) translateY(0);
  }
}
@keyframes captionSlideUp {
  100% {
    transform: translateY(0px);
  }
}
.hero .carousel-nav {
  display: flex;
  column-gap: 0.5rem;
  position: absolute;
  bottom: 5%;
  left: 15%;
  z-index: 2;
  transform: translateY(-50%) translateZ(1px);
  transition:
    transform 500ms ease,
    opacity 500ms ease;
}
.hero .carousel-control-next,
.hero .carousel-control-prev {
  position: relative;
  width: auto;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  border: 2px solid var(--primary-color);
  background: var(--accent-color);
  opacity: 1;
  transition: opacity 250ms ease;
}
.hero .carousel-control-next:hover,
.hero .carousel-control-prev:hover {
  opacity: 1;
}
.hero .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23005825' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4 8a.5.5 0 0 1 .5-.5h5.793L8.146 5.354a.5.5 0 1 1 .708-.708l3 3a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708-.708L10.293 8.5H4.5A.5.5 0 0 1 4 8'/%3E%3C/svg%3E");
}
.hero .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23005825' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M12 8a.5.5 0 0 1-.5.5H5.707l2.147 2.146a.5.5 0 0 1-.708.708l-3-3a.5.5 0 0 1 0-.708l3-3a.5.5 0 1 1 .708.708L5.707 7.5H11.5a.5.5 0 0 1 .5.5'/%3e%3c/svg%3e");
}
@media only screen and (max-width: 400px) {
  .hero {
    display: none !important;
  }
}
.about {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/backgrounds/about-v1.webp") no-repeat center/cover;
  z-index: -1;
  width: 100%;
  height: auto;
}
.about__images img {
  border-radius: 50%;
}
.objective {
  background: transparent;
  padding-block: 2rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.objective::before,
.objective::after {
  content: "";
  position: absolute;
  width: 55%;
  height: 100%;
  top: 0;
  transform: translateZ(1px) skewX(-5deg);
  z-index: -11;
  backface-visibility: hidden;
  outline: 1px solid #fff;
}
.objective::before {
  background:
    linear-gradient(rgb(16 128 168 / 75%), rgb(17 96 124 / 75%)),
    url(../images/about-goal.webp) no-repeat center/cover;
  left: -5%;
}
.objective::after {
  background:
    linear-gradient(rgb(17 96 124 / 75%), rgb(16 128 168 / 75%)),
    url(../images/about-vision.webp) no-repeat center/cover;
  left: 50%;
}
.objective__content {
  padding: 2rem;
  color: #fff;
  position: relative;
}
.objective__content h3 {
  color: var(--yellow-color);
  font-weight: 700;
}
.objective__content h3::before {
  content: attr(data-text);
  position: absolute;
  font-size: min(10vw, 96px);
  color: #c8e1e6;
  z-index: -1;
  top: 0;
  opacity: 0.15;
}
.objective__content h3::after {
  content: attr(data-text);
}
.usp {
  position: relative;
}
.usp:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100px;
  background: rgba(var(--secondary-color-rgb), 0.05);
  z-index: -1;
}
.usp__container {
  background: var(--bs-body-bg);
  border-radius: 0 0 3rem 3rem;
  box-shadow: 0px 30px 30px 0px rgb(29 85 187 / 10%);
  overflow-x: hidden;
}
.usp__content {
  padding: clamp(2rem, calc(2rem + 1.5vw), 3.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}
.usp__img img {
  border-radius: var(--border-roundness) 0;
  margin-bottom: 1.25rem;
}
.usp__title {
  font-size: var(--fs-sub-title);
  font-weight: 600;
}
.usp__content:not(.last):before {
  content: "";
  position: absolute;
  right: -25%;
  top: 35%;
  background: #d5d5d5;
  width: 50%;
  height: 2px;
  z-index: -1;
}
.usp__content:not(.last):after {
  content: "";
  position: absolute;
  right: -1.25rem;
  top: calc(35% - 0.5rem);
  background: #e3ecef;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  z-index: -1;
}
.services {
  background: rgba(var(--secondary-color-rgb), 0.05);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/backgrounds/service.webp") no-repeat center/cover;
  mix-blend-mode: darken;
  z-index: -1;
}
.services_content {
  border-radius: var(--border-roundness) 0;
  overflow: hidden;
  background: rgba(var(--bs-body-bg-rgb), 0.75);
  position: relative;
  padding: 0 0 1rem;
}
.services_content:hover {
  box-shadow: 0px 20px 100px 0px rgba(58, 65, 111, 0.1);
}
.services__img img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.services__title {
  font-size: var(--fs-sub-title);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.services__link {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
}
.services__link .bi {
  color: var(--secondary-color);
  -webkit-text-stroke: 1px;
  display: block;
  transition: 250ms ease-in-out;
  opacity: 0;
  position: absolute;
}
.services__link .bi::before {
  background: rgba(var(--secondary-color-rgb), 0.1);
  padding: 0.5rem;
  border-radius: 50%;
}
.services_content:hover .bi {
  opacity: 0;
  transform: translateY(-50%);
}
.services__link .btn {
  position: relative;
  transition: 250ms ease-in-out;
  z-index: 11;
}
@media (hover: hover) {
  .services_content .bi {
    opacity: 1;
    position: relative;
  }
  .services__link .btn {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: max-content;
    opacity: 0;
    top: calc(100% + 0.5rem);
  }
}
.services_content:hover .services__link .btn {
  opacity: 1;
  top: 0;
}
.cta {
  background: #378f5c; /* background: hsl(from var(--primary-color) h 40% 40%); */
  position: relative;
  z-index: 1;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/backgrounds/map.webp") no-repeat center;
  z-index: -1;
}
.cta .cta__title {
  font-size: var(--fs-large-banner);
  color: #fff;
  font-weight: 700;
}
.cta .cta__text {
  font-size: var(--fs-title);
  color: #fff;
}
.team__content {
  text-align: center;
  border: 1px solid rgba(var(--secondary-color-rgb), 0.1);
  padding: 2rem 1rem;
  border-radius: 0 var(--border-roundness);
  height: 100%;
}
.team__img img {
  border-radius: 0 calc(var(--border-roundness) / 1.5);
  margin-bottom: 1rem;
}
.team__name {
  font-size: var(--fs-lead);
  color: color-mix(in srgb, var(--primary-color) 100%, white 25%);
  font-weight: 600;
}
.team__name span {
  display: block;
  font-size: 0.875rem;
  color: var(--secondary-color);
  font-weight: 500;
}
.team__profile {
  background: rgba(var(--secondary-color-rgb), 0.05);
  background: linear-gradient(
    45deg,
    rgba(var(--secondary-color-rgb), 0.02),
    rgba(var(--secondary-color-rgb), 0.05)
  );
  border-radius: var(--border-roundness) 0;
  text-align: center;
  padding: 1rem;
  margin: 1rem;
  border: 1px solid var(--bs-body-bg);
  box-shadow: 0px 0 20px -10px rgba(var(--secondary-color-rgb), 0.15);
  height: 100%;
}
.team__data {
  --gradient-dir: right;
}
.team__data .modal-content {
  background: var(--bs-body-bg);
  border: none;
}
.team__data .modal-body {
  background: linear-gradient(
    to var(--gradient-dir),
    rgba(var(--primary-color-rgb), 0.25) 25%,
    var(--bs-body-bg) 25%
  );
}
.team__data .btn-close {
  position: absolute;
  right: 0;
  padding: 1rem;
}
.page__wrapper .team__profile > .team__img img {
  border-radius: 50%;
  height: 128px;
  width: 128px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.team__data .modal-content {
  background: var(--bs-body-bg);
  border: none;
}
.facilities {
  background: rgba(var(--secondary-color-rgb), 0.05);
}
.facilities .col-md-6:not(:last-child) {
  border-right: 1px solid #00000029;
}
.facilities__content {
  text-align: center;
}
.facilities__icon .icon-wrap {
  position: relative;
  display: inline-block;
  background: rgba(var(--secondary-color-rgb), 0.05);
  padding: 1.25rem;
  border-radius: 50%;
  overflow: hidden;
}
.facilities__icon img {
  display: block;
  font-size: 4rem;
  filter: invert(25%) sepia(11%) saturate(5246%) hue-rotate(106deg)
    brightness(93%) contrast(101%);
  transition: 400ms ease;
  position: relative;
  z-index: 2;
}
.facilities__icon .icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  border-radius: 50%;
  z-index: -11;
  transform: scale(0);
  transition: 400ms ease;
}
.facilities__content:hover .icon-wrap::after {
  transform: scale(1);
}
.facilities__content:hover img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(338deg)
    brightness(103%) contrast(101%);
  transform: scale(0.75);
}
.facilities__title {
  font-size: var(--fs-lead);
  font-weight: 700;
  color: var(--primary-color) !important;
  margin-block: 1rem;
}
.facilities__text {
  font-size: var(--fs-lead);
}
.service__content {
  background: #4f506c;
  color: var(--bs-light);
  text-align: center;
  padding-block: 1rem;
  border-radius: 0.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
}
.service__content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/graphics/halftone-dots.png");
  z-index: -1;
  mix-blend-mode: screen;
}
.service__icon {
  background: #3e3e54;
  color: var(--accent-color);
  display: inline-block;
  line-height: 1;
  font-size: var(--fs-title);
  padding: 1rem;
  border-radius: 50%;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: 300ms ease;
}
.service__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-color);
  z-index: -1;
  border-radius: 50%;
  transform: scale(0);
  transition: 300ms ease;
}
.service__icon img {
  filter: invert(91%) sepia(26%) saturate(6850%) hue-rotate(20deg)
    brightness(100%) contrast(101%);
}
.service__content:hover .service__icon img {
  filter: invert(25%) sepia(37%) saturate(1076%) hue-rotate(97deg)
    brightness(97%) contrast(105%);
}
.service__content:hover .service__icon::before {
  transform: scale(1);
}
.service__title {
  font-weight: 500;
}
.service__img {
  border-radius: var(--border-roundness) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-align: center;
}
.service__img img {
  mask-image: linear-gradient(90deg, transparent, black, transparent);
  mix-blend-mode: hard-light;
}
.service__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--primary-color-rgb), 0.25);
}
.service__card {
  padding: 1rem;
  height: 100%;
  border-radius: 0.5rem;
  background: rgba(var(--secondary-color-rgb), 0.05);
  background: linear-gradient(
    45deg,
    rgba(var(--secondary-color-rgb), 0.02),
    rgba(var(--secondary-color-rgb), 0.05)
  );
  border: 1px solid var(--bs-body-bg);
  box-shadow: 0px 0 20px -10px rgba(var(--secondary-color-rgb), 0.15);
  transform-style: preserve-3d;
}
.service__card > div {
  transform-style: preserve-3d;
}
.service__card img {
  width: 200px;
  margin-bottom: 10px;
  border-radius: 5% 5% 50%;
  border: 1px solid #eee;
  transform: translateZ(1rem);
}
.service__card h5 {
  transform: translateZ(2rem);
}
.service__card h5 {
  transform: translateZ(4rem);
}
.greviews {
  position: relative;
}
.greviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0.25turn,
    var(--bs-body-bg) -15%,
    transparent,
    var(--bs-body-bg) 115%
  );
  z-index: 11;
}
.greviews .card {
  border: none;
  background: rgba(var(--primary-color-rgb), 0.05);
}
.testimonial_content {
  background: rgba(var(--secondary-color-rgb), 0.05);
  background: linear-gradient(
    45deg,
    rgba(var(--secondary-color-rgb), 0.02),
    rgba(var(--secondary-color-rgb), 0.05)
  );
  border-radius: 0 calc(var(--border-roundness) / 2);
  padding: 1rem;
  margin: 1rem;
  border: 1px solid var(--bs-body-bg);
  box-shadow: 0px 0 20px -10px rgba(var(--secondary-color-rgb), 0.15);
  height: 100%;
}
.testimonial_data {
  --gradient-dir: right;
  z-index: 1111;
}
.testimonial_data .btn-close {
  position: absolute;
  right: 0;
  padding: 1rem;
}
.page__wrapper .testimonial_content > .testimonial_img img {
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}
.testimonial_data .modal-content {
  background: var(--bs-body-bg);
  border: none;
}
.g__img {
  padding: 1rem;
  border-radius: 10px;
  outline: 1px solid var(--primary-color);
  outline-offset: -5px;
}
.table-responsive table tr td p {
  margin-bottom: 0;
}
.list-items {
  display: flex;
  flex-wrap: wrap;
}
.list-items li {
  width: 500px;
}
.profile__name {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 8px;
  box-shadow:
    8px 8px 8px rgba(199, 208, 213, 0.5),
    -8px -8px 16px #ffffff;
  background: linear-gradient(135deg, #eff3fb, #f0f6fa);
  height: 100%;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  color: color-mix(in srgb, var(--secondary-color), black 50%);
}
.profile__name::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0.25;
  z-index: -1;
  background: url(../images/card-left.png) no-repeat left top;
  background-size: 35%;
}
.profile__name::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0.25;
  z-index: -1;
  background: url(../images/card-right.png) no-repeat right bottom;
  background-size: 35%;
}
.profile__name small {
  display: inline-block;
  line-height: 1;
  font-weight: normal;
  color: var(--bs-dark);
}
.profile__name:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.tpa__info {
  position: relative;
  z-index: 1;
  padding: 1rem;
  border-radius: 8px;
  box-shadow:
    8px 8px 8px rgba(199, 208, 213, 0.5),
    -8px -8px 16px #ffffff;
  background: linear-gradient(135deg, #eff3fb, #f0f6fa);
  height: 100%;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tpa__info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0.25;
  z-index: -1;
  background: url(../images/card-left.png) no-repeat left top;
  background-size: 35%;
}
.tpa__info::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0.25;
  z-index: -1;
  background: url(../images/card-right.png) no-repeat right bottom;
  background-size: 35%;
}
.tpa__name {
  font-size: 18px;
  font-weight: 600;
  text-align: start;
  color: color-mix(in srgb, var(--secondary-color), black 50%);
}
.tpa__logo img {
  width: 72px;
}
.tpa__info:hover {
  transform: scale(1.1);
  transition: 0.3s ease-in-out;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.blink {
  -webkit-animation: blink 1s infinite;
  -moz-animation: blink 1s infinite;
  -o-animation: blink 1s infinite;
  animation: blink 1s infinite;
}
@-webkit-keyframes blink {
  0%,
  49% {
    color: var(--primary-color);
    background-color: #fff;
  }
  50%,
  100% {
    color: #fff !important;
    background-color: var(--accent-color);
  }
}
.gallery-thumbnail {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  grid-gap: 20px;
}
.gallery-thumbnail :is(img, video) {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center 35%;
  transition: all 0.5s ease;
  border-radius: 0.5rem;
}
@media only screen and (max-width: 1024px) {
  .menu__bar .navbar {
    position: fixed;
    z-index: 1111;
    top: 0;
    right: 0;
    background: none;
  }
  .menu__bar .navbar .navbar-toggler {
    background: var(--secondary-color);
  }
  .objective::before,
  .objective::after {
    width: 100%;
    height: 50%;
    left: 0;
    transform: translateZ(1px) skewX(0);
  }
  .objective::after {
    top: revert;
    bottom: 0;
  }
  .usp__content:not(.last):before {
    content: none;
  }
  .usp__content:not(.last)::after {
    content: none;
  }
  .main-row .dropend > .dropdown-menu {
    left: 0;
    right: unset;
  }
  .colorModeSwitch {
    position: static;
    text-align: center;
    padding-bottom: 0.5rem;
  }
  .team__data {
    --gradient-dir: bottom;
  }
}
.csi-off {
  display: none;
  opacity: 0;
  pointer-events: none;
}

body.csi-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* NOTIFICATION */
.csi-notif {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 999999;
  border-left: 4px solid var(--primary-color);
  animation: slideIn 0.5s;
}

.csi-live {
  background: var(--primary-color);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
}

.csi-notif p {
  margin: 0;
  font-size: 12px;
  color: var(--dark);
}

/* OVERLAY */
.csi-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
  overflow-y: auto;
}

/* POPUP MODAL */
.csi-modal {
  background: #fff;
  width: 95%;
  max-width: 520px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin: 20px;
}

.csi-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 22px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  line-height: 1;
}

.csi-close:hover {
  background: var(--primary-color);
  color: #fff;
  transform: rotate(90deg);
}

.csi-head {
  text-align: center;
  margin-bottom: 30px;
}

.csi-head img {
  height: 60px;
  margin-bottom: 15px;
}

.csi-head h2 {
  margin: 0;
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 700;
}

.csi-head p {
  margin: 8px 0 0;
  color: var(--gray);
  font-size: 14px;
}

.csi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 18px;
}

.csi-field {
  display: flex;
  flex-direction: column;
}

.csi-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #4a5568;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.csi-field input,
.csi-field select {
  width: 100%;
  height: 48px;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  background: var(--bg);
  outline: none;
  transition: all 0.2s;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  line-height: normal;
}

.csi-field input:focus,
.csi-field select:focus {
  border-color: var(--primary-color);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 64, 121, 0.1);
}

.csi-submit {
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.3s;
}

.csi-submit:hover {
  transform: translateY(-3px);
}

/* PROFESSIONAL CHAT WIDGET */
.csi-chat {
  position: fixed;
  bottom: 85px;
  right: 20px;
  width: 380px;
  background: #fff;
  border-radius: 20px;
  z-index: 111111;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}

.csi-chat.csi-minimized {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.csi-chat.csi-minimized .csi-info,
.csi-chat.csi-minimized .csi-close-chat,
.csi-chat.csi-minimized .csi-messages,
.csi-chat.csi-minimized .csi-chat-footer {
  display: none;
}

.csi-chat.csi-minimized .csi-chat-header {
  padding: 0;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.csi-chat.csi-minimized .csi-agent {
  justify-content: center;
}

.csi-chat-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 18px 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 21px;
  cursor: pointer;
  position: relative;
}

.csi-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}

.csi-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.csi-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.csi-online {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #10b981;
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.csi-info {
  flex: 1;
}

.csi-info strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.csi-info span {
  font-size: 11px;
  opacity: 0.9;
}

.csi-close-chat {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
  transition: 0.2s;
  border-radius: 50%;
}

.csi-close-chat:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.csi-messages {
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  background: #e2f4fb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.csi-msg {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  max-width: 80%;
  line-height: 1.5;
  animation: fadeUp 0.3s;
}

.csi-bot {
  background: #fff;
  border: 1px solid #eee;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.csi-user {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: #fff;
  align-self: flex-end;
}

.csi-option {
  display: block;
  width: 100%;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 8px;
  cursor: pointer;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s;
}

.csi-option:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(4px);
}

.csi-chat-footer {
  padding: 16px;
  background: #035f3b;

  display: flex;
  gap: 10px;
  align-items: center;
}

.csi-chat-footer input {
  flex: 1;
  border: 2px solid #edf2f7;
  padding: 12px 16px;
  background: #f8fafc;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.csi-chat-footer input:focus {
  border-color: var(--primary-color);
  background: #fff;
}

.csi-chat-footer button {
  width: 44px;
  height: 44px;
  /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
  background: #fff;
  border: none;
  border-radius: 50%;
  color: #015b30;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(255, 64, 121, 0.3);
}

.csi-chat-footer button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgb(3 95 63 / 48%);
}

/* ANIMATIONS */
@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeUp {
  from {
    transform: translateY(15px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .csi-notif {
    display: none;
  }

  .csi-modal,
  .csi-quiz {
    padding: 30px 25px;
  }

  .csi-grid {
    grid-template-columns: 1fr;
  }

  .csi-chat {
    width: calc(100% - 40px) !important;
    right: 10px !important;
    z-index: 6;
  }

  .csi-chat.csi-minimized {
    width: 60px !important;
    height: 60px !important;
    right: 15px !important;
  }
  .menu__bar.sticky-active .navbar-brand .navbar-logo {
    display: none !important;
  }
  .wa-chat {
    z-index: 1;
  }
}

label.error {
  color: #f00;
}
