@charset "UTF-8";
@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(300%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes scrollPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
@keyframes explodeCursor {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes glitch {
  0% {
    text-shadow: 2px 2px #a47b28;
  }
  20% {
    text-shadow: -2px -2px #ff2c55;
  }
  40% {
    text-shadow: 2px -2px #00fff0;
  }
  60% {
    text-shadow: -2px 2px #a47b28;
  }
  80% {
    text-shadow: 2px 2px #ff2c55;
  }
  100% {
    text-shadow: none;
  }
}
@keyframes floatGlow {
  from {
    transform: translate(-50px, -50px);
  }
  to {
    transform: translate(50px, 50px);
  }
}
html {
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  height: 100%;
}

body {
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  font-size: 18px;
  background: #0b0b0b;
  color: #aaaaaa;
  margin: 0;
  line-height: 1.618;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

figure {
  max-width: 100%;
  height: auto;
  margin: 0;
}

ul {
  padding-left: 40px;
  -webkit-padding-start: 40px;
  -moz-padding-start: 40px;
  padding-start: 40px;
}

li {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-top: 0;
  color: #000000;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 42px;
  line-height: 1.125;
}

h2 {
  font-size: 36px;
  line-height: 1.25;
}

h3 {
  font-size: 24px;
  line-height: 1.25;
}

h4 {
  font-size: 18px;
  line-height: 1.3;
}

h5 {
  font-size: 16px;
  line-height: 1.375;
}

h6 {
  font-size: 14px;
  line-height: 1.4;
}

a {
  cursor: pointer;
  outline: none;
  color: #000000;
  text-decoration: none !important;
  transition: all 0.2s ease-in-out;
}
a:hover, a:active, a:focus {
  color: #a47b28;
  text-decoration: none;
  outline: none;
}

p {
  margin: 0 0 20px;
}

button {
  border: none;
  background-image: none;
  background: transparent;
}
button:focus {
  outline: 0;
}

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-color: #dcd7ca;
  border-collapse: collapse;
  border-spacing: 0;
}

thead {
  vertical-align: bottom;
  white-space: nowrap;
}

th, td {
  border: 0.1rem solid #dcd7ca;
  line-height: 1.4;
  margin: 0;
  overflow: visible;
  padding: 0.5em;
}

th {
  font-weight: 700;
}
th a {
  text-decoration: underline !important;
}
th a:hover {
  color: #DA0D2B;
}

blockquote {
  margin: 1rem 0;
  padding-left: 70px;
  position: relative;
  display: inline-block;
  font-style: normal !important;
  font-weight: 400 !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
blockquote::before {
  color: #a47b28;
  content: "“";
  font-size: 110px;
  margin-right: 0.6em;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  top: -30px;
  left: 11px;
}
blockquote p {
  line-height: 22px;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
  color: #ffffff;
}

q {
  quotes: none;
}

*::-moz-selection,
*::selection {
  background-color: #a47b28;
  color: #ffffff;
}

::placeholder {
  color: #ffffff;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ffffff;
}

::-ms-input-placeholder {
  color: #ffffff;
}

.clearfix {
  zoom: 1;
}
.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}
.clearfix::after {
  clear: both;
}

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

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

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

.text-white {
  color: #ffffff;
}

.head-title-1 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 20px;
}

.head-title-2 {
  font-size: 3.2rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 3px;
  margin-top: 0;
  color: #a47b28;
  margin-bottom: 20px;
}

span.title-end {
  font-family: "Roboto", sans-serif;
  color: #a47b28;
}

.dugem-text {
  font-size: 18px;
  line-height: 28px;
  color: #aaaaaa;
}

.the-title {
  position: relative;
}

.after-title {
  position: relative;
}
.after-title::after {
  position: absolute;
  content: "";
  background: #a47b28;
  width: 15px;
  bottom: 15px;
  height: 15px;
  border-radius: 50%;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.column {
  box-sizing: border-box;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 100%;
  display: inline-block;
  float: left;
}

.column-1 {
  width: 100%;
}

.column-2 {
  width: 50%;
}

.column-3 {
  width: 33.33333%;
}

.column-2of3 {
  width: 66.66667%;
}

.column-4 {
  width: 25%;
}

.column-5 {
  width: 20%;
}

.column-25 {
  width: 25%;
}

.column-75 {
  width: 75%;
}

.column-40 {
  width: 40%;
}

.column-60 {
  width: 60%;
}

.main-wrapper {
  position: relative;
}
.main-wrapper.flow {
  overflow: hidden;
}

.content {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  height: 100%;
  width: 100%;
}

.background-overlay {
  background-color: #000000;
  opacity: 0.9;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

header {
  position: absolute;
  top: 0;
}

#header {
  width: 100%;
  z-index: 9999;
  transition: all 0.3s ease;
  background: transparent;
}
#header.is-sticky {
  position: fixed;
  top: 0;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  animation: slideDown 0.3s ease;
}
#header.is-sticky .header-clear {
  padding: 10px 0;
}
#header .info-wrap {
  padding: 5px 0;
}
#header .info-wrap i {
  vertical-align: middle;
  color: #ffffff;
  cursor: pointer;
  font-size: 18px;
}
#header .header-info-url a {
  color: #ffffff;
  padding: 10px 30px;
}

.header-clear {
  display: flex;
  align-items: center;
}

.main-nav {
  vertical-align: middle;
  float: left;
  background-color: transparent;
  margin-top: 0;
}

.main-menu a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.header-content-left {
  position: relative;
  float: left;
  padding-left: 0;
  padding-top: 9px;
}

.header-content-center {
  text-align: center;
  margin: auto;
}

.header-content-right {
  position: relative;
  padding-top: 10px;
  text-align: right;
  margin: 0 0 0 auto;
}

.info-wrap {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}
.info-wrap:last-child {
  margin-right: 0;
}

.head-item {
  margin-right: 20px;
}
.head-item:last-child {
  margin-right: 0;
}

.head-info-icon {
  margin-right: 5px;
}

.logo {
  display: flex;
  float: left;
  margin-left: 10px;
}
.logo .custom-logo-link {
  width: 168px;
  height: 50px;
}

.logo-footer .custom-logo-link img {
  width: 168px;
  height: 50px;
}

.header-style-1 {
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 101;
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 0.5s ease;
}
.header-style-1.header-alt {
  position: relative;
}
.header-style-1.header-expanded {
  background-color: #000000;
}
.header-style-1 ul.sm-clean > li {
  padding-top: 10px;
  padding-bottom: 0;
  position: relative;
}
.header-style-1 ul.sm-clean > li + li {
  margin-left: 30px;
}
.header-style-1 .menu-link:hover {
  color: #eaeaea;
}
.header-style-1 a.menu-link {
  font-family: "Montserrat", sans-serif;
  text-align: inherit;
  word-spacing: 0;
  font-size: 16px;
  letter-spacing: 0;
  position: relative;
  font-weight: 600;
  font-style: normal;
  color: #ffffff;
  text-shadow: 3px 3px 5px black;
}
.header-style-1 a.menu-link::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a47b28;
  transform: scale3d(0, 5, 1);
  transform-origin: 0% 50%;
  transition: transform 0.3s cubic-bezier(1, 0.68, 0.16, 0.9);
}
.header-style-1 a.menu-link:hover::before, .header-style-1 a.menu-link.active::before {
  transform: scale3d(1, 1, 1);
}
.header-style-1 .current-menu-item > a.menu-link::before,
.header-style-1 .menu-item:hover .menu-link::before {
  background-color: #a47b28;
  transform: scale3d(1, 1, 1);
}
.header-style-1 .search {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.95);
}
.header-style-1 .search::before, .header-style-1 .search::after {
  border-color: #a47b28;
}
.header-style-1 .search__info {
  color: #a47b28;
}
.header-style-1 .search__input {
  font-family: inherit;
  font-size: 10vw;
  line-height: 1;
  display: inline-block;
  box-sizing: border-box;
  width: 75%;
  padding: 0;
  color: #ffffff;
  outline: none;
  border: none;
  border-bottom: 1px solid;
  height: 190px;
  background-color: transparent;
}
.header-style-1 .search__input::placeholder {
  color: #ffffff;
}
.header-style-1 .btn--search-close i {
  color: #ffffff;
  cursor: pointer;
}

