@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --brand: #ad9271; 
  --link-color: #1D242E;
  --heading-color: #212121;
  --black: #252525;
  --dark: #181818;
  --grey-100: #f7f7f7;
  --border-color: rgba(112, 112, 112, 0.431);
  --shadow: 0px 3px 15px 0px #1010101a;
  --br: .875rem;
  --body-text-color: #666666;
  --border-radius: .35rem;
  --white: #ffffff;
  --transition: all .3s ease-in-out;
  --body-font: "Montserrat", sans-serif; 
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font) !important;
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color); 
  padding-right: 0 !important;
}
.ellipsis-3 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal; 
}
.ellipsis-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal; 
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
  object-fit: cover;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}
.opening-hours-display { margin-bottom:0; }

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #F5F5F5 !important;
}

.bg-primary {
  background-color: var(--brand) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.text-primary {
  color: var(--brand) !important;
}

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

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.ff-sg {
  font-family: var(--second-font);
}

strong {
  font-weight: 700;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-dark {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}
.btn-dark:hover, .btn-dark:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-dark:hover svg, .btn-dark:focus svg {
  color: var(--white);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

.scroller * {
  scrollbar-width: thin;
  scrollbar-color: #ddd #eee;
}

.scroller *::-webkit-scrollbar {
  width: 12px;
}

.scroller *::-webkit-scrollbar-track {
  background: #eee;
}

.scroller *::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
  border: 3px solid #eee;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}
 
@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.25rem;
  border: 1px solid var(--white);
  height: 2.25rem;
  border-radius: 50%;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}



.site-header { z-index: 999; }
.site-header.fixed-top {
  position: fixed;
  background-color: var(--dark) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
}
.site-header.fixed-top .top__nav { display: none; }
.navbar .custom-logo-link img { max-height: 4rem;width: auto; }
.navbar .nav-item .nav-link {
  font-size: 1rem;text-transform:uppercase;letter-spacing:1px;
  color: var(--white);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--brand);
}
.navbar .nav-item .nav-link:hover .caret {
  transform: rotate(-180deg);
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--brand);
  position: absolute;
  bottom: 0;
  left: 0%;
  border-radius: 20px;
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .inner__icon {
  position: relative;
}
.navbar .inner__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.25rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23222' d='m13.292 12l-4.6-4.6l.708-.708L14.708 12L9.4 17.308l-.708-.708z'/%3E%3C/svg%3E") no-repeat center center/1.75rem;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  margin-left: 1rem;
}
.navbar .navbar-toggler svg {
  position: relative;
  left: 1px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
@media(min-width:992px) {
  .navbar-nav { gap: 1rem; }
}


@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media (max-width: 1199px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 1rem;
    background-color: var(--dark);z-index: 9999;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 0 0 1rem 1rem;
  }
  .navbar .navbar-collapse .nav-link {
    width: auto;
    display: inline-block;
  }
}
@media (max-width: 576px) {
  .navbar .navbar-brand img {
    max-height: 3rem;
    width: auto;
  }
}
 
.site-footer .custom-logo {
  max-height: 5rem;
}
footer .link, footer address {
  color: var(--dark);
}
footer .link:hover, footer .link:focus, footer .link:active {
  color: var(--white);
  text-decoration: underline;
}
footer a {
  color: color-mix(in oklab, var(--dark) 75%, transparent);
  font-size: 1rem;
}
footer a:hover, footer a:focus, footer a:active {
  color: color-mix(in oklab, var(--dark) 95%, transparent);
  text-decoration: underline;
}
footer .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}
.social__box a {
  width: 3.5rem;
  height: 3.5rem;
  background-color: #F8F9FA;
}
.social__box a:hover, .social__box a:focus {
  background-color: var(--brand);
}
.social__box a:hover svg path, .social__box a:focus svg path {
  fill: var(--white);
}
.social__box.footer a:hover, .social__box.footer a:focus {
  background-color: var(--dark);
}

