@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

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

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  overflow-x:hidden;
}

/* Variables */
:root {
  /* Brand Colors */
  --color-primary: #a05b3f;
  --color-primary-light: #6f7945;
  --color-secondary: #08415c;

  /* Text */
  --text-primary: #121212;
  --text-secondary: #555555;

  /* Buttons */
  --btn-padding: 16px 20px;
}

a {
  text-decoration: none;
}
/* Container */
.container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Button */
.btn {
  display: inline-block;
  padding: var(--btn-padding);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: normal;
  letter-spacing: 1.44px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-align: center;
  transition: all 1s ease;
}

/* Primary Button */
.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
  box-shadow: inset 0 0 0 0 var(--color-primary);
}

.btn-primary:hover {
  box-shadow: inset 1000px 0 0 0 var(--color-secondary);
}

.btn-primary-hover-light:hover {
  box-shadow: inset 1000px 0 0 0 var(--color-primary-light);
}

.btn-secondary {
  background-color: transparent;
  color: #ffffff;
  box-shadow: inset 0 0 0 0 #ffffff;
  border: 1px solid #ffffff;
  transition: all 1s ease-in-out;
}

.btn-secondary:hover {
  box-shadow: inset 1000px 0 0 0 var(--color-secondary);
  border: 1px solid var(--color-secondary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Slick Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-dots{
  bottom: 45px;
  max-width: calc(100% - 24px);
}
.slick-dots li {
  width: 10px;
  height: 10px;
  /* margin: 0 10px; */
  transition: all .5s ease-in-out;
}
.slick-dots li::before{
	display:none;
}
.slick-dots li button {
  font-size: 0;
  width: 10px;
  height: 10px;
  border-radius: 30px;
  background-color: #FFFEFE;
  /* margin: 0 10px; */
  padding: 0;
  transition: all .5s ease-in-out;
}
.slick-dots li button:before {
  display: none;
}

.slick-dots li.slick-active{
  width: 50px;
  height: 10px;
}

.slick-dots li.slick-active button {
  width: 50px;
  height: 10px;
  background-color: #9C593D;
}

@media (max-width: 767px) {
  .slick-dots {
    bottom: 20px;
  }
  .slick-dots li {
    width: 5px;
    height: 5px;
    margin: 0 4px;
  }
  .slick-dots li button {
    width: 5px;
    height: 5px;
  }
  .slick-dots li.slick-active{
    width: 21px;
    height: 5px;
  }
  .slick-dots li.slick-active button {
    width: 21px;
    height: 5px;
  }
}
    .global-hero__section {
    position: relative;
    color: hsl(0, .0000990098%, 100.0039215686%);
    padding: 0 !important;
    height: 100vh;
    max-height: 700px;
    overflow: hidden;
}

.global-hero__section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0.55%, rgba(0, 0, 0, 0.60) 41.26%, rgba(0, 0, 0, 0.60) 57.38%, rgba(0, 0, 0, 0.30) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.global-hero__img-container {
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    width: initial;
    height: initial;
    background: none;
    opacity: 1;
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    max-height: 700px;
}

.global-hero__img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    box-sizing: border-box;
    padding: 0;
    border: none;
    margin: auto;
    display: block;
    width: 0;
    height: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.global-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    pointer-events: none;

    display: grid;
    grid-column-gap: 2rem;
    column-gap: 2rem;
    grid-row-gap: 1.5625rem;
    row-gap: 1.5625rem;
    max-width: 74rem;
    margin: 0 auto;
    padding: 0 16px;
    grid-column-end: 12;
    grid-column-start: 2;
}

.global-hero__content-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    pointer-events: auto;
}

.global-hero__breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.global-hero__breadcrumb-item {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #ffffff;
	    position: relative;
    padding-right: 18px;
}

.global-hero__breadcrumb-item:last-child:after {
    content: "";
    margin-left: 0;
}
.global-hero__breadcrumb-item:before{
	display:none;
}
.global-hero__breadcrumb-item:after {
    content: "/";
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #ffffff;
    margin-left: 8px;
	position: absolute;
    margin-right: 8px;
}