.header-expanded {
  position: relative;
  left: 0;
  right: 0;
  background-color: #0b0b0b;
  top: 0;
  transition: all 0.5s ease;
}
.header-expanded .main-nav {
  width: 90%;
  margin: auto;
  float: none;
  border-radius: 0;
  background: #000000;
}

.header-alt .head-info-icon,
.header-alt .head-info-text {
  display: inline-block;
}
.header-alt a.menu-link {
  color: #ffffff;
}
.header-alt a.menu-link::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #a47b28;
  transform: scale3d(0, 5, 1);
  transform-origin: 0% 50%;
  transition: transform 0.3s cubic-bezier(1, 0.68, 0.16, 0.9);
}
.header-alt a.menu-link:hover::before, .header-alt a.menu-link.active::before {
  transform: scale3d(1, 1, 1);
}
.header-alt .menu-item:hover .menu-link::before {
  background-color: #a47b28;
  transform: scale3d(1, 1, 1);
}
.header-alt.header-expanded {
  background-color: #0b0b0b;
}
.header-alt.header-expanded a.menu-link {
  color: #ffffff;
}
.header-alt.header-expanded .main-nav {
  background-color: #0b0b0b;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-login {
  padding: 8px 18px;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.4);
  font-weight: 700;
}
.btn-login:hover {
  background: #ffffff;
  color: #000000;
}

.btn-register {
  padding: 8px 18px;
  background: #a47b28;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 125px;
}
.btn-register:hover {
  background: rgba(164, 123, 40, 0.5);
}

#footer {
  background-color: #0b0b0b;
  background-repeat: no-repeat;
  background-attachment: inherit;
  background-position: center center;
  background-size: inherit;
  background-image: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.footer .logo-footer {
  margin: 20px 5px;
}
.footer .logo-footer img {
  margin: auto;
}

.footer-wrap {
  padding-top: 0;
  padding-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid #151515;
  padding: 25px 0;
}
#footer .footer-bottom {
  padding-top: 60px;
  padding-bottom: 60px;
}
.footer-bottom .social-footer ul {
  padding-left: 0;
}
.footer-bottom .social-footer ul li {
  display: inline-block;
  margin-left: 20px;
}
.footer-bottom .social-footer ul li i {
  vertical-align: middle;
  margin-right: 7px;
}
.footer-bottom .social-footer ul li a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-bottom .social-footer ul li a:hover {
  color: #a47b28;
}

.copyright-text {
  margin: 20px 5px;
  font-size: 15px;
  color: #aaaaaa;
}

.button-basic-1 {
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-family: "Poppins", sans-serif;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  text-decoration: none !important;
  fill: #ffffff;
  padding: 16px 20px;
  color: #ffffff;
  background-color: rgba(255, 44, 85, 0);
  border-style: solid;
  border-width: 2px;
  border-color: #a47b28;
  border-radius: 50px;
}
.button-basic-1:hover {
  color: #ffffff;
  transform: translateY(8px);
  background-color: #a47b28;
  border-color: #a47b28;
}

.button-basic-2 {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  fill: #ffffff;
  color: #ffffff;
  background-color: #a47b28;
  border-style: solid;
  border-width: 2px;
  border-color: #a47b28;
  border-radius: 50px;
  padding: 15px 30px;
  display: inline-block;
}
.button-basic-2:hover {
  transform: translateY(8px);
  color: #ffffff;
  background-color: #a47b28;
  border-color: #a47b28;
}

.button-basic-3 {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  fill: #ffffff;
  padding: 15px 30px;
  color: #ffffff;
  background-color: #a47b28;
  border-style: solid;
  border-width: 2px;
  border-color: #a47b28;
  border-radius: 50px;
  display: inline-block;
}
.button-basic-3:hover {
  color: #ffffff;
}

.button-view {
  position: relative;
  z-index: 2;
}

.btn-primary {
  width: 100%;
  padding: 14px;
  background: #a47b28;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(164, 123, 40, 0.4);
}

.btn-ticket {
  background: #a47b28;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 12px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ticket:hover {
  background: #c89b3c;
}

.btn-reserve {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #a47b28;
  color: #ffffff;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.btn-reserve:hover {
  transform: translateY(-2px);
}

.btn-404 {
  display: inline-block;
  padding: 12px 30px;
  background: #a47b28;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-404:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(164, 123, 40, 0.4);
}

.auth-btn {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  background: linear-gradient(135deg, #a47b28, #c89b3c);
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.auth-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(164, 123, 40, 0.4);
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
  margin: auto;
}

.btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.btn.loading .btn-text {
  display: none;
}
.btn.loading .btn-loader {
  display: inline-block;
}

#load-more {
  margin-top: 40px;
  padding: 12px 30px;
  background: #a47b28;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  cursor: pointer;
}

.pagination .nav-links {
  text-align: center;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 15px;
  margin: 5px;
  background: #111111;
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  min-width: 20px;
  text-align: center;
}
.pagination .page-numbers.current, .pagination .page-numbers:hover {
  background: #a47b28;
}

.cursor-follow {
  width: 18px;
  height: 18px;
  background: #a47b28;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, opacity 0.2s ease;
}
.cursor-follow.explode {
  animation: explodeCursor 0.35s ease forwards;
}
.cursor-follow.hidden {
  opacity: 0;
}
@media (max-width: 768px) {
  .cursor-follow {
    display: none;
  }
}

#page-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #111 0%, #000 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.loader-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader-logo img {
  max-width: 330px;
  width: 100%;
  height: auto;
  animation: fadeUp 1s ease forwards;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .loader-logo img {
    max-width: 160px;
  }
}

.loader-bar {
  width: 20%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}
.loader-bar span {
  display: block;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #a47b28, transparent);
  box-shadow: 0 0 10px #a47b28, 0 0 20px #a47b28;
  animation: loadingBar 1.5s infinite;
}

.loader-text {
  font-size: 13px;
  color: #aaaaaa;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 2s infinite alternate;
}

#scrollTopBtn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: #a47b28;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 10px 25px rgba(164, 123, 40, 0.4);
}
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#scrollTopBtn:hover {
  background: #8c6821;
  transform: scale(1.1);
}
#scrollTopBtn i {
  font-size: 16px;
}
#scrollTopBtn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(164, 123, 40, 0.4);
  animation: scrollPulse 2s infinite;
  z-index: -1;
}

.floating-contact {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.floating-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
}
.floating-btn.primary {
  width: 55px;
  height: 55px;
  background: #a47b28;
  border-radius: 50%;
  border: none;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(164, 123, 40, 0.5);
  transition: all 0.3s ease;
  position: relative;
}
.floating-btn.primary:hover {
  background: #a47b28;
  transform: scale(1.1);
}
.floating-btn.primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #a47b28;
  animation: pulse 2s infinite;
  z-index: -1;
}

.offcanvas-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  z-index: 9999;
  transition: 0.4s;
}
.offcanvas-menu.active {
  right: 0;
}
.offcanvas-menu.active .offcanvas-overlay {
  opacity: 1;
  visibility: visible;
}
.offcanvas-menu.active .offcanvas-content {
  transform: translateX(0);
}

.offcanvas-content {
  position: absolute;
  right: 0;
  width: 380px;
  height: 100%;
  background: linear-gradient(180deg, #0e0e0e, #1a1a1a);
  color: #ffffff;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  transform: translateX(100%);
  transition: 0.4s ease;
}

.offcanvas-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.offcanvas-logo img {
  max-width: 300px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.5));
}

.offcanvas-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.offcanvas-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
}

.offcanvas-title {
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 40px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}

