@charset "UTF-8";
/*-----------------------------------------------------------------------------------

    Theme Name: Ecomart - Fashion eCommerce HTML Template
    Author: Bdevs
    Support: https://www.devsnews.com/support/
    Description: Ecomart - Fashion eCommerce HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

    01. common CSS
    02. header CSS
    03. banner CSS
    04. product CSS
    05. category CSS
    06. features CSS
    07. blog CSS
    08. testimonial CSS
    09. newsletter CSS
    10. page-title CSS
    11. about CSS
    12. error CSS
    13. contact CSS
    14. shop CSS
    15. faq CSS
    16. register CSS
    17. footer CSS

**********************************************/

/*----------------------------------------
    01. common CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Marcellus&family=Open+Sans:wght@400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  color: #4e4e4e;
  line-height: 26px;
}

a {
  text-decoration: none;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

a,
.btn,
button,
span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "'Marcellus', serif";
  color: #a05b24;
  margin-top: 0px;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 88px;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 400;
}

h3 {
  font-size: 26px;
  line-height: 42px;
  font-weight: 400;
}

h4 {
  font-size: 24px;
  line-height: 34px;
}

h5 {
  font-size: 16px;
  line-height: 30px;
}

h6 {
  font-size: 14px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
  font-family: "'Open Sans', sans-serif";
  font-size: 16px;
  font-weight: normal;
  color: #4e4e4e;
  margin-bottom: 15px;
  line-height: 30px;
}

*::-moz-selection {
  background: #000000;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #000000;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #000000;
  color: #fff;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: #707070;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #707070;
  font-size: 16px;
  opacity: 1;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: #f3f4f6;
}

.pink-bg {
  background: #000000;
}

.white-bg {
  background: #fff;
}

.black-bg {
  background: #000000;
}

.footer-bg-h-6 {
  background: linear-gradient(180deg, #ece0d1 0%, rgba(236, 224, 209, 0) 100%);
}

/*--
    - color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff !important;
}

.white-color {
  color: #fff;
}

.theme-color {
  color: #000000 !important;
}

.black-color {
  color: #000000;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .about-border .about-year {
    font-size: 65px;
    line-height: 1.1;
  }
}

/* link btn */
.link-btn {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  padding-right: 15px;
}
.link-btn i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}
.link-btn i:first-child {
  left: -100%;
  visibility: hidden;
  opacity: 0;
}
.link-btn i:last-child {
  right: 0;
}
.link-btn:hover {
  color: #000000;
}
.link-btn:hover i:first-child {
  left: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn:hover i:last-child {
  right: -100%;
  visibility: hidden;
  opacity: 0;
}

.link-btn-2 {
  position: relative;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  padding-right: 22px;
  display: inline-block;
  text-transform: uppercase;
  font-family: "'Open Sans', sans-serif";
}
.link-btn-2 i {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  font-size: 12px;
}
.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2 i:last-child {
  right: 0;
}
.link-btn-2:hover {
  color: #000000;
}
.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}
.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}
.link-btn-2.pink {
  color: #000000;
}
.link-btn-2.pink:hover {
  color: #000000;
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 84px;
  text-align: center;
  background-color: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #000000;
  animation: pulse 2s infinite;
}
.pulse-btn:hover {
  background-color: #000000;
  color: #fff;
}
.pulse-btn i {
  padding-left: 2px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.border-left {
  position: relative;
}
.border-left:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #eaebee;
  left: 0;
  top: 0;
}

:root {
  /**
    @font family declaration
    */
  --bd-ff-body: "Open Sans", sans-serif;
  --bd-ff-heading: "Marcellus", serif;
  --bd-ff-fontawesome: "Font Awesome 5 Pro";
  /**
    @color declaration
    */
  --clr-common-white: #fff;
  --clr-common-black: #000000;
  --clr-common-blue: #2785ff;
  --clr-common-heading: #a05b24;
  --clr-common-text: #4e4e4e;
  --clr-common-text2: #a05b24;
  --clr-common-text3: #1c1c1c;
  --clr-common-text4: #f2f2f2;
  --clr-common-text5: #1b1b1b;
  --clr-common-border: #eaebee;
  --clr-common-placeholder: #707070;
  --clr-common-button: #492912;
  --clr-common-border2: rgba(78, 78, 78, 0.16);
  --clr-theme-1: #171717;
  --clr-theme-2: #fb5050;
  --clr-bg-gray: #f3f4f6;
  --clr-bg-black: #000;
  --clr-bg-footer: #f6f6f6;
  --clr-bg-3: #d9d9d9;
  --clr-bg-4: #ece0d1;
  --clr-bg-5: #ff9b24;
  --clr-bg-6: linear-gradient(180deg, #ece0d1 0%, rgba(236, 224, 209, 0) 100%);
}

.bg-gray {
  background-color: #f3f4f6;
}

.fill-btn {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  background: #a05b24;
  height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0 52px;
  position: relative;
  overflow: hidden;
  justify-content: center;
}
.fill-btn::before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  background: #492912;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.fill-btn:hover:before {
  width: 100%;
}

