* {
  padding: 0;
  margin: 0;
  outline: 0;
  scrollbar-width: auto;
  scrollbar-color: #a0a1ca #dedede;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #a0a1ca;
}

body {
  min-width: 320px;
  color: #000;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Nunito", sans-serif;
}

a {
  text-decoration: none;
  color: #111;
  transition: 0.4s ease-in-out;
}

a:hover {
  text-decoration: none;
  color: #978484;
}

p {
  font-size: 16px;
  line-height: 30px;
  color: #555;
  margin: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

article {
  margin: 0 0 30px 0;
  overflow: hidden;
}

figure {
  margin: 0;
}

.img-wrap {
  position: relative;
}

.img-wrap figure {
  position: relative;
  width: 100%;
  padding-top: 75%;
  margin: 0;
}

.img-wrap figure img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.imgp-wrap {
  background: #fff;
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
}

.imgp-wrap img {
  position: absolute;
  display: block;
  max-width: 100%;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@keyframes float-bob-y {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes float-bob-x {
  0% {
    transform: translateX(-20px);
  }
  50% {
    transform: translateX(-1px);
  }
  100% {
    transform: translateX(-20px);
  }
}
@keyframes zumpShape {
  0% {
    transform: translateZ(0);
  }
  50% {
    transform: translate3d(0, 10px, 0);
  }
  100% {
    transform: translateZ(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes car {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
/*header*/
header {
  background-color: #fff;
  position: relative;
}
header .main-head {
  padding: 0;
  background-color:#ddcea2;
}
header .main-head .logo-wrap {
  padding: 10px 0;
}
header .main-head .header-right .top-contact {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background-color: #ddcea2;
  align-items: center;
  gap: 15px;
}
header .main-head .header-right .top-contact .c-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 15px 0 0;
}
header .main-head .header-right .top-contact .c-wrap i {
  width: 35px;
  height: 35px;
  line-height: 35px;
  background-color: #613514;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  margin: 0 5px 0 0;
  position: relative;
}
header .main-head .header-right .top-contact .c-wrap i::after {
  content: "";
  left: 3px;
  right: 3px;
  bottom: 3px;
  top: 3px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244, 245, 218, 0.1);
}
header .main-head .header-right .top-contact .c-wrap > strong {
  display: block;
}
header .main-head .header-right .top-contact .c-wrap .add span {
  color: #613514;
  font-weight: 700;
  margin: 0 10px 0 0;
  text-transform: uppercase;
}
header .main-head .header-right .top-contact .c-wrap .add strong {
  font-size: 14px;
  color: #333;
}
header .main-head .header-right .top-contact .c-wrap a {
  font-weight: 600;
  font-size: 24px;
}
header .main-head .header-right .top-contact .c-wrap a:hover {
  color: #613514;
}
header .main-head .header-right .top-contact .c-wrap a i {
  font-size: 16px;
}
header .main-head .header-right .top-contact .social-bar {
  padding: 0;
  list-style: none;
  display: flex;
  gap: 20px;
}
header .main-head .header-right .top-contact .social-bar li a i {
  transition: 0.4s ease-in-out;
  width: 45px;
  height: 45px;
  line-height: 41px;
  background-color: #f4f5da;
  font-size: 20px;
  text-align: center;
  border-radius: 50%;
  color: #613514;
  border: 2px solid rgba(97, 54, 200, 0.2);
}
header .main-head .header-right .top-contact .social-bar li a:hover i {
  background-color: #613514;
  color: #f4f5da;
}

.nav-sec {
  position: relative;
  z-index: 9;
  background-color: #613514;
  overflow-x: clip;
}
.nav-sec::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(244, 245, 218, 0.1);
  position: absolute;
  top: 5px;
}
.nav-sec::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(244, 245, 218, 0.1);
  position: absolute;
  bottom: 5px;
}
.nav-sec .navbar {
  padding: 0;
}
.nav-sec .navbar-collapse {
  justify-content: flex-start;
}
.nav-sec .main-navigation {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: relative;
  z-index: 5;
  justify-content: center;
  border-radius: 4px;
  gap: 10px;
}
.nav-sec .main-navigation .menu-item {
  position: static;
}
.nav-sec .main-navigation .menu-item:hover {
  transition: 0.4s ease-in-out;
}
.nav-sec .main-navigation .menu-item:hover a {
  transition: 0.4s ease-in-out;
  background-color: #f4f5da;
  color: #613514;
}
.nav-sec .main-navigation .menu-item a {
  font-size: 16px;
  text-transform: capitalize;
  padding: 15px 10px;
  display: inline-block;
  position: relative;
  top: 0;
  color: #eee;
  border-radius: 5px;
  border-left: none;
  border-right: none;
  font-weight: 500;
  letter-spacing: 2px;
}
.nav-sec .main-navigation .menu-item.active a {
  transition: 0.4s ease-in-out;
  background-color: #f4f5da;
  color: #613514;
}
.nav-sec .main-navigation .menu-item .nav-link.active {
  transition: 0.4s ease-in-out;
  background-color: #f4f5da !important;
  color: #613514 !important;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu {
  top: 100%;
  z-index: 999999;
  min-width: 10rem;
  font-size: 1rem;
  color: #111;
  text-align: left;
  list-style: none;
  display: none;
  position: absolute;
  margin: 0;
  background: #613514;
  border-radius: 5px;
  padding: 0;
  width: 310px;
  animation-duration: 0.3s;
  opacity: 0;
  transition: 0.8s ease-in-out;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item::before {
  display: none;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a {
  padding: 10px;
  color: #fff;
  font-size: 14px;
  transition: 0.4s ease-in-out;
  text-align: left;
  line-height: 30px;
  border-radius: 5px;
  display: block;
  border: none;
  margin: 0;
  background-color: #613514;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .sub-menu .menu-item a:hover {
  background-color: #f4f5da;
  color: #613514;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children:hover .sub-menu {
  display: block !important;
  opacity: 1;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children > a::after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu {
  width: 100% !important;
  z-index: 9;
  left: 0 !important;
  right: 0 !important;
  background-image: url(../images/act-bg.jpeg) !important;
  background-color: transparent !important;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 20px !important;
  max-height: 400px;
  overflow-y: auto;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul {
  padding: 0;
  list-style: none;
  margin: 0 0 20px 0;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul h3 {
  font-size: 20px;
  padding: 10px;
  border-radius: 10px;
  background-color: #613514;
  color: #fff;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item {
  border-bottom: 1px dashed #999;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item:hover {
  background-color: transparent !important;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item a {
  color: #111 !important;
  font-size: 14px !important;
  font-weight: 500;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item a:hover {
  background-color: none !important;
  color: #fff !important;
}
.nav-sec .main-navigation .menu-item.menu-item-has-children .mega-menu ul .menu-item:last-of-type {
  border: none;
}

/*slider section*/
.slider-wrap {
  position: relative;
}
.slider-wrap .slider-bg {
  position: relative;
}
.slider-wrap .slider-bg .slide-sec {
  position: relative;
  overflow: hidden;
}
.slider-wrap .slider-bg .slide-sec:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.slider-wrap .slider-bg .slide-sec .slide-img {
  position: relative;
  width: 100%;
  padding-top: 100vh;
  margin: 0;
}
.slider-wrap .slider-bg .slide-sec .slide-img img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-wrap .slider-bg .slide-sec .slide-img iframe {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-wrap .slider-bg .slide-sec .slider-cap {
  text-align: left;
  margin: 0 0 50px 0;
  position: absolute;
  left: 5%;
  top: 100%;
  transform: translateY(-50%);
  z-index: 5;
  transition: 0.4s ease-in-out;
  max-width: 700px;
}
.slider-wrap .slider-bg .slide-sec .slider-cap small {
  display: block;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  position: relative;
  color: #fff;
  padding: 5px;
}
.slider-wrap .slider-bg .slide-sec .slider-cap h2 {
  font-size: 58px;
  margin: 0 0 30px 0;
  color: #e0d197;
  text-transform: uppercase;
  font-weight: 900;
}
.slider-wrap .slider-bg .slide-sec .slider-cap h2 span {
  color: #fe1214;
  font-size: 70px;
}
.slider-wrap .slider-bg .slide-sec .slider-cap p {
  font-size: 18px;
  color: #f4f5da;
  margin: 0 0 20px 0;
  font-style: italic;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #f4f5da;
  color: #613514;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 40px;
  display: inline-block;
  letter-spacing: 2px;
  border: 2px solid #613514;
}
.slider-wrap .slider-bg .slide-sec .slider-cap .sl-btns a:hover {
  color: #f4f5da;
  background-color: #613514;
}
.slider-wrap .slider-bg .owl-item.active .slider-cap {
  top: 55%;
  transition: 2s ease-in-out;
}
.slider-wrap .slider-bg .short-info {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 100px;
  right: 10%;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.7) 49%, rgba(196, 147, 45, 0.8071603641) 90%);
  padding: 30px;
  animation: float-bob-y 5s infinite;
}
.slider-wrap .slider-bg .short-info h3 {
  text-align: center;
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
  line-height: 30px;
}
.slider-wrap .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 50px;
  transform: translatex(-50%);
}
.slider-wrap .owl-dots .owl-dot span {
  width: 10px;
  height: 2px;
  background: #f4f5da;
  border-radius: 20px;
}
.slider-wrap .owl-dots .owl-dot.active span {
  background: #613514;
}
.slider-wrap .slide-form {
  position: absolute;
  right: 50px;
  top: 50px;
  z-index: 9;
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 20px;
  border-radius: 5px;
}
.slider-wrap .slide-form h3 {
  color: #613514;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
.slider-wrap .slide-form form .form-control {
  background-color: transparent;
  border-radius: 5px;
}
.slider-wrap .slide-form form .form-control::-moz-placeholder {
  color: #333;
}
.slider-wrap .slide-form form .form-control::placeholder {
  color: #333;
}
.slider-wrap .slide-form form .form-control:focus {
  border: 1px solid #613514;
  box-shadow: 0 0 0 0.25rem rgba(97, 53, 20, 0.2);
}
.slider-wrap .slide-form form .form-select {
  background-color: transparent;
  border-radius: 5px;
  color: #333;
}
.slider-wrap .slide-form form .form-select::-moz-placeholder {
  color: #333;
}
.slider-wrap .slide-form form .form-select::placeholder {
  color: #333;
}
.slider-wrap .slide-form form .btn {
  padding: 0;
  border: 0;
}
.slider-wrap .slide-form form .btn i {
  font-size: 40px;
  color: #613514;
  transition: 0.4s ease-in-out;
  position: relative;
}
.slider-wrap .slide-form form .btn i::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  top: -5px;
  bottom: -5px;
  border: 1px solid #613514;
  border-radius: 50%;
}
.slider-wrap .slide-form form .btn:hover i {
  color: #f4f5da;
}

/*about us*/
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(97, 53, 20, 0.1);
}
.about .about-image {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about .about-image .main-image .img-wrap figure {
  /*padding-top: 130%;*/
  border-radius: 0;
  overflow: hidden;
}
.about .about-image .small-image {
  position: absolute;
  top: 0;
  right: 0;
}
.about .about-image .small-image .img-wrap figure {
  width: 250px;
  padding-top: 100%;
  border: 5px solid #fff;
}
.about .about-image .about-info {
  display: flex;
  gap: 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(238, 65, 68, 0.6);
  padding: 5px 15px;
  flex-direction: column;
}
.about .about-image .about-info span {
  font-size: 80px;
  opacity: 1;
  color: #fff;
  text-align: left;
}
.about .about-image .about-info .num {
  font-size: 62px;
  color: #eee;
  line-height: 1;
}
.about .about-image .about-info .info-wrap {
  display: flex;
  flex-direction: column;
}
.about .about-image .about-info .info-wrap small {
  display: block;
  margin: 0;
  color: #eee;
}
.about .about-image .about-info .info-wrap strong {
  display: block;
  font-size: 24px;
  color: #eee;
}
.about .about-wrap .abt-head {
  margin: 0 0 20px 0;
  display: block;
}
.about .about-wrap .abt-head small {
  font-size: 18px;
  color: #555;
  font-weight: 500;
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.about .about-wrap .abt-head small span {
  vertical-align: middle;
  margin: 0 5px 0 0;
  font-size: 22px;
}
.about .about-wrap .abt-head h2 {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  position: relative;
  display: block;
  color: #33302b;
}
.about .about-wrap .abt-head strong {
  font-size: 24px;
  display: inline-block;
  margin: 0 0 10px 0;
  background-color: #613514;
  padding: 10px 30px;
  border-radius: 5px;
  color: #fff;
  position: relative;
}
.about .about-wrap .abt-head strong:before {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 20px;
  background-color: #f4f5da;
  box-shadow: inset 2px 2px rgba(0, 0, 0, 0.2);
  top: 50%;
  left: 10px;
  transform: translate(-50%);
}
.about .about-wrap .abt-head strong:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  border-radius: 20px;
  background-color: #f4f5da;
  box-shadow: inset 2px 2px rgba(0, 0, 0, 0.2);
  top: 50%;
  right: 10px;
  transform: translate(-50%);
}
.about .about-wrap .head-dots {
  width: 150px;
  height: 20px;
  border-radius: 50%;
  background-image: url(../images/header-border.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  position: relative;
  margin: 0 0 20px 0;
}
.about .about-wrap .p-content {
  margin: 0 0 30px 0;
  position: relative;
}
.about .about-wrap .p-content h3 {
  font-size: 32px;
  display: inline-block;
  padding: 10px 20px;
  background-color: rgba(128, 128, 128, 0.2);
}
.about .about-wrap .p-content h3 strong {
  border-bottom: 2px solid #f4f5da;
  display: block;
  margin: 0 0 10px 0;
}
.about .about-wrap .p-content h3 span {
  display: block;
  font-size: 16px;
  font-weight: 700;
}
.about .about-wrap .p-content p {
  margin: 0 0 20px 0;
}
.about .about-wrap .p-content ul {
  padding: 0;
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}
.about .about-wrap .p-content ul li {
  font-size: 20px;
  background-color: #efefef;
  padding: 5px 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 2px;
  box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.9);
}
.about .about-wrap .p-content ul li i {
  margin: 0 5px 0 0;
  color: #fe1214;
}
.about .about-wrap a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #f4f5da;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  border-radius: 0;
  display: inline-block;
  letter-spacing: 2px;
}
.about .about-wrap a:hover {
  background-color: #fe1214;
}

/*headings*/
.headings {
  text-align: center;
  margin: 0 0 50px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.headings small {
  color: #613514;
}
.headings h3 {
  color: #111;
  font-size: 3rem;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
}
.headings .header-bar {
  height: 10px;
  width: 80px;
  background-image: url(../images/bar-icon.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.v-all {
  text-align: right;
}
.v-all a {
  font-size: 20px;
  background-color: #f4f5da;
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 500;
}
.v-all a:hover {
  background-color: #613514;
  color: #fff;
}
.v-all a:after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background-color: #613514;
  z-index: -1;
  transition: 0.4s ease-in-out;
}
.v-all a:hover:after {
  animation: zoomOut 3s;
}
.v-all a i {
  margin: 0 0 0 5px;
  color: #613514;
  transition: 0.4s ease-in-out;
}
.v-all a:hover i {
  color: #fe1214;
}

/*banner*/
.banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.banner .container {
  position: relative;
}
.banner .banr-contn {
  padding: 20px 0;
  text-align: left;
}
.banner .banr-contn h4 {
  color: #fff;
  font-size: 36px;
  text-transform: capitalize;
  text-align: left;
  margin: 0 0 60px 0;
  background-color: #33302b;
  display: inline-block;
  padding: 10px;
  position: relative;
}
.banner .banr-contn h4:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  border-left: 30px solid #33302b;
  border-right: 31px solid transparent;
  border-top: 31px solid transparent;
  border-bottom: 31px solid transparent;
}
.banner .banr-contn ul {
  list-style: none;
  text-align: left;
  padding: 0;
  vertical-align: middle;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.banner .banr-contn ul li {
  margin: 0 0 15px 30px;
  font-size: 28px;
  color: #fff;
  background-color: rgba(95, 182, 113, 0.1);
  padding: 20px;
  position: relative;
}
.banner .banr-contn ul li span {
  vertical-align: middle;
  color: #fff;
  font-size: 30px;
  margin: 0 5px 0 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #fe1214;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: -25px;
  box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.4);
}
.banner .banr-contn ul li strong {
  font-size: 16px;
}
.banner .banr-contn ul li a {
  color: #fff;
  font-weight: 700;
  margin: 0 0 0 20px;
}
.banner .banr-contn ul li a:hover {
  color: #613514;
}
.banner .form-wrap {
  padding: 30px;
  text-align: left;
  background-color: rgba(0, 0, 0, 0.6);
}
.banner .form-wrap h4 {
  text-align: left;
  color: #fff;
  font-size: 20px;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.banner .form-wrap form .form-control {
  border-color: #fff;
  border-radius: 0;
}
.banner .form-wrap form .form-control::-moz-placeholder {
  color: #fff;
}
.banner .form-wrap form .form-control::placeholder {
  color: #fff;
}
.banner .form-wrap form .btn {
  border-radius: 0;
}

/*services*/
.services {
  padding: 60px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  background-color:#ddcea2;
}
.services:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
}
.services .container {
  position: relative;
}
.services .serv-card {
  margin: 0 0 30px 0;
  text-align: center;
  border-radius: 5px;
  border: 2px solid rgba(97, 54, 20, 0.1);
  padding: 20px;
}
.services .serv-card .img-wrap {
  background-color: transparent;
  position: relative;
  padding: 5px;
  border-bottom: none;
}
.services .serv-card .img-wrap figure {
  margin: 0 auto;
  border-radius: 50%;
  padding-top: 250px;
  width: 250px;
  position: relative;
}
.services .serv-card .img-wrap figure:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(97, 54, 20, 0.4);
  transition: 0.3s;
  border-radius: 100%;
  left: 0px;
  top: -10px;
  z-index: 1;
}
.services .serv-card .img-wrap figure:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(97, 54, 20, 0.4);
  transition: 0.3s;
  border-radius: 100%;
  left: 0px;
  bottom: -10px;
  z-index: 1;
}
.services .serv-card .img-wrap figure img {
  border-radius: 50%;
  z-index: 2;
  border: 10px solid #fff;
}
.services .serv-card .serv-dtl {
  border-top: 0;
  border-radius: 5px;
  position: relative;
  background-color: transparent;
  padding:5px 10px;
}
.services .serv-card .serv-dtl h4 {
  font-size: 24px;
  margin: 0;
  min-height: 100px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.services .serv-card .serv-dtl h4 a {
  font-weight: 600;
  color: #33302b;
}
.services .serv-card .serv-dtl h4 a:hover {
  color: #613514;
}
.services .serv-card .serv-dtl p {
  margin: 0 0 20px 0;
}
.services .serv-card .serv-dtl .r-more a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: #613514;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid;
}
.services .serv-card .serv-dtl .r-more a span {
  vertical-align: middle;
}
.services .serv-card .serv-dtl .r-more a:hover {
  color: #f4f5da;
  background-color: #613514;
}

/*banner counter*/
.mid-banner {
  padding: 50px 0 30px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.mid-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #613514;
}
.mid-banner .container {
  position: relative;
  z-index: 1;
}
.mid-banner .contn {
  margin: 0 0 50px 0;
  text-align: center;
}
.mid-banner .contn h4 {
  font-size: 24px;
  color: #eee;
}
.mid-banner .contn strong {
  font-size: 34px;
  color: #fff;
}
.mid-banner .banner-card {
  min-height: 210px;
  text-align: center;
  position: relative;
  border: none;
  padding: 20px;
  background-color: #f4f5da;
  margin: 0 20px 30px 20px;
  border-radius: 5px;
}
.mid-banner .banner-card:after {
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  bottom: 10px;
  left: 10px;
  border: 2px solid #f4f5da;
  z-index: -1;
  border-radius: 5px;
  opacity: 0.2;
}
.mid-banner .banner-card:before {
  content: "";
  position: absolute;
  background-image: url(../images/hand-shape.png);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 66%;
  opacity: 0.1;
  z-index: 0;
}
.mid-banner .banner-card .icon-wrap {
  margin: 0 0 10px 0;
}
.mid-banner .banner-card .icon-wrap span {
  font-size: 42px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #eee;
  background-color: #613514;
  position: relative;
}
.mid-banner .banner-card .icon-wrap span:before {
  content: "";
  left: -3px;
  right: -3px;
  bottom: -3px;
  top: -3px;
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(97, 53, 20, 0.4);
}
.mid-banner .banner-card .counter {
  font-size: 18px;
  color: #333;
  font-weight: 500;
}
.mid-banner .banner-card .counter span {
  display: block;
  font-size: 28px;
  color: #111;
  margin: 0 0 10px 0;
}

/*testimonials*/
.testimonials {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  position: relative;
}
.testimonials:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
}
.testimonials .container {
  position: relative;
  z-index: 2;
}
.testimonials .testi-main .testi-card {
  padding: 20px;
  position: relative;
  transition: 0.4s ease-in-out;
  text-align: left;
  border: 1px solid #eee;
  margin: 10px 15px;
  background-color: transparent;
  border-radius: 5px;
}
.testimonials .testi-main .testi-card q {
  color: #33302b;
  display: block;
  text-align: left;
  font-style: italic;
  margin: 0 0 40px 0;
  position: relative;
  font-size: 20px;
}
.testimonials .testi-main .testi-card .testi-profile {
  margin: 0 0 30px 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl {
  position: relative;
  text-align: center;
  padding: 20px;
  display: inline-block;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl strong {
  color: #555;
  font-size: 22px;
  display: block;
  border-radius: 4px;
  font-weight: 600;
  text-transform: capitalize;
  margin: 0 0 10px 0;
}
.testimonials .testi-main .testi-card .testi-profile .testi-dtl small {
  background-color: #613514;
  display: block;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  border-radius: 20px;
  padding:5px 20px;
}
.testimonials .testi-main .testi-card .testi-profile .img-wrap {
  display: inline-block;
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  border: 5px solid #613514;
  border-left: none;
  border-right: none;
  padding: 20px;
  border-radius: 50%;
}
.testimonials .testi-main .testi-card .testi-profile .img-wrap figure {
  padding-top: 130px;
  width: 130px;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.testimonials .testi-main .testi-card .testi-profile .img-wrap figure img {
  border: 5px solid #fff;
  border-radius: 50%;
}
.testimonials .testi-main .testi-card .testi-profile i {
  color: #613514;
  font-size: 120px;
  position: absolute;
  right: 0;
  opacity: 0.4;
}
.testimonials .testi-main .owl-dots {
  text-align: center;
}
.testimonials .testi-main .owl-dots .owl-dot span {
  border-radius: 0;
  margin: 0 10px 0 0;
  opacity: 0.3;
  width: 10px;
  height: 5px;
  border-radius: 0;
  background: #33302b;
}
.testimonials .testi-main .owl-dots .owl-dot.active span {
  background: #613514;
  opacity: 1;
}

/*blogs*/
.blogs {
  padding: 100px 0 70px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.blogs:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgba(97, 53, 20, 0.1);
}
.blogs .container {
  position: relative;
}
.blogs .img-wrap {
  position: relative;
}
.blogs .img-wrap figure {
  border-radius: 0;
  overflow: hidden;
}
.blogs .img-wrap .b-date {
  border-radius: 0;
  position: absolute;
  text-align: center;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: row;
  padding: 0 0 10px 0;
}
.blogs .img-wrap .b-date strong {
  background-color: #613514;
  line-height: 20px;
  display: block;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.blogs .img-wrap .b-date small {
  color: #613514;
  background-color: #f4f5da;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}
.blogs .blog-card {
  margin: 0 0 30px 0;
  border-radius: 5px;
  background-color: #f4f5da;
}
.blogs .blog-card .img-wrap figure {
  border-radius: 5px;
}
.blogs .blog-card .blog-dtl {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 10px 10px 40px 0px rgba(118, 133, 161, 0.3);
  background-color: #fff;
}
.blogs .blog-card .blog-dtl h4 {
  display: block;
  font-size: 1.3rem;
  line-height: 28px;
}
.blogs .blog-card .blog-dtl h4 a {
  color: #111;
  display: block;
}
.blogs .blog-card .blog-dtl h4 a:hover {
  color: #613514;
}
.blogs .blog-card .blog-dtl p {
  margin: 0 0 30px 0;
}
.blogs .blog-card .blog-dtl .r-more {
  display: block;
  text-align: right;
}
.blogs .blog-card .blog-dtl .r-more a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #613514;
}
.blogs .blog-card .blog-dtl .r-more a:hover {
  color: #613514;
  background-color: #f4f5da;
}
.blogs .blog-card .blog-dtl .r-more a span {
  margin: 0 0 5px 5px;
  font-size: 20px;
  line-height: 14px;
  vertical-align: middle;
}
.blogs .dates {
  display: flex;
  align-items: cener;
  gap: 5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0 0 5px 0;
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #613514;
}

.view-all {
  text-align: center;
}
.view-all a {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 2px;
  color: #613514;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid;
}
.view-all a:hover {
  background-color: #613514;
  color: #fff;
}

/*about new*/
.abt .about-image {
  overflow: visible;
  margin: 0 0 30px 0;
}
.abt .about-image .main-image .img-wrap {
  margin: 0;
}
.abt .about-image .main-image .img-wrap figure {
  border-radius: 50px;
}
.abt .about-image .main-image:before {
  right: 0;
  bottom: -80px;
  top: initial;
  background-size: 90%;
}
.abt .about-image .small-img {
  position: absolute;
  top: -30px;
  left: -80px;
  background-color: #fff;
  border: 30px;
  padding: 20px;
  border-radius: 50%;
}

/*what do we do*/
.whatwe-do {
  padding: 100px 0 70px 0;
  background-color: rgba(67, 117, 153, 0.1);
}
.whatwe-do .wedo-card {
  padding: 10px;
  display: flex;
  gap: 15px;
  margin: 0 0 30px 0;
  background-color: rgba(234, 106, 164, 0.2);
  border-radius: 0;
}
.whatwe-do .wedo-card .icon-wrap figure {
  width: 60px;
}
.whatwe-do .wedo-card .icon-wrap figure img {
  border-radius: 50%;
  background-color: #33302b;
}
.whatwe-do .wedo-card .contn strong {
  color: #f4f5da;
  font-size: 24px;
}

/*modal form*/
#quoteModal .modal-dialog .modal-header {
  background-color: #613514;
}
#quoteModal .modal-dialog .modal-header h5 {
  color: #fff;
}
#quoteModal .modal-dialog .modal-content {
  background-color: #f4f5da;
}
#quoteModal .form-wrap form .form-control,
#quoteModal .form-wrap form .form-select {
  line-height: 40px;
  border: none;
  border-bottom: 1px solid #999;
  color: #fff;
}
#quoteModal .form-wrap form .form-control::-moz-placeholder, #quoteModal .form-wrap form .form-select::-moz-placeholder {
  color: #fff;
}
#quoteModal .form-wrap form .form-control::placeholder,
#quoteModal .form-wrap form .form-select::placeholder {
  color: #fff;
}
#quoteModal .form-wrap form .form-select option {
  color: #111;
}
#quoteModal .form-wrap form .btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  background-color: #f4f5da;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid #613514;
  background-image: -webkit-linear-gradient(0deg, rgb(67, 116, 153) 0%, rgb(2, 73, 127) 100%);
}
#quoteModal .form-wrap form .btn span {
  vertical-align: middle;
}
#quoteModal .form-wrap form .btn:after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  bottom: 0;
  left: 100%;
  right: 0;
  background-image: linear-gradient(0deg, rgb(67, 116, 153) 0%, rgb(2, 73, 127) 100%);
  transition: 0.4s ease-in-out;
}
#quoteModal .form-wrap form .btn:hover:after {
  left: 0;
}
#quoteModal .form-wrap form .btn:last-of-type {
  background-color: #613514;
}

