@import url("https://fonts.googleapis.com/css2?family=Mitr:wght@300;400;500&display=swap");
body {
  font-family: "Mitr", sans-serif;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.banner-parallax {
  width: 100%;
}
.banner-parallax .block-parallax-bg {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  height: 350px;
  background-attachment: fixed;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-parallax .block-parallax-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner-parallax .block-parallax-bg .block-parallax-content {
  position: relative;
  z-index: 1;
}
.banner-parallax .block-parallax-bg .block-parallax-content h2 {
  position: relative;
  font-size: 42px;
  color: #fff;
  font-weight: 300;
}
.banner-parallax .block-parallax-bg .block-parallax-content h2:before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 80%;
  height: 1px;
  background-color: #fff;
}
.banner-parallax .block-parallax-bg .block-parallax-content p {
  color: #fff;
  font-weight: 500;
  text-align: center;
  margin: 20px 0 0 0;
  font-size: 20px;
}
.banner-parallax .block-parallax-bg .block-parallax-content p:empty {
  margin: 0;
  padding: 0;
}
.banner-parallax .block-parallax-bg .block-parallax-content .block-breadcrumb nav .breadcrumb .breadcrumb-item a {
  color: #fff;
  font-weight: 300;
  font-size: 12px;
}
.banner-parallax .block-parallax-bg .block-parallax-content .block-breadcrumb nav .breadcrumb .breadcrumb-item.active {
  color: #ec008b;
  font-weight: 400;
  font-size: 12px;
}
@media only screen and (min-width: 290px) and (max-width: 767px) {
  .banner-parallax .block-parallax-bg {
    height: 250px;
  }
  .banner-parallax .block-parallax-bg .block-parallax-content {
    margin-top: 35px;
  }
  .banner-parallax .block-parallax-bg .block-parallax-content h3 {
    font-size: 28px;
  }
  .banner-parallax .block-parallax-bg .block-parallax-content h3:before {
    bottom: -5px;
  }
}

.bg-parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-main {
  position: relative;
  z-index: 10;
}
.footer-main .block-footer {
  background-color: #333;
}
.footer-main .block-footer .social-icons {
  margin-top: 15px;
  padding-bottom: 0 !important;
}
.footer-main .block-footer .social-icons li a {
  color: #fff !important;
}
.footer-main .block-footer .social-icons li a:hover {
  color: #ec008b !important;
}
.footer-main .block-footer h6 {
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}

.check-status h1 {
  font-family: "Mitr", sans-serif;
  font-size: 32px;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.check-status h3 {
  font-family: "Mitr", sans-serif;
  font-size: 22px;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 10px 0 0 0;
}
.check-status h4 {
  font-family: "Mitr", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #303030;
  letter-spacing: 0.3px;
  margin: 5px 0 0 0;
}
.check-status h5 {
  font-family: "Mitr", sans-serif;
  font-size: 28px;
  color: #303030;
  font-weight: 300;
  letter-spacing: 0.3px;
  margin: 20px 0 10px 0;
}

.block-status {
  opacity: 0;
  min-height: 200px;
  margin: 15px 0 60px 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  transition: 0.3s;
}
.block-status .block-status-row .block-status-item .title-status {
  font-family: "Mitr", sans-serif;
  font-size: 22px;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 0 0 5px 0;
  line-height: 1;
}
.block-status .block-status-row .block-status-item .ans-status {
  font-family: "Mitr", sans-serif;
  font-size: 28px;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 0 0 5px 0;
}
.block-status .block-status-row .block-status-item .status-status {
  position: relative;
  top: 5px;
  font-family: "Mitr", sans-serif;
  font-size: 35px;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin: 0 0 5px 0;
  line-height: 1;
  transition: 0.3s;
}
.block-status .block-status-row .block-status-item .status-status:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #303030;
  transition: 0.3s;
}
.block-status.status_1 {
  opacity: 1;
}
.block-status.status_1 .status-status {
  color: #4caf50 !important;
}
.block-status.status_1 .status-status:before {
  background-color: #4caf50 !important;
}
.block-status.status_2 {
  opacity: 1;
}
.block-status.status_2 .status-status {
  color: #ff5722 !important;
}
.block-status.status_2 .status-status:before {
  background-color: #ff5722 !important;
}
.block-status.status_3 {
  opacity: 1;
}
.block-status.status_3 .status-status {
  color: #f44336 !important;
}
.block-status.status_3 .status-status:before {
  background-color: #f44336 !important;
}

.block-list-register .block-list-register-title h1 {
  color: #303030;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  margin: 0 0 5px 0;
}
.block-list-register .block-list-register-title h4 {
  color: #303030;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 1px;
  margin: 0 0 30px 0;
}
.block-list-register table tr th {
  text-align: center;
  font-size: 16px;
  font-family: "Mitr", sans-serif;
  color: #303030;
  font-weight: 400;
}
.block-list-register table tr td {
  text-align: center;
  font-size: 16px;
  font-family: "Mitr", sans-serif;
  color: #303030;
  font-weight: 300;
  padding: 10px 8px;
}

.swal2-modal.pop-form {
  padding: 15px;
}
.swal2-modal.pop-form .swal2-icon {
  margin: 0;
}
.swal2-modal.pop-form .swal2-content .text-pop {
  font-size: 18px;
  font-family: "Mitr", sans-serif;
  color: #303030;
  font-weight: 300;
  letter-spacing: 0.3px;
  padding: 15px 0 15px 0;
}
.swal2-modal.pop-form .swal2-content a {
  color: #ec028b !important;
}
.swal2-modal.pop-form .swal2-actions {
  margin: 0 0 0 0;
}
.swal2-modal.pop-form .swal2-actions .swal2-styled {
  border: 1px solid #ec028b !important;
  border-radius: 1000px;
  color: #ec028b !important;
  background: #fff !important;
  font-size: 16px;
  font-weight: 300;
  padding: 4px 22px;
  outline: none !important;
  transition: 0.3s;
  box-shadow: none !important;
}
.swal2-modal.pop-form .swal2-actions .swal2-styled:hover {
  color: #fff !important;
  background: #ec028b !important;
}

.blog-article-post .blog-post-head {
  padding-bottom: 15px;
}
.blog-article-post .blog-post-head .blog-post-title h1 {
  text-align: left;
  font-size: 22px;
  line-height: 1.2;
  font-family: "Mitr", sans-serif;
  color: #303030;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 0;
  margin: 10px 0 0 0;
}
.blog-article-post .blog-post-head .blog-post-date h6 {
  text-align: left;
  font-size: 18px;
  color: #939598;
  letter-spacing: 0.3px;
  line-height: 1;
  margin: 0;
  font-weight: 300;
}
.blog-article-post .blog-post-body {
  padding: 30px 0 0 0;
}
.blog-article-post .blog-post-body p {
  text-align: left;
  font-size: 16px;
  font-family: "Mitr", sans-serif;
  color: #303030;
  font-weight: 300;
  letter-spacing: 0.3px;
  padding: 0;
  margin: 15px 0 15px 0;
}
.blog-article-post .blog-post-body a {
  color: #ec028b !important;
}

.allbam-detail-title h1 {
  font-weight: 400;
  color: #303030;
  font-size: 28px;
  letter-spacing: 0.3px;
  margin: 0 0 30px 0;
}
@media only screen and (min-width: 290px) and (max-width: 767px) {
  .allbam-detail-title h1 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 290px) and (max-width: 767px) {
  .m-mg0 {
    margin: 0 !important;
  }
}
.block-main-food-offie, .block-main-article {
  background-color: #fff !important;
}

.p-relative {
  position: relative;
}

.z-index1 {
  z-index: 2;
}

.z-index2 {
  z-index: 2;
}

.z-index-5 {
  z-index: 5;
}

.z-index10 {
  z-index: 10;
}

.z-index20 {
  z-index: 20;
}

.z-index30 {
  z-index: 30;
}

.hero-fullscreen.hero-video.fix-parallax {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100dvh;
}

.heroFullscreenSpace {
  width: 100%;
  min-height: 100dvh;
}/*# sourceMappingURL=theme.css.map */