body {
  font-family: var(--font-primary);
  color: var(--gray-500);
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
}

h1, .h1, h2, .h2 {
  font-weight: 700;
}

h1, .h1 {
  font-size: clamp(1.5rem, 1.35rem + 0.75vw, 2.25rem);
}

h2, .h2 {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
}

h3, .h3 {
	font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}

h4, .h4 {
	font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
}

img {
    max-width: 100%;
}

a:not(.btn) {
    color: var(--primary-500);
}

.fw-bolder {
  font-weight: 800 !important;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            START ANIMATION
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
/* SCROLL ANIMATION */


.reveal, .reveal_fade-auto {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  .reveal.active, .reveal_fade-auto.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  
  .reveal_up, .reveal_auto {
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  .reveal_up.active, .reveal_auto.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  
  .reveal_down, .reveal_down-auto {
    -webkit-transform: translateY(-150px);
            transform: translateY(-150px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  .reveal_down.active, .reveal_down-auto.active {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  
  .reveal_left, .reveal_left-auto {
    position: relative;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  .reveal_left.active, .reveal_left-auto.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  
  .reveal_right, .reveal_right-auto {
    position: relative;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  
  .reveal_right.active, .reveal_right-auto.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  
  @media (max-width: 575px) {
    .reveal_left {
      -webkit-transform: translateX(50px);
              transform: translateX(50px);
    }
    .reveal_right {
      -webkit-transform: translateX(-50px);
              transform: translateX(-50px);
    }
  }

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            START BOOTSTRAP
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.container-2xl {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
}

@media(min-width:1600px){
    .container-2xl {
        max-width: 1560px;
    }
}

.btn {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.btn-primary {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: var(--primary-500) !important;
  --bs-btn-border-color: var(--primary-500) !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: var(--primary-600) !important;
  --bs-btn-hover-border-color: var(--primary-700) !important;
  --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: var(--primary-700) !important;
  --bs-btn-active-border-color: var(--primary-800) !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: var(--primary-500) !important;
  --bs-btn-disabled-border-color: var(--primary-500) !important;
}

.btn-outline-primary {
  --bs-btn-color: var(--primary-500);
  --bs-btn-border-color: var(--primary-500);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--primary-500);
  --bs-btn-hover-border-color: var(--primary-500);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary-500);
  --bs-btn-active-border-color: var(--primary-500);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--primary-500);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--primary-500);
  --bs-gradient: none;
}

.btn-secondary {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: var(--secondary-500) !important;
  --bs-btn-border-color: var(--secondary-500) !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: var(--secondary-600) !important;
  --bs-btn-hover-border-color: var(--secondary-700) !important;
  --bs-btn-focus-shadow-rgb: 49, 132, 253 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: var(--secondary-700) !important;
  --bs-btn-active-border-color: var(--secondary-800) !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: var(--secondary-500) !important;
  --bs-btn-disabled-border-color: var(--secondary-500) !important;
}

.btn-outline-secondary {
  --bs-btn-color: var(--secondary-500);
  --bs-btn-border-color: var(--secondary-500);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--secondary-500);
  --bs-btn-hover-border-color: var(--secondary-500);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--secondary-500);
  --bs-btn-active-border-color: var(--secondary-500);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--secondary-500);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--secondary-500);
  --bs-gradient: none;
}

.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: var(--gray-200);
  --bs-btn-border-color: var(--gray-200);
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: var(--gray-300);
  --bs-btn-hover-border-color: var(--gray-300);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: var(--gray-300);
  --bs-btn-active-border-color: var(--gray-300);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: var(--gray-200);
  --bs-btn-disabled-border-color: var(--gray-200);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-500);
}

.accordion-button {
  /* font-size: var(--size-lg); */
  font-weight: 500;
  color: #252526;
  background-color: var(--gray-50);
}

.accordion-button:not(.collapsed) {
  /* color: var(--bs-accordion-active-color); */
  background-color: var(--gray-100) !important;
  box-shadow: none;
}

.accordion-item {
    background-color: var(--gray-50) !important;
}

.accordion-button:focus {
    box-shadow: none;
}

