/* WRITE YOUR CUSTOM CSS CODE. THIS WILL NOT BE DELETED ON UPDATE. */

:root {
  /* --primary-color: #d2aa67; */
  --primary-color: #eabe6c;
  /* --secondary-color: #244533; */
  --secondary-color: #240a34;
  --gray-color: #989898;
  --gradient: linear-gradient(182deg, var(--secondary-color) 0%, rgb(0 0 0) 100%);
  --dynamic-height: calc(var(--vh, 1vh) * 100);
  --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

@font-face {
  font-family: Rajdhani;
  src: url(/css/fonts/Rajdhani-Light.ttf);
  font-display: swap;
  font-weight: 100;
}
@font-face {
  font-family: Rajdhani;
  src: url(/css/fonts/Rajdhani-Regular.ttf);
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: Rajdhani;
  src: url(/css/fonts/Rajdhani-Medium.ttf);
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: Rajdhani;
  src: url(/css/fonts/Rajdhani-SemiBold.ttf);
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: Rajdhani;
  src: url(/css/fonts/Rajdhani-Bold.ttf);
  font-display: swap;
  font-weight: 900;
}

@font-face {
  font-family: Krona;
  src: url(/css/fonts/KronaOne-Regular.ttf);
  font-display: swap;
  font-weight: 900;
}

body {
  font-family: "Rajdhani";
  font-weight: 500;
  font-size: 1rem;
}

main {
  min-height: calc(var(--dynamic-height));
}

h1 {
  font-family: "Krona";
}

.section-title > * {
  font-family: "Krona";
  font-size: 2.5rem;
  margin-bottom: 40px;
}
.section-title strong {
  background: -webkit-linear-gradient(#eee, #333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle > * {
  font-size: 1.375rem;
  font-weight: 300;
}

.headline > * {
  font-size: 1.275rem;
  color: var(--gray-color);
  margin-bottom: 20px;
  font-weight: 600;
}

a:hover {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1600px;
}

.padding {
  padding-left: 7vw;
  padding-right: 7vw;
}
.padding-left {
  padding-left: 7vw;
}
.padding-right {
  padding-right: 7vw;
}

.mw-7 {
  max-width: 700px;
  margin: auto;
}

.common-desc > * {
  color: var(--gray-color);
  font-size: 1.2rem;
}
.text-gray {
  color: var(--gray-color);
}
.text-gray strong {
  color: #fff;
}
.text-gray a,
.common-desc a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

/* Buttons */
button:focus,
.btn:focus,
.btn:active {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}
.btn {
  position: relative;
  box-shadow: none;
  outline: none;
  border-radius: 30px;
  transition: var(--transition);
}
.btn-primary {
  border: none;
  padding: 13px 60px;
  color: #000;
  background-color: #fff;
  font-weight: 600;
}
.btn-primary:hover {
  background-color: #ffffffbf;
  color: #000 !important;
}
.btn-primary:active {
  color: #000 !important;
  background-color: #fff !important;
}
.btn-primary.white {
  color: #000;
  background-color: #fff;
}
.btn-primary.white:active {
  color: #000;
  background-color: #fff;
}
.btn-secondary {
  background-color: transparent;
  border: none;
  color: #fff;
  border-radius: 0;
  padding: 0;
  border-bottom: 2px solid #fff;
}
.btn-secondary:hover {
  background-color: transparent;
}
.btn-secondary:active,
.btn-secondary:focus {
  background-color: transparent !important;
}

.uppercase {
  text-transform: uppercase;
}
.btn-menu.btn-secondary {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0;
  border-radius: 0;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--primary-color);
}
.btn.gold {
  color: var(--primary-color);
}

.btn.radius {
  border-radius: 30px;
}
.btn.shadow:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -10px;
  z-index: -2;
  width: calc(100% + 20px);
  height: calc(100% + 4px);
  background-image: linear-gradient(225deg, #32c5ff, #b620e0 51%, #f7b500);
  border-radius: 100%;
  opacity: 0.66;
  filter: blur(1em) saturate(1.18);
  transition: transform 0.2s;
}
.btn.shadow:hover:after {
  transform: scale(0.8);
}
.btn-link {
  color: #ffffff82;
  text-decoration: none !important;
}
.btn-link:hover {
  color: #fff;
  background: #ffffff12;
}

body.dark {
  background-color: #000;
}
.page-header {
  position: relative;
  min-height: 50vh;
}
.page-header-background:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.page-header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-position: bottom;
}

/* Contact Page */
.contact-page-section {
  padding: 4rem;
  transform: translateY(-85px);
  border-radius: 20px;
}
.contact-page-section a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-size: 1.275rem;
  padding: 3rem;
  color: var(--gray-color);
  transition: var(--transition);
}
.contact-page-section a:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

.accent > * {
  display: flex;
  align-items: center;
  gap: 20px;
}
.accent > *:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--primary-color);
}

.contact-page-section .details {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border: 1px solid #ffffff14;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
}
.contact-page-section .details .module-text {
  border-right: 1px solid #ffffff14;
}
.contact-page-section .details .module-text:last-child {
  border-right: none;
}
.contact-page-section .details p {
  margin-bottom: 0;
}