.global-hero__breadcrumb-link {
    color: #ffffff;
}
.global-hero__section  .scroll-down-btn:after {
    background: url(../image/scroll-down-arrow-bg-white.svg) no-repeat center center;
}
.global-hero__section.cream-arrow  .scroll-down-btn:after {
  background: url(../image/scroll-down-arrow-bg.svg) no-repeat center center;
}
.global-hero__breadcrumb-active {
    color: rgba(255, 255, 255, .5);
}

.global-hero__eyebrow {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 8%;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.global-hero__title {
    font-family: "EB Garamond", serif;
    font-weight: 600;
    font-size: 72px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 30px;
    color:#fff;
}

.global-hero__description {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 662px;
}


@media only screen and (max-width: 1023px) {
    .global-hero__title {
        font-size: 60px;
        font-weight:400;
    }
    .global-hero__description {
        font-size: 16px;
        line-height: 24px;
        max-width: 550px;
    }
    .global-hero__eyebrow {
        font-size: 18px;
    }
    .global-hero__breadcrumb-list {
        margin-bottom: 20px;
    }
    .global-hero__breadcrumb-item {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {

    .global-hero__img-container,
    .global-hero__section {
        max-height: 579px;
    }

    .global-hero__eyebrow {
        font-size: 16px;  
		line-height:1.2;
    }

    .global-hero__title {
        font-size: 48px;
        margin-bottom: 20px;
    }
    .global-hero__description {
        font-size: 14px;
        line-height: 24px;
        max-width: 350px;
    }
}
       .blog-page {
            padding: 56px 0 100px;
        }

        .blog-wrap.container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .blog-date {
            margin: 0 0 10px;
            font-size: 16px;
            color: #788157;
            font-family: Inter;
            font-size: 16px;
            font-weight: 700;
            letter-spacing: 1.28px;
            text-transform: uppercase;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            margin: 0 0 20px;
            color: #A05B3F;
            font-family: "EB Garamond", serif;
            font-style: normal;
            line-height: 1.1;
        }

        .blog-page h1,
        .blog-title {
            font-size: 60px;
            font-weight: 500;
            letter-spacing: -1.8px;
        }

        .blog-page h2 {
            font-size: 48px;
            font-weight: 500;
            letter-spacing: -1.2px;
        }

        .blog-page h3 {
            font-size: 40px;
            font-weight: 500;
            letter-spacing: -1px;
        }

        .blog-page p,
        .blog-page span {
            color: #555;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            margin: 0 0 20px 0;
        }

        .blog-page ul {
            margin: 40px 0 0;
            padding: 0;
            list-style: none;
        }

        .blog-page li {
            color: #121212;
            position: relative;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            padding-left: 40px;
            margin-bottom: 16px;
        }

        li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 24px;
            height: 24px;

           /* background-image: url("../images/Vector.png");*/
            background-repeat: no-repeat;
            background-size: contain;

        }

        .blog-image {
            margin: 22px 0 26px;
            width: 100%;
            overflow: hidden;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .blog-page h4 {
            color: #914D36;
            font-size: 36px;
            font-weight: 600;
            margin: 40px 0 20px 0;
        }

        .blog-page h5 {
            color: #121212;
            margin: 22px 0 8px;
            line-height: 1.2;
            margin: 40px 0 20px 0;
            font-size: 24px;
            font-weight: 600;
        }

       .blog-page h6 {
            color: #121212;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.25;
            margin: 28px 0 14px;
        }
.cms-content h1 {
            font-size: 60px;
            font-weight: 500;
            letter-spacing: -1.8px;
        }

        .cms-content h2 {
            font-size: 40px;
            font-weight: 500;
            letter-spacing: -1.2px;
        }

        .cms-content h3 {
            font-size: 35px;
            font-weight: 500;
            letter-spacing: -1px;
        }

        .cms-content p,
        .cms-content span {
            color: #555;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            margin: 0 0 20px 0;
        }

        .cms-content ul {
            margin: 40px 0 0;
            padding: 0;
            list-style: none;
        }

        .cms-content li {
            color: #121212;
            position: relative;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            padding-left: 40px;
            margin-bottom: 16px;
        }

        li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 4px;
            width: 24px;
            height: 24px;

            background-image: url("../image/Vector.png");
            background-repeat: no-repeat;
            background-size: contain;

        }
  .cms-content h4 {
            color: #914D36;
            font-size: 30px;
            font-weight: 600;
            margin: 40px 0 20px 0;
        }

        .cms-content h5 {
            color: #121212;
            margin: 22px 0 8px;
            line-height: 1.2;
            margin: 40px 0 20px 0;
            font-size: 24px;
            font-weight: 600;
        }

       .cms-content h6 {
            color: #121212;
            font-weight: 600;
            line-height: 1.25;
            margin: 28px 0 14px;
        }

section.cms-content {
    margin: 100px 0 100px;
}
        @media only screen and (max-width: 1799px) {}

        @media only screen and (max-width: 1599px) {}

        @media only screen and (max-width: 1439px) {
            h1,
            .blog-title {
                font-size: 42px;
                letter-spacing: -1.2px;
            }

           .blog-page h2 {
                font-size: 36px;
            }

           .blog-page h3 {
                font-size: 31px;
            }
              .cms-content h2 {
                font-size: 30px;
            }

           .cms-content h3 {
                font-size: 25px;
            }
        }

        @media only screen and (max-width: 1365px) {
            .blog-page {
                padding-top: 44px;
            }

        }

        @media only screen and (max-width: 1279px) {

           .blog-page h4 {
                font-size: 33px;
            }

           .blog-page h5 {
                font-size: 22px;
            }

           .blog-page h6 {
                font-size: 18px;
            }
             .cms-content h4 {
                font-size: 20px;
            }

           .cms-content h5 {
                font-size: 20px;
            }
        }

        @media only screen and (max-width: 1023px) {
            .blog-page {
                padding: 34px 0 70px;
            }

            .blog-wrap {
                max-width: 100%;
            }

            .blog-page h1,
            .blog-title {
                font-size: 36px;
                letter-spacing: -1.08px;
            }

           .blog-page h2 {
                font-size: 31px;
            }

           .blog-page h3 {
                font-size: 27px;
            }

           .blog-page h4 {
                font-size: 30px;
            }

           .blog-page h5 {
                font-size: 21px;
            }

            .blog-page h6 {
                font-size: 17px;
            }

            .blog-page p,
            .blog-page span,
            .blog-page li {
                font-size: 16px;
            }
            
            .cms-content h1{
                font-size: 36px;
                letter-spacing: -1.08px;
            }

            

            .cms-content p,
            .cms-content span,
            .cms-content li {
                font-size: 16px;
            }
            section.cms-content {
    margin: 50px 0 50px;
}
        }

        @media only screen and (max-width: 801px) {

            .blog-image {
                margin: 18px 0 22px;
            }
        }

        @media only screen and (max-width: 767px) {
            .blog-page {
                padding: 24px 0 50px;
            }

            .blog-page h1,
            .blog-title {
                font-size: 32px;
                letter-spacing: -0.96px;
            }

            .blog-page h2 {
                font-size: 28px;
            }

            .blog-page h3 {
                font-size: 24px;
            }

            .blog-page h4 {
                font-size: 28px;
            }

            .blog-page h5 {
                font-size: 19px;
            }

            .blog-page h6 {
                font-size: 16px;
            }
.cms-content h1{
                font-size: 32px;
                letter-spacing: -0.96px;
            }

            .cms-content h2 {
                font-size: 20px;
            }

           .cms-content h3 {
                font-size: 18px;
            }

            .cms-content h4 {
                font-size: 17px;
            }

            .cms-content h5 {
                font-size: 15px;
            }
        }

        @media only screen and (max-width: 639px) {



            .blog-page h2 {
                font-size: 24px;
            }

            .blog-page h3 {
                font-size: 21px;
            }

            .blog-page h4 {
                font-size: 25px;
            }

            .blog-page h5 {
                font-size: 18px;
            }

            .blog-page h6 {
                font-size: 15px;
            }

            .blog-page p,
            .blog-page span,
            .blog-page li {
                font-size: 14px;
            }

            .cms-content p,
            .cms-content span,
            .cms-content li {
                font-size: 14px;
            }
        }

        @media only screen and (max-width: 539px) {


            .blog-page h1,
            .blog-title {
                font-size: 28px;
                letter-spacing: -0.84px;
            }

            .blog-page h2 {
                font-size: 22px;
            }

            .blog-page h3 {
                font-size: 20px;
            }

            .blog-page h4 {
                font-size: 23px;
            }

            .blog-page h5 {
                font-size: 17px;
            }

            .blog-page h6 {
                font-size: 14px;
            }
             .cms-content h1 {
                font-size: 28px;
                letter-spacing: -0.84px;
            }

            .cms-content h2 {
                font-size: 22px;
            }

            .cms-content h3 {
                font-size: 20px;
            }

            .cms-content h4 {
                font-size: 23px;
            }

            .cms-content h5 {
                font-size: 17px;
            }

            .cms-content h6 {
                font-size: 14px;
            }

            .blog-date {
                margin-bottom: 10px;
                font-size: 10px;
            }
        }

        @media only screen and (max-width: 413px) {
            .blog-page {
                padding: 16px 0 40px;
            }
            .blog-page h1,
            .blog-title {
                font-size: 24px;
                letter-spacing: -0.72px;
            }

            .blog-page h2 {
                font-size: 20px;
            }

            .blog-page h3 {
                font-size: 18px;
            }

            .blog-page h4 {
                font-size: 20px;
            }

            .blog-page h5 {
                font-size: 16px;
                margin-top: 18px;
            }

            .blog-page h6 {
                font-size: 13px;
            }

        }
  .newsletter {
            background: #f0ebdf;
            padding: 120px 0;
        }

        .newsletter-inner {
            width: 100%;
            max-width: 1620px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 80px;
        }

        .newsletter-visual {
            flex: 0 0 340px;
            text-align: center;
            height: 240px;
            aspect-ratio: 199/120;
        }

        .newsletter-visual img {
            width: 100%;
            height: auto;
            display: inline-block;
            width: 398px;
            height: 240px;
            object-fit: cover;
        }

        .newsletter-content {
            flex: 1;
        }

        .newsletter .eyebrow {
            color: #6F7945;
            text-align: left;
            font-family: Inter;
            font-size: 20px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            letter-spacing: 1.6px;
            text-transform: uppercase;
            margin: 0;
           
        }

        .newsletter-title {
            color: #A05B3F;
            font-family: "EB Garamond";
            font-size: 60px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            margin: 0;
        }

        .newsletter-text {
            color: #555;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            max-width: 83%;
    margin: 20px 0 40px;
        }

        .newsletter form {
            display: flex;
            align-items: center;
            gap: 14px;
        }
.tnp-field.tnp-field-email{
	 max-width: 400px !important;
	width:100% !important;
}
        .newsletter form input {
               flex: 1;
    border: 1px solid #BD956F !important;
    padding: 16px 20px !important;
    background: #f3f3f3;
    color: #555 !important;
    font-family: Inter;
    font-size: 16px !important;
    font-weight: 600;
    max-width: 400px;
        }
        .newsletter form input:focus{
            outline: none;
        }
        .newsletter form .tnp-submit {
            border: 0 !important;
            padding: 16px 20px !important;
            background: #a76042 !important;
            color: #ffffff !important;
           
font-family: Inter;
font-size: 18px !important; 
font-weight: 700 !important;
letter-spacing: 1.44px !important;
text-transform: uppercase !important;
cursor: pointer;
        }
.tnp-field label {
    display: none !important;
}
.tnp.tnp-subscription {
    margin: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
}
        @media only screen and (max-width: 1799px) {}

        @media only screen and (max-width: 1599px) {
            .newsletter-inner {
         
                gap: 64px;
            }

            .newsletter-title {
                font-size: 52px;
            }
        }

        @media only screen and (max-width: 1439px) {
            .newsletter {
                padding: 90px 0;
            }

            .newsletter-inner {
                gap: 48px;
            }

            .newsletter-title {
                font-size: 46px;
            }
        }

        @media only screen and (max-width: 1365px) {


            .newsletter-inner {
                gap: 36px;
            }

            .newsletter-visual {
                flex-basis: 300px;
                height: auto;
            }

            .newsletter-visual img {
                width: 320px;
                height: auto;
            }

            .newsletter-title {
                font-size: 40px;
            }
        }

        @media only screen and (max-width: 1279px) {


            .newsletter-inner {
                gap: 28px;
            }

            .newsletter-visual {
                flex-basis: 260px;
            }

            .newsletter-visual img {
                width: 260px;
            }

            .newsletter-title {
                font-size: 34px;
            }
            .newsletter-text {
                font-size: 16px;
                line-height: 1.5;
                margin: 20px 0 40px;
            }
        }

        @media only screen and (max-width: 1023px) {
            .newsletter-inner {
                text-align: center;
                gap: 20px;

            }

            .newsletter-visual {
                flex-basis: auto;
            }

            .newsletter-visual img {
                width: 290px;
            }

            .newsletter-content {
                width: 100%;
                text-align: left;
            }

            .newsletter-title {
                font-size: 44px;
            }

            .newsletter-text {
                margin: 14px auto 20px;
                max-width: 100%;
            }

            .newsletter form {
                justify-content: center;
            }
        }

        @media only screen and (max-width: 801px) {


            .newsletter-inner {
                padding: 0 16px;
            }

            .newsletter-visual img {
                width: 250px;
            }

            .newsletter-title {
                font-size: 40px;
            }
        }

        @media only screen and (max-width: 767px) {
            .newsletter {
                padding: 90px 0;
            }

            .newsletter-visual img {
                width: 220px;
            }

            .eyebrow {
                font-size: 14px;
            }

            .newsletter-title {
                font-size: 36px;
            }



           .newsletter form {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }
			.tnp-field.tnp-field-email{
				 max-width: none !important;
                width: 100% !important;
			}
            .newsletter form input {
                max-width: none;
                width: 100%;
            }
            .newsletter-content {
                text-align: center;
            }
             .newsletter .eyebrow{ 
                 text-align:center;
             }

        }

        @media only screen and (max-width: 639px) {
            .newsletter-title {
font-size: 32px;
            }


            .newsletter form input,
            .newsletter form .tnp-submit {
                padding: 14px 16px !important;
            }
            
        }

        @media only screen and (max-width: 539px) {
            .newsletter {
                padding: 80px 0;
            }

            .newsletter-inner {
                padding: 0 14px;
                flex-direction: column;
            }

            .newsletter-visual img {
                width: 200px;
            }




        }

        @media only screen and (max-width: 413px) {


            .newsletter-text {
                font-size: 14px;
            }

            .newsletter form input {
                font-size: 14px !important;
            }

            .newsletter form .tnp-submit {
                font-size: 15px !important;
            }
            
        }
               /* contact page */
.contact-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-left {
    width: 50%;
    box-shadow: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 5px;
}
.contact-right {
    width: 40%;
}
.contact_heading h2, .contact_heading p {
    text-align: center;
}
.row label {
    font-weight: 400;
    margin-bottom: 10px;
    width: 100%;
    float: left;
}
.row input , .row textarea,.row select{
    border: 1px solid #BD956F;
    padding: 5px 10px;
    background: #f3f3f3;
    color: #555;
    font-family: Inter;
    font-size: 16px;
    width: 100%;
	border-radius:3px;
}
.row select{
     appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 20 20' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M5 7l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 25px; 
}
input.wpcf7-form-control.wpcf7-date.wpcf7-validates-as-date{
        appearance: none !important;
    -webkit-appearance: none !important;
    position: relative;
    background-image: url(data:image/svg+xml;utf8,<svg fill='black' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 2v2H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-2V2h-2v2H9V2H7zm12 18H5V10h14v10z'/></svg>);
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
cursor: pointer;
}
.row textarea{
    resize: vertical;
}
.row-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom:30px;
}
.contact-box .row {
    width: 49%;
}
.contact-box .row.textarea {
    width: 100%;
}
.contact-box .submit {
    width: 100%;
}
.contact-box .submit input{
    border: 0 ;
    padding: 16px 20px ;
    background: #a76042 ;
    color: #ffffff ;
    font-family: Inter;
    font-size: 18px ;
    font-weight: 700 ;
    letter-spacing: 1.44px ;
    text-transform: uppercase ;
    cursor: pointer;
	margin-top:25px;
}
section.info-section {
       margin: 50px auto;
    overflow: hidden;
    max-width: 1200px;
}
section.info-section h3 {
    text-align: center;
    text-transform: capitalize;
    font-weight: 700;
}
.contact-area{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact-area .contact-item {
    width: 33%;
    display: flex;
    flex-wrap: nowrap;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    border-style: dashed;
    word-wrap: break-word;
    align-items: center !important;
    justify-content: center;
}
.contact-area .contact-item-text{
padding-left: 10px;
margin:0;
}
span.wpcf7-not-valid-tip {
    color: red;
    font-size: 12px;
}
.booking-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 100px 0;
        justify-content: space-between;
}
.booking-info {
    width: 30%;
}
.booking-info h4{
        width: 100%;
    color: #6f7945;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 8%;
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
}
.booking-info h2{
    color: #a05b3f;
    font-size: 56px;
    font-family: "EB Garamond", serif;
    font-weight: 500;
    text-align: left;
    margin-bottom: 60px;
    width: 100%;
    line-height: 100%;
}
.booking-info ul {
    margin: 30px 0;
    list-style: none;
}
.booking-info ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.booking-info ul li .icon {
    width: 12%;
}
.booking-info ul li svg{
        max-width: 30px;
}
.booking-form {
    width: 60%;
}
.inner-CRM-form{
	    width: 100%;
    box-shadow: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
    border-radius: 5px;
}
.inner-CRM-form .row {
    width: 49%;
}
.inner-CRM-form .row.textarea{
	width:100%
}
.inner-CRM-form .row textarea {
    resize: vertical;
    height: 200px;
}
.checkbox-field-wrapper label {
    display: flex;
    align-items: flex-start;
    margin: 20px 0 0 0;
}
.checkbox-field-wrapper input{
	width: 15px;
    height: 15px;
    margin-top: 4px;
}
.checkbox-field-wrapper span{
	    margin-left: 15px;
}
.error-border {
    border: 1px solid red !important;
}

input:focus.error-border,
select:focus.error-border {
    border: 2px solid red !important;
    outline: none;
}
span.checkbox-field__label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 16px;
}
.contact-box .submit input:hover{
	background-color:#08415c;
}
@media only screen and (max-width: 1499px){
    .booking-info h2 {
    font-size: 46px;
}
}

@media only screen and (max-width: 1279px) {
    .contact-box .row {
    width: 100%;
		margin-bottom:20px;
}
    .booking-info h2 {
    font-size: 34px;
        margin-bottom: 40px;
}
	    .contact-left {
    width: 100%;
}
.contact-box .row {
    width: 49%;
}
.contact-right {
    width: 50%;
    margin: 50px auto 0;
}
}
@media only screen and (max-width: 1023px) {

.contact-area .contact-item {
    width: 100%;
    margin-bottom: 10px;
	justify-content: flex-start;
}
.contact_heading h2 {
    font-size: 38px;
}
.booking-info {
    width: 100%;
}
.booking-form {
    width: 100%;
}
}
@media only screen and (max-width: 639px) {
    .contact-box .row {
    width: 100%;
}
.contact_heading h2 {
    font-size: 30px;
}
.contact-left {
    padding: 20px;
}
.contact-right {
    width: 80%;
}
.inner-CRM-form .row {
    width: 100%;
        margin-bottom: 20px;
}
.row-main {
    margin-bottom: 0px;
}
	.inner-CRM-form {
    padding: 20px;
}
}

/*AI form css*/


/* AI planer Start */

.modal.is-loading {
    overflow: hidden;
}
@keyframes spinner-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 65, 92, 0.55);
    backdrop-filter: blur(10px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.overlay.active {
    display: flex;
}

.modal {
    background: #fbf5e5;
    width: 100%;
    max-width: 800px;
    max-height: 100%;
    overflow-y: auto;
    position: relative;
    font-family: 'Inter', sans-serif;
    animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html.modal-open,
body.modal-open {
    overflow: hidden !important;
    height: 100%;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    background: var(--color-primary);
    padding: 24px 28px 20px;
    position: sticky;
	top: 0;
}

.modal-eyebrow {
    font-size: 12px;
    letter-spacing: 8%;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 400;
}

.modal-title {
    font-family: 'EB Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
}

.modal-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 28px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    color: var(--color-primary);
    width: 32px;
    height: 32px;
	padding: 0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
	font-family: "Inter", sans-serif;
    font-size: 32px;
    line-height: 1;
    transition: all 0.15s ease-in-out;
}

.modal-close:hover {
    transform: translateY(-50%) scale(1.1);
    background: rgba(255, 255, 255, 1);
}

.modal-body {
    padding: 32px 28px 28px;
}

.section-label {
    font-size: 16px;
    letter-spacing: 8%;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-label:first-of-type {
    margin-top: 0;
}

.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e0d8;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.field-row.row-full {
    grid-template-columns: 1fr;
}

.field-row.row-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.field .field-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-secondary);
    text-transform: capitalize;
}