.offcanvas-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 70px;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  opacity: 0.9;
}
.info-item i {
  color: #a47b28;
  font-size: 18px;
}

.offcanvas-btn {
  margin-top: 70px;
}
.offcanvas-btn .button-basic-2:hover {
  transform: translateY(8px);
}

.offcanvas-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.offcanvas-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}
.offcanvas-social a:hover {
  background: #a47b28;
  transform: translateY(-5px);
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 99999;
}
.auth-modal.active {
  display: block;
}
.auth-modal.force-login .auth-close {
  display: none;
}
.auth-modal.force-login .auth-overlay {
  pointer-events: none;
}

.auth-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.auth-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 420px;
  max-width: 90%;
  background: #111111;
  padding: 40px 30px;
  border-radius: 16px;
  color: #ffffff;
  text-align: center;
  transition: 0.3s ease;
}
.auth-modal.active .auth-box {
  transform: translate(-50%, -50%) scale(1);
}

.auth-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
}

.auth-tabs {
  display: flex;
  margin-bottom: 25px;
  border-bottom: 1px solid #222222;
}

.tab-btn {
  flex: 1;
  padding: 12px;
  background: transparent;
  border: none;
  color: #777;
  cursor: pointer;
  font-weight: 500;
}
.tab-btn.active {
  color: #a47b28;
  border-bottom: 2px solid #a47b28;
}

.auth-content {
  display: none;
}
.auth-content.active {
  display: block;
}
.auth-content h2 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.auth-content p {
  color: #aaaaaa;
  font-size: 14px;
  margin-bottom: 15px;
}
.auth-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-content input {
  width: 92%;
  padding: 14px 16px;
  border: none;
  border-radius: 10px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}
.auth-content input::placeholder {
  color: #666;
}
.auth-content input:focus {
  border: 1px solid #a47b28;
  background: #222222;
}

.force-login-message {
  background: rgba(164, 123, 40, 0.1);
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 13px;
  color: #a47b28;
}

.switch-text {
  margin-top: 15px;
  font-size: 14px;
  color: #aaaaaa;
}

.switch-link {
  color: #a47b28;
  cursor: pointer;
  font-weight: 600;
  margin-left: 5px;
}
.switch-link:hover {
  text-decoration: underline;
}

.input-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #aaaaaa;
}

.password-rules {
  font-size: 12px;
  color: #888;
  margin: 5px 0 10px;
}

.form-message {
  margin-top: 10px;
  font-size: 14px;
}
.form-message.error {
  color: #ff4d4d;
}
.form-message.success {
  background: rgba(76, 175, 80, 0.1);
  padding: 15px;
  border-radius: 8px;
  color: #4caf50;
  text-align: center;
}

.auth-link-login {
  display: inline-block;
  margin-top: 10px;
  color: #a47b28;
  cursor: pointer;
  font-weight: 600;
}
.auth-link-login:hover {
  text-decoration: underline;
}

.user-menu {
  position: relative;
  display: inline-block;
}
.user-menu.active .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  color: #ffffff;
}
.user-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: #a47b28;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #ffffff;
  font-size: 14px;
}
.user-avatar.large {
  width: 40px;
  height: 40px;
  font-size: 16px;
}

.user-name {
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: 120%;
  width: 240px;
  background: #111111;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
  overflow: hidden;
}
.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.user-dropdown a i {
  width: 20px;
  text-align: center;
  font-size: 14px;
}
.user-dropdown a:hover {
  background: rgba(164, 123, 40, 0.1);
  color: #ffffff;
}
.user-dropdown a.logout {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #ff4d4d;
}
.user-dropdown a.logout:hover {
  background: rgba(255, 77, 77, 0.1);
}

.user-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.user-dropdown-header small {
  color: #888;
  font-size: 12px;
}