/* Contact Form */
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + .checkbox-text {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
input[type="checkbox"] + .checkbox-text:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.12s, border-color 0.08s;
}
input[type="checkbox"]:checked + .checkbox-text:before {
  width: 10px;
  top: -5px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  transform: rotate(45deg);
}
.contact-page-section .contact-form {
  padding-left: 4rem;
}
.contact-form .container {
  width: 100%;
}
.contact-form .col-lg-12 {
  padding: 0;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 2rem;
}
.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  /* border: 1px solid #ffffff14; */
  border: 1px solid var(--primary-color);
  border-radius: 0;
  padding: 30px 20px;
  color: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  background: transparent;
  outline: none;
  box-shadow: none;
}
.contact-form .form-group.focus input,
.contact-form .form-group.focus textarea {
  border-color: #fff;
}
.contact-form div:not(.agreement-radio) label {
  color: var(--gray-color);
  margin-bottom: 0;
  transform: translate(20px, 50%);
  background: #121212;
  padding: 0 15px;
}
.contact-form .agreement-radio {
  margin-top: 2rem;
}
.contact-form .agreement-radio label {
  color: var(--gray-color);
}

/* Loader */
.loader-wrapper {
  position: fixed;
  /* display: none; */
  display: grid;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
}
.loader-wrapper .mask,
.loader-wrapper .button-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.loader-wrapper .button-mask {
  z-index: -1;
}
.loader-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  row-gap: 5vh;
}
.loader-logo {
  opacity: 0;
}
.loader-logo svg {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.loader-logo .upper-letter {
  stroke: #ffffff;
  stroke-width: 2px;
  fill: none;
  stroke-miterlimit: 10;
}
.loader-logo .lower-letter {
  stroke-width: 0.5px;
  stroke: #d59c40;
  fill: none;
  stroke-miterlimit: 10;
}
.loader-language {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
}
.loader-language .message {
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--gray-color);
}

.loader-language .languages {
  display: flex;
  justify-content: center;
  gap: 15px;
  /* background: #ffffff1c; */
  /* border-radius: 30px; */
  /* padding: 2px; */
  /* margin: auto; */
  /* min-width: 200px; */
  /* border: 1px solid #393939; */
}

/* .loader-language .languages input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  border: 0;
  overflow: hidden;
} */
/* .loader-language .languages label {
  position: relative;
  width: 100%;
  padding: 3px 16px;
  border-radius: 30px;
  overflow: hidden;
  letter-spacing: 1px;
  color: #fff;
  background-color: #ffffff1c;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  cursor: pointer;
  margin-bottom: 0;
  transition: var(--transition);
} */
/* .loader-language .languages input:checked + label {
	box-shadow: none;
  color: #000;
  font-weight: 600;
} */
.loader-language .lang-link {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff1a;
  padding: 3px 15px 3px 3px;
  border-radius: 30px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}
.loader-language .lang-link:hover {
  background-color: #fff;
  color: #000;
}
.loader-language .lang-link:before {
  width: 35px;
  height: 35px;
}
.loader-language .lang_url_English:before {
  content: url("../uploads/icons/en.svg");
}
.loader-language .lang_url_Espanõl:before {
  content: url("../uploads/icons/es.svg");
}

.loader-language .languages div.active {
  font-weight: 500;
}

.loader-language .next {
  width: 100%;
  max-width: 200px;
  margin: auto;
  border-radius: 30px;
}

