@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-size: 10px;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html.is-locked {
  overflow-y: hidden;
}

:root {
  --container: 100%;
  --container-gutter: 1rem;
  --gutter: 1rem;
  --container-fluid: 100%;
  --heading-1: 2.2rem;
  --heading-2: 2.2rem;
  --heading-3: 3.0rem;
  --heading-4: 1.8rem;
  --heading-5: 1.4rem;
  --heading-6: 1.1rem;
  --font-size-body: 1.4rem;
  --bg-primary: white;
  --bg-second: #353437;
  --bg-1: #00693f;
  --bg-2: #17a349;
  --bg-3: #333;
  --bg-4: cornsilk;
  --bg-5: #00693f;
  --bg-6: #83c240;
  --bg-7: rgba(189, 165, 136, .1);
  --bg-10: #cccccc;
  --bg-11: #83c240;
  --color-primary: white;
  --color-base: black;
  --color-link: black;
  --color-hover: #17a349;
  --color-1: #00693f;
  --color-2: #473418;
  --color-3: #333;
  --color-4: cornsilk;
  --color-5: #00693f;
  --color-6: #83c240;
  --color-7: #a5adb3;
  --color-border: #bfbebe;
  --color-border-2: #1066a7;
  --font-heading-family: "Roboto", sans-serif;
  --font-body-family: "Roboto", sans-serif;
}

@media screen and (min-width: 835px) {
  :root {
    --container: 830px;
    --gutter: .8rem;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --container: 1100px;
    --heading-1: 2.8rem;
    --heading-2: 2.4rem;
    --heading-3: 3.0rem;
    --heading-4: 2.2rem;
    --heading-5: 1.4rem;
    --heading-6: 1.1rem;
    --container-gutter: 1rem;
  }
}
@media screen and (min-width: 1201px) {
  :root {
    --container: 1300px;
  }
}
/*------------------------------------*/
/* CHANG-DEFAULT */
/*------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  font-size: var(--font-size-body);
  font-family: var(--font-body-family);
  background: var(--bg-primary);
  color: var(--color-base);
  line-height: 1.4;
  font-weight: 400;
  min-height: 100vh;
}

img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-link);
}
a:hover {
  color: var(--color-hover);
}

input:focus {
  outline: none;
  border: none;
}

input {
  border: 0;
}

label {
  font-weight: bold;
  display: block;
}

.circle {
  border-radius: 100%;
}

/*------------------------------------*/
/* #CONTAINER */
/*------------------------------------*/
.ctnr {
  padding: 0 var(--container-gutter);
  margin: 0 auto;
  max-width: var(--container);
}

.ctnr-fluid {
  padding: 0 var(--container-gutter);
  margin: 0 auto;
  max-width: var(--container-fluid);
}

/*------------------------------------*/
/* #FONT */
/*------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.healine {
  margin: 0;
  word-break: break-word;
  line-height: 1.3;
  font-weight: 700;
  font-family: var(--font-heading-family);
}

.h1,
h1 {
  font-size: var(--heading-1);
}

.h2,
h2 {
  font-size: var(--heading-2);
}

.h3,
h3 {
  font-size: var(--heading-3);
}

.h4,
h4 {
  font-size: var(--heading-4);
}

.h5,
h5 {
  font-size: var(--heading-5);
}

.h6,
h6 {
  font-size: var(--heading-6);
}

.tt-up {
  text-transform: uppercase;
}

.tt-cap {
  text-transform: capitalize;
}

.td-none {
  text-decoration: none;
}

.td-underline {
  text-decoration: underline;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

/*------------------------------------*/
/* #BUTTON */
/*------------------------------------*/
button:focus, button:focus-visible {
  outline: none;
}

.btn {
  cursor: pointer;
  border: 0;
  padding: 10px 20px;
  font-family: var(--font-body-family);
  font-weight: var(--font-heading-weight);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  word-break: break-all;
  font-size: var(--heading-6);
  background-color: transparent;
}
.btn-primary {
  color: var(--color-primary);
  background: var(--bg-second);
  border: 2px solid var(--bg-primary);
}
.btn-second {
  color: var(--color-base);
  background: transparent;
  border: 2px solid var(--bg-second);
}

/*------------------------------------*/
/* #HEIGHT */
/*------------------------------------*/
.h-100 {
  height: 100%;
}

.h-100v {
  height: 100vh;
}

.mah-100 {
  max-height: 100%;
}

.mah-100v {
  max-height: 100vh;
}

.h-500p {
  height: 500px;
}

.h-auto {
  height: auto;
}

/*------------------------------------*/
/* #WIDTH */
/*------------------------------------*/
.w-100 {
  width: 100%;
}

.w-100v {
  width: 100vw;
}

.w-auto {
  width: auto;
}

.maw-100 {
  max-width: 100%;
}

.miw-100 {
  min-width: 100%;
}

/*------------------------------------*/
/* #DISPLAY */
/*------------------------------------*/
.d-block {
  display: block;
}

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

.d-inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none;
}

/*------------------------------------*/
/* #DISPLAY-FLEX */
/*------------------------------------*/
.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.fg-1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.fs-0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.fw-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.fw-nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.js-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.js-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.js-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.js-right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.js-left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.ai-flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ai-flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.ai-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ai-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

/*------------------------------------*/
/* #TEXT-ALIGN */
/*------------------------------------*/
.ta-left {
  text-align: left;
}

.ta-right {
  text-align: right;
}

.ta-center {
  text-align: center;
}

/*------------------------------------*/
/* #POSITION */
/*------------------------------------*/
.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.p-fixed {
  position: fixed;
}

.p-sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.bottom-0 {
  bottom: 0;
}

.bottom-16 {
  bottom: 16px;
}

