:root {
  --theme-font-body: "Besley", serif;
  --theme-font-title-serif: "Playfair Display", serif;
  --theme-font-title-sans: "Roboto Flex", sans-serif;
  --theme-color-white-100: rgba(255, 255, 255, 0.1);
  --theme-color-white-200: rgba(255, 255, 255, 0.2);
  --theme-color-white-300: rgba(255, 255, 255, 0.3);
  --theme-color-white-400: rgba(255, 255, 255, 0.4);
  --theme-color-white-500: rgba(255, 255, 255, 0.5);
  --theme-color-white-600: rgba(255, 255, 255, 0.6);
  --theme-color-white-700: rgba(255, 255, 255, 0.7);
  --theme-color-white-800: rgba(255, 255, 255, 0.8);
  --theme-color-white-900: rgba(255, 255, 255, 0.9);
  --theme-color-white: #FFFFFF;
  --theme-color-black-100: rgba(0,0,0, 0.1);
  --theme-color-black-200: rgba(0,0,0, 0.2);
  --theme-color-black-300: rgba(0,0,0, 0.3);
  --theme-color-black-400: rgba(0,0,0, 0.4);
  --theme-color-black-500: rgba(0,0,0, 0.5);
  --theme-color-black-600: rgba(0,0,0, 0.6);
  --theme-color-black-700: rgba(0,0,0, 0.7);
  --theme-color-black-800: rgba(0,0,0, 0.8);
  --theme-color-black-900: rgba(0,0,0, 0.9);
  --theme-color-black: #000000;
  --theme-color-primary: #00827E;
  --theme-color-primary-dark: #005654;
  --theme-color-secondary: #BA8725;
  --theme-color-secondary-dark: #7C5A18;
  --theme-color-dark: #101010;
  --theme-color-light: #F0F3F4;
  --theme-color-yellow: #F6E19F;
  --theme-color-purple: #A677FF;
  --theme-color-purple2: #6E349A;
  --theme-color-purple2-dark: #6E4FAA;
  --theme-color-green-light: #25D366;
  --theme-color-green-dark: #075E54;
  --theme-letter-spacing-tight: 2px;
  --theme-letter-spacing-loose: 7px;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--theme-font-body);
  position: relative;
  font-size: 17px;
  line-height: normal;
  font-weight: 400;
  background-color: var(--theme-color-white);
  overflow-x: hidden !important;
  color: var(--theme-color-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: normal;
  color: var(--theme-color-black);
}

p {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  color: var(--theme-color-dark);
}

p:last-child {
  margin-bottom: 0;
}

b, strong {
  font-weight: 600;
}

ol,
ul {
  padding-left: 1.5rem;
}

dl,
ol,
ul {
  margin-top: 0;
}

li,
address {
  color: var(--theme-color-dark);
  font-size: 17px;
  line-height: normal;
  font-weight: 400;
}

li {
  margin-bottom: 0.5rem;
}

li:last-child {
  margin-bottom: 0;
}

img {
  border-radius: 0;
}

main {
  position: relative;
  background-color: var(--theme-color-white);
  z-index: 1020;
}

label {
  margin-bottom: 0.5rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--theme-color-black) !important;
  transition: background-color 5000s ease 0s;
  outline: 0 none !important;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input {
  border: 1px solid var(--theme-color-black-200);
}

input:focus {
  outline: none !important;
  border: 1px solid var(--theme-color-black-500);
}

iframe {
  position: relative;
  width: 100%;
  border-radius: 0;
}