/* --------------- Header --------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: var(--transition);
}
[data-pagetype="account"] {
  background-color: #000;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px calc(2.5% + 15px);
}
.header-menu {
  display: flex;
  align-items: center;
}
.btn-menu {
  display: flex;
  align-items: center;
  border: none;
  box-shadow: none;
  outline: 0;
  background: 0 0;
  margin-right: 50px;
}
.btn-menu .icon-bars {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 25px;
}
.btn-menu .icon-bar {
  width: 100%;
  height: 1px;
  background: #fff;
  margin-bottom: 5px;
  transition: var(--transition);
}
.btn-menu .icon-bar.middle-bar {
  width: 50%;
}
.btn-menu:hover .icon-bar.middle-bar {
  width: 100%;
}
.btn-menu .icon-bar.bottom-bar {
  margin-bottom: 0;
}
.btn-menu .sr-only {
  position: relative;
  width: auto;
  height: auto;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 10px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.navbar-brand {
  display: grid;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 0;
}
.logo {
  grid-row: 1/2;
  grid-column: 1/2;
  max-height: 60px;
  transition: var(--transition);
}
.nav-item {
  list-style-type: none;
}
.header-inner .nav-item {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-item .login {
  display: flex;
  align-items: center;
}
.header-contact {
  display: flex;
  justify-content: flex-end;
}
.header-contact-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.header-contact-inner a {
  padding-top: 6px;
  padding-bottom: 6px;
}
.header-contact-inner .language-select a {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
}
.header-contact-inner .language-select .dropdown-menu {
  border: none;
  padding: 0;
  min-width: auto;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px -5px #000;
}
.header-contact-inner .language-select .dropdown-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-contact-inner .language-select .dropdown-menu a {
  padding: 5px 10px;
  color: #000;
}
.header-contact-inner .language-select:hover .dropdown-menu {
  display: flex;
}
.header-contact-inner .book-now a {
  padding: 6px 30px;
}

header .menu-dropdown .dropdown-menu {
  min-width: 100%;
  left: auto;
  right: 0;
  opacity: 0;
  transform: translateY(-20px) scale(0);
  transform-origin: top right;
  margin-top: 0;
  border-radius: 20px 0 20px 20px;
  background: var(--primary-color);
  border: none;
  margin-top: -1px;
  padding-top: 15px;
  padding-bottom: 15px;
  box-shadow: 0 0 20px -8px #000;
  pointer-events: none;
  transition: var(--transition);
}
header #dropdownMenuButton {
  background-color: var(--primary-color) !important;
}
header #dropdownMenuButton:after {
  display: none;
}
header .menu-dropdown .dropdown-menu li,
header .menu-dropdown .dropdown-menu li form {
  width: 100%;
}
header .menu-dropdown .dropdown-menu li:hover {
  background-color: #00000012;
}
header .menu-dropdown .dropdown-menu li a,
header .menu-dropdown .dropdown-menu li button {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: #000;
  font-weight: 600;
  width: 100%;
  padding: 6px 1rem !important;
  border: none;
}
header .menu-dropdown .dropdown-menu li a lord-icon {
  width: 25px;
  height: 25px;
}
header .menu-dropdown:hover > .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}
header .dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  font-size: 1.2rem;
}
header .dropdown:hover .dropdown-toggle {
  border-radius: 30px 30px 0 0;
}

#main-menu {
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--gradient);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: var(--transition);
  z-index: -1;
}
#main-menu .left-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 45%;
  min-width: 300px;
  padding: 2rem calc(2.5% + 25px);
  padding-top: 150px;
}
#main-menu ul {
  margin-left: 0 !important;
  align-items: flex-start;
  flex-direction: column;
  padding-bottom: 11px;
}
#main-menu a {
  color: #fff;
  font-size: 45px;
  font-weight: 400;
  font-family: "Krona";
  padding: 0;
  transition: var(--transition);
}
#main-menu a:hover {
  color: var(--primary-color);
}
.secondary-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.secondary-menu .book-now a {
  width: 100%;
  font-size: 1rem !important;
  padding: 10px 20px !important;
  color: #000 !important;
  background: var(--primary-color);
}
.menu-social-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  color: var(--primary-color);
  font-size: 1.275rem;
}
.menu-social-wrapper .line {
  width: 99%;
  height: 1px;
  background-color: var(--primary-color);
}
#main-menu .social-media-items {
  flex-direction: row;
  gap: 10px;
  padding-bottom: 0;
}
#main-menu .social-media-items a {
  display: flex;
  border-radius: 100%;
  overflow: hidden;
}
#main-menu .social-media-items a svg {
  width: 40px;
  height: auto;
  background-color: #ffffff1c;
}
#main-menu .social-media-items a svg path {
  stroke: white;
}
#main-menu .social-media-items a:hover {
  scale: 1.2;
}
#main-menu .right-side {
  align-items: center;
  justify-content: center;
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  column-gap: 40px;
}
.menu-images .menu-static-image.show {
  opacity: 1;
}
.menu-images-col {
  display: flex;
  flex-wrap: wrap;
}
.menu-images-col-transform {
  width: 100%;
}

.left .menu-images-col-transform {
  transform: translateY(-47.5vh);
  transition: var(--transition);
  transition-duration: 1s;
}

.right .menu-images-col-transform {
  transform: translateY(calc(-100% + 142vh - 10vh));
  transition: var(--transition);
  transition-duration: 1s;
}

.menu-images-col-transform .nav-item-image {
  height: 65vh;
}

.menu-images figure {
  position: relative;
  width: 100%;
  margin: 0;
  transition: var(--transition);
  padding: 20px 0;
  border-radius: 20px;
  overflow: hidden;
}
.menu-images figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  border-radius: 20px;
  transition: var(--transition);
}
.menu-images figure.show img {
  filter: brightness(1);
}

/* Header Fixed */
header.fixed {
  background-color: #000;
}
header.fixed .logo-dark {
  opacity: 0;
}
header.fixed .btn-menu .sr-only {
  color: #fff;
}
header.fixed .btn-menu .icon-bar {
  background: #fff;
}
header.fixed .header-contact-inner .language-select a {
  color: #fff;
}
header.fixed .header-contact-inner .language-select .dropdown-menu a {
  color: #000;
}

/* Opened Menu */
body.menu-opened {
  overflow: hidden;
}
.menu-opened #main-menu {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.menu-opened .btn-menu .icon-bar {
  background: #fff;
}
.menu-opened .btn-menu .sr-only {
  color: #fff;
}
.menu-opened .logo-dark {
  opacity: 0 !important;
}
.menu-opened .logo-white {
  opacity: 1 !important;
}
.menu-opened .header-contact-inner .language-select a {
  color: #fff;
}
.menu-opened .header-contact-inner .language-select .dropdown-menu a {
  color: #000;
}

