.elementor-kit-6{--e-global-color-primary:#0F6058;--e-global-color-secondary:#4B5563;--e-global-color-text:#7A7A7A;--e-global-color-accent:#266F67;--e-global-color-9b7872c:#F3F4F6;--e-global-typography-primary-font-family:"Tenor Sans";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Enable smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
  width: 15px;
  border-radius: 10px; /* Round the scrollbar edges */
}

::-webkit-scrollbar-track {
  background: rgb(15,96,8);
  border-radius: 15px; /* Round the track edges */
}

::-webkit-scrollbar-thumb {
  background: #0f6058;
  border-radius: 10px; /* Round the thumb edges */
}

::-webkit-scrollbar-thumb:hover {
  background: #0f6058;
}

/* For Firefox */
* {
  scrollbar-width: medium;
  scrollbar-color: #266f67 rgb(241, 245, 249);
}

/* Global CSS class for the animation */
.container-animation {
    animation-name: sgAnimUpDown;
    -webkit-animation-name: sgAnimUpDown;
    animation-iteration-count: infinite;
    animation-duration: 3s;
    -webkit-animation-duration: 3s;
}

/* Keyframes for the animation */
@keyframes sgAnimUpDown {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}/* End custom CSS */