/*footer*/
footer {
  padding: 40px 0 0 0;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  border-top: 1px solid #eee;
}
footer:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(97, 54, 20, 0.9);
}
footer .container {
  position: relative;
}
footer .social-bar {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  text-align: center;
}
footer .social-bar li {
  display: flex;
  gap: 10px;
}
footer .social-bar li a i {
  display: inline-block;
  font-size: 18px;
  color: #613514;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
  background-color: #f4f5da;
}
footer .social-bar li a:hover i {
  background-color: #613514;
  color: #fff;
}
footer .f-logo {
  margin: 0;
  text-align: left;
  border-radius: 0;
  margin: 0 0 20px 0;
}
footer .f-logo img {
  max-width: 220px;
  width: 100%;
}
footer .foot-wrap h4 {
  position: relative;
  margin: 0 0 30px 0;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  padding: 0 0 10px 0;
}
footer .foot-wrap h4 span {
  color: #fff;
  position: relative;
}
footer .foot-wrap h4 .dash {
  width: 80px;
  height: 15px;
  margin: 20px 0 0 0;
  background-color: #fe1214;
  position: relative;
  overflow: hidden;
}
footer .foot-wrap h4 .dash i {
  font-size: 14px;
  position: absolute;
  animation: car 5s infinite;
  color: #fff;
}
footer .foot-wrap strong {
  color: #fff;
  margin: 0 0 20px 0;
  display: block;
}
footer .foot-wrap .foot-list {
  list-style: none;
  padding: 0;
  position: relative;
}
footer .foot-wrap .foot-list li {
  margin: 0 0 20px 0;
  padding: 0 0 0 25px;
  position: relative;
}
footer .foot-wrap .foot-list li:before {
  content: "\f013";
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s ease-in-out;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #613514;
}
footer .foot-wrap .foot-list li:last-of-type {
  border: none;
}
footer .foot-wrap .foot-list li:nth-last-child(2) {
  border: none;
}
footer .foot-wrap .foot-list li:hover:before {
  left: 5px;
  transform: rotate(30deg);
}
footer .foot-wrap .foot-list li a {
  color: #eee;
  text-transform: capitalize;
  font-weight: 500;
}
footer .foot-wrap .foot-list li a:hover {
  color: #613514;
}
footer .foot-wrap .list-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
footer .foot-wrap .list-flex li {
  width: 48%;
  padding-bottom: 10px;
}
footer .foot-wrap .foot-contact {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 0;
  flex-direction: column;
  flex-shrink: 0;
}
footer .foot-wrap .foot-contact li {
  margin: 0 0 5px 0;
  width: 100%;
}
footer .foot-wrap .foot-contact li:last-child {
  border: none;
}
footer .foot-wrap .foot-contact li a {
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  line-break: loose;
  font-weight: 500;
  font-size: 20px;
}
footer .foot-wrap .foot-contact li a span {
  font-size: 24px;
  line-height: 1;
  margin-top: 5px;
}
footer .foot-wrap .foot-contact li a strong {
  margin: 0 5px 0 0;
  color: #613514;
}
footer .foot-wrap .foot-contact li a:hover {
  color: #613514;
}
footer .foot-wrap .foot-contact li.foot-num a {
  font-size: 28px;
}
footer .foot-wrap .foot-contact li.foot-num a span {
  font-size: 36px;
}
footer .foot-wrap .fm-card {
  text-align: left;
  padding: 0 0 20px 0;
}
footer .foot-wrap .fm-card a {
  color: #eee;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-break: loose;
  font-weight: 500;
  font-size: 18px;
}
footer .foot-wrap .fm-card a span {
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #613514;
  border-radius: 50%;
  margin: 0 5px 0 0;
  border: 1px solid;
}
footer .foot-wrap .fm-card a strong {
  margin: 0 5px 0 0;
  color: #613514;
}
footer .foot-wrap .fm-card a:hover {
  color: #f4f5da;
}
footer .foot-wrap .fm-card a:hover span {
  color: #fff;
}
footer .map-wrap {
  margin: 0 0 20px 0;
}
footer .copy-r {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(2px);
  background-color: #613514;
}
footer .copy-r .copy-contn {
  justify-content: space-between;
  display: flex;
  color: #fff;
}
footer .copy-r .copy-contn strong {
  font-weight: 500;
}
footer .copy-r .copy-contn a {
  color: #f4f5da;
  font-weight: 500;
}
footer .copy-r .copy-contn a:hover {
  color: #fff;
}

