:root {
  --default-font: "Sarabun", "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Sarabun", "Amatic SC",  sans-serif;
  --nav-font: "Sarabun", "Inter",  sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #2A2A2A;
  --heading-color: #2A2A2A;
  --accent-color: #ce1212;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #7f7f90;
  --nav-hover-color: #ce1212;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #7f7f90;
  --nav-dropdown-hover-color: #ce1212;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #FFFFFF;
  background-color: #E81D2C;
  z-index: 997;
}

@media (max-width: 1024px) {
  .header {
    padding: 10px 0;
  }
}

.header .logo {
  line-height: 1;
  text-decoration: none;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 12px;
  margin: 0;
  font-weight: 700;
  color: #FFF;
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    text-decoration: none;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

.footer {
  --heading-font: var(--default-font);
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 70px 0;
  position: relative;
  gap: 0px;
  border-top: 1px solid #D4D4D4;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer .address p {
  margin-bottom: 0px;
}

.footer .copyright {
  background-color: #F4F4F4;
  padding-top: 20px;
}

.footer .copyright p {
  margin-bottom: 0;
}

section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 92px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 56px;
  }
}

.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 482px;
}

@media only screen and (max-width: 767px) {
  .hero {
    background-position: right center;
  }
}

.hero h1 {
  margin: 0;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.005em;
  text-align: left;
}

.hero p {
  color: #313235;
  margin: 5px 0 30px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.hero .btn-watch-video {
  transition: 0.5s;
  margin: 0 25px 25px 0;
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
  .div-btn-yctx {
    margin-bottom: 50px;
  }
  .fixed-icons a img {
    z-index: 999;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.div-cta {
  text-align: justify;
}

.title-session-list-tour {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: left;
  color: #E81D2C;
}

.title-list-tour {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
}

.list-tour {
  margin-top: 20px;
}

.item-tour-img {
  border-radius: 12px;
  width: 100%;
  height: 245px;
  object-fit: cover;
}
.item-tour-title {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
}
.item-tour-viewer {
  color: #7F7F7F;
  font-size: 14px;
  font-weight: 400;
}
.footer-item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
}
.footer-item {
  list-style-type: none;
  padding: 0;
}
.footer-item li {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  margin: 10px 0;
}
.footer-item i {
  padding-right: 5px;
}
.phone-button {
  background-color: #E81D2C;
  border: none;
  border-radius: 47px;
  color: white;
  padding: 5px 12px;
  font-size: 16px;
  display: inline-flex;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  height: 36px;
}
.phone-button i {
    margin: 5px 10px 5px 0;
}

.footer-copyright-title {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  color: #2A2A2A;
}

.footer-copyright-content span, .footer-copyright-content div {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.footer-copyright-right-content div {
  color: #7F7F7F;
}
.right-column {
  text-align: right;
}
.text-red-vt {
  color: #E81D2C;
}
.sub-footer {
  background-color: #F4F4F4;
  padding: 25px 0;
}
@media (min-width: 768px) {
  .justify-content-end {
    text-align: right;
  }
}
.phone-number, .phone-number-header {
  color: #FFFFFF;
  font-weight: 600;
  margin: 5px 0;
  text-decoration: none;
}
.phone-number:hover {
  color: #FFFFFF !important;
}
.email-footer {
  margin-left: 20px;
}
@media (max-width: 1024px) {
  .phone-number-header {
    display: none;
  }
  .email-footer {
    margin-left: 0;
    display: block;
  }
}
@media (max-width: 576px) {
  .phone-number-header {
    display: none;
  }
  .email-footer {
    margin-left: 0;
    display: block;
  }
}

.box-search {
  border-radius: 5px;
  border: solid 1px #D4D4D4;
}
.box-icon-search, .input-search{
  border: none;
  background-color: #FFF;
}
.box-icon-search i,
.footer-title-phone,
.footer-title-email,
.footer-title-address,
.footer-item li a {
  color: #525252;
}
.icon-checked {
  margin-right: 8px;
}

/*modal*/
.hidden {
  display: none;
}
.required-label {
  color: #E81D2B;
}
.input-modal::placeholder,
.input-modal::-webkit-input-placeholder,
.input-modal::-moz-placeholder,
.input-modal:-ms-input-placeholder,
.input-modal::-ms-input-placeholder
{
  color: #97999C !important;
}
.input-modal {
  padding: 10px 16px 10px 16px;
  border-radius: 10px;
  background-color: #F9F9FA !important;
}
select.form-control:not([size]):not([multiple]) {
  height: auto !important;
}
.title-modal {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: 0.005em;
  text-align: center;
}
.label {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #211F1F;
}
.form-check-label {
  color: #313235;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.link-checkbox{
  text-decoration: underline;
}
.btn-submit-form {
  color: var(--contrast-color);
  background: #E81D2B;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.form-control.is-invalid, .was-validated .form-control:invalid {
  background-image: none;
}

#submitBtn[disabled] {
  border-color: #e3e5e5;
  background-color: #e3e5e5;
  color: #97999c;
}

#submitBtn {
  background: #e81d2b;
  color: #f9f9fa;
  cursor: pointer;
}
.title-lien-he {
  font-size: 32px;
}
.categories {
  text-align: right;
}
#btn_cat_1, #btn_cat_4 {
  display: none !important;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  margin-right: 15px;
}