.main-banner .swiper {
  width: 100%;
}
.main-banner .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 145px 0 130px !important;
}
.main-banner .swiper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.89);
}
.main-banner .swiper .swiper-slide.slide-1 {
  background-image: url("../img/slide-1.png");
}
.main-banner .swiper .swiper-slide.slide-2 {
  background-image: url("../img/slide-2.png");
}
.main-banner .swiper .swiper-slide.slide-3 {
  background-image: url("../img/slide-3.png");
}
@media screen and (max-width: 1200px) {
  .main-banner .swiper .swiper-slide {
    padding: 200px 0 130px !important;
  }
}
@media screen and (max-width: 576px) {
  .main-banner .swiper .swiper-slide {
    padding-top: 210px !important;
    padding-bottom: 100px !important;
  }
}
.main-banner .swiper .content-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  padding-top: 90px;
}
.main-banner .swiper .content-slider h2 {
  color: #a47b28;
}
@media screen and (max-width: 991px) {
  .main-banner .swiper .content-slider h2 {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .main-banner .swiper .content-slider h2 {
    font-size: 25px;
    text-align: center;
  }
}
.main-banner .swiper .content-slider .text-desc {
  max-width: 100%;
  text-wrap: pretty;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .main-banner .swiper .content-slider .text-desc {
    width: 70%;
  }
}
@media screen and (max-width: 576px) {
  .main-banner .swiper .content-slider .text-desc {
    width: 100%;
    font-size: 16px;
  }
}
.main-banner .swiper .swiper-pagination {
  bottom: 70px !important;
  gap: 10px !important;
}
@media screen and (max-width: 576px) {
  .main-banner .swiper .swiper-pagination {
    bottom: 10px !important;
  }
}
.main-banner .swiper .swiper-pagination-bullet {
  width: 18px !important;
  height: 18px !important;
  background: #aaaaaa !important;
  opacity: 0.5 !important;
  border-radius: 50% !important;
  cursor: pointer;
  pointer-events: auto;
}
.main-banner .swiper .swiper-pagination-bullet-active {
  opacity: 1 !important;
  background: #a47b28 !important;
}
.main-banner .swiper .swiper-wrapper {
  height: auto;
}
.main-banner .swiper .swiper-wrapper .swiper-slide {
  min-height: 500px;
}
@media screen and (max-width: 911px) {
  .main-banner .swiper .swiper-wrapper .swiper-slide {
    min-height: 250px;
  }
}

.main-banner {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-title {
  position: absolute;
  z-index: 6;
  text-align: center;
  bottom: 19%;
  right: 0;
  left: 0;
  margin: auto;
}
.image-title p {
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.5;
}
.image-title a.button-basic-1 {
  margin-top: 20px;
  font-size: 1.3rem;
  padding: 12px 30px;
}

.container.event-banner-container {
  width: 60%;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .container.event-banner-container {
    width: 80%;
  }
}

.content-banner {
  align-items: center;
  justify-content: center;
}

.event-banner-thumbnail {
  width: 100%;
  padding-top: 40px;
}
.event-banner-thumbnail img {
  width: 350px;
  min-width: 200px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .event-banner-thumbnail img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
  }
}

.event-banner-details {
  text-align: center;
  padding: 20px;
  background-color: rgba(11, 11, 11, 0.6);
  border-radius: 15px;
}
.event-banner-details .head-title-1,
.event-banner-details .head-title-2 {
  font-size: 3.5rem;
}
@media screen and (max-width: 786px) {
  .event-banner-details .head-title-1,
  .event-banner-details .head-title-2 {
    font-size: 2.5rem;
  }
}
.event-banner-details .button-basic-1,
.event-banner-details .button-basic-2 {
  font-size: 12px;
  padding: 10px;
}
@media screen and (max-width: 576px) {
  .event-banner-details {
    margin-top: 30px;
  }
}
.event-banner-details .event-meta-info {
  font-size: 20px;
}
@media screen and (max-width: 786px) {
  .event-banner-details .event-meta-info {
    font-size: 18px;
  }
}
.event-banner-details .event-countdown {
  margin: 15px 0;
}
.event-banner-details .event-banner-actions {
  display: flex;
  flex-direction: column;
}
.event-banner-details .event-banner-actions .button-basic-1 {
  margin: 0 auto 15px;
  width: 150px;
}
.event-banner-details .event-banner-actions .button-basic-2 {
  width: 150px;
  margin: 0 auto;
}

.countdown {
  display: flex;
  justify-content: center;
}
.countdown .float {
  display: flex;
  position: relative;
  margin: 0 5px 0 0;
}
.countdown .float::after {
  position: absolute;
  content: ":";
  right: -10px;
  top: -7px;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
}
.countdown .float:last-child::after {
  content: "";
}
.countdown h3 {
  color: #ffffff;
  margin: 0;
  font-size: 40px;
  font-weight: normal;
}
.countdown span {
  font-size: 20px;
  font-weight: bold;
  font-style: italic;
  color: #a47b28;
}
.countdown .days-count,
.countdown .hours-count,
.countdown .minutes-count,
.countdown .seconds-count {
  flex-direction: column;
}

.single-news .blog-loop:before {
  border-top: 175px solid #0b0b0b;
}

.blog-loop .blog-slide .swiper-pagination-bullet {
  width: 60px;
  height: 6px;
  margin-right: 20px;
  display: inline-block;
  border-radius: 0;
  background: #333333;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.blog-loop .blog-slide .swiper-pagination-bullet:hover {
  background: #a47b28;
  opacity: 1;
}
.blog-loop .blog-slide .swiper-pagination-bullet-active {
  background: #a47b28;
  opacity: 1;
}
.blog-loop:before {
  position: absolute;
  content: "";
  width: 0%;
  height: 53px;
  top: -1px;
  z-index: 2;
  border-top: 175px solid #0b0b0b;
  border-right: 2500px solid transparent;
}

.single-news .blog-loop:before {
  border-top: 175px solid #000000;
}

.blog-slide .post-category a.button-basic-1 {
  margin-bottom: 0;
  text-transform: capitalize;
}

.book-table {
  padding: 100px 0 90px;
  position: relative;
}
.book-table::before {
  position: absolute;
  content: "";
  width: 100%;
  z-index: 3;
  height: 53px;
  top: -193px;
  left: -100px;
  border-bottom: 140px solid #0b0b0b;
  border-left: 2000px solid transparent;
}
.book-table::before {
  border-bottom: 140px solid #0b0b0b;
  border-left: 2000px solid transparent;
  top: -193px;
  left: -100px;
}

.book-wrap .contact-form-style input,
.book-wrap .contact-form-style textarea {
  background-color: transparent;
  color: #ffffff;
  width: 95%;
  max-width: 95%;
  margin-bottom: 20px;
  padding: 5px 14px;
  border: 1px solid #aaaaaa;
  border-top: 0;
  border-right: 0;
  transition: all 0.2s ease-in-out;
  outline: none;
}
.book-wrap .contact-form-style input {
  height: 40px;
}
.book-wrap .contact-form-style textarea {
  min-height: 80px;
}
.book-wrap .contact-form-style input:hover,
.book-wrap .contact-form-style input:focus,
.book-wrap .contact-form-style textarea:hover,
.book-wrap .contact-form-style textarea:focus {
  border-bottom-color: #a47b28;
  border-left-color: #a47b28;
}
.book-wrap .contact-form-style input[type=submit] {
  width: auto;
  border: 2px solid #a47b28;
  padding: 10px 35px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.book-wrap .contact-form-style .button-basic-1:hover {
  transform: translateY(0);
  background-color: #a47b28;
}

.event-recent-block {
  padding: 110px 0px 27px 0px;
  position: relative;
  /* background-color: #0b0b0b; */
  background-color: rgba(164, 123, 40, 0.1215686275);
}
.event-recent-block::after {
  position: absolute;
  content: "";
  width: 0;
  height: 53px;
  bottom: -228px;
  border-top: 175px solid #1e190f;
  border-right: 2500px solid transparent;
  z-index: 999;
}
.event-recent-block .global-countdown {
  margin: 20px 0;
}
.event-recent-block .global-countdown .countdown {
  justify-content: left;
  text-align: center;
}
.event-recent-block .global-block {
  padding: 110px 0 27px;
  position: relative;
  background-color: rgba(164, 123, 40, 0.0117647);
}
.event-recent-block .global-block::before {
  position: absolute;
  content: "";
  width: 100%;
  z-index: 3;
  height: 53px;
  top: -193px;
  left: -100px;
  border-bottom: 140px solid rgba(164, 123, 40, 0.0117647);
  border-left: 2000px solid transparent;
}
.event-recent-block .global-block .button-basic-1 {
  margin-right: 5px;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 2px;
  fill: #ffffff;
  margin-bottom: 20px;
  padding: 8px 20px;
  color: #ffffff;
  background-color: rgba(255, 44, 85, 0);
  border-style: solid;
  border-width: 2px;
  border-color: #a47b28;
  border-radius: 50px;
}
.event-recent-block .global-block .button-basic-1:hover {
  background-color: #a47b28;
}
.event-recent-block .global-block .button-basic-2 {
  font-family: "PT Sans", sans-serif, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: capitalize;
  letter-spacing: 2px;
  fill: #ffffff;
  color: #ffffff;
  display: inline-block;
  background-color: #a47b28;
  border-style: solid;
  border-width: 2px;
  border-color: #a47b28;
  border-radius: 50px;
  padding: 10px 20px;
}
.event-recent-block .global-title h2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2em;
  color: #ffffff;
  margin-top: 0;
}
.event-recent-block .global-title h5 {
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1em;
  letter-spacing: 3px;
  margin-top: 0;
  margin-bottom: 20px;
  color: #a47b28;
}
.event-recent-block .global-counter {
  padding: 0 0 0 80px;
}
@media screen and (max-width: 768px) {
  .event-recent-block .global-counter {
    padding: 0;
  }
}
.event-recent-block .global-buy {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 320px) {
  .event-recent-block .global-buy {
    flex-direction: column;
    align-items: center;
  }
  .event-recent-block .global-buy .button-basic-1 {
    margin-bottom: 16px;
  }
}

.services-block.is-recent-events {
  padding-bottom: 290px;
}

/**
* BEGIN PHOTOS
* SECTION PHOTOS
*/
/**
* END PHOTOS
*/
span.wpcf7-not-valid-tip {
  padding-bottom: 12px;
}

.section-photos:before {
  position: absolute;
  content: "";
  width: 100%;
  z-index: 3;
  height: 53px;
  top: -193px;
  left: -100px;
  border-bottom: 140px solid #0b0b0b;
  border-left: 2000px solid transparent;
}
.section-photos {
  position: relative;
  padding: 100px 0px 100px 0px;
  z-index: 2;
}
.section-photos .photos-slide {
  width: 85%;
  margin: 50px auto;
}
.section-photos .fg-carousel-bottom {
  margin-top: 40px;
}

.services-block {
  position: relative;
  padding: 100px 0px 100px 0px;
  background-color: #0b0b0b;
}
.services-block .background-overlay {
  opacity: 0.3;
}
.services-block {
  /* &:before {
    position: absolute;
    content: "";
    width: 100%;
    z-index: 3;
    height: 53px;
    top: -193px;
    left: -100px;
    border-bottom: 140px solid a.$color-dark;
    border-left: 2000px solid transparent;
  }
  */
}
.services-block .swiper-container {
  width: 80%;
}
.services-block .swiper-button-next:after {
  display: none;
}
.services-block .swiper-button-next:hover .car-page-arrow-next {
  background: #a47b28;
}
.services-block .swiper-button-next:hover span {
  right: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.services-block .swiper-button-next span {
  position: absolute;
  right: -40px;
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 10px;
  cursor: pointer;
  color: #ffffff;
}
.services-block .swiper-container-rtl .swiper-button-prev:after {
  display: none;
}
.services-block .swiper-container-rtl .swiper-button-next:after {
  display: none;
}
.services-block .swiper-button-prev:after {
  display: none;
}
.services-block .swiper-button-prev:hover .car-page-arrow-prev {
  background: #a47b28;
}
.services-block .swiper-button-prev:hover span {
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.services-block .swiper-button-prev span {
  position: absolute;
  left: -40px;
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-bottom: 10px;
  cursor: pointer;
  color: #ffffff;
}
.services-block .swiper-button-prev {
  position: relative;
  float: left;
  width: 10%;
  transform: translate(37px, 86px);
  overflow: hidden;
}
.services-block .car-page-arrow-prev {
  content: "";
  position: absolute;
  left: 0;
  width: 60px;
  height: 4px;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background: #ffffff;
}
.services-block .car-page-arrow-next {
  position: absolute;
  right: 0;
  width: 60px;
  height: 4px;
  bottom: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 0 0 auto;
  background: #ffffff;
}

.testimonial-wrap .the-title h5 {
  margin-bottom: 0;
}
.testimonial-wrap .the-title {
  margin-bottom: 20px;
}
.testimonial-wrap .swiper-button-next {
  position: relative;
  float: right;
  margin-right: 28px;
  width: 10%;
  transform: translate(-5px, 86px);
  overflow: hidden;
}

.services-block.about-testi {
  padding: 80px 0px 250px 0px;
  margin-top: 15px;
}
.services-block.about-testi:before {
  display: none;
}

.testimonial-background {
  background-image: url("../img/testimonial-cover.png");
  background-size: cover;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  display: flex;
  opacity: 0.8;
  background-position: center;
  bottom: 0;
  justify-content: center;
}

.testimonial-slide {
  position: relative;
  padding-top: 50px;
}

.testimonial-text p {
  color: #ffffff;
  font-size: 3.1rem;
  font-size: 31px;
  font-weight: normal;
  font-style: italic;
  line-height: 1.2em;
  text-align: center;
}

.testimonial-image {
  margin-right: 10px;
  float: left;
}
.testimonial-image img {
  width: 60px;
  border-radius: 50%;
  height: 60px;
  border: 5px solid #a47b28;
}

.testimonial-detail-inner {
  margin-right: 10px;
  float: left;
  width: 100%;
  vertical-align: top;
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
}
.testimonial-detail-inner h5 {
  color: #a47b28;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  margin-top: 18px;
  line-height: 0.3em;
}
.testimonial-detail-inner .testi-job {
  color: #ffffff;
}

.test-info {
  float: left;
  text-align: left;
  margin-top: 15px;
}

.section-contact {
  padding: 100px 0px 100px 0px;
  position: relative;
}
.section-contact:before {
  position: absolute;
  content: "";
  width: 100%;
  z-index: 3;
  height: 53px;
  top: -193px;
  left: -100px;
  border-bottom: 140px solid #0b0b0b;
  border-left: 2000px solid transparent;
}

.section-partners {
  padding: 100px 0 100px 0;
  position: relative;
}
.section-partners:before {
  position: absolute;
  content: "";
  width: 100%;
  z-index: 3;
  height: 53px;
  top: -193px;
  left: -100px;
  border-bottom: 140px solid #0b0b0b;
  border-left: 2000px solid transparent;
}

.client-wrap {
  align-content: center;
  align-items: center;
}
.client-wrap .the-title h2 {
  font-size: 3rem;
}

.blog-loop {
  background-image: url("../img/bg-news.png");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 295px 0px 210px 0px;
  z-index: 2;
}
.blog-loop .news-title {
  position: relative;
  margin-bottom: 80px;
}
.blog-loop .the-title {
  text-align: left;
  float: left;
}
.blog-loop .button-view {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-self: center;
}
.blog-loop .swiper-post {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.blog-loop .blog-slide .post-title h3 {
  font-size: 2.5rem;
  font-size: 25px;
  line-height: 1.3;
}
.blog-loop .blog-slide .post-title h3 a {
  color: #fff;
}
.blog-loop .blog-slide .post-title h3 a:hover {
  color: #a47b28;
}
.blog-loop .blog-slide .post-thumb {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-loop .blog-slide .post-thumb img {
  width: 100%;
  opacity: 0.7;
}
.blog-loop .blog-slide .post-content-wrap {
  width: 85%;
  max-width: 85%;
  position: absolute;
  top: 40px;
  z-index: 2;
  right: -250px;
}
.blog-loop .post-content-wrap .post-date {
  position: relative;
}
.blog-loop .post-content-wrap .post-date a {
  color: #a47b28;
  font-style: italic;
  padding-left: 45px;
  font-weight: 500;
  position: relative;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-bottom: 20px;
}
.blog-loop .post-content-wrap .post-date a:before {
  content: "";
  height: 2px;
  background-color: #a47b28;
  width: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.blog-loop .post-content-wrap .post-date a:hover {
  color: #fff;
}
.blog-loop .post-content-wrap .post-date:hover:before {
  background: #fff;
  text-decoration: none !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog-loop .post-thumb .dugem-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  display: block;
  left: 0;
  top: 0;
  width: 103%;
  height: 103%;
  z-index: 10;
  -webkit-transform: translate(-1px, -1px);
  -ms-transform: translate(-1px, -1px);
  transform: translate(-1px, -1px);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}

.blog-slide .post-category {
  margin-bottom: 20px;
}
.blog-slide .swiper-pagination {
  position: relative;
  padding-top: 25px;
}

.page-title {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 220px 0 147px;
  margin-top: -106px;
  background-image: url("../img/background-overlay-title.png");
}

.page-title-wrap {
  z-index: 1;
  position: relative;
}
.page-title-wrap h1 {
  font-size: 7.7rem;
  line-height: 1em;
}

.table-events {
  background-image: url("../img/event-bg.png");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  padding: 295px 0 210px;
  z-index: 2;
}
.table-events::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 53px;
  top: -1px;
  z-index: 2;
  border-top: 175px solid rgba(164, 123, 40, 0.0117647);
  border-right: 2500px solid transparent;
}
.table-events::before {
  border-top: 175px solid rgba(164, 123, 40, 0.0117647);
}
.table-events .dugem-text {
  padding: 0 250px;
}
.table-events.v2 .button-view {
  margin-top: 55px;
}
.table-events .button-view {
  position: relative;
  z-index: 2;
}
.table-events.page-events {
  padding: 205px 0 120px;
}
.table-events.page-events::before {
  display: none;
}
.table-events .event {
  margin: 40px 0 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.table-events .event tr.space {
  background: none !important;
  height: 15px;
}
.table-events .event tr.space td {
  padding: 0 !important;
  line-height: 0 !important;
  background: none !important;
  height: 0 !important;
  display: block !important;
}
.table-events .event thead tr,
.table-events .event tbody tr {
  background-color: rgba(102, 102, 102, 0.32);
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.table-events .event thead tr {
  font-size: 16px;
  text-transform: uppercase;
}
.table-events .event thead tr td {
  padding: 20px 30px;
}
.table-events .event tbody tr:hover {
  background-color: #a47b28;
}
.table-events .event tr td {
  border: none;
  padding: 20px 30px;
  vertical-align: middle;
}
.table-events .event a {
  color: #ffffff;
}
.table-events .event tbody tr td.event-ticket-link a {
  padding: 10px 15px;
  border: 1px solid #ffffff;
  border-radius: 50px;
  font-size: 14px;
  color: #ffffff;
  border-color: #ffffff;
}
.table-events .event tbody tr td.event-ticket-link a:hover {
  border: 1px solid #ff4d4d;
  background-color: #a47b28;
  border-color: #a47b28;
  color: #ffffff;
}
.table-events .event tbody tr td.event-ticket-link span.sold {
  display: inline-block;
  margin: 0;
  border: 1px solid #333;
  background-color: #333;
  color: #ffffff;
  padding: 5px 15px;
  font-size: 14px;
  width: 119px;
  letter-spacing: 0.1em;
  text-align: center;
}

.events-grid {
  display: grid;
  gap: 30px;
  margin-top: 60px;
}
@media (min-width: 1024px) {
  .events-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

.event-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .event-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-card {
  background: #111111;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
  opacity: 0;
  top: 20px;
}
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.event-card:hover img {
  transform: scale(1.1);
}
.event-card {
  position: relative;
}
.event-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #a47b28;
  transition: all 0.3s ease;
}
.event-card:hover::after {
  width: 100%;
}

.event-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}
.event-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.event-date-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #a47b28;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: 600;
}

.event-content {
  padding: 20px;
}

.event-location {
  font-size: 13px;
  color: #aaaaaa;
  margin-bottom: 10px;
}
.event-location i {
  color: #a47b28;
  margin-right: 5px;
}

.event-title {
  font-size: 18px;
  margin-bottom: 15px;
}
.event-title a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.event-title a:hover {
  color: #a47b28;
}

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

.event-price-badge {
  background: #a47b28;
  color: #ffffff;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-bottom: 5px;
}
.event-price-badge.free {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #2ecc71;
}

.content-event-price {
  position: absolute;
  top: 15px;
  right: 15px;
}

.event-price-wrap {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 204, 0, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
}

.price-label {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaaaaa;
}

.price-value {
  font-size: 2àpx;
  font-weight: 700;
  color: #ffcc00;
}

.event-price {
  font-size: 16px;
  font-weight: bold;
  color: #a47b28;
}

.event-expired {
  color: #ff4d4d;
  font-weight: 600;
}

section.event-list-section {
  margin-bottom: 70px;
}

.load-more-wrap {
  text-align: center;
}

.event-filter {
  margin-top: 20px;
}
.event-filter button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  background: #222222;
  color: #ffffff;
  border-radius: 50px;
  cursor: pointer;
}
.event-filter button.active {
  background: #a47b28;
}

.event-hero {
  position: relative;
  padding: 124px 0 50px;
  background: url("../img/event-bg.png") center/cover no-repeat;
  overflow: hidden;
}
.event-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), #000000);
}
.event-hero-content {
  position: relative;
  z-index: 2;
}
.event-hero h5 {
  color: #a47b28;
  letter-spacing: 3px;
  font-size: 14px;
}
.event-hero h1 {
  font-size: 48px;
  color: #ffffff;
  margin: 10px 0;
  font-weight: 700;
}
.event-hero p {
  color: #bbb;
  max-width: 600px;
  margin: auto;
}

.single-event-final .event-hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
  padding: 0;
}
.single-event-final .hero-media img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.single-event-final .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  pointer-events: none;
}
.single-event-final .hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-event-final .hero-box {
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 600px;
}
.single-event-final .event-title {
  font-size: 4rem;
  color: #ffffff;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}
.single-event-final .hook {
  color: #ddd;
  margin-top: 15px;
}
.single-event-final .btn-view-image {
  display: inline-block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: underline;
}
.single-event-final .badge-finished {
  display: block;
  background: #444;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  width: 37%;
  margin: 25px auto 0;
}
.single-event-final .event-info h3 {
  color: #ffffff;
}
.single-event-final .event-info .info span {
  margin-left: 15px;
}
.single-event-final .event-info .info i {
  color: #a47b28;
  font-size: 18px;
}
.single-event-final .event-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 110px;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .single-event-final .event-grid {
    grid-template-columns: 1fr;
  }
}
.single-event-final .event-description,
.single-event-final .event-info {
  background: #111111;
  padding: 40px;
  border-radius: 15px;
}
@media (max-width: 768px) {
  .single-event-final .event-title {
    font-size: 2.5rem;
  }
}

