
:root {
    --font-body--family: "Inter", sans-serif;
    --font-body--style: 14px;
    --font-body--weight: 400;
    --font-heading--family: "Poppins", sans-serif;
    --font-heading--style: 14px;
    --font-heading--weight: 600;
    --font-button--family: "Poppins", sans-serif;
    --font-button--style: normal;
    --font-button--weight: 600;
    --font-h1--size: 60px;
    --font-h2--size: 48px;
    --font-h3--size: 36px;
    --font-h4--size: 24px;
    --font-h5--size: 20px;
    --font-h6--size: 16px;
    --font-nav-main: 16px;
    --header-height: 35px;
    --color-background: rgba(255, 255, 255, 1);
    --color-foreground: rgba(28, 37, 57, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-foreground-subheading: rgba(93, 102, 111, 1);
    --color-background-subheading: rgba(255, 255, 255, 0.1);
    --color-border-subheading-bg: rgba(32, 40, 45, 0.1);
    --color-primary: rgba(28, 37, 57, 1);
    --color-primary-background: rgb(21 0 204);
    --color-primary-hover: rgba(28, 37, 57, 1);
    --color-primary-background-hover: rgba(28, 37, 57, 1);
    --color-border: rgba(255, 255, 255, 0.2);
    --color-border-hover: rgba(93, 102, 111, 0.5);
    --color-shadow: rgba(0, 0, 0, 1);
    --color-overlay: rgba(28, 37, 57, 0.6);
    --font-button-size: 16px;
    --font-button-size-mobile: 16px;
    --style-button-height: 56px;
    --style-button-height-mobile: 48px;
    --style-button-slim-height: 52px;
    --style-button-slim-height-mobile: 40px;
    --style-cta-underline-offset: 5px;
    --style-cta-underline-thickness: 1px;
    --color-primary-button-text: rgba(255, 255, 255, 1);
     --color-primary-button-background: #bb7051;
    --color-primary-button-border: #bb7051;
    --color-primary-button-icon: rgba(28, 37, 57, 1);
    --color-primary-button-icon-background: rgba(255, 255, 255, 1);
    --color-primary-button-hover-text: rgba(32, 40, 45, 1);
    --color-primary-button-hover-background: rgba(255, 255, 255, 1);
    --color-primary-button-hover-border: rgba(32, 40, 45, 1);
    --color-primary-button-hover-icon: rgba(255, 255, 255, 1);
    --color-primary-button-hover-icon-background: rgba(28, 37, 57, 1);
    --color-secondary-button-text: rgba(32, 40, 45, 1);
    --color-secondary-button-background: rgba(255, 255, 255, 1);
    --color-secondary-button-border: rgba(255, 255, 255, 1);
    --color-secondary-button-icon: rgba(255, 255, 255, 1);
    --color-secondary-button-icon-background: rgba(32, 40, 45, 1);
    --color-secondary-button-hover-text: rgba(255, 255, 255, 1);
    --color-secondary-button-hover-background: rgba(32, 40, 45, 1);
    --color-secondary-button-hover-border: rgba(32, 40, 45, 1);
    --color-secondary-button-hover-icon: rgba(28, 37, 57, 1);
    --color-secondary-button-hover-icon-background: rgba(255, 255, 255, 1);
    --color-input-background: rgba(255, 255, 255, 1);
    --color-input-text: rgba(93, 102, 111, 1);
    --color-input-border: rgba(93, 102, 111, 0.2);
    --color-input-hover-background: rgba(255, 255, 255, 1);
    --color-input-hover-text: rgba(93, 102, 111, 1);
    --color-input-hover-border: rgba(93, 102, 111, 0.2);
    --style-border-width-buttons-primary: 1px;
    --style-border-width-buttons-secondary: 1px;
    --style-border-radius-buttons-primary: 40px;
    --style-border-radius-buttons-secondary: 40px;
    --style-border-width-inputs: 1px;
    --style-border-radius-inputs: 8px;
    --style-border-width: 1px;
    --focus-outline-width: 1px;
    --focus-outline-offset: 3px;
    --style-pagination-border-width: 1px;
       --pagination-item-foreground: rgba(28, 37, 57, 1);
    --pagination-item-background: rgba(242, 242, 242, 1);
    --pagination-item-border: rgba(242, 242, 242, 1);
    --pagination-item-active-foreground: rgba(255, 255, 255, 1);
    --pagination-item-active-background: rgba(28, 37, 57, 1);
    --pagination-item-active-border: rgba(28, 37, 57, 1);
    --swiper-navigation-size: 14px;
    --swiper-navigation-color: rgba(28, 37, 57, 1);
    --swiper-navigation-background-color: rgba(242, 242, 242, 1);
    --swiper-navigation-hover-color: rgba(28, 37, 57, 1);
    --swiper-navigation-hover-background-color: transparent;
    --swiper-pagination-bullet-inactive-color: rgba(242, 242, 242);
    --swiper-pagination-color: rgba(28, 37, 57, 1);
    --swiper-pagination-bullet-inactive-opacity: 1;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

body {
  color: var(--color-foreground);
  background: var(--color-background);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  min-height: 100svh; }

html {
  /* Firefox */
  scrollbar-width: thin;
  scroll-behavior: smooth; }

.scroll-lock {
  overflow: hidden; }

#drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.3); }

#drawer-overlay:not(.show) {
  display: none; }

@media (max-width: 991px) {
  #drawer-overlay {
    display: none; } }

img,
picture,
video,
canvas,
iframe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  aspect-ratio: attr(width)/attr(height); }

svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%; }

iframe {
  width: 100%;
  /*height: auto;*/
   }

input,
textarea,
select {
  font: inherit;
  border-radius: var(--style-border-radius-inputs); }

textarea,
input {
  color: var(--color-input-text);
  background-color: var(--color-input-background);
  border: var(--style-border-width-inputs) solid var(--color-input-border);
  outline: none; }

textarea:focus,
textarea:hover,
input:focus,
input:hover {
  color: var(--color-input-hover-text);
  background-color: var(--color-input-hover-background);
  border-color: var(--color-input-hover-border); }

/* override ios and firefox defaults */
select {
  background-color: var(--color-background);
  color: currentcolor; }

dialog {
  background-color: var(--color-background);
  color: var(--color-foreground); }

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
  padding: 0; }

p:empty {
  display: none; }

:is(p, h1, h2, h3, h4, h5, h6):first-child,
:empty:first-child + :where(p, h1, h2, h3, h4, h5, h6) {
  -webkit-margin-before: 0;
  margin-block-start: 0; }

:is(p, h1, h2, h3, h4, h5, h6):last-child,
:where(p, h1, h2, h3, h4, h5, h6) + :has(+ :empty:last-child) {
  -webkit-margin-after: 0;
  margin-block-end: 0; }

/* Focus */
.focus-inset {
  outline-offset: calc(var(--focus-outline-width) * -1); }

.svg-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

/* Typography */
.heading {
  /*color: var(--color-foreground-heading);*/
  font-weight: var(--font-heading--weight);
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  letter-spacing: normal; }

.heading-color {
  color: var(--color-foreground-heading); }

.subheading {
  color: var(--color-foreground-subheading);
  font-weight: 500;
  font-family: var(--font-heading--family);
  font-style: normal;
  letter-spacing: normal; }

.subheading-bg {
  background-color: var(--color-background-subheading);
  letter-spacing: normal;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 7px 20px;
  border-radius: 40px;
  border: 1px solid var(--color-border-subheading-bg);
  gap: 5px; }

a {
   
    text-decoration: none !important;
}
.text {
    letter-spacing: normal;
    font-weight: 400;
    color: #000;
    font-family: var(--font-body--family);
    line-height: 30px; 
        margin-bottom: 5px; 
}
.testimonial-slider .thumb-card p{
         font-size: 16px !important;
        line-height: 28px !important;
}
h1,
.h1 {
  font-size: var(--font-h1--size);
  line-height: 1.16; }

h2,
.h2 {
  font-size: var(--font-h2--size);
  line-height: 1; }

h3,
.h3 {
  font-size: var(--font-h3--size);
  line-height: 1; }

h4,
.h4 {
  font-size: var(--font-h4--size);
  line-height: 1.2; }

h5,
.h5 {
  font-size: var(--font-h5--size);
  line-height: 1.3; }

h6,
.h6 {
  font-size: var(--font-h6--size);
  line-height: 1.4; }


/* Buttons */
.button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; 
  font-size: 14px;
  font-weight: var(--font-button--weight);
  font-family: var(--font-button--family);
  font-style: normal;
  line-height: 1.4;
  letter-spacing: normal;
  padding: 6px 6px 6px 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.button-without-icon {
  padding: 10px 30px; }

.button-without-icon.button--slim {
  padding: 10px 15px; }

.button--slim {
  height: var(--style-button-slim-height);
  min-height: var(--style-button-slim-height); }

.button--primary {
  color: var(--color-primary-button-text);
  background-color: var(--color-primary-button-background);
  border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-border);
  border-radius: var(--style-border-radius-buttons-primary); }

.button--primary:focus,
.button--primary:hover {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--color-primary-button-hover-text);
  background-color: var(--color-primary-button-hover-background);
  border: var(--style-border-width-buttons-primary) solid var(--color-primary-button-hover-border); }

.button--secondary {
  color: var(--color-secondary-button-text);
  background-color: var(--color-secondary-button-background);
  border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-border);
  border-radius: var(--style-border-radius-buttons-secondary); }

.button--secondary:focus,
.button--secondary:hover {
  color: var(--color-secondary-button-hover-text);
  background-color: var(--color-secondary-button-hover-background);
  border: var(--style-border-width-buttons-secondary) solid var(--color-secondary-button-hover-border); }

.button .svg-wrapper {
  color: var(--color-primary-button-icon);
  background-color: var(--color-primary-button-icon-background);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  min-width: 36px;
  height: 36px;
  border-radius: 100%; }

.button:focus .svg-wrapper,
.button:hover .svg-wrapper {
  color: var(--color-primary-button-hover-icon);
  background-color: var(--color-primary-button-hover-icon-background); }

.button--secondary .svg-wrapper {
  color: var(--color-secondary-button-icon);
  background-color: var(--color-secondary-button-icon-background); }

.button--secondary:focus .svg-wrapper,
.button--secondary:hover .svg-wrapper {
  color: var(--color-secondary-button-hover-icon);
  background-color: var(--color-secondary-button-hover-icon-background); }

.button--cta {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-button--family);
  font-style: normal;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: var(--style-cta-underline-thickness) solid var(--color-primary);
  -webkit-padding-after: var(--style-cta-underline-offset);
  padding-block-end: var(--style-cta-underline-offset); }

.button--cta svg {
  --size: 12px;
  width: var(--size);
  height: var(--size); }

.button--cta:hover {
  color: var(--color-primary-hover);
  border-color: var(--color-primary-hover); }

@media (max-width: 767px) {
  .button {
    min-height: var(--style-button-height-mobile);
    font-size: 14px; }
  .button--slim {
    height: var(--style-button-slim-height-mobile);
    min-height: var(--style-button-slim-height-mobile); } }

.content-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999; }

.overlay:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-overlay); }

.list-unstyled {
  padding: 0;
  list-style: none;
  margin: 0; }

.border-bottom--theme {
  border-bottom: var(--style-border-width) solid var(--color-border); }

.height-inherit {
  height: inherit; }

.height-100 {
  height: 100%; }

.height-auto {
  min-height: auto;
  height: auto; }

.mt-100 {
  margin-top: 100px; }

.no-box-shadow {
  -webkit-box-shadow: none !important;
  box-shadow: none !important; }

.no-underline {
  text-decoration: none; }


/* drawer opener */
drawer-opener {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer; }

drawer-opener svg {
  width: 100%;
  height: 100%; }

drawer-opener.menu-close svg {
  width: 30px;
  height: 30px; }

drawer-opener * {
  pointer-events: none; }

.open-sidebar {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-background: rgba(32, 40, 45, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 20px;
  border-radius: 8px;
  gap: 6px;
  color: var(--color-foreground);
  background-color: var(--color-background);
  -webkit-margin-after: 30px;
  margin-block-end: 30px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  -webkit-margin-start: auto;
  margin-inline-start: auto; }

.open-sidebar svg {
  --size: 20px;
  width: var(--size);
  height: var(--size); }

.menu-open {
  width: 36px;
  height: 36px;
  color: var(--color-foreground); }

.social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px; }

.social-link {
  text-decoration: none;
  width: var(--size-social, 35px);
  height: var(--size-social, 35px);
  border-radius: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; color: #ffff;
background: #b87154;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  word-wrap: normal; }

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover; }

.bg-contain {
  background-repeat: repeat;
  background-size: contain; }

.radius18 {
  border-radius: 18px;
  overflow: hidden; }

.radius10 {
  border-radius: 10px;
  overflow: hidden; }

.card-icon-text .svg-wrapper {
  --size: 70px;
  min-width: var(--size, 70px);
  width: var(--size, 70px);
  height: var(--size, 70px);    background: #b87154;
    border-radius: 50%; }

.card-icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px; margin-top: 20px;}

.card-icon-text .heading + .text {
  -webkit-margin-before: 10px;
  margin-block-start: 10px; }

.card-icon-text-horizontal {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.service-slider .card-icon-text-horizontal {
  -webkit-margin-before: 20px;
  margin-block-start: 20px;
  gap: 30px; }

@media (max-width: 1279px) {
  .card-icon-text .svg-wrapper {
    --size: 60px; } }

@media (max-width: 767px) {
  .radius18 {
    border-radius: 10px; } }

@media (min-width: 2000px) {
  .bg-contain {
    background-repeat: no-repeat;
    background-size: cover; } }

.infinite-rotate {
  -webkit-animation: inifinte-rotation 20s infinite linear;
  animation: inifinte-rotation 20s infinite linear; }

@-webkit-keyframes inifinte-rotation {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

@keyframes inifinte-rotation {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }

.overflow-hidden {
  overflow: hidden; }

.media-wrapper {
  position: relative;
  height: 100%; }
.media-wrap{
   position: relative;
}
.iframe-wrapper,
.media {
  position: absolute;
  width: 100%;
  /* height: 100%; */
  top: 0;
  left: 0;
  overflow: hidden; }

.media-bg {
  z-index: -1;    height: 100%; }

.iframe-wrapper iframe,
.media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;     width: 100%;}

.scroll-to-top {
     --size: 40px;
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 19px;
    right: 20px;  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 10;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #1c2539;
  border-radius: 50%;
  -webkit-box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.5);
  box-shadow: 0px 4px 22px rgba(255, 255, 255, 0.5); }

.scroll-to-top.show {
  opacity: 1;
  pointer-events: auto; }

.scroll-lock .scroll-to-top {
  display: none; }

.scroll-to-top svg {
  --size: 22px;
  color: #fff;
  width: var(--size);
  height: var(--size); }

@media (max-width: 767px) {
  .scroll-to-top {
    --size: 40px; }
  .scroll-to-top svg {
    --size: 20px; } }


/* container */
.product-grid {
  row-gap: 30px; }

.container-narrow {
  max-width: 1000px; }

@media (min-width: 1280px) {
  .container-fluid {
    max-width: 1680px;
    -webkit-padding-start: 3rem;
    padding-inline-start: 3rem;
    -webkit-padding-end: 3rem;
    padding-inline-end: 3rem; } }

@media (max-width: 991px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100%; } }

@media (min-width: 768px) and (max-width: 991px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: 3rem; } }

.header-2 {
  --top: 30px;
  --header-radius: 100px;
  --header-padding: 0 24px;
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(28, 37, 57, 1);
  --color-primary-hover: rgba(28, 37, 57, 0.6);
  --color-border: rgba(0, 0, 0, 0.06); }



.header-floating {
  position: fixed;
  top: var(--top, 0);
  left: 0;
  width: 100%;
  z-index: 9; }

sticky-header[data-sticky-type="always"] {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9; }

.header-grid1 {
  /* display: -ms-grid;
  display: grid;
  -ms-grid-columns: 290px 1fr 290px;
  grid-template-columns: 290px 1fr 290px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; */
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-background);
  border-radius: var(--header-radius);
  padding: var(--header-padding); 
      /* box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); */
}

.header-sticky .header-grid1{
      box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.header-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 290px 1fr 290px;
  grid-template-columns: 290px 1fr 290px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  background: var(--color-background);
  border-radius: var(--header-radius);
  padding: var(--header-padding); 
}

.sticky-header .header-grid{
    border:none !important;

box-shadow: none !important;
}
.header-2 .header-grid {
  -ms-grid-columns: 260px 1fr 260px;
  grid-template-columns: 260px 1fr 260px;
  border: var(--style-border-width) solid var(--color-border); }
.header-sticky .header-grid {
    -ms-grid-columns: 260px 1fr 260px;
    grid-template-columns: 260px 1fr 260px;
    border: none;
}


.header-logo {
  max-width: 135px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.header-actions {
  justify-self: flex-end;
  gap: 24px;
  color: var(--color-foreground); }

.header-search {
  --color-border: rgba(255, 255, 255, 1);
  --style-border-width: 2px;
  min-width: 52px;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: var(--style-border-width) dotted var(--color-border);
  border-radius: 50%;
  opacity: 0.6;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer; }

.header-search:focus,
.header-search:hover {
  opacity: 1; }

.header-separator {
  --color-border: rgba(255, 255, 255, 1);
  color: var(--color-border); }

.header-actions .header-search svg {
  width: 24px;
  height: 24px; }

.header-2 .header-actions > .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

@media (min-width: 992px) {
  .header-1 .header-nav {
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border); }
  .header-4 .header-nav {
    border-left: none;
    border-right: none; }
  .header-nav {
    position: relative; } }

@media (max-width: 1365px) {
  
  .header-actions {
    gap: 20px; }
 
  
  .header-separator {
    display: none; } }

@media (max-width: 1279px) {
  .header-grid {
    -ms-grid-columns: 200px 1fr 200px;
    grid-template-columns: 200px 1fr 200px; }
  /* .header-2 .header-grid {
    -ms-grid-columns: (auto)[3];
    grid-template-columns: repeat(3, auto); } */
  .header-actions .header-search {
    min-width: 36px;
    width: 36px;
    height: 36px; }
  .header-actions .header-search svg {
    width: 18px;
    height: 18px; }
  .header-actions .button--slim {
    -webkit-padding-start: 18px;
    padding-inline-start: 18px;
    gap: 8px; display: none !important;}
  .header-actions .button--slim .svg-wrapper {
    min-width: 30px;
    height: 30px; }
  .header-logo {
    max-width: 160px; } }

@media (max-width: 991px) {
  .header-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0; }
  .header-2 .header-grid {
           padding: 6px 15px; } }

@media (max-width: 767px) {
  .header-logo {
            max-width: 115px; }
  .header-2 {
    --top: 20px; } }