.field input,
.field select,
.field textarea {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 10px 12px;
    outline: none;
    transition: border-color 0.15s;
    width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(160, 91, 63, 0.1);
}

.field input[type="date"] {
    cursor: pointer;
	width:auto;
}

.field textarea {
    resize: vertical;
    min-height: 72px;
    line-height: 1.5;
}

.field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.radio-item {
    font-size: 16px;
    color: var(--text-primary);
    text-transform: capitalize;
    padding: 6px 13px;
    border: 1px solid #ddd5cc;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    font-weight: 400;
}

.radio-item input[type="radio"] {
    display: none;
}

.radio-item:hover {
    border-color: var(--color-primary);
}

.radio-item:has(input:checked) {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-primary);
}

.check-item input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--color-primary);
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    padding: 0;
}

.modal-footer {
    padding: 0 28px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.btn-reset {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.25);
    color: var(--text-secondary);
    padding: 11px 18px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-reset:hover {
    border-color: var(--text-secondary);
    color: var(--text-primary);
}

.success-banner {
    display: none;
    background: #ffffff;
    border-left: 6px solid var(--color-primary);
    padding: 12px 16px;
    margin: 0 0 30px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-secondary);
}

.success-banner.show {
    display: block;
}
.field .field-label small {
    color: red;
    padding: 0 5px;
}
@media only screen and (max-width: 639px) {
    .overlay {
        padding: 0;
    }

    .modal-header,
    .modal-body {
        padding: 28px 20px 20px;
    }

    .field-row,
    .field-row.row-3 {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
        gap: 20px;
    }

    .checkbox-group {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* AI planer End */

/* Loading Overlay */
.loeadingOverlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
  gap: 2.5rem;
  background: rgba(251, 245, 229, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
}

.loeadingOverlay.active {
  display: flex;
}

.loader {
  width: 48px;
  height: 48px;
  display: block;
  position: relative;
  border: 3px solid var(--color-secondary);
  border-radius: 50%;
  box-sizing: border-box;
  animation: animloader 2s linear infinite;
}
.loader::after {
  content: '';
  box-sizing: border-box;
  width: 6px;
  height: 24px;
  background: var(--color-primary);
  transform: rotate(-45deg);
  position: absolute;
  bottom: -20px;
  left: 46px;
}
@keyframes animloader {
  0%   { transform: translate(-10px,-10px); }
  25%  { transform: translate(-10px, 10px); }
  50%  { transform: translate( 10px, 10px); }
  75%  { transform: translate( 10px,-10px); }
  100% { transform: translate(-10px,-10px); }
}

.label {
  font-size: 16px;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.phrases {
  position: relative;
  height: 1.5em;
  width: 280px;
}

.phrases span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  text-align: center;
  color: var(--color-primary);
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
}

/* 8 phrases × 3s = 24s total
   each phrase: visible 3%–9%, gone by 12%, silent 12%–100% */
.phrases span:nth-child(1) { animation: phrase 24s  0s   infinite; }
.phrases span:nth-child(2) { animation: phrase 24s  3s   infinite; }
.phrases span:nth-child(3) { animation: phrase 24s  6s   infinite; }
.phrases span:nth-child(4) { animation: phrase 24s  9s   infinite; }
.phrases span:nth-child(5) { animation: phrase 24s 12s   infinite; }
.phrases span:nth-child(6) { animation: phrase 24s 15s   infinite; }
.phrases span:nth-child(7) { animation: phrase 24s 18s   infinite; }
.phrases span:nth-child(8) { animation: phrase 24s 21s   infinite; }

@keyframes phrase {
  0%    { opacity: 0; transform: translateY( 8px); }
  3%    { opacity: 1; transform: translateY( 0);   }
  9%    { opacity: 1; transform: translateY( 0);   }
  12%   { opacity: 0; transform: translateY(-8px); }
  100%  { opacity: 0; transform: translateY( 8px); }
}

form.submitting .wpcf7-spinner{
	position:absolute;
}


/* Newsletter Welcome  start */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.newsletter-welcome__check {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: drawCheck 0.5s 0.55s ease forwards;
}

.newsletter-welcome__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.newsletter-welcome__inner {
  width: 100%;
  text-align: center;
}
.newsletter-welcome__icon {
  margin: 0 auto 1.5rem;
  width: 100px;
  height: 100px;
  animation: float 3.2s ease-in-out infinite;
}
.newsletter-welcome__icon-wrap {
  animation: fadeUp 0.4s 0.1s both;
}
.newsletter-welcome__heading {
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
  animation: fadeUp 0.4s 0.25s both;
}
.newsletter-welcome__body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0 0 2rem;
  max-width: 552px;
  margin: 0 auto 3rem !important;
  animation: fadeUp 0.4s 0.4s both;
}
.newsletter-welcome__cta {
  animation: fadeUp 0.4s 0.55s both;
}
.newsletter-welcome__footnote {
  font-size: 11px;
  color: var(--color-text-tertiary);
  margin: 1rem 0 0;
}

/* Newsletter Welcome  end */
.page-template-page-itinerary .site-main{
	    padding: 67px 0;
    min-height: 50vh;
    display: block;
}
.page-template-page-itinerary #itinerary-result {
    padding-top: 70px;
}
@media (max-width: 1023px) {
	.page-template-page-itinerary .site-main{
	    padding: 27px 0;
}
.page-template-page-itinerary #itinerary-result {
    padding-top: 27px;
}
}
@media (max-width: 767px) {
	.page-template-page-itinerary .site-main{
	    padding: 15px 0 27px;
}
	.row input, .row select{
		height:40px;
	}
	.page-template-page-itinerary #itinerary-result{
		padding-top:57px;
	}
}
.tnp-field-email .tnp-email::placeholder{
	color:#555 !important;
}

.inner-CRM-form input[type="submit"]{
	    border: 0;
    padding: 16px 20px;
    background: #a76042;
    color: #ffffff;
    font-family: Inter;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 12px;
}
.controls-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 60px;
  position: relative;
}
span.error-msg {
    font-size: 12px;
    color: RED;
}
#newbook_content div#page.site .header {
    display: none;
}
#newbook_content div#page.site footer {
    display: none;
}
#newbook_content div#page.site .global-hero__section {
    display: none;
}
.follow-us {
    background: #f5f1ea;
    padding: 70px 20px;
    text-align: center;
}

.follow-us h2 {
    font-size: 36px;
}
.follow-us p {
    margin-bottom: 35px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-icons .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s ease;
}

/* Brand Colors */
.facebook { background: #3b5998; }
.instagram { background: #e4405f; }
.twitter { background: #1da1f2; }
.youtube { background: #cd201f; }

.social-icons .icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}