#countdown-circle {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.circle {
  width: 100px;
  height: 120px;
  text-align: center;
}
.circle svg {
  width: 100px;
  height: 100px;
  transform: rotate(-90deg);
}
.circle .bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 6;
}
.circle .progress {
  fill: none;
  stroke: #a47b28;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s linear;
  filter: drop-shadow(0 0 6px #a47b28);
}
.circle .value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: #ffffff;
  font-weight: bold;
}
.circle .label {
  margin-top: 10px;
  font-size: 12px;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.circle:hover .progress {
  filter: drop-shadow(0 0 12px #a47b28);
}

.circle-inner {
  position: relative;
}

.about-page {
  position: relative;
  z-index: 2;
  padding: 130px 0 100px;
}
.about-page .about-text {
  padding-top: 30px;
}
.about-page .about-img {
  margin-bottom: 20px;
}
.about-page img {
  margin: auto;
}
.about-page .the-text p {
  color: #aaaaaa;
}
.about-page .about-gallery .gallery-block-wrap {
  padding-bottom: 60px;
}
.about-page .about-wrap .the-title h5 {
  margin-bottom: 0;
}

.about-section {
  position: relative;
  padding: 15px 0 215px;
  background: #0b0b0b;
  color: #ffffff;
}
.about-section::before {
  position: absolute;
  content: "";
  width: 100%;
  z-index: 3;
  height: 53px;
  top: -193px;
  left: -100px;
  border-bottom: 140px solid #0b0b0b;
  border-left: 2000px solid transparent;
}
.about-section::before {
  border-bottom: 140px solid #0b0b0b;
  top: -193px;
  left: -100px;
}

.about-title h5 {
  color: #a47b28;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.about-title h2 {
  font-size: 36px;
  font-weight: 700;
}
.about-title span {
  color: #a47b28;
}
.about-title p {
  color: #aaaaaa;
  margin-top: 10px;
}

.about-grid {
  margin-top: 60px;
  display: grid;
  gap: 30px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(3, 280px);
  }
}
@media (max-width: 1023px) and (min-width: 601px) {
  .about-grid {
    grid-template-columns: repeat(2, 280px);
  }
}
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-item {
  background: #111111;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.6s ease forwards;
}
.about-item:nth-child(2) {
  animation-delay: 0.2s;
}
.about-item:nth-child(3) {
  animation-delay: 0.4s;
}
.about-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #ffffff;
}
.about-item p {
  font-size: 14px;
  color: #aaaaaa;
}
.about-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(164, 123, 40, 0.4);
}
.about-item {
  position: relative;
}
.about-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #a47b28;
  transition: all 0.3s ease;
}
.about-item:hover::after {
  width: 100%;
}