.scrollTop {
  position: fixed;
  right: 4%;
  bottom: 60px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  z-index: 9;
  color: #fff;
}
.scrollTop:hover {
  bottom: 85px;
}
.scrollTop span {
  border-radius: 50%;
  color: #613514;
  background-color: #f4f5da;
  height: 40px;
  line-height: 40px;
  width: 40px;
  text-align: center;
  transition: 0.4s ease-in-out;
  font-size: 20px;
}

/*inventory page*/
.inventory-sec {
  padding: 20px 0;
}
.inventory-sec .search-inv h3 {
  background-color: #f4f5da;
  color: #fff;
  padding: 10px;
}
.inventory-sec .search-inv .form-wrap {
  padding: 10px;
  background-color: #33302b;
}
.inventory-sec .search-inv .form-wrap form .form-select {
  color: #eee;
  border: 1px solid #888;
  border-radius: 0;
}
.inventory-sec .search-inv .form-wrap form .form-select option {
  color: #333;
}
.inventory-sec .inv-filter .inv-result {
  background-color: #33302b;
  padding: 5px 10px;
  margin: 0 0 10px 0;
}
.inventory-sec .inv-filter .inv-result strong {
  color: #eee;
}
.inventory-sec .inv-filter form {
  margin: 0 0 20px 0;
}
.inventory-sec .inv-filter form h4 {
  font-size: 18px;
  margin: 10px 0 0 0;
}
.inventory-sec .inv-filter form .col-lg-4,
.inventory-sec .inv-filter form .col-lg-3 {
  display: flex;
  gap: 10px;
}
.inventory-sec .inv-filter form .col-lg-4 label,
.inventory-sec .inv-filter form .col-lg-3 label {
  font-weight: 500;
}
.inventory-sec .inv-filter form .col-lg-4 .form-select,
.inventory-sec .inv-filter form .col-lg-3 .form-select {
  border: 1px solid #33302b;
  border-radius: 0;
}
.inventory-sec .inv-filter form .col-lg-4 .form-select:focus,
.inventory-sec .inv-filter form .col-lg-3 .form-select:focus {
  outline: 1px solid #f4f5da;
  box-shadow: none;
}
.inventory-sec .invinner-card {
  display: flex;
  gap: 20px;
  margin: 0 0 30px 0;
}
.inventory-sec .invinner-card .img-wrap figure {
  max-width: 300px;
  width: 300px;
}
.inventory-sec .invinner-card .inv-detail {
  flex: 1;
  background-color: #eee;
  padding: 15px;
}
.inventory-sec .invinner-card .inv-detail h3 a {
  color: #33302b;
}
.inventory-sec .invinner-card .inv-detail h3 a:hover {
  color: #613514;
}
.inventory-sec .invinner-card .inv-detail .inv-price {
  margin: 0 0 10px 0;
}
.inventory-sec .invinner-card .inv-detail .inv-price strong {
  font-size: 20px;
  color: #f4f5da;
}
.inventory-sec .invinner-card .inv-detail .inv-spec {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
  margin: 0 0 15px 0;
}
.inventory-sec .invinner-card .inv-detail .inv-spec .component {
  background-color: #fff;
}
.inventory-sec .invinner-card .inv-detail .inv-spec .component small {
  display: block;
  background-color: #33302b;
  padding: 5px;
  color: #eee;
}
.inventory-sec .invinner-card .inv-detail .inv-spec .component strong {
  font-size: 18px;
  padding: 5px;
}
.inventory-sec .invinner-card .inv-detail .v-more a {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 0;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 12px;
  border: 1px solid #613514;
  color: #613514;
  position: relative;
  z-index: 0;
  background-color: #fe1214;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}
.inventory-sec .invinner-card .inv-detail .v-more a:hover {
  background-color: #613514;
}
.inventory-sec .invinner-card .inv-detail .v-more a i {
  margin: 0 0 0 5px;
}
.inventory-sec .pgnation .pagination {
  justify-content: flex-start;
}

/*inventory single page*/
.inv-single {
  padding: 20px 0;
}
.inv-single .contact-sec {
  margin: 0 0 20px 0;
}
.inv-single .contact-sec .fm-card {
  text-align: left;
  padding: 0 0 20px 0;
}
.inv-single .contact-sec .fm-card a {
  color: #33302b;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-break: loose;
  font-weight: 500;
  font-size: 20px;
}
.inv-single .contact-sec .fm-card a span {
  font-size: 32px;
  text-align: center;
  color: #613514;
  border-radius: 0;
  margin: 0 5px 0 0;
}
.inv-single .contact-sec .fm-card a strong {
  margin: 0 5px 0 0;
  color: #613514;
}
.inv-single .contact-sec .fm-card a:hover {
  color: #613514;
}
.inv-single .contact-sec .fm-card a:hover span {
  color: #f4f5da;
}
.inv-single .book-form h4 {
  background-color: #fe1214;
  color: #fff;
  padding: 10px;
}
.inv-single .book-form .form-wrap {
  padding: 10px;
  background-color: #33302b;
}
.inv-single .book-form .form-wrap form h5 {
  color: #eee;
  font-size: 14px;
  text-transform: capitalize;
}
.inv-single .book-form .form-wrap form .form-control {
  border: 1px solid #eee;
  border-radius: 0;
  color: #eee;
}
.inv-single .inv-mid h3 {
  color: #33302b;
}
.inv-single .inv-mid .inv-price {
  margin: 0 0 15px 0;
}
.inv-single .inv-mid .inv-price strong {
  color: #f4f5da;
  font-size: 24px;
}
.inv-single .inv-mid .inv-images {
  margin: 0 0 30px 0;
}
.inv-single .inv-mid .inv-images .img-wrap {
  overflow: hidden;
  display: inline-block;
  border: 1px solid #613514;
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  position: relative;
  height: 0;
  padding-top: 75%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}
.inv-single .inv-mid .inv-images .img-wrap img {
  position: absolute;
  display: block;
  max-width: 1500px;
  max-height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.4s ease-in-out;
}
.inv-single .inv-mid .inv-images .img-wrap:hover img {
  transform: scale(1.5, 1.5);
}
.inv-single .inv-mid .inv-images .carousel-indicators {
  position: initial;
  width: auto;
  margin: 0 -5px;
  letter-spacing: -5px;
  bottom: 20px;
  margin-top: 20px;
}
.inv-single .inv-mid .inv-images .carousel-indicators li {
  border: 0;
  background: none;
  border-radius: 5px;
  margin: 0 5px;
  cursor: default;
  text-indent: 0;
  letter-spacing: 0;
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  overflow: hidden;
  width: 50px;
  height: 50px;
}
.inv-single .inv-mid .inv-images .carousel-indicators li.active {
  border: 2px solid #f4f5da;
}
.inv-single .inv-mid .inv-images .carousel-indicators li img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.inv-single .inv-mid .inv-des h4 {
  background-color: #613514;
  padding: 10px;
  color: #fff;
}
.inv-single .inv-mid .inv-des p {
  margin: 0 0 20px 0;
}
.inv-single .inv-mid .inv-des ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.inv-single .inv-mid .inv-des ul li {
  background-color: #eee;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
}
.inv-single .inv-mid .inv-des ul li i {
  color: #f4f5da;
}
.inv-single .inv-summary h4 {
  background-color: #613514;
  padding: 10px;
  color: #fff;
}

/*service single page*/
.why-us {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.why-us:before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.why-us .headings {
  text-align: left;
  margin: 0 0 30px 0;
  align-items: flex-start;
}
.why-us .headings h3 {
  color: #fff;
  padding: 0;
}
.why-us .headings span {
  margin: 0 0 0 10px;
}
.why-us .container {
  position: relative;
  z-index: 2;
}
.why-us .whyus-wrap {
  padding: 30px 0;
}
.why-us .whyus-wrap p {
  margin: 0 0 30px 0;
  color: #eee;
}
.why-us .whyus-wrap ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.why-us .whyus-wrap ul li {
  margin: 0 0 20px 0;
  width: 48%;
  padding: 5px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.5);
  border-radius: 0;
}
.why-us .whyus-wrap ul li .why-list {
  display: flex;
  gap: 15px;
  color: #fff;
}
.why-us .whyus-wrap ul li .why-list .icon-wrap {
  margin-top: -10px;
  margin-left: -10px;
}
.why-us .whyus-wrap ul li .why-list .icon-wrap span {
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 28px;
  color: #eee;
  display: inline-block;
  background-color: #613514;
  border-radius: 50%;
}
.why-us .whyus-wrap ul li .why-list .icon-wrap span img {
  width: 100%;
}
.why-us .whyus-wrap ul li .why-list .list-dtl a {
  display: block;
}
.why-us .whyus-wrap ul li .why-list .list-dtl a strong {
  font-size: 18px;
  color: #fff;
  transition: 0.4s ease-in-out;
}
.why-us .whyus-wrap ul li .why-list .list-dtl a:hover strong {
  color: #613514;
}
.why-us .img-wrap {
  text-align: center;
  position: relative;
}
.why-us .img-wrap:before {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  top: -20px;
  left: -20px;
  background-color: rgba(234, 106, 165, 0.5);
}
.why-us .img-wrap img {
  width: 100%;
  position: relative;
}

.serv-single {
  padding: 50px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.serv-single .single-contn h2 {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #613514;
  border-radius: 0;
  color: #33302b;
  padding: 10px 0;
}

.sngle .contact-form {
  padding: 50px;
  background-color: #613514;
}
.sngle .contact-form h3 {
  color: #fff;
  margin: 0 0 20px 0;
  border-radius: 0;
  font-size: 28px;
  text-transform: capitalize;
}
.sngle .contact-form .form-wrap form .form-control,
.sngle .contact-form .form-wrap form .form-select {
  line-height: 40px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #f4f5da;
  border-radius: 0;
  color: #fff;
  padding: 0;
}
.sngle .contact-form .form-wrap form .form-control::-moz-placeholder, .sngle .contact-form .form-wrap form .form-select::-moz-placeholder {
  color: #fff;
}
.sngle .contact-form .form-wrap form .form-control::placeholder,
.sngle .contact-form .form-wrap form .form-select::placeholder {
  color: #fff;
}
.sngle .contact-form .form-wrap form .form-select option {
  color: #613514;
  padding: 10px;
}
.sngle .contact-form .form-wrap form .btn {
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  border: 1px solid #f4f5da;
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
}
.sngle .contact-form .form-wrap form .btn span {
  font-size: 20px;
}
.sngle .contact-form .form-wrap form .btn:hover {
  background-color: #f4f5da;
  color: #613514;
}

/*gallery*/
.pictures-wrap {
  padding: 100px 0 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.pictures-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eee;
}
.pictures-wrap .container {
  position: relative;
}
.pictures-wrap .picture-card {
  position: relative;
  margin: 0 15px 50px 15px;
}
.pictures-wrap .picture-card:before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: -10px;
  top: -10px;
  box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.5);
  border-radius: 0;
}
.pictures-wrap .picture-card .img-wrap {
  border-radius: 0;
  position: relative;
}
.pictures-wrap .picture-card .img-wrap figure {
  padding-top: 100%;
  overflow: hidden;
  margin: 0 0 0 0;
  border-radius: 0;
  overflow: hidden;
}
.pictures-wrap .picture-card .img-wrap figure:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
  opacity: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.pictures-wrap .picture-card .img-wrap figure img {
  transform: scale(1);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}