.logo__box img {
  width: 100%;
  height: 5rem;
  object-fit: contain;
  padding: 0.25rem;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.logo__box:hover img {
  filter: none;
}

.curve__top {
  border-radius: 3rem 3rem 0 0;
}

.go__top {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
}
 

@media (max-width: 991px) {
  .research__wrapper.bg-light {
    background-color: transparent !important;
  }
}
.why__choose__us .icon__box {
  width: 4rem;
  height: 4rem;
}
.why__choose__us .icon__box svg {
  width: 2.5rem;
  height: 2.5rem;
}
.why__choose__us:hover {
  border-color: var(--brand) !important;
}

.chooseCarousel .owl-stage, .serviceCarousel .owl-stage {
  display: flex;
}
.chooseCarousel .owl-stage .owl-item, .serviceCarousel .owl-stage .owl-item {
  display: flex;
  padding: 1px;
}

.border-primary {
  border-color: var(--brand) !important;
}

.data__table td {
  border: 0;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.data__table td:first-child {
  border-right: 1px solid #e9e6e7;
}

.contact__form .form-control, .contact__form .form-select {
  height: 3.5rem;
  padding: 1rem 1.5rem;
}

.promo__wrapper .btn-primary:hover, .promo__wrapper .btn-primary:focus, .promo__wrapper .btn-primary:active {
  background-color: #fff;
  color: var(--brand);
}
.promo__wrapper .btn-primary:hover svg path, .promo__wrapper .btn-primary:focus svg path, .promo__wrapper .btn-primary:active svg path {
  fill: var(--brand);
}
.promo__wrapper .btn-white:hover svg path, .promo__wrapper .btn-white:focus svg path, .promo__wrapper .btn-white:active svg path {
  fill: var(--white);
}

.galleryItem img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.inner__list {
  padding-left: 1rem;
}
.inner__list li {
  list-style-type: disc;
}

.tab__select {
  height: 3.5rem;
  border: 2px solid var(--black);
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .tab-content.bg-white {
    background-color: transparent !important;
  }
}
.info__card {
  background-color: #F5F5F5;transition: var(--transition);
}
.info__card:hover {
  box-shadow: 0px 6px 11px rgba(141, 141, 141, 0.1607843137);
  border-color: rgba(141, 141, 141, 0.1607843137);
  transform: translateY(-5px);
}

.itemHeight .carousel-item {
  min-height: 19rem;
}

.contact__list li .icon {
  width: 2rem;
}
.contact__list li .icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.form-control {
  background-color: #F5F5F5;
  border-color: rgba(227, 227, 227, 0.3921568627);
  height: 4.5rem;
  border-radius: 1rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.form-control::placeholder {
  color: #8D8D8D;
  font-size: 0.937rem;
  font-weight: 400;
  text-transform: uppercase;
}

textarea.form-control {
  height: auto;
} 

.authore__avatar img {
  border-radius: 50% !important;width: 4rem;
  height: 4rem;
  object-fit: cover;
}

.post__detail__wrapper h2 { margin-top: 2.5em; }
.post__detail__wrapper h3 { margin-top: 1.75em; }
.post__detail__wrapper h4 { margin-top: 1em; }
.post__detail__wrapper img { border-radius: 1rem; }
 
.back__btn {
  left: -5rem;background-color: #fff;
}
.back__btn:hover, .back__btn:focus, .back__btn:active {
  background-color: #dcdcdc;
}
@media (max-width: 991px) {
  .back__btn {
    left: 3rem;position: fixed !important;top: 7rem !important;
  }
}
@media (max-width: 575px) {
  .back__btn {
    left: 2rem;top: 5rem !important;
  }
}

.service-item .service-thumbnail a img {
  width: 100%;max-width: 100%;aspect-ratio: 4 / 3;object-fit: cover;
}
.service-item .service-title a {
  color: var(--white);
}

.subpage__header { padding: 15rem 0 12rem 0; }

/* home page styles */
.homepage__header { height: 100vh;padding:15rem 0 12rem 0;max-height:1080px; }
.info__wrapper { margin-top: -6rem;position: relative;z-index: 99;transition: var(--transition); }
.info__card { box-shadow: var(--shadow);padding-top: 6rem; }
.info__card__icon { width: 8rem;height: 8rem;top: -4rem; }
@media(max-width:1499px) {
  .homepage__header {padding:15rem 0 10rem 0;max-height:800px; }
}
@media(max-width:1199px) {
  .info__card__icon { width: 6rem;height: 6rem;top: -3rem; }
}
@media(max-width:991px) {
  .info__card { margin-top: 2rem; }
}
.partner__logo__box img { max-height: 10rem;width: auto;margin-left: auto;margin-right: auto; }
.partner__logo__box.sm img { max-height: 3rem; }


/* contact page styles */
#page-14 { background-color: var(--grey-100); }
.contact__form p { margin-bottom: 0; }
.contact__form label { display: block; }
.contact__form input, .contact__form textarea, .contact__form select { width: 100%;height: 3rem;border: 1px solid;
  border-color: #e8d2b9;border-radius: var(--border-radius);color: var(--dark);-webkit-appearance: none;padding: .5rem 1.25rem;outline: none;background: #fff3e5; }
.contact__form textarea { height: auto;max-height: 8rem; }
.contact__form input[type="submit"] { background-color: var(--brand);border-color: var(--brand);color: var(--white);transition: var(--transition); }
.contact__form input[type="submit"]:hover,.contact__form input[type="submit"]:focus,.contact__form input[type="submit"]:active { background-color: var(--dark);border-color: var(--dark);color: var(--white); }
.contact__icon__box { width: 3rem;height: 3rem;flex-basis: 3rem !important;color: var(--dark); }
@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.contact__icon__box {
    flex-basis: 3rem !important;flex-grow: inherit;flex-shrink: 0;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.col {
    flex-basis: calc(100% - 3rem) !important;flex-grow: inherit;white-space: normal;
  }
}
@media (min-width: 992px) {
	.lg__grid__cols__2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}

.gallery__wrapper .thumbnail__sm { aspect-ratio: 4 / 3; }
.gallery__wrapper .thumbnail__lg { aspect-ratio: 4 / 3; }
.gallery__wrapper:nth-child(2) > .col-lg-6:first-child { order: 2; }
.gallery__wrapper:nth-child(2) > .col-lg-6:last-child { order: 1; }
.gallery__card .gallery__card__caption { background-color: #333333d9;transition: var(--transition);transform: scale(0); }
.gallery__card:hover .gallery__card__caption { transform: scale(1);transform-origin: bottom center; }
@media (max-width:991px) {
  .gallery__card .gallery__card__caption { height: auto !important;top: auto !important;transform: scale(1);bottom: 0%;font-size: 1.125rem !important; }
}

.post-categories a { color: var(--white);background-color: var(--dark);padding: .2rem .5rem; }
.post-share { position: absolute;top: 2rem;left: -17%;width: 4rem;text-align: center; }
.post-share a svg { width: 2.25rem;height: 2.25rem;fill: #252525;object-fit: contain;transition: var(--transition); }
.post-share a:hover svg { transform: scale(1.2); }
@media(max-width:1199px){
	.post-share { left: -5rem; }
}
@media(max-width:767px){
	.post-share { left: 0;position:fixed;top:50%;transform:translateY(-50%);padding: .5rem 0;background:var(--white);width:3rem;z-index:999; }
	.post-share a svg{width:1.75rem;height:1.75rem;}
	.post-share strong {font-size:11px;}
}