@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

:root {
  --primary: #c7844f;
  --primary-dark: #2b1e16;
  --secondary: #b35e3f;
  --dark: #141311;
  --grey: #6d665e;
  /* --grey: #534e48; */
  --light: #f1ede9;
  --slider-bg: #f1edea;
  --light-1: #c4a599;
  --black: #000000;
}

* {
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary);
  color: #ffffff;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

body::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-dark);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  color: var(--dark);
  overflow-x: hidden;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  text-decoration: none;
}

p {
  line-height: 26px;
  color: #666;
}

.full-img {
  width: 100%;
}

.f20 {
  font-size: 20px;
}

.f18 {
  font-size: 18px;
}

.f16 {
  font-size: 16px;
}

.f14 {
  font-size: 14px;
}

.f12 {
  font-size: 12px;
}

.light-bg {
  background-color: var(--light);
}

header {
  padding: 10px 0;
  position: relative;
  z-index: 100;
  background-color: #282828;
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-fixed {
  background-color: #fff !important;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: headerSlideDown 0.95s ease forwards;
}

@keyframes headerSlideDown {
  0% {
    margin-top: -100px;
  }

  100% {
    margin-top: 0;
  }
}

.logo img {
  /*width: 100%;*/
  /*max-width: 210px;*/
  height: 90px;
  width: 100px;
}

.menu-top {
  text-align: right;
  margin-top: 30px;
  padding-right: 30px;
}

.menu-top li {
  display: inline;
  margin-left: 25px;
}

.menu-top li a {
  border-radius: 10px;
  color: #fff;
  position: relative;
  padding-left: 45px;
  transition: all 0.4s;
}

.menu-top li a:hover {
  color: var(--light-1);
}

.menu-top li a i {
  position: absolute;
  left: 0;
  top: -7px;
  width: 35px;
  height: 35px;
  background-color: var(--light);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  transition: all 0.4s;
}

.menu-top li a:hover i {
  color: var(--primary-dark) !important;
}

.menu-bar {
  width: 100%;
  background-color: #fff;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.menu li {
  position: relative;
}

.menu li a {
  color: var(--grey);
  transition: all 0.4s;
  font-weight: 500;
  padding: 15px 0px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  position: relative;
}

.menu li a::after {
  position: absolute;
  content: "";
  width: 0;
  left: auto;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: var(--light-1);
  transition: all 0.5s;
}

.menu li:hover a {
  color: var(--black);
}

.menu li:hover a::after {
  width: 100%;
  right: auto;
  left: 0;
}

.has-dropdown span {
  display: none;
  /* padding-left: 10px; */
}

.dropdown {
  position: absolute;
  text-align: left;
  width: 1120px;
  left: 0px;
  top: 70px;
  background-color: #fff;
  /* border-radius: 5px; */
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 5px 3px 0px rgba(0, 0, 0, 0.2);
  z-index: 10;
  border: solid 0px var(--light);
  padding: 15px 15px 15px 15px;
}

.dropdown-small {
  width: 220px !important;
}

.dropdown li {
  display: block;
  border-bottom: solid 0px var(--light);
  margin: 0px;
}

.dropdown-brd-right {
  border-right: solid 1px #d5d5d5;
}

.dropdown li:last-child {
  border-bottom: none;
}

.dropdown li a {
  border: none;
  color: var(--grey);
  padding: 10px 15px !important;
  display: block;
  border-radius: 0;
  text-transform: capitalize;
  font-weight: 500;
}

.menu li:hover .dropdown li a {
  color: var(--grey) !important;
}

.dropdown li a::after {
  display: none;
}

.menu li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  top: 54px;
}

.menu li:hover .dropdown li a {
  color: var(--black);
}

.menu li:hover .dropdown li a:hover {
  background-color: var(--light);
  color: var(--black) !important;
}

.dropdown::before {
  top: -12px;
  left: 15px;
  border-style: solid;
  border-width: 0 10px 13px;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  border-color: transparent transparent var(--primary);
  display: none;
}

.header-right {
  display: none;
}

.banner {
  width: 100%;
  height: 600px;
  background-color: var(--slider-bg);
  background-image: url(../images/banner-bg.png);
  /* background-image: url(../images/banner.jpg); */
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: bottom; */
}