.intro-section {
  min-height: calc(var(--dynamic-height) + 50px);
  display: grid;
  grid-template-columns: 1fr minmax(400px, 30%);
  grid-template-rows: 90px 1fr auto 50px;
  align-items: center;
  overflow: hidden;
  /* background: linear-gradient(182deg, rgba(233,208,205,1) 0%, rgba(179,185,201,1) 100%); */
  background: var(--gradient);
  padding-left: 7vw;
  padding-bottom: 50px;
}
.intro-title {
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  row-gap: 15px;
  column-gap: 55px;
  align-items: center;
  grid-row: 2/3;
  height: 100%;
}
.intro-title .headline {
  display: flex;
  align-items: center;
  grid-column: 1/3;
  gap: 30px;
}
.intro-title .headline > * {
  color: var(--primary-color);
  margin-bottom: 0;
}
.intro-title .headline:before {
  content: "";
  position: relative;
  display: inline-flex;
  height: 2px;
  width: 15.5%;
  background: var(--primary-color);
}
.intro-text {
  grid-column: 1/3;
}
.intro-text > * {
  display: flex;
  flex-direction: column;
  /* font-size: 10vh; */
  font-size: calc(3vh + 3.5vw);
  color: var(--primary-color);
  letter-spacing: -3px;
  overflow: hidden;
}
.intro-text > * span {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.intro-text strong {
  color: #fff;
}
.intro-section .video-button {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
}
.intro-section .video-button span {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
  background-color: #fff;
  border-radius: 100%;
  box-shadow: 0px 5px 12px -5px #000;
}
.intro-section .video-button span:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  box-shadow: 0 0 0px 10px #ffffff29;
  border-radius: 100%;
}

.intro-scroll {
  grid-row: 3/4;
}
.intro-scroll .scroll-down a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

/* Intro slider */
.intro-slider-col {
  grid-column: 2/3;
  grid-row: 1/5;
  height: 100%;
  border-radius: 50px 0 0 50px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 0 45px -20px #000;
}
.intro-slider {
  border-radius: 50px 0 0 50px;
  overflow: hidden;
}
.intro-slider,
.intro-slider .slick-list,
.intro-slider .slick-track {
  height: 100%;
}
.intro-slider .slick-slide {
}
.intro-slider .slick-slide-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.intro-slider .slide-slick-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  top: 90px;
  right: 0;
  bottom: 50px;
  z-index: 9;
  /* opacity: .7; */
  mix-blend-mode: color-burn;
}
.intro-slider .slide-slick-title > * {
  font-size: 5vw;
  line-height: 0.75;
  font-family: "Krona";
  color: #234231;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  margin: 0;
}
.intro-slider .slide-slick-image {
  height: 100%;
  margin-bottom: 0;
}
.intro-slider .slide-slick-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.intro-slider .slide-slick-image img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slider-progress-wrapper {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 50px;
  left: calc(2.5vw + 15px);
  right: calc(2.5vw + 15px);
  background: #00000042;
  backdrop-filter: blur(10px);
  justify-content: center;
  padding: 10px 20px;
  justify-content: space-between;
  border-radius: 30px;
}
.slide-progress-full {
  display: flex;
  align-items: center;
  width: 50%;
  height: 2px;
  background-color: #ffffff45;
}
.slide-progress-line {
  height: 4px;
  background-color: #fff;
  border-radius: 10px;
  transition: var(--transition);
}
.slick-arrow {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.slick-arrow-left lord-icon {
  transform: rotate(-180deg);
}

#about-us-section {
  position: relative;
  height: calc(100vh - 89px);
  overflow: hidden;
  flex-wrap: nowrap;
  justify-content: space-between;
}

#about-us-section .col-lg-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
}
#about-us-section .col-lg-8 {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0;
  transition: var(--transition);
}
#about-us-section .module-image {
  height: 100%;
}
#about-us-section img {
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}

.textFromOpacity {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.textFromOpacity .inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}
.textFromOpacity .inner > div {
  display: flex;
  align-items: center;
}
.textFromOpacity p {
  margin-bottom: 0;
}
.services-slider {
  padding-right: 0;
}
.services-slider .slick-list {
  padding-left: 0 !important;
}
.services-slider .slick-slide {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 3rem 8rem;
  border-radius: 20px;
  background-color: #141414;
  margin-right: 50px;
  transition: var(--transition);
}
/* .services-slider .slick-slide:not(.slick-active), */
.services-slider .slick-slide:not(.slick-current) {
  opacity: 0.5;
  pointer-events: none;
}
.services-slider .slick-slide:not(.slick-current) .fickle-image {
  filter: blur(5px);
}
.services-slider .slick-arrow {
  position: absolute;
  top: 50%;
  background: #141414;
  padding: 10px;
  border-radius: 100%;
}
.services-slider .slick-arrow-left {
  left: 0;
  transform: translate(-50px, -50%);
}
.services-slider .slick-arrow-right {
  right: 7%;
  transform: translate(50px, -50%);
}
.services-slider .fickle-header {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 1;
}
.services-slider .fickle-header:before {
  content: "";
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2px;
  background: var(--primary-color);
}
.services-slider .fickle-title > * {
  font-size: 2rem;
  font-family: "Krona";
  margin-bottom: 0;
}
.services-slider .fickle-content {
  order: 2;
  max-width: 500px;
}
.services-slider .fickle-text-content > * {
  font-size: 1.1rem;
  color: var(--gray-color);
  margin-bottom: 0;
}
.services-slider .fickle-image {
  order: 3;
  position: relative;
  padding-top: 65%;
  margin-bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}
