* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, h6, p, figure {
    margin: 0;
}
a {
    text-decoration: none;
}

:root {
    --primarycolor : #8b7355;
    --primaryHover : #6b5b4f;
    --white: #fff;
}

.container {
    max-width: 1280px;
}
/* loader */
.loader {
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
}
.loaderhide {
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
#loading-bar-spinner.spinner {
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -20px;
    position: absolute;
    z-index: 19 !important;
    animation: loading-bar-spinner 1s linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
    width: 40px;
    height: 40px;
    border:  solid 4px transparent;
    border-top-color:  var(--primarycolor) !important;
    border-left-color: var(--primarycolor) !important;
    border-radius: 50%;
}

@keyframes loading-bar-spinner {
  0%   { transform: rotate(0deg);   transform: rotate(0deg); }
  100% { transform: rotate(360deg); transform: rotate(360deg); }
}

/* loader */
/* header  */
.headerWrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerArea {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    padding: 25px 0;
    transform: translateY(-100px);
}
.showed.headerArea {
    transform: translateY(0px);
    transition: 0.5s;
}
.navlist {
    display: flex;
    align-items: center;
    gap: 48px;
}
.brandLogo {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primarycolor);
    position: relative;
    z-index: 2;
}
.navlist li a {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--primarycolor);
    transition: 0.5s;
}
.navlist li a:hover {
    color: var(--primaryHover);
    transition: 0.5s;
}
.fixedHeader {
    background: #fffef9f2;
    transition: 0.5s;
    box-shadow: 0px 0px 2px 0px rgb(93 93 93 / 50%);
    backdrop-filter: blur(5px);
}
a.brandLogo img {
    max-width: 100px;
}
/* header  */

/* hero sec start */
.heroSec {
    overflow: hidden;
}
.heroImg {
    width: 100%;
    height: 100vh;
    position: relative;
    transform: scale(1.05);
    transition: 0.5s;
}
.loaded .heroImg  {
    transform: scale(1);
    transition: 1.8s;
}
.heroImg::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ffffffc7;
}
.heroImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.heroSec {
    position: relative;
}
.herobannerOverley {
    position: absolute;
    top: 46%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}
/* .herobannerOverley h1 {
    font-size: 128px;
    color: var(--primarycolor);
    font-weight: 300;
    letter-spacing: 35px;
    line-height: 1;
} */
.herobannerOverley h5, .herobannerOverley h6 {
    font-size: 16px;
    line-height: 24px;
    color: #A69580;
    font-weight: 300;
    letter-spacing: 10px;
    margin: 15px 0 30px;
}
.bannerLogo img {
    max-width: 300px;
    margin-bottom: 30px;
}
.herobannerOverley h1 {
    font-size: 36px;
    color: #6B5B4F;
    font-weight: 300;
    font-style: italic;
}
.herobannerOverley strong {
    font-size: 16px;
    line-height: 24px;
    color: #A69580;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0px 0 20px;
    display: block;
    letter-spacing: 2.1px;
}
.herobannerOverley h6 {
        font-size: 16px;
    line-height: 24px;
    color: #A69580;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 15px 0 30px;
}
.btnPrimary {
    background: #A69580;
    color: var(--white) !important;
    border-radius: 0;
    border: 1px solid #A69580;
    box-shadow: none !important;
    padding: 11px 51px;
        transition: 0.5s;
}
.btnPrimary.btnSecondary {
    background: var(--white);
    color: #A69580 !important;
        transition: 0.5s;
}
.btnPrimary:hover {
    background: #8b7a69;
    transition: 0.5s;
}
.btnPrimary.btnSecondary:hover {
    background: #e9e5e0;
    transition: 0.5s;
    color: #171717 !important;
}
.btnWrapper {
    display: flex;
    gap: 8px 20px;
    flex-flow: wrap;
    justify-content: center;
}
/* hero sec close */


/* our essence start */
.ourEssence {
    padding: 190px 0;
    background: #fffef9;
}
.ourEssence .container {
    max-width: 1104px;
}
figure.essenceImg {
    aspect-ratio: 4 / 5;
}
figure.essenceImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.essenceContent {
    padding-left: 66px;
}
.sectionTitle .titleTag {
    font-size: 12px;
    text-transform: uppercase;
    color: #a69580;
    letter-spacing: 4.8px;
    margin-bottom: 16px;
    display: inline-block;
}
.sectionTitle h2 {
    color: #6B5B4F;
    font-size: 48px;
    font-weight: 300;
    line-height: 46px;
}
.essenceContent .devider {
    max-width: 64px;
    margin: 30px 0 50px;
    background: #a69580 !important;
}
.essenceContent p {
    margin: 32px 0 0;
    color: #8b7a69;
}
.essenceContent ul {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}
.essenceContent ul li span {
    font-size: 30px;
    line-height: 36px;
    color: #a69580;
    display: inline-block;
    padding-bottom: 10px;
}
.essenceContent ul li h6 {
    color: #a69580;
    font-size: 12px;
    letter-spacing: 2.4px;
}
/* our essence start */

