html,
body {
  overflow-x: clip !important;
}

html {
  scroll-behavior: smooth;
}

html.insomenu-active {
  overflow: hidden !important;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Montserrat", sans-serif;
  color: #414142;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: normal;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #ac9055;
}

.error-msg {
  position: absolute;
  bottom: -12px;
  background: transparent;
  display: flex;
  line-height: 11px;
  padding: 0 4px;
  background-color: #f00;
  color: #fff;
  font-size: 9px;
}

.overflow-visible {
  overflow: visible !important;
}

.order-2 {
  order: 2;
}

a {
  color: #414142;
}

.black-text,
a.black-text {
  color: #000000;
}

a.black-text:hover,
a:hover {
  color: #ac9055;
}

a,
button {
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

p:last-child {
  margin-bottom: 0;
}

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

p {
  margin-bottom: 20px;
}

p:last-child {
  margin-bottom: 0;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.columns.gap-7 {
  margin-left: -96px !important;
  margin-right: -96px !important;
}

.gap-7>.column {
  padding-left: 96px;
  padding-right: 96px;
}

.columns.gap-6 {
  margin-left: -84px !important;
  margin-right: -84px !important;
}

.gap-6>.column {
  padding-left: 84px;
  padding-right: 84px;
}

.columns.gap-5 {
  margin-left: -72px !important;
  margin-right: -72px !important;
}

.gap-5>.column {
  padding-left: 72px;
  padding-right: 72px;
}

.columns.gap-4 {
  margin-left: -60px !important;
  margin-right: -60px !important;
}

.gap-4>.column {
  padding-left: 60px;
  padding-right: 60px;
}

.columns.gap-3 {
  margin-left: -48px !important;
  margin-right: -48px !important;
}

.gap-3>.column {
  padding-left: 48px;
  padding-right: 48px;
}

.columns.gap-2 {
  margin-left: -36px !important;
  margin-right: -36px !important;
}

.gap-2>.column {
  padding-left: 36px;
  padding-right: 36px;
}

.columns.gap-1 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}

.gap-1>.column {
  padding-left: 24px;
  padding-right: 24px;
}

.is-gap-0 {
  gap: 0 !important;
}

.is-gap-1 {
  gap: 4px !important;
}

.is-gap-2 {
  gap: 8px !important;
}

.is-gap-3 {
  gap: 12px !important;
}

.is-gap-4 {
  gap: 16px !important;
}

.is-gap-5 {
  gap: 24px !important;
}

.is-gap-6 {
  gap: 32px !important;
}

.is-gap-7 {
  gap: 40px !important;
}

.is-gap-8 {
  gap: 48px !important;
}

.is-gap-9 {
  gap: 56px !important;
}

.is-gap-10 {
  gap: 64px !important;
}

/*** Modal CSS ***/
.theme-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  visibility: hidden;
}

.theme-modal.is-active {
  visibility: visible;
  opacity: 1;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 99999;
}

.theme-modal-card {
  position: relative;
  top: calc(50% + 30px);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  max-height: inherit;
  transition: all 0.3s linear;
  background-color: #ac9055;
  margin: 0 auto;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.modal-title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

html.is-active {
  overflow: hidden;
}

html:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}