.services-slider .fickle-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
  height: 100%;
  object-fit: cover;
}
.services-slider .fickle-image img:hover {
  animation: zoom 1s ease-out alternate;
  animation-direction: alternate;
}
@keyframes zoom {
  0% {
    filter: blur(0);
    transform: scale(1);
  }
  50% {
    filter: blur(5px);
    transform: scale(1.2);
  }
  100% {
    filter: blur(0);
    transform: scale(1);
  }
}

.slick-dots {
  bottom: auto;
  margin-top: 10px;
  text-align: left;
}
.slick-dots li {
  width: 30px;
  padding: 5px 0;
}
.slick-dots li button {
  width: 100%;
  height: 2px;
  padding: 0;
  background-color: #fff;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li:not(.slick-active) button {
  background-color: var(--gray-color);
  opacity: 0.5;
}

/* HP Contact Section */
#contact-section {
  position: relative;
  min-height: 100vh;
}
.contact-image-col .module-image {
  position: relative;
  height: 100%;
  /* display: flex;
  align-items: flex-end; */
}
.contact-image-col .module-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.contact-image-col .module-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(18 18 18) 100%);
  z-index: 1;
}
.contact-image-col .module-image img {
  transform: rotateY(180deg);
  height: 100%;
  object-fit: cover;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 0 0 7rem;
  max-width: 705px;
}
.contact-info-col ul {
  display: flex;
  gap: 40px;
  list-style-type: none;
  padding-left: 0;
  margin-top: 20px;
  border-top: 1px solid #ffffff24;
  border-bottom: 1px solid #ffffff24;
  padding: 20px 0;
}
.contact-info-col ul a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-color);
  transition: var(--transition);
}
.contact-info-col ul a:hover {
  color: #fff;
}

/* Services Page */
#services-intro-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--dynamic-height);
  padding-top: 90px;
  overflow: hidden;
}
#services-intro-section .section-subtitle {
  max-width: 600px;
}
#services-intro-section .gallery-wrapper {
  perspective: 100px;
  z-index: -1;
}
#services-intro-section .services-gallery-slider {
  transform: rotateY(2deg) rotateZ(-5deg);
}
#services-intro-section .gallery-wrapper .slick-list {
  overflow: visible;
}
#services-intro-section .gallery-wrapper .slick-slide {
  padding: 10px;
  pointer-events: none;
  filter: brightness(0.5);
}

body.services,
body.services .content-wrapper,
body.servicios,
body.servicios .content-wrapper {
  overflow: inherit;
}
.services-notification-col {
  position: sticky;
  top: 90px;
  z-index: 1;
}
.services-notification {
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
  position: sticky;
  top: 90px;
  z-index: 1;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem;
}
.services-cards .module-fickle {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.services-cards .module-fickle .fickle-image {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
  border-radius: 20px;
  transition: var(--transition);
}
.services-cards .fickle-has-link:hover .fickle-image {
  filter: brightness(0.3);
}
.services-cards .module-fickle:hover img {
  animation: zoom 0.5s ease-out alternate;
  animation-direction: alternate;
}
.services-cards .module-fickle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 100%;
}
.services-cards .module-fickle .fickle-header .title {
  font-family: "Krona";
  color: #fff;
  font-size: 1.2rem;
}
.services-cards .module-fickle .fickle-header .title a {
  color: #fff;
  text-decoration: underline;
}
.services-cards .module-fickle .fickle-header .fickle-subtitle > * {
  color: var(--gray-color);
}

.services-cards .module-fickle .fickle-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-bottom: 22%; */
}
.services-cards .module-fickle .fickle-additional-html-code,
.services-cards .module-fickle .fickle-additional-html-code a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 600;
}
.services-cards .module-fickle .fickle-additional-html-code a {
  opacity: 0;
  transition: var(--transition);
  padding-bottom: 12%;
}
.services-cards .module-fickle:hover .fickle-additional-html-code a {
  opacity: 1;
}

/* About us page */
#about-us-intro {
  padding-top: 100px !important;
  height: var(--dynamic-height);
  align-items: center;
  overflow: hidden;
}
.about-map-col,
.about-map {
  height: 100%;
}
.about-map-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  /* max-width: 100%; */
}