.submenu-color {
  --submenu-radius: 8px;
  --submenu-padding: 10px;
  --color-background: rgba(255, 255, 255, 1);
  --color-foreground: rgba(32, 40, 45, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  --color-primary: rgba(32, 40, 45, 1);
  --color-primary-background: rgba(240, 237, 239, 0);
  --color-primary-hover: rgba(32, 40, 45, 1);
  --color-primary-background-hover: rgba(233, 233, 233, 1); }

.menu-link {
  color: var(--color-foreground);
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.nav-item:focus > .menu-link,
.nav-item:hover > .menu-link {
  color: var(--color-primary-hover); }

.menu-link-main > svg {
  position: relative;
  top: 1px; }

.menu-link-main {
  padding: 37.5px 20px; }

.nav-item {
  position: relative; }

.header-submenu {
  background: var(--color-background);
  width: 100%; }

.header-submenu > * {
  padding: var(--submenu-padding) 0; }

.nav-item-static {
  position: static; }

.header-submenu .nav-item {
  display: block;
  position: relative;
  padding: 0 var(--submenu-padding); }

.header-submenu .menu-link {
  color: var(--color-primary);
  background: var(--color-primary-background);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  padding: 7px 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: var(--submenu-radius);
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.header-megamenu .nav-item .menu-link {
  padding: 15px 17px; }

.header-megamenu .nav-item .submenu-lists .menu-link {
  padding: 7px 17px; }

.header-submenu .menu-link > svg {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.menu-link.megamenu-image-wrap,
.header-submenu .nav-item.megamenu-links .menu-link,
.header-submenu .nav-item:focus > .menu-link,
.header-submenu .nav-item:hover > .menu-link {
  color: var(--color-primary-hover);
  background: var(--color-primary-background-hover); }

.reset-submenu {
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent;
  width: auto; }

.header-megamenu > * > .nav-item {
  padding: 30px 20px 10px; }

.megamenu-links .menu-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex; }

.menu-link .heading + .text {
  -webkit-margin-before: 4px;
  margin-block-start: 4px;
  opacity: 0.75; }

.menu-link.heading {
  background: transparent !important;
    }

.header-submenu .nav-item.megamenu-links .menu-link {
  padding: 5px 15px 7px; }

.header-submenu .nav-item.megamenu-links .menu-link > svg {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  position: relative;
  top: 1px; }

.header-megamenu .nav-item.megamenu-links > * {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px; }

.megamenu-image-wrap .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-margin-before: 15px;
  margin-block-start: 15px; }

.megamenu-image-wrap .content .button {
  --color-primary-button-icon: rgba(255, 255, 255, 1);
  --color-primary-button-icon-background: rgba(28, 37, 57, 1);
  --color-primary-button-hover-icon: rgba(28, 37, 57, 1);
  --color-primary-button-hover-icon-background: rgba(255, 255, 255, 1);
  padding: 0;
  min-height: 1px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.megamenu-image-wrap:focus .content .button .svg-wrapper,
.megamenu-image-wrap:hover .content .button .svg-wrapper {
  color: var(--color-primary-button-hover-icon);
  background: var(--color-primary-button-hover-icon-background); }

.submenu-lists .menu-link {
  letter-spacing: normal; }

.header-submenu.submenu-lists .nav-item .menu-link {
  padding: 7px 17px; }

.megamenu-image-wrap img {
  border-radius: 6px; }

@media (min-width: 992px) {
  .menu-absolute {
    position: absolute;
    top: 100%;
    left: 0; }
  .header-grandmenu {
    left: 100%;
    top: 0; }
    .header-grandmenu1{
      left: auto !important;
              top: 36px !important;
        z-index: 9;
    }
  .header-submenu {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border-radius: var(--submenu-radius);
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    opacity: 0;
    visibility: hidden; }
  .header-megamenu {
/*width: 100%;*/
width: 140%;
 }
  .nav-item:hover > .menu-absolute {
    opacity: 1;
    visibility: visible; }
  .reset-submenu > .nav-item {
    padding: 0; }
  .header-megamenu > * {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .header-megamenu > * > .nav-item {
  /*  width: calc(100% - var(--submenu-padding) / 2);
    max-width: calc(100% - var(--submenu-padding) / 2); */
  }
  .header-megamenu .menu-link {
    display: inline-block; }
  .nav-item.megamenu-links {
    width: 100%;
    max-width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 24px;
    padding: 20px; }
  .header-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    /* flex-wrap: wrap; */
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; 
  }
   }

@media (max-width: 1600px) {
  .menu-link-main {
    padding: 28px 8px; } }

@media (max-width: 1365px) {
  .menu-link-main {
    padding: 28px 8px;     font-size: 11px;} }

@media (max-width: 991px) {
  .header-nav {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(32, 40, 45, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-primary: rgba(32, 40, 45, 1);
    --color-primary-background: rgba(240, 237, 239, 0);
    --color-primary-hover: rgba(32, 40, 45, 1);
    --color-primary-background-hover: rgba(233, 233, 233, 1);
    position: fixed;
    right: 0;
    top: 0;
    background: var(--color-background);
    z-index: 10;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    overflow-y: auto; }
  .header-nav.show {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .header-menu > * {
    width: 100%; }
  .menu-link-main {
    padding: 12px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .header-menu > .nav-item .menu-link-main {
    border-top: 1px solid rgba(0, 0, 0, 0.15); }
  .menu-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0); }
  .menu-link.active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
  .menu-link > svg {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
  .menu-link.active > svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg); }
  .header-megamenu > * > .nav-item {
    padding: 0 15px 20px; }
  .header-submenu .nav-item.megamenu-links {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 12px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .nav-item > .header-submenu:not(.reset-submenu) {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out; }
  .header-submenu {
    background: inherit; }
  .header-nav-headings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px; }
  .header-nav-headings .svg-wrapper {
    color: #000;
    width: 44px;
    height: 44px;
    margin-right: -10px; }
  .menu-link * {
    pointer-events: none; }
  .header-megamenu .nav-item .menu-link > .heading {
    width: 100%; } }



.theme-modal {
  --modal-header-height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-background);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 9; }

.theme-modal.show {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.theme-drawer {
  --padding-drawer: 24px;
  position: fixed;
  top: 0;
  background: var(--color-background);
  z-index: 10;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.drawer-additional {
  --color-background: rgba(242, 242, 242, 1);
  --color-foreground: rgba(32, 40, 45, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  --color-primary: rgba(32, 40, 45, 1);
  --color-primary-background: rgba(240, 237, 239, 0);
  --color-primary-hover: rgba(32, 40, 45, 1);
  --color-primary-background-hover: rgba(233, 233, 233, 1);
  background: var(--color-background); }

.drawer-headings {
  --color-border: rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: var(--padding-drawer, 15px);
  border-bottom: var(--style-border-width) solid var(--color-border); }

.drawer-content {
  padding: var(--padding-drawer, 15px); }

.drawer-content .drawer-heading {
  -webkit-margin-after: 10px;
  margin-block-end: 10px; }

.drawer-additional .drawer-content .drawer-heading {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
    font-weight: 600;
    position: relative;
    color: #000;
    font-size: 21px !important;
}

.drawer-additional .drawer-content .drawer-heading::after {
  content: "";
    display: block;
    width: 100px;
    height: 3px;
    background-color: #ec7634;
    margin-top: 8px;
}


.drawer-additional-menu .menu-link {
  padding: 5px 0;
  font-size: 20px; }

.drawer-additional-menu .menu-link:not(.no-hover):focus,
.drawer-additional-menu .menu-link:not(.no-hover):hover {
  opacity: 0.75; }

.drawer-additional-menu .menu-link svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  -webkit-margin-end: 7px;
  margin-inline-end: 7px; }

.drawer-block-contact {
  -webkit-margin-before: 80px;
  margin-block-start: 60px; }

.drawer-block-contact .menu-link {
  font-size: 18px; }

.theme-drawer[data-position="right"] {
  right: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.theme-drawer.show[data-position="right"],
.header-nav.show {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.modal-container {
  width: 100%;
  height: 100%;
  padding: 15px; }

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: var(--modal-header-height); }

.modal-header .svg-wrapper {
  width: 36px;
  height: 36px; }

.modal-header .svg-wrapper svg {
  width: 30px;
  height: 30px; }

.modal-main {
  width: 100%;
  height: calc(100% - var(--modal-header-height)); }


@media (min-width: 768px) {
  .modal-header .svg-wrapper {
    -webkit-margin-end: 5px;
    margin-inline-end: 5px; }
  .theme-drawer {
    max-width: 480px; }
  

@media (max-width: 991px) {
  
  .drawer-block {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; }
  .drawer-additional-menu .menu-link {
    font-size: 16px; } }


.hero-banner {
  --padding-block-start: 100px;
  --padding-block-bottom: 100px;
  min-height: 80vh;
  -webkit-padding-before: var(--padding-block-start);
  padding-block-start: var(--padding-block-start);
  -webkit-padding-after: var(--padding-block-bottom);
  padding-block-end: var(--padding-block-bottom);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  overflow: hidden; }

.hero-banner-2 {
  --color-secondary-button-border: rgba(32, 40, 45, 1);
  overflow: hidden; }

.hero-banner-2 .section-headings-left {
  max-width: 560px; }

.hero-banner-2 .text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 6px; }

.hero-banner-2 .text-wrapper .heading {
  line-height: 0.9; }

.hero-banner-2 .buttons {
  margin-top: 40px; }

.hero-banner.with-floating-header {
  --padding-block-start: calc(var(--header-height) + 60px + 60px);
  --padding-block-bottom: calc(var(--header-height)); }

.hero-banner-2.with-floating-header {
  --padding-block-start: calc(var(--header-height) + 60px);
  --padding-block-bottom: 0;
  -webkit-padding-before: var(--padding-block-start);
  padding-block-start: var(--padding-block-start);
  -webkit-padding-after: var(--padding-block-bottom);
  padding-block-end: var(--padding-block-bottom); }

.hero-banner .content > .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px; }

.hero-phone-call {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-foreground); }

.hero-phone-call svg {
  min-width: 44px;
  height: 44px; }

.banner-slider {
  display: block;
  position: relative; }

.hero-banner .main-img {
  position: relative;
  border-radius: 10px; }

.thumb-slider {
  -webkit-padding-start: 12%;
  padding-inline-start: 12%;
  -webkit-padding-end: 12%;
  padding-inline-end: 12%;
  position: relative;
  -webkit-margin-before: -12%;
  margin-block-start: -12%;
  z-index: 2; }

.hero-banner .thumb-img {
  border-radius: 10px;
  overflow: hidden; }

.hero-banner .thumb-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer; }

.hero-banner .swiper-slide-thumb-active .thumb-img:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-overlay);
  border-radius: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.hero-banner .thumb-img,
.hero-banner .main-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%; }