.pagination {
    width: 100%;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.pagination .page-item .page-link {
    color: var(--gray-500);
    border-radius: 0.625rem;
    border: 0;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            END BOOTSTRAP
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            STAT COMMON
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

/* object-position utilities */
.object-position-top    { object-position: top; }
.object-position-bottom { object-position: bottom; }
.object-position-center { object-position: center; }
.object-position-start  { object-position: left; }
.object-position-end    { object-position: right; }


.content-style-1 h1, .content-style-1 h2,
.content-style-1 h1 strong, .content-style-1 h2 strong {
	font-weight: 700;
}
.content-style-1 h1, .content-style-1 h2 {
	margin-bottom: 1rem;
}
.content-style-1 h1 {
	font-size: clamp(1.875rem, 1.25rem + 3.125vw, 5rem);
}


.content-style-2 h1, .content-style-2 h1 strong,
.content-style-2 h2, .content-style-2 h2 strong {
	font-weight: 700;
}
.content-style-2 h1, .content-style-2 h2 {
	margin-bottom: 1rem;
}
.content-style-2 h2 {
	font-size: clamp(1.5rem, 1rem + 2.5vw, 4rem);
	color: var(--gray-800)
}

.content-style-2 p {
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}


.content-style-3 h1, .content-style-3 h1 strong,
.content-style-3 h2, .content-style-3 h2 strong {
	font-weight: 700;
}
.content-style-3 h1, .content-style-3 h2 {
	margin-bottom: 1rem;
}
.content-style-3 h2 {
	font-size: clamp(1.125rem, 0.75rem + 1.875vw, 3rem);
	color: var(--gray-800)
}

.content-style-3 p {
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}

.space-y-2 > * + * {
  margin-top: 0.5rem; 
}

.space-y-3 > * + * {
  margin-top: 0.75rem; 
}

.space-y-4 > * + * {
  margin-top: 1rem; 
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-7 > * + * {
  margin-top: 1.75rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-9 > * + * {
  margin-top: 2.25rem;
}

.space-y-10 > * + * {
  margin-top: 2.5rem;
}

/* :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
                            END COMMON
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: */

header.header {
  backdrop-filter: blur(5px);
  background-color: rgba(130, 116, 220, 0.75) !important;
}

header.header.sticky-fixed {
  background-color: rgba(130, 116, 220, 0.75) !important;
}

.home-intro h1 strong {
	color: #000;
}

.tab-pill {	
  background: #7d78b8;
}

.tab-pill .nav-link {
  color: #fff;
  border-radius: 999px;
  padding: 8px 24px;
  border: none;
}

.tab-pill .nav-link.active {
  background: #fff;
  color: #000;
}

/* Search box */

.location-input {
  border: none;
  box-shadow: none;
}

.location-input:focus {
  box-shadow: none;
}

.search-btn {
  color: #fff;
  background-color: var(--secondary-500);
}

.search-btn:hover {
	background-color: var(--secondary-600);
}

.location-badge {
	background-color: rgba(255, 255, 255, 0.25);
}

.stay-list p:last-of-type {
	margin-bottom: 0;
}

.stay-list .col .stay-box {
	background-color: #E9E9E9;
}

.stay-box:before,
.stay-box:after {
		content: "";
		position: absolute;
		width: 10vw;
		height: 10vw;
		background-color: #C38A86;
		transition: opacity 0.3s ease;
		filter: blur(50px);
		opacity: 0.6;

}

.stay-box:before {
		top: -7vw;
		right: -7vw;
}

.stay-box:after {
		bottom: -7vw;
		left: -7vw;
}

.stay-list .col:nth-of-type(2) .stay-box::before,
.stay-list .col:nth-of-type(2) .stay-box::after {
	background-color: #8BC7A5;
}

.stay-list .col:nth-of-type(3) .stay-box::before,
.stay-list .col:nth-of-type(3) .stay-box::after {
	background-color: #E8A961;
}

.stay-list .col:nth-of-type(4) .stay-box::before,
.stay-list .col:nth-of-type(4) .stay-box::after {
	background-color: #5FA1E2;
}

/* Footer */
ul.footer-links {
  margin-bottom: 0;
}

ul.footer-links > * + * {
  margin-top: 1rem; 
}

ul.footer-links li {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
ul.footer-links li a {
  text-decoration: none;
  color: var(--gray-500);
}
ul.footer-links li a:hover {
  color: var(--primary-500);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--gray-200);
  background-color: var(--gray-50);
  color: var(--gray-500);
  text-decoration: none;
  font-size: 1.25rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}


.social-links a:hover {
  background-color: var(--primary-500);
  color: #fff;
}

/* Inner page */

.inner-intro p {
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1.25rem);
}

.inner-intro p:last-of-type {
  margin-bottom: 0;
}

.grid-list-view .nav-item .nav-link {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.25rem;
}

.grid-list-view .nav-item img {
  filter: invert(43%) sepia(14%) saturate(711%) hue-rotate(176deg) brightness(100%) contrast(84%);
}

.grid-list-view .nav-item .nav-link.active img {
  filter: invert(99%) sepia(62%) saturate(2%) hue-rotate(206deg) brightness(103%) contrast(100%);
}

.grid-list-view .nav-item .nav-link.active {
  background-color: var(--secondary-500);
}

/* Start FIlter Accordion */
.filter-accordions .accordion .accordion-item,
.filter-accordions .accordion .accordion-button:not(.collapsed) {
  background-color: transparent !important;
}

.filter-accordions .accordion .accordion-item {
  border-top: 0 !important;
  border-left: 0 !important;
  border-right: 0 !important;
}

.filter-accordions .accordion .accordion-button,
.filter-accordions .accordion .accordion-body {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.filter-accordions .accordion .accordion-body  {
  padding-top: 0 !important;
}
/* End FIlter Accordion */


/* Start Pagination */
.modern-pagination .page-link {
  border: none;
  margin: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: 500;
  background: #f1f3f5;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.modern-pagination .page-link:hover {
  background-color: var(--secondary-500);
  color: #fff;
  transform: translateY(-2px);
}

.modern-pagination .page-item.active .page-link {
  background-color: var(--secondary-500);
  color: #fff;
  box-shadow: 0 6px 15px rgba(13,110,253,0.4);
}

.modern-pagination .page-item.disabled .page-link {
  background: #e9ecef;
  color: #adb5bd;
  cursor: not-allowed;
  box-shadow: none;
}

/* End Pagination */

/* Start Property Page */
.property-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-template-rows: repeat(2, 1fr); */
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.grid-list {
  background-color: #5FA1E2;
}

.grid-list:first-of-type {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-list img {
  width: 100%;
  height: 100%;
}

/* End Property Page */

/* Start About Page */
.partner-properties {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 15vw;
}

.building-properties {
  position: absolute;
  right: 0;
  bottom: 0;
}
.building-properties img {
  border-bottom-right-radius: 0.75rem;
}

/* End About Page */