.border-btn {
  font-size: 16px;
  color: #a05b24;
  border: 1px solid #a05b24;
  padding: 0 40px;
  height: 50px;
  border-radius: 5px;
  display: inline-block;
  line-height: 48px;
  font-weight: 600;
  text-align: center;
}
.border-btn:hover {
  color: #fff;
  background: #a05b24;
}

.section-main-title {
  font-size: 48px;
  line-height: 64px;
  font-weight: 400;
  color: #000000;
  margin-top: 12px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #a05b24;
  line-height: 24px;
}

.hr1 {
  border-bottom: 1px solid #dcdcdc;
}

/*----------------------------------------
   Flaction customize
-----------------------------------------*/
i[class^="flaticon-"] {
  line-height: 1;
  top: 2px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/*----------------------------------------
    02. header CSS
----------------------------------------*/
.sticky {
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 800;
  right: 0;
  left: 0;
  width: 100%;
  transition: 0.4s;
  box-shadow: 0 0 60px 0 rgba(53, 57, 69, 0.15);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  border: none;
}

.header-top-area.header-bg {
  background: #492912;
  padding: 9px 0;
  padding-left: 28px;
  padding-right: 28px;
  margin-right: 82px;
}
@media (max-width: 575px) {
  .header-top-area.header-bg {
    padding-right: 0;
    padding-left: 0;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}
@media (max-width: 499px) {
  .header-top-area.header-bg {
    padding-right: 0;
    padding-left: 0;
    margin-right: 0;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}

.zom-header-note {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zom-header-note-icon {
  background: #fff;
  width: 21px;
  height: 21px;
  line-height: 21px;
  text-align: center;
  border: 50%;
  border-radius: 50%;
}

.zom-header-text p {
  margin: 0;
  color: #fff;
}

.location-icon i {
  background: #fff;
  color: #492912;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  line-height: 21px;
  text-align: center;
  margin-right: 7px;
  font-size: 12px;
}
.location-icon i a {
  color: #fff;
}

.mail-icon i {
  background: #fff;
  color: #492912;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  line-height: 21px;
  text-align: center;
  margin-right: 7px;
  font-size: 12px;
}
.mail-icon i a {
  color: #fff;
}

.zom-header-meta {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (max-width: 499px) {
  .zom-header-meta {
    display: block;
  }
  .facility-shape {
    display: none;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .zom-header-meta {
    justify-content: start;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}

.location-icon {
  margin-right: 30px;
}

.header-logo.header1-logo {
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-logo.header1-logo {
    text-align: left;
  }
  .facility-shape {
    display: none;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}

.header-main {
  padding-right: 28px;
  padding-left: 28px;
}
@media (max-width: 575px) {
  .header-main {
    padding-right: 0;
    padding-left: 0;
  }
  .testimonial-slider-wrapper .square-btn {
    display: none;
  }
}

.main-menu {
  display: inline-block;
}
.main-menu ul li {
  display: inline-block;
  margin-right: 36px;
  position: relative;
  list-style: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li {
    margin-right: 15px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .main-menu ul li {
    margin-right: 27px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 13px;
  }
  .facility-shape {
    display: none;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
}
.main-menu ul li a {
  font-size: 16px;
  color: #a05b24;
  text-transform: inherit;
  display: inline-block;
  padding: 35px 0;
  line-height: 20px;
  font-weight: 500;
}
.main-menu ul li .sub-menu {
  background: #fff none repeat scroll 0 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 120%;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 240px;
  z-index: 9;
  border-top: 4px solid #a05b24;
  text-align: left;
  padding: 15px 0;
}
.main-menu ul li .sub-menu .sub-menu {
  left: 100%;
  top: 100%;
}
.main-menu ul li .sub-menu li {
  display: flex;
  margin: 0px;
  padding: 8px 25px 8px 25px;
  justify-content: space-between;
}
.main-menu ul li .sub-menu li a {
  padding: 0px;
  display: block;
  color: #a05b24;
  position: relative;
  font-weight: 400;
}
.main-menu ul li .sub-menu li a:before {
  content: "";
  width: 0;
  height: 1px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: #a05b24;
  opacity: 0;
}
.main-menu ul li .sub-menu li:hover > a {
  color: #4e4e4e;
  padding-left: 5px;
}
.main-menu ul li .sub-menu li:hover > a:before {
  width: 100%;
  left: 0;
  right: auto;
}
.main-menu ul li:hover > a {
  color: #4e4e4e;
}
.main-menu ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li:hover > .sub-menu li:hover > .sub-menu {
  top: 0;
}

/* bar-icon style start */
.bar-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.bar-icon span {
  width: 100%;
  height: 2px;
  background: #000;
  display: inline-block;
}

.bar-icon span:nth-child(2) {
  margin-left: 9px;
  transition: 0.3s;
}

.bar-icon:hover span:nth-child(2) {
  margin-left: 0;
}

/* bar-icon style end */
/* mean menu */
div.mean-container .mean-bar {
  background: transparent;
}
div.mean-container .mean-nav {
  background: none;
  margin-bottom: 40px;
  overflow: hidden;
}
div.mean-container .mean-nav > ul {
  display: block !important;
}
div.mean-container .mean-nav ul li a {
  width: 100%;
  color: #a05b24;
  border-top: 1px solid #eaebee;
  font-size: 16px;
  text-transform: none;
  opacity: 1;
  padding-left: 0;
}
div.mean-container .mean-nav ul li a:hover {
  color: #171717;
}
div.mean-container .mean-nav ul li a i {
  display: none;
}
div.mean-container .mean-nav ul li a.mean-expand {
  height: 26px;
  border: none;
  background: #f6f6f6;
  padding: 10px 5%;
}
div.mean-container .mean-nav ul li a.mean-expand::before {
  position: absolute;
  content: "+";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
div.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  content: "-";
}
div.mean-container .mean-nav ul li li a {
  padding: 10px 5%;
}
div.mean-container .mean-nav ul li li li a {
  padding: 10px 10%;
}
div.mean-container a.meanmenu-reveal {
  display: none !important;
}

.header-main-left {
  display: flex;
  align-items: center;
}

.cta-icon {
  display: flex;
  justify-content: end;
  gap: 55px;
  align-items: center;
}

.header-action-list {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 50px;
}

.action-item .action-btn {
  font-size: 25px;
}

.single-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-right: 82px;
  padding-left: 225px;
  padding-top: 200px;
  padding-bottom: 220px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .single-hero {
    padding: 0 0 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-hero {
    padding: 0 0 0 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-hero {
    min-height: 700px;
    padding-left: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-hero {
    min-height: 650px;
    padding-left: 30px;
  }
}
@media (max-width: 575px) {
  .single-hero {
    min-height: 550px;
    padding-left: 30px;
  }
}
@media (max-width: 575px) {
  .single-hero {
    margin-right: 0;
  }
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.hero-img2 {
  position: absolute;
  background-repeat: no-repeat;
  right: -115px;
  transform: rotate(7.61deg);
  top: 83px;
}
.hero-img2 img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-img2 img {
    max-width: 90%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-img2 img {
    max-width: 70%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-img2 img {
    max-width: 55%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-img2 {
    right: -195px;
    top: 103px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-img2 {
    right: -369px;
    top: 142px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-img2 {
    right: -45%;
    top: 208px;
  }
}

.hero-bg::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero-bg::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #492912 0.21%, rgba(74, 42, 19, 0.3) 100%);
}

.hero-sub-text {
  margin-bottom: 12px;
}
.hero-sub-text span {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  line-height: 24px;
}

.hero-title {
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 30px;
  font-size: 88px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 38px;
  }
  .subscribe-overlay {
    display: none;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 36px;
  }
  .single-hero {
    margin-right: 0px;
  }
}
@media (max-width: 499px) {
  .hero-title {
    font-size: 35px;
  }
  .single-hero {
    margin-right: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-img2 {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}
.hero-content p {
  margin: 0;
  color: #fff;
  margin-bottom: 50px;
  font-size: 19px;
}

.hero-btn .btn-text {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-img {
  position: relative;
}
.hero-img img {
  position: absolute;
  transform: translateY(-50%) rotate(7.61deg);
  top: 217px;
  left: 20px;
}

.hero-social {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.hero-social ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-social ul li a {
  font-size: 25px;
}
.hero-social ul li a:hover {
  color: #a05b24 !important;
}

.single-service {
  margin-left: 56px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-service {
    margin-left: 0;
  }
}
.single-service .service-icon {
  width: 112px;
  height: 112px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  background: #492912;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service .service-icon {
    font-size: 35px;
    width: 90px;
    height: 90px;
    top: 0;
    left: 50%;
  }
  .single-hero {
    margin-right: 80px;
  }
}
.single-service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #492819;
  z-index: -1;
  opacity: 0;
  transition: 0.6s;
}
.single-service .service-shape {
  position: absolute;
  top: 0px;
  right: 0px;
  opacity: 0;
}
.single-service:hover::before {
  opacity: 1;
}
.single-service:hover .service-shape {
  opacity: 1;
}
.single-service:hover .single-service-content p {
  color: #f2f2f2;
}
.single-service:hover .service-title a {
  color: #fff;
}
.single-service:hover .service-icon {
  background: #a05b24;
}

.single-service-content {
  border: 1px solid #eaebee;
  padding: 44px 20px 44px 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service-content {
    padding: 70px 40px 35px 38px;
    margin-bottom: 70px;
  }
}

.single-service-content p {
  margin: 0;
}

.service-title {
  color: #1c1c1c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-title {
    font-size: 23px;
  }
}

.service-btn .fill-btn {
  padding: 15px 39px;
}

.header-features-list {
  display: flex;
  gap: 108px;
  align-items: center;
}
@media (max-width: 499px) {
  .header-features-list {
    display: block;
  }
}

.list-icon i {
  width: 32px;
  height: 32px;
  font-size: 16px;
  background: #492912;
  text-align: center;
  line-height: 32px;
  border-radius: 50%;
  margin-right: 7px;
  color: #fff;
}
.list-icon a {
  font-size: 20px;
}
@media (max-width: 499px) {
  .list-icon {
    margin-bottom: 20px;
  }
}

.about-thumb {
  margin-left: 135px;
  position: relative;
  max-width: 490px;
  margin-bottom: 60px;
}
.about-thumb img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb {
    margin-left: 53px;
  }
}
@media (max-width: 499px) {
  .about-thumb {
    margin-left: 0;
  }
}

.about-thumb-meta {
  position: absolute;
  background: #492912;
  width: 271px;
  padding: 12px;
  top: 50%;
  transform: translate;
  transform: translate(-50%, -50%);
}

.about-thumb-meta .about-year {
  font-size: 88px;
  line-height: 88px;
  letter-spacing: 0.1em;
  color: #fff;
}

.about-thumb-meta .about-title {
  font-weight: 600;
  color: #fff;
  display: inline-block;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb-meta {
    width: 220px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb-meta {
    left: 18%;
    padding: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb-meta {
    font-size: 40px;
    line-height: 1;
  }
}

.about-border {
  border: 1px solid #a05b24;
  padding: 10px;
}
.about-border .about-year {
  font-size: 88px;
  line-height: 1.1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-border .about-year {
    font-size: 70px;
    line-height: 1;
  }
}
/* Small */
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-border .about-year {
    font-size: 63px;
    line-height: 1;
  }
}

.about-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #a05b24;
  position: absolute;
  bottom: -10px;
  z-index: -1;
  left: -10px;
}

.about-content {
  margin-left: 9px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about-area .section-main-title {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-area .section-main-title {
    font-size: 30px;
    line-height: 1.5;
  }
}
@media (max-width: 499px) {
  .about-area .section-main-title {
    font-size: 25px;
    line-height: 1.5;
  }
}

.promotion-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0;
}

.promotion-text {
  text-transform: capitalize;
  font-size: 88px;
  line-height: 102px;
  color: #1c1c1c;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .promotion-text {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .promotion-text {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .promotion-text {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .promotion-text {
    font-size: 35px;
    line-height: 1;
  }
}

.promotion-icon i {
  font-size: 80px;
  color: #a05b24;
}

.promotion-area {
  position: relative;
  border-top: 2px solid #a05b24;
}
.promotion-area::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #ece0d1 0%, rgba(255, 255, 255, 0) 90.52%);
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.product-name {
  position: relative;
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.product-name a {
  color: #000000;
}
.product-name a:hover {
  color: #a05b24;
}
.product-name::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 2px;
  background: #a05b24;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.product-content .text-color {
  color: #000000;
}

.product-content {
  text-align: center;
}

.product-slide-wrapper .product-pagination {
  text-align: center;
  margin-top: 35px;
}

.circle-dot-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  border: 1px solid transparent;
  border-radius: 50%;
  display: inline-block;
  border-radius: 50%;
  margin: 1px !important;
  position: relative;
  background: none;
}
.circle-dot-pagination .swiper-pagination-bullet-active {
  border-color: #492912;
}
.circle-dot-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #492912;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.facility-btn.product-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%);
  transition: 0.5s;
  rotate: -45deg;
}

.product-thumb:hover .facility-btn.product-btn {
  opacity: 1;
  visibility: visible;
}

.product-thumb {
  margin-bottom: 15px;
  position: relative;
}
.product-thumb::before {
  content: "";
  position: absolute;
  background: #492912;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.product-thumb:hover::before {
  height: 100%;
  opacity: 0.3;
}
.product-thumb:hover .facility-btn.product-btn {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}
.product-thumb img {
  width: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .product-area .section-main-title {
    font-size: 35px;
    line-height: 1;
  }
}
@media (max-width: 499px) {
  .product-area .section-main-title {
    font-size: 30px;
    line-height: 1.3;
  }
}

.facility-style {
  position: relative;
}

.facility-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  background: #492912;
  z-index: -1;
  top: 0;
  left: 0;
}

.text-clr {
  color: #f2f2f2;
  margin: 0;
  margin-bottom: 35px;
}

.text-clr2 {
  color: #f2f2f2;
  margin: 0;
}

.facility-btn {
  width: 56px;
  height: 56px;
  background: #a05b24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}

.single-facility-content {
  position: relative;
  text-align: center;
  margin-bottom: 0;
  padding: 53px 20px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: 0.5s;
}

.single-facility {
  position: relative;
  margin-top: 32px;
}
.single-facility:hover .single-facility-content {
  border-color: #653413;
  background: #653413;
}
.single-facility:hover .facility-icon {
  background: #a05b24;
  color: #fff;
}

.single-facility .facility-icon {
  width: 80px;
  height: 80px;
  border: 5px solid #492912;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 47px;
  background: #653413;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: 0.5s;
}

.facility-shape-wrapper {
  position: relative;
}

.facility-shape {
  position: absolute;
  top: 349px;
  left: 133px;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .facility-area .section-main-title {
    font-size: 35px;
    line-height: 1;
  }
}
@media (max-width: 499px) {
  .facility-area .section-main-title {
    font-size: 30px;
    line-height: 1;
  }
}

.mdc-featured-info {
  border: 1px solid #f2f2f2;
}

.feature-icon {
  color: #a05b24;
  font-size: 14px;
  margin-bottom: 11px;
}

.featured-btn {
  color: #fff;
  background: #492912;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 33px;
  border-radius: 50px;
  width: 156px;
  display: inline-block;
}

.mdc-featured-img {
  background: #ece0d1;
  margin-bottom: 7px;
  position: relative;
}
.mdc-featured-img img {
  width: 100%;
}

.mdc-featured-price {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 19px;
}

.mdc-featured-inner {
  text-align: center;
}
.mdc-featured-inner .mdc-featured-title h4 {
  font-weight: 400;
  color: #000000;
}

.mdc-price-after span {
  color: #a05b24;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
}

.mdc-price-before span {
  text-decoration: line-through;
  color: #1c1c1c;
  font-size: 18px;
  font-weight: 500;
  opacity: 0.4;
  line-height: 30px;
}

.featured-style {
  text-align: center;
}

.featured-style .nav {
  display: inline-flex;
  justify-content: center;
  gap: 40px;
}

.featured-style .nav-link {
  font-size: 16px;
  font-weight: 400;
  border: 0;
  line-height: 36px;
  position: relative;
  color: #000000;
}
.featured-style .nav-link::after {
  position: absolute;
  content: "";
  bottom: -2px;
  left: auto;
  right: 0;
  width: 0%;
  height: 4px;
  background-color: #000000;
}

.featured-style .nav-tabs {
  border-bottom: 1px solid #f2f2f2;
  margin-bottom: 30px;
  padding-bottom: 1px;
}

.nav-link {
  padding: 0px;
}

.featured-style .nav-tabs .nav-item.show .nav-link::after,
.nav-tabs .nav-link.active::after {
  width: 100%;
  left: 0;
  right: auto;
}

.featured-btn:hover {
  color: #fff;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #a05b24;
}

.feature-btn {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  background: #a05b24;
  height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0 52px;
  position: relative;
  overflow: hidden;
  justify-content: center;
  width: 100%;
}
.feature-btn::before {
  position: absolute;
  width: 0;
  height: 60px;
  content: "";
  background: #492912;
  left: 0;
  top: 0;
  /* z-index: 1; */
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.feature-btn:hover::before {
  width: 100%;
}

.mdc-featured-title {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mdc-featured-title {
    padding: 0 5px;
  }
}

.mdc-featured-img::before {
  content: "";
  position: absolute;
  background: #492912;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  opacity: 0.9;
  transition: 0.6s;
}
.mdc-featured-img:hover::before {
  height: 100%;
  opacity: 0.4;
}
.mdc-featured-img:hover .feature-overlay-icon {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

.feature-overlay-icon > a {
  color: #492912;
  height: 39px;
  width: 39px;
  display: inline-block;
  margin: 0 5px;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.2s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-overlay-icon {
  position: absolute;
  top: 50%;
  left: 0%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%, -50%);
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-area .section-main-title {
    font-size: 35px;
    line-height: 1;
  }
}
@media (max-width: 499px) {
  .featured-area .section-main-title {
    font-size: 30px;
    line-height: 1;
  }
}

.choose-bg {
  position: relative;
  overflow: hidden;
}

.choose-thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.choose-thumb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #1c1c1c;
  opacity: 0.5;
  top: 0;
  left: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .choose-thumb {
    position: sticky;
    height: 550px;
    width: 100%;
  }
}

.video-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-btn-new {
  width: 150px;
  height: 150px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 56px;
  border: 1px solid #a05b24;
  color: #492912;
}

.video-btn-new:hover {
  color: #4e4e4e;
}

.choose-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.choose-item a {
  font-size: 40px;
  width: 75px;
  min-width: 75px;
  height: 75px;
  background: #492912;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.choose-item a:hover {
  background: #a05b24;
  border-color: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .choose-item a {
    font-size: 35px;
    width: 65px;
    min-width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .choose-item {
    gap: 13px;
  }
}

.choose-space {
  padding-left: 38px;
  padding-top: 120px;
  padding-bottom: 0px;
}

.choose-overlay2 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ece0d1;
  right: 0;
  z-index: -1;
}

.choose-item .text-bg {
  color: #1c1c1c;
  font-weight: 400;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-item .text-bg {
    font-size: 20px;
  }
}

.choose-content {
  margin-top: 120px;
  margin-bottom: 95px;
  margin-left: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .choose-content {
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .choose-area .section-main-title {
    font-size: 35px;
    line-height: 1.3;
  }
}
@media (max-width: 499px) {
  .choose-area .section-main-title {
    font-size: 30px;
    line-height: 1.3;
  }
}

.testimonial-quote {
  font-size: 70px;
  color: #a05b24;
}

.testimonial-wrapper {
  border: 1px solid #ece0d1;
  padding: 45px 40px 0px;
  margin-bottom: 100px;
}
.testimonial-wrapper p {
  font-size: 22px;
  line-height: 36px;
  margin-bottom: 0;
}
@media (max-width: 499px) {
  .testimonial-wrapper {
    padding: 0px 10px 0px;
  }
}

.testimonial-author-info {
  margin-bottom: -100px;
  margin-top: 37px;
}

.testimonial-designation {
  color: #1c1c1c;
  margin-bottom: 3px;
  margin-top: 8px;
}

.testimonial-thumb {
  position: relative;
  z-index: 2;
  display: inline-flex;
}
.testimonial-thumb:before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  background: white;
  border: 2px solid rgba(78, 78, 78, 0.16);
  border-radius: 50%;
  z-index: -1;
  left: -8px;
  top: -8px;
}

.testimonial-icon {
  color: #ff9b24;
}

.testimonial-slider-wrapper .square-btn {
  position: absolute;
  width: 64px;
  height: 64px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  left: -170px;
  top: 140px;
  font-size: 35px;
  color: #1c1c1c;
  border: 1px solid #1c1c1c;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-wrapper .square-btn {
    left: -85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-wrapper .square-btn {
    width: 40px;
    height: 40px;
    left: 0;
    top: 70px;
  }
}
.testimonial-slider-wrapper .square-btn:hover {
  background: #a05b24;
  color: #fff;
  border-color: #a05b24;
}
.testimonial-slider-wrapper .square-btn.testimonial-slider-button-next {
  left: auto;
  right: -170px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-wrapper .square-btn.testimonial-slider-button-next {
    right: -85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-slider-wrapper .square-btn.testimonial-slider-button-next {
    top: 70px;
    right: 0;
  }
}

.blog-bg2 {
  position: relative;
}
.blog-bg2::before {
  content: "";
  position: absolute;
  background: #ece0d1;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}

.latest-blog-thumb {
  position: relative;
  margin-bottom: 15px;
}
.latest-blog-thumb.w-img img {
  width: 100%;
}
.latest-blog-tag {
  position: absolute;
  left: 0px;
  top: 20px;
  z-index: 1;
}
.latest-blog-tag a {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border: 0;
  background-color: #a05b24;
  border-radius: 0;
  padding: 2px 8px 0px;
  line-height: 1px;
}
.latest-blog-tag a:hover {
  color: #492912;
}
.latest-blog-content-meta {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4e4e4e;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}
.latest-blog-content-meta span {
  margin-right: 13px;
  position: relative;
  display: flex;
  align-items: center;
}
.latest-blog-content-meta span:last-child {
  margin-right: 0;
}
.latest-blog-content-meta span:nth-child(n + 2)::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #4e4e4e;
  border-radius: 50%;
  left: -13px;
}
.latest-blog-content-title {
  font-weight: 400;
  color: #000000;
  text-decoration: underline;
}
.latest-blog-content-title:hover {
  color: #a05b24;
}

.blog-btn {
  padding: 32px 58px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px),
  only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .latest-blog-area .section-main-title {
    font-size: 35px;
    line-height: 1.3;
  }
}
@media (max-width: 499px) {
  .latest-blog-area .section-main-title {
    font-size: 30px;
    line-height: 1.3;
  }
}

.brand-wrapper {
  border-top: 1px solid rgba(78, 78, 78, 0.16);
  border-bottom: 1px solid rgba(78, 78, 78, 0.16);
  padding-top: 30px;
  padding-bottom: 30px;
}

.zom-brand img {
  opacity: 0.3;
}
.zom-brand img:hover {
  opacity: 1;
}

.subscribe-wrapper {
  position: relative;
  background: #a05b24;
  margin-bottom: -149px;
  z-index: 1;
}
.subscribe-wrapper .subscribe-overlay {
  position: absolute;
  left: 102px;
  transform: rotate(90.15deg);
  top: -70px;
  transform: matrix(1, 0, 0, -1, 0, 0);
}

.subscribe-area-new .section-main-title {
  font-size: 43px;
  color: #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .subscribe-area-new .section-main-title {
    font-size: 35px;
  }
}
@media (max-width: 499px) {
  .subscribe-area-new .section-main-title {
    font-size: 30px;
    line-height: 1.5;
  }
}
.subscribe-area-new .section-subtitle {
  color: #fff;
}

.subscribe-btn {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  background: #a05b24;
  border: 1px solid #a05b24;
  height: 60px;
  line-height: 0px;
  padding: 27px 33px;
  text-transform: capitalize;
}

.subscribe-content {
  padding: 60px 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe-content {
    padding: 60px 40px;
  }
}
@media (max-width: 499px) {
  .subscribe-content {
    padding: 60px 20px;
  }
}

.subscribe {
  position: relative;
}

.subscribe-thumb {
  position: absolute;
  background: #492912;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.subscribe-form {
  padding: 115px 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe-form {
    padding: 155px 40px;
  }
}
@media (max-width: 499px) {
  .subscribe-form {
    padding: 115px 20px;
  }
}

.subscribe-form-input {
  position: relative;
}
.subscribe-form-input input {
  width: 100%;
  height: 66px;
  border: 2px solid #fff;
  background: #fff;
  padding: 0 20px;
  outline: none;
  color: #4e4e4e;
}
.subscribe-form-input input::placeholder {
  color: #4e4e4e;
  opacity: 0.3;
}
.subscribe-form-input button {
  position: absolute;
  right: 5px;
  height: 50px;
  top: 5px;
  background: #a05b24;
}
@media (max-width: 575px) {
  .subscribe-form-input button {
    top: 75px;
    left: 0;
  }
}

/*----------------------------------------
    17. footer CSS
----------------------------------------*/
.footer-bg-h-6 {
  position: relative;
  padding-top: 240px;
}
.main-footer.footer-6-bg .footer-logo {
  max-width: 200px;
}
.main-footer.footer-6-bg .footer-logo img {
  width: 100%;
}
.footer-social ul {
  display: flex;
  gap: 10px;
}
.footer-social ul li a {
  font-size: 25px;
}
.footer-social ul li a:hover {
  color: #a05b24;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-social {
    margin-bottom: 25px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
  .hero-img2 {
    display: none;
  }
}

.footer-widget p {
  color: #4e4e4e;
  margin: 0;
  margin-bottom: 35px;
}
.footer-widget-title h4 {
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 10px;
}
.footer-widget-title h4::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 3px;
  background: #492912;
  left: 0;
  bottom: 0;
}
.footer-widget-content ul li {
  list-style: none;
  margin-bottom: 6px;
}
.footer-widget-content ul li a {
  font-size: 16px;
  line-height: 30px;
}
.footer-widget-content ul li .single-contact {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}
.footer-widget-content ul li .single-contact .contact-icon {
  font-size: 21px;
  margin-top: 3px;
}
.footer-widget.footer-widget2 {
  margin-left: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.footer-widget2 {
    margin-left: 123px;
  }
  .single-hero {
    margin-right: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget.footer-widget2 {
    margin-left: 45px;
  }
  .single-hero {
    margin-right: 80px;
  }
}
@media (max-width: 575px) {
  .footer-widget.footer-widget2 {
    margin-left: 20px;
  }
  .single-hero {
    margin-right: 0px;
  }
}
@media (max-width: 575px) {
  .footer-widget.footer-widget2 {
    margin-left: 0;
  }
  .single-hero {
    margin-right: 0px;
  }
}
.footer-widget.footer-widget3 {
  margin-left: 64px;
}
/*Medium*/
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width: 499px) {
  .footer-widget.footer-widget3 {
    margin-left: 0px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}
.footer-widget.footer-widget4 {
  margin-left: 12px;
}
/*Medium*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.footer-widget4 {
    margin-left: 120px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .single-hero {
    margin-right: 0px;
  }
}
/*Small Device*/
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget.footer-widget4 {
    margin-left: 45px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .about-border .about-year {
    font-size: 65px;
  }
  .single-hero {
    margin-right: 0px;
  }
}
/*Extra Small*/
@media (max-width: 575px) {
  .footer-widget.footer-widget4 {
    margin-left: 20px;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .about-border .about-year {
    font-size: 65px;
  }
}
@media (max-width: 499px) {
  .footer-widget.footer-widget4 {
    margin-left: 0;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .about-border .about-year {
    font-size: 65px;
  }
  .single-hero {
    margin-right: 0px;
  }
}

/*--------------------
copyright-area 
-----------------*/
.go-top {
  width: 66px;
  height: 66px;
  text-align: center;
  display: inline-block;
  background: #492912;
  line-height: 66px;
  font-size: 20px;
  color: #fff;
}
.go-top:hover {
  background: #a05b24;
  color: #fff;
}

.copyright-bg {
  background: #ece0d1;
  padding: 0 25px;
}

.copyright-text p {
  color: #1b1b1b;
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}

.copyright-design {
  color: #1b1b1b;
  text-align: end;
}
.copyright-design p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
@media (max-width: 575px) {
  .copyright-design {
    text-align: left;
  }
  .testimonial-slider-btn .square-btn {
    display: none;
  }
  .about-border .about-year {
    font-size: 65px;
    line-height: 1.1;
  }
}

.copyright-design .copyright-design-inner i {
  padding: 0 8px;
  color: #d91b1b;
}

/*====================
      Modified  
=====================*/
.header-features-list.mb-60 a {
  color: #4e4e4e;
}

.facility-content.pb-60 .facility-btn a {
  color: #fff;
}
.hero-social ul li {
  list-style: none;
}

.hero-social ul li a {
  color: #4e4e4e;
}

.single-service-content h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 40px;
  font-family: "Marcellus", serif;
}

.hero-content span,
.hero-content h1 {
  font-family: "Marcellus", serif;
}

.about-border .about-year {
  font-size: 80px;
  line-height: 1.1;
}

.section-main-title {
  font-family: "Marcellus", serif;
}

.facility-content span,
.facility-content h2 .product-wrapper > .product-content h3,
.product-content p,
.mdc-featured-info,
.facility-content p {
  font-family: "Open Sans ", sans-serif;
}
.choose-item h4,
.single-facility-content p,
.single-facility-content h4 {
  font-family: "Marcellus", serif;
}

.single-facility-content p {
  color: #fff;
}

.choose-item h4 {
  font-size: 24px;
  line-height: 34px;
}

.testimonial-author-info {
  margin-bottom: -200px;
  margin-top: 37px;
}

.latest-blog .latest-blog-content-title {
  font-family: "Marcellus", serif;
}

.choose-content p {
  font-family: "Open Sans ", sans-serif;
  font-size: 16px;
  color: #333;
}

.single-service-content p {
  font-family: "Open Sans ", sans-serif;
  font-size: 16px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-hero {
    margin-right: 0;
  }
}

.testimonial-wrapper.swiper-slider {
  background: #fff;
}

.fill-btn {
  z-index: 5;
}
.fill-btn::before {
  z-index: -1;
}

a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  color: #ffffff;
  text-decoration: none;
}

.single-facility .single-facility-content h4 {
  font-size: 21px;
  margin-bottom: 10px;
}

/* Rating */
.feature-icon .pro-rating li {
  list-style: none;
  display: inline-block;
}

.feature-overlay-icon .add_to_wishlist.wishlist-rd {
  color: #492912;
  height: 39px;
  width: 39px;
  /* display: inline-block; */
  margin: 0 5px;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.2s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-overlay-icon > a i {
  font-size: 16px;
}
.feature-overlay-icon .add_to_wishlist.wishlist-rd i {
  font-size: 16px;
}

.feature-overlay-icon .add_to_wishlist.wishlist-rd:hover i {
  color: #fab522;
}

/* update css for server */
.facility-content .section-main-title {
  color: #fff;
}

.single-facility .single-facility-content .facility-title a {
  color: #fff;
}

.main-menu ul li {
  margin-right: 15px;
}

.footer-6-bg {
  background: linear-gradient(180deg, #ece0d1 0%, rgba(236, 224, 209, 0) 100%);
  position: relative;
  padding-top: 240px;
}

.footer-widget-6 p {
  color: #4e4e4e !important;
  font-size: 16px;
  margin: 0;
  margin-bottom: 35px;
  opacity: 1;
}

.footer-widget-6 .footer-social ul li a {
  color: #4e4e4e !important;
}

.footer-widget.footer-widget2 ul li a {
  color: #4e4e4e;
}
.footer-widget.footer-widget3 ul li a {
  color: #4e4e4e;
}

.footer-widget-content ul li .single-contact a {
  color: #4e4e4e;
}

.footer-widget-content ul li .single-contact .contact-icon i {
  color: #4e4e4e;
}

.header-action-list .action-item i {
  color: #4e4e4e;
}

.header-main.header-main1 {
  padding: 20px 0px;
}

#menu-left-menu {
  display: block;
}

.footer-widget .footer-widget-title h4 {
  color: #a05b24;
}

.sidebar-7 .mobile-menu .mean-bar .mean-nav ul {
  display: block !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service-content {
    padding: 50px 31px 40px 40px;
    margin-bottom: 70px;
  }

  .footer-widget.footer-widget4 {
    margin-left: 20px;
  }
}

.header-main.header-main1 {
  padding: 10px 0px;
}