.hero-banner .main-img img {
  -webkit-mask-image: url(../img/subtract.png);
  background-image: url(../img/subtract.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%; 
  /* height: 430px !important; */
}

.hero-banner.who-we-are .main-img img {
  -webkit-mask-image: url(../img/subtract-2.png);
  background-image: url(../img/subtract-2.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%; }

.hero-banner .banner-badge {
  position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 22%;
    /* height: 24%; */
    border-radius: 100%;
    background: #fff;}

.hero-banner.who-we-are .banner-badge {
  left: auto;
  right: 0; }

.hero-banner .banner-badge img {
  border-radius: inherit; }
.thumb-slider .swiper-button-next,
.thumb-slider .swiper-button-prev {
  color: #000;
}

.thumb-slider {
  position: relative;
}
.swiper-button-next,
.swiper-button-prev {
  z-index: 99;
}
.swiper-button-prev:after{
    display: none;
}
.swiper-button-next:after{
    display: none;
}
.hero-banner .swiper-button-prev,
.hero-banner .swiper-button-next {
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  color: var(--swiper-navigation-color);
  background: var(--swiper-navigation-background-color);
  border-radius: 100%;
  z-index: 9;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.hero-banner .swiper-button-prev:focus,
.hero-banner .swiper-button-prev:hover,
.hero-banner .swiper-button-next:focus,
.hero-banner .swiper-button-next:hover {
  color: var(--swiper-navigation-hover-color);
  background-color: #fff; }

.hero-banner .swiper-button-prev svg,
.hero-banner .swiper-button-next svg {
  width: 16px;
  height: 16px; }

.hero-banner .swiper-button-prev {
  left: 8.5%;
  right: auto; }

.hero-banner .swiper-button-next {
  right: 8.5%;
  left: auto; }

.with-fixed-bg .slider-card {
  height: 100vh;
  min-height: inherit; }

.with-fixed-bg .slider-media {
  -webkit-clip-path: inset(0);
  clip-path: inset(0); }

.with-fixed-bg .slider-media img {
  position: fixed; }

.text-banner {
  --color-background: rgba(28, 37, 57, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-foreground-subheading: rgba(255, 255, 255, 1);
  --color-secondary-button-hover-border: rgb(255, 255, 255, 0.3); }

.text-banner-inner {
  --padding: 60px;
  background-color: #030548;
  padding: var(--padding); }

/*.text-banner .section-headings .text {
  max-width: 800px; }*/

.hero-banner-2 .banner-wrapper {
  position: relative;
  min-height: 720px; }

.hero-banner-2 .banner-wrapper-100vh {
  position: relative;
  min-height: inherit; }

.hero-banner-2 .running-content .content-inner {
  padding: 20px 0; }

.hero-banner-2 .content-absolute {
  z-index: 1; }

.hero-banner .counter-up {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.hero-banner .counter-up .heading + .text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px; }

.hero-banner.who-we-are {
  padding: 0;
  min-height: auto;
  padding-top: 12px; }

.hero-banner-2.about-us-2 .content-box {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-border: rgba(255, 255, 255, 0.4);
  width: 100%;
  padding: 40px; }

.hero-banner-2.about-us-2 .content-box .section-headings {
  border-top: 1px solid var(--color-border);
  padding-top: 40px;
  margin-top: 40px; }

.hero-slider.height-auto {
  min-height: auto; }

@media (min-width: 992px) {
  .hero-banner.who-we-are .row {
    --bs-gutter-x: 40px; } }

@media (max-width: 1199px) {
  .has-large-text .image-logo {
    height: 96px;
    width: 96px; } }

@media (max-width: 991px) {
  .banner-slider {
    -webkit-margin-before: 50px;
    margin-block-start: 50px; }
  .hero-banner-2 .section-headings-horizontal {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px; }
  .hero-banner-2 .section-headings-left {
    max-width: 100%; } }

@media (max-width: 767px) {
  .hero-banner {
    --padding-block-start: 60px;
    --padding-block-bottom: 60px; }
  .text-banner-inner {
    --padding: 40px 15px; }
  .hero-banner.with-floating-header {
    --padding-block-start: calc(var(--header-height) + 40px); }
  .hero-banner .swiper-button-prev,
  .hero-banner .swiper-button-next {
    --swiper-navigation-size: 36px; }
  .hero-banner .swiper-button-prev svg,
  .hero-banner .swiper-button-next svg {
    width: 14px;
    height: 14px; }
  .hero-banner .content > .buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .hero-banner-2 .buttons {
    margin-top: 30px; }
  .has-large-text .image-logo {
    height: 60px;
    width: 60px; }
  .running-content.has-large-text .content-item,
  .running-content.has-large-text .content-lists {
    gap: 32px; }
  .hero-banner.who-we-are .text-abs {
    font-size: 36px; }
  .hero-banner-2.about-us-2 .content-box {
    padding: 40px 0; }
  .hero-banner-2.about-us-2 .content-box .section-headings {
    padding-top: 32px;
    margin-top: 32px; } }

.running-content .content-inner {
  overflow: hidden;
  background-color: var(--color-background, rgba(255, 255, 255, 0)); }

.running-content-bg {
  --color-background: rgba(28, 37, 57, 0.1); }

.running-content .logos-background {
  background-image: -webkit-gradient(linear, left top, right top, from(#e1e2ee), color-stop(15%, #1c253900), to(#e3e1ee));
  background-image: -webkit-linear-gradient(left, #e1e2ee, #1c253900 15% 85%, #e3e1ee);
  background-image: -o-linear-gradient(left, #e1e2ee, #1c253900 15% 85%, #e3e1ee);
  background-image: linear-gradient(90deg, #e1e2ee, #1c253900 15% 85%, #e3e1ee);
  inset: 0%; }

.running-content .content-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  white-space: nowrap;
  gap: 80px; }

.running-content .content-lists:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused; }

.running-content .content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  gap: 80px; }

.running-content .content-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-decoration: none; }

.running-animation {
  will-change: transform;
  -webkit-animation: scroll 20s linear infinite;
  animation: scroll 20s linear infinite; }

.running-content .content-link img {
  -o-object-fit: contain;
  object-fit: contain; }

.running-content.has-large-text .image-logo {
  width: 80px;
  height: auto; }

.brand {
  position: relative; }

.brand-bg {
  background: #e7e7e7; }

.brand-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.brand-logo img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content; }

.brand .product-grid {
  row-gap: 40px; }

.running-content.has-bg .content-lists,
.running-content.has-bg {
  --color-background: rgba(28, 37, 57, 1);
  background: var(--color-background); }

.running-content.has-bg .heading {
  --color-foreground-heading: rgba(255, 255, 255, 1); }

@-webkit-keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@keyframes scroll {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

@media (max-width: 991px) {
  .running-content .content-item,
  .running-content .content-lists {
    gap: 60px; } }

@media (max-width: 767px) {
  .running-content .content-item,
  .running-content .content-lists {
    gap: 48px; }
  .running-animation {
    -webkit-animation: scroll 5s linear infinite;
    animation: scroll 5s linear infinite; }
  .running-content.has-large-text .image-logo {
    width: 60px; } }

.choose-bottom-cards .heading {
          font-size: 15px;
        line-height: 1.3;
}
.text-20 {
    font-size: 15px;
    line-height: 1.3;
            font-family: Inter;
}
.text-25 {
    font-size: 25px;
    line-height: 1.3;
            font-family: Inter;
}
.text-30 {
    font-size: 30px;
    line-height: 1.3;
            font-family: Inter;
}
.subheading-bg {
    background-color: var(--color-background-subheading);
    letter-spacing: normal;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px 20px;
    border-radius: 40px;
    border: 1px solid var(--color-border-subheading-bg);
    gap: 5px;
}
.subheading {
    color: #f06c2e;
    font-weight: 500;
    font-family: var(--font-heading--family);
    font-style: normal;
    letter-spacing: normal;
}.icon-14 {
    min-width: 14px;
    height: 14px;
}
svg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
}.fw-700 {
    font-weight: 700;
}
.text-80 {
    font-size: 60px;
    line-height: 1.17;
}

h2, .h2 {
    font-size: var(--font-h2--size);
    line-height: 1;
}
p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    margin: 0;
    padding: 0;
}.decorated-text {
  position: relative;
  display: inline-block;
  padding: 6px 12px;
  outline: 1.5px solid var(--color-foreground-heading);
  outline-offset: -9px; }

.decorated-text::before,
.decorated-text::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-foreground-heading); }

.decorated-text::before {
  top: 0;
  left: 0; }

.decorated-text::after {
  bottom: 0;
  right: 0; }

.decorated-text span::before,
.decorated-text span::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-foreground-heading); }

.decorated-text span::before {
  top: 0;
  right: 0; }

.decorated-text span::after {
  bottom: 0;
  left: 0; }
.orange{color:#b87154}
  .text-181
 {        font-size: 15px;
        line-height: 28px;
        color: #000000; }
.text-18

 { 
        line-height: 30px;
                margin-bottom: 7px;
        /*color: #f5741d;*/
        /*font-weight: bold;*/
}.section-headings:not(.section-headings-horizontal) .buttons {
    -webkit-margin-before: 20px;
    margin-block-start: 20px;
}.list-block .text-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /*max-width: 225px;*/
  margin: 0; }

.list-block .text-item svg {
  min-width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.list-block .title {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.list-block .text {
  -webkit-margin-before: 20px;
  margin-block-start: 20px; }

.list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px; }

.list-block .text-item {
  -webkit-margin-before: 0;
  margin-block-start: 0; }

.image-small {
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
  -webkit-box-shadow: 0px 30px 90px 0px #041f1f4d;
  box-shadow: 0px 30px 90px 0px #041f1f4d; }

.image-small img {
  border-radius: inherit; }
.text-50 {
    font-size: 45px;
    line-height: 1.2;
}.fw-600 {
    font-weight: 600;
}
.text-22 {
    font-size: 19px !important;
    line-height: 1.3;
}.section-headings .promotion-lists, .section-headings .text-lists, .section-headings .list-block, .section-headings .heading + .text {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}.image-text .media-wrap img {
    -o-object-fit: contain;
    object-fit: contain;
}

.image-small img {
    border-radius: inherit;
}
iframe {
    width: 100%;
    /*height: auto;*/
}
img, picture, video, canvas, iframe {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    aspect-ratio: attr(width) / attr(height);
}

.our-services {
  --color-background: rgba(32, 40, 45, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-foreground-subheading: rgba(242, 242, 242, 1);
  --color-background-subheading: rgba(255, 255, 255, 0);
  --color-border-subheading-bg: rgba(255, 255, 255, 0.3);
  --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
  background: var(--color-background);
  overflow: hidden; }

.our-services-2 {
  --color-background: rgba(228, 226, 239, 0);
  --color-foreground: rgba(28, 37, 57, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  --color-foreground-subheading: rgba(93, 102, 111, 1);
  --color-background-subheading: rgba(255, 255, 255, 0.1);
  --color-border-subheading-bg: rgba(32, 40, 45, 0.1); }

.our-services-2 .multicolumn .multicolumn-card:not(:focus):not(:hover) {
  --color-background: rgba(242, 242, 242, 1); }

.our-services .service-list {
  --color-background: #b76848;
  --color-primary-button-background: rgb(255, 255, 255, 0);
  --color-primary-button-border: rgba(255, 255, 255, 1);
  background: #ffe5da;
  padding: 40px 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.our-services .service-content-inner .button {
  padding: 10px;
  min-height: 44px;
  font-size: 16px;
  -webkit-margin-before: 80px;
  margin-block-start: 80px; }
.service-content-inner p{
  color: #fff;
}
.our-services .service-content-inner .heading {
  -webkit-margin-before: 50px;
  margin-block-start: 50px; }

.our-services .service-content-inner .heading + .text {
  -webkit-margin-before: 24px;
  margin-block-start: 24px; }

.service-list .accordion-li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }

.service-list .accordion-li svg {
  --size: 70px;
  width: var(--size);
  min-width: var(--size);
  height: var(--size); }

.service-list .accordion-li .icon {
  --size: 44px;
  color: var(--color-foreground);
  width: var(--size);
  min-width: var(--size);
  height: var(--size); }

.service-list .accordion-li .accordion-title-icon,
.service-list .accordion-li .accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px; }

.service-list .accordion-content {
  --padding: 36px;
  padding: 0 var(--padding); }

.service-list .accordion-li .icon + .icon {
  display: none; }

.service-slider .swiper {
  overflow: visible; }

.service-slider .card-service {
  display: block;
  text-decoration: none; }

.service-slider .card-service img {
  height: 440px;
  -o-object-fit: cover;
  object-fit: cover; }

.service-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: rgb(39, 61, 109); }

.card-service-content {
  --color-background: rgba(255, 255, 255, 0.8);
  --color-foreground: rgba(28, 37, 57, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  background: var(--color-background);
  padding: 32px 24px;
  border-radius: 18px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.card-service-content .card-working-process .has-border {
  --color-border: rgba(255, 255, 255, 0.2); }

.our-services-3 .card-working-process .has-border {
  border-bottom: none;
  -webkit-padding-after: 0;
  padding-block-end: 0; }

.card-service-content .svg-wrapper svg {
  --color-icon: rgba(28, 37, 57, 1);
  color: var(--color-icon); }

.card-service-content-absolute {
  position: absolute;
  bottom: 0;
  left: auto;
  padding: 40px;
  width: 100%; }

.service-slider .card-service:hover .card-service-content {
  --color-background: rgba(28, 37, 57, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-icon: rgba(255, 255, 255, 1); }

.service-slider .card-service:hover .card-service-content .svg-wrapper svg {
  --color-icon: rgba(255, 255, 255, 1); }

.service-content-left .card-icon {
  --color-foreground: rgba(28, 37, 57, 1);
  --color-background: rgba(255, 255, 255, 1);
  width: 50px;
  height: 50px;
  color: var(--color-foreground);
  background-color: var(--color-background);
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.service-content-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 60px 16px;
  height: 100%; }

.service-content-left .headings-width {
  max-width: 790px; }

.service-content-image img {
  height: inherit;
  -o-object-fit: cover;
  object-fit: cover; }

.our-services .service-content-left .service-list {
  background: transparent;
  overflow: hidden;
  padding: 60px 0 48px; }

.service-content-left .multicolumn-card > .card-icon + .heading {
  -webkit-margin-before: 20px;
  margin-block-start: 20px; }

.service-content-left .section-headings .heading + .text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px; }

.service-content-left .service-list .product-grid {
  row-gap: 50px; }

.our-services-3 .card-working-process {
  --color-border: rgba(93, 102, 111, 0.3);
  border: 1px solid var(--color-border);
  padding: 30px 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 4px; }

.our-services-3 .card-working-process:hover {
  --shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  -webkit-box-shadow: var(--shadow);
  box-shadow: var(--shadow); }

.our-services-3 .card-working-process .svg-wrapper {
  color: var(--color-foreground-heading); }

.image-card-service .card-service-content {
  -webkit-transition: unset;
  -o-transition: unset;
  transition: unset;
  padding: 24px; }

.image-card-service .card-icon-text {
  display: none;
  -webkit-margin-before: 0;
  margin-block-start: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.image-card-service:hover .card-icon-text {
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.image-card-service:hover .card-working-process {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 20px; }

.image-card-service:hover .card-service-content {
  --color-background: rgba(255, 255, 255, 0.8);
  --color-foreground: rgba(28, 37, 57, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  background: var(--color-background);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px); }

/*@media (min-width: 992px) {*/
  .service-list .service-content-inner {
    max-width: 360px;
    min-width: 360px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .service-list .accordion-content {
    height: 100%;
    max-height: unset; }
  .our-services .accordion-li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row; }
  .our-services .service-list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /* overflow-x: auto; */
   }
  .service-list .accordion-li .accordion-title-icon,
  .service-list .accordion-li .accordion-title {
    gap: 20px;
    padding: 0 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%; }
  .service-list .accordion-li .accordion-title-icon {
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .service-list .accordion-li:first-child .accordion-title {
    -webkit-padding-start: 0;
    padding-inline-start: 0; }
  .service-list .accordion-li:last-child .accordion-title {
    -webkit-padding-end: 0;
    padding-inline-end: 0; }
  .service-list .accordion-li.active .accordion-title {
    display: none; }
  .service-list .accordion-li:not(:first-child) {
    border-left: var(--style-border-width) solid var(--color-border); }
  .service-list .accordion-li:first-child .accordion-content {
    -webkit-padding-start: 0;
    padding-inline-start: 0; }
  .service-list .accordion-li:last-child .accordion-content {
    -webkit-padding-end: 0;
    padding-inline-end: 0; }
  .service-list .text-rotate {
    text-orientation: mixed;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    max-height: 240px; }
  .accordion-content.single-service {
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content; } }

@media (max-width: 991px) {
  .service-list .accordion-li {
    width: 100%; }
  .service-list .accordion-content {
    --padding: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.3s ease-in-out;
    -o-transition: max-height 0.3s ease-in-out;
    transition: max-height 0.3s ease-in-out; }
  .service-list .accordion-li.active .icon {
    display: none; }
  .service-list .accordion-li.active .icon + .icon {
    display: block; }
  .service-list .accordion-li svg {
    --size: 60px; }
  .service-list .accordion-li .icon {
    --size: 36px; }
  .our-services .service-content-inner .button {
    -webkit-margin-before: 35px;
    margin-block-start: 35px; }
  .our-services .service-content-inner svg,
  .our-services .service-content-inner .heading {
    display: none; }
  .service-list .accordion-li {
    --padding: 24px; }
  .service-list .accordion-li .accordion-title {
    --padding: 24px;
    padding: var(--padding) 0;
           border-top: 1px solid #b8715473;}
  .service-list .accordion-li:first-child .accordion-title {
    -webkit-padding-before: 0;
    padding-block-start: 0;
    border-top: none; }
  .service-content-inner {
    --padding: 24px;
    -webkit-padding-after: var(--padding);
    padding-block-end: var(--padding); }
  .our-services .service-content-inner .heading + .text {
    -webkit-margin-before: 0;
    margin-block-start: 0;color: #fff; }
  .our-services .service-list {
    -webkit-padding-after: 12px;
    padding-block-end: 12px; }
  .card-service-content-absolute {
    padding: 24px; }
  .card-service-content {
    padding: 24px 16px; }
  .service-content-left .headings-width {
    max-width: 100%; }
  .service-content-left .service-list .product-grid {
    row-gap: 30px; } }

@media (max-width: 767px) {
  .our-services .service-list {
    padding: 30px 15px; }
  .service-list .accordion-li svg {
    --size: 50px; }
  .service-list .accordion-li .icon {
    --size: 30px; }
  .our-services .accordion-title-icon .heading {
    font-size: 20px; }
  .our-services .service-list {
    -webkit-padding-after: 6px;
    padding-block-end: 6px; }
  .card-service-content-absolute {
    padding: 16px; }
  .our-services .section-headings-horizontal .buttons {
    -webkit-margin-before: 10px;
    margin-block-start: 10px; } }

.secvice-categories > li + li {
  -webkit-margin-before: 14px;
  margin-block-start: 14px; }

.secvice-category {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 8px;
  padding: 10px 20px; }

.secvice-category svg {
  --size: 18px;
  width: var(--size);
  height: var(--size);
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px); }

.secvice-category.active svg,
.secvice-category:focus svg,
.secvice-category:hover svg {
  opacity: 1;
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px); }

.service-contact {
  position: relative; }

.sidebar-widget.service-contact {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-overlay: rgba(28, 37, 57, 0.8);
  --padding: 60px 36px;
  text-align: center; }

.sidebar-widget.service-contact .contact-text {
  -webkit-margin-before: 30px;
  margin-block-start: 30px; }

.sidebar-widget.service-contact .contact-number {
  display: inline-block;
  -webkit-margin-before: 24px;
  margin-block-start: 24px; }

.service-sidebar .icon-contact {
  --color-background: rgba(255, 255, 255, 1);
  min-width: 80px;
  height: 80px;
  background: var(--color-background);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-margin-before: 36px;
  margin-block-start: 36px; }

.service-sidebar .icon-contact svg {
  min-width: 42px;
  height: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.service-download .service-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  -webkit-margin-before: 24px;
  margin-block-start: 24px; }

.service-download .download-button {
  -webkit-margin-before: 24px;
  margin-block-start: 24px;
  display: block;
  text-underline-offset: 4px; }

.service-details-content > .service-choose-us,
.service-details-content > p.text,
.service-details-content > .heading {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.service-details-content .choose-us-desc > .text-lists,
.service-details-content .choose-us-desc > .heading + .text {
  -webkit-margin-before: 30px;
  margin-block-start: 30px; }

.service-details-content .choose-us-desc .text-lists .text-item svg {
  --size: 24px;
  min-width: var(--size);
  width: var(--size);
  height: var(--size); }

.service-details-content .choose-us-desc .text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px; }

.service-details-content .choose-us-desc > .text-item + .text-item {
  -webkit-margin-before: 18px;
  margin-block-start: 18px; }

.service-details-content .choose-us-img {
  height: 100%; }

.service-details-content .choose-us-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%; }

.service-details-content .service-row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.service-details-content .service-row > * {
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch; }

.service-details-content .choose-us-desc {
  -webkit-padding-start: 24px;
  padding-inline-start: 24px; }

.service-faq {
  -webkit-margin-before: 40px;
  margin-block-start: 40px;
  display: block; }

.service-faq > div + div {
  -webkit-margin-before: 30px;
  margin-block-start: 30px; }

.service-faq .accordion-block .accordion-opener svg {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.service-faq .accordion-block.active .accordion-opener svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.service-faq .accordion-block.active .accordion-opener {
  --color-background: rgba(242, 242, 242, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1); }

.service-contact-content a {
  text-decoration: none; }

.section-headings-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}.headings-width, .section-headings-left {
    max-width: 645px;
}.section-content {
    display: block;
    -webkit-margin-before: 60px;
    margin-block-start: 60px;
}.service-list .accordion-li svg {
    --size: 70px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
}
.service-list .accordion-li .accordion-title-icon, .service-list .accordion-li .accordion-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.accordion-title * {
    pointer-events: none;
}
.service-list .accordion-li .icon + .icon {
    display: none;
}
@media (max-width: 991px) {
    .accordion-title {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}.service-list .accordion-li .icon {
    --size: 74px;
    color: var(--color-foreground);
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    background: #c37f64;
    border-radius: 10px;
    padding: 10px;
}
.list-block .text-item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  /*max-width: 225px;*/
  margin: 0; }

.list-block .text-item svg {
  min-width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.list-block .title {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.list-block .text {
  -webkit-margin-before: 10px;
  margin-block-start: 10px; }

.list-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px; }

.list-block .text-item {
  -webkit-margin-before: 0;
  margin-block-start: 0; }

.image-small {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 2;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(60px);
  backdrop-filter: blur(60px);
  -webkit-box-shadow: 0px 30px 90px 0px #041f1f4d;
  box-shadow: 0px 30px 90px 0px #041f1f4d; }

.image-small img {
  border-radius: inherit; }
@media (max-width: 991px) {
    .banner-slider {
        -webkit-margin-before: 50px;
        margin-block-start: 50px;
    }
}
.banner-slider {
    display: block;
    position: relative;
}.hero-banner .banner-badge {
   position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 22%;
    /* height: 24%; */
    border-radius: 100%;
    background: #fff;
}.hero-banner .thumb-img, .hero-banner .main-img img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}
.hero-banner .thumb-img {
    border-radius: 10px;
    overflow: hidden;
}.hero-banner {
    --padding-block-start: 90px;
    --padding-block-bottom: 90px;
    min-height: 90vh;
    -webkit-padding-before: var(--padding-block-start);
    padding-block-start: var(--padding-block-start);
    -webkit-padding-after: var(--padding-block-bottom);
    padding-block-end: var(--padding-block-bottom);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}.hero-phone-call svg {
    min-width: 44px;
    height: 44px;
}.hero-phone-call {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-foreground);
}


.hero-banner .content > .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}

project-slider {
  display: block;
  overflow: hidden; }

project-slider .swiper-slide {
  height: auto; }

.card-project {
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  text-decoration: none;
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%; }

.card-project:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(28, 37, 57, 0)), to(#1c2539));
  background: -webkit-linear-gradient(top, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
  background: -o-linear-gradient(top, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
  background: linear-gradient(180deg, rgba(28, 37, 57, 0) 0%, #1c2539 100%);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  opacity: 0; }

.card-project:hover:after {
  opacity: 1; }

.card-project img {
  border-radius: inherit;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.card-project-content-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 1;
  padding: 35px; }

.card-project-content .heading + .text {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;    color: #fff; }

.card-project-content {
  opacity: 0;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }

.card-project:hover .card-project-content {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px); }

.icon-project-link {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s; }

.card-project:hover .icon-project-link {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.icon-project-link svg {
  --size: 52px;
  width: var(--size);
  height: var(--size); }

@media (max-width: 767px) {
  .card-project-content-absolute {
    padding: 24px; }
  .slider-container .swiper {
    overflow: visible; } }

.project-details-content {
  -webkit-margin-before: 60px;
  margin-block-start: 60px; }

.content-details-inner > .project-image-block,
.content-details-inner > .text {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.project-details-content .project-challenge {
  -webkit-margin-before: 60px;
  margin-block-start: 60px;
  max-width: 548px; }

.project-challenge .challenge-list {
  -webkit-margin-before: 34px;
  margin-block-start: 34px; }

.project-challenge .challenge-list > li + li {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.project-challenge .challenge-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 10px; }

.project-info-list {
  -webkit-margin-before: 30px;
  margin-block-start: 30px; }

.project-info-item {
  --color-border: rgba(28, 37, 57, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: dotted var(--style-border-width) var(--color-border);
  -webkit-margin-after: 40px;
  margin-block-end: 40px;
  -webkit-padding-after: 20px;
  padding-block-end: 20px; }

.project-info-item:last-child {
  -webkit-margin-after: 0;
  margin-block-end: 0; }

.project-info-item .info-data {
  text-align: end; }

.project-sidebar {
  -webkit-padding-start: 60px;
  padding-inline-start: 60px; }

.project-sidebar > div + div {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.project-sidebar .icon-contact {
  --color-background: rgba(255, 255, 255, 1);
  min-width: 80px;
  height: 80px;
  background: var(--color-background);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 100%;
  -webkit-margin-before: 36px;
  margin-block-start: 36px; }

@media (max-width: 1366px) {
  .project-sidebar {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px; } }

@media (max-width: 1199px) {
  .project-sidebar {
    -webkit-padding-start: 20px;
    padding-inline-start: 20px; } }

@media (max-width: 991px) {
  .project-sidebar {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    -webkit-padding-start: 0px;
    padding-inline-start: 0px; }
  .project-details-content .project-challenge {
    max-width: 100%; } }

@media (max-width: 767px) {
  .project-details-content {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; }
  .project-details-content .project-challenge {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; } }


    .headings-width {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    -webkit-margin-end: auto;
    margin-inline-end: auto;
}
.headings-width, .section-headings-left {
    max-width: 645px;
}.project-slider {
  width: 100%;
  padding-bottom: 40px;
}

.project-slider .swiper-slide {
  height: auto;
}

.card-project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Swiper Slider */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: none; }

.swiper:not(.swiper-initialized) {
  opacity: 0; }

.swiper-button-prev,
.swiper-button-next {
  color: var(--swiper-navigation-color);
  background-color: var(--swiper-navigation-background-color); }

.swiper-button-prev:focus,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-next:hover {
  color: var(--swiper-navigation-hover-color);
  background-color: var(--swiper-navigation-hover-background-color); }

.project-slider .swiper-nav-inner > * {
  --size: 44px;
  --color-border: rgba(28, 37, 57, 0);
  --style-border-width: 1px;
  position: static;
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  border: var(--style-border-width) solid var(--color-border);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin: 0; }

.swiper-nav-inner > *:focus,
.swiper-nav-inner > *:hover {
  --color-border: rgba(28, 37, 57, 1); }

.project-slider .swiper-nav-inner svg {
  width: 14px !important;
  height: 14px !important; }

.swiper-nav-border {
  --margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-margin-before: var(--margin-top);
  margin-block-start: var(--margin-top);
  position: relative; }



.swiper-nav-border:after {
  --color-border: rgba(93, 102, 111, 1);
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 1px;
  background: var(--color-border);
  width: 90%; }

@media (max-width: 767px) {
  .swiper-nav-border {
    --margin-top: 40px; }
  .swiper-nav-inner > * {
    --size: 36px; }
  .swiper-nav-inner {
    gap: 16px; } }

.swiper-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 0 20px;
}
.swiper-button-prev,
.swiper-button-next {
  pointer-events: auto;
  z-index: 10;
}
.thumb-slider .swiper-button-prev,
.thumb-slider .swiper-button-next {
  cursor: pointer;
  z-index: 10;
}
.why-choose-us {
  --color-background: rgba(242, 242, 242, 1);
  --color-foreground: rgba(93, 102, 111, 1);
  --color-foreground-heading: rgba(28, 37, 57, 1);
  --color-foreground-subheading: rgba(93, 102, 111, 1);
  --color-background-subheading: rgba(255, 255, 255, 0);
  --color-border-subheading-bg: rgba(93, 102, 111, 0.3);
  overflow: hidden;
  background-color: var(--color-background);
  position: relative; }

.choose-media {
  height: 100%; }

.choose-media img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.choose-logo {
  -webkit-margin-before: 50px;
  margin-block-start: 50px; }

.choose-rotating-logo {
  position: relative; }

.text-abs {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 48px;
  font-weight: 700; }

.choose-rotating-logo.svg-wrapper {
  --size: 170px;
  min-width: var(--size);
  width: var(--size);
  height: var(--size); }

.choose-bottom {
  --margin-block-start: 60px;
  -webkit-margin-before: var(--margin-block-start);
  margin-block-start: var(--margin-block-start);
  position: relative; }

.choose-bottom-cards > * {
  row-gap: 24px; }

@media (min-width: 768px) {
  .choose-bottom {
    --offset: 300px; }
  .choose-bottom-cards {
    -webkit-margin-end: var(--offset);
    margin-inline-end: var(--offset);
    -webkit-padding-end: 15px;
    padding-inline-end: 15px; }
  .choose-media-absolute {
    position: absolute;
    bottom: 0;
    right: 0;
    width: var(--offset); } }

@media (min-width: 1280px) {
  .choose-us-content {
    -webkit-padding-start: 40px;
    padding-inline-start: 40px; } }

@media (max-width: 991px) {
  .choose-top > * {
    row-gap: 40px; }
  .choose-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; display: none;} 

.faq .section-headings {
    -webkit-padding-end: 0 !important;
    padding-inline-end: 0 !important;
 
}
  }

@media (max-width: 767px) {
  .choose-bottom {
    --margin-block-start: 40px; }
  .choose-media-absolute {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; } }
.testimonial {
  --color-background: rgba(242, 242, 242, 1);
  background-color: var(--color-background); }

.card-testimonial {
  --color-background: rgba(255, 255, 255, 1);
  background-color: var(--color-background);
  padding: 40px; }

.testimonial-card-inner > div + div {
  -webkit-margin-before: 30px;
  margin-block-start: 30px; }

.card-testimonial .rating-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2px; }

.card-testimonial .rating-list .rating-icon svg[fill] {
  --color-background: rgba(236, 176, 20, 1);
  color: var(--color-background); }

.card-testimonial .rating-list + .text {
  -webkit-margin-before: 16px;
  margin-block-start: 16px; }

.card-testimonial .user-info-wrap {
  -webkit-margin-before: 32px;
  margin-block-start: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.card-testimonial .user-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px; }

.card-testimonial .user-img {
  --size: 80px;
  min-width: var(--size);
  width: var(--size);
  height: var(--size);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden; }

.card-testimonial .user-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%; }

.card-testimonial .user-info .user-desig {
  -webkit-margin-before: 7px;
  margin-block-start: 7px; }

.card-testimonial .icon-quote {
  --color-background: rgba(28, 37, 57, 1);
  color: var(--color-background); }

.testi-slider .card-testimonial {
  --color-background: rgba(242, 242, 242, 1); }

.testimonial-3 .section-headings {
  --color-background: rgba(50, 113, 124, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-subheading: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  background: var(--color-background);
  padding: 40px;
  border-radius: 18px;
  height: 100%; }

.testicolumn-slider {
  --color-background: rgba(28, 37, 57, 1);
  background: var(--color-background);
  padding: 40px;
  border-radius: 18px;
  display: block; }

.testicolumn-slider .card-testimonial {
  --color-background: rgba(28, 37, 57, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  padding: 0; }

.testicolumn-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-pagination-color: rgba(50, 113, 124, 1); }

.testimonial-4 .testicolumn-slider .card-testimonial,
.testimonial-4 .testicolumn-slider {
  --color-background: transparent; }

.testimonial-4 .testimonial-inner {
  --color-background: rgba(28, 37, 57, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  background: var(--color-background);
  padding: 40px 32px;
  border-radius: 18px;
  overflow: hidden; }

.testimonial-4 .heading-wrapper {
  --color-border-subheading-bg: rgba(32, 40, 45, 1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid var(--color-border);
  -webkit-padding-end: 32px;
  padding-inline-end: 32px; }

.testimonial-4 .heading-wrapper .subheading-bg {
  --color-background-subheading: rgba(255, 255, 255, 1); }

@media (max-width: 991px) {
  .card-testimonial {
    padding: 24px 15px; }
  .testimonial-card-inner {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; }
  .testicolumn-slider,
  .testimonial-3 .section-headings {
    padding: 32px 24px; } }

@media (max-width: 767px) {
  .card-testimonial .user-info {
    gap: 16px; }
  .card-testimonial .user-img {
    --size: 60px; }
  .card-testimonial .icon-quote svg {
    width: 36px;
    height: 36px;
    min-width: 36px; }
  .testicolumn-slider,
  .testimonial-3 .section-headings {
    padding: 24px 16px; } }

.testimonial-2 {
  position: relative; }

.testimonial-slider {
  display: block; }

.thumb-content {
  margin-top: 25px; }

.thumb-card > svg + .text {
  -webkit-margin-before: 12px;
  margin-block-start: 12px; }

.thumb-card .user-name {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.thumb-card .user-desig {
  -webkit-margin-before: 10px;
  margin-block-start: 10px;
  opacity: 0.75; }

.thumb-content-wrapper {
-webkit-padding-start: 80px;
    padding-inline-start: 80px;
   }

.testicolumn-slider .thumb-content-wrapper {
  padding: 40px;
  --color-background: rgba(28, 37, 57, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-foreground-subheading: rgba(255, 255, 255, 1);
  background: var(--color-background);
  color: #fff; }

.testimonial-2 .main-img {
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;*/
  z-index: 1;
  height: 100%; }

.testimonial-2 .main-img img {
  -o-object-fit: cover;
  object-fit: cover; }

.testimonial-2 .custom-bullet {
  width: 100px;
  height: 100px;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 !important; }

.testimonial-2 .custom-bullet img {
  -o-object-fit: cover;
  object-fit: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: auto;
  top: 50%;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -50px;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px; }

.testimonial-2 .swiper-pagination-bullet-active {
  --style-pagination-border-width: 2px;
  --pagination-item-active-border: rgba(32, 40, 45, 1);
  background: transparent;
  outline: var(--style-pagination-border-width) solid var(--pagination-item-active-border);
  outline-offset: 10px;
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s; }

.testimonial-2 .testicolumn-slider .swiper-pagination-bullet-active {
  --pagination-item-active-border: rgba(255, 255, 255, 0.6);
  outline-offset: 7px; }

.testimonial-2
.testicolumn-slider
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 24px;
  top: auto;
  left: 0;
  right: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none; }

.testimonial-2 .testicolumn-slider {
  --color-background: transparent;
  padding: 0; }

.testimonial-2 .testicolumn-slider .custom-bullet {
  width: 80px;
  height: 80px; }

@media (max-width: 1199px) {
  .thumb-content-wrapper {
    -webkit-padding-start: 60px;
    padding-inline-start: 60px; }
  .testimonial-4 .testicolumn-slider {
    padding: 24px; } }

@media (max-width: 991px) {
  .testimonial-slider {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; }
  .thumb-content-wrapper {
    -webkit-padding-start: 0;
    padding-inline-start: 0; }
  .testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -50px;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px; }
  .testimonial-2
.testicolumn-slider
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -48px; }
  .testicolumn-slider .thumb-content-wrapper {
    padding: 40px 24px; }
  .testicolumn-slider .thumb-content-wrapper .thumb-content {
    margin: 0; }
  .testimonial-4 .testicolumn-slider {
    padding: 0; }
  .testimonial-4 .heading-wrapper {
    border-right: none;
    -webkit-padding-end: 0;
    padding-inline-end: 0;
    border-bottom: 1px solid var(--color-border);
    -webkit-padding-after: 32px;
    padding-block-end: 32px; } }

@media (max-width: 767px) {
  .testimonial-2 .custom-bullet {
    width: 80px;
    height: 80px; }
  .testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -40px;
    gap: 20px; }
  .testimonial-2 .swiper-pagination-bullet-active {
    outline-offset: 7px; }
  .testimonial-2 .testicolumn-slider .custom-bullet {
    width: 60px;
    height: 60px; }
  .testimonial-2 .testicolumn-slider .swiper-pagination-bullet-active {
    outline-offset: 5px; }
  .testimonial-2
.testicolumn-slider
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -36px; }
  .testicolumn-slider .thumb-content-wrapper {
    padding: 40px 16px; }
  .testimonial-4 .testimonial-inner {
    padding: 24px 16px; } }

@media (max-width: 575px) {
  .testimonial-2 .custom-bullet {
    width: 60px;
    height: 60px; }
  .testimonial-2 .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -30px; }
  .testimonial-2 .testicolumn-slider .custom-bullet {
    width: 48px;
    height: 48px; } }

.testimonial.how-we-work {
  --color-background: transparent; }


.faq .section-headings {
  -webkit-padding-end: 100px;
  padding-inline-end: 100px;
  position: relative;
  height: 100%; }

.faq .accordion-list > div + div {
  -webkit-margin-before: 24px;
  margin-block-start: 24px; }

.faq .image-absolute {
  position: absolute;
  bottom: -85px;
  right: 25%; }

.faq-row > * {
  -ms-flex-item-align: start;
  align-self: flex-start; }

.faq-2 .section-headings-horizontal {
  padding: 0; }

.faq-2 .section-headings-right {
  min-width: auto;
  max-width: 530px; }

.faq-2 .accordion-block {
  --color-background: transparent;
  border-radius: 0; }

.faq-2 .accordion-opener .svg-wrapper {
  --color-background: transparent; }

.faq-2 .accordion-opener .svg-wrapper svg {
  --color-foreground: rgba(32, 40, 45, 1); }

.faq-2 .accordion-block.active .accordion-opener {
  --color-background: transparent;
  --color-foreground-heading: rgba(32, 40, 45, 1); }

.faq-2 .accordion-opener,
.faq-2 .accordion-block.active {
  --color-border: rgba(32, 40, 45, 0.2);
  border-bottom: 1px solid var(--color-border); }

.faq-2 .button.open-video {
  padding: 0;
  width: 70px;
  height: 70px;
  min-height: 70px; }

.faq-2 .accordion-list > div + div {
  -webkit-margin-before: 0;
  margin-block-start: 0; }

.faq-2 .accordion-opener {
  padding: 32px 20px; }

.faq-2 .video-wrap.section-headings-sticky {
  z-index: 1; }

.faq-2.faq-working-process .accordion-block.active .accordion-opener,
.faq-working-process {
  --color-background: rgba(32, 40, 45, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-foreground-subheading: rgba(255, 255, 255, 1);
  background: var(--color-background); }

.faq-2.faq-working-process
.accordion-block.active
.accordion-opener
.svg-wrapper,
.faq-2.faq-working-process .accordion-opener .svg-wrapper svg {
  --color-background: transparent;
  --color-foreground: rgba(255, 255, 255, 1);
  background: var(--color-background); }

.faq-2.faq-working-process .accordion-block {
  --color-border: rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid var(--color-border); }

.faq-2.faq-working-process .accordion-block.active .accordion-opener {
  --color-border: rgba(255, 255, 255, 0); }

.faq-2.faq-working-process .accordion-opener {
  padding: 32px 20px; }

.faq-2.faq-working-process .accordion-content-inner {
  padding: 0px 20px 32px; }
.accordion-block {
  --color-background: rgba(242, 242, 242, 1);
  border-radius: 10px;
  background-color: var(--color-background);
  overflow: hidden; }

.accordion-opener {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 32px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 20px;
  cursor: pointer; }

.accordion-block.active .accordion-opener {
  --color-background: rgba(28, 37, 57, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  background-color: var(--color-background);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;    color: #fff; }

.accordion-content {
  max-height: 0;
  -webkit-transition: max-height 0.3s ease-in-out;
  -o-transition: max-height 0.3s ease-in-out;
  transition: max-height 0.3s ease-in-out; }

.accordion-content-inner {
  padding: 24px 20px; }

.accordion-opener .svg-wrapper {
  --color-background: #301205;
  min-width: 30px;
  height: 30px;
  background-color: var(--color-background);
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.accordion-block.active .accordion-opener .svg-wrapper {
  --color-background: rgba(255, 255, 255, 1);
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.accordion-opener .svg-wrapper svg {
  --color-foreground: rgba(255, 255, 255, 1);
  color: var(--color-foreground); }

.accordion-block.active .accordion-opener .svg-wrapper svg {
  --color-foreground: rgba(32, 40, 45, 1);
  color: var(--color-foreground); }

@media (max-width: 767px) {
  .accordion-opener {
    gap: 24px;
    padding: 24px 15px; }
  .accordion-content-inner {
    padding: 24px 15px; } }
.accordion-block.active .accordion-opener {
    --color-background: #301205;
    --color-foreground-heading: rgba(255, 255, 255, 1);
    background-color: var(--color-background);
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}footer {
  --offset-contact-form: 300px; }

.footer-main {


  position: relative;
  overflow: hidden; }

.footer-logo {
  max-width: 188px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none; }

footer .social-link {
  background-color:transparent;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
    border: 1px solid #fff;
    font-size: 13px; }

footer .social-link:focus,
footer .social-link:hover {
 background-color: #ec6e37; }

.footer-widget-brand > .text {
    -webkit-margin-before: 24px;
    margin-block-start: 24px;
    color: #fff;
    line-height: 28px;
    font-weight: 400;
    /* font-size: 14px !important; */
}
/*.footer-widget-brand .social-icons {
  -webkit-margin-before: 44px;
  margin-block-start: 44px; }
*/
.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px; }

.footer-menu .link {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;        font-weight: 400;
    /* font-size: 14px !important;  */
line-height: 27px;

  }
.footer-policies li a{
  color: #fff !important;
}
.footer-menu .link:focus,
.footer-menu .link:hover {
  opacity: 0.75; }

.widget-heading {
    font-weight: 600;
    color: #a17967;
    font-size: 19px;
}

.widget-heading + * {
  -webkit-margin-before: 15px;
  margin-block-start: 15px; }

.footer-top {
      padding: 50px 0 30px;
      /* border-top: 5px solid #ec6e37;  */
    }

.footer-policies {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 12px 44px;     margin-right: 90px;}

.footer-bottom {
    background: #302725;
    padding: 10px 0 10px;
}
.footer-copyright{
  color: #fff !important;    font-size: 14px;
}
.footer-contact {
  position: relative;
  -webkit-padding-before: 100px;
  padding-block-start: 100px; }

.footer-contact .contact-box {
  -webkit-margin-after: calc(var(--offset-contact-form) * -1);
  margin-block-end: calc(var(--offset-contact-form) * -1); }

.footer-contact + .footer-main {
  -webkit-padding-before: var(--offset-contact-form);
  padding-block-start: var(--offset-contact-form); }

.footer-2 .footer-widget-menu {
  max-width: 359px; }

.footer-widget .sidebar-widget {
  --padding: 0;
  --color-background: transparent; }

.footer-widget .sidebar-widget .subheading-bg.active,
.footer-widget .sidebar-widget .subheading-bg:focus,
.footer-widget .sidebar-widget .subheading-bg:hover {
  --color-foreground-subheading: rgba(93, 102, 111, 1);
  --color-background-subheading: rgba(233, 233, 233, 1);
  --color-border-subheading-bg: rgba(233, 233, 233, 1); }

.footer-2 .social-link {
  background-color: #fff;
  color: #1c2539; }

.footer-2 .social-link:focus,
.footer-2 .social-link:hover {
  background-color: #e9e9e9; }

.logo-with-newsletter .footer-widget-brand .social-icons {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

footer .logo-with-newsletter .social-link {
  background-color: #fff;
  color: #1c2539; }

footer .logo-with-newsletter .social-link:hover {
  background-color: #d0c9c9; }

@media (min-width: 992px) {
  .footer-custom-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 380px auto auto auto;
    grid-template-columns: 380px auto auto auto;
    gap: 20px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .footer-custom-row > * {
    width: 100%;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content; } }

@media (min-width: 1601px) {
  .footer-custom-row {
    -ms-grid-columns: 465px auto auto auto;
    grid-template-columns: 465px auto auto auto; } }

@media (max-width: 1279px) {
  .footer-logo {
    max-width: 160px; } }

@media (max-width: 991px) {
  .footer-custom-row {
    row-gap: 48px; }
  .footer-top {
    padding: 80px 0; }
  .footer-contact {
    -webkit-padding-before: 80px;
    padding-block-start: 80px; } }

@media (max-width: 767px) {
  .footer-top {
    padding: 40px 0;
     }
  .footer-copyright {
    text-align: center; }
  .footer-policies {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px 30px; }
  .footer-bottom-row {
    gap: 24px; }
  .footer-widget-brand .social-icons {
    -webkit-margin-before: 30px;
    margin-block-start: 30px; }
  .footer-logo {
    max-width: 130px; }
  .footer-contact {
    -webkit-padding-before: 60px;
    padding-block-start: 60px; } }
.vertical-tab-wrapper {
  display: flex;
  width: max-content;
  margin-top: 20px;
}

.vertical-pills {
  /*width: 45%;*/
  border-right: 1px solid #eee;
  padding-right: 20px;
}
.vertical-pills .heading {
  font-size: 14px !important;
    line-height: 27px;
}
.vertical-pills .text  {
  font-size: 14px !important;
}.header-megamenu .nav-item .menu-link {
    padding: 7px 17px; 
    color: #000;
    font-size: 14px;
}
.header-megamenu .nav-item .list-unstyled .menu-link {
    padding: 7px 17px; 
    color: #000;
    font-size: 14px;
}
.header-grandmenu li a{
  color: #000 !important;
}
.vertical-pills .pill {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
    color: #000;
}

.vertical-pills .pill:hover,
.vertical-pills .pill.active {
  background: #f5f5f5;
  transform: translateX(6px);
}

.vertical-content {
  /*width: 55%;*/
  /*padding-left: 25px;*/
}
.vertical-content ul li a.heading{
color: #ec6e37 !important;
}
.submenu-lists .heading{
  font-size: 14px !important;
}
.header-grandmenu ul li a{
  font-size: 14px !important;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
  display: block;
}

.tab-pane img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.ftc-add {
    display: flex;
    gap: 20px;
}.tcal span {
   
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 50%;
    /* box-shadow: 0 10px 10px #0000005e; */
    background: transparent;
    width: 35px;
    height: 35px;
    border: 1px solid #fff;
}
.list-block1  .title {
  font-size: 22px;
  font-weight: 700 !important;
}
.ftc-add{
  margin-bottom:30px ;
}
.tcar p, .tcar p a {
    color: #fff;
  
    padding-top: 6px;
    line-height: 24px;
    font-weight: 400;
    /* font-size: 14px !important; */
}@media (max-width: 991px) {
  /* First-level submenu */
  .nav-item > .header-submenu:not(.reset-submenu) {
    max-height: 0;            /* start collapsed */
    overflow: hidden;         /* hide content when collapsed */
    transition: max-height 0.4s ease-in-out; /* smooth animation */
  }

  /* Nested submenu (grandmenu) */
  .header-grandmenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  /* Optional: active state for smoother open */
  .menu-accrodion.active + .header-submenu,
  .menu-accrodion.active + .header-grandmenu {
    /* JS will override inline max-height */
    /* Keep this in case you want a fallback */
  }
}
.service-list .accordion-li {
    width: 170px; /* default for all */
}

.service-list .accordion-li:first-child,
.service-list .accordion-li:last-child {
    width: 120px; /* first and last only */
}
.testimonial-slider .thumb-card .text{
  line-height: 28px;
}
.circle-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rotating animation */
.rotating-text {
  width: 100%;
  height: 100%;
  animation: rotate 12s linear infinite;
}

.rotating-text text {
  fill: #1c2539;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.share_get{
  display: none;
}
@media (max-width: 1024px) {
    .share_get.mob-view {
        background: #fff;
        padding: 12px 17px;
    }
}
@media (max-width: 991px) {
    .share_get.mob-view {
        bottom: 0;
        display: flex
;
        width: 100%;
        justify-content: space-between;
        left: 0;
        right: 0;
        position: fixed;
        z-index: 1001;
    }
    .share_get {
    bottom: 6.5%;
    gap: 10px;
    position: relative;
    right: unset;
    z-index: 99;
    width: fit-content;
    background: #fff;
    padding: 10px;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 3px 20px #00000029;
}
 button.share_fix_new_mob {
        background: no-repeat padding-box #f5f5f6;
        border: 1px solid #bcbdc0a6;
        border-radius: 4px;
        width: 31%;
        display: flex
;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
        .share_get.mob-view button.share_fix_new_mob a {
        display: flex
;
        border: none !important;
        color: #141919;
        width: 100%;
        padding: 6px;
        font-size: 14px;
        gap: 4px;
        justify-content: center;
        align-items: center;
    }
}
@media (max-width: 767px) {
    .share_get {
        border-radius: 0 !important;
    }
}
/* Center star */
.center-star {
  position: absolute;
  font-size: 50px;
  color: #301205;
}
.inqButtonDektop {
    position: fixed;
    bottom: 1rem;
       right: 68px;
    border-radius: 50px !important;
    padding: 10px 20px !important;
    z-index: 99;
    display: inline-flex;
    align-items: center;
    justify-content: center;
        color: #fff !important;font-size: 16px !important;
    font-family: 'Poppins' !important;
}
.inqButtonDektop  {
    user-select: none;
    -moz-user-select: none;
       background-color:#ec6e37 !important;
   
    transition: background .6s cubic-bezier(.55, 0, .1, 1), border .6s cubic-bezier(.55, 0, .1, 1);
}
.inqButtonDektop i {
    width: 25px;
    display: inline-flex;
    height: 25px;
    background: rgba(0,0,0,.7);
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 13px
}
.share_fix_new_mob img {
  width: 15px !important;
  height: 15px !important;
}

.pulseanimation {
    animation: pulse-cust 2s infinite
}

@-webkit-keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #BD9A68
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

@keyframes pulse-cust {
    0% {
        -webkit-box-shadow: 0 0 0 0 #BD9A68
    }

    70% {
        -webkit-box-shadow: 0 0 0 20px transparent
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 transparent
    }
}

.whatsapp-floating {
      border-radius: 100%;
    display: flex
;
    justify-content: center;
    font-size: 24px;
    position: fixed;
    background: #0cbf0c;
    width: 50px;
    height: 50px;
    align-items: center;
    color: #fff;
    z-index: 9;
    bottom: 1rem;
    right: 1rem;
    line-height: 1
}
.fixed-call-btn, .mobile-inqury {
    height: 50px;
    background: #fff;
    z-index: 9;
        border-radius: 100%;
    display: flex
;
    justify-content: center;
    font-size: 24px;
    position: fixed;
        width: 50px;
    align-items: center;
    color: #432745;
    animation: 2s infinite zoom-in-zoom-out;
    bottom: 1rem;
    left: 1rem;
    border: 1px solid #cecece;
    background: #BD9A68 ;
} .pc-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9;
}
 .pc-whatsapp a {
    display: inline-flex;
    width: 100%;
    background: #00a315c7;
    align-items: center;
    padding: 8px 4px 8px 11px;
    border-radius: 50px;
    color: #fff;
    gap: 6px;
    backdrop-filter: blur(1px);
}
.pc-whatsapp a i {
    font-size: 26px;
}
.pc-whatsapp a span {
    font-size: 14px;
    font-weight: 400;
    font-family: 'Helvetica';
    letter-spacing: 0.7px;
}
.pc-whatsapp a::before, 
    .pc-whatsapp a::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 2px solid #25d366;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }

    .pc-whatsapp a::after {
      animation-delay: 1s;
    }
    .btn4 {
    border: none;
    background: #503207;
    color: #111;
    padding: 10px 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 0;
    border-radius: 50px;
}
   .btn4:hover {
    background: #503207;
    transition: 0.5s;
}
.btn4::before, 
    .btn4::after {
      content: "";
      position: absolute;
      top: -5px;
      left: -5px;
      right: -5px;
      bottom: -5px;
      border: 1px solid #503207;
      border-radius: 50px;
      animation: ripple 2s linear infinite;
      opacity: 0;
    }
    @keyframes ripple {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      70% {
        transform: scale(1.3);
        opacity: 0;
      }
      100% {
        transform: scale(1.4);
        opacity: 0;
      }
    }


.btn5 {
    border: none;
    background: #503207;
    color: #111;
    padding: 10px 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 0;
    border-radius: 50px;
}
   .btn5:hover {
    background: #503207;
    transition: 0.5s;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 99;
}
.swiper-button-prev:after{
    display: none;
}
.swiper-button-next:after{
    display: none;
}
.hero-banner .swiper-button-prev,
.hero-banner .swiper-button-next {
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  color: var(--swiper-navigation-color);
  background: var(--swiper-navigation-background-color);
  border-radius: 100%;
  z-index: 9;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s; }

.hero-banner .swiper-button-prev:focus,
.hero-banner .swiper-button-prev:hover,
.hero-banner .swiper-button-next:focus,
.hero-banner .swiper-button-next:hover {
  color: var(--swiper-navigation-hover-color);
  background-color: #fff; }

.hero-banner .swiper-button-prev svg,
.hero-banner .swiper-button-next svg {
  width: 16px;
  height: 16px; }

.hero-banner .swiper-button-prev {
  left: 8.5%;
  right: auto; }

.hero-banner .swiper-button-next {
  right: 8.5%;
  left: auto; }


  .growth-section {
 /* padding: 60px 20px;
  background: linear-gradient(135deg, #f3f3f3, #dcdcdc);*/
  display: flex;
  justify-content: center;
}

.growth-card {
  background-image: url('../img/img-small.png');
      /*background: linear-gradient(145deg, #fff, #ec6e37);*/
  padding: 30px 30px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  text-align: left;
  background-size: cover;
}

.counter {
  font-size: 60px;
  font-weight: 700;
  margin: 0;
  color: #1e2a38;
  font-family: "Poppins", sans-serif;
}

.growth-text {
  font-size: 18px;
  color: #000;
  margin-top: 10px;
  line-height: 1.6;
}

.profile-group {
  margin-top: 30px;
  display: flex;
}

.profile-group img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -12px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.08);
}

.profile-group img:first-child {
  margin-left: 0;
}
.page-banner {
     position: relative;
    overflow: hidden;
    /* height: var(--height); */
    padding: 125px 0 30px;}

.page-banner-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 1;    padding-top: 10px;}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  -webkit-margin-before: 0px;
  margin-block-start: 0px; }

.breadcrumb svg {
  color: var(--color-foreground);
  width: 10px;
  height: 10px; }

.breadcrumb a {
  text-decoration: none;color: #000; font-weight:500 ;
    font-size: 13px;}

.breadcrumb a:not(.active),
.breadcrumb li svg {
  opacity: 0.75; }

@media (max-width: 767px) {
  .page-banner {
          --height: 240px;
        padding: 117px 0 30px; } }
.text-lists .text-item {
  --color-foreground: rgba(28, 37, 57, 1); }

.text-lists .text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 8px;     }

.text-lists .text-item svg {
  min-width: 28px;
  height: 28px; }


/*.text-lists .text-item i {
  min-width: 28px;
  height: 28px; }*/

.text-lists .text-item:not(:first-child) {
    -webkit-margin-before: 3px;
    margin-block-start: 3px;
}
  .multicolumn-card {
  --color-background: rgba(255, 255, 255, 1);--color-background: rgba(255, 255, 255, 1);
    background: rgb(24 26 84);
    padding: 30px;
    border-radius: 18px; }

.multicolumn-page .multicolumn-card {
  --color-background: rgba(242, 242, 242, 1); }

.multicolumn-card .card-icon {
  --color-background: rgba(242, 242, 242, 1); }

.multicolumn-page .multicolumn-card .card-icon {
  --color-background: rgba(255, 255, 255, 1); }

.multicolumn-header {
  text-align: center;
  max-width: 638px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto; }

.multi-col {
  -webkit-margin-before: 60px;
  margin-block-start: 60px; }

.multicolumn .multicolumn-card {
  padding: 36px;
  background-color: var(--color-background);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.multicolumn .multicolumn-card:focus,
.multicolumn .multicolumn-card:hover {
  --color-background: rgba(32, 40, 45, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1); }

.multicolumn .card-icon {
  width: 70px;
  height: 70px;
  color: var(--color-foreground);
  background-color: var(--color-background);
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.multicolumn .multicolumn-card:focus .card-icon,
.multicolumn .multicolumn-card:hover .card-icon {
  --color-foreground: rgba(32, 40, 45, 1);
  --color-background: rgba(255, 255, 255, 1); }

.multicolumn-card:focus .text-lists .text-item,
.multicolumn-card:hover .text-lists .text-item {
  --color-foreground: rgba(255, 255, 255, 1); }

.multicolumn-card > .card-icon + .heading {
  -webkit-margin-before: 44px;
  margin-block-start: 44px; }

.multicolumn-card > .text {
  -webkit-margin-before: 24px;
  margin-block-start: 24px; }

.multicolumn-card > .text-lists {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.multicolumn-card > .text-lists > li + li {
  -webkit-margin-before: 18px;
  margin-block-start: 18px; }

.multicolumn-card .text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;    align-items: self-start; }
.multicolumn-card .text-item {
    font-family: 'Inter';
   color: #000;
   line-height: 32px;
}
.multicolumn-card .text-item svg {
  min-width: 24px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 1279px) {
  .multicolumn .multicolumn-card {
    padding: 36px 24px; } }

@media (max-width: 991px) {
  .multi-col {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; } }

@media (max-width: 767px) {
  .multicolumn .multicolumn-card {
    padding: 24px 16px; }
  .multicolumn-card > .card-icon + .heading {
    -webkit-margin-before: 32px;
    margin-block-start: 32px; }
  .multicolumn.with-bg-color .multicolumn-inner {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; } }

    .section-headings-sticky {
 
    position: -webkit-sticky;
    position: sticky;
    top: var(--position, 0px);
}
.multicolumn-card h2 {
    position: relative;
    padding-bottom: 15px; /* space for line */
}

.multicolumn-card h2::after {
    content: "";
    position: absolute;
    left: 0;              /* change to center if needed */
    bottom: 0;
    width: 60px;          /* line width */
    height: 3px;          /* line thickness */
    background-color: #ec6e37; /* your color */
}.multicolumn-card {
   
    padding: 30px;
    border-radius: 18px;
    height: 100%;
}

.object-fit-cover {
    object-fit: cover;
}
.page-banner  h1{
  font-size: 40px;
}
.qms-img{
clip-path: shape(from 0 0,vline to 100%,curve to 4.17% calc(100% - 15.5px) with 2.78% calc(100% - 15px),curve to 6.94% calc(100% - 9px) with 5.56% calc(100% - 16px),curve to 9.72% calc(100% - 20px) with 8.33% calc(100% - 2px),curve to 12.5% calc(100% - 44px) with 11.11% calc(100% - 38px),curve to 15.28% calc(100% - 27.5px) with 13.89% calc(100% - 50px),curve to 18.06% calc(100% - 20.5px) with 16.67% calc(100% - 5px),curve to 20.83% calc(100% - 23.5px) with 19.44% calc(100% - 36px),curve to 23.61% calc(100% - 10.5px) with 22.22% calc(100% - 11px),curve to 26.39% calc(100% - 5.5px) with 25% calc(100% - 10px),curve to 29.17% calc(100% - 9.5px) with 27.78% calc(100% - 1px),curve to 31.94% calc(100% - 11.5px) with 30.56% calc(100% - 18px),curve to 34.72% calc(100% - 20px) with 33.33% calc(100% - 5px),curve to 37.5% calc(100% - 23px) with 36.11% calc(100% - 35px),curve to 40.28% calc(100% - 28px) with 38.89% calc(100% - 11px),curve to 43.06% calc(100% - 24.5px) with 41.67% calc(100% - 45px),curve to 45.83% calc(100% - 25.5px) with 44.44% calc(100% - 4px),curve to 48.61% calc(100% - 44.5px) with 47.22% calc(100% - 47px),curve to 51.39% calc(100% - 31px) with 50% calc(100% - 42px),curve to 54.17% calc(100% - 26.5px) with 52.78% calc(100% - 20px),curve to 56.94% calc(100% - 23.5px) with 55.56% calc(100% - 33px),curve to 59.72% calc(100% - 13.5px) with 58.33% calc(100% - 14px),curve to 62.5% calc(100% - 26.5px) with 61.11% calc(100% - 13px),curve to 65.28% calc(100% - 41px) with 63.89% calc(100% - 40px),curve to 68.06% calc(100% - 28.5px) with 66.67% calc(100% - 42px),curve to 70.83% calc(100% - 7.5px) with 69.44% calc(100% - 15px),curve to 73.61% calc(100% - 12.5px) with 72.22% calc(100% - 0px),curve to 76.39% calc(100% - 27.5px) with 75% calc(100% - 25px),curve to 79.17% calc(100% - 28px) with 77.78% calc(100% - 30px),curve to 81.94% calc(100% - 27px) with 80.56% calc(100% - 26px),curve to 84.72% calc(100% - 34px) with 83.33% calc(100% - 28px),curve to 87.5% calc(100% - 28px) with 86.11% calc(100% - 40px),curve to 90.28% calc(100% - 31px) with 88.89% calc(100% - 16px),curve to 93.06% calc(100% - 37px) with 91.67% calc(100% - 46px),curve to 95.83% calc(100% - 23.5px) with 94.44% calc(100% - 28px),curve to 100% 100% with 97.22% calc(100% - 19px),vline to 0, hline to 0);
border-radius: 20px;
}
.color-box{
    padding: 40px;
    background: #fff;
    height: 100%;
    border-radius: 30px;
    color: #000;
    border-top: 10px solid #ec6e37;
}
.color-box h2{
  padding-bottom:10px;
}
.color-box h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ec6e37;
}
.iso-consultation {
    padding: 90px 20px;
    /*background: #f9fafc;*/
    font-family: 'Segoe UI', sans-serif;
}

/*.container {
    max-width: 1200px;
    margin: auto;
}*/

.iso-header {
    text-align: center;
    margin-bottom: 60px;
}

.iso-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
}

.iso-header p {
    max-width: 850px;
    margin: auto;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.iso-grid {
   /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;*/
}

.iso-box {
 background: #ffffff;
     background: linear-gradient(135deg, #ec6e3736, #201e1d24);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
    transition: 0.3s ease;
    position: relative;
    height: 100%;
    /*border-top: 5px solid #ec6e37;*/
}

.iso-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.iso-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: cursive;
}

.iso-box h3 {
     font-size: 22px;
    margin-bottom: 15px;
    color: #1d3557;
    font-family: 'Inter';
    font-weight: 700;
}

.iso-box p {
      color: #000;
    font-size: 16px;
    font-family: 'Inter';
    line-height: 28px;
}

.iso-box ul {
    padding-left: 18px;
    margin: 0;
}

.iso-box ul li {
    margin-bottom: 6px;
    color: #000;
    font-size: 18px;
        font-family: 'Inter';
    line-height: 32px;
}

.iso-contact {
    text-align: center;
    margin-top: 60px;
}

.iso-contact a {
    display: inline-block;
    padding: 14px 35px;
    background: #1d3557;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.iso-contact a:hover {
    background: #ff3c00;
}
.iso-benefits-alt {
    padding: 100px 20px;
    background: #afafaf2b;
    font-family: 'Segoe UI', sans-serif;
}

.container {
    max-width: 1000px;
    margin: auto;
}

.benefits-title {
    text-align: center;
    margin-bottom: 70px;
}

.benefits-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 20px;
}

.benefits-title p {
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}

.benefits-list {
     display: flex;
    flex-direction: column;
    gap: 23px;
}

.benefit-item {
        border-left: 4px solid #ff5a2c;
    transition: 0.3s ease;
    background: #fff;
    padding: 26px;
    transition: 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item h3 {
 font-size: 22px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 700;
    font-family: 'Inter';
}

.benefit-item p {
      font-size: 16px;
    color: #000;
    line-height: 28px;
    font-family: 'Inter';
}

/* Highlight Important Benefits */
.benefit-item.highlight {
    border-left: 4px solid #1d3557;
}

.benefit-item.highlight h3 {
    color: #ff5a2c;
}

/* Responsive */
@media(max-width:768px){
    .benefits-title h2 {
        font-size: 28px;
    }
}
.iso-benefits-section {
    background: #f8f9fc;
}

.iso-benefit-box {
  background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
/*border-left: 10px solid #ec6e375e;
    border-right: 3px solid #ec6e375e;*/
}

.iso-benefit-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.iso-icon {
    min-width: 50px;
}
.iso-icon1 svg{
  fill: #000;
      fill: #000;
    width: 80px;
    height: 80px;
}
.iso-benefit-box h3{
         font-size: 22px;
    margin-bottom: 5px;
    color: #ec6e37;
    font-family: 'Inter';
    font-weight: 700;
}
.iso-benefit-box p{
      color: #000 !important;
    font-size: 14px;
    font-family: 'Inter';
    line-height: 28px;
}

.qmp-modern {
    background: #f9fbff;
}
    .text-banner-inner {
        --padding: 60px;
        background-color:#eee;
        padding: var(--padding);
    }    .subheading {
        color: #301205;
        font-weight: 500;
        font-family: var(--font-heading--family);
        font-style: normal;
        letter-spacing: normal;
    }
.feature-item {
   transition: all 0.3s ease;
    background: #ec6e37a6;
    color: #fff;
    padding: 20px;
    border-radius: 50px;
    font-family: 'Inter';
    border: 2px solid #fff;
}

.feature-icon {
    font-size: 28px;
    color: #ff5a2c;
    margin-bottom: 15px;
}

.feature-item h6 {
  font-weight: 600;
    font-size: 23px;
    /*background: #ec6e37;
    color: #fff;
    padding: 20px;
    border-radius: 50px;
    font-family: 'Inter';*/
}

.feature-item:hover .feature-icon {
    transform: scale(1.2);
    color: #000;
}
.text-lists li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.text-lists li a:hover {
    color: #f06c2e;
}

.text-lists li i {
    font-size: 21px;
    margin-right: 5px;
    color: #ec6e37;
        margin-top: 4px;
}
.image-text h3{
  padding-bottom: 14px;
}
.image-text h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ec6e37;
}
.industry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.industry-list li {
 background: #fff;
    padding: 18px 25px;
    /* border-radius: 50px; */
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter';
    box-shadow: 0px 3px 14px 0px rgba(0, 11, 40, 0.06);
     display: flex;
    align-items: center;     
    justify-content: center; 
    min-height: 100px;  
}

.industry-list li:hover {
    background: #f06c2e;
    color: #fff;
    transform: translateY(-4px);
}

/* Tablet */
@media (max-width: 991px) {
    .industry-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .industry-list {
        grid-template-columns: repeat(1, 1fr);
    }
}
.cro-tcp p {
    line-height: 28px;
    font-size: 17px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: #000;
}
.cro-tcp p b{
    color: #ec6e37;
}
.stf h5:before {
    background-color: #f8b000;
}
.sub-tt h5:before {
       content: "";
    position: absolute;
    width: 6px;
    height: 100%;
    background-color: #ec6e37;
    left: 0;
    top: 0;
    border-radius: 6px;
}
.sub-tt {
  position: relative;
}
.sub-tt h5 {
    padding-left: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 0;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #111;
    line-height: 30px;
}.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}

.accordion-block.active .accordion-content {
  /* do not set fixed height here */
}


.cnsl-ic .cab-l span {
    background: #F8C301;
    color: #111;
    box-shadow: 3px 3px 0px #F8C30157;
}
.position-sticky1{
  position: sticky;
    top: 0;
}

.cnsr-ic {
      background: #ec6e37;
    padding: 30px 30px;
    position: relative;
    z-index: 0;
    border-radius: 20px;
    border-top: 8px solid #ec6e37;
    position: sticky;
    top: 120px;
}

.cnsr-ic:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../../assets/img/bg5.png);
    top: 0;
    left: 0;
      border-radius: 20px;
    filter: brightness(0);
    z-index: -1;
    opacity: 0.18;
}
.cnsr-form .form-row {
    flex-wrap: wrap;
    gap: 0;
}
.form-control, .form-select {
    background-color: #fff !important;
    border: none !important;
    padding: 15px 20px !important;
    color: #fff !important;
    border-radius: 12px;
}
.form-group {
    width: 100%;
    margin-bottom: 16px;
}.mtbt h4 {
    color: #1F1A17;
}
.main-tt h4 {
    font-size: 42px;
    color: #000;
    line-height: 54px;
    font-weight: 400;
    letter-spacing: 0.4px;
    margin-bottom: 16px;
}
.btn1 {
    border: none;
    background: #F8C301;
    color: #111;
    padding: 5px 5px 5px 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 10px;
}

.btn1 span {
    background: #1F1A17;
    color: #fff;
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.btn2 {
    border: none;
    background: #1F1A17;
    color: #Fff;
    padding: 5px 5px 5px 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 10px;
}

.btn2 span {
      background: #ec6e37;
    color: #fff;
    width: 44px;
    height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.btn2:hover,
.btn1:hover {
      background: #1F1A17;
    transition: 0.5s;
    color: #ec6e37;
}

.btn2:hover span {
      background: #fff;
    transition: 0.5s;
    color: #ec6e37;
}

.btn1:hover span {
    background: #F8C301;
    transition: 0.5s;
    color: #1F1A17;
}
::placeholder{
  color: #000 !important;
}

form textarea,
form input {
  width: 100%;
  padding: 0 15px;
  min-height: 54px; }

form textarea {
  padding: 20px 15px; }

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px; }

.form > * {
  width: 100%; }

.contact-box-headings + form {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.contact-box {
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 1; }

.contact-form-wrap {
  padding: 40px; }

.contact-media {
  height: 400px; }

.contact-media img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%; }

.contact-form .form-button {
  -webkit-margin-before: 20px;
  margin-block-start: 20px; }
.section-contact-form {
  overflow: hidden; }

.section-contact-form .card-icon-text-horizontal {
  -webkit-margin-before: 40px;
  margin-block-start: 40px; }

.contact-form-headings .heading + .text {
  -webkit-margin-before: 15px;
  margin-block-start: 15px; }

.section-contact-form .contact-form {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.section-contact-form .contact-form-wrap {
  --color-background: rgba(32, 40, 45, 1);
  --color-foreground: rgba(242, 242, 242, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --color-input-text: rgba(93, 102, 111, 1);
  --color-input-background: rgba(255, 255, 255, 1);
  --color-input-border: rgba(255, 255, 255, 1);
  --color-input-hover-text: rgba(93, 102, 111, 1);
  --color-input-hover-background: rgba(255, 255, 255, 1);
  --color-input-hover-border: rgba(255, 255, 255, 1);
  --color-secondary-button-hover-border: rgba(255, 255, 255, 0.3);
  background-color: var(--color-background); }

.section-contact-form .contact-box {
  --padding: 30px;
  -webkit-box-shadow: 5px 8px 30px 4px rgba(23, 36, 38, 0.08);
  box-shadow: 5px 8px 30px 4px rgba(23, 36, 38, 0.08);
  padding: var(--padding); }

.section-contact-form.without-box-shadow .contact-box {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0; }
  img, svg {
    vertical-align: middle;
    height: auto;
}
@media (min-width: 992px) {
  .section-contact-form .section-headings {
    /*max-width: 593px; */
  }
  .section-contact-form .card-icon-text-horizontal {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
    /*max-width: 442px; */

  } }

@media (min-width: 1400px) {
  .section-contact-form .col-contact-form {
    width: 520px; } 
  }

@media (max-width: 991px) {
  .section-contact-form .contact-form-wrap {
    -webkit-margin-before: 30px;
    margin-block-start: 30px; }
  .contact-us .contact-form-wrap {
    padding: 32px 0; } }

@media (max-width: 767px) {
  .section-contact-form .contact-box {
    --padding: 40px 15px; }
  .section-contact-form .contact-form-wrap {
    -webkit-margin-before: 20px;
    margin-block-start: 20px; } }

    .card-blog-top {
  --padding: 30px 24px 36px;
  padding: var(--padding);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.card-blog-heading a {
    text-decoration: none;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 58px;
        color: #000;
}

.card-blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 28px; }

.card-blog-list-horizontal .card-blog-meta {
  gap: 15px 20px; }

.card-blog-meta-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  text-decoration: none; }

.card-blog-meta-item svg {
  color: var(--color-icon); }
.card-blog-list-horizontal, .card-blog-list, .card-blog {
    --color-background: rgba(242, 242, 242, 1);
    --color-foreground: rgba(93, 102, 111, 1);
    --color-foreground-heading: rgba(28, 37, 57, 1);
    --color-icon: rgba(28, 37, 57, 1);
    --color-primary-button-hover-text: rgba(255, 255, 255, 1);
    --color-primary-button-hover-background: rgba(32, 40, 45, 1);
    --color-foreground-subheading: rgba(242, 242, 242, 1);
    --color-background-subheading: rgba(28, 37, 57, 1);
    --color-border-subheading-bg: rgba(28, 37, 57, 1);
    background-color: var(--color-background);
        height: 100%;
}
.card-blog-bottom {
  position: relative;
  /*height: 300px;*/
  display: block;
  text-decoration: none;
  /*overflow: hidden;*/
   }
/*.card-blog-bottom .buttons{
      position: absolute;
    width: 100%;
    bottom: 0px;
}*/
/*.card-blog .buttons {
  position: absolute;
  bottom: 0;
  width: 100%; }*/

.card-blog .buttons .button {
  width: 100%;
  border-radius: 0;
  border: none;
      padding: 15px;

  /*-webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;*/
   }

.card-blog:focus .buttons .button,
.card-blog:hover .buttons .button {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.card-blog .buttons svg {
  width: 12px;
  height: 12px; }

.card-blog .blog-tag {
position: relative;
    /* top: 20px; */
    /* left: 20px; */
    z-index: 1;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    width: max-content;    background: #fff; }

.card-blog-list-media {
  -webkit-margin-after: 24px;
  margin-block-end: 24px; }

.card-blog-heading {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.card-blog-heading:hover {
  opacity: 0.75; }

.card-blog-list .card-blog-heading {
  -webkit-margin-before: 15px;
  margin-block-start: 15px; }

.card-blog-list-horizontal .card-blog-heading {
  -webkit-margin-before: 10px;
  margin-block-start: 10px; }

.card-blog-list-horizontal .blog-excerpt,
.card-blog-list .blog-excerpt {
  -webkit-margin-before: 20px;
  margin-block-start: 20px; }

.card-blog-list .buttons {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.card-blog-list-horizontal .buttons {
  -webkit-margin-before: 20px;
  margin-block-start: 20px; }

.card-blog-list-media {
  --height: 500px;
  height: var(--height);
  position: relative; }

.card-blog-list-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.card-blog-list-horizontal .card-blog-list-media {
  --height: 100%;
  width: 40%;
  min-width: 252px;
  height: inherit;
  -webkit-margin-after: 0;
  margin-block-end: 0; }

.card-blog-list-horizontal .card-blog-content {
  padding: var(--padding); }

.horizontal-blogs .card-blog-list-horizontal .card-blog-content {
  --padding: 20px 24px; }

.horizontal-blogs .card-blog-list-horizontal + .card-blog-list-horizontal {
  -webkit-margin-before: 30px;
  margin-block-start: 30px; }

.blog-list-wrapper .card-blog-list + .card-blog-list {
  -webkit-margin-before: 60px;
  margin-block-start: 60px; }


  .card-blog p{
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .footer-logo img{
    height: auto !important;
  }

.read-more{
  color: #f06c2e;
  text-decoration: underline !important;
  font-size: 16px;
  font-weight: 600;
}
h3 {
   
    color: rgba(28, 37, 57, 1) !important;
}
h4 {
   
    color: rgba(28, 37, 57, 1) !important;
}
h4 {
   
    color: rgba(28, 37, 57, 1) !important;
}
h5 {
   
    color: rgba(28, 37, 57, 1) !important;
}
h6 {
   
    color: rgba(28, 37, 57, 1) !important;
}
.border-outline1{
  border-radius: 20px;
      outline: 3px solid #fff;
    outline-offset: -15px;
}
.section-box-white{
  padding: 30px;
  background: #fff;
      border-radius: 12px;
}

.section-box-orange{
      background: #dbcfc9;
       padding: 30px;
         border-radius: 12px;
}

/*.header-2.header-floating:hover .header-grid,
.header-2.header-sticky.scrolled-past-header .header-grid {
  -webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); }*/



.header-sticky{
  /* width: 100%;
    top:0;
    background: #fff;
    -webkit-box-shadow: 0 3px 15px rgb(0 0 0 / 10%);
    box-shadow: 0 3px 15px rgb(0 0 0 / 10%); */
    
}

.iso-benefit-box1 {
    background: transparent;
    padding: 0px;
    border-radius: 0px;
    transition: 0.3s ease;
    height: 100%;
    box-shadow: none;
    border-bottom: 1px solid #ec6e37;
    /* padding: 24px; */
    border-left: 1px solid #ec6e37;
    padding-left: 20px;
    padding-bottom: 10px;
}
.iso-benefit-box1 h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #ec6e37;
    font-family: 'Inter';
    font-weight: 700;
}.iso-benefit-box1 p {
    color: #000 !important;
           font-size: 18px;
        line-height: 32px;
    font-family: 'Inter';
    line-height: 28px;
}

.section-box-grey {
    padding: 30px;
    background: #e1e1e1;
    border-radius: 12px;
}
.accordion-horizontal .heading {
  color: #000 !important;
}
.accordion-horizontal p {
  color: #000 !important;
}
.service-button a.aa{
  background: #bb7051;
   
}
.service-button a.ab{
  background: #fff;
  border: 1px solid #000;
  color: #000;
   
}
.theme-color{
  color: #f06c2e;
}
.list-inline {
    list-style: none;
    padding: 0;
    margin: 0;

}

.list-inline li {
 display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    padding: 10px 30px;
    border: 1px solid #fff;
    margin-bottom: 10px;
    border-radius: 50px;
    background: #ec6e37;
    color: #fff;
}

.list-inline li i {
       color: #fff;
    margin-right: 6px;
}

#iso-9001{
   scroll-margin-top: 100px;

}
#iso-14001{
   scroll-margin-top: 100px;
}

#iso-45001{
   scroll-margin-top: 100px;
}

#iso-22000{
   scroll-margin-top: 100px;
}

#iso-27001{
   scroll-margin-top: 100px;
}

#iso-22301{
   scroll-margin-top: 100px;
}

#iso-13485{
   scroll-margin-top: 100px;
}

.page-section  .heading {
    position: relative;   /* Add this */
    display: inline-block; /* Optional: keeps underline only under text */
    padding-bottom: 8px;  /* Space for the line */
}

.page-section  h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #ec6e37;
} 
.training-section {
    padding: 80px 20px;
    background: #f7f9fc;
}



.training-grid {
   /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;*/
}

.training-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border-top: 4px solid #ec6e37;
    height: 100%;
}

.training-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 20px;
    margin: 0;
}

.duration {
      background: #ec6e37;
    color: #fff;
    font-size: 13px;
    padding: 9px 10px;
    border-radius: 20px;
    font-weight: 500;
    width: 150px;
    text-align: center;
}

.training-card ul {
    padding-left: 18px;
    margin: 0;
}

.training-card ul li {
    margin-bottom: 0px;
    
}
.training-card .heading {
    position: relative;
    display: inline-block;
    padding-bottom: 0;
    margin-bottom: 0;
}
.section-box-orange {
    padding: 30px;
    background: #e3cfc666;
    border-radius: 12px;
}

.hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    border-style: double !important;
    border-width: 5px !important;
    border-color: #d9b1a0a6 !important;
}
.hr1 {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: var(--bs-border-width) solid;
    opacity: .25;
    border-style: double !important;
    border-width: 5px !important;
    border-color: #79554857 !important
}
.list-inline1 {
    list-style: none;
    padding: 0;
    margin: 0;

}
@media(min-width: 991px){
.columns2 {
      columns: 2;
}
}
.list-inline1 li {
 display: inline-block;
 /* margin-right: 20px; */
 font-size: 16px;
 padding: 5px 10px 0;
 /*border: 1px solid #fff;*/
 margin-bottom: 10px;
 border-radius: 50px;
    padding-left: 30px;
    position: relative;
 /* background: #ec6e37; */
 /* color: #fff; */
}

.list-inline1 li i {
    color: #ec6e37;
    margin-right: 2px;
    position: absolute;
    left: 14px;
    top: 10px;
}.counter-box{
  padding: 30px;
  background: #ede6e4;
  border-radius: 20px;
  height: 100%;
  align-items: center;
}
.counter-box .heading{
  font-size: 30px;
}
.counter-box h2{
  font-size: 50px;
  font-weight: 700;
}
.counter-box h2 .symbol{
  padding-left: 4px;
  color:#bb7051 !important;
}
.counter-box h4 {
    color: var(--color-dark);
    font-size: 22px;
    font-family: var(--inter-font);
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 0 !important;
}.section-headings-sticky {
      --header-height: 150px;
    --position: calc(var(--header-height) + 40px);
    position: -webkit-sticky;
    position: sticky;
    top: var(--position, 0px);
}

.testimonial-card-inner .text-24 {
    font-size: 24px !important;
    line-height: 1.25;
}.hero-banner .main-img img {
  -webkit-mask-image: url(../img/subtract.png);
  background-image: url(../img/subtract.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%; 
  /* height: auto !important; */
  border-radius: 20px;
}.image-text .row{
    align-items: stretch;
}

.about-image-wrap{
      height: 600px;
}

.about-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px; /* optional */
}
.slice-image{
    /* width:530px; */
    height:555px;
    position:relative;
    overflow:hidden;
    border-radius:12px;
}

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

/* slice overlay lines */
.slice-image::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;

    background:
    repeating-linear-gradient(
        135deg,
        rgba(255,255,255,.9) 0px,
        rgba(255,255,255,.9) 6px,
        transparent 6px,
        transparent 80px
    );
}
.abb{
    position: absolute;
    left: -71px;
    top: 100px;
}

.footer-copyright a{
  color: #b87154;
}
.top-bar{
      width: 100%;
    overflow: hidden;
    background: #3e3e3e;
    padding: 5px 0;
}.notification-wrapper{
    position:relative;
    display:inline-block;
}

.notification-btn{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    position:relative;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.notification-btn:hover{
    transform:translateY(-3px);
}

.notification-btn i{
    font-size:22px;
    color:#1f2937;

}

.notification-count{
    position:absolute;
       top: -2px;
    right: -9px;
    width:22px;
    height:22px;
    background:#b87154;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:700;
    border:2px solid #fff;
}

.notification-dropdown{
    display:none;
    position:absolute;
    top:70px;
    right:0;
    width:380px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    z-index:9999;
    animation:fadeIn .3s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.notification-header{
    background:#311204;
    color:#fff;
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.notification-header h4{
    margin:0;
    font-size:18px;color: #fff !important;
}

.notification-header span{
    background:rgba(255,255,255,.15);
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
}

.notification-list{
    max-height:350px;
    overflow-y:auto;
}

.notification-item{
    display:flex;
    gap:15px;
    padding:16px 20px;
    text-decoration:none;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.notification-item:hover{
    background:#f8fafc;
}

.notification-item.unread{
    /* background:#eef5ff; */
}

.notification-icon{
    width:45px;
    height:45px;
    background:#eef2ff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.notification-icon i{
    color:#b87154;
    font-size:18px;
}

.notification-content h5{
    margin:0 0 5px;
    font-size:15px;
    color:#111827;
}

.notification-content p{
    margin:0;
    color:#64748b;
    font-size:13px;
    line-height:1.5;
}

.notification-content span{
    display:block;
    margin-top:8px;
    color:#94a3b8;
    font-size:12px;
}

.notification-footer{
    text-align:center;
    padding:15px;
    background:#f8fafc;
}

.notification-footer a{
    text-decoration:none;
    color:#b87154;
    font-weight:600;
}



.order-wrapper{
padding:20px;
}



/* NAV */

.tabs-nav{

display:flex;

gap:12px;

padding:10px;

background:#fff;

border-radius:10px;

border:1px solid #ececec;

margin-bottom:30px;

}

.tab-btn{

height:52px;

padding:0 28px;

border:none;

background:transparent;

cursor:pointer;

font-size:15px;

font-weight:600;

border-radius:8px;

display:flex;

align-items:center;

gap:10px;

}

.tab-btn.active{

background:
linear-gradient(
90deg,
#4f6dff,
#355fff
);

color:#fff;

}



/* PANELS */

.tab-panel{

display:none;

}

.tab-panel.active{

display:block;

}



/* HEADER */

.order-header{

display:flex;

justify-content:space-between;

gap:20px;

padding-bottom:30px;

border-bottom:1px solid #ececec;

}

.order-header h2{

font-size:32px;

margin-bottom:8px;

}

.order-header p{

color:#777;

}

.header-actions{

display:flex;

gap:10px;

align-items:center;

flex-wrap:wrap;

}

.header-actions button{

height:44px;

padding:0 22px;

background:#fff;

/* border:1px solid #ddd; */

cursor:pointer;

}

.status strong{

color:#355fff;

}



/* GRID */

.order-grid{

display:grid;

grid-template-columns:
repeat(4,1fr);

gap:25px;

padding:35px 0;

}

.order-grid label{

display:block;

color:#888;

margin-bottom:10px;

}

.order-grid h4{

font-size:18px;

}



/* PROCESS */

.progress-wrap{

display:flex;

gap:10px;

flex-wrap:wrap;

}

.step{

padding:12px 20px;

border-radius:50px;

background:#edf2ff;

}

.complete{

background:#355fff;

color:#fff;

}



/* TIMELINE */

.timeline{

position:relative;

padding-left:60px;

}

.line{

position:absolute;

left:10px;

top:0;

bottom:0;

width:2px;

background:#355fff;

}

.timeline-box{

position:relative;

}

.dot{

position:absolute;

left:-58px;

top:10px;

width:20px;

height:20px;

border-radius:50%;

background:#355fff;

}

.timeline h3{

font-size:30px;

}

.timeline span{

color:#888;

}

.timeline img{

width:350px;

max-width:100%;

margin:25px 0;

border-radius:16px;

}



/* MOBILE */

@media(max-width:991px){

.order-header{

flex-direction:column;

}

.order-grid{

grid-template-columns:1fr;

}

.tabs-nav{

overflow:auto;

}

}
.timeline img {
    width: 200px;
    max-width: 100%;
    margin: 25px 0;
    border-radius: 16px;
    height: 200px;
    object-fit: cover;
}

.line {
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #c17b56;
}
.dot {
    position: absolute;
    left: -58px;
    top: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #301205;
}
/* Premium Radio */

.premium-radio{
position:relative;
display:inline-flex;
cursor:pointer;
}

.premium-radio input{
display:none;
}

.premium-radio span{

width:34px;
height:34px;

border:2px solid #3e1200;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

transition:.35s;

position:relative;

}

/* inner circle */

.premium-radio span::after{

content:"";

width:14px;
height:14px;

border-radius:50%;

background:#3e1200;

transform:scale(0);

transition:.35s;

}

/* checked */

.premium-radio input:checked + span{

background:#fff7f1;

border-color:#3e1200;

box-shadow:
0 0 0 6px rgba(62,18,0,.08);

}

.premium-radio input:checked + span::after{

transform:scale(1);

}

/* hover */

.premium-radio:hover span{

transform:scale(1.05);

box-shadow:
0 10px 20px rgba(0,0,0,.08);

}.premium-theme-section{
padding:90px 0;
}

.title-area{
text-align:center;
margin-bottom:60px;
}

.title-area span{
letter-spacing:4px;
color:#b4864d;
font-size:13px;
}

.title-area h2{
font-size:42px;
margin-top:10px;
}

.theme-box{

background:#fff;

border-radius:24px;

overflow:hidden;

position:relative;

transition:.45s;

box-shadow:
0 15px 45px rgba(0,0,0,.06);

height:100%;
}

.theme-box:hover{

transform:
translateY(-12px);

box-shadow:
0 30px 70px rgba(0,0,0,.14);
}

.theme-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(140deg, #b8715429, transparent, #d9b27f00);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    /* -webkit-mask-composite: xor; */
    pointer-events: none;
}

.theme-img{
padding:18px;
overflow:hidden;
}

.theme-img img{

width:100%;

border-radius:18px;

transition:.5s;
}

.theme-box:hover img{
transform:scale(1.06);
}

.theme-content{
padding:0 25px 30px;
text-align:center;
}

.theme-content h3{
font-size:28px;
margin-bottom:6px;
}

.theme-content p{
color:#777;
margin-bottom:20px;
}

.theme-content a{

display:inline-block;

padding:14px 35px;

background:
linear-gradient(90deg, #b87154, #b87154);

border-radius:60px;

color:#fff;

text-decoration:none;

transition:.4s;
}

.theme-content a:hover{
transform:translateY(-3px);
}

.ribbon{

position:absolute;

left:-40px;

top:22px;

background:#ff7a00;

width:160px;

text-align:center;

color:#fff;

padding:8px;

transform:rotate(-45deg);

font-size:12px;

font-weight:700;

z-index:3;
}

/* CHECKBOX */

.theme-check{

position:absolute;

right:18px;

top:18px;

z-index:5;

cursor:pointer;
}

.theme-check input{
display:none;
}

.theme-check span{

width:34px;

height:34px;

display:block;

background:#fff;

border-radius:12px;

border:2px solid #ddd;

position:relative;

transition:.4s;

box-shadow:
0 10px 25px rgba(0,0,0,.15);
}

.theme-check input:checked + span{

background:#1cc96f;

border-color:#1cc96f;
}

.theme-check input:checked + span:after{

content:"✓";

position:absolute;

left:50%;

top:50%;

transform:
translate(-50%,-50%);

color:#fff;

font-size:18px;

font-weight:700;
}

.selected{
border:2px solid #1cc96f;
}

@media(max-width:768px){

.title-area h2{
font-size:30px;
}

.theme-content h3{
font-size:22px;
}

}

.theme-showcase{
padding:90px 0;
}

.section-title span{
color:#b78745;
letter-spacing:4px;
font-size:13px;
text-transform:uppercase;
}

.section-title h2{
font-size:42px;
margin-top:10px;
}

.theme-box{

position:relative;
border-radius: 24px;
background:#fff;

border-radius:24px;

overflow:hidden;

height:100%;

transition:.45s;

box-shadow:
0 10px 35px rgba(0,0,0,.08);
}

.theme-box:hover{

transform:
translateY(-10px);

box-shadow:
0 30px 70px rgba(0,0,0,.14);
}

.theme-box::before{
border-radius: 24px;
content:"";

position:absolute;

inset:0;

padding:1px;

/* background:
linear-gradient(
135deg,
#d6a96a,
transparent,
#d6a96a
); */

-webkit-mask:
linear-gradient(#fff 0 0)
content-box,

linear-gradient(#fff 0 0);

-webkit-mask-composite:xor;

pointer-events:none;
}

.theme-image{
padding:18px;
overflow:hidden;
}

.theme-image img{
width: 100%;
    border-radius: 18px;
    transition: .6s;
    /* height: 280px; */
    aspect-ratio: 1 / 1;
}

.theme-box:hover img{
transform:scale(1.06);
}

.theme-content{
padding:10px 25px 30px;
text-align:center;
}

.theme-content h4{
font-size:28px;
margin-bottom:5px;
}

.theme-content p{
color:#777;
margin-bottom:20px;
}

.view-btn{

display:inline-block;

padding:13px 34px;

background:
linear-gradient(
90deg,
#bb7051,
#bb7051
);

color:#fff;

text-decoration:none;

border-radius:60px;

transition:.4s;
}

.view-btn:hover{
transform:translateY(-3px);
color:#fff;
}

.ribbon{

position:absolute;

left:-45px;

top:22px;

width:160px;

padding:8px;

background:#FF5722;

color:#fff;

transform:rotate(-45deg);

text-align:center;

font-size:12px;

z-index:4;
}


/* CHECKBOX */

.check-icon{

position:absolute;

top:18px;

right:18px;

z-index:10;

cursor:pointer;
}

.check-icon input{
display:none;
}

.check-icon span{

width:34px;

height:34px;

display:flex;

align-items:center;

justify-content:center;

background:#fff;

border:2px solid #ddd;

border-radius:10px;

box-shadow:
0 8px 20px rgba(0,0,0,.14);

transition:.4s;
}

.check-icon input:checked + span{

background:#17c964;

border-color:#17c964;
}

.check-icon input:checked + span::after{

content:"✓";

color:#fff;

font-size:18px;

font-weight:700;
}

.selected{
border:2px solid #17c964;
}


@media(max-width:768px){

.section-title h2{
font-size:30px;
}

}

.domain-search{
    max-width:850px;
    margin:auto;
    position:relative;
}

.domain-search input{
    width:100%;
    height:78px;
    border:2px solid #dfe6f7;
    border-radius:60px;
    padding:0 240px 0 35px;
    font-size:15px;
    background:#fff;
    outline:none;

    box-shadow:
        0 15px 40px rgba(38,55,98,.08),
        inset 0 2px 6px rgba(255,255,255,.8);

    transition:.3s;
}

.domain-search input:focus{
    border-color:#c48a68;
    box-shadow:
        0 20px 50px rgba(196,138,104,.18);
}

.domain-search button{
    position:absolute;
    right:8px;
    top:8px;

    height:62px;
    width:220px;

    border:none;
    border-radius:50px;

    background:linear-gradient(
        135deg,
        #c88a63,
        #a96543
    );

    color:#fff;
    font-size:20px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    cursor:pointer;
    transition:.35s;

    box-shadow:
        0 12px 30px rgba(169,101,67,.35);
}

.domain-search button svg{
    width:22px;
    height:22px;
}

.domain-search button:hover{
    transform:translateY(-2px);
    box-shadow:
        0 18px 40px rgba(169,101,67,.45);
}

/* Mobile */
@media(max-width:768px){

.domain-search input{
    height:150px;
    padding:25px;
    padding-bottom:85px;
}

.domain-search button{
    width:calc(100% - 16px);
    top:auto;
    bottom:8px;
}

}
/* WRAPPER */
.ck-wrapper{
  display:flex;
  gap:30px;
  padding:40px;
  /* max-width:1200px; */
  margin:auto;
}

/* LEFT */
.ck-form-area{
  flex:1;
}

/* STEPS */
.ck-steps{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.ck-step{
  padding:6px 14px;
  border-radius:20px;
  background:#ddd;
  font-size:13px;
  color:#555;
}

.ck-step.ck-active{
  background:#2b1208;
  color:#fff;
}

/* CARD */
.ck-card{
  background:#fff;
  border-radius:18px;
  padding:25px;
  box-shadow:0 10px 30px rgb(0 0 0 / 28%);
}

.ck-card-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:15px;
}

/* TOGGLE */
.ck-toggle{
  display:flex;
  gap:10px;
  margin-bottom:20px;
  font-size:14px;
}

/* ROW */
.ck-row-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

/* FIELD */
.ck-field{
  display:flex;
  flex-direction:column;
  margin-bottom:15px;
}

.ck-field label{
  font-size:13px;
  margin-bottom:5px;
  color:#666;
}

.ck-field input,
.ck-field select{
  padding:12px;
  border:1px solid #ddd;
  border-radius:10px;
  outline:none;
  transition:0.3s;
}

.ck-field input:focus,
.ck-field select:focus{
  border-color:#2b1208;
  box-shadow:0 0 0 3px rgba(43,18,8,0.1);
}

/* PAYMENT BOX */
.ck-paybox{
  background:#fafafa;
  padding:15px;
  border-radius:12px;
  margin:20px 0;
}

.ck-pay-title{
  font-weight:600;
  margin-bottom:10px;
}

.ck-radio{
  display:flex;
  gap:10px;
  margin-bottom:8px;
  font-size:14px;
}

/* BUTTONS */
.ck-actions{
  display:flex;
  gap:15px;
}

.ck-btn{
  flex:1;
  padding:12px;
  border-radius:10px;
  cursor:pointer;
  font-weight:600;
  border:none;
}

.ck-primary{
  background:#2b1208;
  color:#fff;
}

.ck-outline{
  background:#fff;
  border:1px solid #2b1208;
  color:#2b1208;
}

/* RIGHT SIDE */
.os-summary{
    width: 400px;
}

.os-card{
  position:sticky;
  top:20px;
  background:#b87154;
  color:#fff;
  padding:25px;
  border-radius:18px;
}

.os-title{
  font-size:20px;
  margin-bottom:15px;
}

.os-subtitle{
  margin:15px 0 10px;
  font-weight:600;
}

.os-row{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  margin:8px 0;
}

.os-divider{
  height:1px;
  background:rgba(255,255,255,0.2);
  margin:15px 0;
}

.os-total{
  display:flex;
  justify-content:space-between;
  font-size:18px;
  font-weight:bold;
  margin-top:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .ck-wrapper{
    flex-direction:column;
    padding: 10px;
  }
.ck-actions {
    display: grid;
    gap: 15px;
}
  .os-summary{
    width:100%;
  }
.input_contn {
      width: 100% !important;
    margin-bottom: 10px;
}

  .ck-row-2{
    grid-template-columns:1fr;
  }
}.ck-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin-bottom:20px;
  cursor:pointer;
}

.ck-toggle input{
  display:none;
}

.ck-toggle span{
  position:relative;
  padding-left:30px;
}

/* box */
.ck-toggle span::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border:2px solid #2b1208;
  border-radius:5px;
  background:#fff;
  transition:0.3s;
}

/* tick */
.ck-toggle input:checked + span::after{
  content:"";
  position:absolute;
  left:5px;
  top:6px;
  width:6px;
  height:10px;
  border:solid #fff;
  border-width:0 2px 2px 0;
  transform:rotate(45deg);
}

.ck-toggle input:checked + span::before{
  background:#2b1208;
}.ck-radio{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  margin-bottom:10px;
  cursor:pointer;
  position:relative;
}

.ck-radio input{
  display:none;
}

.ck-radio span{
  position:relative;
  padding-left:30px;
}

/* outer circle */
.ck-radio span::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border:2px solid #2b1208;
  border-radius:50%;
  background:#fff;
}

/* inner dot */
.ck-radio span::after{
  content:"";
  position:absolute;
  left:5px;
  top:7px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2b1208;
  transform:scale(0);
  transition:0.2s;
}

/* checked state */
.ck-radio input:checked + span::after{
  transform:scale(1);
}

.ck-radio input:checked + span::before{
  border-color:#2b1208;
}
.ck-progress{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:25px;
}

/* STEP */
.ck-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  min-width:90px;
  position:relative;
}

/* TEXT */
.ck-step span{
  font-size:13px;
  color:#999;
}

/* CIRCLE */
.ck-circle{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#e6e6e6;
  color:#777;
  font-size:13px;
  font-weight:600;
  transition:0.3s;
  border:2px solid transparent;
}

/* DONE STEP */
.ck-step.done .ck-circle{
  background:#2b1208;
  color:#fff;
}

.ck-step.done span{
  color:#2b1208;
  font-weight:500;
}

/* ACTIVE STEP (CURRENT - COLORED DIFFERENT) */
.ck-step.active .ck-circle{
  background:#d97706;   /* ORANGE ACTIVE COLOR */
  color:#fff;
  box-shadow:0 0 0 5px rgba(217,119,6,0.15);
  animation:pulse 1.5s infinite;
}

.ck-step.active span{
  color:#d97706;
  font-weight:600;
}

/* LINE */
.ck-line{
  flex:1;
  height:3px;
  background:#e0e0e0;
  margin:0 10px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
}

/* DONE LINE */
.ck-line.done::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:100%;
  background:#2b1208;
}

/* ACTIVE LINE (progress glow) */
.ck-line.active::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:70%;
  background:linear-gradient(90deg,#d97706,#fbbf24);
  animation:flow 1s ease;
}

/* ANIMATIONS */
@keyframes flow{
  from{width:0;}
  to{width:70%;}
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(217,119,6,0.4);}
  70%{box-shadow:0 0 0 10px rgba(217,119,6,0);}
  100%{box-shadow:0 0 0 0 rgba(217,119,6,0);}
}

/* MOBILE */
@media(max-width:600px){
  .ck-step span{
    font-size:11px;
  }
  .ck-circle{
    width:30px;
    height:30px;
  }
}/* ROW CONTAINER */
.ck-radio-row{
  display:flex;
  gap:15px;
  margin-top:10px;
}

/* EACH OPTION BOX STYLE */
.ck-radio{
  flex:1;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border:1px solid #ddd;
  border-radius:12px;
  cursor:pointer;
  transition:0.3s;
  position:relative;
  background:#fff;
}

/* HIDE DEFAULT RADIO */
.ck-radio input{
  display:none;
}

/* TEXT */
.ck-radio span{
  font-size:14px;
  color:#444;
  position:relative;
  padding-left:28px;
}

/* OUTER CIRCLE */
.ck-radio span::before{
  content:"";
  position:absolute;
  left:0;
  top:2px;
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid #2b1208;
}

/* INNER DOT */
.ck-radio span::after{
  content:"";
  position:absolute;
  left:5px;
  top:7px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#2b1208;
  transform:scale(0);
  transition:0.2s;
}

/* CHECKED STATE */
.ck-radio input:checked + span::after{
  transform:scale(1);
}

.ck-radio input:checked + span::before{
  border-color:#2b1208;
}

/* ACTIVE BOX STYLE */
.ck-radio input:checked ~ span,
.ck-radio input:checked + span{
  color:#2b1208;
  font-weight:600;
}

/* HOVER EFFECT */
.ck-radio:hover{
  border-color:#2b1208;
  box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* MOBILE */
@media(max-width:600px){
  .ck-radio-row{
    flex-direction:column;
  }
}
.thank-wrapper{
/* max-width:700px; */
width:100%;
background:#fff;
border-radius:28px;
padding:60px;
text-align:center;
box-shadow:
0 15px 60px rgba(0,0,0,.08);
position:relative;
overflow:hidden;
}

.thank-wrapper:before{
content:"";
position:absolute;
top:-140px;
right:-120px;
width:300px;
height:300px;
background:#d4af37;
opacity:.08;
border-radius:50%;
}

.tick{
width:90px;
height:90px;
margin:auto;
border-radius:50%;
background:linear-gradient(135deg, #b87154, #301205);
display:flex;
align-items:center;
justify-content:center;
font-size:42px;
color:#fff;
box-shadow:0 10px 30px rgba(212,175,55,.3);
}

h1{
margin-top:30px;
font-size:42px;
color:#1b1b1b;
}

.desc{
margin-top:15px;
/* color:#6d6d6d; */
font-size:17px;
line-height:1.8;
}

.info-box{
margin-top:40px;
display:grid;
gap:18px;
}

.info-item{
padding:18px 24px;
border:1px solid #ececec;
border-radius:16px;
background:#fafafa;
}

.label{
font-size:13px;
color:#999;
text-transform:uppercase;
letter-spacing:2px;
margin-bottom:8px;
}

.value{
font-size:18px;
font-weight:600;
color:#222;
}

.home-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    height: 58px;
    padding: 0 40px;
    border-radius: 100px;
    background: #dbcdcd;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.home-btn:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.thank-wrapper{
padding:35px 25px;
}



.desc{
font-size:15px;
}

}.info-box{
margin-top:40px;
display:flex;
gap:18px;
}

.info-item{
flex:1;
padding:20px 25px;
border:1px solid #ececec;
border-radius:18px;
background:#fafafa;
text-align:center;
transition:.3s;
}

.info-item:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.label{
font-size:13px;
color:#999;
text-transform:uppercase;
letter-spacing:2px;
margin-bottom:8px;
}

.value{
font-size:18px;
font-weight:600;
color:#2b1105;
word-break:break-word;
}

@media(max-width:768px){

.info-box{
flex-direction:column;
}

}
.dash-wrapper {
    /* max-width: 700px; */
    width: 100%;
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(0, 0, 0, .08);
    position: relative;
    overflow: hidden;
}
.d-icon-box{
      width: max-content;
    margin: auto;
    padding: 20px;
    border: 1px solid #999999;
    margin-bottom: 20px;
    border-radius: 20px;
    background: #b87154;
}
.login-wrap{
/* max-width:1200px; */
margin:auto;

display:grid;
grid-template-columns:1.3fr 1fr;
gap:25px;

background:#fff;
padding:35px;

/* border-radius:22px; */

box-shadow:
0 10px 40px rgba(0,0,0,.06);
}



.info-card{
padding:18px 22px;

background:
linear-gradient(135deg,#ffffff,#faf6ef);

border:1px solid #eee;

border-radius:16px;

margin-bottom:18px;
}

.label{
display:block;

font-size:13px;

letter-spacing:2px;

text-transform:uppercase;

color:#b58b42;

margin-bottom:8px;
}

.info-card h3{
font-size:20px !important;

color:#222;

font-weight:600;

word-break:break-word;
}

.password-box label{
display:block;

font-size:14px;

margin-bottom:12px;

font-weight:600;
}

.pass-input{
display:flex;

overflow:hidden;

border-radius:14px;

border:1px solid #e8e8e8;

background:#fafafa;
}

.pass-input input{
flex:1;

border:none;

padding:18px;

background:none;

font-size:18px;
}

.pass-input input:focus{
outline:none;
}

.pass-input button{
border:none;

padding:0 30px;

cursor:pointer;

background:
linear-gradient(135deg, #b87154, #b87154);

color:#fff;

font-weight:600;

transition:.3s;
}

.pass-input button:hover{
transform:scale(.97);
}

.login-link{
display:inline-block;

text-decoration:none;

color:#b87154;

font-size:18px;

font-weight:600;
}

.login-link:hover{
text-decoration:underline;
}

@media(max-width:768px){

.login-wrap{
grid-template-columns:1fr;
padding:20px;
}

.info-card h3{
font-size:18px;
}

.pass-input{
flex-direction:column;
}

.pass-input button{
height:55px;
}

}

.auction-section{
padding:30px 20px;
}

.premium-card{

/* max-width:370px; */

background:
rgba(255,255,255,.75);

backdrop-filter:blur(18px);

border-radius:28px;

overflow:hidden;

border:1px solid rgba(255,255,255,.6);

box-shadow:
0 25px 60px rgba(0,0,0,.08);

transition:.45s;

margin:auto;
}
.premium-card .content{
  padding: 20px 20px;
}

.premium-card:hover{
transform:
translateY(-10px);

box-shadow:
0 35px 80px rgba(0,0,0,.15);
}

.thumb{
position:relative;

height:260px;

overflow:hidden;
}

.thumb img{
width:100%;
height:100%;
object-fit:cover;

transition:.7s;
}

.premium-card:hover img{
transform:scale(1.08);
}

.status{

position:absolute;

top:18px;
left:18px;

padding:8px 16px;

background:
linear-gradient(
90deg,
#0b3b86,
#2f65d8
);

color:#fff;

font-size:12px;

font-weight:700;

border-radius:40px;

letter-spacing:1px;
}

.premium-card .content{
padding:28px;
}

.premium-card .content h3{
font-size:25px;

color:#24140d;

margin-bottom:5px;

line-height:1.3;
}

.category{

display:flex;

/* justify-content:space-between; */
    align-items: center;
margin-bottom:14px;

font-size:16px;

color:#666;
}

.date{
font-weight:700;
color:#111;
}

.meta{

display:flex;

flex-wrap:wrap;

gap:10px;

margin-bottom:15px;
}

.chip{

color: #1a1614;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    display: flex;
    gap: 8px;
    border: 1px solid #b87154;
}

.chip b{
font-weight:700;
}

.price-box{

display:flex;

justify-content:space-between;

align-items:center;

padding-top:5px;

border-top:1px solid #eee;
}

.price-box label{
font-size:14px;
color:#777;
}

.price-box h2{
font-size: 25px;
    color: #33170b;
    margin-top: 6px;
    font-weight: 700;
}

.price-box button{

background:
linear-gradient(
135deg,
#3d1400,
#632300
);

border:none;

color:#fff;

padding:16px 26px;

border-radius:14px;

font-size:15px;

font-weight:700;

cursor:pointer;

transition:.3s;
}

.price-box button:hover{
transform:translateY(-4px);
}

@media(max-width:768px){
.chip {
    color: #1a1614;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 9px;
    display: flex;
    gap: 8px;
    border: 1px solid #b87154;
}
.price-box{
flex-direction:column;
gap:8px;
align-items:flex-start;
}
.design-card1 {
    display: block !important;
   
}
.checkout-bar {
    
    display: grid !important;
    
    gap: 10px;
}
.order-left {
            display: grid !important;
        align-items: center;
        gap: 10px;
}
.content h3{
font-size:24px;
}

}
.order-header{
    background:#fff;
    padding:25px 35px;
    border-radius:18px;
    margin-bottom:30px;
    box-shadow:0 10px 35px rgba(0,0,0,.07);
}

.order-header h3{
    font-weight:700;
    margin:0;
}

.order-header p{
    margin:5px 0 0;
    color:#888;
}

.total-order{
    background:#f3f6fb;
    padding:14px 28px;
    border-radius:50px;
    font-weight:600;
}

.total-order i{
    color:#ff9800;
    margin-right:8px;
}

.order-card{

    background:#fff;

    border-radius:18px;

    padding:20px;

    margin-bottom:25px;

    box-shadow:0 8px 30px rgba(0,0,0,.07);

    transition:.35s;

    border-left:5px solid #b87154;
}

.order-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.order-card small{

    color:#999;

    text-transform:uppercase;

    font-size:12px;

    letter-spacing:1px;
}

.order-card h5{

    font-weight:700;

    margin:8px 0;
font-size: 15px;
    color:#1f2937;
}

.order-card h4{

    color:#1b5ef5;

    font-weight:700;

    margin-top:10px;
}

.order-card h6{

    margin-top:10px;

    font-weight:600;
}

.design-count{

    display:inline-block;

    background: #e7e2e0;
    color: #b87154;

    padding:8px 15px;

    border-radius:30px;

    margin-top:8px;

    font-size:13px;

    font-weight:600;
}

.design-count i{

    margin-right:6px;
}

.status1{

    display:inline-block;

    padding:9px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    margin-top:10px;
}

.pending1{

    background:#fff3cd;

    color:#b7791f;
}

.active1{

    background:#d1fae5;

    color:#0f8f4d;
}

.completed1{

    background:#dbeafe;

    color:#2563eb;
}

.view-btn{

    display:inline-block;

    padding:13px 34px;

    background:linear-gradient(135deg,#4f46e5,#2563eb);

    color:#fff;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.35s;
}

.view-btn:hover{

    color:#fff;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,99,235,.35);

    text-decoration:none;
}

.view-btn i{

    margin-right:8px;
}

@media(max-width:991px){

.order-card .col-lg-2,
.order-card .col-lg-3{
    /* margin-top:18px; */
}

.view-btn{
    width:100%;
    text-align:center;
}

}

.design-card{

    background:#fff;

    border-radius:20px;

    padding:22px;

    margin-bottom:5px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

    border:1px solid #edf0f6;

}

.design-card:hover{

    transform:translateY(-2px);

    box-shadow:0 22px 45px rgba(0,0,0,.12);

}

.design-image{

    position:relative;

    overflow:hidden;

    border-radius:14px;

}

.design-image img{

    width:100%;

    height:120px;

    object-fit:cover;

    border-radius:14px;

}

.design-no{

    position:absolute;

    top:10px;

    left:10px;

    background:#b87154;

    color:#fff;

    padding:5px 12px;

    border-radius:20px;

    font-size:11px;

    font-weight:600;

}

.title{

    font-size:20px;

    font-weight:700;

    color:#1f2937;

    margin-bottom:10px;

}
.design-card .category{
  justify-content: start;
}
.due-date,
.category{

    color:#666;

    margin-top:8px;

    font-size:15px;
   justify-content: space-between;
}

.due-date i,
.category i{

    width:25px;

    color:#b87154;

}

.status{

    display:inline-block;

    padding:10px 24px;

    border-radius:30px;

    font-weight:600;

}

.pending{

    background:#fff3cd;

    color:#b7791f;

}

.completed{

    background:#d1fae5;

    color:#0f8f4d;

}

.process{

    display:flex;

    flex-wrap:wrap;

    gap:8px;

}

.badge{

    padding:9px 16px;

    border-radius:30px;

    font-size:12px;

    font-weight:600;

}

.cad{

    background:#ffe7c2;

    color:#d97706;

}

.render{

    background:#dbeafe;

    color:#2563eb;

}

.print{

    background:#ede9fe;

    color:#7c3aed;

}

.btn-view{

       background: linear-gradient(135deg, #4a1600, #7d2500);
    color: #fff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: .35s;

}

.btn-view:hover{

    color:#fff;

    text-decoration:none;

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(37,99,235,.35);

}

@media(max-width:991px){

.design-card .col-lg-2,
.design-card .col-lg-4{

    margin-top:5px;

    text-align:center;

}

.process{

    justify-content:center;

}

.btn-view{

    width:100%;

    margin-top:15px;

}

}
.design-details{

padding:15px 0;

}
.pending2 {
    /* background: #fff5e8; */
    color: #dd8c00;
    /* padding: 10px; */
    border-radius: 20px;
}
.page-title{

margin-bottom:15px;

padding-bottom:20px;

border-bottom:1px solid #ddd;

}

.page-title h2{

font-size:38px;

font-weight:700;

font-family:"Playfair Display",serif;

margin-bottom:10px;

}

.page-title span{

display:block;

width:90px;

height:3px;

background:#c8a25a;

}

.job-id{

font-size:18px;

font-weight:600;

/* margin-bottom:12px; */

}

.delivery{

font-size:16px;

color:#666;
/* text-align:right */

}

.delivery i{

color:#c8a25a;

margin-right:8px;

}

.design-photo{

overflow:hidden;

border-radius:18px;

border:2px solid #d9c59b;
height: 100%;

}

.design-photo img{

width:100%;

transition:.5s;
height: 100%;

}

.design-photo:hover img{

transform:scale(1.05);

}

.detail-row{

    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #ececec;
    align-items: center;

}

.detail-row label{

font-size:13px;

font-weight:600;

letter-spacing:2px;

text-transform:uppercase;

color:#777;

margin:0;

}

.detail-row span{

font-size:18px;

font-weight:600;

}

.yes{

color:#0b8d3f;

}

.pending{

color:#d48806;

}

.process-area{

margin-top:40px;

}

.process-area h5{

margin-bottom:25px;

font-weight:700;

}

.step{

margin-bottom:20px;

}

.step div:first-child{

font-weight:600;

margin-bottom:8px;

}

.progress{

height:8px;

border-radius:20px;

background:#ececec;

}

.progress-bar{

background:#c8a25a;

}

.price-box{

    margin: 25px 0 0;
    padding: 10px;
        border-top: 1px solid #9e9e9e52;
    /* border-bottom: 2px solid #b87154; */
    /* text-align: center; */

}

.price-box small{

display:block;

letter-spacing:3px;

text-transform:uppercase;

color:#888;

margin-bottom:10px;

}

.price-box h1{

font-size: 48px;
    /* font-family: "Playfair Display", serif; */
    color: #301205;
    margin: 0;
    font-weight: 700;

}

.buttons{

display:flex;

gap:15px;

}

.btn-spec,
.btn-download{

flex:1;

height:55px;

line-height:55px;

text-align:center;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.4s;

}

.btn-spec{
background: linear-gradient(135deg, #4a1600, #7d2500);
    color: #fff;
    text-decoration: none;
    /* padding: 14px 30px; */
    border-radius: 12px;
    /* display: inline-flex; */
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: .35s;

}

.btn-spec:hover{

background:#111;

color:#fff;

text-decoration:none;

}

.btn-download{

border:2px solid #c8a25a;

color:#c8a25a;

}

.btn-download:hover{

background:#c8a25a;

color:#fff;

text-decoration:none;

}

@media(max-width:991px){

.design-photo{

margin-bottom:40px;

}

.buttons{

flex-direction:column;

}

.page-title{

text-align:center;

}

.page-title .text-md-right{

text-align:center!important;

margin-top:20px;

}

}.spec-close{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#000;
    color:#fff;
    border:none;
    padding:0;
    font-size:28px;
    line-height:40px;
    text-align:center;
    opacity:1;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    outline:none;
    box-shadow:0 6px 15px rgba(0,0,0,.25);
}

.spec-close:hover{
    /* background:#0d6efd; */
    color:#fff;
    /* transform:rotate(90deg); */
    opacity:1;
}

.spec-close:focus{
    outline:none;
    box-shadow:0 6px 18px rgba(13,110,253,.35);
}
.design-card1{
display:flex;
justify-content:space-between;
align-items:center;
background:#fff;
border-radius:20px;
padding:20px;
margin-bottom:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.35s;
border:1px solid #eee;
}

.design-card1:hover{
transform:translateY(-6px);
box-shadow:0 20px 50px rgba(0,0,0,.12);
}


/* .design-card1 {
    display: block;
   
} */
.order-left{
display:flex;
align-items:center;
}

.product-img1{
width:95px;
height:95px;
border-radius:18px;
overflow:hidden;
background:#fafafa;
border:1px solid #eee;
margin-right:20px;
}

.product-img1 img{
width:100%;
height:100%;
object-fit:cover;
}

.order-id{
    display: inline-block;
    background: #e9dfdb;
    color: #0b8d45;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 14px !important;
}

.product-details h4{
margin:0 0 10px;
font-size:24px;
font-weight:700;
}

.order-meta{
color:#666;
font-size:15px;
}

.order-meta i{
color:#8b4513;
margin-right:8px;
}

.order-right{
display:flex;
align-items:center;
gap:14px;
}

/* .price-box{
text-align:right;
} */

.price-box small{
display:block;
color:#888;
font-size:13px;
margin-bottom:5px;
}

.price-box h3{
margin:0;
font-size:30px;
color:#222;
font-weight:700;
}

.delete-btn{
width:55px;
height:55px;
border:none;
border-radius:50%;
background:#fff2f2;
color:#ff2b2b;
font-size:22px;
cursor:pointer;
transition:.3s;
padding: 10px 18px;
}

.delete-btn:hover{
background:#ff2b2b;
color:#fff;
transform:rotate(15deg);
}

.checkout-bar{
background:#cdc6c4;
padding:25px 30px;
border-radius:20px;
display:flex;
justify-content:space-between;
align-items:center;
/* color:#fff; */
box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.checkout-bar small{
opacity:.7;
letter-spacing:1px;
text-transform:uppercase;
}

.checkout-bar h2{
margin:6px 0 0;
font-size:34px;
font-weight:700;
}

.enquiry-btn{
padding:16px 40px;
border:none;
background:#ffb400;
color:#222;
font-weight:700;
border-radius:50px;
cursor:pointer;
transition:.3s;
}

.enquiry-btn:hover{
background:#fff;
transform:translateY(-3px);
}
.cart-wrapper{
    position:relative;
    display:inline-block;
}

.cart-btn{
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    cursor:pointer;
    position:relative;
    font-size:22px;
    color:#222;
}

.cart-count{
    position:absolute;
   top: -2px;
    right: -9px;
    width:18px;
    height:18px;
    border-radius:50%;
    background:#b87154;
    color:#fff;
    font-size:11px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.cart-dropdown{
    position:absolute;
    top:55px;
    right:0;
    width:360px;
    background:#fff;
    border-radius:12px;
    box-shadow:0 15px 45px rgba(0,0,0,.15);
    overflow:hidden;
    display:none;
    z-index:9999;
}

.cart-dropdown.show{
    display:block;
    animation:popup .3s;
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.cart-header{
       background: #311204;
    color: #fff;
    padding: 18px;
    display: flex;
    justify-content: space-between;
}

.cart-header span{
      background: rgba(255, 255, 255, .15);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 12px;
}

.cart-body{
    max-height:280px;
    overflow-y:auto;
}
.cart-header h4{
  margin: 0;
    font-size: 18px;
    color: #fff !important;
}
.cart-item{
    display:flex;
    align-items:center;
    padding:18px;
    border-bottom:1px solid #eee;
}

.cart-img img{
    width:70px;
    height:70px;
    border-radius:8px;
    object-fit:cover;
}

.cart-info{
    flex:1;
    padding:0 15px;
}

.cart-info h5{
    margin:0;
}

.cart-info p{
    margin:8px 0;
    color:#c79a2b;
    font-weight:700;
}

.remove{
    color:red;
    font-size:18px;
}

.cart-total{
    display:flex;
    justify-content:space-between;
    padding:18px;
    background:#f8f8f8;
    font-size:18px;
}

.cart-footer{
    display:flex;
}

.btn-cart,
.btn-checkout{
  width: 100%;
    text-align: center;
    padding: 15px;
    /* color: #fff; */
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    background: #f8fafc;
    color: #b87154 !important;
    font-weight: 600;
    border-top: 1px solid #eee;
}

/* .btn-cart{
    background:#b87154;
} */

.btn-checkout{
      background: #b87154;
}

.btn-cart:hover,
.btn-checkout:hover{
    color:#fff;
}

@media(max-width:576px){

.cart-dropdown{
          width: 300px;
        right: -33px;
}

}

.cart-btn{
width:45px;
height:45px;
border-radius:50%;
background:#fff;
display:flex;
align-items:center;
justify-content:center;
cursor:pointer;
position:relative;
transition:.35s;
box-shadow:0 10px 25px rgba(0,0,0,.12);
}
.cart-btn:hover{
    transform:translateY(-3px);
}
.profile-wrapper{
    position:relative;
    display:inline-block;
}

.profile-btn{
    width:42px;
    height:42px;
    border:none;
    background:transparent;
    font-size:22px;
    cursor:pointer;
}

.profile-dropdown{
    position:absolute;
    right:0;
    top:55px;
    width:340px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    display:none;
    z-index:9999;
}

.profile-dropdown.show{
    display:block;
    /* animation:popup .35s; */
}

@keyframes popup{

from{
opacity:0;
transform:translateY(15px);
}

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

}
.profile-btn{
  width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.profile-btn:hover{
    transform:translateY(-3px);
}
.profile-cover{
background: #311204;
    color: #fff;
    padding: 18px;
    display: flex;
    justify-content: space-between;
}

.profile-avatar{
width:85px;
height:85px;
border-radius:50%;
background:rgba(255,255,255,.15);
display:flex;
align-items:center;
justify-content:center;
margin:auto;
font-size:34px;
margin-bottom:15px;
border:3px solid rgba(255,255,255,.35);
}

.profile-cover h4{
margin: 0;
         font-size: 18px;
    font-weight: 700;
    color: #fff !important;
}

.profile-cover p{
margin:5px 0 0;
opacity:.85;
}

.profile-links{
padding:15px;
}

.profile-links a{
display:flex;
align-items:center;
padding:5px;
margin-bottom:10px;
text-decoration:none;
border-radius:14px;
background:#fafafa;
transition:.3s;
}

.profile-links a:last-child{
margin-bottom:0;
}

.profile-links span{
width: 48px;
    height: 48px;
    background: #d9c8c16b;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b87154;
    font-size: 18px;
    margin-right: 15px;
}

.profile-links h6{
margin:0;
color:#222;
font-size:14px;
font-weight:600;
}

.profile-links small{
color:#888;
}

.profile-links .fa-angle-right{
margin-left:auto;
color:#999;
transition:.3s;
}

.profile-links a:hover{
background:#eee;
transform:translateX(5px);
}

/* .profile-links a:hover h6,
.profile-links a:hover small,
.profile-links a:hover .fa-angle-right{
color:#fff;
}

.profile-links a:hover span{
background:rgba(255,255,255,.18);
color:#fff;
} */

.profile-bottom{
padding:20px;
border-top:1px solid #eee;
}

.profile-bottom a{
display:block;
background:#301205;
color:#fff;
text-align:center;
padding:14px;
border-radius:12px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.profile-bottom a:hover{
background:#000;
}@media(max-width:576px){
    .notification-dropdown{
              width: 320px;
        right: -92px;
    }
    .notification-btn {
    width: 32px;
    height: 32px;
    padding: 0 !important;
    
}
    .cart-btn {
        width: 32px;
               height: 32px !important;
                  padding: 0 !important;
    }
        .profile-btn {
          width: 32px;
    height: 32px !important;
       padding: 0 !important;
    }
        .notification-btn i {
        font-size: 15px;
        color: #1f2937;
    }
       .cart-btn i {
        font-size: 15px;
        color: #1f2937;
    }
        .profile-btn i {
        font-size: 15px;
        color: #1f2937;
    }
    .notification-count {
   
           width: 22px;
        height: 22px;
        font-size: 9px;
    
}
.cart-count {
     width: 19px;
    height: 19px;
   
    font-size: 9px;
}
.profile-dropdown {
   
    width: 311px;
   
}
}
.box-b{
      padding: 45px 35px 25px !important;
    background: #ede6e4;
    border-radius: 20px;
    height: 100%;
    gap: 25px;
    /* align-items: center; */
}
.box-b p strong{
  font-size: 20px !important;
}
.box-b .svg-wrapper {
    --size: 79px;
  
    border: 1px solid #fff;
    outline: 1px dashed #fff;
    outline-offset: -7px;
}.product-grid {
  row-gap: 30px; }


  .multicolumn {
  position: relative;
  overflow: hidden; }

.multicolumn.with-bg-color {
  --color-background: rgba(242, 242, 242, 1);
  background-color: var(--color-background); }

.multicolumn.with-bg-color .multicolumn-inner {
  -webkit-margin-before: 60px;
  margin-block-start: 60px; }

.multicolumn-card11 {
  background: #000;
    padding: 36px;
    background-color: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    text-decoration: none;
    display: block;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s; }
.bg-w{
 background: #fff;
}
.multicolumn-page .multicolumn-card11 {
  --color-background: rgba(242, 242, 242, 1); }

.multicolumn-card11 .card-icon {
  --color-background: rgba(242, 242, 242, 1); }

.multicolumn-page .multicolumn-card11 .card-icon {
  --color-background: rgba(255, 255, 255, 1); }

.multicolumn-header {
  text-align: center;
  max-width: 638px;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto; }

.multi-col {
  -webkit-margin-before: 60px;
  margin-block-start: 60px; }

.multicolumn .multicolumn-card11 {
  padding: 36px;
  background-color: var(--color-background);
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  text-decoration: none;
  display: block;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.multicolumn .multicolumn-card11:focus,
.multicolumn .multicolumn-card11:hover {
  --color-background: rgba(32, 40, 45, 1);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1); }

.multicolumn .card-icon {
  width: 70px;
  height: 70px;
  color: var(--color-foreground);
  background-color: var(--color-background);
  border-radius: 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.multicolumn .multicolumn-card11:focus .card-icon,
.multicolumn .multicolumn-card11:hover .card-icon {
  --color-foreground: rgba(32, 40, 45, 1);
  --color-background: rgba(255, 255, 255, 1); }

.multicolumn-card11:focus .text-lists .text-item,
.multicolumn-card11:hover .text-lists .text-item {
  --color-foreground: rgba(255, 255, 255, 1); }

.multicolumn-card11 > .card-icon + .heading {
    -webkit-margin-before: 44px;
    margin-block-start: 30px;
    font-size: 24px;
    line-height: 1.5;
    color: #000;
}

.multicolumn-card11 > .text {
  -webkit-margin-before: 24px;
  margin-block-start: 24px; }

.multicolumn-card11 > .text-lists {
  -webkit-margin-before: 32px;
  margin-block-start: 32px; }

.multicolumn-card11 > .text-lists > li + li {
  -webkit-margin-before: 18px;
  margin-block-start: 18px; }

.multicolumn-card11 .text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px; }

.multicolumn-card11 .text-item svg {
  min-width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

@media (max-width: 1279px) {
  .multicolumn .multicolumn-card11 {
    padding: 36px 24px; } }

@media (max-width: 991px) {
  .multi-col {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; } }

@media (max-width: 767px) {
  .multicolumn .multicolumn-card11 {
    padding: 24px 16px; }
  .multicolumn-card11 > .card-icon + .heading {
    -webkit-margin-before: 32px;
    margin-block-start: 32px; }
  .multicolumn.with-bg-color .multicolumn-inner {
    -webkit-margin-before: 40px;
    margin-block-start: 40px; } }


    .multicolumn-card11 .card-icon {
    --color-background: #b87154;
    background: #b87154;
    width: 70px;
    height: 70px;
    color: var(--color-foreground);
    background-color: var(--color-background);
    border-radius: 10px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.multicolumn-card11:hover {
    background-color: #311204;
  
}
.multicolumn-card11:hover .heading{
  color: #fff;
}
.multicolumn-card11:hover .text{
  color: #fff;
}
.white-box{
    background: #ffe5da;
    padding: 40px;
    border-radius: 30px;
    border: 2px solid #ececec;
    /* box-shadow:
      0 10px 30px rgb(225 220 213 / 64%), 0 20px 60px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgb(249 244 244 / 74%); */
    transition: all .35s ease;
}

.white-box:hover{
    transform: translateY(-6px);
    box-shadow:
        0 15px 40px rgba(255, 152, 0, 0.22),
        0 30px 70px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.sticky1{
  position: sticky;
  top: 0;
}
.sticky2{
  position: sticky;
  top: 160;
}
.jewel-benefits{
    /* background:#faf8f5; */
    position:relative;
    overflow:hidden;
}



.benefits-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.benefit-card{
    display:flex;
    gap:18px;
    background:#fff;
    padding:24px;
    border-radius:18px;
    transition:.4s;
    border:1px solid #ececec;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.benefit-card:hover{
       transform: translateY(-8px);
    border-color: #b87154;
    box-shadow: 0 20px 45px rgb(184 113 84 / 23%);
}

.benefit-card .icon-box{
    width:70px;
    min-width:70px;
    height:70px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#b87154;
    color:#fff;
    font-size:28px;
}

.benefit-card h3{
    font-size:20px;
    margin-bottom:8px;
    font-weight:700;
    color:#222;
     font-family: "Inter", sans-serif;
}

.benefit-card p{
  margin: 0;
    color: #000;
    line-height: 1.7;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.benefit-image{
    position:relative;
}

.benefit-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 25px 70px rgba(0,0,0,.15);
}

.benefit-image::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border:15px solid rgba(212,175,55,.15);
    border-radius:50%;
    left:-40px;
    top:-40px;
    z-index:-1;
}

.benefit-image::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:linear-gradient(135deg,#d4af37,#f8d870);
    opacity:.08;
    border-radius:30px;
    right:-30px;
    bottom:-30px;
    transform:rotate(20deg);
}

@media(max-width:991px){


.benefits-list{
    grid-template-columns:1fr;
}

}.accordion-block {
  
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}
.jp-process-section{
    background:rgba(242, 242, 242, 1);
    padding:90px 0;
}

.jp-heading span{
    display:inline-block;
    color:#b68b2f;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:10px;
}

.jp-heading h2{
    font-size:46px;
    font-weight:700;
    margin-bottom:15px;
    color:#1d1d1d;
}

.jp-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
}

.jp-process-wrapper{
    margin-top:70px;
    display:flex;
    justify-content:space-between;
    position:relative;
}

.jp-line{
    position:absolute;
    left:8%;
    right:8%;
    top:60px;
    height:2px;
   background: linear-gradient(to right, #b87154, #2a1609, #b87154);;
}

.jp-item{
    width:18%;
    text-align:center;
    position:relative;
    z-index:2;
}

.jp-number{
       width: 42px;
    height: 42px;
    background: #b87154;
    /* border: 2px solid #d4af37; */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-weight: 700;
    font-size: 15px;
    transition: .4s;
        position: absolute;
    right: 35px;
    top: -25px;
}
@media(max-width:991px){
.jp-number {
   
    right: 34%;
    top: -25px;
}
}
.jp-icon{
       width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    background: #2b1608;
    transition: .4s;
    position: relative;
}

.jp-icon:before{
    content:"";
    position:absolute;
    inset:8px;
    border:1px dashed rgba(212,175,55,.45);
    border-radius:50%;
}

.jp-item:hover .jp-icon{
    transform:translateY(-12px) rotate(8deg);
    background:#2b1608;
    color:#fff;
}

.jp-item:hover .jp-number{
    /* background:#d4af37; */
    color:#fff;
}

.jp-item h5{
    margin-top:25px;
    font-size:20px;
    font-weight:700;
        font-family: 'Inter';
}

.jp-item p{
    color:#000;
    font-size:16px;
    line-height:1.7;
    margin-top:8px;
        font-family: 'Inter';
}

@media(max-width:991px){

.jp-process-wrapper{
    flex-wrap:wrap;
    gap:40px;
}

.jp-line{
    display:none;
}

.jp-item{
    width:48%;
}

}

@media(max-width:575px){

.jp-item{
    width:100%;
}

.jp-heading h2{
    font-size:32px;
}

}
.text-50 {
  font-size: 50px;
}

/* .premium-cta{
    padding:100px 0;
    background:#f7f9fc;
} */

.cta-box{

  position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #b87154, #b87154);
    /* border-radius: 30px; */
    padding: 70px;
    color: #fff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .15);

}

.cta-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.cta-box h2{

    font-size:48px;

    font-weight:600;

    line-height:1.2;

    margin-bottom:20px;

}

.cta-box p{

    font-size:18px;

    color:rgba(255,255,255,.85);

    line-height:1.8;

    margin-bottom:35px;

}

.cta-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

.btn-shop{

    background:#e07237;

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-shop:hover{

    background:#fff;

    color:#0f2945;

}

.btn-contact{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.btn-contact:hover{

    background:#fff;

    color:#0f2945;

}

.cta-stats{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.stat-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:20px;

    padding:30px;

    text-align:center;

}

.stat-box h3{

    font-size:34px;

    font-weight:800;

    color:#ffc107;

    margin-bottom:8px;

}

.stat-box span{

    color:#fff;

    opacity:.9;

}

.shape{

    position:absolute;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.shape1{

    width:220px;

    height:220px;

    top:-80px;

    right:-80px;

}

.shape2{

    width:140px;

    height:140px;

    bottom:-40px;

    left:-40px;

}

@media(max-width:991px){
    .hero-btns{
        display: flex;
    }

.cta-box{

    padding:40px 30px;

}

.cta-box h2{

    font-size:34px;

}

.cta-stats{

    margin-top:40px;

}

}

@media(max-width:576px){

.cta-stats{

    grid-template-columns:1fr;

}

.cta-buttons{

    flex-direction:column;

}

.btn-shop,
.btn-contact{

    width:100%;

    text-align:center;

}

}
.how-we-work .card-working-process {
  --color-background: rgba(28, 37, 57, 0.7);
  --color-foreground: rgba(255, 255, 255, 1);
  --color-foreground-heading: rgba(255, 255, 255, 1);
  --position: calc(var(--header-height) + var(--top));
  --top: 40px;
  background: var(--color-background);
  padding: 40px;
  border-radius: 18px;
  position: -webkit-sticky;
  position: sticky;
  top: var(--position);
  -webkit-backdrop-filter: blur(50px);
  backdrop-filter: blur(50px); }

.how-we-work .card-working-process .card-icon-text .svg-wrapper {
  color: var(--color-foreground); }

.how-we-work .card-working-process .has-border {
  border: none; }

.how-we-work .card-working-process .card-icon-text {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start; }

.how-we-work .card-working-process-inner {
  counter-reset: increment-number; }

.how-we-work .card-working-process:after {
  counter-increment: increment-number;
  content: counter(increment-number);
  position: absolute;
  top: 10px;
  right: 30px;
  font-size: 130px;
  color: var(--color-foreground-heading);
  opacity: 0.1;
  line-height: 1;
  -webkit-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  transform: rotate(10deg);
  font-weight: 700;
  font-style: normal;
  font-family: var(--font-heading-family); }

@media (min-width: 992px) {
  .how-we-work .heading {
    -webkit-padding-end: 30px;
    padding-inline-end: 30px; } }

@media (max-width: 767px) {
  .how-we-work .card-working-process {
    padding: 24px 16px; } }
    .pi-section{
    background:#f7f7f7;
}

.pi-head span{
    color:#c39a36;
    letter-spacing:2px;
    text-transform:uppercase;
    font-weight:600;
}

.pi-head h2{
    font-size:42px;
    font-weight:700;
    margin:10px 0;
}

.pi-sidebar{
    background:#081a33;
    border-radius:25px;
    padding:20px;
    height:100%;
}

.pi-sidebar .nav-link{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px;
    color:#fff;
    border-radius:18px;
    margin-bottom:15px;
    transition:.4s;
    border:1px solid rgba(255,255,255,.08);
}

.pi-sidebar .nav-link:hover{
    background:#13294b;
}

.pi-sidebar .nav-link.active{
    background:linear-gradient(90deg,#d6a844,#f7db8c);
    color:#111;
    transform:translateX(8px);
}

.pi-icon{
    width:58px;
    height:58px;
    border-radius:50%;
    background:#ffffff20;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.pi-sidebar .active .pi-icon{
    background:#fff;
}

.pi-sidebar h6{
    margin:0;
    font-weight:700;
}

.pi-sidebar small{
    opacity:.7;
}

.pi-content{
    background:#fff;
    border-radius:25px;
    padding:50px;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
    min-height:500px;
}

.pi-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:#fff5dc;
    color:#c39a36;
    font-weight:600;
    margin-bottom:20px;
}

.pi-content h3{
    font-size:36px;
    margin-bottom:20px;
    font-weight:700;
}

.pi-content p{
    color:#666;
    line-height:32px;
}

.pi-list{
    padding:0;
    list-style:none;
}

.pi-list li{
    padding:14px 0;
    padding-left:35px;
    position:relative;
    font-size:17px;
}

.pi-list li:before{
    content:"✔";
    position:absolute;
    left:0;
    color:#c39a36;
    font-weight:bold;
}

.pi-highlight{
    background:#081a33;
    color:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
}

.pi-highlight i{
    font-size:45px;
    color:#d6a844;
    margin-bottom:20px;
}

.pi-highlight p{
    color:#ddd;
}

@media(max-width:991px){

.pi-sidebar{
margin-bottom:30px;
}

.pi-content{
padding:30px;
}

.pi-head h2{
font-size:30px;
}

}