html.is-active:before {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal.is-active .theme-modal-card {
  top: 50%;
}

.theme-modal-background {
  background-color: #000;
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
}

.theme-modal[style="visibility: visible;"] .theme-modal-card {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 1;
}

.theme-modal[style="visibility: visible;"] .theme-modal-background {
  opacity: 0.9;
  visibility: visible;
}

.theme-modal-card-body {
  border: 0;
  position: relative;
  overflow: visible;
}

.theme-modal-card-body {
  padding: 30px;
  background-color: transparent;
  border: 1px solid rgb(255 255 255 / 20%);
}

.close {
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
  opacity: 1;
  border: none;
  background-color: #166cb4;
  position: absolute;
  top: -22px;
  right: -22px;
  margin: 0 auto;
  z-index: 10;
  cursor: pointer;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.close:hover {
  background-color: #ffffff;
  color: #ac9055;
  opacity: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/*** End Modal CSS ***/
.columns.row-register {
  margin-bottom: -12px !important;
}

.form-control::-webkit-input-placeholder {
  color: #bcbec0;
  font-family: "Montserrat", sans-serif;
}

.form-control:-ms-input-placeholder {
  color: #bcbec0;
  font-family: "Montserrat", sans-serif;
}

.col-form .form-control::placeholder {
  color: #bcbec0;
  font-family: "Montserrat", sans-serif;
}

.theme-scrollbar {
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 10px;
}

.theme-scrollbar::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar {
  width: 6px;
  background-color: transparent;
}

.theme-scrollbar::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

ul:last-child {
  margin-bottom: 0;
}

section,
.section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
}

.full-width {
  width: 100%;
}

.section-title {
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.section-title:last-child {
  margin-bottom: 0;
}

.section-title h1,
.section-title h2 {
  font-size: 56px;
  line-height: 60px;
  color: #000;
  margin: 0;
  font-weight: 400;
  position: relative;
  display: inline-block;
  font-family: "Instrument Serif", serif;
  padding-bottom: 30px;
}

.section-title h1:before,
.section-title h2:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #ac9055;
}

.has-text-centered.section-title h1:before,
.has-text-centered.section-title h2:before {
  right: 0;
  margin: 0 auto;
}

h1 {
  font-size: 50px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

.dark p {
  color: #d1d3d4;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6,
.dark a,
.dark span,
.dark small {
  color: #fff;
}

.dark a:hover {
  color: #ac9055;
}

video,
picture {
  display: block;
}

.container {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  font-family: "Montserrat", sans-serif;
  border: 1px solid;
  display: inline-block;
  padding: 10px 30px;
  font-size: 16px;
  text-align: center;
  line-height: 22px;
  font-weight: 500;
  cursor: pointer;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.btn.btn-primary {
  background-color: #ac9055;
  border-color: #ac9055;
  color: #ffffff;
}

.btn.btn-primary:hover {
  background-color: #816c40;
  border-color: #816c40;
  color: #ffffff;
}

.btn.btn-primary-outline {
  background-color: transparent;
  border-color: #ac9055;
  color: #ac9055;
}

.btn.btn-primary-outline:hover {
  background-color: #816c40;
  border-color: #816c40;
  color: #ffffff;
}

.btn.btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ac9055;
}

.btn.btn-white:hover {
  background-color: #eeeeee;
  border-color: #eeeeee;
  color: #ac9055;
}

.btn.btn-white-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn.btn-white-outline:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #816c40;
}

.col-form {
  position: relative;
}

.col-middle {
  display: table;
  width: 100%;
}

.col-middle-inner {
  display: table-cell;
  vertical-align: middle;
}

button:focus {
  outline: 0;
}

.thankyou-msg {
  font-size: 16px !important;
  color: #fff !important;
  background: 0 0 !important;
}

.thankyou-logo img {
  margin: 30px auto 0;
  height: 100px;
  width: auto;
}

.form-group,
.form-group-wrapper {
  position: relative;
}

.thankyou-block {
  height: 100vh;
}

.thankyou-block h1 {
  color: #fff;
  font-size: 30px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.list-point {
  padding: 0;
}

.list-point li {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin-bottom: 5px;
}

.list-point li:last-child {
  margin-bottom: 0;
}

.list-point li:before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.arrow-bottom .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.arrow-bottom .splide__arrow {
  position: static;
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide__pagination {
  margin-top: 30px;
}

.splide.pagination .splide__pagination {
  counter-reset: pagination-num;
}

.splide.pagination .splide__pagination__page:before {
  counter-increment: pagination-num;
  content: counter(pagination-num);
}

.splide.pagination .splide__pagination__page.is-active {
  transform: unset;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.splide.pagination .splide__pagination__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: unset;
  font-size: 18px;
  -webkit-border-radius: unset;
  -moz-border-radius: unset;
  -ms-border-radius: unset;
  -o-border-radius: unset;
}

.splide__arrow svg {
  fill: transparent;
  height: 45px;
  transition: fill 0.2s linear;
  width: 45px;
  -webkit-transition: fill 0.2s linear;
  -moz-transition: fill 0.2s linear;
  -ms-transition: fill 0.2s linear;
  -o-transition: fill 0.2s linear;
}

.splide__arrow:hover:not(:disabled) svg {
  fill: transparent;
}

.splide {
  padding: 0;
}

.splide__slide img {
  width: 100%;
}

.splide__arrow.splide__arrow--prev:disabled,
.splide__arrow.splide__arrow--next:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.splide__arrow {
  width: 45px;
  height: 45px;
  padding: 10px;
  color: #ac9055;
  background-color: transparent;
  border: 1px solid #ac9055;
  opacity: 1;
}

.splide__arrow:hover {
  background-color: #ac9055;
  color: #fff;
  opacity: 1;
}

.splide__arrow svg {
  font-size: 24px;
}

.splide__arrow--prev {
  left: 60px;
}

.splide__arrow--next {
  right: 60px;
}

.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #ac9055;
  opacity: 0.5;
}

.splide__pagination__page.is-active {
  transform: none;
  background: #ac9055;
  opacity: 1;
}

.splide__pagination {
  position: static;
  transform: none;
}

.form-control {
  display: block;
  width: 100%;
  border: none;
  padding: 15px 0;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  border-radius: 0;
  resize: none;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #bcbec0;
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #000 !important;
  caret-color: #000;
}

.form-control:focus {
  outline: 0;
}

.pl-80 {
  padding-left: 80px !important;
}

.modal-card-body {
  padding: 30px;
}

.col-form label span {
  color: #ff0000;
}

.title-tagline {
  font-size: 28px;
  margin-top: 24px;
  display: block;
  color: #ac9055;
}

header {
  position: absolute;
  z-index: 9999;
  padding: 20px 180px;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
}

#header.sticky {
  -moz-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 12px rgb(0 0 0 / 10%);
  box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}

.theme-menu ul {
  display: flex;
  justify-content: end;
}

.menu-link {
  font-size: 60px;
  line-height: 64px;
  color: #000;
  opacity: 0.15;
  font-family: "Instrument Serif", serif;
}

.menu-link.active,
.menu-link:hover {
  color: #ac9055;
  opacity: 1;
}

.theme-logo img {
  width: auto;
  height: 80px;
}

.col-header:first-child {
  max-width: 240px;
  padding: 0;
  flex: 0 0 240px;
}

.menu-contact-detail,
.theme-menu .menu-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

html.insomenu-active .menu-contact-detail,
html.insomenu-active .theme-menu .menu-item {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

html.insomenu-active .theme-menu .menu-item:nth-child(1) {
  transition-delay: 0.2s;
}

html.insomenu-active .theme-menu .menu-item:nth-child(2) {
  transition-delay: 0.4s;
}

html.insomenu-active .theme-menu .menu-item:nth-child(3) {
  transition-delay: 0.6s;
}

html.insomenu-active .theme-menu .menu-item:nth-child(4) {
  transition-delay: 0.8s;
}

html.insomenu-active .theme-menu .menu-item:nth-child(5) {
  transition-delay: 1s;
}

html.insomenu-active .menu-contact-detail {
  transition-delay: 1.2s;
}

.theme-menu::before {
  position: fixed;
  bottom: 0;
  right: 0;
  content: "";
  width: 120px;
  height: 340px;
  background-image: url(../images/element/menu-element.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}

.theme-padding {
  padding-left: 180px;
  padding-right: 180px;
}

.sticky-btn-enquire {
  position: fixed !important;
  top: 210px;
  right: -44px;
  z-index: 999 !important;
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.sticky-btn-enquire:hover {
  color: #fff;
}

#scontactform h3 {
  font-size: 20px;
  line-height: 30px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding: 0;
}

.sticky-bottom-form {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 10px 0 0px 15px;
  width: 100%;
  z-index: 999;
  background: #ac9055;
  max-width: 1344px;
  margin: 0 auto;
  right: 0;
  border: 1px solid rgb(255 255 255 / 60%);
  border-bottom: 0;
}

.sticky-bottom-form .col-form {
  position: relative;
  width: 20%;
  float: left;
  padding: 0 15px;
  margin: 0 0 10px !important;
}

.col-form-title {
  display: none;
}

.sticky-bottom-form .col-form .form-control {
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  line-height: 19px;
}

.copyright-detail p {
  display: inline-block;
}

.captcha-query,
.captcha-sticky-query {
  position: absolute;
  color: white;
  top: 50%;
  letter-spacing: 10px;
  font-size: 14px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

#footer {
  padding: 80px 0;
  background-color: #000;
}

.col-copyright:last-child {
  text-align: right;
}

.theme-block-img {
  position: relative;
  overflow: hidden;
}

.theme-block:hover img {
  transform: scale(1.1);
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.theme-block img {
  -moz-transition: all 0.6s linear;
  -ms-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  -webkit-transition: all 0.6s linear;
  transition: all 0.6s linear;
}

.theme-block-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #00000080;
  z-index: 1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block .theme-block-icon {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  left: 0;
  right: 0;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  z-index: 9;
}

.theme-block .theme-block-icon svg {
  width: 40px;
  height: 40px;
  color: #fff;
}

.theme-block:hover .theme-block-img:before {
  opacity: 1;
}

.theme-block:hover .theme-block-icon {
  opacity: 1;
}


.sticky-notice {
  background-color: #b50000;
  position: fixed;
  top: 94px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.sticky-notice span {
  font-size: 12px;
  line-height: 16px;
  display: block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.counter {
  display: flex;
  gap: 6px;
}

.counter-block h3 {
  font-size: 46px;
  font-weight: 600;
  font-family: "Instrument Serif", serif;
  color: #000;
}

.counter-block p {
  margin-top: 0;
  font-size: 18px;
}

/* Accordion Css Start */

.collapse {
  overflow: hidden;
  transition: 0.5s cubic-bezier(0.5, 0, 0.3, 1);
  transition-property: opacity, height;
  will-change: opacity, contents;
}

.collapse:not(.is-active) {
  height: 0;
  opacity: 0;
}

.card__title img {
  flex: 0 0 50px;
}

.accordion .card__title span {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid #f1ece3;
}

.accordion .card {
  overflow: hidden;
  margin: -1px -1px 1px;
  will-change: contents;
  text-align: left;
}

.accordion .card:not(:last-child) {
  margin-bottom: 36px;
}

.accordion .card:last-child {
  margin-bottom: -1px;
}

.accordion .card:not(:last-child):not(.is-active) {
  border-bottom-color: transparent;
}

.accordion .card.is-active+.card {
  border-top-color: transparent;
}

.accordion .card__title {
  display: flex;
  min-height: 56px;
  margin: 0;
  color: #000;
  margin-bottom: -1px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.accordion .card__title:hover .icon {
  opacity: 0.8;
}

.accordion .card__title.is-active .icon {
  transform: rotateX(180deg);
  opacity: 1;
}

.accordion .card__title .icon {
  width: 28px;
  height: 28px;
  fill: currentColor;
  opacity: 0.3;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-right: -0.25rem;
}

.accordion .card__content {
  margin-left: 66px;
  padding-left: 16px;
  border-left: 1px solid #ac9055;
  margin-top: 20px;
  max-width: 620px;
}

/* Accordion Css End */
.theme-bg {
  background-color: #f9f7f4;
}

.white-bg {
  background-color: #fff;
}

.gray-bg {
  background-color: #f8f8f8;
}

.black-bg {
  background-color: #000;
}

.theme-text {
  color: #ac9055 !important;
}

.white-text {
  color: #fff !important;
}

.call-btn {
  position: fixed;
  bottom: 74px;
  left: 20px;
  width: 40px;
  height: 40px;
  z-index: 888;
  display: block;
  text-align: center;
  border-color: #ac9055;
  background-color: #ac9055;
  animation: theme-pulse 2s infinite;
  border-radius: 100%;
  padding: 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.call-btn svg {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 7px;
}

@keyframes theme-pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgb(29 87 163);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

.theme-img-animation>picture>img {
  filter: blur(12px);
}

.theme-img-animation.eligibility>picture>img {
  filter: blur(0px);
  -webkit-filter: blur(0px);
}

.theme-block.theme-img-animation {
  overflow: hidden;
}

.plan-inquire-btn {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: fit-content;
  opacity: 1;
  visibility: visible;
  z-index: 9;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.sticky-btn-enquire.sticky-brochure {
  top: 380px;
  right: -70px;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 89;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease;
  background-color: #ac9055;
  color: #fff;
  border-radius: 100%;
  border: 1px solid #ffffff30;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}

.scroll-to-top:hover {
  background: #8b7443;
}

.scroll-to-top.showBtn {
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.tab-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-list .tab a {
  position: relative;
  display: block;
  line-height: 1;
  padding: 14px 24px;
  border: 1px solid #c3c3c3;
  text-align: center;
  width: 200px;
  background: transparent;
  cursor: pointer;
  user-select: none;
}

.tab-list .tab a:hover,
.tab-list .tab.is-active a {
  background: #ac9055;
  border: 1px solid #ac9055;
  color: #ffffff;
}

.stock-image,
.actual-image,
.artistic-impression {
  position: relative;
}

.stock-image::after,
.actual-image::after,
.artistic-impression::after {
  content: "Artistic Impression";
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.stock-image::after {
  content: "Stock Image";
}

.actual-image::after {
  content: "Actual Image";
}

.img-tag {
  position: absolute;
  bottom: 8px;
  right: 10px;
  width: auto;
  height: auto;
  max-width: fit-content;
  z-index: 9;
  color: #fff;
  font-size: 11px;
  line-height: normal;
  font-weight: 600;
  text-shadow: 1px 1px #000000;
}

.img-tag.img-tag-left {
  bottom: 8px;
  right: unset;
  left: 10px;
}

.tab-list-block {
  margin-bottom: 40px;
}

.social-media {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  position: relative;
  color: #fff;
  display: block;
  max-width: 30px;
  transform: scale(1);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.social-icon:hover {
  transform: scale(1.2);
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.insomenu-bars {
  top: 50%;
  right: 180px;
  margin: 0;
  display: inline-block;
  height: 60px;
  width: 60px;
  position: absolute;
  z-index: 444;
  cursor: pointer;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.insomenu-bars span,
.insomenu-bars span:after,
.insomenu-bars span:before {
  width: 60px;
  border-radius: 0;
  -webkit-transition: -webkit-transform ease 0.15s;
  transition: -webkit-transform ease 0.15s;
  transition: transform ease 0.15s;
  transition: transform ease 0.15s, -webkit-transform ease 0.15s;
  position: absolute;
  left: 0;
  margin: 0 auto;
  height: 2px;
  background-color: #ffffff;
}

.insomenu-bars span:before {
  top: -8px;
}

.insomenu-active .insomenu-bars span,
.insomenu-active .insomenu-bars span:after,
.insomenu-active .insomenu-bars span:before {
  opacity: 1;
  background-color: #000;
}

.insomenu-bars span {
  top: 50%;
  display: block;
  margin-top: -2px;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.1s;
  transition-duration: 0.1s;
  width: 40px;
}

.insomenu-bars span:after,
.insomenu-bars span:before {
  display: block;
  content: "";
}

.insomenu-bars span:before {
  top: -10px;
  -webkit-transition: top 0.1s 0.14s ease, opacity 0.1s ease;
  transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}

.insomenu-bars span:after {
  bottom: -10px;
  -webkit-transition: bottom 0.1s 0.14s ease,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.14s ease,
    transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.insomenu-active .insomenu-bars span {
  -webkit-transition-delay: 0.14s;
  transition-delay: 0.14s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.insomenu-active .insomenu-bars span:before {
  top: 0;
  -webkit-transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  transition: top 0.1s ease, opacity 0.1s 0.14s ease;
  opacity: 1;
  /* width: 25px; */
}

.insomenu-active .insomenu-bars span:after {
  bottom: 0;
  transition: bottom 0.1s ease,
    -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  /* width: 25px; */
}

.insomenu-active .insomenu-bars span {
  /* width: 25px; */
}

.insomenu-active .menu-creative,
.insomenu-active .our-offices-item:first-child {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

.insomenu-active .our-offices-item:last-child {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

.theme-menu {
  position: fixed;
  background-color: #f1ece3;
  width: 100%;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 690px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  -webkit-transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  -moz-transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  -ms-transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  -o-transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.theme-menu-inner {
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  overflow-y: auto;
  height: 100vh;
  height: 100dvh;
}

.insomenu-active .theme-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.theme-menu ul li {
  padding: 10px 0;
}

.theme-menu ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.theme-menu ul {
  flex-direction: column;
  justify-content: start;
}

.menu-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Read More Button Styles */
.read-more-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  font-size: 16px;
  max-width: fit-content;
  position: relative;
  color: #ac9055;
  margin-top: 30px;
}

.read-more-arrow {
  position: relative;
}

.read-more-arrow .arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 5px;
  border: 1px solid #ac9055;
  border-radius: 100%;
}

.progress-ring {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 34px;
  height: 34px;
  transform: rotate(-90deg);
  z-index: 2;
  pointer-events: none;
  padding: 0px;
}

.ring {
  fill: none;
  stroke: #000000;
  stroke-width: 1;
  stroke-dasharray: 113.1;
  stroke-dashoffset: 113.1;
  transition: stroke-dashoffset 0.6s ease;
  -webkit-transition: stroke-dashoffset 0.6s ease;
  -moz-transition: stroke-dashoffset 0.6s ease;
  -ms-transition: stroke-dashoffset 0.6s ease;
  -o-transition: stroke-dashoffset 0.6s ease;
}

.read-more-btn:hover .ring {
  stroke-dashoffset: 0;
}

.read-more-btn:hover {
  color: #000;
}

/* Read More Button Styles */

.theme-element {
  position: absolute;
  z-index: -1;
}

.theme-element.element-top-right {
  top: 0;
  right: 0;
}

.theme-element.element-bottom-right {
  bottom: 0;
  right: 0;
}

.theme-element.element-top-left {
  top: 0;
  left: 0;
}

.theme-element.element-bottom-left {
  bottom: 0;
  left: 0;
}

.building-element {
  max-width: 500px;
}

.column-block {
  padding-top: 30px;
  padding-bottom: 30px;
}

.theme-overlay {
  position: relative;
}

.theme-overlay:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ac905580;
  z-index: 1;
}

.vision-mission-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.columns.is-variable .column {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.columns.is-variable {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.home-vision-mission-wrapper .column:not(:last-child) {
  border-right: 1px solid #f1ece3;
}

.section-home-way .building-element {
  max-width: 300px;
}

.theme-overlay.black-overlay:before {
  background-color: #00000066;
}

.img-tabs img {
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
  transition: filter 0.4s ease-in-out;
  -webkit-transition: filter 0.4s ease-in-out;
  -moz-transition: filter 0.4s ease-in-out;
  -ms-transition: filter 0.4s ease-in-out;
  -o-transition: filter 0.4s ease-in-out;
}

.img-tabs .tab.is-active img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.img-tabs h5 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-size: 30px;
  font-family: "Instrument Serif", serif;
  color: #fff;
  z-index: 2;
  font-weight: 500;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.tab {
  position: relative;
  overflow: visible;
}

.country-code {
  display: flex;
  height: 100%;
}

.country-code select {
  height: 52px !important;
}

.img-tabs .tab {
  display: flex;
}

.img-tabs .tab:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  z-index: 2;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.img-tabs .tab.is-active:before {
  background-color: #ac9055;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.img-tabs .tab::after {
  position: absolute;
  content: "";
  bottom: 0px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 60px;
  height: 20px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #ac9055;
  z-index: -1;
  opacity: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.img-tabs {
  margin-bottom: 50px;
}

.img-tabs .tab.is-active::after {
  opacity: 1;
  bottom: -20px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.overlay-0::before {
  display: none;
}

.residential-projects-block h4,
.block-title h4 {
  font-family: "Instrument Serif", serif;
  color: #ac9055;
}

.block-title {
  margin-top: 10px;
}

#clients-logo-slider2 {
  position: relative;
  left: 180px;
  margin-left: -180px;
  margin-top: 15px;
}

.clients-logo-slider picture img {
  width: auto;
  height: 80px;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

.clients-logo-slider picture:hover img {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

.clients-logo-detail:after,
.clients-logo-detail:before {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(270deg, #fff 40.42%, rgb(255 255 255 / 0%) 100%);
  z-index: 1;
}

.clients-logo-detail:after {
  left: 0;
  right: unset;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.get-in-touch-form {
  padding: 50px;
  border: 1px solid #f1ece3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.get-in-touch-form .columns .column {
  padding: 20px !important;
}

.get-in-touch-form .columns {
  margin: -20px !important;
}

option {
  color: #000;
  background-color: #fff !important;
  font-weight: 500;
  font-family: "Montserrat";
}

.mobile-with-country {
  display: flex;
  gap: 15px;
}

.form-label {
  font-weight: 500;
}

iframe {
  display: block;
}

.footer-logo {
  max-width: 200px;
  display: block;
}

.column-footer:first-child {
  max-width: 400px;
}

footer h5 {
  color: #ac9055;
  font-family: "Instrument Serif", serif;
  font-size: 20px;
  margin-bottom: 12px;
}

footer a,
.copyright-detail small {
  color: #bcbdc0;
}

.footer-wrapper a {
  display: block;
}

.footer-wrapper {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.footer-menu {
  max-width: 280px;
}

.footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}

.footer-menu ul li {
  width: calc(50% - 20px);
}

.copyright-bar {
  border-top: 1px solid #414142;
  padding-top: 15px;
  margin-top: 50px;
}

/* JS scroll */
.js-scroll {
  opacity: 0;
}

.scrolled.fade-in {
  animation: fade-in 1.5s ease-in-out both;
  -webkit-animation: fade-in 1.5s ease-in-out both;
}

.scrolled.fade-in-top {
  animation: fade-in-top 1.5s ease-in-out both;
  -webkit-animation: fade-in-top 1.5s ease-in-out both;
}

.scrolled.fade-in-bottom {
  animation: fade-in-bottom 1.5s ease-in-out both;
  -webkit-animation: fade-in-bottom 1.5s ease-in-out both;
}

.scrolled.fade-in-left {
  animation: fade-in-left 1.5s ease-in-out both;
  -webkit-animation: fade-in-left 1.5s ease-in-out both;
}

.scrolled.fade-in-right {
  animation: fade-in-right 1.5s ease-in-out both;
  -webkit-animation: fade-in-right 1.5s ease-in-out both;
}

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100px);
    -webkit-transform: translateX(-100px);
    -moz-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    -o-transform: translateX(-100px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(100px);
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-bottom {
  0% {
    opacity: 0;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in-top {
  0% {
    opacity: 0;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.zoom-out {
  opacity: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 3s;
  transition-timing-function: ease-out;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.zoom-out.scrolled {
  opacity: 1;
  -webkit-transform: translateZ(0) scale(1);
  transform: translateZ(0) scale(1);
}

.fade-up {
  opacity: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 1s;
  transition-timing-function: ease-out;
  transform: translate3d(0, 24px, 0);
  -webkit-transform: translate3d(0, 24px, 0);
  -moz-transform: translate3d(0, 24px, 0);
  -ms-transform: translate3d(0, 24px, 0);
  -o-transform: translate3d(0, 24px, 0);
}

.fade-up.scrolled {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.fade-down {
  opacity: 0;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  transition-duration: 1s;
  transition-timing-function: ease-out;
  transform: translate3d(0, -24px, 0);
  -webkit-transform: translate3d(0, -24px, 0);
  -moz-transform: translate3d(0, -24px, 0);
  -ms-transform: translate3d(0, -24px, 0);
  -o-transform: translate3d(0, -24px, 0);
}

.fade-down.scrolled {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
}

.delay1 {
  -webkit-animation-delay: 0.2s !important;
  animation-delay: 0.2s !important;
}

.delay2 {
  -webkit-animation-delay: 0.3s !important;
  animation-delay: 0.3s !important;
}

.delay3 {
  -webkit-animation-delay: 0.4s !important;
  animation-delay: 0.4s !important;
}

.delay4 {
  -webkit-animation-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.delay5 {
  -webkit-animation-delay: 0.6s !important;
  animation-delay: 0.6s !important;
}

.delay6 {
  -webkit-animation-delay: 0.7s !important;
  animation-delay: 0.7s !important;
}

.delay7 {
  -webkit-animation-delay: 0.8s !important;
  animation-delay: 0.8s !important;
}

.delay8 {
  -webkit-animation-delay: 0.9s !important;
  animation-delay: 0.9s !important;
}

.delay9 {
  -webkit-animation-delay: 1s !important;
  animation-delay: 1s !important;
}

.delay10 {
  -webkit-animation-delay: 2s !important;
  animation-delay: 2s !important;
}

.delay11 {
  -webkit-animation-delay: 2.2s !important;
  animation-delay: 2.2s !important;
}

.delay12 {
  -webkit-animation-delay: 2.4s !important;
  animation-delay: 2.4s !important;
}

.delay13 {
  -webkit-animation-delay: 2.6s !important;
  animation-delay: 2.6s !important;
}

.delay14 {
  -webkit-animation-delay: 2.8s !important;
  animation-delay: 2.8s !important;
}

.delay15 {
  -webkit-animation-delay: 3s !important;
  animation-delay: 3s !important;
}

.img-clip-left-to-right {
  opacity: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.img-clip-left-to-right.scrolled {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
}

.img-clip-right-to-left {
  opacity: 0;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.img-clip-right-to-left.scrolled {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: all 3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 1;
}

.img-clip-top-to-bottom {
  opacity: 0;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  transition: clip-path 3s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-clip-path 3s cubic-bezier(0.215, 0.61, 0.355, 1),
    opacity 3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.img-clip-top-to-bottom.scrolled {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

.img-clip-right-to-left,
.img-clip-left-to-right,
.img-clip-top-to-bottom {
  will-change: clip-path, opacity;
}

/* JS scroll */
.block-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.clients-logo-slider .splide__slide {
  position: relative;
}

.section-theme-building-desc {
  max-width: 700px;
}

.team-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-detail-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.team-detail-desc h3 {
  font-size: 20px;
  color: #ac9055;
  font-family: "Instrument Serif", serif;
}

.team-detail:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f1ece3;
}

.column.col-experience:nth-child(1) {
  flex: 0 0 61.5%;
}

.theme-maxwidth {
  max-width: 800px;
  margin: 0 auto 30px;
}

.partnerships-block picture {
  width: auto;
  height: 140px;
  background-color: #f5f5f5;
  padding: 30px;
  margin: 0 auto;
}

.partnerships-col {
  width: 14%;
  flex: 0 0 auto;
}

.z-index-1 {
  z-index: 1;
}

.italic {
  font-style: italic;
}

.section-theme-building .building-element {
  max-width: 700px;
  z-index: 0;
}

.team-detail-inner picture {
  width: 70px;
  flex: 0 0 auto;
  border-radius: 100%;
  overflow: hidden;
}

.theme-padding.pl-100 {
  padding-left: 100px !important;
}

.experience-detail {
  width: calc(100% + 60px);
}

.partnerships-block img {
  height: 100%;
  width: auto;
  margin: 0 auto;
}

.journey-img {
  top: -151px;
  margin-bottom: -151px;
}

.journey-desc h6 {
  font-size: 40px;
}

.journey-desc {
  position: absolute;
  bottom: 100px;
  right: 180px;
}

.theme-tabs a {
  color: #808285;
  font-size: 24px;
  font-family: "Instrument Serif", serif;
  padding: 10px 16px;
  border-bottom: 1px solid transparent;
}

.theme-tabs a:hover,
.theme-tabs a.is-active {
  color: #ac9055;
  border-bottom: 1px solid;
}

.theme-block-desc {
  font-size: 18px;
  color: #fff;
  position: absolute;
  top: -20px;
  right: 0;
  padding: 40px 20px;
  width: 100%;
  text-align: left;
  opacity: 0;
  z-index: 1;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.theme-block:hover .theme-block-desc {
  opacity: 1;
  top: 0;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.col-outlast:first-child {
  flex: 0 0 72.5%;
}

.outlast-detail {
  width: calc(100% + 60%);
  left: -60%;
  position: relative;
}

.col-adapt:first-child {
  flex: 0 0 64.5%;
}

.adapt-detail {
  width: calc(100% + 30%);
}

.col-responsibility:first-child {
  flex: 0 0 63.2%;
}

.responsibility-detail {
  width: calc(100% + 15%);
  left: -15%;
  position: relative;
}

.col-always:first-child {
  flex: 0 0 59%;
}

.contact-us-detail h5 {
  font-size: 20px;
  font-family: "Instrument Serif", serif;
}

.contact-us-detail li:not(:last-child) {
  padding-right: 50px;
  margin-right: 50px;
  border-right: 1px solid #f1ece3;
}

.footer-wrapper a.active {
  color: #ac9055;
}

.residential-projects-block {
  text-align: center;
  padding: 40px 30px;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.residential-projects-block:hover {
  background-color: #f1ece3;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.residential-col {
  border-right: 1px solid #dfd4be;
  border-bottom: 1px solid #dfd4be;
}

.residential-col:nth-child(4n + 4) {
  border-right: none;
}

.residential-col:nth-child(9),
.residential-col:nth-child(10),
.residential-col:nth-child(11),
.residential-col:nth-child(12) {
  border-bottom: none;
}

.section-projects .building-element {
  max-width: 250px;
  z-index: 1;
}

.team-desc-block {
  display: flex;
  align-items: center;
}

.team-desc-block img {
  max-width: 200px;
}

.quote-img img {
  width: auto;
  height: 50px;
  margin-bottom: 15px;
}

.chairman-img {
  max-width: 550px;
  margin-left: auto;
}

.team-desc-block h5 {
  color: #ac9055;
  font-family: "Instrument Serif", serif;
}

/* .team-desc-title {
  border-left: 1px solid #d1d3d4;
  padding-left: 30px;
  margin-left: 30px;
} */

.section-team .section-title {
  margin-bottom: 0;
  position: absolute;
  max-width: 520px;
  left: 0;
  top: 5%;
}

.section-team .section-title h1 {
  color: #e8dfd0;
  padding-bottom: 0;
  font-size: 68px;
  line-height: 72px;
}

.section-team .section-title h1::before {
  display: none;
}

.p-relative {
  position: relative;
}

.title-sm {
  display: none;
}

.project-detail-without-img {
  padding: 30px;
  border: 1px solid #00000015;
}

.home-our-projects-wrapper .theme-block-img img {
  aspect-ratio: 16/15.2;
  object-fit: cover;
}

.section-title.title-lg.ceo-title {
  max-width: 580px;
}

.arrow-none .splide__arrows {
  display: none;
}

.v-m-block h2 {
  font-size: 30px !important;
  line-height: normal !important;
  padding-bottom: 10px !important;
}

.v-m-block .section-title {
  margin-bottom: 10px;
}

.v-m-block {
  margin-bottom: 20px;
}

.cols-home-vision-mission-update .column:first-child {
  flex: 0 0 53%;
}

.column.col-home-way:first-child {
  flex: 0 0 54%;
}

.column.col-home-about:first-child {
  flex: 0 0 53.7%;
}