/* Abstracts */
/* Colors */
/* Typography */
/* Layout */
/* Base */
*, *::before, *::after {
  box-sizing: border-box;
}

*:not(dialog) {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

:focus-visible {
  outline-offset: 3px;
  outline-color: #eb7521;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.4;
  color: #1b1b1b;
}

.h1,
h1 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.h2,
h2 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}

.h3,
h3 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

.h4,
h4 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
}

.h5,
h5 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
}

.h6,
h6 {
  margin-bottom: 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #23be99;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
a:hover {
  color: rgb(27.0666666667, 146.9333333333, 118.32);
}

button,
.btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 24px;
  border: 0;
  background-color: #23be99;
  transition: 0.3s ease-in-out;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
button:hover,
.btn:hover {
  background-color: rgb(27.0666666667, 146.9333333333, 118.32);
  color: #fff;
}
button.btn-primary,
.btn.btn-primary {
  background-color: #105847;
}
button.btn-primary:hover,
.btn.btn-primary:hover {
  background-color: rgb(8.1538461538, 44.8461538462, 36.1826923077);
}
button.btn-secondary,
.btn.btn-secondary {
  background-color: #eb7521;
}
button.btn-secondary:hover,
.btn.btn-secondary:hover {
  background-color: rgb(199.0661157025, 93.2561983471, 17.9338842975);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, "1fr");
}

.grid-cols-2 {
  grid-template-columns: repeat(2, "1fr");
}

.grid-cols-3 {
  grid-template-columns: repeat(3, "1fr");
}

.grid-cols-4 {
  grid-template-columns: repeat(4, "1fr");
}

.grid-cols-5 {
  grid-template-columns: repeat(5, "1fr");
}

.grid-cols-6 {
  grid-template-columns: repeat(6, "1fr");
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.gap-6 {
  gap: 6rem;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.page-header {
  padding-top: 24px;
}

/* Components */
#main-header {
  position: relative;
  padding: 16px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
  z-index: 99;
}
#main-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
#main-header .header-branding {
  width: 25%;
}
@media (max-width: 767px) {
  #main-header .header-branding {
    width: 50%;
  }
}
#main-header .custom-logo {
  width: 100%;
  max-width: 72px;
  height: auto;
}
#main-header .header-nav {
  display: flex;
  justify-content: center;
  width: 50%;
}
@media (max-width: 767px) {
  #main-header .header-nav {
    display: none;
  }
}
#main-header .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#main-header .menu .sub-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  width: max-content;
  position: absolute;
  margin: 0;
  padding: 24px;
  border: 1px solid #eee;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
  list-style-type: none;
}
#main-header .menu .menu-item-has-children:hover > .sub-menu {
  display: flex;
}
#main-header .mobile-nav {
  position: absolute;
  left: 0;
  top: calc(100% + 1px);
  width: 100%;
  border-bottom: 1px solid #eee;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  transform: translateX(-100%);
  opacity: 0;
}
#main-header .mobile-nav.active {
  visibility: visible;
  transform: translateX(0);
  opacity: 1;
}
#main-header .mobile-nav .menu {
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 8px;
}
#main-header .mobile-nav .menu .sub-menu {
  display: flex;
  position: relative;
  width: 100%;
  margin-top: 8px;
  border: 0;
  box-shadow: unset;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.025);
}
#main-header .header-extras {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  width: 25%;
}
@media (max-width: 767px) {
  #main-header .header-extras {
    width: 50%;
  }
}
#main-header .nav-toggle {
  display: none;
}
@media (max-width: 767px) {
  #main-header .nav-toggle {
    display: flex;
  }
}

#footer {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0;
  background-color: rgb(8.1538461538, 44.8461538462, 36.1826923077);
  color: #fff;
}

#prefooter .container {
  display: flex;
  gap: 16px;
}
#prefooter .custom-logo {
  max-width: 80px;
  height: auto;
}
#prefooter .menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#prefooter .menu a {
  color: #fff;
  opacity: 0.7;
}
#prefooter .menu a:hover {
  opacity: 1;
}
@media (max-width: 991px) {
  #prefooter .container {
    flex-wrap: wrap;
    gap: 24px 0;
  }
  #prefooter .col-2 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  #prefooter .col-2 {
    width: 100%;
  }
}

#colophon .container {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 767px) {
  #colophon .container {
    flex-direction: column;
    align-items: flex-start;
  }
}
#colophon .menu {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#colophon .menu a {
  color: #fff;
  opacity: 0.7;
}
#colophon .menu a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  #colophon .menu {
    flex-direction: column;
  }
}

.archive-posts {
  padding: 32px 0;
}

.archive-grid {
  display: grid;
  grid-gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}

.archive-item {
  border: 1px solid #e0e0e0;
}
.archive-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
}
.archive-item .archive-item-content {
  padding: 16px;
}
.archive-item .archive-item-content h3 {
  margin-bottom: 8px;
}
.archive-item .archive-item-content a {
  color: #1b1b1b;
  transition: 0.2s ease-in-out;
}
.archive-item .archive-item-content a:hover {
  color: #105847;
}
.archive-item .archive-item-content p {
  margin: 0;
}

#error-404 {
  padding: 32px 0;
  text-align: center;
}

/* Section */
.mesker-module-section {
  padding: 16px 0;
}

/* Columns */
.mesker-module-columns {
  display: grid;
  gap: 32px;
}

.mesker-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

.mesker-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.mesker-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mesker-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.mesker-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.mesker-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

/* Image */
.mesker-module-image img {
  border: none;
  border-radius: 0;
  box-shadow: none;
  height: auto;
  max-width: 100%;
}

/*# sourceMappingURL=main.css.map */
