/* Inter (variable font, weights 100-900) - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../../fonts/inter/inter-variable.woff2') format('woff2-variations'),
       url('../../fonts/inter/inter-variable.woff2') format('woff2');
}
/* open-sans-regular - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-regular.woff2') format('woff2');
}
/* open-sans-italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-italic.woff2') format('woff2');
}
/* open-sans-500 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-500.woff2') format('woff2');
}
/* open-sans-500italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-500italic.woff2') format('woff2');
}
/* open-sans-600 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-600.woff2') format('woff2');
}
/* open-sans-600italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-600italic.woff2') format('woff2');
}
/* open-sans-700 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-700.woff2') format('woff2');
}
/* open-sans-700italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-700italic.woff2') format('woff2');
}
/* open-sans-800 - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-800.woff2') format('woff2');
}
/* open-sans-800italic - latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url('../../fonts/open-sans/open-sans-v40-latin-800italic.woff2') format('woff2');
}

:root{
  --primary: #7B7F67;
  --orange: #C65D3B;
  --Light-orange:#FBDAB2;
  --grey:#54595f;
  --text:#54595F;
}

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

html,body {
  margin:0;
  padding:0;
  overflow-x: hidden;
  font-family: "Inter";
  font-size:18px;
  font-weight:400;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #c65d3b #efebe6;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #efebe6;
}

::-webkit-scrollbar-thumb {
    background: #c65d3b;
    border-radius: 0px;
    border: 2px solid #efebe6;
}

::-webkit-scrollbar-thumb:hover {
    background: #b24e2d;
}

/* Text Selection */
::selection {
    background-color: #c65d3b;
    color: #fff;
}

::-moz-selection {
    background-color: #7b7f67;
    color: #fff;
}

/* ==== CONTAINER CSS BEGIN ======= */
.alignfull {
  max-width: 100vw;
}

.alignwide {
  max-width: 1350px;
  margin: auto;
  width: 100%;;
}

@media only screen and (max-width: 1420px) and (min-width: 1200px){
 .alignwide {
  max-width: 1350px;
  margin: auto;
}
.logo-hreader > .kt-row-column-wrap,.topbarhead > .kt-row-column-wrap,.footwidth > .kt-row-column-wrap{
  max-width: 1350px !important;
  margin: auto;
}
}
/* ==== CONTAINER CSS BEGIN ======= */
p{
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  margin: 14px 0px;
}
ul {
  list-style: none;
  padding-left:0;
}
h1 {
  font-size: 51px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 30px;
}
h4 {
 font-size: 25px;
}
h5 {
  font-size: 23px;
}
h6 {
  font-size: 21px;
}
h1,h2,h3,h4,h5,h6{
  font-family: "Playfair", playfair;
  margin-bottom: 0px;
  margin-top: 0px;
  line-height: 1.3;
  color: var(--primary);
  width: 100%;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--text);
  text-decoration: none;
}
/* ===== WPFORM GENERAL BEGIN ==== */
.wpforms-container-full input {
  background: #fff !important;
  box-shadow: inset 1px 8px 9px -6px #dcdcdc !important;
  border-radius: 7px !important;
  border: 1px solid #4c4b517d !important;
  color: #000;
}
.wpforms-container-full .wpforms-field-file-upload input#wpforms-231-field_12 {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0px !important;
}
.wpforms-container-full button.wpforms-submit {
  background: var(--orange) !important;
  font-size: 22px !important;
  width: 100%;
  height: 54px !important;
  margin-top: 0.9rem;
}
.wpforms-container-full button.wpforms-submit:hover{
  background: #54595f !important;
}
.wpforms-container-full button.wpforms-submit:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  height: 100%;
  width: 24px;
  background-color: rgba(24,25,28, 0.2);
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 1;
}

.wpforms-container-full button.wpforms-submit:hover:after {
width: 100%;
}
/* ===== WPFORM GENERAL END ==== */
@media only screen and (max-width:1430px){
  h1 {
    font-size: 47px;
}
}
@media only screen and (max-width:1024px){
  h1 {
    font-size: 51px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 30px;
  }
  h4 {
   font-size: 25px;
  }
  h5 {
    font-size: 23px;
  }
  h6 {
    font-size: 21px;
  }
  p{
    margin:15px 0px;
  }
  /* .alignwide {
    padding: 0px 0px;
  } */
  div.wpforms-container-full{
    width: 100%;
  }
}
@media only screen and (max-width:766px){
  h1 {
    font-size: 31px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 25px;
  }
  h4 {
    font-size: 22px;
}
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 22px;
  }
}

figure.hover-zoom {
	overflow: hidden;
}

figure.hover-zoom img {
  transition: all 0.3s ease-in-out;
}

figure.hover-zoom:hover img {
	transform: scale(1.05);
    transform-origin: center;
}

/* figure.hover-zoom:hover .kb-image-has-overlay:after {
	opacity: 0;
} */

.video-wrapper > .kt-inside-inner-col {
    overflow: hidden;
	aspect-ratio: 1/1.2;
}