.middle-y {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.middle-x {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*------------------------------------*/
/* #BORDER */
/*------------------------------------*/
.border-0 {
  border: 0;
}

.border-1 {
  border: 1px;
}

.border-2 {
  border: 2px;
}

.border-3 {
  border: 3px;
}

/*------------------------------------*/
/* #OVERLAY*/
/*------------------------------------*/
.overlay::after,
.overlay-white::after {
  position: fixed;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 10;
}

.overlay::after {
  background-color: black;
  opacity: 0.3;
}

.overlay:not(.is-open) {
  display: none;
}

.hidden {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .hidden-sm {
    display: none !important;
  }
}
@media screen and (min-width: 641px) {
  .hidden-sm-min {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (min-width: 835px) {
  .hidden-md-min {
    display: none !important;
  }
}
@media screen and (max-width: 992px) {
  .hidden-lg {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .hidden-lg-min {
    display: none !important;
  }
}
@media screen and (max-width: 1200px) {
  .hidden-xl {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .hidden-xl-min {
    display: none !important;
  }
}
@media screen and (max-width: 1500px) {
  .hidden-xxl {
    display: none !important;
  }
}
@media screen and (min-width: 1501px) {
  .hidden-xxl-min {
    display: none !important;
  }
}

/*------------------------------------*/
/* #ROW-COLUMN */
/*------------------------------------*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px calc(-1 * var(--gutter));
}

.clm {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding: 0px var(--gutter);
}

[style*="--w-xs"] {
  width: calc(8.3333333333% * var(--w-xs));
  max-width: calc(8.3333333333% * var(--w-xs));
}

@media screen and (min-width: 641px) {
  [style*="--w-sm"] {
    width: calc(8.3333333333% * var(--w-sm));
    max-width: calc(8.3333333333% * var(--w-sm));
  }
}
@media screen and (min-width: 835px) {
  [style*="--w-md"] {
    width: calc(8.3333333333% * var(--w-md));
    max-width: calc(8.3333333333% * var(--w-md));
  }
}
@media screen and (min-width: 992px) {
  [style*="--w-lg"] {
    width: calc(8.3333333333% * var(--w-lg));
    max-width: calc(8.3333333333% * var(--w-lg));
  }
}
@media screen and (min-width: 1201px) {
  [style*="--w-xl"] {
    width: calc(8.3333333333% * var(--w-xl));
    max-width: calc(8.3333333333% * var(--w-xl));
  }
  .col-xl-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media screen and (min-width: 1501px) {
  [style*="--w-xxl"] {
    width: calc(8.3333333333% * var(--w-xxl));
    max-width: calc(8.3333333333% * var(--w-xxl));
  }
  .col-xl-2dot4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}
/*------------------------------------*/
/* #GRID */
/*------------------------------------*/
[style*="--gap-xs"] {
  gap: var(--gap-xs);
}

[style*="--gc-xs"] {
  grid-column: var(--gc-xs);
}

[style*="--gr-xs"] {
  grid-row: var(--gr-xs);
}

[style*="--gtc-xs"] {
  grid-template-columns: repeat(var(--gtc-xs), 1fr);
}

[style*="--gtr-xs"] {
  grid-template-rows: repeat(var(--gtr-xs), 1fr);
}

@media screen and (min-width: 641px) {
  [style*="--gc-sm"] {
    grid-column: var(--gc-sm);
  }
  [style*="--gr-sm"] {
    grid-row: var(--gr-sm);
  }
  [style*="--gtc-sm"] {
    grid-template-columns: repeat(var(--gtc-sm), 1fr);
  }
  [style*="--gtr-sm"] {
    grid-template-rows: repeat(var(--gtr-sm), 1fr);
  }
}
@media screen and (min-width: 835px) {
  [style*="--gap-md"] {
    gap: var(--gap-md);
  }
  [style*="--gc-md"] {
    grid-column: var(--gc-md);
  }
  [style*="--gr-md"] {
    grid-row: var(--gr-md);
  }
  [style*="--gtc-md"] {
    grid-template-columns: repeat(var(--gtc-md), 1fr);
  }
  [style*="--gtr-md"] {
    grid-template-rows: repeat(var(--gtr-md), 1fr);
  }
}
@media screen and (min-width: 992px) {
  [style*="--gap-lg"] {
    gap: var(--gap-lg);
  }
  [style*="--gc-lg"] {
    grid-column: var(--gc-lg);
  }
  [style*="--gr-lg"] {
    grid-row: var(--gr-lg);
  }
  [style*="--gtc-lg"] {
    grid-template-columns: repeat(var(--gtc-lg), 1fr);
  }
  [style*="--gtr-lg"] {
    grid-template-rows: repeat(var(--gtr-lg), 1fr);
  }
}
@media screen and (min-width: 1201px) {
  [style*="--gap-xl"] {
    gap: var(--gap-xl);
  }
  [style*="--gc-xl"] {
    grid-column: var(--gc-xl);
  }
  [style*="--gr-xl"] {
    grid-row: var(--gr-xl);
  }
  [style*="--gtc-xl"] {
    grid-template-columns: repeat(var(--gtc-xl), 1fr);
  }
  [style*="--gtr-xl"] {
    grid-template-rows: repeat(var(--gtr-xl), 1fr);
  }
}
@media (min-width: 1400px) {
  [style*="--gc-xxl"] {
    grid-column: var(--gc-xxl);
  }
  [style*="--gr-xxl"] {
    grid-row: var(--gr-xxl);
  }
  [style*="--gtc-xxl"] {
    grid-template-columns: repeat(var(--gtc-xxl), 1fr);
  }
  [style*="--gtr-xxl"] {
    grid-template-rows: repeat(var(--gtr-xxl), 1fr);
  }
}
/*# sourceMappingURL=maps/utilities.css.map */