.banner-cont {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.banner-cont h5 {
  text-transform: uppercase;
  color: var(--secondary);
}

.banner-cont h1 {
  font-size: 60px;
  font-weight: 1000;
  color: var(--primary-dark);
}

.slider-link {
  padding: 12px 25px;
  background-color: var(--primary);
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s;
  border-radius: 2px;
}

.slider-link:hover {
  background-color: var(--primary-dark);
}

.slider-link i {
  font-size: 20px;
  padding-left: 10px;
}

.banner-img {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ban-img {
  width: 90%;
  height: 500px;
  object-fit: cover;
  padding: 10px;
  border: solid 1px var(--light-1);
  position: relative;
  z-index: 1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  background-color: rgba(255, 255, 255, 0.6);
}

.shape-img {
  position: absolute;
  left: 0px;
  bottom: 30px;
  z-index: 0;
  /* display: none; */
}

.shape-img-2 {
  position: absolute;
  right: 0px;
  top: 10px;
  z-index: 0;
}

.up-down {
  animation: up-down 4s infinite;
  animation-direction: alternate;
}

@keyframes up-down {
  0% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
  100% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
}

.down-up {
  animation: down-up 4s infinite;
  animation-direction: alternate;
}

@keyframes down-up {
  0% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

.inner-sec {
  padding: 80px 0;
}

.title {
  font-weight: 900;
  color: var(--primary-dark);
  position: relative;
  display: inline;
}

.title::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 25px;
  left: 0;
  right: 0;
  bottom: -20px;
  background: url(../images/title-line.png) no-repeat center;
  opacity: 0.2;
}

.re-box {
  width: 100%;
  margin-top: 15px;
  border: solid 1px var(--light);
}

.re-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.re-box-cont {
  width: 100%;
  padding: 20px 0 0 0;
  min-height: 110px;
}

.re-box-cont h4 {
  font-weight: 500;
  font-size: 20px;
}

.link-btn {
  padding: 7px 15px;
  color: #fff;
  background-color: var(--primary);
  transition: all 0.4s;
  border-radius: 2px;
}

.link-btn:hover {
  background-color: var(--primary-dark);
}

.link-btn-outline {
  padding: 7px 15px;
  color: var(--primary);
  background-color: #fff;
  border: solid 1px var(--primary);
  transition: all 0.4s;
  border-radius: 2px;
}

.link-btn-outline:hover {
  background-color: var(--primary);
  color: #fff;
}

.product-bg {
  background-color: var(--primary-dark);
  background-image: url(../images/header-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.product-bg .title {
  color: #fff;
}

.product-bg .title::after {
  background: url(../images/title-line-white.png) no-repeat center;
}

a {
  color: inherit;
}

.product-bg .re-box {
  border: solid 1px var(--primary-dark);
  transition: all 0.4s;
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.re-box-inner {
  position: relative;
  z-index: 10;
}

.product-bg .re-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.4s;
}

.product-bg .re-box:hover {
  background-color: transparent;
  border: solid 1px var(--primary);
  color: #fff;
}

.product-bg .re-box:hover p {
  color: #cccccc;
}

.product-bg .re-box:hover::before {
  top: 100%;
}

.product-box {
  width: 100%;
  margin-top: 40px;
  /*border: solid 1px var(--light);*/
  overflow: hidden;
  min-height: 445px;
  background-color: #fff;
  background-image: url(../images/product-bg.png);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.4s;
}

.product-box:hover {
  border-color: var(--secondary);
}

.product-box-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
}

.product-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}

.product-box:hover img {
  transform: scale(1.1);
}

.pr-inner {
  width: 100%;
  padding: 20px;
}

.pr-inner h4 {
  font-weight: 700;
  color: var(--secondary);
}

.pr-inner p {
  margin-bottom: 8px;
  font-size: 16px;
}

.pr-inner h6 {
  color: var(--grey);
  font-size: 18px;
}

.blog-bg {
  background-color: var(--light);
  background-image: url(../images/blog-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-box {
  width: 100%;
  border: solid 1px var(--light);
  background: rgba(255, 255, 255, 0.4);
  padding: 15px;
  min-height: 400px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all 0.4s;
}

.blog-box:hover {
  box-shadow: none;
  background: rgba(255, 255, 255, 1);
}

.blog-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
}

/* .contact-form {
  padding: 40px;
  border-radius: 20px;
  background-color: #f3f3f3;
} */

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="number"] {
  width: 100%;
  padding: 5px 10px;
  height: 45px;
  border: solid 1px #e8e8e8;
  transition: all 0.4s;
  outline: none;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="number"]:focus,
.contact-form textarea:focus {
  border: solid 1px var(--primary);
}

.contact-form textarea {
  width: 100%;
  padding: 5px 10px;
  height: 100px;
  border: solid 1px #e8e8e8;
  transition: all 0.4s;
  outline: none;
}

.btn-submit {
  outline: none;
  border: none;
  padding: 7px 20px;
  border-radius: 4px;
  background-color: var(--primary);
  color: #fff;
  transition: all 0.4s;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

.modal-header {
  background-color: var(--primary-dark);
  color: #fff;
}

button,
button:focus {
  outline: none;
}

.inner-banner {
  width: 100%;
  height: 200px;
  position: relative;
  background-color: #4a4a4a;
  margin-top: 0px;
}

.inner-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inner-banner-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

.inner-banner-cont h1 {
  font-weight: bold;
  color: #fff;
  font-size: 40px;
}

.contact-info {
  height: 454px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  border: solid 1px #e8e8e8;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
    rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  padding: 10px 30px 40px 30px;
}

.contact-info li {
  position: relative;
  margin-bottom: 25px;
  margin-top: 40px;
  font-size: 18px;
  width: 100%;
  max-width: 80%;
  padding-left: 50px;
}

.contact-info li i {
  position: absolute;
  left: 0;
  top: -5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.map iframe {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px,
  rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.gallery img{
  width:100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.recent-post {
  padding: 20px;
  background-color: #f5f5f5;
  border: solid 1px #e8e8e8;
  border-radius: 10px;
}

.recent-post ul li {
  border-bottom: dotted 1px var(--primary-dark);
}

.recent-post ul li a {
  padding: 10px;
  display: block;
  transition: all 0.4s;
}

.recent-post ul li a:hover {
  padding-left: 17px;
  color: var(--primary);
}

.contact-box {
  width: 100%;
  border-radius: 10px;
  padding: 40px 35px;
  background-color: #fff;
  min-height: 230px;
  border:solid 1px var(--primary)
}

.contact-icon i {
  font-size: 37px;
}

.contact-box h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 15px;
  margin-bottom: 12px;
}

.contact-box h3 a {
  color: var(--dark);
}

.contact-box p {
  font-size: 16px;
  color: var(--dark) !important;
}

.contact-btn {
  padding: 7px 12px;
  border-radius: 10px;
  color: #fff;
  background-color: var(--primary);
  font-weight: 500;
  transition: all 0.5s;
}

.contact-btn:hover {
  background-color: var(--light);
  color: #000;
}

.contact-sec {
  width: 100%;
  padding: 10px 30px 10px 30px;
  border:solid 1px #ccc;
  border-radius: 4px;
}

.contact-sec .form-group, .enquiry-form .form-group{
 margin-bottom: 12px;
}


.contact-sec .form-control, .enquiry-form .form-control {
  min-height: 40px;
}

.contact-sec .form-control:focus, .enquiry-form .form-control:focus {
  box-shadow: none!important;
  border:solid 1px var(--primary);
}

.btn-submit {
  color: #fff;
  font-weight: 500;
  background-color: var(--primary);
  border-radius: 4px;
  padding: 10px 30px;
  display: inline-block;
  transition: all 0.4s;
  border:solid 1px var(--primary);
  outline: none;
}

.btn-submit:hover {
  background-color:transparent;
  color: var(--primary);
  box-shadow: none;
}

/* ====== Footer CSS ====== */

footer {
  width: 100%;
  padding: 80px 0px 40px 0;
  background-image: url(../images/footer-bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

footer p {
  color: #ccc;
}

.f-logo img {
  width: 100%;
  max-width: 100px;
}

.f-links {
  margin-top: 10px;
}

.f-links li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  color: #ccc;
}

.f-links.pl-0 li {
  padding-left: 5px;
}

.f-links li i {
  position: absolute;
  left: 0;
  top: 0px;
}

footer h5 {
  font-weight: 600;
  font-size: 24px;
  color: #fff;
}

footer a {
  color: var(--dark);
  transition: all 0.4s;
  color: #ccc;
}

footer a:hover {
  color: var(--primary);
}

.footer-btm {
  border-top: solid 1px #333;
}

 .fade-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 2s ease-out forwards;
        }

        @keyframes fadeUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: #cfcfcf;
    border: 5px solid #e9e9e9;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.carousel {
    position: relative
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    backface-visibility: hidden;
    transition: transform .6s ease-in-out
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none
    }
}

.carousel-item.active,.carousel-item-next,.carousel-item-prev {
    display: block
}

.carousel-item-next:not(.carousel-item-start),.active.carousel-item-end {
    transform: translateX(100%)
}

.carousel-item-prev:not(.carousel-item-end),.active.carousel-item-start {
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none
}

.carousel-fade .carousel-item.active,.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s .6s
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,.carousel-fade .active.carousel-item-end {
        transition: none
    }
}

.carousel-control-prev,.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: .5;
    transition: opacity 0.15s ease
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,.carousel-control-next {
        transition: none
    }
}

.carousel-control-prev:hover,.carousel-control-prev:focus,.carousel-control-next:hover,.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-prev-icon,.carousel-control-next-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity 0.6s ease
}

@media (prefers-reduced-motion: reduce) {
    .carousel-indicators [data-bs-target] {
        transition: none
    }
}

.carousel-indicators .active {
    opacity: 1
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 1.25rem;
    left: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: center
}

.carousel-dark .carousel-control-prev-icon,.carousel-dark .carousel-control-next-icon {
    filter: invert(1) grayscale(100)
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000
}

.carousel-dark .carousel-caption {
    color: #000
}

@media only screen and (max-width: 768px) {
  .sl {
    top: 100px;
  }
}