.pictures-wrap .picture-card .img-wrap .pic-title {
  background-color: rgba(0, 129, 0, 0.5);
  padding: 20px 10px;
  color: #fff;
  text-align: left;
  text-transform: capitalize;
  border-radius: 0;
  text-align: center;
  display: flex;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}
.pictures-wrap .picture-card .img-wrap .pic-title strong {
  font-size: 1.2rem;
  text-align: left;
}
.pictures-wrap .picture-card:hover figure:before {
  opacity: 1;
}
.pictures-wrap .picture-card:hover figure img {
  transform: scale(1.2) rotate(-5deg);
}
.pictures-wrap .picture-card .pic-dtls {
  position: absolute;
  z-index: 2;
  left: 10px;
  top: 10px;
  text-align: center;
  transition: 0.6s ease-in-out;
  opacity: 0;
}
.pictures-wrap .picture-card .pic-dtls a {
  width: 60px;
  height: 60px;
  line-height: 60px;
  padding: 0;
  text-align: center;
  margin: 0;
  display: inline-block;
  letter-spacing: initial;
  background: #f4f5da;
  opacity: 0.5;
  font-size: 18px;
  border-radius: 0;
  color: #fff;
}
.pictures-wrap .picture-card .pic-dtls a:hover {
  opacity: 1;
  color: #fff;
}
.pictures-wrap .picture-card:hover .pic-dtls {
  opacity: 1;
}
.pictures-wrap .gal-opt {
  margin-top: 30px;
}
.pictures-wrap .gal-opt a {
  color: #fff;
  display: block;
  padding: 10px 20px;
  position: relative;
  border-radius: 0;
  text-transform: uppercase;
  color: #f4f5da;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  background-color: rgba(41, 124, 65, 0.2);
}
.pictures-wrap .gal-opt a:before {
  content: "";
  display: block;
  position: absolute;
  border-color: #613514;
  box-sizing: border-box;
  border-style: solid;
  width: 100%;
  height: 50%;
  transition: all 0.3s ease-in-out;
  bottom: -6px;
  right: -6px;
  border-width: 0 5px 5px 0;
  z-index: 5;
}
.pictures-wrap .gal-opt a:after {
  content: "";
  display: block;
  position: absolute;
  border-color: #613514;
  box-sizing: border-box;
  border-style: solid;
  width: 100%;
  height: 50%;
  transition: all 0.3s ease-in-out;
  top: -6px;
  left: -6px;
  border-width: 5px 0 0 5px;
  z-index: 5;
}
.pictures-wrap .gal-opt a:hover:after, .pictures-wrap .gal-opt a:hover:before {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
}
.pictures-wrap .v-more {
  text-align: right;
  border-top: 1px solid #f4f5da;
}
.pictures-wrap .v-more a {
  padding: 10px 20px;
  display: inline-block;
  background-color: #613514;
  color: #fff;
}
.pictures-wrap .v-more a:hover {
  background-color: #f4f5da;
}
.pictures-wrap .v-more a span {
  vertical-align: middle;
  margin: 0 0 0 5px;
}