/* experienceSec start */
.experienceSec {
    background: #f5f0eb;
    padding: 190px 0;
}
.experienceSec .sectionTitle {
    margin-bottom: 80px;
}
.experienceItem {
    display: block;
    background: var(--white);
    transition: 0.5s;
}
.experienceItem:hover {
    background: #f0eeed;
}
.experienceImg {
    aspect-ratio: 4 / 5;
}
.experienceImg img, .experienceImg figure {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.experienceContent {
    padding: 30px;
}
.experienceContent h3 {
    color: #6b5b4f;
    font-size: 20px;
    line-height: 28px;
    font-weight: 300;
    margin-bottom: 10px;
}
.experienceContent p {
    color: #9b8b7a;
    font-size: 14px;
    font-weight: 100;
    line-height: 17px;
    margin-bottom: 20px;
}
.experienceContent p.epara {
    min-height: 170px;
}
.experienceContent hr {
    margin-bottom: 0;
    background-color: #9b8b7a;
}
/* experienceSec start */

/* noa difference start */
.differenceSec {
    padding: 190px 0 160px;
}
.differenceSec .container {
    max-width: 1104px;
}
.differenceSec .sectionTitle {
    margin-bottom: 60px;
}
.differenceItem {
    text-align: center;
    padding: 20px;
    margin-bottom: 30px;
}
.differenceIcon {
    width: 64px;
    aspect-ratio: 1;
    display: inline-grid;
    place-content: center;
    margin-bottom: 20px;
    color: #A69580;
    transition: 0.5s;
    transform: scale(1) rotate(0deg);
    transition: 0.5s;
}
.differenceItem:hover .differenceIcon{
    color: #8B7355;
    transition: 0.5s;
    transform: scale(1.2) rotate(10deg);
}
.differenceItem h3 {
    font-size: 18px;
    color: #6B5B4F;
    font-weight: 400;
    margin-bottom: 10px;
}
.differenceItem p {
    color: #9B8B7A;
    font-size: 14px;
}
/* noa difference start */

/* noa glimpses start */
.glimpsesSec {
    padding:  0 0 190px;
}
.parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 16px;
}
    
.div1 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    aspect-ratio: 5 / 5;
    overflow: hidden;
}

.div2 {
    grid-column-start: 1;
    grid-row-start: 3;
    aspect-ratio: 1 / 1;
}

.div3 {
    grid-column-start: 2;
    grid-row-start: 3;
    aspect-ratio: 1 / 1;
}

.div4 {
    grid-column-start: 3;
    grid-row-start: 1;
    aspect-ratio: 1 / 1;
}

.div5 {
    grid-column-start: 4;
    grid-row-start: 1;
    aspect-ratio: 1 / 1;
}

.div6 {
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 2;
    aspect-ratio: 1 / 2;
}

.div7 {
    grid-column-start: 4;
    grid-row-start: 2;
    aspect-ratio: 1 /1;
}

.div8 {
    grid-column-start: 4;
    grid-row-start: 3;
    aspect-ratio: 1 /1;
}
.glimpseItem {
    display: block;
}
.glimpseItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} 
.glimpsesSec .sectionTitle {
    margin-bottom: 60px;
}   
.followText {
    color: #A69580;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    margin: 70px auto 0;
    transition: 0.5s;
}
.followText:hover {
    color: #8B7355;
    transition: 0.5s;
}
.slideMove {
  display: inline-block;
  margin-left: 6px;
  animation: slideMove 1.6s ease-in-out infinite;
}
@keyframes slideMove {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(6px);
    opacity: 0.6;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* noa glimpses close */

.joinCircle {
    background: #F2E8E4;
    padding: 160px 0;
}
.rotateIcon {
    font-size: 36px;
    color: #A69580;
    margin-bottom: 30px;
    text-align: center;
}
.joinCircle .sectionTitle {
    margin-bottom: 48px;
}
.joinCircle .sectionTitle h6 {
    margin-top: 15px;
    font-weight: 300;
    color: #8B7A69;
}
.joinCircle .form-group, .modalcontactForm  .form-group {
    margin-bottom: 30px;
}
.joinCircle .form-control, .modalcontactForm .form-control {
    background: transparent;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-bottom: 1px solid #C4B5A5 !important;
    color: #6B5B4F;
    font-size: 14px;
}
.joinCircle .form-control::placeholder {
        color: #A69580;
}
.joinCircle .btnPrimary{
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1) !important;
}
.joinCircle .btnPrimary:hover {
    transform: scale(1.05);
    transition: 0.2s;
}
.notedText {
    margin-top: 40px;
    display: inline-block;
    font-size: 12px;
    color: #A69580;
}