.about-map {
  text-align: right;
}
.about-map svg {
  width: auto;
  height: 100%;
  margin-right: 0;
  margin-left: auto;
  /* transform: translate3d(50%, -60%, 0) scale(1.9534, 1.9534); */
  /* transform: translate3d(-20%, -30%, 0) scale(2.9534, 2.9534); */
  transform: translate3d(20%, 30%, 0) scale(1, 1);
  pointer-events: none;
}
.about-map path {
  fill: #ffffff1a;
  /* stroke: #0000004a; */
  stroke: #000;
  stroke-width: 1px;
}
.about-map svg circle {
  stroke-width: 1px;
}

.about-intro-image-col .module-image {
  margin: auto;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}
.about-intro-image-col .module-image img {
  object-fit: cover;
  border-radius: 100%;
  aspect-ratio: 1/1;
  padding: 15%;
}
.about-intro-desc-col {
  padding-right: 5rem;
}

/* Academy Page */
.academy-intro {
  background-size: auto 65%;
  background-position: top right;
  background-repeat: no-repeat;
  align-items: flex-start;
  justify-content: flex-start;
}
.academy-intro .bg-img {
  position: relative;
}
.academy-intro .bg-img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.z2 {
  z-index: 2;
}
.academy-form-section {
  padding: 4rem;
  border-radius: 20px;
}
.bg-shape {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
}
.bg-shape-inner {
  position: absolute;
  top: 120%;
  background-image: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
  width: 100%;
  height: 100%;
  filter: blur(40px);
  z-index: -1;
  border-radius: 9999px;
  width: 100vw;
  height: 100vw;
  transform: scale3d(1.8, 1.8, 1);
  z-index: 1;
}
.academy-intro-desc-col {
  padding-top: 40vh;
  margin-bottom: 10rem;
}
.academy-gallery {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2rem;
  z-index: 9;
}
.academy-gallery figure {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 0;
  display: flex;
  flex: 0 0 40%;
  max-width: 40%;
  height: 70vh;
}
.academy-gallery figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Appointment Page */
#form-appointment {
  padding: 0;
  margin-top: 3rem;
}
#form-appointment .form-group {
  margin-bottom: 3rem;
}
#form-appointment label {
  color: var(--gray-color);
  font-size: 1.2rem;
}
.form-group-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  background: #ffffff17;
  border-radius: 20px;
  overflow: hidden;
  padding: 1rem;
}
.form-group-inner.select_hour {
  max-height: 400px;
  overflow-y: auto;
}
.btn-select-person {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border: none;
  background: #ffffff05;
  font-size: 1.5rem;
  border-radius: 20px;
  color: var(--gray-color);
  width: 50%;
  transition: var(--transition);
}
.btn-select-person .person-img {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 0 0 10px 0px #000;
}
.btn-select-person .person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-select-person .person-img .added {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: var(--transition);
}
.btn-select-person.active .person-img img {
  filter: brightness(0.5);
}
.btn-select-person.active .person-img .added {
  opacity: 1;
}
.btn-select-person.active,
.btn-select-service.active,
.btn-select-hour.active {
  background-color: var(--secondary-color) !important;
  color: #fff;
}
.btn-select-person:hover,
.btn-select-service:hover,
.btn-select-hour:hover {
  background-color: #ffffff05;
  color: #fff;
}

#form-appointment .services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  flex-wrap: wrap;
}
#form-appointment .services-wrapper.selected .btn-select-service:not(.active) {
  opacity: 0.5;
}
.btn-select-service,
.btn-select-hour {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff12;
  color: var(--gray-color);
  border: none;
  border-radius: 10px;
  font-size: 1.2rem;
  padding: 10px 20px;
  transition: var(--transition);
  line-height: 1.2;
}
.btn-select-service {
  justify-content: space-between;
}
.btn-select-service .service-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.btn-select-service .icon,
.btn-select-hour .icon {
  position: relative;
  display: flex;
  align-items: center;
}
.btn-select-service .added,
.btn-select-hour .added {
  position: absolute;
  left: 1px;
}
.btn-select-service .added,
.btn-select-service.active .add,
.btn-select-hour .added,
.btn-select-hour.active .add {
  opacity: 0;
}
.btn-select-service.active .added,
.btn-select-hour.active .added {
  opacity: 1;
}
.btn-select-hour-available {
  color: #fff;
}
.btn-select-hour-not-available {
  color: #757373;
  opacity: 0.8;
}
.btn-select-hour-available {
  background-color: #643f00;
}
.ui-datepicker {
  padding: 1rem;
  border: none !important;
  border-radius: 20px;
  background: #171717;
  width: fit-content;
}
.ui-datepicker .ui-datepicker-header {
  background: transparent;
  border: none;
}
.ui-widget-header .ui-icon {
  background-image: none;
  position: relative;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
}
.ui-datepicker-prev .ui-icon {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}
.ui-datepicker-next .ui-icon {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.ui-datepicker .ui-datepicker-title,
.ui-datepicker th {
  font-weight: 500;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled {
  opacity: 1;
  color: #474747 !important;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled span {
  color: #474747 !important;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
  color: #fff;
  background: transparent;
  border: none;
  text-align: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui-widget-content .ui-state-default:hover {
  background: #47474733;
}
/* Selected Date */
.ui-state-active,
.ui-widget-content .ui-state-active {
  background: var(--secondary-color) !important;
  border-radius: 100%;
  color: #fff;
}
.ui-datepicker-header .ui-state-hover {
  background: none !important;
  border: none !important;
}

.time-wrapper {
  display: flex;
  gap: 5rem;
}
.select_hour {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.btn-select-hour {
  justify-content: center;
}

#form-appointment .contact-form {
  flex-direction: column;
  padding-bottom: 4rem;
}
#form-appointment .contact-form input,
#form-appointment .contact-form textarea {
  border-color: var(--primary-color);
}
#form-appointment .contact-form div:not(.agreement-radio) label {
  background: #171717;
  font-size: 1.2rem;
}

/* Pricelist */
.pricelist-services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
.pricelist-services-inner .service-card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff14;
  border-radius: 10px;
}
.pricelist-services-inner .service-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.pricelist-services-inner .service-card .title {
  color: #fff;
  font-family: "Krona";
  font-size: 1rem;
}
.pricelist-services-inner .service-card .price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: var(--primary-color);
  border-radius: 5px;
  color: #000;
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1em;
}
.pricelist-services-inner .service-card .price span {
  line-height: 1em;
}
.pricelist-services-inner .service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pricelist-services-inner .service-cta .time {
  color: #fff;
}
.pricelist-services-inner .service-cta .cta a {
  color: #fff;
  font-family: "Krona";
  font-size: 0.725rem;
  border-bottom: 1px solid #fff;
}