/*working areas*/
.sngl .container {
  position: relative;
  z-index: 2;
}
.sngl .wa-card {
  margin: 0 0 30px 0;
}
.sngl .wa-card .wa-dtl {
  padding: 20px 0 0 20px;
}
.sngl .wa-card .wa-dtl ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sngl .wa-card .wa-dtl ul li {
  display: block;
}
.sngl .wa-card .wa-dtl ul li a {
  color: #f4f5da;
  font-weight: 600;
}
.sngl .wa-card .wa-dtl ul li a:hover {
  color: #613514;
}
.sngl .wa-card .wa-dtl ul li a span {
  vertical-align: middle;
}

/*review page*/
.sngl .testi-main .testi-card {
  margin: 0 0 30px 0;
}
.sngl .testi-main .page-link {
  border-color: #eee !important;
  color: #eee !important;
}

/*faqs page*/
.faq-body {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.faq-body .container {
  position: relative;
}
.faq-body .container .card {
  border: none;
  margin: 0 0 20px 0;
  background: none;
}
.faq-body .container .card .card-header {
  background: #613514;
  border: none;
  border-bottom: 1px solid #fff;
  padding: 15px;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a {
  display: block;
  position: relative;
  font-size: 18px;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a:after {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0;
  font-weight: 600;
  color: #fff;
}
.faq-body .container .card .card-header .mb-0 > a[aria-expanded=true]:after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}
.faq-body .container .card .card-body {
  background: #eee;
  color: #111;
  font-size: 18px;
  line-height: 26px;
  padding: 20px;
  border-radius: 10px;
}
.faq-body .container .card .card-body ul {
  margin: 0 0 20px 0;
}

/*price & package*/
.pricing {
  padding: 50px 0 20px 0;
}
.pricing .price-card {
  border: 1px solid rgba(67, 117, 153, 0.5);
  border-radius: 50px;
  display: flex;
  gap: 15px;
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
  padding: 5px;
  align-items: center;
  margin: 0 0 30px 0;
  background-color: rgba(67, 117, 153, 0.08);
}
.pricing .price-card .img-wrap figure {
  width: 130px;
  padding-top: 100%;
  border-radius: 40px;
  overflow: hidden;
}
.pricing .price-card .pckg-dtl {
  flex: 1;
}
.pricing .price-card .pckg-price {
  text-align: center;
  flex: 1;
}
.pricing .price-card .pckg-price strong {
  font-size: 32px;
  color: #613514;
  display: block;
}
.pricing .price-card .pckg-price a {
  padding: 5px 20px;
  background-color: #33302b;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
}
.pricing .price-card .pckg-price a:hover {
  background-color: #613514;
}

/*report page*/
.report-sec {
  padding: 50px 0 20px 0;
}
.report-sec .report-card {
  margin: 0 0 30px 0;
}
.report-sec .report-card a {
  padding: 20px;
  min-height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #437499;
  color: #fff;
  font-size: 24px;
  border-radius: 50px;
  position: relative;
}
.report-sec .report-card a:before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 10px;
  bottom: 10px;
  border: 1px solid #eee;
  border-radius: 48px;
}
.report-sec .report-card a:hover {
  background-color: #613514;
}

/*contact us page*/
.contact-body {
  padding: 50px 0 20px 0;
}
.contact-body .contact-head h3 {
  font-size: 42px;
  margin: 0 0 30px 0;
  border-bottom: 2px solid #613514;
}
.contact-body .contact-dtl {
  padding: 20px;
  margin: 0;
  background-color: rgba(97, 53, 20, 0.1);
  border-radius: 5px;
}
.contact-body .contact-dtl .contact-list {
  list-style: none;
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}
.contact-body .contact-dtl .contact-list li {
  padding: 0;
}
.contact-body .contact-dtl .contact-list li:last-of-type {
  border: none;
}
.contact-body .contact-dtl .contact-list li a {
  display: flex;
  margin: 0;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  color: #33302b;
}
.contact-body .contact-dtl .contact-list li a:hover {
  color: #613514;
}
.contact-body .contact-dtl .contact-list li a span {
  margin: 0 10px 0 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: #613514;
  background-color: #fff;
  position: relative;
}
.contact-body .contact-dtl .contact-list li a span:before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 4px;
  top: 4px;
  border: 2px solid #613514;
  border-radius: 50%;
  opacity: 0.2;
}
.contact-body .contact-form {
  padding: 40px;
  box-shadow: inset 0px 0px 5px 4px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.contact-body .contact-form h3 {
  color: #333;
  margin: 0 0 20px 0;
}
.contact-body .contact-form .form-wrap form .form-control,
.contact-body .contact-form .form-wrap form .form-select {
  line-height: 40px;
  border: none;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 5px;
  color: #111;
  border: 1px solid rgba(153, 153, 153, 0.5);
}
.contact-body .contact-form .form-wrap form .form-control::-moz-placeholder, .contact-body .contact-form .form-wrap form .form-select::-moz-placeholder {
  color: #111;
}
.contact-body .contact-form .form-wrap form .form-control::placeholder,
.contact-body .contact-form .form-wrap form .form-select::placeholder {
  color: #111;
}
.contact-body .contact-form .form-wrap form .form-select option {
  color: #111;
}
.contact-body .contact-form .form-wrap form .btn {
  border: 1px solid #613514;
  color: #613514;
  border-radius: 5px;
  padding: 10px 20px;
  background-color: #f4f5da;
}
.contact-body .contact-form .form-wrap form .btn:hover {
  background-color: #613514;
  color: #f4f5da;
}
.contact-body .map-wrap {
  margin: 0 0 30px 0;
}

.contact-section {
  position: relative;
}
.contact-section .container {
  position: relative;
}

/*about page*/
.welcome-sec {
  padding: 50px 0;
}
.welcome-sec .welcome-wrap {
  padding: 0 0 30px 0;
}
.welcome-sec .welcome-wrap h2 {
  color: #613514;
  font-weight: 700;
}
.welcome-sec .welcome-wrap h2 small {
  display: block;
  font-size: 16px;
  text-transform: uppercase;
  color: #f4f5da;
  margin: 0 0 10px 0;
}
.welcome-sec .welcome-wrap p {
  margin: 0 0 20px 0;
}
.welcome-sec .welcome-wrap a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  border: 1px solid #613514;
  color: #613514;
  position: relative;
  z-index: 0;
  background-color: #613514;
  color: #fff;
  text-align: center;
}
.welcome-sec .welcome-wrap a span {
  vertical-align: middle;
  margin: 0 5px 0 0;
}
.welcome-sec .welcome-wrap a:before {
  transition: all 0.5s ease;
  position: absolute;
  border-radius: 5px;
  top: -1px;
  left: 50%;
  right: 50%;
  bottom: -1px;
  opacity: 0;
  content: "";
  background-color: #f4f5da;
  z-index: -1;
}
.welcome-sec .welcome-wrap a:hover:before {
  transition: all 0.5s ease;
  left: -1px;
  right: -1px;
  opacity: 1;
}
.welcome-sec .welcome-wrap a:hover {
  color: #fff;
}