/* footer start */
.footerArea {
    padding: 80px 0;
    background: #6B5B4F;
}
.footerlogoWrapper {
    text-align: center;
    position: relative;
    z-index: 5;
}
.footerLogo {
    color: var(--white);
    font-size: 48px;
    letter-spacing: 14px;
    font-weight: 300;
}
.footerlogoWrapper small {
    font-size: 12px;
    color: #ffffff80;
    letter-spacing: 6px;
}
.footerlogoWrapper h6 {
    font-size: 14px;
    color: #fff9;
    letter-spacing: 2.1px;
    font-weight: 100;
    margin: 20px 0 40px;
}
.footerlogoWrapper strong {
    color: #fff9;
    font-size: 14px;
    line-height: 24px;
    display: block;
    font-weight: 400;
    margin: 20px 0 0px;
    letter-spacing: 2.1px;
}
.socialBar {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.socialBar a {
    color: #fff9;
    transition: 0.5s;
}
.socialBar a:hover {
    transition: 0.5s;
    color: var(--white);
}
.mailLink {
    display: inline-block;
    margin-top: 32px;
    color: #fff6;
    font-size: 12px;
    letter-spacing: 2.4px;
}
.mailLink:hover {
    color: var(--white);
    transition: 0.5s;
}
.footdevider {
    max-width: 96px;
    margin: 48px auto 32px;
    background-color: #fff9;
}
.footerlogoWrapper p {
    color: #ffffff4d;
    font-size: 12px;
    letter-spacing: 2.4px;
}
.footerArea {
    position: relative;
}
.noaBg {
    position: absolute;
    top: 8%;
    left: 3%;
    font-size: 200px;
    color: #fff;
    opacity: 0.1;
    font-weight: 100;
    z-index: 1;
}
/* footer start */
.mobBtn {
    display: none;
    position: relative;
    z-index: 2;
    color: var(--primarycolor);
    font-size: 20px;
    line-height: 1;
}
.experienceContent ul {
    display: block;
    margin: 5px 0 15px;
    min-height: 105px;
}
.experienceContent ul li {
    color: #9b8b7a;
    font-size: 14px;
    font-weight: 100;
    line-height: 17px;
    position: relative;
    padding-left: 15px;
}
.experienceContent ul li:not(:last-child) {
    margin-bottom: 5px;
}
.experienceContent ul li::after {
    content: "";
    width: 4px;
    aspect-ratio: 1;
    background: var(--primarycolor);
    position: absolute;
    top: 7px;
    left: 0;
    border-radius: 50%;
}
.experienceContent h6 {
    color: #9b8b7a;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    margin-top: 10px;
}
.experienceContent h6 i {
    margin-right: 8px;
}
.experienceContent .btnPrimary {
    margin: 30px auto 0;
    display: table;
}
.experienceContent .btnPrimary.disabledBtn {
    background: #e5e5e5 !important;
    color: #858585 !important;
    border: 1px solid #e5e5e5 !important;
    cursor: grab;
}
.modal-body {
    padding: 40px;
}
button.closebtn {
    border: none;
    background: transparent;
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 20px;
}
 .modal-body h4 {
    font-size: 24px;
    color: var(--primarycolor);
    font-weight: 200;
    text-align: center;
    letter-spacing: 3.5px;
    margin-bottom: 8px;
}
 .modal-body p {
    text-align: center;
    color: #9b8b7a;
    font-size: 14px;
    margin-bottom: 60px;
    font-weight: 100;
}
#exampleModal .modal-content {
    max-width: 450px;
    margin: auto;
}
.modalcontactForm .btnPrimary{
    width: 100%;
}

