body {
   font-family: "Syne", sans-serif;
    font-size: 1rem;
    line-height: 1.65714286em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #484848;
    background-color: rgb(255, 255, 255);
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    margin: 0px;
    letter-spacing: 1px;
    overscroll-behavior: none;
    font-weight: normal;
}
html {
  scroll-behavior: smooth;
}
a { text-decoration:none; }
* {
    margin: 0;
    padding: 0;
}
i {
    margin-right: 10px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Syne", sans-serif; font-weight: 700;}
/*.banner-sec h2 {  font-size:40px }*/
p {
  font-family: "Poppins", sans-serif;
    font-style: normal;
}
.section-padding { padding:90px 0px; }

/*-------------offcanvas menu------------*/
 .offcanvas-end {
      background-color: #f3ede7; /* Soft beige like in image */
      width: 300px;
    }

    .offcanvas-header {
      border-bottom: none;
    }

    .offcanvas .logo {
      font-size: 24px;
      font-weight: 600;
      display: flex;
      align-items: center;
    }

   .offcanvas .logo-icon {
      width: 30px;
      height: 30px;
      margin-right: 10px;
    }

 
   .offcanvas .contact-info {
      margin-top: 40px;
    }

    .offcanvas .contact-info p {
      margin: 0;
    }

   .offcanvas .contact-info p a{text-decoration: none; color:#333;
    }
    .btn-close {              width: 47px;
    height: 47px;
    line-height: 47px;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    background-color: #EEE8E3;
    color: #1D1C1B;
    right: 50px;
    top: 60px;
    font-size: 16px;
        }

        .offcanvas .btn-close:hover {
   -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

  .offcanvas-socilal_icons .socials_wrap .social_item {
    color: #333;
    display: block;
    text-align: inherit;
    margin: 0;
}
.offcanvas-socilal  {height:80%;   border-bottom: 1px solid #ccc;}
.socials_wrap { 
    display: block;
    vertical-align: middle;
    margin: 0;
}
.socials_wrap .social_item {
    display: inline-block;
    vertical-align: top;
    line-height: inherit;
    text-align: center;
    margin-right: 8px; padding: 10px;
}.offcanvas-socilal_icons .socials_wrap .social_item .social_icon {
    width: 2em;
    height: 2em;
    line-height: 2em;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    background: none !important;
}

.socials_wrap:not(.socials_type_list) .social_item .social_icon, .socials_wrap:not(.socials_type_list) .social_item .social_icon i {
    color: #000;
}.offcanvas-socilal_icons .socials_wrap .social_item .social_icon + .social_name {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 14px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}
.contact-info h5 { font-size:1.600em; }

.navbar-nav > li > a {    padding: 0.8em 1.1em !important; font-size: 16px; font-weight: 700;}
.navbar-nav > li > a, .navbar-nav > li.menu-item-has-children > a {
   padding: 1em;
    position: relative;
    color: #333;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    -ms-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}.navbar-nav > li > a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}

.navbar-nav > li > a.active::after, .navbar-nav > li > a:hover::after {
    width: 100%;
  transition: width .3s;
}

 .navbar-mainbg.is-sticky { width: 100%; top:0px;
  position: fixed; background: #fff;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out; z-index: 999;
}
.navbar-toggler i { color:#fff }
.navbar-mainbg.is-sticky .navbar-toggler i { color:#000 }
.navbar-mainbg.is-sticky img {
  max-width: 80%;
}

.navbar-mainbg.is-sticky li a {
/*  font-size: 14px;*/
   color:#000 !important;
/*  padding: 7px 10px;*/
}

@keyframes slideDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
/*-----------slider-------*/

    .banner-slider {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .banner-slider .slide {
      position: absolute;
      width: 100%; 
      height: 100%;
      background-size: cover;
      background-position: center;
      animation: kenburns 10s ease-in-out infinite;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.6s ease;
    }

   .banner-slider .slide.active {
      opacity: 1;
      z-index: 2;
    }

    @keyframes kenburns {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

    .banner-slider .tiles {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      display: grid;
      grid-template-columns: repeat(20, 1fr);
      grid-template-rows: repeat(5, 1fr);
      z-index: 3;
      pointer-events: none;
    }

    .banner-slider .tile {
      background: #000;
      opacity: 1;
      animation: revealTile 1s ease forwards;
    }

    @keyframes revealTile {
      0% {
        transform: scale(1.3);
        opacity: 1;
      }
      100% {
        transform: scale(1);
        opacity: 0;
      }
    }

.banner-slider .content {
  position: absolute;
  top: 50%;
  left: 0%;
/*  transform: translate(-50%, -50%);*/
  z-index: 4;
  color: #fff;
 width: 100%;padding: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
}

   .banner-slider .slide.active .content {
      opacity: 1;
      transform: translateY(-50%);
    }

   .banner-slider .content h2, .content p, .content a {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeUp 1s ease forwards;
    }

   .banner-slider .content h2 { animation-delay: 0.3s; }
   .banner-slider .content p  { animation-delay: 0.6s; }
   .banner-slider .content a  { animation-delay: 0.9s; }

    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

   .banner-slider .content h2 {
      font-size: 68px;   font-family: "Syne", sans-serif;
      margin-bottom: 20px;
    }

  .banner-slider  .content p {
      font-size: 20px;
      margin-bottom: 20px;
    }

   

    /* Controllers */
   .banner-slider .controller {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      color: #fff;
      font-size: 60px;
     
      padding: 20px;
      cursor: pointer;
      user-select: none;
      transition: background 0.3s ease;
    }

    

 .banner-slider   .controller.prev { left: 10%; }
  .banner-slider  .controller.next { right: 10%; }
    /* Remove text-based arrows */
.banner-slider .controller::before {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: white;
  position: absolute;
  top: 50%;
 left: -25px;
  transform: translateY(-50%);
}

.banner-slider .controller::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid white;
  border-right: 2px solid white;
  transform: translateY(-50%) rotate(-135deg);
}

.banner-slider .controller.prev::before {
  left: auto;
  right: -26px;
}

.banner-slider .controller.prev::after {
  right: 40px;
}

.banner-slider .controller.next::after {
  left: 42px;
  transform: translateY(-50%) rotate(45deg);
}
.btn-readmore:focus,
.btn-readmore:hover,
.btn-readmore {-webkit-appearance: none;
    cursor: pointer;
    display: inline-flex
;
    align-items: center;
    vertical-align: top;
    font-size: 16px;
    line-height: 21px;
    font-weight: 700;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    text-transform: uppercase;
    
    height: auto;
    max-width: 100%;
    color: #fff; 
    border-color: #faa11e; 
    background-color: #faa11e;
    padding: 20px;
    border-width: 0 !important;}



.banner-slider .content h2 {
    font-size: 68px;
    font-family: "Syne", sans-serif;
    margin-bottom: 20px;
}
.about-sec {  background: url(../images/pattern-bg.png) left center #F4F0ED no-repeat; }

    @media (max-width: 1024px){ .offcanvasmenu { display:none !important; }
    h3.main_title {
    font-size: 2.8em !important;
    font-family: Syne, sans-serif;
    font-weight: 700;
    color: #000;
}   h4.main_title {
    font-size: 2em !important;
    font-family: Syne, sans-serif;
    font-weight: 700;
    color: #000;
}}
     @media (min-width: 768px) and (max-width: 1024px){

        .banner-slider .content h2 {
    font-size: 48px;
    font-family: "Syne", sans-serif;
    margin-bottom: 20px;
}
    }
    @media (min-width: 481px) and (max-width: 767px){

        .banner-slider .content h2 {
    font-size: 48px;
    font-family: "Syne", sans-serif;
    margin-bottom: 20px;
}
    }.spacer-inner {
            height: 60px !important;
        }
@media (max-width: 480px){
.spacer-inner {
            height: 60px !important;
        }
        .banner-slider .content h2 {
    font-size: 38px;
    font-family: "Syne", sans-serif;
    margin-bottom: 20px;
} .banner-slider .btn-readmore {  width: 150px; height: 150px; margin-top: 30px; border-radius: 50%;
    }}

    @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }
}
/*---services section---*/

  .services_item_more_link:hover,
  .services_item_more_link {
    position: relative; text-decoration: none;
    display: inline-block;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    color:#000;
    z-index: 1;
    overflow: hidden;
}.services_item_more_link .link_text {
    position: relative;
    margin-right: 0;
    display: inline-block;
    vertical-align: middle;
    text-indent: -110px;
    visibility: hidden;
    white-space: nowrap;
    opacity: 0;
    -webkit-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.4s ease-out, text-indent 0.5s ease-out, opacity 0.4s ease;
    will-change: visibility, margin-right, text-indent, opacity;
}.services_item_more_link .link_icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    width: 1.4em;
    height: 1.4em;
    line-height: 1.4em;
    text-align: center;
} .service-box:hover .services_item_more_link .link_text, .services_item_more_link:hover .link_text {
    opacity: 1;
    text-indent: 0;
    margin-right: 6px;
    visibility: visible;
    -webkit-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
    -ms-transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
    transition: visibility 0.4s ease, margin-right 0.3s ease-out, text-indent 0.4s ease-out, opacity 0.4s ease;
}
    .service-box {
      background-color: transparent;
      padding: 30px;
      border-radius: 0px;
      transition: 1s;
    }

    .service-box:hover {
      background-color: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .service-icon {
      width: 60px;
      height: auto;
      margin-right: 20px;
    }

    .service-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: #111;
    }

    .service-text {
      color: #666;
      font-size: 0.95rem;
    }

    .service-link {
      font-weight: 600;
      margin-top: 10px;
      display: inline-block;
      color: #111;
      text-decoration: none;
      transition: all 0.2s;
    }

    .service-link:hover {
      text-decoration: underline;
    }
  
  .rha_item_subtitle {
    margin-bottom: 1.6em;
}
.rha_item_subtitle { width: 100%;
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}
h5.main_title { font-size: 2em; }
.main_title {font-size: 3.800em;font-family: Syne, sans-serif;font-weight: 700; color:#000}
.feature-box-wrapper {
    display: flex
;
}

/*----------project-sec---*/
  .play-btn { font-size:20px;height:70px; padding: 24px; width: 70px; text-align: center; line-height: 70px; color:white;border:2px solid #fff; border-radius:50% }
h4.main_title {     line-height: 1.021em;font-size:3.133em; }
    .Projects_sec .swiper {
      width: 100%;
    margin-top: 0px;
    }

    .Projects_sec .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

   
    .Projects_sec .nav-buttons {
      display: flex;
      gap: 15px;
    }

    .Projects_sec .nav-buttons button {
      width: 50px;
      height: 50px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      background: transparent;
      border-radius: 50%;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .Projects_sec .nav-buttons button:hover {
      background-color: rgba(255, 255, 255, 0.1);
      transform: scale(1.05);
    }

.Projects_sec {
    background-color: #1B1B1B;
    background-image: url(../images/kitchen-pattern.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto;
}
h6 {font-size:  1.267em; font-weight:700;
    }

     .Testimonials-sec .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.Testimonials-sec .owl-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;border:0px;
  margin: 0 5px;
  border-radius: 0; /* square shape */
  transition: background 0.3s;
}

.Testimonials-sec .owl-dot.active {
  background: #333; /* active dot color */
}
.testimonials_rating_stars_default {
    white-space: nowrap;
    color: #faa11e;
}.Testimonials-sec .testimonials_author_name {
    font-size: 17px;
    line-height: 1.3em;
    font-weight: 700;
    font-style: normal;
    text-transform: none;
    letter-spacing: 0; 
    color: #000;
} .testimonials_author_data .testimonials_author_designation,  .testimonials_author_data .testimonials_author_name + .testimonials_author_designation {
    margin-top: 0;
    color:#000;
}
.Testimonials-sec .testimonials_author_name + .testimonials_author_designation, .Testimonials-sec .testimonials_author_designation {
    font-size: 15px;
    line-height: 1.333em;
}
.testimonials_author_name + .testimonials_author_designation {
    margin-top: 0.1em;
    color: #ddd;
    font-size: 0.9286em;
    line-height: 1.3em;
}
   .testimonials {
    position: relative;
    padding: 74px 40px;
    height: auto;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-bottom: 0;
    margin-top: 0;
}.owl-theme .owl-dots .owl-dot,
  .suppliers-sec .owl-dots,
  .suppliers-sec .owl-nav,
  .Testimonials-sec .owl-nav
  { display:none }
  .Testimonials-sec {  background:#f4f0ed; }
  .counter-sec::before {
  content: "";
  background-image: url('../images/pattern-bg2.png');
/*  background-size: cover;*/
  background-position: bottom left;
  position: absolute; background-repeat: no-repeat;
  top: 0; left: 0; right: 0; bottom: 0;
   /* Control transparency */
  z-index: -1;  /* Send it behind the text */
}
  .counter-sec { position: relative; background:url(../images/pattern-bg1.png) no-repeat right top; }
     .counter-value { text-align: left;
   font-size: 6em;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: -1px;   color: #000; border-bottom: 1px solid #ccc; padding-bottom: 20px; margin-bottom: 20px;
    }
    .counter-label {text-align: left;
    font-size: 1.100em;font-weight: 700;line-height: 1.417em;
      color: #000;
    }

  .image-container img {

  object-fit: cover;
  width: 100%;
  }

  .right-content {

/*  overflow-y: auto;*/
  padding: 60px 15px 0px;

  }
    .arrow-down1 {
      font-size: 2rem;
      display: block;
      margin: 20px 0;
    }



     .footer-sec ul li a{ padding:5px 0px;position:relative;  }
  .input-group-text,
  .footer-sec .form-control{background:#1b1b1b !important ; border-radius: 0px;}
.footer-sec .btn { border-radius:0px; }
.entry-title a { color:#000;    font-size: 35px;
    line-height: 1.15em;
    margin: 0px;
} .underline_anim.underline_do_hover {
    animation: underline_hover_on 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}.underline_anim.underline_do_hover:hover
 {
    animation: underline_hover_off 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
}
.underline_anim {
    display: inline;
    padding: 0;
    padding-bottom: 6px; 
    background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
    background-position: 0 100%;
    background-repeat: no-repeat;
    -webkit-background-size: 0 1px;
    background-size: 0 1px;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
} 
.footer-sec ul li a { position:relative;}
.hover-border {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.hover-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.hover-border:hover::after {
  width: 100%;
}
.post_header { position:relative;  margin-top: 40px;  padding-left: 40px; }
   .post_header::before {
    position: absolute;
    left: 0px;
    top: 13px;
    width: 35px;
    height: 2px;
    content: "";
    display: block;

    background-color: #000;
}
.post_header .post_meta_item.post_categories {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #000;
}

.post_layout_classic .post_meta_item.post_categories {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #000;
}.post_info .post_info_item::after, .post_meta .post_meta_item::after, .post_meta .post_meta_item.post_edit::after, .post_meta .vc_inline-link::after {
    content: "\f111";
   font-family:"Font Awesome 6 Free";
    display: inline-block;
    vertical-align: baseline;
    font-size: 6px;
    font-weight:900;
    font-style: normal;
    margin: 0px 0.75em;
}.post_meta, .post_meta_item, .post_meta_item::after, .post_meta_item:hover::after, .post_meta .vc_inline-link, .post_meta .vc_inline-link::after, .post_meta .vc_inline-link:hover::after, .post_meta_item a, .post_info .post_info_item, .post_info .post_info_item a, .post_info_counters .post_meta_item {
    color: #333;
} .post_title {
    font-size: 35px;
    line-height: 1.15em;
    margin: 0px; font-weight: bold;
}
 .finest-kitchen-sec .client-logo{    filter: grayscale(100%);opacity: 0.8;    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;}
 .finest-kitchen-sec .client-logo:hover {    filter: invert(1) !important;opacity: 1; filter: grayscale(100%);}
  .blog-sec {}
 .finest-kitchen-sec  { background:#1b1b1b }

.finest-kitchen-sec .owl-dots, 
.finest-kitchen-sec .owl-nav { display:none; }
/* Common style */
.finest-kitchen-sec figure.effect-julia {
  position: relative;
  float: left;
  overflow: hidden;
  height: auto;
  background: #3085a3;
  text-align: center;
  cursor: pointer; 

}
.finest-kitchen-sec figure.effect-julia img {
  position: relative;
  display: block; width: 100%;
  opacity: 0.8;
}

.finest-kitchen-sec figure.effect-julia figcaption {
  padding: 0em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  padding: 20px;
}

.finest-kitchen-sec figure.effect-julia figcaption::before,
.finest-kitchen-sec figure.effect-julia figcaption::after {
  pointer-events: none;
}

.finest-kitchen-sec figure.effect-julia figcaption,
.finest-kitchen-sec figure.effect-julia figcaption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.finest-kitchen-sec figure figcaption > a {

  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.finest-kitchen-sec figure p {
  margin: 0;
}

.finest-kitchen-sec figure .heading-txt {
  letter-spacing: 1px;
  font-size:22px;     font-family: Syne, sans-serif !important; font-weight: 700;
}

figure.effect-julia {
  background: #2f3238;
}

figure.effect-julia img {
  max-width: none;

  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

figure.effect-julia figcaption {
  text-align: left;
}
figure.effect-julia div{ margin-top:50%; }
figure.effect-julia p {
  display: inline-block;
  margin: 0 0 0.25em;
  padding: .8em  2em;
  background: #1b1b1b;
  color: #fff;
  text-transform: none;
  font-weight: 500;
  font-size: 75%;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(-360px,0,0);
  transform: translate3d(-360px,0,0);
}

figure.effect-julia p:first-child {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}



figure.effect-julia:hover p:first-child {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}



figure.effect-julia:hover img {
  opacity: 0.4;
  -webkit-transform: scale3d(1.1,1.1,1);
  transform: scale3d(1.1,1.1,1);
}

figure.effect-julia:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}
.creating-dream-content img { opacity:0.5;     -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;}
    .faq-section .owl-nav,
    .faq-section .owl-dots { display:none !important; }

        .creating-dream-content:hover img { opacity:1;     -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;}
   .faq-section {
/*      padding: spacer 0; */
      background: #f4f0ed;
    }
    .faq-image {
         width: 100%;
    max-width: 520px;
      height: auto;
      border-radius:0px;  
    }
    .faq-title {
      font-size: 2.8rem;
      font-weight: bold;
      color: #1c1c1c;
    }
    .faq-subtitle {
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 1px;
      color: #333;
    }
    .faq-question {
      border-top: 1px solid #ccc;
      padding: 20px 0;
    }
    .faq-question:last-child {
      border-bottom: 1px solid #ccc;
    }
    .faq-toggle {
      background: none;
      border: none;
      width: 100%;
      text-align: left;
       font-size:25px;
      font-weight: bold;
      color: #000;
      display: flex;
      justify-content: space-between;
      align-items: center;  
    }
    .faq-answer {
      font-size: 0.95rem;
      color: #666;
      margin-top: 10px;
    }
    .faq-icon {
      font-size: 1.2rem;
      transition: transform 0.3s;
    }
    .faq-toggle .faq-icon {
      transform: rotate(30deg);
    }
    .faq-toggle.collapsed .faq-icon {
      transform: rotate(90deg);
    }


    .how-sec-box {  text-align:center;  padding: 4.4em 2.4em 2.8em;
    color: #5F5F5E;
    background-color:#fff;
    border: 1px solid #E1DCD8;
    -webkit-transition: box-shadow 0.3s ease-out;
    -ms-transition: box-shadow 0.3s ease-out;
    transition: box-shadow 0.3s ease-out;
    will-change: box-shadow;}

    .bg-light1 {background: #e1dcd8 !important;}      

@media (max-width: 767px) { .content-box {
    padding: 50px 0px 0px !important;
}
.section-padding {
    padding: 60px 0px;
}
.entry-title a {
       font-size: 22px;
    line-height: 1em;
}.counter-value {
    font-size: 4em;}
.counter-label {
    font-size: 0.9em;
}
}

    @media (max-width: 767px) {
            h3.main_title {
        font-size: 2em !important;}
        .spacer-inner {
            height: 60px !important;
        }
    }
@media (min-width: 901px) { .Projects_sec .content-box {
      padding: 0px 20px;
    } .spacer-inner {
    height:90px ;
}
}
@media (max-width: 900px) {
    .content-box {
    padding: 80px 48px 0px;
}
element.style {
}
.service-box {
    padding: 15px;}
.testimonials {
    position: relative;
    padding: 54px 30px;}
    .about-right { margin-top:-150px; }}
@media (min-width: 1200px) {
   .feature-box-wrapper {
        align-items: flex-start;
    }
 .right-content {

/*  overflow-y: auto;*/
  padding: 0 60px;

  }
   .spacer-inner {
    height: 100px ;
}
  .image-container {
 position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  }    .Projects_sec .content-box {
        padding: 80px 40px;
    }.Projects_sec .swiper {
    width: 100%;
    margin-top: -120px;
}
}

@media (min-width: 1400px) {
    .Projects_sec .content-box {
        padding: 80px 150px;
    }
}

    @media (min-width: 1023px) {
        .spacer-inner {
            height: 80px !important;
        }
    }




    @media (min-width: 1279px) {
        .spacer-inner {
            height: 90px !important;
        }
    }


    @media (min-width: 1439px) {
        .spacer-inner {
            height: 100px !important;
        }
    }