button {
  box-shadow: none;
  outline: none;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

a {
  transition: all 0.3s ease;
  backface-visibility: hidden;
}

hr {
  border-top: 1px solid var(--theme-color-black-500);
}

.m-6 {
  margin: 6rem !important;
}

.mt-6,
.my-6 {
  margin-top: 6rem !important;
}

.me-6,
.mx-6 {
  margin-right: 6rem !important;
}

.mb-6,
.my-6 {
  margin-bottom: 6rem !important;
}

.ms-6,
.mx-6 {
  margin-left: 6rem !important;
}

.p-6 {
  padding: 6rem !important;
}

.pt-6,
.py-6 {
  padding-top: 6rem !important;
}

.pr-6,
.px-6 {
  padding-right: 6rem !important;
}

.pb-6,
.py-6 {
  padding-bottom: 6rem !important;
}

.pl-6,
.px-6 {
  padding-left: 6rem !important;
}

.m-n6 {
  margin: -6rem !important;
}

.mt-n6,
.my-n6 {
  margin-top: -6rem !important;
}

.me-n6,
.mx-n6 {
  margin-right: -6rem !important;
}

.mb-n6,
.my-n6 {
  margin-bottom: -6rem !important;
}

.ms-n6,
.mx-n6 {
  margin-left: -6rem !important;
}

.font-family-body {
  font-family: var(--theme-font-body) !important;
}

.font-family-title-sans {
  font-family: var(--theme-font-title-sans) !important;
}

.font-family-title-serif {
  font-family: var(--theme-font-title-serif) !important;
}

.font-weight-300 {
  font-weight: 300 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-800 {
  font-weight: 800 !important;
}

.font-weight-900 {
  font-weight: 900 !important;
}

.bi-font-weight-600::before {
  font-weight: 600 !important;
}

.font-size-4xl {
  font-size: 75px !important;
}

.font-size-2xl {
  font-size: 48px !important;
}

.font-size-3xl {
  font-size: 44px !important;
}

.font-size-2xl {
  font-size: 30px !important;
}

.font-size-xl {
  font-size: 25px !important;
}

.font-size-lg {
  font-size: 22px !important;
}

.font-size-md {
  font-size: 17px !important;
}

.font-size-sm {
  font-size: 14px !important;
}

.font-size-xs {
  font-size: 11px !important;
}

.letter-spacing-tight {
  letter-spacing: var(--theme-letter-spacing-tight) !important;
  margin-right: calc(-1 * var(--theme-letter-spacing-tight)) !important;
}

.line-height-0 {
  line-height: 0 !important;
}

.line-height-1 {
  line-height: 1 !important;
}

.line-height-default {
  line-height: 1.5 !important;
}

.text-color-white {
  color: var(--theme-color-white) !important;
}

.text-color-black {
  color: var(--theme-color-black) !important;
}

.text-color-dark {
  color: var(--theme-color-dark) !important;
}

.text-color-light {
  color: var(--theme-color-light) !important;
}

.text-color-primary {
  color: var(--theme-color-primary) !important;
}

.text-color-primary-dark {
  color: var(--theme-color-primary-dark) !important;
}

.text-color-secondary {
  color: var(--theme-color-secondary) !important;
}

.text-color-secondary-dark {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-yellow {
  color: var(--theme-color-yellow) !important;
}

.text-color-purple {
  color: var(--theme-color-purple) !important;
}

a.text-color-white:hover,
a.text-color-white:focus {
  color: var(--theme-color-white) !important;
}

a.text-color-black:hover,
a.text-color-black:focus {
  color: var(--theme-color-black) !important;
}

a.text-color-light:hover,
a.text-color-light:focus {
  color: var(--theme-color-white-900) !important;
}

a.text-color-dark:hover,
a.text-color-dark:focus {
  color: var(--theme-color-dark) !important;
}

a.text-color-primary:hover,
a.text-color-primary:focus {
  color: var(--theme-color-primary) !important;
}

a.text-color-primary-dark:hover,
a.text-color-primary-dark:focus {
  color: var(--theme-color-primary-dark) !important;
}

a.text-color-secondary:hover,
a.text-color-secondary:focus {
  color: var(--theme-color-secondary) !important;
}

a.text-color-secondary-dark:hover,
a.text-color-secondary-dark:focus {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-hover-white {
  color: var(--theme-color-white) !important;
}

.text-color-hover-white:hover {
  color: var(--theme-color-light) !important;
}

.text-color-hover-black {
  color: var(--theme-color-black) !important;
}

.text-color-hover-black:hover {
  color: var(--theme-color-dark) !important;
}

.text-color-hover-black-primary {
  color: var(--theme-color-black) !important;
}

.text-color-hover-black-primary:hover {
  color: var(--theme-color-primary) !important;
}

.text-color-hover-primary {
  color: var(--theme-color-primary) !important;
}

.text-color-hover-primary:hover {
  color: var(--theme-color-primary-dark) !important;
}

.text-color-hover-secondary {
  color: var(--theme-color-secondary) !important;
}

.text-color-hover-secondary:hover {
  color: var(--theme-color-secondary-dark) !important;
}

.text-color-hover-light {
  color: var(--theme-color-light) !important;
}

.text-color-hover-light:hover {
  color: var(--theme-color-white) !important;
}

.text-color-hove-dark {
  color: var(--theme-color-dark) !important;
}

.text-color-hove-dark:hover {
  color: var(--theme-color-black) !important;
}

.text-decoration-hover-underline {
  text-decoration: inherit !important;
}

.text-decoration-hover-underline:hover {
  text-decoration: underline !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration {
  text-decoration: underline !important;
}

.text-decoration:hover {
  text-decoration: underline !important;
}

.background-color-white {
  background-color: var(--theme-color-white) !important;
}

.background-color-black {
  background-color: var(--theme-color-black) !important;
}

.background-color-light {
  background-color: var(--theme-color-light) !important;
}

.background-color-dark {
  background-color: var(--theme-color-dark) !important;
}

.background-color-primary {
  background-color: var(--theme-color-primary) !important;
}

.background-color-primary-dark {
  background-color: var(--theme-color-primary-dark) !important;
}

.background-color-secondary {
  background-color: var(--theme-color-secondary) !important;
}

.background-color-secondary-dark {
  background-color: var(--theme-color-secondary-dark) !important;
}

.background-img-repeat {
  position: relative;
  background-position: center;
  background-repeat: repeat;
}

.background-img-scroll {
  position: relative;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-img-fixed {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.background-img {
  position: relative;
  background-repeat: no-repeat;
  background-size: auto;
}

.parallax-img-background {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  height: auto;
}

.parallax-img-foreground {
  position: relative;
  height: auto;
  overflow: hidden;
}

.shadow-default {
  box-shadow: 0 1rem 2rem var(--theme-color-black-100) !important;
}

.border-thin {
  border: 1px solid var(--theme-color-black-100);
}

.button {
  position: relative;
  font-family: var(--theme-font-title-serif);
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  border-radius: 0;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: manipulation;
  background-color: transparent;
  transition: all 0.3s ease;
}

.button-lg {
  padding: 1rem 1.8rem;
}

.button-sm {
  font-size: 11px;
  padding: 10px 15px;
}

.button:hover {
  outline: none;
  box-shadow: none;
}

.button:focus:not(:focus-visible) {
  outline: none;
}

.button-solid-white {
  background-color: var(--theme-color-white);
}

.button-solid-white:hover {
  background-color: var(--theme-color-light);
}

.button-solid-black {
  background-color: var(--theme-color-black);
}

.button-solid-black:hover {
  background-color: var(--theme-color-dark);
}

.button-solid-primary {
  background-color: var(--theme-color-purple2);
}

.button-solid-primary:hover {
  background-color: var(--theme-color-purple2-dark);
}

.button-solid-secondary {
  background-color: var(--theme-color-secondary);
}

.button-solid-secondary:hover {
  background-color: var(--theme-color-secondary-dark);
}

.hr-vertical-black {
  height: 100%;
  width: 1px;
  background-color: var(--theme-color-black-200);
  display: block;
}

.hr-vertical-white {
  height: 100%;
  width: 1px;
  background-color: var(--theme-color-white-200);
  display: block;
}

.hr-horizontal-black {
  height: 1px;
  width: 100%;
  background-color: var(--theme-color-black-200);
  display: block;
}

.hr-horizontal-white {
  height: 1px;
  width: 100%;
  background-color: var(--theme-color-white-200);
  display: block;
}

.carousel {
  z-index: 1000;
}

.logo {
  display: block;
  position: relative;
  width: 155px;
  height: 90px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url('../images/logo.png');
}


/* MAIN NAVIGATION */
#mainNavigation.navbar.fixed {
  padding: 0.75rem 0;
  background-color: var(--theme-color-black);
}

#mainNavigation.navbar {
  position: fixed;
  padding: 1.25rem 0;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  transition: all 0.3s ease;
}

#mainNavigation.navbar .nav-item {
  position: relative;
  margin-bottom: 0;
}

#mainNavigation.navbar .nav-item .nav-link {
  position: relative;
  font-family: var(--theme-font-title-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--theme-color-white);
  line-height: 1;
  padding: 0.5rem 0;
  margin-left: 2rem;
  transition: all 0.3s ease-in;
}

#mainNavigation.navbar .nav-item .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-color-white);
  opacity: 0.85;
  transition: all 0.3s ease-in;
}

#mainNavigation.navbar .nav-item .nav-link:hover::after,
#mainNavigation.navbar .nav-item .nav-link.active::after {
  width: 100%;
}

#mainNavigation.navbar .nav-item .nav-link:hover,
#mainNavigation.navbar .nav-item:hover .nav-link,
#mainNavigation.navbar .nav-item .nav-link.active {
  color: var(--theme-color-white);
}