/* ===20.02.2026=== */
h6.text-center.pricetag {
    min-height: 17px;
    margin-top: 20px;
}
#exampleModal2 .modal-body h4 {
    font-size: 24px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.checkFlex {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.radioBtn {
  position: relative;
  cursor: pointer;
}

.radioBtn input {
  display: none; /* hide default radio */
}

.radioBtn span {
    display: inline-block;
    padding: 10px 43px;
    border: 2px solid #a69580a3;
    border-radius: 0px;
    background: #fff;
    transition: 0.3s ease;
    font-weight: 500;
    color: #A69580;
}

/* Hover effect */
.radioBtn span:hover {
  border-color: #A69580;
}

/* When Checked */
.radioBtn input:checked + span {
  background-color: #A69580;
  color: #fff;
  border-color: #A69580;
}
.promoform .form-control {
    background: #a6958014;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border-bottom: 1px solid #C4B5A5 !important;
    color: #6B5B4F;
    font-size: 14px;
}
.pcodeWrapper {
    max-height: 0;
    transition: 0.5s;
    overflow: hidden;
    margin-top: 30px;
    background: #f7f7f7;
    padding: 0px 30px;
}
.pcodeWrapper.active {
    max-height: 200px;
    transition: 0.5s;
    padding: 30px;
}
.promoFlex {

}
/* ===20.02.2026=== */
@media (max-width: 991px) {
  .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .div1,
  .div2,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7,
  .div8 {
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: 1 / 1;
  }

  /* make hero image slightly larger */
  .div1 {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .mobBtn {
        display: block;
    }

.navlist {
    display: block;
    position: fixed;
    width: 100%;
    background: #fff;
    left: 0;
    top: 0;
    padding: 80px 15px 15px;
    height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}
.mobmenu .navlist {
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
}
.navlist li a {
    display: block;
    text-align: center;
    transform: translateY(20px);
    transition: 0.5s;
    opacity: 0;
}
.mobmenu .navlist li a {
    transform: translateY(0px);
    transition: 0.5s;
    opacity: 1;
}
.mobmenu .navlist li:nth-child(2) a {
    transition-delay: .2s;
}
.mobmenu .navlist li:nth-child(3) a {
    transition-delay: .4s;
}
.navlist li:not(:first-child) {
    margin-top: 30px;
}
.container {
    padding: 0 24px;
}
/* .herobannerOverley h1 {
    font-size: 72px;
    letter-spacing: 21px;
} */
 .bannerLogo img {
    max-width: 220px;
}
.brandLogo {
    letter-spacing: 6px;
}
.herobannerOverley {
    top: 48%;
}
.herobannerOverley h2 {
    font-size: 24px;
}
.essenceContent {
    padding-left: 0;
    padding-top: 40px;
}
.ourEssence, .experienceSec {
    padding: 120px 0;
}
.sectionTitle h2 {
    font-size: 30px;
    line-height: 36px;
}
.experienceItem {
    margin-bottom: 30px;
}
.differenceSec {
    padding: 120px 0 90px;
}
.glimpsesSec {
    padding: 0 0 120px;
}
.joinCircle {
    background: #F2E8E4;
    padding: 120px 0;
}
.joinCircle .form-control {
    text-align: center;
}
.footerLogo {
    font-size: 36px;
}
.footerLogo {
    font-size: 36px;
    letter-spacing: 10px;
}
.footerlogoWrapper {
    /* padding: 0 20px; */
}
.noaBg {
    left: 0;
    font-size: 170px;
    width: 100%;
    text-align: center;
}
}


@media (max-width: 575px) {
  .parent {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .div1,
  .div2,
  .div3,
  .div4,
  .div5,
  .div6,
  .div7,
  .div8 {
    grid-column: span 1 !important;
    grid-row: auto !important;
    aspect-ratio: 4 / 5; /* elegant portrait feel */
  }
  .experienceContent p.epara, h6.text-center.pricetag, .experienceContent ul {
    min-height: auto;
  }
  .promoFlex {
    flex-flow: wrap;
    gap: 8px;
    justify-content: center;
}
.promoform .form-control {
    min-height: 48px;
}
.herobannerOverley strong {
    font-size: 14px;
    margin: 0px 0 10px;
}
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .div1 {
    grid-column: span 2;
    aspect-ratio: 1 / 1;
}
.joinCircle .form-control {
    text-align: left;
}
  .experienceContent p.epara, h6.text-center.pricetag, .experienceContent ul {
    min-height: auto;
  }
  .promoFlex {
    flex-flow: wrap;
    gap: 8px;
    justify-content: center;
}
.promoform .form-control {
    min-height: 48px;
}
}