.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.375rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin: calc(-0.5 * var(--bs-modal-header-padding-y)) calc(-0.5 * var(--bs-modal-header-padding-x)) calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 2em;
}
.glide__arrow--right {
  right: 2em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}
.glide__bullet {
  background-color: rgba(255, 255, 255, 0.5);
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}
.glide__bullet--active {
  background-color: white;
}
.glide--swipeable {
  cursor: grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

.glide__bullet {
  height: 8px;
  width: 8px;
  border-radius: 20px;
  --tw-bg-opacity: 1;
  background-color: rgb(218 218 218 / var(--tw-bg-opacity));
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.glide__bullet--active {
  --tw-bg-opacity: 1;
  background-color: rgb(1 85 36 / var(--tw-bg-opacity));
}
.glide__arrow {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}

.btn {
  display: inline-flex;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border-width: 1px;
  border-color: transparent;
  padding-left: 16px;
  padding-right: 16px;
  font-weight: 700;
  text-align: center;
  outline: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-sm {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 14px;
  height: unset;
}
.btn svg {
  height: 16px;
}
.btn-primary {
  color: white;
  background-color: #015524 !important;
  border-color: #015524;
}
.btn-primary svg {
  fill: white;
}
.btn-secondary {
  color: black;
  background-color: #F4D03F !important;
  border-color: #f4d03f;
}
.btn-secondary svg {
  fill: black;
}
.btn-light {
  color: #015524;
  background-color: #fff !important;
  border-color: white;
}
.btn-light svg {
  fill: #015524;
}
.btn-outline-primary {
  background-color: transparent;
  border-color: #015524;
  color: #015524;
}
.btn-outline-primary svg {
  fill: #015524;
}
.btn-outline-secondary {
  background-color: transparent;
  border-color: #F4D03F;
  color: #F4D03F;
}
.btn-outline-secondary svg {
  fill: #F4D03F;
}
.btn-outline-light {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline-light svg {
  fill: #fff;
}

.btn-solid-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #594cda;
  border-radius: 32px;
  background-color: #594cda;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-solid-reg:hover {
  border: 1px solid #594cda;
  background-color: transparent;
  color: #594cda; /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.625rem 2.75rem 1.625rem 2.75rem;
  border: 1px solid #594cda;
  border-radius: 32px;
  background-color: #594cda;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
  margin-right: 0.25rem;
  margin-bottom: 1.25rem;
  margin-left: 0.25rem;
}

.btn-solid-lg:hover {
  border: 1px solid #594cda;
  background-color: transparent;
  color: #594cda; /* needs to stay here because of the color property of a tag */
  text-decoration: none;
}

.btn-solid-lg .fab {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  line-height: 0;
  vertical-align: top;
}

.btn-solid-lg .fab.fa-google-play {
  font-size: 1rem;
}

.btn-solid-lg.secondary {
  border: 1px solid #eb427e;
  background-color: #eb427e;
}

.btn-solid-lg.secondary:hover {
  border: 1px solid #eb427e;
  background: transparent;
  color: #eb427e; /* needs to stay here because of the color property of a tag */
}

.btn-outline-reg {
  display: inline-block;
  padding: 1.375rem 2.25rem 1.375rem 2.25rem;
  border: 1px solid #ffffff;
  border-radius: 32px;
  background-color: transparent;
  color: #ffffff;
  font-size: 20px;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-reg:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(1 203 255 / var(--tw-bg-opacity));
  color: #ffffff;
  border: 1px solid #01CBFF;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.625rem 2.75rem 1.625rem 2.75rem;
  border: 1px solid #252c38;
  border-radius: 32px;
  background-color: transparent;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-lg:hover {
  background-color: #252c38;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.5rem 1rem 1.5rem;
  border: 1px solid #252c38;
  border-radius: 32px;
  background-color: transparent;
  color: #252c38;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-outline-sm:hover {
  background-color: #252c38;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  .btn-solid-lg {
    margin-right: 0.5rem;
    margin-left: 0;
  }
}
.form-group {
  margin-bottom: 16px;
}
.form-input, .form-textarea, .form-select {
  width: 100% !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(137 138 141 / var(--tw-border-opacity)) !important;
  padding-left: 12px !important;
  padding-right: 12px !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  --tw-text-opacity: 1 !important;
  color: rgb(0 0 0 / var(--tw-text-opacity)) !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important;
  transition-duration: 150ms !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  --tw-border-opacity: 1 !important;
  border-color: rgb(1 85 36 / var(--tw-border-opacity)) !important;
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgb(1 85 36 / var(--tw-ring-opacity)) !important;
}

.navbar {
  position: relative;
  background-color: #f1f9fc;
  padding: 0.5rem 1rem;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  line-height: 0.75rem;
  transition: all 0.2s ease;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.navbar-toggler-icon {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.navbar-collapse {
  flex-basis: 100%;
}

.offcanvas-collapse {
  position: fixed;
  top: 48px;
  bottom: 0;
  left: 100%;
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  overflow-y: auto;
  visibility: hidden;
  background-color: #f1f9fc;
  transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.offcanvas-collapse.open {
  visibility: visible;
  transform: translateX(-100%);
}

.nav-link {
  display: block;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  color: #334147;
  text-decoration: none;
  line-height: 0.875rem;
  transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  font-weight: 700;
  color: #01CBFF;
  text-decoration: none;
}

/******************************/
/*     Back To Top Button     */
/******************************/
a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 30px;
  background: #343e48 url("../images/up-arrow.png") no-repeat center 47%;
  background-size: 18px 18px;
  text-indent: -9999px;
}

a:hover.back-to-top {
  background-color: #000000;
}

/* Min-width 1024px */
@media (min-width: 1024px) {
  .btn-solid-lg {
    margin-right: 0.5rem;
    margin-left: 0;
  }
  /* Navigation */
  .navbar {
    background-color: transparent;
    flex-wrap: nowrap;
    justify-content: start;
    padding-left: 0;
    padding-right: 0;
    padding-top: 1.75rem;
  }
  .navbar-collapse {
    flex-basis: auto;
  }
  .navbar.top-nav-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #f1f9fc;
    --tw-drop-shadow: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  }
  .navbar.top-nav-collapse .btn-outline-reg {
    border: 1px solid #334147;
    color: #334147;
  }
  .navbar.top-nav-collapse .btn-outline-reg:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(43 43 43 / var(--tw-bg-opacity));
    color: #ffffff;
    border: 1px solid #2B2B2B;
    text-decoration: none;
  }
  .navbar.top-nav-collapse .btn-txt {
    color: #334147;
  }
  .offcanvas-collapse {
    position: static;
    top: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    overflow-y: visible;
    visibility: visible;
  }
  .offcanvas-collapse.open {
    transform: none;
  }
  .nav-link {
    padding-right: 1.125rem;
    padding-left: 1.125rem;
  }
}
/* end of min-width 1024px */
/* Min-width 1280px */
/* end of min-width 1200px */
.accordion-item:not(:first-of-type) {
  border-top-width: 0px;
}
.accordion-toggle[aria-expanded=true] {
  background-color: inherit;
  transition-duration: 0.75s;
  transition-property: background-color, border-color;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion-toggle[aria-expanded=true] .icon svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.accordion-toggle[aria-expanded=false] {
  transition-duration: 0.75s;
  transition-property: background-color, border-color;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion-toggle .icon svg {
  height: 16px;
  fill: #000000;
  transition-duration: 0.5s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion-content {
  transition-duration: 0.5s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.accordion-content[aria-hidden=true] {
  height: 0;
  opacity: 0;
  transform: translate3d(0, -0.5rem, 0);
  visibility: hidden;
}
.accordion-content[aria-hidden=false] {
  height: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  visibility: visible;
}

.tab-link[aria-selected=true] {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(0 0 0 / var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgb(218 218 218 / var(--tw-bg-opacity));
}

.modal.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.lazyload,
.lazyloading {
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.25s;
}

.searchbox {
  visibility: hidden;
  display: flex;
  opacity: 0;
  transform: translate3d(0, -100%, 0);
  transition-duration: 0.25s;
  transition-property: transform, opacity;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.searchbox-open .searchbox {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.searchbox-form {
  flex: 1 0 auto;
}
.searchbox-input {
  padding-right: 50px !important;
}
.searchbox-button__submit {
  width: 42px;
  height: 42px;
}

.hamburger {
  transform: translate3d(0, -100%, 0);
}
.hamburger.show {
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.intro {
  position: relative;
  padding: 110px 0 80px 0;
}

@media (max-width: 575px) {
  .intro {
    padding-top: 70px;
    height: auto;
    padding-bottom: 40px;
  }
}

.intro-img {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .intro-img {
    margin-top: 32px;
    display: block;
  }
}

.theysay {
  padding-right: 25px;
}
.theysay--heading {
  font-size: 24px;
  color: #2B363B;
  margin-bottom: 30px;
}
.theysay--desc {
  font-size: 18px;
}
.theysay--desc:after {
  display: block;
  width: 240px;
  height: 1px;
  content: "";
  margin-top: 30px;
  --tw-bg-opacity: 1;
  background-color: rgb(1 203 255 / var(--tw-bg-opacity));
}

.customer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.customer--photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  will-change: transform;
  margin-right: 15px;
}
.customer--photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.customer--quote {
  font-size: 30px;
  font-weight: 900;
}
.customer--name {
  font-size: 20px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(51 65 71 / var(--tw-text-opacity));
}
.customer--job {
  font-size: 20px;
  color: #45575F;
}

.subscribes--box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  border-radius: 40px;
}

@media (max-width: 575px) {
  .subscribes--box {
    border-radius: 20px;
  }
}

@media (min-width: 576px) and (max-width: 1023px) {
  .subscribes--box {
    border-radius: 30px;
  }
}

.subscribes--box {
  border: 1px solid #2b2B2B;
  overflow: hidden;
  will-change: transform;
  background-color: #ffffff;
}

@media (max-width: 575px) {
  .subscribes--box {
    min-height: 75px;
    padding-bottom: 15px;
  }
}

@media (min-width: 576px) and (max-width: 1023px) {
  .subscribes--box {
    min-height: 100px;
  }
}
.subscribes--box form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .subscribes--box form {
    flex-direction: column;
  }
}

.footer-nav {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  margin-top: 25px;
  margin-bottom: 25px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  .footer-nav {
    margin-top: 35px;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    margin-top: 45px;
    margin-bottom: 0px;
  }
}
.footer-nav li {
  margin-bottom: 15px;
}
.footer-nav li:last-child {
  margin-bottom: 0;
}
.footer-nav li a {
  text-decoration: none;
}
.footer-nav li a:hover {
  --tw-text-opacity: 1;
  color: rgb(1 203 255 / var(--tw-text-opacity));
}

.social-wrapper li {
  display: inline-block;
  padding-right: 5px;
}

@media (min-width: 1024px) {
  .social-wrapper li {
    padding-right: 15px;
  }
}
.social-wrapper li:last-child {
  padding-right: 0;
}
.social-wrapper .social-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-top: 35px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.16);
}

.copy-text {
  margin-top: 40px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  .copy-text {
    margin-top: 65px;
  }
}

@media (min-width: 1024px) {
  .copy-text {
    margin-top: 85px;
  }
}

.copy-text {
  border-top: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  padding-top: 40px;
}

.post-detail :is(:where(h1, h2, h3, h4, h5, h6, th):not(:where([class~="not-prose"] *))) {
  margin-bottom: 8px;
}

.post-detail :is(:where(p):not(:where([class~="not-prose"] *))) {
  margin-bottom: 16px;
}

.post-detail :is(:where(a):not(:where([class~="not-prose"] *))) {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(1 85 36 / var(--tw-text-opacity));
}

.post-detail :is(:where(ol):not(:where([class~="not-prose"] *))) {
  margin-bottom: 16px;
  list-style-type: decimal;
  padding-left: 16px;
}

.post-detail :is(:where(ul):not(:where([class~="not-prose"] *))) {
  margin-bottom: 16px;
  list-style-type: disc;
  padding-left: 16px;
}
.post-detail p:last-child {
  margin-bottom: 0 !important;
}

.light-bg {
  --tw-bg-opacity: 1;
  background-color: rgb(244 248 251 / var(--tw-bg-opacity));
  padding: 35px 0 20px 0;
}

@media (min-width: 1024px) {
  .light-bg {
    padding-top: 75px;
    padding-bottom: 40px;
  }
}

.image-edge {
  position: relative;
}
.image-edge .container:before {
  display: table;
  content: "";
  box-sizing: border-box;
}
.image-edge .container:after {
  clear: both;
}
.image-edge .container > div {
  position: absolute;
}

@media all and (max-width: 990px) {
  .image-edge .container div[class*=w-] {
    position: relative;
    top: 0;
    transform: none;
    -webkit-transform: none;
  }
}
.v-align-transform {
  transform: translateY(-50%);
  top: 50%;
  z-index: 2;
}

footer {
  margin-top: -75px;
}

@media (max-width: 575px) {
  footer {
    margin-top: 0px;
  }
}

footer {
  --tw-bg-opacity: 1;
  background-color: rgb(43 43 43 / var(--tw-bg-opacity));
  background-image: url("../images/bg-footer.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center center;
  padding-top: 60px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  footer {
    padding-top: 80px;
  }
}

@media (min-width: 1024px) {
  footer {
    padding-top: 130px;
  }
}

footer {
  padding-bottom: 20px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  footer {
    padding-bottom: 30px;
  }
}

@media (min-width: 1024px) {
  footer {
    padding-bottom: 40px;
  }
}

.card {
  position: relative;
}
.card--property {
  position: relative;
}
.card--property .photo {
  position: relative;
  display: flex;
  border-top-right-radius: 150px;
  overflow: hidden;
  min-height: 500px;
}
.card--property .photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card--property .area {
  position: absolute;
  width: 270px;
  left: 5px;
  bottom: 5px;
  border-top-right-radius: 50px;
  overflow: hidden;
  font-size: 24px;
  font-weight: 500;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  padding-top: 8px;
  padding-bottom: 8px;
}
.card--property .upright {
  display: inline-block;
  margin: 0 10px;
}
.card--feature {
  display: block;
  background-color: transparent;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50px;
  overflow: hidden;
  will-change: transform;
  transition: all ease-in 0.3s;
}
@media (min-width: 576px) and (max-width: 1023px) {
  .card--feature {
    border-radius: 20px;
  }
}
.card--feature:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(43 43 43 / var(--tw-bg-opacity));
}
.card--feature:hover .feat-icon {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.card--feature:hover .card-title {
  color: white;
}
.card--feature:hover p {
  color: white;
}
.card--feature .card-body {
  padding: 1.5rem 1.75rem 1.5rem 1.75rem;
}
.card--feature .feat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem auto;
  background-color: transparent;
  border-radius: 30px;
}
@media (min-width: 576px) and (max-width: 1023px) {
  .card--feature .feat-icon {
    height: 70px;
    width: 70px;
  }
}
@media (max-width: 575px) {
  .card--feature .feat-icon {
    border-radius: 10px;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .card--feature .feat-icon {
    border-radius: 10px;
  }
}
.card--feature .card-title {
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.card--feature p {
  margin-bottom: 0;
  text-align: center;
}
.card--news .news-photo {
  display: flex;
  min-height: 490px;
  border-top-right-radius: 100px;
  overflow: hidden;
  will-change: transform;
}
@media (max-width: 575px) {
  .card--news .news-photo {
    margin-bottom: 5px;
    border-top-right-radius: 50px;
  }
}
.card--news .news-photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.card--news .news-title {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .card--news .news-title {
    margin-bottom: 15px;
  }
}
.card--news .news-desc {
  font-size: 18px;
}
@media (max-width: 575px) {
  .card--news .news-desc {
    margin-bottom: 10px;
  }
}
.card--news .news-btn {
  cursor: pointer;
  font-size: 18px;
  text-decoration: underline;
  --tw-text-opacity: 1;
  color: rgb(1 203 255 / var(--tw-text-opacity));
}
.intro {
  position: relative;
  padding: 110px 0 80px 0;
}
@media (max-width: 575px) {
  .intro {
    padding-top: 70px;
    height: auto;
    padding-bottom: 40px;
  }
}

.intro-img {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 575px) {
  .intro-img {
    margin-top: 32px;
    display: block;
  }
}

.theysay {
  padding-right: 25px;
}
.theysay--heading {
  font-size: 24px;
  color: #2B363B;
  margin-bottom: 30px;
}
.theysay--desc {
  font-size: 18px;
}
.theysay--desc:after {
  display: block;
  width: 240px;
  height: 1px;
  content: "";
  margin-top: 30px;
  --tw-bg-opacity: 1;
  background-color: rgb(1 203 255 / var(--tw-bg-opacity));
}

.customer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.customer--photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  will-change: transform;
  margin-right: 15px;
}
.customer--photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.customer--quote {
  font-size: 30px;
  font-weight: 900;
}
.customer--name {
  font-size: 20px;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(51 65 71 / var(--tw-text-opacity));
}
.customer--job {
  font-size: 20px;
  color: #45575F;
}

.subscribes--box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  border-radius: 40px;
}

@media (max-width: 575px) {
  .subscribes--box {
    border-radius: 20px;
  }
}

@media (min-width: 576px) and (max-width: 1023px) {
  .subscribes--box {
    border-radius: 30px;
  }
}

.subscribes--box {
  border: 1px solid #2b2B2B;
  overflow: hidden;
  will-change: transform;
  background-color: #ffffff;
}

@media (max-width: 575px) {
  .subscribes--box {
    min-height: 75px;
    padding-bottom: 15px;
  }
}

@media (min-width: 576px) and (max-width: 1023px) {
  .subscribes--box {
    min-height: 100px;
  }
}
.subscribes--box form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 575px) {
  .subscribes--box form {
    flex-direction: column;
  }
}

.footer-nav {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
  margin-top: 25px;
  margin-bottom: 25px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  .footer-nav {
    margin-top: 35px;
  }
}

@media (min-width: 1024px) {
  .footer-nav {
    margin-top: 45px;
    margin-bottom: 0px;
  }
}
.footer-nav li {
  margin-bottom: 15px;
}
.footer-nav li:last-child {
  margin-bottom: 0;
}
.footer-nav li a {
  text-decoration: none;
}
.footer-nav li a:hover {
  --tw-text-opacity: 1;
  color: rgb(1 203 255 / var(--tw-text-opacity));
}

.social-wrapper li {
  display: inline-block;
  padding-right: 5px;
}

@media (min-width: 1024px) {
  .social-wrapper li {
    padding-right: 15px;
  }
}
.social-wrapper li:last-child {
  padding-right: 0;
}
.social-wrapper .social-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-top: 35px;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.16);
}

.copy-text {
  margin-top: 40px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  .copy-text {
    margin-top: 65px;
  }
}

@media (min-width: 1024px) {
  .copy-text {
    margin-top: 85px;
  }
}

.copy-text {
  border-top: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  padding-top: 40px;
}

.customer-carousel .slick-slide {
  margin: 0 15px;
}

@media (max-width: 575px) {
  .customer-carousel .slick-slide {
    margin-left: 8px;
    margin-right: 8px;
  }
}

.slides-numbers {
  display: none;
  font-size: 24px;
  color: #334147;
  margin-right: 35px;
}

@media (max-width: 575px) {
  .slides-numbers {
    margin-right: 8px;
  }
}

@media (min-width: 576px) and (max-width: 1023px) {
  .slides-numbers {
    margin-right: 5px;
  }
}
.slides-numbers .active {
  color: #01CBFF;
  font-size: 50px;
  font-weight: 600;
  margin-right: -6px;
}
.slides-numbers .total {
  margin-left: -8px;
}

.arrow-wrap {
  display: flex;
  gap: 10px;
}
.arrow-wrap .btn {
  width: 60px;
  height: 60px;
  cursor: pointer;
  font-size: 26px;
  color: #01CBFF;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
  border: 1px solid #01CBFF;
  background-color: transparent;
}
.arrow-wrap .btn:hover {
  color: #FFFFFF;
  background-color: #01CBFF;
  border-color: #01CBFF;
}

.news-slider {
  margin-top: 32px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  .news-slider {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .news-slider {
    margin-top: 80px;
  }
}

.news-slider {
  right: 0;
}
.news-slider .slick-slide {
  margin: 0 20px;
}
.news-slider .slick-list {
  padding: 0 20% 0 0;
}

.progress {
  position: absolute;
  left: 15px;
  right: 145px;
}

@media (min-width: 1024px) {
  .progress {
    right: 27.5%;
  }
}

.progress {
  bottom: 27px;
  height: 2px;
  border-radius: 2px;
  overflow: hidden;
  background-color: #E1E7EA;
  background-image: linear-gradient(to right, #01CBFF, #01CBFF);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: background-size 0.4s ease-in-out;
  z-index: -1;
}

.property-slider .slick-slide {
  margin: 0 20px;
}

@media (min-width: 576px) and (max-width: 1023px) {
  .property-slider .slick-slide {
    margin: 0px;
  }
}

@media (max-width: 575px) {
  .property-slider .slick-slide {
    margin: 0px;
  }
}
.property-slider .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 3rem;
  height: 3rem;
  transform: translateY(-50%);
  padding: 0;
  overflow: hidden;
  font-size: 0;
  background-color: #01CBFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto;
  border-radius: 50%;
  cursor: pointer;
  outline: none;
  transition: 0.25s;
}
.property-slider .slick-arrow:hover, .property-slider .slick-arrow:focus {
  background-color: #2B2B2B;
}
.property-slider .slick-arrow:active {
  transform: translateY(-50%) scale(0.9);
}
.property-slider .slick-prev:before,
.property-slider .slick-next:before {
  display: none;
}
.property-slider .slick-prev {
  left: 0vw;
}
@media (max-width: 575px) {
  .property-slider .slick-prev {
    left: -12px;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .property-slider .slick-prev {
    left: -16px;
  }
}
.property-slider .slick-prev {
  background-image: url("../images/arrow-prev.png");
}
.property-slider .slick-next {
  right: 0vw;
}
@media (max-width: 575px) {
  .property-slider .slick-next {
    right: -12px;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {
  .property-slider .slick-next {
    right: -16px;
  }
}
.property-slider .slick-next {
  background-image: url("../images/arrow-next.png");
}

.stray {
  height: calc(100vh - 80px);
}
@media (min-width: 992px) {
  .stray {
    text-align: left;
  }
  .stray-dialog {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
  }
}
.stray-image img {
  margin-left: auto;
  margin-right: auto;
  height: 250px;
}
@media (min-width: 992px) {
  .stray-image img {
    height: 500px;
  }
  .stray-body p {
    margin-bottom: 64px;
    font-size: 60px;
  }
}
/*
! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
*/

html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

    html {
  font-size: 16px;
}

    body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.5;
        visibility: hidden;
        opacity: 0;
        transition: opacity .25s;
}

    h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
}

    h1 {
  font-size: 32px;
}

    @media (min-width: 1024px) {

  h1 {
    font-size: 36px;
  }
}

    h2 {
  font-size: 28px;
}

    @media (min-width: 1024px) {

  h2 {
    font-size: 32px;
  }
}

    h3 {
  font-size: 24px;
}

    @media (min-width: 1024px) {

  h3 {
    font-size: 28px;
  }
}

    h4 {
  font-size: 20px;
}

    @media (min-width: 1024px) {

  h4 {
    font-size: 24px;
  }
}

    h5 {
  font-size: 20px;
}

    h6 {
  font-size: 16px;
}

    label {
  margin-bottom: 4px;
  display: inline-block;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
}
@media (min-width: 540px) {

  .container {
    max-width: 540px;
  }
}
@media (min-width: 720px) {

  .container {
    max-width: 720px;
  }
}
@media (min-width: 960px) {

  .container {
    max-width: 960px;
  }
}
@media (min-width: 1166px) {

  .container {
    max-width: 1166px;
  }
}
.form-input,.form-textarea,.form-select,.form-multiselect {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::placeholder,.form-textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}
.form-input::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}
.form-input::-webkit-date-and-time-value {
  min-height: 1.5em;
}
.form-input::-webkit-datetime-edit,.form-input::-webkit-datetime-edit-year-field,.form-input::-webkit-datetime-edit-month-field,.form-input::-webkit-datetime-edit-day-field,.form-input::-webkit-datetime-edit-hour-field,.form-input::-webkit-datetime-edit-minute-field,.form-input::-webkit-datetime-edit-second-field,.form-input::-webkit-datetime-edit-millisecond-field,.form-input::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.left-0 {
  left: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.top-0 {
  top: 0px;
}
.right-0 {
  right: 0px;
}
.top-19 {
  top: 80px;
}
.left-4 {
  left: 16px;
}
.right-14 {
  right: 56px;
}
.-z-10 {
  z-index: -10;
}
.z-50 {
  z-index: 50;
}
.my-6 {
  margin-top: 24px;
  margin-bottom: 24px;
}
.my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-my-2 {
  margin-top: -8px;
  margin-bottom: -8px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 16px;
}
.ml-3 {
  margin-left: 12px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.mb-12 {
  margin-bottom: 48px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mb-16 {
  margin-bottom: 64px;
}
.mb-7 {
  margin-bottom: 28px;
}
.mb-9 {
  margin-bottom: 36px;
}
.mt-9 {
  margin-top: 36px;
}
.mr-5 {
  margin-right: 20px;
}
.mb-\[30px\] {
  margin-bottom: 30px;
}
.mr-1 {
  margin-right: 4px;
}
.mb-1 {
  margin-bottom: 4px;
}
.ml-auto {
  margin-left: auto;
}
.mr-2 {
  margin-right: 8px;
}
.mt-\[25px\] {
  margin-top: 25px;
}
.mr-4 {
  margin-right: 16px;
}
.mt-3 {
  margin-top: 12px;
}
.mr-auto {
  margin-right: auto;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.table-cell {
  display: table-cell;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-6 {
  height: 24px;
}
.h-full {
  height: 100%;
}
.h-\[1px\] {
  height: 1px;
}
.h-19 {
  height: 80px;
}
.h-4 {
  height: 16px;
}
.h-8 {
  height: 32px;
}
.w-full {
  width: 100%;
}
.w-\[90\%\] {
  width: 90%;
}
.w-1\/3 {
  width: 33.333333%;
}
.w-\[70px\] {
  width: 70px;
}
.w-5\/12 {
  width: 41.666667%;
}
.w-6\/12 {
  width: 50%;
}
.w-8 {
  width: 32px;
}
.flex-1 {
  flex: 1 1 0%;
}
.translate-x-0 {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.cursor-pointer {
  cursor: pointer;
}
.list-none {
  list-style-type: none;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-rows-1 {
  grid-template-rows: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.place-items-center {
  place-items: center;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-5 {
  gap: 20px;
}
.gap-8 {
  gap: 32px;
}
.gap-7 {
  gap: 28px;
}
.gap-x-10 {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.gap-y-4 {
  row-gap: 16px;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-lg {
  border-radius: 15px;
}
.rounded-full {
  border-radius: 9999px;
}
.border-0 {
  border-width: 0px;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-solid {
  border-style: solid;
}
.border-blue_01 {
  --tw-border-opacity: 1;
  border-color: rgb(1 203 255 / var(--tw-border-opacity));
}
.border-\[blue_02\] {
  border-color: blue 02;
}
.border-gray {
  --tw-border-opacity: 1;
  border-color: rgb(218 218 218 / var(--tw-border-opacity));
}
.border-b-transparent {
  border-bottom-color: transparent;
}
.bg-\[\#F1F3F4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(241 243 244 / var(--tw-bg-opacity));
}
.bg-blue_02 {
  --tw-bg-opacity: 1;
  background-color: rgb(0 212 255 / var(--tw-bg-opacity));
}
.bg-dark_01 {
  --tw-bg-opacity: 1;
  background-color: rgb(43 43 43 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(218 218 218 / var(--tw-bg-opacity));
}
.fill-black {
  fill: #000000;
}
.p-0 {
  padding: 0px;
}
.px-8 {
  padding-left: 32px;
  padding-right: 32px;
}
.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.px-6 {
  padding-left: 24px;
  padding-right: 24px;
}
.py-5 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.py-\[75px\] {
  padding-top: 75px;
  padding-bottom: 75px;
}
.py-\[25px\] {
  padding-top: 25px;
  padding-bottom: 25px;
}
.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}
.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.pl-10 {
  padding-left: 40px;
}
.pr-4 {
  padding-right: 16px;
}
.pt-\[75px\] {
  padding-top: 75px;
}
.pr-2 {
  padding-right: 8px;
}
.pl-2 {
  padding-left: 8px;
}
.pt-4 {
  padding-top: 16px;
}
.pl-0 {
  padding-left: 0px;
}
.text-center {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.font-Montserrat {
  font-family: "Montserrat", sans-serif;
}
.text-4xl {
  font-size: 36px;
}
.text-\[28px\] {
  font-size: 28px;
}
.text-sm {
  font-size: 14px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[20px\] {
  font-size: 20px;
}
.text-xl {
  font-size: 24px;
}
.font-bold {
  font-weight: 700;
}
.font-semi {
  font-weight: 500;
}
.leading-tight {
  line-height: 1.25;
}
.leading-6 {
  line-height: 1.5rem;
}
.leading-none {
  line-height: 1;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-blue_01 {
  --tw-text-opacity: 1;
  color: rgb(1 203 255 / var(--tw-text-opacity));
}
.text-\[\#899FA9\] {
  --tw-text-opacity: 1;
  color: rgb(137 159 169 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.opacity-0 {
  opacity: 0;
}
.shadow-none {
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:border-dark_01:hover {
  --tw-border-opacity: 1;
  border-color: rgb(43 43 43 / var(--tw-border-opacity));
}
.hover\:bg-dark_01:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(43 43 43 / var(--tw-bg-opacity));
}
.hover\:bg-blue_01:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(1 203 255 / var(--tw-bg-opacity));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:text-dark_01:hover {
  --tw-text-opacity: 1;
  color: rgb(43 43 43 / var(--tw-text-opacity));
}
.hover\:text-green:hover {
  --tw-text-opacity: 1;
  color: rgb(1 85 36 / var(--tw-text-opacity));
}
.hover\:underline:hover {
  text-decoration-line: underline;
}
.hover\:no-underline:hover {
  text-decoration-line: none;
}
.focus\:no-underline:focus {
  text-decoration-line: none;
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
@media (max-width: 575px) {

  .sm\:mt-6 {
    margin-top: 24px;
  }

  .sm\:mb-10 {
    margin-bottom: 40px;
  }

  .sm\:px-4 {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (min-width: 576px) and (max-width: 1023px) {

  .md\:absolute {
    position: absolute;
  }

  .md\:mb-13 {
    margin-bottom: 52px;
  }

  .md\:mb-6 {
    margin-bottom: 24px;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mt-10 {
    margin-top: 40px;
  }

  .md\:mt-\[35px\] {
    margin-top: 35px;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:w-11\/12 {
    width: 91.666667%;
  }

  .md\:w-10\/12 {
    width: 83.333333%;
  }

  .md\:w-\[110\%\] {
    width: 110%;
  }

  .md\:w-6\/12 {
    width: 50%;
  }

  .md\:w-7\/12 {
    width: 58.333333%;
  }

  .md\:w-5\/12 {
    width: 41.666667%;
  }

  .md\:w-3\/12 {
    width: 25%;
  }

  .md\:w-4\/12 {
    width: 33.333333%;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

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

  .md\:py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .md\:py-\[50px\] {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .md\:pt-\[100px\] {
    padding-top: 100px;
  }

  .md\:text-\[32px\] {
    font-size: 32px;
  }

  .md\:text-\[28px\] {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {

  .lg\:absolute {
    position: absolute;
  }

  .lg\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:mb-8 {
    margin-bottom: 32px;
  }

  .lg\:mb-20 {
    margin-bottom: 100px;
  }

  .lg\:mb-10 {
    margin-bottom: 40px;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:mt-18 {
    margin-top: 70px;
  }

  .lg\:mt-\[45px\] {
    margin-top: 45px;
  }

  .lg\:ml-\[120px\] {
    margin-left: 120px;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mr-3 {
    margin-right: 12px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:w-\[90\%\] {
    width: 90%;
  }

  .lg\:w-\[120\%\] {
    width: 120%;
  }

  .lg\:w-6\/12 {
    width: 50%;
  }

  .lg\:w-8\/12 {
    width: 66.666667%;
  }

  .lg\:w-4\/12 {
    width: 33.333333%;
  }

  .lg\:w-2\/12 {
    width: 16.666667%;
  }

  .lg\:w-3\/12 {
    width: 25%;
  }

  .lg\:max-w-xl {
    max-width: 36rem;
  }

  .lg\:max-w-3xl {
    max-width: 48rem;
  }

  .lg\:flex-grow {
    flex-grow: 1;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:flex-nowrap {
    flex-wrap: nowrap;
  }

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

  .lg\:gap-4 {
    gap: 16px;
  }

  .lg\:gap-x-5 {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }

  .lg\:py-\[24px\] {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .lg\:px-\[50px\] {
    padding-left: 50px;
    padding-right: 50px;
  }

  .lg\:py-\[150px\] {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  .lg\:py-\[100px\] {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .lg\:px-8 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .lg\:pt-\[150px\] {
    padding-top: 150px;
  }

  .lg\:text-\[64px\] {
    font-size: 64px;
  }

  .lg\:text-rg {
    font-size: 16px;
  }

  .lg\:text-lg {
    font-size: 20px;
  }

  .lg\:text-\[48px\] {
    font-size: 48px;
  }

  .lg\:text-\[50px\] {
    font-size: 50px;
  }
}

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