input[type="radio"]:checked {
  background-color: #E81D2B;
}

#message {
  margin-top: 30px;
  display: none;
}
.error {
  color: #E81D2B;
}
.form-check-input:checked {
  background-color: #E81D2B;
  border-color: #E81D2B;
}
.modal-content {
  border-radius: 16px;
  width: 90%;
  left: 5%;
}
.result-popup {
  width: 80% !important;
  left: 10% !important;
}
.modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: none;
}
.modal-title {
  flex: 1;
  text-align: center;
  margin: 0;
}
.modal-header .close {
  position: absolute;
  right: 15px;
  top: 15px;
}

.fixed-icons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.icon img {
  width: 35px;
  height: 35px;
}
.icon-phone-number {
  position: relative;
  display: inline-block;
}
.icon-phone-number img {
  width: 36px;
  height: 36px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.phone-number-fixed {
  position: absolute;
  background-color: #ec4651;
  color: #fff;
  font-weight: 600;
  padding: 5px 20px 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  right: 20px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  top: 1.5px;
}

a:hover {
  color: inherit !important;
  text-decoration: none !important;
}
.title-search-box {
  display: none;
  font-size: 18px;
  font-weight: 500;
}
.no-results {
  color: #E81D2B;
  display: none;
}
.input-search:focus {
  outline: none;
  box-shadow: none;
}
.img-phone-icon {
  margin: 3px 5px 0 0;
  width: 20px;
  height: 20px;
}

.pagination-container {
  text-align: center;
  margin: 0 auto;
}

.page-item {
  border-radius: 6px;
}

.page-link {
  border-radius: 6px !important;
  margin: 0 10px;
}

.page-item.active .page-link {
  background-color: #E81D2B;
  border-color: #E81D2B !important;
  color: #fff;
}

.page-item .page-link {
  background-color: #F4F4F4;
  color: #000;
}

.icon-symbol {
  position: absolute;
  right: 18px;
  top: 43px;
  pointer-events: none;
}

.register-result-box {
  text-align: center  ;
}
.popup-result-title {
  color: #2A2A2A !important;
  font-weight: 600 !important;
  padding-top: 10px !important;
  font-size: 18px !important;
  line-height: 24px;
}
.popup-result-image {
  margin: 10px 0px;
}
.popup-result-content {
  margin-bottom: 20px;
}
.register-result-box p {
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}
.popup-register-phone {
  color: #525252;
}
#scheduleDate {
  cursor: unset;
}
#submitBtn {
  margin-bottom: 5px;
}


.datepicker-container {
  position: relative;
}

.datepicker-dropdown {
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}

.datepicker table {
  width: 100%;
  margin: 0;
  background-color: #fff;
}

.datepicker table th,
.datepicker table td {
  text-align: center;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  border-radius: 4px;
}

.datepicker table .day {
  font-weight: normal;
  color: #333;
}

.datepicker table .day:focus,
.datepicker table .active {
  background-color: #E81D2B;
  color: #fff;
  border-radius: 4px;
}

.datepicker table .day:hover {
  background-color: #E81D2B;
  border-radius: 4px;
}

.datepicker table .old,
.datepicker table .new {
  color: #ccc;
}

.datepicker table .dow {
  font-weight: bold;
}

.datepicker .datepicker-switch {
  font-size: 1rem;
  padding: 5px;
  font-weight: bold;
}

.datepicker .prev,
.datepicker .next {
  font-size: 1.2rem;
  color: #E81D2B;
}

.datepicker .prev:hover,
.datepicker .next:hover {
  color: #E81D2B;
}
.datepicker table .today {
  font-weight: bold;
  color: #E81D2B !important;
  background: #FFFFFF !important;
}
.datepicker table .active {
  font-weight: bold;
  color: #FFFFFF !important;
  background: #E81D2B !important;
}
.datepicker table .disabled {
  background: #f6f7f7 !important;
}

.form-control::placeholder {
  color: #97999C;
}

.form-control:-moz-placeholder {
  color: #97999C;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .form-control::-ms-input-placeholder, .form-control::-webkit-input-placeholder {
  color: #97999C;
}

.nice-select {
  color: #97999C;
}

.nice-select[aria-invalid="false"] {
  color: #211F1F;
}

.placeholder-select option {
  color: #211F1F;
  background-color: #ffffff;
}
.placeholder-select option:checked {
  color: #ff0000;
  background-color: #fdecec;
}

.dropdown-toggle::after {
  display: none !important;
}
button.dropdown-toggle{
  border: 1px solid #e5e1e1;
  border-radius: 10px;
  padding: 10px 16px 10px 16px;
}
.dropdown-item.active, .dropdown-item:active {
  color: #e81d2b;
  text-decoration: none;
  background-color: #FDE8E9;
}

.bootstrap-select .dropdown-menu li:hover {
  color: #e81d2b;
}

.btn-light.dropdown-toggle, .dropdown-toggle:hover {
  background-color: #F9F9FA !important;
}
