@charset "UTF-8";
@font-face {
    font-family: 'ElMessiri';
    src: /*url('myfont.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
         url('fonts/ElMessiri-Regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
}
@font-face {
    font-family: 'ElMessiri';
    src: url('fonts/ElMessiri-Bold.ttf') format('truetype');
    font-weight: bold;
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: start !important;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-space {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-around {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.flex-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
}

.flex-column {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}

.align-start {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.align-end {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.auto-margin {
  margin: auto;
}

.auto-height {
  display: block;
  height: auto;
  max-height: auto;
  text-overflow: clip;
}

.auto-width {
  width: auto;
  max-width: auto;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.circle {
  border-radius: 50%;
}

.bold {
  font-weight: bold;
}

.normal {
  font-weight: normal;
}

.half-width {
  width: 50%;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.pointer {
  cursor: pointer;
}

.border {
  outline: 1px solid var(--border);
}

.border-top {
  box-shadow: 0 -1px 0 0 var(--border);
}

.border-bottom {
  box-shadow: 0 1px 0 0 var(--border);
}

.border-left {
  box-shadow: -1px 0 0 0 var(--border);
}

.border-right {
  box-shadow: 1px 0 0 0 var(--border);
}

.shadow {
  box-shadow: 0.1rem 0.1rem 0.2rem var(--shadow);
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.over-hide {
  overflow: hidden;
}

.overx-hide {
  overflow-x: hidden;
}

.overy-hide {
  overflow-y: hidden;
}

.over-auto {
  overflow: auto;
}

.overx-auto {
  overflow-x: auto;
}

.overy-auto {
  overflow-y: auto;
}

.ellipsis {
  text-overflow: ellipsis;
}

.clip {
  text-overflow: clip;
}

.one-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-letter-space {
  letter-spacing: normal;
}

.no-visible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

.color-purple {
  color: var(--purple) !important;
}

.color-black {
  color: var(--black) !important;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.no-scroll::-webkit-scrollbar {
  display: none;
}

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

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

.right-margin {
  margin: right;
}

.left-margin {
  margin: left;
}

.no-back {
  background: none;
}

.no-border {
  border: 0;
}

.block {
  display: block;
}

.reverse-row {
  flex-direction: row-reverse;
}

.reverse-rotate {
  transform: rotate(180deg);
}

.no-select, .go-icon, img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --light-color: #ddd;
  --light-color1: #FFF;
  --color: #333;
  --color1: #888;
  --back: #21B698;
  --gray: #777777;
  --brown: #966833;
  --purple: #7C5496;
  --black: #000;
  --nav: rgb(255, 255, 255);
  --hover: rgb(255, 255, 255);
  --header-height: 38rem;
  --border-radius: 3rem;
  --border-radius1: 2rem;
  --width: 90%;
  --max-width: 90rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  border: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  list-style: none;
  font-family: "ElMessiri", sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.1s linear;
}

main {
  width: var(--width);
  max-width: var(--max-width);
  margin: auto;
}

nav {
  background: none;
  z-index: 999999;
  margin: auto;
  padding: 1rem 0;
  position: relative;
}
nav.light {
  background: var(--nav);
  padding: 0.8rem 0;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1333333333);
}
nav ul {
  padding: 0;
  margin: 0;
}
nav ul .menu-icon {
  width: 2.5rem;
  height: 2.5rem;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1333333333);
}
nav ul .menu-icon span {
  color: var(--brown);
  font-size: 2.2rem;
  margin: 1px;
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1333333333);
}
nav ul .menu-icon:hover span {
  color: var(--light-color1);
}
nav ul .user-icon {
  width: 2.4rem;
  height: 2.4rem;
  outline: 1px solid var(--light-color);
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1333333333);
}
nav ul .user-icon img {
  width: 100%;
  height: 100%;
}
nav ul .user-icon:active {
  outline: 2px solid var(--light-color1);
}
nav ul .buttons {
  margin: 0 3rem;
}
nav ul .buttons button, nav ul .buttons a {
  width: 8rem;
  padding: 0.5rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--light-color);
  background: var(--back);
  border-radius: var(--border-radius1);
}
nav ul .buttons button:hover, nav ul .buttons a:hover {
  background: var(--hover);
  text-decoration: none;
  color: var(--light-color1);
}
nav ul .lang > div:first-child {
  width: 2rem;
  height: 2rem;
  background: var(--back);
  margin: 0 0.8rem 0 0;
}
nav ul .lang > div:first-child i {
  font-size: 1.1rem;
  color: var(--light-color);
}
nav ul .lang .lang-area p {
  margin: -5px 0 0 0;
  font-size: 1.2rem;
  width: auto;
  height: 1.9rem;
  color: var(--gray);
  border-bottom: 3px solid var(--brown);
  padding: 0;
}
nav ul .lang:hover p {
  color: var(--light-color1);
}
nav .lang {
  width: 2.5rem;
  height: 2.5rem;
  justify-content: center;
  padding: 4px;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.1333333333);
}
nav .nav-menu {
  width: 13rem;
  position: fixed;
  z-index: 9999;
  background: var(--nav);
  border-radius: 0.1rem;
  box-shadow: var(--box-shadow);
}
nav .nav-menu ul {
  padding: 0.5rem 0;
}
nav .nav-menu ul li {
  padding: 0 0.7rem;
}
nav .nav-menu ul a {
  padding: 0.7rem 0;
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid var(--color1);
}
nav .nav-menu ul a p {
  margin: 0;
  padding: 0 .4rem 0 0;
  font-size: 1.1rem;
  color: var(--color1);
}
nav .nav-menu ul a span {
  font-size: 1.4rem;
  color: var(--color1);
  margin: -2px -5px 0 0;
}
nav .nav-menu ul a:hover {
  border-color: var(--light-color);
  text-decoration: none;
}
nav .nav-menu ul a:hover p, nav .nav-menu ul a:hover span {
  color: var(--light-color);
}
nav .nav-menu ul li:last-child a {
  border: 0;
}
header {
  width: 100%;
  height: 20rem;
  position: relative;
  background: rgba(0, 0, 0, 0.8);
}
header .header-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  z-index: 1;
  justify-content: center;
  align-items: center;
}
header .header-slider .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header .header-slider .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-slider .swiper-wrapper .swiper-slide .data {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-slider .swiper-wrapper .swiper-slide .data .header-h1 {
  width:50%;
  font-size: 2rem;
  color: #7D5528;
  text-align: justify;
  margin-inline-start: 50px;
  margin-inline-end: auto;
}
header .header-slider .swiper-wrapper .swiper-slide .data h1, header .header-slider .swiper-wrapper .swiper-slide .data h2, header .header-slider .swiper-wrapper .swiper-slide .data h3, header .header-slider .swiper-wrapper .swiper-slide .data p, header .header-slider .swiper-wrapper .swiper-slide .data span, header .header-slider .swiper-wrapper .swiper-slide .data .buttons {
  width: var(--width);
  max-width: var(--max-width);
  margin: 0.5rem 0;
  padding: 0 0.3rem;
  font-size: 1.5rem;
  line-height: 150%;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header .header-slider .swiper-wrapper .swiper-slide .data h1, header .header-slider .swiper-wrapper .swiper-slide .data h2, header .header-slider .swiper-wrapper .swiper-slide .data h3 {
  color: var(--light-color1);
  font-size: 2.5rem;
  margin: 0.5rem 0 1rem 0;
}
header .header-slider .swiper-wrapper .swiper-slide .data p {
  color: var(--light-color);
  font-size: 1.5rem;
  margin: 0.2rem 0 0;
}
header .header-slider .swiper-wrapper .swiper-slide .data span {
  color: var(--light-color);
  font-size: 0.9rem;
}
header .header-slider .swiper-wrapper .swiper-slide .data button, header .header-slider .swiper-wrapper .swiper-slide .data a {
  width: 10rem;
  border-radius: 5px;
  padding: 0.2rem 0;
  font-size: 1.1rem;
  background: var(--brown);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  color: var(--light-color1);
  cursor: pointer;
}
header .header-slider .swiper-wrapper .swiper-slide .data button:hover, header .header-slider .swiper-wrapper .swiper-slide .data a:hover {
  background: unset;
  border: 2px solid white;
  border-radius: 5px;
  color: var(--brown);
  text-decoration: none;
}
header .header-slider .swiper-wrapper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
header .header-slider .swiper-wrapper .swiper-slide img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  margin-bottom: 2.7rem;
}
header .header-pagination {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.7rem;
  display: flex;
  z-index: 2;
  justify-content: center;
  align-items: center;
}
header .header-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 2px solid var(--light-color1);
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  background: none;
}
header .header-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--light-color1);
}

.header-h2 {
    font-size: 6rem !important;
    margin-inline-start: auto;
    margin-inline-end: auto;
    margin-bottom: 0;
    justify-content: center !important;
    letter-spacing: 0;
    position: absolute;
    text-align: center;
    bottom: 0px;
    color: var(--light-color1);
  }

.part .list .home-slider .swiper-wrapper img {
  width:100%;
}

.full-header {
  height: var(--header-height);
}
.full-header .data {
  display: flex;
}
.header-book{
  display: none !important;
}

.footer {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 3rem 0 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer ul {
  margin: 1rem auto 3rem;
  align-items: flex-start;
}
.footer ul li a {
  font-size: 1.15rem;
  color: var(--light-color1);
  padding: 0 0 1.5rem;
  text-align: left;
  width: 10rem;
  margin: 0;
  letter-spacing: 1px;
}
.footer ul li a:hover {
  color: var(--brown);
  text-decoration: underline;
}
.footer ul li > img {
  width: 20rem;
  margin: -1.5rem 0 0;
}
.footer ul .last span {
  width: 1.7rem;
  color: var(--light-color1);
  font-size: 1.3rem;
  margin: 0;
}
.footer ul .last p {
  font-size: 0.8rem;
  color: var(--light-color1);
  padding: 0;
  margin: 0;
}
.footer ul .last > div:first-child img {
  width: 8rem;
}
.footer ul .last > div:last-child {
  padding: 0.4rem 0;
}
.footer .copyright {
  padding: 1rem 0;
  border-top: 1px solid var(--light-color);
}
.footer .copyright p {
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--light-color1);
}
.footer .copyright .images {
  padding: 0;
  margin: 0 0.7rem;
}
.footer .copyright .images img {
  height: 1.8rem;
  padding: 0;
  margin: 0 0.5rem;
}

a {
  text-decoration: none !important;
}

html {
  font-size: 90%;
}

.image {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5rem auto;
}
.image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.image img {
  width: 100%;
  max-height: 50rem;
}

.section {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 3rem 0 5rem;
  background-size: cover;
  background-repeat: no-repeat;
}
.section h1, .section h3, .section h3 {
  font-size: 3.2rem;
  font-weight: normal;
  color: var(--light-color1);
  padding: 1rem;
}
.section img {
  width: 10rem;
}
.section .feat {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.section .feat ul {
  margin: 0;
  padding: 0 1rem;
}
.section .feat ul li {
  width: 10rem;
  padding: 1rem 0;
}
.section .feat ul li p {
  font-size: 1rem;
  color: var(--light-color);
  padding: 0;
  margin: 0;
}
.section .feat ul li img {
  max-width: 2.3rem;
  min-width: 1.7rem;
}
.section .feat ul li .big {
  max-width: 3rem;
}
.section .feat ul li .small {
  max-width: 1.5rem;
}
.section .feat ul:last-child li {
  flex-direction: row-reverse;
}
.section .feat > img {
  width: 70%;
  margin: 0 3rem;
}
.section .feat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section .feat-image1 {
  width: 100%;
  margin: 2rem auto 0;
  display: none;
}
.feat-image1 {
  width: 100%;
  margin: 2rem auto 0;
  display: none;
}
.desk-top{
  display: block;
}
.mobile{
  display: none;
}
.section .buttons {
  margin: 3rem auto 0;
}
.section .buttons button, .section .buttons a {
  z-index: 999;
  width: 12rem;
  border-radius: 5px;
  padding: 0.6rem 0;
  font-size: 1.1rem;
  background: var(--brown);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: center;
  color: var(--light-color1);
  cursor: pointer;
}
.section .buttons button:hover, .section .buttons a:hover {
  background: unset;
  border: 2px solid white;
  border-radius: 5px;
  color: var(--brown);
  text-decoration: none;
}

.w-8 {
  width: 80% !important;
}

.part {
  padding: 6rem 0rem 10rem;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.part h1, .part h3, .part h3 {
  font-size: 4.5rem;
  font-weight: bold;
  padding: 1rem;
  color: var(--brown);
}
.part img {
  width: 8rem;
}
.part .list {
  margin: 3rem auto;
}
.part .list .home-slider {
  margin: 1rem auto;
  width: 100%;
  overflow: hidden;
  padding: 0 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.part .list .home-slider .swiper-wrapper {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.part .list .swiper-pagination {
  width: 100%;
  position: absolute;
  bottom: -5rem;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.part .list .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  border: 2px solid var(--color);
  cursor: pointer;
  overflow: hidden;
  opacity: 1;
  background: none;
}
.part .list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color);
}

.part .list .home-slider .swiper-wrapper img {
}

form {
  margin: 3rem auto 0;
  width: 50%;
}
form label {
  width: 100%;
  text-align: left;
  padding: 0;
  font-size: 1.5rem;
  color: var(--brown);
}
form input, form select {
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--color);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid #ddd;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.0666666667);
  border-radius: var(--border-radius);
  margin: 0.5rem 0;
}
form input[type=submit], form select[type=submit] {
  margin: 2rem auto 0;
  color: var(--light-color1);
  width: 13rem;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  background: var(--brown);
  border-radius: 5px;
  cursor: pointer;
}
form input[type=submit]:hover, form select[type=submit]:hover {
  background: unset;
  border: 2px solid white;
  border-radius: 5px;
  color: var(--brown);
  text-decoration: none;
}
form.form input {
  margin: 1rem 0;
}
form.form input[type=submit] {
  margin: 2rem auto 0;
}
form hr {
  width: 100%;
  margin: 2rem auto 2rem;
  background: var(--brown);
  padding: 0.5px;
  opacity: 0.6;
}
form.book-form .next {
  padding: 0;
}
form.book-form .next .total {
  font-size: 1.7rem;
  color: var(--brown);
  letter-spacing: 1px;
}
form.book-form .next .total span {
  font-weight: bold;
  margin: 0 0.3rem;
}
form.book-form input[type=submit] {
  margin: 0;
  border-radius: 5px;
}
form .login-div {
  width: 100%;
  padding: 2rem 1rem 0;
}
form .login-div p {
  font-size: 1rem;
}
form .login-div p a {
  font-size: 1.1rem;
  margin: 0 0.6rem;
}
form .input-div label {
  font-size: 1.5rem;
  color: var(--brown);
  padding: 0 0 0.5rem 0;
  letter-spacing: 1px;
}
form .input-div .select, form .input-div .input {
  width: 100%;
  padding: 1rem 0.8rem 1rem 0.8rem;
  border: 1px solid #ddd;
  background-color: #FFF;
  border-radius: var(--border-radius);
  background: rgba(0, 0, 0, 0.03);
  box-shadow: var(--shadow), var(--shadow);
}
form .input-div .select p, form .input-div .input p {
  font-size: 1.05rem;
  color: #333;
  margin: 0 0 0 -5px;
  letter-spacing: 0.5px;
  width: 90%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  color: var(--color);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid #ddd;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.0666666667);
  border-radius: var(--border-radius);
  margin: 0.5rem 0;
  resize: none; /* Disable manual resizing */
  overflow: hidden;
  height: auto;
}
form .input-div .select .go-icon, form .input-div .input .go-icon {
  font-size: 1.4rem;
  margin: 0 0.4rem 0 0;
  color: #111;
  transition: all 0.1s linear;
}
form .input-div .select.active .go-icon, form .input-div .input.active .go-icon {
  transform: rotate(180deg);
}
form .input-div .input {
  font-size: 1rem;
  color: #333;
  border-color: #ddd;
  width: 90%;
  padding: 0.8rem;
  width: 100%;
  background: var(--input);
}
form .input-div .options-menu {
  top: 6.5rem;
  width: 99%;
  background: rgb(249, 246, 246);
  z-index: 99;
  left: 0.1rem;
  border: 1px solid #ddd;
  overflow: hidden;
  border-radius: 0.1rem;
  box-shadow: var(--shadow);
  border-radius: 0.2rem;
}
form .input-div .options-menu .search {
  margin: 0.7rem auto;
  width: 96%;
  border-radius: 0.1rem;
  border: 1px solid var(--border);
  background: var(--input);
}
form .input-div .options-menu .search .go-icon {
  font-size: 1.2rem;
  color: var(--color2);
  padding: 0.6rem;
}
form .input-div .options-menu .search input {
  font-size: 1rem;
  color: var(--color5);
  padding: 0.6rem 0 0.6rem 0.6rem;
  background: none;
}
form .input-div .options-menu .search.active {
  border-color: var(--border);
}
form .input-div .options-menu .search .close:hover {
  color: var(--color6);
}
form .input-div .options-menu .options {
  height: auto;
  max-height: 17.5rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  scroll-behavior: auto;
}
form .input-div .options-menu ul {
  padding: 0.3rem;
}
form .input-div .options-menu ul li {
  letter-spacing: 0.5px;
  padding-right: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  padding: 0.7rem 0.8rem;
  color: var(--color5);
}
form .input-div .options-menu ul li:hover {
  background: #ddd;
}
form .input-div .options-menu ul li.active {
  background: #ddd;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
}
.loader .load {
  --bd: 8px;
  --n: 10;
  --g: 1deg;
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: conic-gradient(rgba(0, 0, 0, 0), var(--brown)) content-box;
  -webkit-mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg calc(360deg / var(--n) - var(--g) - 1deg), rgba(0, 0, 0, 0) calc(360deg / var(--n) - var(--g)) calc(360deg / var(--n))), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(98% - var(--bd)), #000 calc(100% - var(--bd)));
  mask: repeating-conic-gradient(rgba(0, 0, 0, 0) 0deg, #000 1deg calc(360deg / var(--n) - var(--g) - 1deg), rgba(0, 0, 0, 0) calc(360deg / var(--n) - var(--g)) calc(360deg / var(--n))), radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(98% - var(--bd)), #000 calc(100% - var(--bd)));
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
  animation: load 1s infinite steps(var(--n));
}
@keyframes load {
  to {
    transform: rotate(1turn);
  }
}