/* MAIN HEADER */
#mainHeader {
  position: relative;
  height: 100vh;
}

#mainHeader .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color-black-700);
  z-index: 10;
}

#mainHeader .video-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -99;
  overflow: hidden;
}

#mainHeader .video-foreground {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
}

#mainHeader .video-foreground iframe {
  width: 100vw;
  height: 100vh;
  transform: scale(1.25);
  pointer-events: none;
}

#textSlider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}

#textSlider .container {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-left: 20px;
  padding-bottom: 20px;
}

#textSlider .carousel-inner {
  width: auto;
  text-align: left;
  overflow: visible;
}

#textSlider .carousel-item {
  max-width: 100%;
}

/* GALLERY SLIDER */
#gallerySlider.owl-carousel {
  position: relative;
}

#gallerySlider.owl-carousel .owl-nav {
  position: absolute;
  top: calc(50% - 20px);
  width: calc(100% - 20px);
  margin-left: 10px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 100;
}

#gallerySlider.owl-carousel .owl-nav .owl-prev,
#gallerySlider.owl-carousel .owl-nav .owl-next {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-black);
  border: 1px solid var(--theme-color-black-100);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  min-height: 40px;
  min-width: 40px;
  pointer-events: all;
  transition: all 0.27s ease;
}

#gallerySlider.owl-carousel .owl-nav .owl-prev.disabled,
#gallerySlider.owl-carousel .owl-nav .owl-next.disabled {
  opacity: 0.8;
  cursor: default;
}