.about-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(164, 123, 40, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-icon i {
  font-size: 28px;
  color: #a47b28;
}

.about-gallery {
  padding: 0 20px;
}

.gallery-block-wrap .item-wrap {
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.gallery-block-wrap .gallery-icon i {
  color: #ffffff;
  font-size: 25px;
}
.gallery-block-wrap .column-gallery figcaption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition-delay: 0.175s;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  transition: all 0.35s ease;
}
.gallery-block-wrap .column-gallery:hover figcaption {
  opacity: 1;
}

.imghvr-circle-top-left {
  position: relative;
}
.imghvr-circle-top-left::before {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -25%;
  right: -25%;
  content: "";
  transform: translate(-100%, -100%);
  background-color: rgba(164, 123, 40, 0.48);
  border-radius: 50%;
  transition: all 0.35s linear;
}
.imghvr-circle-top-left:hover::before {
  transform: translate(0, 0);
}

.client-about {
  padding: 55px 0;
  position: relative;
}
.client-about::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 10px;
  top: -109px;
  border-bottom: 100px solid #0b0b0b;
  border-left: 2000px solid transparent;
}

.client-wrap {
  align-content: center;
  align-items: center;
}
.client-wrap .the-title h2 {
  font-size: 3rem;
}

.waiting-block {
  background-image: url("../img/banner-reservation-bg.png");
  position: relative;
  padding: 170px 0 105px;
  background-size: cover;
  opacity: 0.9;
  background-attachment: fixed;
}
.waiting-block::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 53px;
  top: -1px;
  z-index: 2;
  border-top: 175px solid #0b0b0b;
  border-right: 2500px solid transparent;
}
.waiting-block::before {
  border-top: 75px solid #0b0b0b;
  border-right: 2500px solid transparent;
}
.waiting-block .button-basic-1:hover {
  color: #ffffff;
  transform: translateY(0);
  background-color: transparent;
  border-color: #a47b28;
}