/* Login Page */
.site-login {
  padding-top: 100px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.auth-section-inner {
  width: 100%;
  max-width: 380px;
  background: #ffffff0d;
  border-radius: 20px;
  padding: 20px;
  margin: auto;
}
.auth-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  box-shadow: 0 1px 0 0 rgb(255 255 255 / 20%);
}
.auth-header .buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 1px 0 0 rgb(255 255 255 / 20%);
  margin-bottom: 15px;
}
.auth-header .buttons > * {
  padding: 5px 10px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 1px 0 0 #fff;
  width: 100%;
  text-align: center;
}
.auth-header .buttons a {
  color: rgb(255 255 255 / 60%);
  box-shadow: none;
}
.auth-header .message > * {
  margin-bottom: 0;
  color: #fff;
}
.auth-section .form-group {
  margin-bottom: 0;
}
.auth-section .form-goup label {
  font-size: 0.875rem;
}
.auth-section .form-control {
  background-color: rgb(242 242 242 / 10%);
  border: none;
  font-family: "Krona";
  font-weight: 300;
  color: #fff;
  font-size: 0.875rem;
}
.auth-section .help-block-error {
  font-size: 0.825rem;
  text-align: right;
  color: #ce1d3f;
}
.auth-section .form-control:focus {
  box-shadow: 0 0 0 2px var(--primary-color);
}
.alternative-links {
  display: flex;
  justify-content: space-between;
}
.alternative-links .help-links {
  text-align: right;
}
.alternative-links .help-links a {
  color: var(--gray-color);
}
.auth-section label {
  color: #fff;
}
.alternative-links .custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-label,
.custom-control-input.is-valid ~ .custom-control-label {
  color: var(--gray-color);
}
.alternative-links a {
  color: #000;
  font-size: 0.875rem;
  text-decoration: underline;
}
#loginform-rememberme:checked ~ .custom-control-label::before,
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #000;
  border-color: #000;
}
.auth-section form button[type="submit"] {
  width: 100%;
  background: var(--primary-color);
  margin-top: 20px;
  border: none !important;
}
.field-loginform-rememberme .checkbox-text {
  font-size: 0.875rem;
  color: var(--gray-color);
}

.field-signupform-acceptance label {
  color: var(--gray-color);
}
.field-signupform-acceptance a {
  color: #fff;
}

/* ---------------- Footer ---------------- */
footer {
  background-color: #121212;
  padding-top: 30px;
}
.footer_logo img {
  max-width: 150px;
}
.footer-title > * {
  text-transform: uppercase;
  margin-bottom: 10px;
}
.footer-menu {
  margin-bottom: 30px;
}
.footer-menu ul {
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
}
.footer-menu ul li {
  margin-right: 30px;
  text-transform: uppercase;
}
.footer-menu ul li:last-child {
  margin-right: 0;
}
.footer-menu ul li,
.footer-menu ul li > * {
  text-transform: uppercase;
  opacity: 0.8;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  transition: var(--transition);
}
.social-icons ul {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.social-icons svg {
  width: 40px;
  height: auto;
  border: 1px solid #ffffff17;
  border-radius: 100%;
  background: var(--primary-color);
}
.social-icons svg rect {
  stroke: none;
}
.copyright p {
  color: #ffffffa6;
}

/* Booking Pop-ups */
.jconfirm.jconfirm-modern .jconfirm-box {
  background: #000;
  border-radius: 20px;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-title-c,
.jconfirm .jconfirm-box div.jconfirm-title-c .jconfirm-title,
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  color: #fff;
}
.jconfirm.jconfirm-modern .jconfirm-box div.jconfirm-content {
  margin-bottom: 0;
}
.jconfirm.jconfirm-modern .jconfirm-box .jconfirm-buttons button {
  border-radius: 30px;
  background-color: var(--primary-color);
}

.alert-success {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  background: #fff;
  border-radius: 0;
  margin-bottom: 0;
  padding: 15px 20px;
  color: #000;
}
.alert-success .close {
  opacity: 1;
  font-weight: 400;
  display: flex;
  align-items: center;
  line-height: 12px;
}

/* Blog */
.post-item-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  background: #141414;
  padding: 1rem;
  border-radius: 10px;
  transition: var(--transition);
}
.post-item-inner:hover {
  color: #cbcbcb;
}
.post-image-wrapper {
  position: relative;
  padding-top: 70%;
  border-radius: 10px;
  overflow: hidden;
}
.post-image-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.post-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-item-inner .post-title {
  font-size: 1.275rem;
}