/* GLIGHBOX */
#glightboxBody.glightbox-clean .gloader {
  border: 0.13rem solid var(--theme-color-white);
  border-right-color: transparent;
}

#glightboxBody.glightbox-clean .gclose,
#glightboxBody.glightbox-clean .gnext,
#glightboxBody.glightbox-clean .gprev {
  background-color: var(--theme-color-black-100);
  border: 1px solid var(--theme-color-white-100);
  border-radius: 0;
  opacity: 1;
  transition: all 0.27s ease;
}

#glightboxBody.glightbox-clean .gclose:hover,
#glightboxBody.glightbox-clean .gnext:hover,
#glightboxBody.glightbox-clean .gprev:hover {
  background-color: var(--theme-color-black);
}

#glightboxBody.glightbox-clean .gclose.disabled,
#glightboxBody.glightbox-clean .gnext.disabled,
#glightboxBody.glightbox-clean .gprev.disabled {
  cursor: default;
  opacity: 0.5;
  visibility: visible;
  background-color: transparent;
}

#glightboxBody.glightbox-clean .goverlay {
  background-color: var(--theme-color-black-900);
}

#glightboxBody.glightbox-clean .gslide-media {
  box-shadow: none;
}

#glightboxBody.glightbox-clean .gslide-media.gslide-image img {
  border-radius: 0;
  border: 1px solid var(--theme-color-white-100);
}

/* SOCIAL MEDIA ICONS */
.social-media-icon-wrapper {
  position: relative;
  color: var(--theme-color-white);
}

