@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s ease all;
  scroll-behavior: smooth;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --noble-gold: #a4896c;
  --noble-gold2: #e1d8ca;
  --brown: #b6afa5;
  --brown2: #c2bbb5;
  --tech-black: #343434;
  --tech-gray: #5a5a5a;
}

img {
  width: 70px;
}

.size-6 {
  width: 30px;
}

button {
  all: unset;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--white);
  transition: 0.3s ease all;
}

p {
  letter-spacing: 2px;
}

video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}

button.goup-btn {
  position: fixed;
  bottom: 5em;
  right: 5em;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--noble-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}
button.goup-btn:hover {
  opacity: 1;
}

.square {
  display: inline-block;
  letter-spacing: 1.5px;
  width: 170px;
  height: 50px;
  border-radius: 4px;
  text-align: center;
  background: var(--noble-gold);
  opacity: 0.8;
}
.square:hover {
  opacity: 1;
}

.txt-line {
  position: relative;
  color: var(--noble-gold);
}
.txt-line::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--noble-gold);
  border-radius: 50px;
  transition: 0.3s ease all;
}
.txt-line:hover::before {
  width: 100%;
}

.rounded {
  display: inline-block;
  width: 170px;
  height: 50px;
  text-align: center;
  background: var(--noble-gold);
  border-radius: 50px;
  position: relative;
}
.rounded .size-6 {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  width: 20px;
}
.rounded span {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}
.rounded:hover .size-6 {
  left: 80%;
}
.rounded:hover span {
  right: 60%;
}

.txt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: var(--noble-gold2);
  text-transform: none;
}
.txt .size-6 {
  width: 20px;
}
.txt:hover {
  color: var(--noble-gold);
}

.mx-calendar-header {
  background-color: var(--noble-gold2) !important;
  color: #000 !important;
}

.mx-calendar-header a {
  color: #000 !important;
}

.mx-calendar-content .cell {
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mx-calendar-content .cell:not(.active):hover {
  background-color: var(--noble-gold2-30) !important;
  color: #000 !important;
}

.mx-calendar-content .cell.active,
.mx-calendar-content .cell.active:hover,
.mx-calendar-content .cell.active:focus {
  background-color: var(--noble-gold2) !important;
  color: #000 !important;
}

.mx-calendar-content .cell.today {
  border: 1px solid var(--noble-gold2) !important;
  color: #000 !important;
}

.mx-calendar-content .cell.today.active {
  background-color: var(--noble-gold2) !important;
  color: #000 !important;
}

.mx-calendar-content .cell.disabled {
  color: #aaa !important;
  background: transparent !important;
}

.mx-input {
  border: 2px solid var(--noble-gold2) !important;
  border-radius: 6px;
}

/* Focus (remove blue outline/glow) */
.mx-input:focus {
  border-color: var(--noble-gold2) !important;
  box-shadow: 0 0 0 2px var(--noble-gold2-30) !important;
  outline: none !important;
}

.mx-datepicker,
.mx-datepicker * {
  accent-color: var(--noble-gold2) !important;
}

/*

Title Font: Bolded
Body Font Size：
• PC: Recommended 16px-18px
• Mobile: Recommended 14px-16px
Line Spacing: 1.5 times
Paragraph Spacing: 2 times

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