@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-Light.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-LightItalic.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-Regular.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-Italic.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-Medium.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-MediumItalic.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-SemiBold.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-SemiBoldItalic.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-Bold.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("/resources/fonts/Chakra_Petch/ChakraPetch-BoldItalic.woff2") format("woff2"), url("/resources/fonts/Chakra_Petch/ChakraPetch-BoldItalic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Chakra Petch", sans-serif;
}

main {
  background-color: aliceblue;
}

header {
  background-color: #fff;
}
header .logo {
  width: 240px;
  padding: 10px 0px;
}

section {
  padding: 50px 0px;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

h1, h2 {
  font-size: 2.1rem;
  margin-bottom: 10px;
}

p {
  font-size: 1.1rem;
  padding: 5px 0px;
  line-height: 1.4;
}

footer {
  background-color: #fff;
  padding: 35px 0px;
}

.hero-inner {
  padding: 20px 0px;
}
.hero-inner .button-row {
  display: flex;
  margin-top: auto;
  gap: 30px;
}
@media (max-width: 992px) {
  .hero-inner .button-row {
    margin-top: 20px;
    justify-content: center;
  }
}

.divider {
  height: 20px;
  width: 100%;
  background-color: #000;
  margin: 0;
}
.divider.sm {
  height: 2px;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(16px, 4vw, 40px);
  padding-right: clamp(16px, 4vw, 40px);
}
@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1100px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: clamp(-16px, -4vw, -32px);
  margin-right: clamp(-16px, -4vw, -32px);
  width: 100%;
}
@media (max-width: 992px) {
  .row {
    justify-content: center;
    margin: 0;
  }
}

.col {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  flex: 1 1 0;
}

.col-6 {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-3 {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .col-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  footer .m-item-1 {
    order: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  footer .m-item-2 {
    order: 2;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  footer .m-item-3 {
    order: 3;
  }
}

@media (max-width: 992px) {
  .mobile-align-left {
    align-items: start !important;
  }
}

.col-45p {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  flex: 0 0 45%;
  max-width: 45%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .col-45p {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.col-55p {
  padding-left: clamp(16px, 4vw, 32px);
  padding-right: clamp(16px, 4vw, 32px);
  flex: 0 0 55%;
  max-width: 55%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .col-55p {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.image-container {
  width: 100%;
}
.image-container .image {
  border-radius: 32px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .image-container .image {
    border-radius: 0px;
  }
}

.bg-white {
  background-color: #fff;
}

.bg-light {
  background-color: #e6e6e6;
}

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

.btn {
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 3px 3px -2px rgba(0, 0, 0, 0.12), 0px 1px 8px 0px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  min-width: 140px;
  width: -moz-fit-content;
  width: fit-content;
  justify-content: center;
  height: -moz-fit-content;
  height: fit-content;
}
.btn.btn-light {
  background-color: #ecad4d;
  color: #000;
}
.btn.btn-dark {
  color: #ecad4d;
  background-color: #000;
}
.btn:hover {
  box-shadow: 0px 4.5px 5px -2px rgba(0, 0, 0, 0.14), 0px 4.5px 7px 0.5px rgba(0, 0, 0, 0.12), 0px 2.5px 10px 1px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}

.text-orange {
  color: #ecad4d;
}

.border-left {
  border-left: 2px solid #000;
}
@media (max-width: 992px) {
  .border-left {
    border: none;
  }
}

.info-text {
  padding: 0 100px;
}

.lead-heading {
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-auto {
  margin-top: auto;
}

.me-2 {
  margin-right: 20px;
}

.space-between {
  justify-content: space-between;
}

.no-wrap {
  flex-wrap: nowrap !important;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.d-flex {
  display: flex;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list li {
  padding: 0;
  line-height: 1.4rem;
}
.footer-list li a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 992px) {
  .mmb-2 {
    margin-bottom: 20px;
  }
}

@media (max-width: 992px) {
  .pm-0 {
    padding: 0;
  }
}

@media (max-width: 992px) {
  .mm-0 {
    margin: 0;
  }
}

@media (max-width: 992px) {
  .pmt-0 {
    padding-top: 0;
  }
}

@media (max-width: 992px) {
  .mcol-reverse {
    flex-direction: column-reverse;
  }
}

@media (max-width: 992px) {
  .mmy-1 {
    margin: 10px 0px;
  }
}

.main-404 {
  display: flex;
  flex-direction: row;
  height: calc(100vh - 260px);
  background-color: #fff;
}
@media (max-width: 992px) {
  .main-404 {
    height: auto;
    padding: 20px 0px;
  }
}
.main-404 .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
@media (max-width: 992px) {
  .main-404 .inner {
    height: auto;
  }
}
.main-404 .inner h1 {
  font-size: 55px;
  font-weight: bold;
}
.main-404 .inner p {
  font-size: 20px;
}
.main-404 .inner .image-404 {
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=main.css.map */