.social-media-icon-wrapper:hover {
  color: var(--theme-color-yellow);
}

/* WHATSAPP */
#whatsappIcon {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  text-decoration: none;
  z-index: 10000;
}

#whatsappIcon.button-whatsapp .button-whatsapp-icon {
  height: 45px;
  width: 45px;
  transition: transform 0.3s ease;
}

#whatsappIcon.button-whatsapp:hover .button-whatsapp-icon {
  transform: scale(1.1);
}

/* BACK To TOP */
#backtoTop.scroll-to-top {
  position: fixed;
  width: 44px;
  height: 44px;
  right: 1rem;
  bottom: 3rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  text-decoration: none;
  background-color: var(--theme-color-purple2);
  transition: opacity 0.3s ease;
  z-index: 10000;
}

#backtoTop.scroll-to-top.visible {
  visibility: visible;
  opacity: 1;
}

#backtoTop.scroll-to-top .bi-arrow-up {
  transition: all 0.3s ease;
}

#backtoTop.scroll-to-top:hover .bi-arrow-up {
  margin-bottom: 0.75rem;
}

/* CONTACT */
.form-item input,
.form-item select,
.form-item textarea {
  display: block;
  width: 100%;
  padding: 0.55rem 0;
  height: inherit;
  line-height: normal;
  text-transform: inherit;
  background-color: var(--theme-color-white);
  background-clip: padding-box;
  border: none;
  border-bottom: 1px solid var(--theme-color-black-200) !important;
  border-radius: 0 !important;
  transition: all 0.3s ease;
}

.form-item input:focus,
.form-item select:focus,
.form-item textarea:focus {
  border: none;
  border-bottom: 1px solid var(--theme-color-black-700) !important;
  outline: 0;
  box-shadow: none !important;
}

.form-item input::placeholder,
.form-item textarea::placeholder {
  color: var(--theme-color-black-400);
  opacity: 1;
}

.form-item-select {
  position: relative;
  width: 100%;
  display: inline-block;
}

.form-item-select::after {
  content: '\F282';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 12px;
  font-family: 'bootstrap-icons' !important;
  font-weight: 600;
  color: var(--theme-color-black);
  line-height: 1;
  margin-top: 1px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-white);
}


/*RESPONSE MESSAGES*/
#responseMessage {
  font-size: 15px;
  display: none;
  padding: 12px 15px;
  color: #0071BC;
  background-color: #EBF6FE;
  border: 1px solid #0071BC;
  border-radius: 0;
  margin-top: 1.5rem;
}

#responseMessage.success {
  color: #006837;
  background-color: #E6F0EC;
  border: 1px solid #006837;
}

#responseMessage.error {
  color: #C1272D;
  background-color: #F9EAEA;
  border: 1px solid #C1272D;
}


/* MEDIA QUERIES */
@media (max-width: 996px) {
  .font-size-4xl {
    font-size: 55px !important;
  }
  .font-size-3xl {
    font-size: 35px !important;
  }
  .font-size-2xl {
    font-size: 28px !important;
  }
  .font-size-xl {
    font-size: 23px !important;
  }

  #mainNavigation.navbar {
    background-color: var(--theme-color-black) !important;
  }

  #mainNavigation.navbar .nav-item .nav-link {
    color: var(--theme-color-white) !important;
    margin: 0 !important;
    padding: 1rem 0  calc(1rem - 1px) 0 !important;
  }

  #mainNavigation.navbar .nav-item .nav-link.active {
    color: var(--theme-color-white) !important;
  }

  #mainNavigation.navbar .nav-item .nav-link::after {
    background-color: var(--theme-color-white) !important;
  }
}

@media (max-width: 768px) {
  #mainHeader .video-foreground iframe {
    width: 100%;
    height: 100vh;
    transform: scale(1.5);
  }
}

@media (max-width: 576px) {
  .font-size-4xl {
    font-size: 40px !important;
  }
  .font-size-3xl {
    font-size: 32px !important;
  }
  .font-size-2xl {
    font-size: 24px !important;
  }
  .font-size-xl {
    font-size: 20px !important;
  }
}