.form-wrap h3 {
  color: #613514;
  position: relative;
  display: inline-block;
  padding: 0 100px 0 0;
  text-transform: capitalize;
  margin: 0 0 20px 0;
  font-size: 2.6rem;
}
.form-wrap form h4 {
  color: #999;
  font-size: 14px;
  text-transform: capitalize;
}
.form-wrap form .form-control,
.form-wrap form .form-select {
  margin: 0 0 20px 0;
  border-radius: 4px;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.3);
  color: #777;
}
.form-wrap form .form-control::-moz-placeholder, .form-wrap form .form-select::-moz-placeholder {
  color: #777;
}
.form-wrap form .form-control::placeholder,
.form-wrap form .form-select::placeholder {
  color: #777;
}
.form-wrap form .form-control:focus,
.form-wrap form .form-select:focus {
  border-color: #613514;
  box-shadow: none;
}
.form-wrap form textarea {
  width: 100%;
  margin: 0 0 20px 0;
  border-radius: 4px;
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.3);
  color: #777;
  padding: 5px;
}
.form-wrap form textarea::-moz-placeholder {
  color: #777;
}
.form-wrap form textarea::placeholder {
  color: #777;
}
.form-wrap form .btn {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 0;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 15px;
  border: 1px solid #613514;
  color: #613514;
  position: relative;
  z-index: 0;
  background-color: #613514;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
}
.form-wrap form .btn:hover {
  color: #fff;
  background-color: #fe1214;
}