.book-pay .pay {
  width: 50%;
  margin: 2rem auto 0;
}
.book-pay .pay ul {
  margin: 0;
  padding: 0;
}
.book-pay .pay ul li {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid #999;
  margin: 1rem auto;
  border-radius: var(--border-radius);
}
.book-pay .pay ul li p {
  font-size: 1rem;
  color: var(--color);
  margin: 0 2rem 0 0;
  letter-spacing: 1px;
}
.book-pay .pay ul li span {
  font-size: 1.1rem;
  color: var(--brown);
  letter-spacing: 1px;
}
.book-pay .pay label {
  width: 100%;
  text-align: justify;
  padding: 0;
  font-size: 1.1rem;
  color: var(--brown);
  letter-spacing: 0;
}
.book-pay .pay label.color {
  color: var(--color);
  font-size: 1rem;
}
.book-pay .pay label.color a {
  margin: 0 0.3rem;
}
.book-pay .pay hr {
  width: 100%;
  margin: 2rem auto 2rem;
  background: var(--back);
  padding: 0.5px;
  opacity: 0.6;
}
.book-pay .pay .buttons {
  margin: 2rem auto 0;
}
.book-pay .pay .buttons button, .book-pay .pay .buttons a {
  background: var(--back);
  color: var(--light-color);
  width: 9rem;
  padding: 0.5rem 0;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: var(--border-radius);
}
.book-pay .pay .buttons button:hover, .book-pay .pay .buttons a:hover {
  background: var(--hover);
  color: var(--light-color1);
  text-decoration: none;
}
.book-pay .prev > div {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--brown);
  margin: 0 0 1rem;
}
.book-pay .prev > div span {
  font-size: 1.3rem;
  color: var(--brown);
}
.book-pay .prev > div:hover {
  background: var(--brown);
}
.book-pay .prev > div:hover span {
  color: var(--light-color1);
}
.book-pay .all-payments {
  width: 100%;
  padding: 0.5rem 0;
}
.book-pay .all-payments .payment {
  padding: 0;
  margin: 0.2rem auto;
}
.book-pay .all-payments .payment .select-box {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  border: 1px solid var(--back);
}
.book-pay .all-payments .payment .select-box div {
  width: 50%;
  height: 50%;
  background: var(--back);
  display: none;
  border-radius: 50%;
}
.book-pay .all-payments .payment .select-box:hover {
  border-color: var(--hover);
}
.book-pay .all-payments .payment .select-box:hover div {
  background: var(--hover);
}
.book-pay .all-payments .payment .image {
  margin: 0;
  width: auto;
  padding: 0;
}
.book-pay .all-payments .payment .image img {
  width: 2.5rem;
}
.book-pay .all-payments .payment.active .select-box div {
  display: block;
}
.book-pay .checkbox {
  width: 1.2rem;
  height: 1.15rem;
  margin: 0 1rem 0 0;
  padding: 0;
  border: 1px solid rgb(52, 119, 138);
}
.book-pay .checkbox i {
  font-size: 0.8rem;
  color: rgb(31, 69, 79);
  margin: -1px 0 0 0;
  display: none;
}
.book-pay .checkbox:hover {
  border-color: rgb(31, 69, 79);
}
.book-pay .checkbox.active i {
  display: block;
}