.waiting-title .the-title h3 {
  font-size: 55px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 10px;
}

.team-section {
  position: relative;
  padding: 290px 0 210px;
  background: #0d0d0d;
  color: #ffffff;
}
.team-section::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 53px;
  top: -1px;
  z-index: 2;
  border-top: 175px solid #0b0b0b;
  border-right: 2500px solid transparent;
}

.team-title h5 {
  color: #a47b28;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.team-title h2 {
  font-size: 36px;
  font-weight: 700;
}
.team-title span {
  color: #a47b28;
}

.team-grid {
  display: grid;
  gap: 30px;
  justify-content: center;
}
@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, 280px);
  }
}
@media (max-width: 1199px) {
  .team-grid {
    grid-template-columns: repeat(2, 280px);
  }
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-item {
  background: #111111;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}
.team-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(164, 123, 40, 0.4);
}
.team-item:hover img {
  transform: scale(1.1);
}
.team-item:hover .team-overlay {
  opacity: 1;
}
.team-item {
  position: relative;
}
.team-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: #a47b28;
  transition: all 0.3s ease;
}
.team-item:hover::after {
  width: 100%;
}

.team-img {
  overflow: hidden;
}
.team-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-content {
  padding: 20px;
}
.team-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffffff;
}
.team-content p {
  font-size: 14px;
  color: #aaaaaa;
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: all 0.3s ease;
}
.team-overlay a {
  color: #ffffff;
  font-size: 16px;
  background: #a47b28;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.page-blog {
  padding-top: 145px;
  padding-bottom: 95px;
}
.page-blog .blog-content {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid #111111;
  margin-bottom: 30px;
}
.page-blog .the-post-head .standard-post-categories {
  margin-bottom: 20px;
}
.page-blog .the-post-head .standard-post-categories a {
  display: inline-block;
  padding: 8px 25px;
  border: 2px solid #a47b28;
  color: #ffffff;
  border-radius: 50px;
  background-color: transparent;
  margin-top: 25px;
}
.page-blog .the-post-head .standard-post-categories a:hover {
  background-color: #a47b28;
}
.page-blog h2.post-title.entry-title a {
  color: #ffffff;
}
.page-blog h2.post-title.entry-title a:hover {
  color: #a47b28;
}
.page-blog .post-content-wrap .date {
  position: relative;
  color: #a47b28;
  font-style: italic;
  padding-left: 45px;
  font-weight: 500;
  margin-bottom: 20px;
}
.page-blog .post-content-wrap .date a {
  color: #ffffff;
}
.page-blog .post-content-wrap .date a:hover {
  color: #a47b28;
}
.page-blog .post-content-wrap .date::before {
  content: "";
  height: 2px;
  background-color: #a47b28;
  width: 35px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.post-thumb {
  position: relative;
  overflow: hidden;
}
.post-thumb img {
  transform: translate3d(0, 0, 0);
  transition: transform 0.5s ease, opacity 0.2s ease-in-out;
}
.post-thumb:hover img {
  transform: scale3d(1.1, 1.1, 1) translate3d(0, 0, 0);
}
.post-thumb .dugem-overlay {
  position: absolute;
  background-color: #000;
  display: block;
  left: 0;
  top: 0;
  width: 103%;
  height: 103%;
  z-index: 10;
  transform: translate(-1px, -1px);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.post-thumb:hover .dugem-overlay {
  opacity: 0.3;
}

.single {
  padding-top: 60px;
  padding-bottom: 60px;
}
.single .single-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}
.single .single-hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single .single-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.single .breadcrumb-section {
  padding: 20px 0;
}
.single .breadcrumb {
  color: #aaaaaa;
  font-size: 14px;
}
.single .breadcrumb a {
  color: #a47b28;
}
.single .breadcrumb span {
  margin: 0 8px;
}
.single .single-header {
  padding: 110px 0;
  background: #000000;
}
.single .post-category a {
  color: #a47b28;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
}
.single .post-title {
  font-size: 42px;
  color: #ffffff;
  margin: 15px 0;
}
.single .post-meta {
  color: #aaaaaa;
}
.single .single-content {
  background: #000000;
  padding: 60px 0;
  margin-bottom: 70px;
}
.single .content-inner {
  max-width: 800px;
  margin: auto;
  color: #ddd;
  line-height: 1.8;
}
.single .related-posts {
  padding: 80px 0;
  background: #000000;
}
.single .related-grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .single .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.single .related-card {
  background: #111111;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.single .related-card:hover {
  transform: translateY(-10px);
}
.single .related-card .related-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.single .related-card .related-content {
  padding: 15px;
}
.single .related-card .related-content h3 a {
  color: #ffffff;
}
.single .related-card .related-content span {
  color: #aaaaaa;
  font-size: 12px;
}
.single .blog-single .the-post-head .standard-post-categories {
  margin-bottom: 15px;
}
.single .blog-single .the-post-head .standard-post-categories a {
  display: inline-block;
  padding: 8px 25px;
  border: 2px solid #a47b28;
  border-radius: 50px;
  color: #ffffff;
  background-color: transparent;
  margin-top: 25px;
}
.single .blog-single .the-post-head .standard-post-categories a:hover {
  background-color: #a47b28;
}
.single .blog-single .meta-info {
  position: relative;
}
.single .blog-single .meta-info span {
  font-size: 13px;
  position: relative;
}
.single .blog-single .meta-info span.date {
  padding-left: 45px;
  position: relative;
}
.single .blog-single .meta-info .span-head a span {
  color: #a47b28;
}
.single .blog-single .meta-info span.author.span-head a {
  color: #ffffff;
}
.single .blog-single .tag-wrapper a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  background-color: #111111;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 25px;
}
.single .blog-single .tag-wrapper a:hover {
  background-color: #a47b28;
  color: #ffffff;
}
.single .blog-single .meta-bottom {
  margin-top: 10px;
}
.single .blog-single .next-prev-post {
  border: 0;
  margin-top: 30px;
  padding: 0;
}
.single .blog-single .next-prev-post .inner-nav {
  padding: 20px 60px;
  background-color: #0b0b0b;
  border: 1px solid #222222;
}
.single .blog-single .next-prev-post .prev-post {
  text-align: left;
  padding-left: 0;
}
.single .blog-single .next-prev-post .next-post {
  text-align: right;
  float: right;
  padding-right: 0;
}
.single .blog-single .next-prev-post .prev-post a > .the-nav-title,
.single .blog-single .next-prev-post .next-post a > .the-nav-title,
.single .blog-single .next-prev-post span {
  color: #ffffff;
  transition: all 0.2s ease-in-out;
}
.single .blog-single .next-prev-post span.the-nav-link {
  color: #a47b28;
}
.single .blog-single .next-prev-post .prev-post a:hover .the-nav-title,
.single .blog-single .next-prev-post .next-post a:hover .the-nav-title {
  color: #a47b28;
}
.single .blog-single .next-prev-post .prev-post a:hover span.the-nav-link,
.single .blog-single .next-prev-post .next-post a:hover span.the-nav-link {
  color: #ffffff;
}
.single .blog-single .post-author {
  margin-top: 3rem;
  border-top-color: #222222;
}
.single .blog-single .post-author .author-wrap {
  border: 1px solid #222222;
  padding: 40px;
}
.single .blog-single .post-author .author-ava {
  float: left;
  margin-right: 20px;
}
.single .blog-single .post-author .author-ava img {
  border-radius: 50%;
}
.single .blog-single .post-author .author-name {
  margin-bottom: 10px;
}
.single .blog-single .post-author .author-name a {
  font-weight: 600;
  color: #ffffff;
}
.single .blog-single .post-author .author-name a:hover {
  color: #a47b28;
}
.single .blog-single .related-content {
  margin: 20px 0;
}
.single .blog-single .related-title {
  margin-top: 20px;
}
.single .blog-single .related-title h4 a {
  color: #ffffff;
}
.single .blog-single .related-title h4 a:hover {
  color: #a47b28;
}
.single .blog-single.blog-item .post-thumb {
  margin-bottom: 25px;
}
.single .blog-single-wrap h2.post-title.entry-title {
  margin-bottom: 5px;
}
.single .blog-single .author-desc {
  overflow: hidden;
}
.single img.alignleft {
  margin: 10px 20px 20px 0;
  float: left;
}
.single img.aligncenter {
  margin-bottom: 20px;
}
.single img.alignright {
  margin: 10px 0 10px 20px;
  float: right;
}