.video-overlay-box {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-overlay-box .kt-inside-inner-col {
	background-color: transparent !important;
}

.video-wrapper .wp-block-video,
.video-wrapper .wp-block-video video {
    width: 100%;
    height: 100%;
}

.video-wrapper .wp-block-video video {
    object-fit: cover;
    display: block;
}

.contact-row:hover .wp-block-kadence-icon {
background-color: var(--primary);
}
.contact-row:hover span.kb-svg-icon-wrap svg {
stroke: #ffffff;
}
.contact-row:hover h4 {
color: var(--primary);
}

/* Base Animation */
.reveal {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* Active State */
.reveal.active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Directions */
.fade-up {
  transform: translate3d(0, 60px, 0);
}

.fade-down {
  transform: translate3d(0, -60px, 0);
}

.fade-left {
  transform: translate3d(60px, 0, 0);
}

.fade-right {
  transform: translate3d(-60px, 0, 0);
}

/* Optional Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Optional Faster/Slower */
.duration-fast {
  transition-duration: 0.5s;
}

.duration-slow {
  transition-duration: 1.2s;
}

/* Mobile Optimization */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.active {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-image-figure img {
  position: relative;
  z-index: 2;
}

.hero-image-figure img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-figure:hover img {
  transform: scale(1.02);
}

/* Offset Border Frame */
.hero-image-figure::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  border: 2px solid #e4e4e4;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Sharp Corner Accent */
.hero-image-figure::after {
  content: "";
  position: absolute;
    top: -16px;
    left: -16px;
    width: 70px;
    height: 70px;
    border-top: 2px solid #e4e4e4;
    border-left: 2px solid #e4e4e4;
    z-index: 3;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image-figure:hover::before {
  transform: translate(14px, 14px);
}

.hero-image-figure:hover::after {
  transform: translate(-14px, -14px);
}

/* Center Half Underline */
.title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 5rem;
  height: 2px;
  background: #7b7f67;
  border-radius: 10px;
}

.title-left::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 5rem;
  height: 2px;
  background: #7b7f67;
  border-radius: 10px;
}

/***************** journey-slider *******************/
.textile-slider h4 {
position: relative;
}

.textile-slider h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 22px;
    background-color: var(--orange);
}

#journey-slider {
  position: relative;
  z-index: 999;
}

#journey-slider .kt-row-column-wrap,
#journey-slider .slick-slider {
  display: block !important;
  min-width: 0;
}

#journey-slider .slick-list {
  margin: 0 -12px;
  overflow: hidden;
}

#journey-slider .slick-track {
  display: flex;
}

#journey-slider .slick-slide {
  padding: 0 2px;
  box-sizing: border-box;
  height: auto;
}

#journey-slider .slick-slide > div {
  height: 100%;
}

#journey-slider .wp-block-kadence-column {
  min-width: 0;
}
#journey-slider .slider-item > .kt-inside-inner-col {
 position: relative;
}
#journey-slider .slider-item h4 {
color: #ffffff;
position: absolute;
bottom: 10px;
left: 10px;
width: 100%;
padding: 10px;
z-index: 9;
}

#journey-slider .journey-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  cursor: pointer;
  font-size: 0;
  line-height: 1;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

#journey-slider .journey-arrow:hover {
  background: #111;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

#journey-slider .journey-arrow:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}

#journey-slider .journey-prev {
  left: 20px;
}

#journey-slider .journey-next {
  right: 20px;
}

#journey-slider .journey-arrow::before {
  content: none !important;
}

#journey-slider .journey-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

#journey-slider .journey-prev::after {
  transform: translate(-35%, -50%) rotate(-135deg);
}

#journey-slider .journey-next::after {
  transform: translate(-65%, -50%) rotate(45deg);
}

#journey-slider .journey-arrow.slick-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

#journey-slider .journey-arrow.slick-disabled:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
}

@media (max-width: 767px) {
  #journey-slider .journey-arrow {
    width: 40px;
    height: 40px;
  }

  #journey-slider .journey-prev {
    left: 5px;
  }

  #journey-slider .journey-next {
    right: 5px;
  }
}

#wpforms-form-426 .wpforms-field-container {
	display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

#wpforms-form-426 .wpforms-field input, #wpforms-form-426 .wpforms-field select {
height: 50px;
line-height: 1;
}

#wpforms-form-426 .wpforms-field input, #wpforms-form-426 .wpforms-field textarea, #wpforms-form-426 .wpforms-field select {
padding: 0 !important;
border: none !important;
border-bottom: 1px solid #000 !important;
box-shadow: none !important;
border-radius: 0 !important;
}

#wpforms-form-426 .wpforms-field input:focus, #wpforms-form-426 .wpforms-field input:active, #wpforms-form-426 .wpforms-field textarea:focus, #wpforms-form-426 .wpforms-field textarea:active, #wpforms-form-426 .wpforms-field select:focus, #wpforms-form-426 .wpforms-field select:active {
border-color: #C65D3B !important;
}

#wpforms-form-426 .wpforms-field-label {
	color: #54595f;
	font-size: 18px;
	font-weight: 500;
}

#wpforms-form-426 .wpforms-field  {
	width: 100%;
}

#wpforms-form-426 .wpforms-field.half-width {
	width: 48%;
}

a.kb-advanced-heading-link {
    position: relative;
    display: inline-block;
}

/* Underline */
a.kb-advanced-heading-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background-color: #b47e4c;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

/* Hover Animation */
a.kb-advanced-heading-link:hover::before {
    transform: scaleX(1);
}

/* theme end */