/* Single Post Page */
.blog-post-header {
  position: relative;
  text-align: center;
}
.blog-post-header .page-header-background {
  background-size: cover;
}
.blog-post-header .page-header-background:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.blog-post-header-content {
  padding: 13rem 0 10rem 0;
}

.back-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.post-date {
  color: var(--gray-color);
  font-size: 1.275rem;
}
.back-btn-wrapper a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 20px;
  border-radius: 5px;
  background-color: var(--primary-color);
  color: #000;
}
.back-btn-wrapper a lord-icon {
  transform: rotate(-180deg);
}

/* My account */
.col-my-account-nav ul {
  background: #121212;
  border-radius: 20px;
  padding: 20px;
  gap: 15px;
}
.col-my-account-nav ul li {
  background-color: #ffffff12;
  padding: 0;
  border-radius: 10px !important;
  border: none;
  transition: var(--transition);
}
.col-my-account-nav ul li:hover {
  background: #ffffff05;
}
.col-my-account-nav ul li.active {
  background: var(--secondary-color);
}
.col-my-account-nav ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: #fff;
  font-weight: 600;
  opacity: 0.5;
}
.col-my-account-nav ul li.active a {
  opacity: 1;
}

.account-wrapper-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.account-inner-section {
  padding: 20px;
  border-radius: 20px;
  background: #121212;
}

.appointments-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.appointment-item {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem; */
}

.row-my-account-content .appointment-item {
  border-radius: 15px;
  padding: 5px 15px;
}

.row-my-account-content .appointment-item.status-canceled {
  background-color: red;
}
.row-my-account-content .appointment-item.status-canceled .info {
  color: #fff;
}
.row-my-account-content .appointment-item.status-canceled .status-info {
  color: red;
  text-transform: uppercase;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.row-my-account-content .appointment-item.status-canceled .service-name strong span {
  color: #fff !important;
}

.row-my-account-content .appointment-item .status-info {
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: 900;
}

.row-my-account-content .appointment-item.status-confirmed {
  background-color: #51b1ee;
}
.row-my-account-content .appointment-item.status-confirmed .info {
  color: #fff;
}
.row-my-account-content .appointment-item.status-confirmed .status-info {
  color: #1787ce;
  text-transform: uppercase;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.row-my-account-content .appointment-item.status-confirmed .service-name strong span {
  color: #fff !important;
}
.row-my-account-content .appointment-item.status-confirmed .cancel-appointment-trigger {
  background-color: rgba(0, 0, 0, 0.35);
}

.row-my-account-content .appointment-item.status-pending {
  background-color: #d59c40;
}
.row-my-account-content .appointment-item.status-pending .info {
  color: #fff;
}
.row-my-account-content .appointment-item.status-pending .status-info {
  color: #d59c40;
  text-transform: uppercase;
  background: #fff;
  padding: 5px 10px;
  border-radius: 10px;
}
.row-my-account-content .appointment-item.status-pending .service-name strong span {
  color: #fff !important;
}

.account-inner-section-incoming {
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #000;
}
.account-inner-section-past {
  opacity: 0.8;
}

.account-inner-section-incoming .headline > * {
  color: #fff;
}

.appointment-item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.appointment-item .left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.appointment-item .icon {
  display: flex;
  align-items: center;
  padding: 10px;
  background: #ffffff12;
  border-radius: 100%;
}
.appointment-item .service-name,
.appointment-item .service-price {
  font-size: 1.275rem;
  font-weight: 600;
}
.appointment-item .right {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.appointment-item .info {
  color: var(--gray-color);
}
.appointment-item .left .info {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.appointment-item .appointment-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: calc(1rem + 45px);
  margin-top: 1rem;
}
.appointment-item .appointment-buttons button {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--secondary-color);
  border-radius: 5px;
  color: #fff;
  border: none;
  box-shadow: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 5px 10px 5px 5px;
}
.appointment-item .appointment-buttons .cancel-appointment-trigger {
  background: #ffffff12;
}
.account-inner-section.welcome p {
  margin-bottom: 0;
  color: var(--gray-color);
}

/* Edit Appointment */
.col-edit-appointment-hour .select_hour {
  grid-template-columns: 1fr;
}
.select-hour-scroller-L2 {
  max-height: 301px !important;
}