.checkbox{
  width: auto;
  margin: 1rem !important;
}

.list-cards {
  margin: 2rem auto 0;
}
.list-cards .card {
  width: 50%;
  height: 38rem;
  margin: 1rem;
  border: none;
  border-radius: 1.3rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.0666666667);
  transition: all 0.3s linear;
}
.list-cards .card img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 0;
}
.list-cards .card p {
  bottom: 10px;
  left: 0;
  text-align: center;
  color: var(--light-color1);
  padding: 0.5rem;
  font-size: 3.7rem;
  letter-spacing: 0.5px;
  margin: 0;
  font-weight: bold;
  /*background: rgba(150, 104, 51, 0.5);*/
}
.list-cards .card:hover {
  transform: scale(1.05);
}

.list-cards.event .card {
  border-radius: 0.7rem;
}

.list-cards.event .card p {
  width: auto;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  color: var(--back);
  padding: 0.5rem;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.list-cards.event .card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.list-cards.event .btn {
  height: 25rem;
}

.list-cards.event .btn div{
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.list-cards.event .btn a{
  position: unset;
  margin-inline-end: auto;
}

.list-cards.event .card .p2 {
  font-size: .8rem;
  padding: 0.1rem;
  color: var(--purple);
}

.list-cards .ticket {
  width: 70%;
  min-height: 20rem;
  margin: 1rem;
  border-radius: 0.15rem;
  padding: 0;
  outline: 1px solid var(--back);
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.0666666667);
  transition: all 0.3s linear;
}
.list-cards .ticket .image {
  height: 7rem;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.list-cards .ticket .image img {
  width: 100%;
  height: auto;
  margin-bottom: 4.5rem;
  transition: all 0.3s linear;
}
.list-cards .ticket .left {
  padding: 0rem 0rem 0rem 0rem;
  border-right: 2px solid var(--back);
  width: 4rem;
  height: 100%;
}
.list-cards .ticket .left img {
  margin-left: -2rem;
  width: 9rem;
  height: 100%;
  -ms-transform: rotate(90deg); /* IE 9 */
  transform: rotate(90deg);
}
.list-cards .ticket .left p {
  height: 100%;
  margin-left: -2rem;
  margin-top: auto;
  margin-bottom: auto;
  -ms-transform: rotate(90deg); /* IE 9 */
  transform: rotate(90deg);
}

.list-cards .ticket .right {
  padding: 0.1rem 0 0 1rem;
  margin: 0;
}
.list-cards .ticket .right h1, .list-cards .ticket .right h2, .list-cards .ticket .right span, .list-cards .ticket .right p {
  font-size: 1rem;
  color: var(--color);
  text-align: left;
  width: 100%;
  justify-content: flex-start;
  padding: 0.5rem 0;
  margin: 0;
}
.list-cards .ticket .right h1 {
  font-size: 1.4rem;
  color: var(--back);
  padding: 1.3rem 0 0.1rem;
}
.list-cards .ticket .right h2 {
  font-size: 1.5rem;
  color: var(--back);
}
.list-cards .ticket .right p {
  color: var(--back);
}
.list-cards .ticket .right span {
  font-size: 0.6rem;
  padding: 0;
}
.list-cards .ticket .right .qr {
  width: 4rem;
  height: 4rem;
  bottom: 0.5rem;
  right: 0.5rem;
}
.list-cards .ticket .right .qr img {
  width: 100%;
  height: 100%;
}
.list-cards .ticket:hover {
  box-shadow: 0.1rem 0.1rem 0.5rem #000;
}
.list-cards .ticket:hover .image img {
  transform: scale(1.1);
}
.list-cards .btn {
  margin: 1rem 1.5rem;
}
.list-cards .btn p {
  background: none;
  bottom: 1rem;
  left: 0.5rem;
  width: 55%;
}
.list-cards .btn button, .list-cards .btn a {
  margin: 0;
  color: var(--light-color1);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  box-shadow: 0.1rem 0.1rem 0.5rem rgba(0, 0, 0, 0.3333333333);
  width: 9rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  background: var(--brown);
  border-radius: 0.3rem;
  cursor: pointer;
  text-decoration: none;
}
.list-cards .btn button:hover, .list-cards .btn a:hover {
  background: var(--back);
  text-decoration: none;
  color: var(--light-color1);
}

.data {
  margin: 0;
  padding: 0;
  width: 50%;
  margin: 2rem auto 0;
}
.data li {
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid #999;
  margin: 1rem auto;
  border-radius: var(--border-radius);
}
.data li p {
  font-size: 1rem;
  color: var(--color);
  margin: 0 2rem 0 0;
  letter-spacing: 1px;
}
.data li span {
  font-size: 1.1rem;
  color: var(--back);
  letter-spacing: 1px;
}
.data hr {
  width: 100%;
  margin: 2rem auto 2rem;
  background: var(--back);
  padding: 0.5px;
  opacity: 0.6;
}

.book-inside-event h1, .book-inside-event h2 {
  font-size: 2rem;
}
.book-inside-event p {
  width: 100%;
  padding: 0 1rem;
  line-height: 150%;
  font-size: 1.2rem;
  text-align: start;
}
.book-inside-event form {
  margin: 1rem 1rem 0;
}
.book-inside-event form .space {
  margin: 0 0 0 0rem;
}
.book-inside-event hr {
  width: 100%;
  margin: 2rem 1rem;
  background: var(--back);
  padding: 0.1px;
  opacity: 0.5;
}
.book-inside-event .my {
  width: 100%;
  margin: 0;
  padding: 0 1rem;
}
.book-inside-event .my ul {
  margin: 0 10rem 0 0;
}
.book-inside-event .my img {
  width: 10rem;
}

.no {
  margin: 0.5rem auto 1.5rem;
}
.no label {
  margin: 0 2rem 0 0;
  font-size: 1.7rem;
  width: auto;
}
.no span {
  font-size: 1.1rem;
  color: var(--color);
  letter-spacing: 1px;
}
.no p {
  margin: 0.2rem 0 0 0;
  padding: 0;
  font-size: 1rem;
  color: var(--brown);
  text-align: left;
}
.no .input {
  width: 17rem;
  border: 1px solid var(--brown);
  border-radius: var(--border-radius);
  padding: 0.3rem 0;
}
.no .input .increase, .no .input .decrease {
  padding: 0 1.5rem;
  color: var(--brown);
  font-size: 1.8rem;
  cursor: pointer;
}
.no .input .increase:active, .no .input .decrease:active {
  color: var(--hover);
}
.no .input label {
  width: auto;
  margin: 0;
  font-size: 1.4rem;
}

.credit form > div, .edit form > div {
  margin: 0.6rem 0;
}
.credit form input:not([type=submit]), .edit form input:not([type=submit]) {
  margin: 0 1rem 0 0;
  padding: 0;
  width: 1.2rem;
  height: 1.2rem;
}
.credit form input.number, .edit form input.number {
  width: 10rem;
  height: auto;
  padding: 0.3rem;
  font-size: 0.9rem;
}
.credit form label, .edit form label {
  margin: 0;
  padding: 0;
}
.credit form .next, .edit form .next {
  margin: 3rem 0 0;
}
.credit form .next input, .edit form .next input {
  padding: 0.5rem 0;
  width: 10rem;
}
.credit .buttons, .edit .buttons {
  margin: 2rem auto 1rem;
}
.credit .buttons button, .credit .buttons a, .edit .buttons button, .edit .buttons a {
  margin: 0 0;
  color: var(--light-color1);
  width: 11rem;
  padding: 0.6rem 0;
  font-size: 1rem;
  background: var(--back);
  border-radius: var(--border-radius);
  cursor: pointer;
}
.credit .buttons button:hover, .credit .buttons a:hover, .edit .buttons button:hover, .edit .buttons a:hover {
  background: var(--hover);
  text-decoration: none;
  color: var(--light-color1);
}
.btn-button {
    width: 8rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--light-color);
    background: var(--back);
    border-radius: var(--border-radius1);
}
.btn-button:hover{
  background: var(--hover);
  text-decoration: none;
  color: var(--light-color1);
}
.alert {
  width: 50%;
}

.barcode img{
  width: 15rem;
}

.seller-reg label, input, select{
  font-family: sans-serif;
}

.ltr{
  direction: ltr;
}

@media (max-width: 1025px) {
  .list-cards .ticket {
    width: 100%;
  }
  .list-cards .card {
    width: 100%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 85%;
  }
  .full-header {
    height: 25rem;
  }
  .full-header .data {
    margin-top: -3rem;
  }
  .section {
    padding: 1rem 0 2rem;
  }
  .footer ul {
    flex-wrap: wrap;
    width: 100%;
  }
  .footer ul li {
    width: 45%;
    margin: 1rem 0;
  }
  .list-cards {
    width: 100%;
  }
  .list-cards .card {
    height: 21rem;
  }
  .list-cards .card p {
    font-size: 2rem;
  }
  .list-cards .card, .list-cards .ticket {
    margin: 1rem auto;
  }
  form, .book-pay {
    width: 90%;
  }
  form > div, form > label, .book-pay > div, .book-pay > label {
    min-width: 100%;
  }
  .section .feat .feat-image {
    display: none;
  }
  .section .feat-image1 {
    display: block;
  }
  .feat .feat-image {
    display: none;
  }
  .feat-image1 {
    display: block;
  }
  .desk-top{
    display: none;
  }
  .mobile{
    display: block;
  }
  .credit .my {
    width: 100%;
    flex-wrap: wrap;
  }
  .credit .my ul {
    margin: 1rem 0;
    width: 100%;
  }
  .data {
    width: 100%;
  }
  .alert {
    width: 100%;
  }
  .part .list .home-slider .swiper-wrapper img {
    width: 100%;
  }

  header .header-slider .swiper-wrapper .swiper-slide img{
    margin-bottom: 0;
  }
  header .header-slider .swiper-wrapper .swiper-slide .data {
    top: 10rem;
  }
  header .header-slider .swiper-wrapper .swiper-slide .data h1{
    font-size: 2rem;
  }
  header .header-slider .swiper-wrapper .swiper-slide .data p{
    font-size: 1rem;
  }
  header .header-slider .swiper-wrapper .swiper-slide .data .header-h1 {
    width: 75%;
    font-size: 1.2rem;
    margin-inline-start: 20px;
    letter-spacing: 0;
  }
  .section h1, .section h3, .section h3{
        font-size: 2.5rem;
  }
  .part h1, .part h3, .part h3{
    font-size: 2rem;
    font-weight: bold;
  }
  .barcode img{
    width: 35rem;
  }
  .part {
    padding: 4rem 0rem 7rem;
  }
  .part .list{
    margin: 0;
  }
  .part .list .swiper-pagination{
    bottom: -2.5rem;
  }
  .header-h2 {
    font-size: 4rem !important;
  }
  .image img {
    width: 130%;
  }
  .book-inside-event form {
    margin: 1rem 0 0;
  }
  .image {
    width: 200%;
    margin: 1rem auto;
  }

  .main-sp {
    width: 100%;
  }
}/*# sourceMappingURL=main.css.map */