@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
  background-color: #f5f2ed;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

p {
  font-weight: 400;
}


/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: 'Zolina';
  src: url(../fonts/Zolina_Medium.ttf);
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #362c24;
  color: #fff;
  border-color: #362c24;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(54, 44, 36, 0.3);
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Zolina';
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Zolina';
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 30px;
}

h3 {
  font-family: 'Zolina';
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Zolina';
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Zolina';
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

select {
  background: #fff url('../images/arrow.png') no-repeat right;
  padding: 0 40px 0 30px;

}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 20px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 110px;
}

.ul-head {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  gap: 40px;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #393939;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
}

.menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
  display: none;
}

.menuSec ul li:last-child a {
  padding-right: 0px;
  gap: unset !important;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.cont-ank {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-1 {
  font-size: 18px;
  color: #fff !important;
  padding: 12px 35px;
  background-color: #897667;
  border-radius: 100px;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: none;
  white-space: nowrap;
  text-decoration: none !important;
  height: unset !important;
  width: unset !important;
  border-radius: 100px !important;
}

.btn-1::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: #362c24;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-1:hover {
  color: #fff !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(137, 118, 103, 0.4);
}

.btn-1:hover::before {
  width: 300%;
  height: 500%;
}

.btn-1:active {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(137, 118, 103, 0.4);
}

.cont-ank a {
  color: #fff;
  font-size: 20px;
  background-color: #897667;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cont-ank a:hover {
  background-color: #362c24;
  transform: rotate(360deg);
}

.menuSec .row {
  align-items: center;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #000;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
  display: none;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/*banner start*/
section.banner {
  padding: 100px 0px;
  position: relative;
}

.banner-txt h1 {
  font-size: 89px;
  line-height: 1.2;
  color: #362c24;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.banner-txt h1 span {
  display: block;
}

.banner-txt p {
  font-size: 17px;
  color: #141414;
  width: 85%;
}

.banner-txt ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* btn-1 handled globally above */


.banner-img {
  position: absolute;
  right: 0;
  width: 56%;
  margin-top: 50px;
}

.banner-img img {
  width: 100%;
}

.banner-txt ul li a {
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  gap: 10px;
  display: flex;
  align-items: center;
  text-decoration: underline;
}

/*banner end*/

/*top-slid start*/
.sale-text h2 {
  font-size: 35px;
  font-family: 'Poppins';
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #fff;
  margin: unset;
  position: relative;
}

.saleSlider .slick-active {
  opacity: 1;
}

.saleSlider .slick-slide {
  opacity: 1;
}

.sale-text h2::before {
  position: absolute;
  left: -50px;
  top: 20px;
  width: 25px;
  height: 25px;
  content: '';
  background-color: #fff;
  border-radius: 50%;
}

section.to-slid {
  padding: 25px 0px;
  background-color: #897667;
}

.container-fluid {
  padding: 0 5%;
}

/*top-slide end*/

/* why-still-healing start */
.why-still-healing {
  padding: 100px 0;
  overflow: hidden;
}

.why-img-1 img {
  border-radius: 50px;
  width: 100%;
  height: 720px;
  object-fit: cover;
}

.why-txt {
  text-align: right;
  margin-bottom: 30px;
  padding-top: 40px;
}

.why-txt h2 {
  font-size: 62px;
  line-height: 1;
  color: #362c24;
  margin-bottom: 35px;
}

.why-txt p {
  font-size: 17px;
  color: #362c24;
  max-width: 570px;
  margin-left: auto;
  margin-bottom: 60px;
}

.why-img-2-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0px;
}

.why-img-2 {
  width: 75%;
  margin-top: 40px;
}

.why-img-2 img {
  border-radius: 50px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.view-products-badge {
  position: absolute;
  left: 84px;
  top: -14%;
  width: 200px;
  height: 200px;
  background-color: #897667;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transform: translateX(-50%);
}

.view-products-badge svg {
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
}

.view-products-badge text {
  fill: #fff;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0px;
  text-transform: uppercase;
}

.badge-hole {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #f5f2ed;
  border-radius: 50%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* media queries */
@media (max-width: 991px) {
  .why-txt h2 {
    font-size: 50px;
  }

  .view-products-badge {
    width: 150px;
    height: 150px;
  }

  .badge-hole {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 767px) {
  .why-txt {
    text-align: left;
    margin-top: 40px;
  }

  .why-txt p {
    margin-left: 0;
  }

  .why-img-2-wrap {
    margin-top: 20px;
    justify-content: center;
  }

  .why-img-2 {
    width: 100%;
  }

  .view-products-badge {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }
}

.why-img-1 {
  width: 90%;
}

/* why-still-healing end */

/* product-sec start */
.product-sec {
  padding: 0px 0 100px;
}

.pro-top {
  border-top: 1px solid #141414;
  padding: 20px 0px 30px;
  border-bottom: 1px solid #141414;
  margin-bottom: 70px;
}

.product-sec .main-hd h2 {
  font-size: 62px;
  margin: 0;
  line-height: 1;
  color: #362c24;
}

.product-sec p {
  font-size: 17px;
  color: #362c24;
  line-height: 30px;
  margin: 0 0 0 auto;
  width: 80%;
  margin-bottom: 20px;
}

.view-all {
  text-transform: uppercase;
  font-size: 18px;
  color: #fff;
  padding: 12px 30px;
  background-color: #897667;
  border-radius: 100px;
  text-decoration: unset;
}

.view-all:hover {
  background-color: #362c24;
  color: #fff;
  transform: translateX(10px);
}

.pro-box {
  margin-bottom: 30px;
}

.pro-img {
  background: #fff;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 25px;
  aspect-ratio: 1/1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pro-img img {
  width: 100%;
  transition: transform 0.5s ease;
}

.pro-box:hover .pro-img img {
  transform: scale(1.05);
}

.pro-txt h3 {
  font-size: 34px;
  font-family: 'Zolina';
  color: #362c24;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #362c24;
  padding-bottom: 12px;
  letter-spacing: 1px;
}

.pro-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}

.pro-btm span {
  font-size: 37px;
  font-family: 'Zolina';
  color: #362c24;
  font-weight: 500;
  line-height: 1;
}

.pro-btm a {
  width: 32px;
  height: 32px;
  background-color: #897667;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pro-btm a:hover {
  background-color: #362c24;
  transform: translateY(-3px);
}

@media (max-width: 991px) {
  .product-sec .main-hd h2 {
    font-size: 40px;
  }

  .pro-txt h3 {
    font-size: 28px;
  }

  .pro-btm span {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .product-sec .row.align-items-end {
    text-align: center;
    gap: 20px;
  }

  .product-sec p {
    margin: 20px 0;
  }

  .text-end {
    text-align: center !important;
  }

  .pro-txt h3 {
    text-align: left;
  }
}

/* product-sec end */
.main-bx-helping {
  padding: 60px 40px;
  background-color: #362c24;
  border-radius: 40px;
  transition: all 0.5s ease;
}

.main-bx-helping:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.main-bx-helping ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-bx-helping li h6 {
  font-size: 70px;
  color: #fff;
  line-height: 1;
  margin: unset;
}

.main-bx-helping li h6 span {
  display: block;
  color: #fcfaf6;
  font-size: 16px;
  margin-top: 10px;
  width: 80%;
  line-height: 20px;
}

section.helping {
  padding-bottom: 100px;
}

.pro-top {
  border-top: 1px solid #362c24;
  padding: 20px 0;
  margin-bottom: 40px;
}

.product-sec.tw .pro-top {
  /* border-top: 1px solid #362c24; */
}

/* client-review start */
.client-review {
  padding: 100px 0;
}

.review-box {
  background-color: #fff;
  padding: 70px 40px;
  border-radius: 200px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
  max-width: 346px;
  margin: 0 auto;
}

.review-box:hover {
  transform: translateY(-10px);
}

.review-img {
  position: relative;
  width: 170px;
  height: 170px;
  margin: 0 auto 30px;
}

.review-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 10px solid #fff;
  box-shadow: 0 0 20px rgba(137, 118, 103, 0.2);
}

.quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: #897667;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.review-box p {
  font-size: 16px;
  color: #362c24;
  line-height: 1.6;
  margin-bottom: 30px;
}

.review-box h3 {
  font-size: 24px;
  font-family: 'Zolina';
  color: #362c24;
  letter-spacing: 2px;
  margin: 0;
}

.main-hd h2 {
  font-size: 91px;
  line-height: 1;
  color: #2c0f05;
}

@media (max-width: 991px) {
  .review-box {
    padding: 40px 20px;
    border-radius: 120px;
  }

  .review-img {
    width: 100px;
    height: 100px;
  }
}
.cont-ank a.btn-1 {
    transform: unset;
}

/* btn-1 handled globally above */

/* client-review end */

.made-txt h3 {
  font-size: 62px;
  line-height: 1;
  color: #362c24;
  font-weight: 200;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.made-txt p {
  font-size: 17px;
  color: #141414;
  width: 96%;
  margin-bottom: 30px;
}

.made-txt ul li p {
  margin: unset;
  line-height: 20px;
}

.made-txt ul li {
  padding-bottom: 17px;
  position: relative;
}

.made-txt ul li::before {
  position: absolute;
  top: 5px;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: '';
  background-color: #897667;
}

.mad-img img {
  width: 100%;
  height: 670px;
  object-fit: cover;
  border-radius: 50px;
}

.made-txt ul {
  margin-left: 20px;
  margin-bottom: 40px;
}

/* Footer start */
footer {
  background-color: #362c24;
  padding: 60px 0 0;
  color: #fff;
}

.ft-logo {
  margin-bottom: 30px;
}

.ft-logo img {
  max-width: 300px;
}

.ft-hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 40px 0;
}

.ft-menu {
  display: flex;
  justify-content: center;
  gap: 95px;
  margin-bottom: 70px;
  padding: 0;
  list-style: none;
}

.ft-menu li a {
  color: #fff;
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 500;
}

.ft-menu li a:hover {
  color: #897667;
}

.ft-contact {
  display: flex;
  justify-content: space-around;
  margin-bottom: 70px;
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ft-contact-item i {
  width: 50px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.ft-contact-item span {
  font-size: 17px;
  font-weight: 400;
}

.ft-cards {
  margin-bottom: 10px;
}

.ft-cards img {
  max-width: 400px;
}

.copy-right {
  padding: 20px 0;
  position: relative;
}

.border-top-ft {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.copy-right p {
  margin: 0;
  font-size: 16px;
  color: #fff;
}

.back-to-top {
  position: absolute;
  right: 0;
  top: -72px;
  width: 60px;
  height: 60px;
  background-color: #fff;
  color: #2c0f05 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .ft-contact {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .ft-menu {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .ft-menu {
    gap: 20px;
  }

  .ft-menu li a {
    font-size: 16px;
  }

  .back-to-top {
    right: 50%;
    transform: translateX(50%);
  }
}

/* Footer end */