h2.post-title.entry-title a {
  color: #ffffff;
}
h2.post-title.entry-title a:hover {
  color: #a47b28;
}

.sidebar .widget {
  margin-bottom: 40px;
}
.sidebar .widget .widget-title h4 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-align: left;
  position: relative;
  z-index: 2;
  padding-left: 35px;
  color: #ffffff;
}
.sidebar .widget .widget-title h4::after {
  content: "//";
  color: #a47b28;
  position: absolute;
  left: 0;
  top: 0;
}
.sidebar .widget .latest-post-wrap h5 a {
  color: #ffffff;
}
.sidebar .widget .latest-post-wrap h5 a:hover {
  color: #a47b28;
}
.sidebar .widget .post-content {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0f0f0f;
}
.sidebar .widget .post-content h5 {
  margin-bottom: 0;
  font-weight: 200;
}
.sidebar .widget .widget-archive ul,
.sidebar .widget .widget-category ul {
  padding-left: 0;
}
.sidebar .widget .widget-archive ul li,
.sidebar .widget .widget-category ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0f0f0f;
}
.sidebar .widget .widget-archive ul a,
.sidebar .widget .widget-category ul a {
  color: #ffffff;
}
.sidebar .widget .widget-archive ul a:hover,
.sidebar .widget .widget-category ul a:hover {
  color: #a47b28;
}

.category-hero {
  padding: 80px 0;
  background: #000000;
  text-align: center;
}
.category-hero h5 {
  color: #a47b28;
  letter-spacing: 2px;
}
.category-hero h1 {
  font-size: 42px;
  color: #ffffff;
  margin: 10px 0;
}
.category-hero p {
  color: #aaaaaa;
}

.contact-page {
  padding: 145px 20px 70px;
  background: #0c0c0c;
  color: #ffffff;
}
.contact-page .container {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 480px) {
  .contact-page {
    padding: 60px 15px;
  }
}

.page-header {
  margin-bottom: 60px;
  text-align: center;
}
.page-header .head-title-1 {
  font-size: 36px;
  margin: 10px 0;
}
.page-header .page-desc {
  max-width: 600px;
  margin: 0 auto;
  color: #aaaaaa;
  line-height: 1.6;
  font-size: 15px;
}
@media (max-width: 480px) {
  .page-header .head-title-1 {
    font-size: 26px;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.contact-form-wrap {
  background: #111111;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
@media (max-width: 992px) {
  .contact-form-wrap {
    padding: 25px;
  }
}
.contact-form-wrap input, .contact-form-wrap textarea {
  width: 94%;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #1a1a1a;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}
.contact-form-wrap input:focus, .contact-form-wrap textarea:focus {
  border-color: #a47b28;
  outline: none;
  box-shadow: 0 0 0 2px rgba(164, 123, 40, 0.2);
}
.contact-form-wrap textarea {
  min-height: 140px;
  resize: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #ccc;
}
.info-line i {
  color: #a47b28;
  font-size: 16px;
}

.map-wrap iframe {
  width: 100%;
  height: 320px;
  border-radius: 16px;
  border: none;
  filter: grayscale(100%) contrast(110%);
  transition: all 0.3s ease;
}
.map-wrap iframe:hover {
  filter: grayscale(0%) contrast(100%);
}
@media (max-width: 768px) {
  .map-wrap iframe {
    height: 260px;
  }
}

.wpcf7-form p {
  margin: 0;
}

.cf7-field input, .cf7-field textarea {
  width: 94%;
  padding: 14px 16px;
  margin-bottom: 18px;
  background: #1a1a1a;
  border: 1px solid transparent;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}
.cf7-field input:focus, .cf7-field textarea:focus {
  border-color: #a47b28;
  outline: none;
  box-shadow: 0 0 0 2px rgba(164, 123, 40, 0.2);
}
.cf7-field textarea {
  min-height: 140px;
  resize: none;
}

.cf7-submit {
  margin-top: 10px;
}

.wpcf7 form .wpcf7-response-output {
  margin-top: 10px;
  font-size: 14px;
}

.wpcf7-form.sent .wpcf7-response-output,
.wpcf7-mail-sent-ok {
  background: rgba(76, 175, 80, 0.1);
  padding: 15px;
  border-radius: 8px;
  color: #4caf50;
  text-align: center;
  border: none;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  color: #ff4d4d;
  border: none;
  text-align: center;
}

.wpcf7 form.invalid .wpcf7-response-output {
  color: #ffb900;
  border: none;
  text-align: center;
}

.wpcf7-validation-errors,
.wpcf7-not-valid-tip {
  color: #ff4d4d;
  font-size: 13px;
}

.profile-page {
  padding: 145px 0;
  background: #0c0c0c;
  color: #ffffff;
}

.profile-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

.profile-card {
  background: #111111;
  padding: 25px;
  border-radius: 12px;
}
.profile-card h2 {
  margin-bottom: 20px;
}
.profile-card input {
  width: 95%;
  margin-bottom: 15px;
  padding: 12px;
  background: #1a1a1a;
  border: none;
  color: #ffffff;
  border-radius: 6px;
}

.profile-page form {
  margin-top: 110px;
}
.profile-page .toggle-password {
  position: absolute;
  right: 12px;
  top: 35%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #888;
  transition: all 0.3s ease;
}
.profile-page .toggle-password:hover {
  color: #ffffff;
}
.profile-page .password-rules {
  font-size: 13px;
  margin-bottom: 15px;
}
.profile-page .password-rules p {
  color: #888;
  margin: 3px 0;
  transition: all 0.3s ease;
}
.profile-page .password-rules p.valid {
  color: #4caf50;
}
.profile-page .password-rules p.invalid {
  color: #ff4d4d;
}

.history-page {
  padding: 145px 0;
  background: #0c0c0c;
  color: #ffffff;
}

.history-title {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.history-table {
  display: block;
}

.table-head,
.table-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-head {
  font-weight: bold;
  color: #aaaaaa;
}

.table-row:hover {
  background: rgba(164, 123, 40, 0.05);
}

.badge {
  background: #a47b28;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 12px;
}

.history-cards {
  display: none;
}

.ticket-card {
  background: #111111;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 15px;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.empty-history {
  text-align: center;
  padding: 80px 20px;
}
.empty-history i {
  font-size: 50px;
  color: #a47b28;
  margin-bottom: 20px;
}
.empty-history h2 {
  margin-bottom: 10px;
}
.empty-history p {
  color: #aaaaaa;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .history-table {
    display: none;
  }
  .history-cards {
    display: block;
  }
}
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0c0c0c;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.page-404::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(164, 123, 40, 0.3), transparent);
  filter: blur(120px);
  animation: floatGlow 6s infinite alternate;
}

.content-404 {
  position: relative;
  z-index: 2;
}
.content-404 h1 {
  font-size: 32px;
  margin-bottom: 15px;
}
.content-404 p {
  color: #aaaaaa;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.glitch {
  font-size: 120px;
  font-weight: 900;
  color: #ffffff;
  position: relative;
  animation: glitch 1s infinite;
}

.wp-block-columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.wp-block-column {
  flex: 1;
  min-width: 250px;
}

.content-register .input-register {
  margin-bottom: 10px;
}

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