/*about page*/
.page-banner {
  padding: 100px 0;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-banner:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.page-banner .container {
  position: relative;
}
.page-banner .container .banr-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.page-banner .container .banr-wrap h2 {
  display: block;
  position: relative;
  padding: 0 20px;
  margin: 0;
  color: #fff;
}
.page-banner .container .banr-wrap span {
  display: inline-block;
  text-align: center;
  position: relative;
  height: 2px;
  width: 30px;
  background-color: #613514;
}
.page-banner .container .banr-wrap span:before {
  content: "";
  width: 20px;
  height: 1px;
  background: #fe1214;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 100%;
}
.page-banner .container .banr-wrap span:after {
  content: "";
  width: 20px;
  height: 1px;
  background: #f4f5da;
  position: absolute;
  bottom: 0;
  top: 0;
  right: 100%;
}
.page-banner .container .banr-wrap .header-bar {
  height: 10px;
  width: 80px;
  background-image: url(../images/bar-icon2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.pgnation .pagination {
  justify-content: center;
  margin: 20px 0 0 0;
}
.pgnation .pagination .page-item .page-link {
  margin: 5px;
  border-color: #f4f5da;
  color: #fff;
  background-color: transparent;
  width: 40px;
  height: 40px;
  line-height: 38px;
  border: 1px solid #613514;
  padding: 0;
  text-align: center;
  color: #613514;
  border-radius: 50%;
}
.pgnation .pagination .page-item .page-link:hover {
  background: #613514;
  border-color: #613514;
  color: #fff;
}
.pgnation .pagination .page-item.active .page-link {
  background: #613514;
  border-color: #613514;
  color: #fff;
}

/*contact us*/
.contact-body {
  padding: 50px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center;
  position: relative;
}
.contact-body:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
}
.contact-body .container {
  position: relative;
}
.contact-body .ft-card {
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  padding: 0 10px 10px 10px;
  flex-direction: column;
  min-height: 142px;
  background-color: #eee;
  border-radius: 5px;
  justify-content: flex-start;
  border-top: 5px solid #f4f5da;
}
.contact-body .ft-card .icon-wrap {
  display: block;
  margin-top: -30px;
  margin-bottom: 20px;
}
.contact-body .ft-card .icon-wrap span {
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 34px;
  background-color: #f4f5da;
  border-radius: 5px;
}
.contact-body .ft-card .ft-dtl {
  text-align: left;
}
.contact-body .ft-card .ft-dtl strong {
  text-transform: capitalize;
  color: #111;
  font-size: 16px;
  display: block;
}
.contact-body .ft-card .ft-dtl small {
  font-weight: 500;
  color: #b22b2c;
  font-size: 18px;
}
.contact-body .ft-card .ft-dtl small a {
  font-weight: 500;
  color: #b22b2c;
}
.contact-body .ft-card .ft-dtl small a:hover {
  color: #613514;
}

.sub-contact {
  padding: 50px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: rgba(20, 69, 47, 0.1);
}
.sub-contact .headings {
  text-align: left;
  margin: 0 0 10px 0;
}
.sub-contact .form-wrap {
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 6px 1px rgba(42, 124, 66, 0.5);
}
.sub-contact .form-wrap .f-headings h3 {
  font-size: 20px;
  display: block;
  border-bottom: 1px solid #fff;
  padding: 0 0 10px 0;
  font-weight: 700;
}
.sub-contact .form-wrap h4 {
  color: #613514;
}
.sub-contact .form-wrap .btn {
  border-radius: 5px;
}
.sub-contact .map-wrap {
  overflow: hidden;
}

.fixed-top {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: 0 !important;
  z-index: 1040;
  animation: slideInDown 1s linear;
}

header .main-head.fixed-top .logo-wrap img {
  width: 80px;
}

.main-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  background-color: #ffffff;
}
.main-loader .logo-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.main-loader .logo-wrap img {
  width: 150px;
}/*# sourceMappingURL=custom.css.map */