@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/***** General CSS *****/
body {
  word-break: break-word;
  font: 15px / 25px "Montserrat", sans-serif;
  color: #000;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #000;
  white-space: initial;
  font-family: "Montserrat", serif;
}

.top-right-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #000;
}

a:hover {
  transition: all 0.2s ease-in-out;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  transition: all 0.5s ease;
  outline: none;
}

select,
input,
textarea {
  appearance: auto;
}

/***** Font Files *****/
@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bratterly";
  src: url(../fonts/Bratterly.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Ivy";
  src: url(../fonts/Ivy.ttf);
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}



/***** Custom Classes *****/
select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: #575757;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.pt_8,
.pb_8,
.py_8,
.sec {
  padding: 80px 0;
}

.flexRow,
.flexCol {
  display: flex;
  align-items: center;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  /*font-family: "Bratterly";*/
  text-transform: unset;
  margin: 0 0 10px;
  font-family: 'Montserrat';
}

h1 {
  font-size: 110px;
  line-height: 1;
  color: #000;
  font-weight: 800;
}

h2 {
  font-size: 50px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h3 {
  font-size: 51px;
  line-height: 1.2;
  color: #000;
  font-weight: 600;
}

h4 {
  font-size: 34px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
}

h5 {
  font-size: 31px;
  line-height: 1.2;
  color: #000;
  font-weight: 500;
  font-family: 'Montserrat';
}

h6 {
  font-size: 23px;
  font-family: "Montserrat", serif;
  color: #000;
  font-weight: 500;
}

p {
  font-size: 14px;
  font-weight: 500;
  line-height: 25px;
  color: #000;
  font-family: "Montserrat", serif;
}

/* Menu */
.nav ul {
  list-style: none;
  text-align: center;
  justify-content: space-around;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav ul li a {
  transition: 0.3s ease-in-out;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  font-family: 'Montserrat';
  font-weight: 500;
  font-size: 13px;
  padding: 10px 10px;
  display: block;
}

section.header .nav.stroke {
  display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  transition: 0.3s ease-in-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 0;
  width: 0%;
  content: ".";
  color: transparent;
  background: transparent;
  height: 2px;
  transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
  width: 100%;
}

.nav.stroke ul li a.active:after {
  width: 100%;
}

.nav.stroke ul li a.active::before {
  height: 100%;
}

.nav.stroke ul li a.active {
  color: #fff !important;
}

/* Nav Dropdown */
.nav li.dropdown {
  position: relative;
}

.nav li.dropdown>a i {
  font-size: 10px;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav li.dropdown:hover>a i {
  transform: rotate(180deg);
}

.nav li.dropdown:hover>.dropdown-menu {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
  overflow: visible;
  margin-top: 0;
}

.nav .dropdown-menu {
  left: 0;
  transform: none;
  min-width: 180px;
  border-radius: 10px;
  background: #fff;
}

.nav .dropdown-menu li {
  width: 100%;
}

.nav .dropdown-menu li a {
  padding: 12px 20px;
  color: #000 !important;
  font-size: 12px;
  border-bottom: 1px solid #f5f5f5;
  text-align: left;
  justify-content: flex-start;
}

.nav .dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav .dropdown-menu li a:hover {
  background: #f9f9f9;
  color: #b8390e !important;
}

.nav .dropdown-menu li a:after {
  display: none !important;
}


/* Buttons Css Start*/
.theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 16px 38px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  transition: 0.3s ease-in-out;
  font-family: 'Montserrat';
  color: #fff;
  text-transform: uppercase;
  border: 1px solid #b8390e;
  letter-spacing: 1px;
  font-weight: 500;
}


.theme-btn::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #b8390e;
}


.theme-btn:hover::after {
  height: 100%;
  transition: 0.3s ease-in-out;
}

.theme-btn:hover {
  color: #fff;
  transition: 0.3s ease-in-out;
}

.style1::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  content: "";
  transition: 0.3s ease-in-out;
  background-color: #252525;
}

.style1::after {
  background-color: #fff;
}

.style1 {
  color: #fff;
}

.style1:hover {
  color: #252525;
}

/* Buttons Css End*/

/* Loader start */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 1s ease;
  flex-direction: column;
  gap: 5px;
}

#loader.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

img.loader {
  width: 10vw;
}

/* Loader end */

/* Custom Scrollbar  */
#style-6::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
  width: 10px;
  background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
  background-color: #f48a12;
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
}

.scrollbar {
  overflow-y: scroll;
}

/* Custom Scrollbar  */

/* Home Page start*/

/* Header */
/* New Header Styles */
.header-new {
  background-color: transparent;
  font-family: "Montserrat", serif;
  color: #fff;
  position: relative;
  width: 100%;
  z-index: 999;
}

.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  font-size: 12px;
  background: #211a10;
}

.header-top ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header-top .top-nav ul {
    justify-content: flex-start !important;
    gap: 45px;
    height: auto !important;
}

.header-top .top-right-info ul {
  justify-content: flex-end;
  gap: 25px;
}

.header-top a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  font-family: 'Montserrat';
}


.header-bottom {
  padding: 7px 0 5px 0;
}

.header-bottom .logo h2 {
  font-family: "Jersey", sans-serif;
  /* Keeping Jersey for the logo text as per existing style, or change to Montserrat if preferred */
  font-size: 32px;
  color: #fff;
  margin: 0;
}

.search-bar .input-group {
  background-color: transparent;
  border-radius: 30px;
  overflow: visible;
  border: 1px solid #00000073;
}

.search-bar .input-group-text {
  background-color: transparent;
  border: none;
  color: #fff;
  padding-left: 20px;
}

.search-bar .form-control {
  background-color: transparent;
  border: none;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  padding: 10px 10px 10px 80px;
  margin: 0;
  height: auto;
  font-family: 'Montserrat';
  font-weight: 500;
  height: 55px;
}

.search-bar .form-control::placeholder {
  color: #000;
  font-size: 14px;
  font-family: 'Montserrat';
  font-weight: 500;
}

.search-bar .form-control:focus {
  box-shadow: none;
  background-color: transparent;
  color: #000;
}

.search-bar .btn-search {
  background-color: #b8390e;
  color: #fff;
  border: none;
  border-radius: 50% !important;
  width: 55px;
  height: 55px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  margin: 0;
}

.search-bar .btn-search:hover {
  background-color: #000;
}

.user-actions ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.user-actions li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  position: relative;
}

.user-actions li a i {
  font-size: 20px;
  margin-bottom: 5px;
}

.user-actions li a .badge {
  position: absolute;
  top: -5px;
  right: 5px;
  background-color: #5c6b1e;
  /* Reddish color for badge */
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;
  font-size: 8px;
}

.user-actions li a:hover {
  color: #ccc;
}

/* Responsive adjustments */
@media (max-width: 991px) {

  .header-bottom .col-lg-3,
  .header-bottom .col-lg-6 {
    margin-bottom: 15px;
    text-align: center;
  }

  .header-bottom .logo {
    text-align: center;
  }

  .user-actions ul {
    justify-content: center;
  }
}


/* Dropdown styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
  border-radius: 4px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Filter styles */
.filter-container {
  padding: 15px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-bottom: 20px;
}

.filter-container label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #333;
}

.filter-container select,
.filter-container input[type="text"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.filter-container button {
  background-color: #01A9BF;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.filter-container button:hover {
  background-color: #01A9BF;
}

ul.dropdown-menu {
  width: 100%;
  flex-direction: column;
  position: absolute !important;
  top: 100%;
  left: 0;
  gap: 10px !important;
  max-height: 0;
  overflow: hidden;
  justify-content: center !important;
  align-items: start;
  padding: 0 10px;
}

.dropdown-menu.show {
  display: flex;
}


.custom-dropdown {
  position: relative;
}

ul.dropdown-menu a {
  color: #000 !important;
  font-size: 13px !important;
}

.dropdown-toggle::after {
  display: none;
}

img.logo {
  object-fit: scale-down;
  width: 100%;
  padding: 5px 0;
}

.dropdown-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border: 1px solid #333;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  padding: 10px 0;
}

.dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  max-height: 400px;
  overflow: visible;
}

.dropdown-menu .form-check.dropdown-item {
  padding: 10px 25px;
  margin: 0;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}

.dropdown-menu .form-check.dropdown-item:hover {
  background: rgba(1, 169, 191, 0.1);
}

.dropdown-menu .form-check-input {
  margin-right: 12px;
  cursor: pointer;
}

.dropdown-menu .form-check-label {
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  color: #333;
}

.input-group-prepend .dropdown-menu {
  padding: 20px;
  flex-direction: column !important;
  min-width: 230px;
  left: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #01A9BF;
}

.form-check-input:checked {
  background-color: #01A9BF;
  border-color: #000;
}

.input-group-prepend.custom-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  z-index: 88;
}

.input-group-prepend.custom-dropdown button {
  width: 60px;
  background: transparent;
  height: 100%;
  border: none;
  border-right: 1px solid #00000073;
}

img.search-icon {
  object-fit: scale-down;
  width: auto;
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7%) hue-rotate(204deg) brightness(99%) contrast(100%);
}


/* Header end*/
/* Header end*/

/* Banner */
.banner_sec {
  position: relative;
  z-index: 1;
  height: 1000px;
  display: flex;
  align-items: center;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: '';
  background-image: url(../images/banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.banner_text {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.banner-slider .slick-list {
  height: 100%;
}

.banner-slider .slick-track {
  height: 100%;
}

.banner-text {
    margin-top: 4%;
    padding: 120px 110px 130px 80px;
    background-image: url(../images/banner-text-bg.png);
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    margin-left: 5%;
    position: relative;
}

img.banner1 {
  width: 100%;
  height: 610px;
}

.banner-image {
  width: 150%;
  border: 20px solid #fff;
}

/* Banner end*/

/* product sec */

.product-sec {
  padding: 80px 0;
}

.product-box {
  padding: 20px;
  border: 1px solid #e9e8e7;
  margin: 30px 0;
  width: 98%;
    height: 87%;
}

.product-box:hover {
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(238, 225, 200);
  box-shadow: 0px 4px 22.08px 0.92px rgba(20, 20, 20, 0.12);
}

.product-box h5 {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-family: 'Montserrat';
}

.product-box h4 {
  color: #5c6b1e;
  font-weight: 600;
  font-family: 'Montserrat';
  font-size: 20px;
}

.product-box h4 s {
  font-size: 20px;
  color: #7a7a7a;
  margin-right: 10px;
  font-family: 'Montserrat';
}

.product-img-box {
  padding: 15px;
  display: flex;
  height: 370px;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  align-items: flex-end;
  background: #eef7fc;
  transition: ease-in;
  transition-duration: 0.5s;
  justify-content: center;
}

.product-box:hover .product-img-box ul {
  right: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.product-img-box ul {
  top: 15px;
  right: 100%;
  z-index: 1;
  position: absolute;
}

.product-img-box ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  color: #fff;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
  background-color: #5c6b1e;
}

.product-img-box ul li a i {
  font-weight: 300;
}

.product-img-box img {
  bottom: 0;
  width: 100%;
  height: 95%;
  position: absolute;
  object-fit: contain;
}

.product-box:hover .product-img-box a.cart-btn {
  opacity: 1;
  transition: ease-in;
  transition-duration: 0.5s;
}

.product-sli-conn .slick-slide {
  margin: 0px 10px;
}

.product-img-box a.cart-btn {
  bottom: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  color: #eee1c8;
  padding: 10px 0px;
  text-align: center;
  transition: ease-in;
  position: relative;
  letter-spacing: 3px;
  font-family: 'Montserrat';
  transition-duration: 0.5s;
  text-transform: uppercase;
  border: 1px solid #eee1c8;
  background-color: #b8390e;
}

h1 span {
  font-size: 100px;
  line-height: 1;
  font-weight: 400;
}

/* product sec */


/*testimonial start*/

.test-img img {
  width: 70px;
  border-radius: 50%;
  border: 3px solid white;
  filter: drop-shadow(6px 5px 0px #b8390e);
}

.test-slide .slick-active {
  opacity: 1;
}

section.testimonial {
  padding: 100px 0px;
}

.test-txt {
  text-align: center;
  margin-bottom: 30px;
}

.test-txt h3 {
  font-size: 41px;
  line-height: 80px;
  color: #000000;
  font-weight: 400;
  margin-bottom: 15px;
}

.test-txt p {
  width: 55%;
  margin: 0 auto;
  font-size: 15px;
  color: #858585;
  font-weight: 500;
}

.test-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.test-main-bx:before {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 41%;
  height: 58%;
  background-repeat: no-repeat;
  background-image: url(../images/big_comma.png);
  content: '';
  background-size: contain;
  z-index: 999;
}

.test-img ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.test-slide .slick-slide {
  margin: 0px 10px;
  opacity: 1;
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx {
  background-image: -moz-linear-gradient(90deg, rgb(141, 100, 54) 0%, rgb(220, 175, 84) 50%, rgb(141, 100, 54) 100%);
  background: #b8390e;
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx h5 {
  color: #fff;
  font-weight: 200;
  letter-spacing: 1px;
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx h6 {
  color: #fff;
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx p {
  color: #fff;
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx .test-img ul li a i {
  color: #ffffff;
  font-size: 20px;
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx .test-img img {
  filter: drop-shadow(6px 5px 0px #ffffff);
}

.test-slide .slick-slide.slick-current.slick-active.slick-center .test-main-bx:before {
  top: 25px;
  right: 25px;
  width: 50%;
  height: 69%;
}

.test-img ul li a i {
  color: #fd8f00;
  font-size: 20px;
}

.test-main-bx p {
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 25px;
}

.test-main-bx h5 {
  font-size: 30px;
  color: #000000;
  line-height: 24px;
  font-weight: 300;
  font-family: "Ivy";
}

.test-main-bx h6 {
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto;
}

.test-main-bx {
  background-color: #fff;
  padding: 15px 25px 20px;
  box-shadow: 0 0 2px #00000096;
  margin: 30px 0px;
  border-radius: 0;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}


.test-slide li.slick-active {
  opacity: 1;
}

.test-slide .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}

.test-slide ul.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: 20px;
}

.test-slide .slick-dots li button {
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.test-slide .slick-dots li.slick-active button {
  border-color: #b8390e;
}

.test-slide .slick-dots li button:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #dfdfdf;
  border-radius: 50%;
  opacity: 1;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  transition: all 0.3s ease;
}

.test-slide .slick-dots li.slick-active button:before {
  background: #b8390e;
}

.test-main-bx::after {
  position: absolute;
  content: '';
  height: 39px;
  width: 2px;
  background-color: #c69a4c;
  bottom: 24px;
  left: -1px;
}

/*testimonial end*/



/* insta-slider-sec */

.insta-slider-sec {
  padding: 70px 0px;
  background-color: #eef7fc;
}

.instaSlider {
  margin: auto;
  max-width: 2000px;
}

.instaSlider .slick-slide {
  margin: 0 5px;
  opacity: 1;
}

.insta-box {
  width: 100%;
  position: relative;
  height: 300px;
  margin: 0 5px;
}

.insta-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-box:hover i {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.insta-box i {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0%;
  z-index: 1;
  height: 0%;
  margin: auto;
  display: flex;
  font-size: 30px;
  color: #754c28;
  overflow: hidden;
  border-radius: 50%;
  position: absolute;
  transition: ease-out;
  align-items: center;
  justify-content: center;
  transition-duration: 0.5s;
  background-color: #c8baa79c;
}

.insta-slider-heading h2 {
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 54px;
}

.insta-slider-heading i {
  color: #b8390e;
}

/* insta-slider-sec */

/*FOOTER STRT*/

footer {
  background-color: #211a10;
  padding: 80px 0 40px 0;
}

.footer_col h3 {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  margin: 25px 0 20px;
  position: relative;
  font-family: 'Montserrat';
}

.footer_col h3:after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: #fff;
  content: '';
}

.footer_col p {
  color: #fff;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: 'Montserrat';
  margin: 35px 0 20px 0;
  opacity: 0.7;
}


.contact_list p {
  margin: 0;
}

.contact_list p span {
  color: #ffff;
}

.quick_links a {
  font-size: 14px;
  line-height: 35px;
  color: #fff;
  text-transform: capitalize;
  font-family: 'Montserrat';
  opacity: 0.7;
}

.footer_call a {
  position: relative;
  font-size: 25px;
  line-height: 35px;
  font-weight: 400;
  font-family: 'Montserrat';
  color: #ffff;
  font-family: 'Poppins';
  transition: ease-in;
  transition-duration: 0.2s;
}

.footer_call a:hover {
  color: #fff;
  transition: ease-in;
  transition-duration: 0.2s;
}

.footer_call a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0%;
  margin: 0 auto;
  border-bottom: 1px solid #ffac1c;
  transition: ease-out;
  transition-duration: 0.2s;
}

.footer_call a:hover::before {
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: ease-out;
  transition-duration: 0.2s;
}



.footer_social li:hover {
  background: linear-gradient(#fdd459, #c79128, #9d5e02);
}

.footer_social li {
  width: 45px;
  height: 45px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  border-radius: 100px;
  position: relative;
  border: 2px solid #fff;
  transition: 0.3s ease-in-out;
}

.footer_social li a {
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
}

.footer_form form {
  position: relative;
}

.footer_form form input {
  width: 100%;
  height: 55px;
 /* padding: 10px 82px 10px 25px;*/
  border: 1px solid #0000;
  border-radius: 0;
  background-color: transparent;
  color: #fff;
  font-family: 'Montserrat';
  border: 1px solid #fff;
}

.footer_form form button {
  position: absolute;
  right: 0;
  height: 55px;
  border-radius: 0;
  padding: 0px 20px;
  border: 0;
  color: #fff;
  background: #b8390e;
  transition: ease-in;
  transition-duration: 0.2s;
}

.footer_form form button:hover {
  background: #fff;
  color: #000;
  transition: ease-out;
  transition-duration: 0.2s;
}


.copyRight_sec p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 23px;
  font-weight: 400;
  font-family: 'Montserrat';
  opacity: 0.7;
}

.copyRight_sec ul {
  margin: 0;
}

.copyRight_sec {
  background-color: #211a10;
  border-top: 1px solid #f2f2f25e;
  padding: 20px 0;
}

.copyRight_sec a {
  margin: 0;
  color: #b3b3b3;
  font-size: 14px;
  line-height: 23px;
  font-weight: 300;
  padding: 0px 20px;
  border-right: 1px solid #b3b3b3;
}

.footer_call {
  margin: 55px 0 0 0;
}

.socialmedia-icons ul li a {
  /* border: 1px solid #ffffff; */
  /* padding: 8px 15px; */
  font-size: 14px;
  /* border-radius: 70px; */
  /* color: #ffffff; */
  /* background: #191919; */
}

.socialmedia-icons ul li a:hover {
  color: #ffac1c;
}

.socialmedia-icons ul {
  /* display: flex; */
  gap: 10px;
}

.socialmedia-icons h3 {
  color: #fff;
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin: 25px 0 20px;
  position: relative;
  font-family: 'Montserrat';
  text-transform: capitalize;
  margin-bottom: 40px;
}

.socialmedia-icons {
  margin-top: 50px;
}

.contact_list p a {
  color: #fff;
}

.socialmedia-icons h3:after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 50px;
  height: 3px;
  background-color: #fff;
  content: '';
}

.text-center p img {
  width: 20px;
  height: 20px;
  object-fit: scale-down;
}

.footer_form form input::placeholder {
  color: #fff;
  font-family: 'Montserrat';
  font-weight: 400;
  font-size: 12px;
}

.quick_links a:hover {
  color: #b23318;
}

.footer_form form input::placeholder {
  color: #c5cad1;
  font-family: 'Montserrat';
}

/*FOOTER END*/
.shipping_box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shipping_image img {
  width: 70px;
  height: 70px;
  object-fit: scale-down;
}

.shipping_box_text h4 {
  font-family: "Oswald", sans-serif;
  color: #000;
  margin: 0;
}

.shipping_box_text p {
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}


.socialmedia-icons ul {
  display: flex;
  align-items: center;
  gap: 10px;
}

.socialmedia-icons ul li a {
  height: 50px;
  width: 50px;
  color: #fff;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  border-radius: 50%;
  opacity: 0.8;
}

/* Index Page end */


.cat-card-text {
  text-align: center;
}

.cat-card-text h4 {
  margin: 0;
  padding: 20px 0;
  color: #b8390e;
}

img.cat-card-img {
  height: 350px;
}

.cat-card-image {
  position: relative;
  z-index: 1;
}

span.cat-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  border: 1px solid #fff;
}

.des-card-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: 64%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}

.des-card {
  position: relative;
  z-index: 1;
}

img.des-card-img {
  height: 600px;
}

.heading.text-center {
  margin: 0 0 20px 0;
}


/* Home Page end*/



/* InnerPage Aboutus start */



.mission-imag img {
  width: 100%;
}

.mission-imag {
  position: relative;
}

.mission-imag:after {
  position: absolute;
  content: "";
  width: 90%;
  height: 110%;
  right: -5%;
  top: -5%;
  background: #69a1b6;
  z-index: -1;
  border-radius: 0;
}

.mission-imag.secd-mis:after {
  left: -5%;
  right: auto;
}

.row.second-row {
  margin-top: 100px;
}

.mission-sec .row {
  align-items: center;
}

.mission-text h3 {
  font-size: 46px;
  font-weight: 500;
  line-height: 60px;
  text-transform: uppercase;
}

.inner-about-sec .container {
  padding-bottom: 0 !important;
}

.inner-about-sec .about-txt {
  padding: 0;
  background: none;
  box-shadow: none;
  padding-left: 40px;
}

.about-extra {
  margin-top: 100px;
}

.inner-about-sec .container::before {
  width: 40% !important;
  height: 63% !important;
  top: 120px;
}

.mission-text {
  width: 90%;
}

section.mission-sec {
  padding: 0 0 100px;
}

.secd-mis {
  width: 94%;
}

section.banner_sec.inner-banner::before {
  background-image: url(../images/inner-banner.png);
}

.inner-about-box {
  padding: 50px;
  background: #85cbe6;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.inner-about-box::before {
  z-index: -1;
  position: absolute;
  top: -25%;
  left: -20%;
  width: 90%;
  height: 150%;
  border-radius: 50%;
  content: '';
  background: #f1f5f5;
}

.inner-about-text {
  padding: 64px 40px;
  background: #fff;
}

section.banner_sec.inner-banner {
  height: 500px;
}

.inner-banner-text {
  text-align: center;
}

.inner-banner-text * {
  color: #fff;
}

.inner-banner-text p {
  width: 50%;
  margin: 0 auto;
}

.inner-about-text h2 {
  font-size: 80px;
}

/* InnerPage Aboutus end */

/* Inner Cart Start */

.add-to-cart thead {
  color: #fff;
  background-color: #252525;
}

.cart-page-tble tbody .quanity span {
  border-radius: 100px;
  border: 1px solid #000;
  width: 30px;
  height: 30px;
  color: #000;
}

.align-items-center {
  align-items: center !important;
}

.cart-page-tble tbody .quanity span {
  border-radius: 100px;
  border: 1px solid #000;
  width: 30px;
  height: 30px;
  color: #000;
}

.cart-page-tble tbody tr td input {
  /* height: 60px; */
  /* border: 1px solid #c4c4c4; */
  /* background-color: #ffffff; */
  /* color: #000; */
  text-align: center;
  height: 49px;
  border-radius: 6px;
  border: 0px solid #ebebeb;
  font-size: 23px;
  color: #0000009c;
  font-weight: 500;
  background: #fff0;
  margin: 0;
  border-radius: 5px;
  width: 100px;
}

.cart-page-tble tbody .quanity span {
  border-radius: 100px;
  border: 1px solid #000;
  width: 30px;
  height: 30px;
  color: #000;
}

.inc {
  width: 100%;
  height: 60px;
  display: flex;
  padding: 0 10px;
  border-radius: 0;
  align-items: center;
  border: 2px solid #eeeeee;
  justify-content: space-evenly;
  background-color: #fafafa !important;
  margin: 0 0 10px 0;
}

.input-number {
  border: none;
}

.input-number-decrement,
.input-number-increment {
  display: inline-flex;
  text-align: center;
  border: 1px solid #000000 !important;
  cursor: pointer;
  background: #fafafa;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
}

.input-number,
.input-number1,
.input-number-decrement,
.input-number-increment {
  border: 0;
  height: 20px;
  width: 20px;
  font-weight: 700;
  display: flex;
  user-select: none;
  color: #000;
  align-items: center;
  justify-content: center;
}

a.update {
  color: #000;
}

.product-cart figure {
  /* padding: 10px; */
  margin: 0;
  /* background-color: #eaeaea; */
  /* border-radius: 3px; */
  /* border: 1px solid #c8c8c8; */
}

section.add-to-cart th:first-child {
  border-radius: 0;
}

section.add-to-cart th:last-child {
  border-radius: 0;
}

.shipping-box h4 {
  color: #d60000;
  font-family: "Montserrat";
}

.for-lin:before {
  position: absolute;
  content: "";
  left: 0;
  background-image: url(../images/line.png);
  background-repeat: no-repeat;
  width: 949px;
  height: 30px;
  z-index: 9999;
  top: 10px;
}

.for-lin {
  position: relative;
}

.add-to-cart .table>thead>tr>th {
  font-size: 17px;
  padding: 20px 0px;
  border-bottom: 0;
  font-weight: 500;
  text-transform: capitalize;
  font-family: 'montserrat';
}

.table-space h6 {
  font-size: 15px;
  color: #000;
  margin-bottom: 5px;
  font-family: "Roboto";
  line-height: 25px;
  margin-top: 15px;
  font-weight: 400;
}

.table-space p {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  line-height: 2;
}

.product-img {
  width: 120px;
  height: 120px;
  display: flex;
  overflow: hidden;
  text-align: center;
  background: #fff;
  align-items: center;
  border-radius: 0;
  justify-content: center;
  border: 1px solid #c5c5c5;
  margin-bottom: 20px;
}

.number-item input {
  width: 100%;
  max-width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 46px;
  border: 0;
  font-size: 23px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  margin-top: 0;
  background-color: transparent;
  color: #000;
  pointer-events: none;
}

.add-to-cart a {
  font-size: 16px;
  display: block;
  text-align: center;
  color: #000;
  text-decoration: none;
  text-transform: capitalize;
  font-weight: 600;
}

li.quanity.product-detail {
  width: 31%;
}

li.quanity.product-detail .inc {
  margin: 0;
}

.add-to-cart h4 {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  text-align: center;
  font-family: 'montserrat';
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: separate;
  border-spacing: 0 20px;
}

th.text-align\:left {
  text-align: left !important;
  padding-left: 30px !important;
}

tr.space {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #c0c0c0;
}

a.remove {
  color: rgb(255, 255, 255);
  font-size: 20px;
  padding: 3px 15px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #43aaa7;
}

.proceed a {
  font-size: 20px;
  color: #43aaa7;
  text-align: left;
  font-family: 'montserrat';
  text-transform: capitalize;
}

.proceed i {
  margin-left: 10px;
}

.proceed .checkout-btn {
  border: none;
  color: #fff;
  width: 100%;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 18px 20px;
  margin: 0 0 0 auto;
  border-radius: 0;
  background-color: #252525;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  opacity: 1;
}

.all-section-inner {
  padding: 0px 0 80px;
}

.or-amazon {
  position: relative;
  border: 2px solid #c0c0c0;
  padding: 30px 50px;
  width: 100%;
  margin: 80px auto 0;
  border-radius: 5px;
  background: #fff;
}

.or-amazon p {
  font-size: 16px;
  position: absolute;
  background: #fff;
  top: -20px;
  left: 0;
  padding: 5px 20px;
  color: #394136;
  display: block;
  text-transform: uppercase;
  border: 2px solid #c0c0c0;
  right: 0;
  margin: 0 auto;
  width: 70%;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.or-amazon a {
  text-decoration: none;
  text-align: center;
}

.total-section {
  padding: 30px 40px;
  border-radius: 0;
  background-color: #f7f7f7;
  border: 1px solid #c0c0c0;
  margin-left: 20px;
  margin-top: 20px;
}

.total-section li {
  font-size: 22px;
  padding-bottom: 20px;
  color: #000;
  font-weight: 500;
  line-height: 2;
}

li.color-change {
  color: #000;
  padding-bottom: 0 !important;
  font-size: 30px;
  font-weight: 500;
  text-transform: capitalize;
  background-color: #43aaa7;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'montserrat';
}

ul.p-0.check-out-side-icon {
  margin-bottom: 0;
}

.total-section li span {
  float: right;
  font-family: "Montserrat", sans-serif;
}

.ship-estimate {
  margin-top: 115px;
  margin-left: 20px;
  border-radius: 0;
  padding: 30px 50px;
  border: 1px solid #c0c0c0;
  background-color: #f7f7f7;
}

.ship-estimate ul {
  margin-top: 20px;
  margin-bottom: 20px;
}

.ship-estimate li {
  font-size: 22px;
  font-weight: 500;
  color: #43aaa7;
  margin-bottom: 0px;
  font-family: 'montserrat';
  line-height: 1.2;
}

.ship-estimate .grey-style {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  line-height: 2;
}

.proceed {
  display: flex;
  align-items: flex-start;
}

.add-to-cart .table-space {
  display: flex;
  align-items: center;
}

.add-to-cart .table-space .col-md-7 {
  margin-left: 20px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.add-to-cart {
  padding: 100px 0px 90px;
}

.add-to-cart .table>tbody {
  vertical-align: middle !important;
}

/* Inner Cart Ends */

/* Inner Check Out Start */

.billing_form h3 {
  color: #131211;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: Montserrat;
  text-transform: uppercase;
}

.billing_form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #7c7c7c;
}

.radiosss p {
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: #949694;
  font-family: 'Montserrat';
}

.check-out-btn button {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  height: 55px;
  color: #fff;
  font-size: 16px;
  border-radius: 0;
  justify-content: center;
  background-color: #43aaa7;
  text-transform: capitalize;
  font-weight: 500;
}

.billing_form input,
.billing_form select {
  width: 100%;
  height: 50px;
  border-radius: 0;
  border: 1px solid #cfcfcf;
  margin-bottom: 20px;
  padding-left: 15px;
  background: transparent;
  font-weight: 500;
  color: #000;
}

.billing_form input::placeholder {
  color: #8d8d8d;
  font-size: 15px;
}

.select-container {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-select {
  width: 100%;
  padding: 10px 40px 10px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
}

.chevron-icon {
  position: absolute;
  right: 20px;
  top: 26px;
  transform: translateY(-50%);
  pointer-events: none;
  /* Let clicks pass through to select */
  color: #666;
}

.cart_sidebar .cart_lst li:not(:last-child) {
  margin-bottom: 20px;
}

.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #7c7c7c;
  font-weight: 600;
}

.cart_sidebar .cart_lst li span {
  float: right;
}

.cart_sidebar .cart_lst li:last-child span {
  float: right;
  color: #000;
}

.cart_sidebar .cart_lst li:last-child {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  font-family: Montserrat;
}

.cart_sidebar .cart_lst {
  margin-top: 20px;
  margin-bottom: 40px;
}

.thankyou_txt {
  padding: 50px;
  border: 2px solid #b7b7b7;
}

.thankyou_txt h3 {
  font-size: 35px;
  color: #000;
  font-weight: 800;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.thankyou_txt h3 i {
  font-size: 40px;
  margin-right: 15px;
}

.order_det h5 {
  font-size: 20px;
  color: #7c7c7c;
  font-weight: 400;
  font-family: 'Montserrat', sans-serif;
}

.order_det p {
  font-weight: 700;
  font-size: 20px;
  color: #000;
  margin: 0;
}

.order_complete_detail h3 {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.order_detail_table {
  padding: 40px;
  border: 1px solid #b7b7b7;
}

.order_detail_table h5 {
  margin-top: 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.order_detail_table ul {
  margin-top: 20px;
  margin-bottom: 30px;
}

.order_detail_table ul li:not(:last-child) {
  margin-bottom: 25px;
}

.order_detail_table ul li {
  font-size: 14px;
  color: #7c7c7c;
}

.order_detail_table ul li span {
  float: right;
}

.order_detail_table ul li:last-child {
  font-weight: 700;
  color: #000;
}

.order_detail_table h6 {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  font-family: 'Roboto', sans-serif;
  padding: 25px 0;
  border-top: 1px solid #dbdbdb;
  margin: 0;
}

.order_detail_table h6 span {
  float: right;
}

.check_menu ul {
  text-align: center;
  margin-bottom: 40px;
}

.check_menu ul li {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #7c7c7c;
  margin: 0 14px;
}

.check_menu ul li i {
  font-size: 18px;
}

.check_menu ul li.purp {
  color: #700ea3;
}

.cart_sidebar {
  padding: 25px 25px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
}

.cart_sidebar h3 {
  font-size: 25px;
  color: #000;
  margin-top: 0px;
  margin-bottom: 20px;
  line-height: normal;
  font-family: Montserrat;
  text-transform: uppercase;
}

.cart_sidebar .h-sub {
  font-weight: 600;
  font-size: 24px;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  color: #000;
  font-family: Montserrat;
}

.cart_sidebar h5 span {
  float: right;
  color: #43aaa7;
}

.cart_sidebar h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: normal;
  padding-top: 0;
  text-transform: capitalize;
  color: #000;
  font-family: Montserrat;
}

.cart_sidebar ul li input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.cart_sidebar ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #7c7c7c;
}

.cart_sidebar ul li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
}

.cart_sidebar ul li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #43aaa7;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.cart_sidebar ul li:not(:last-child) {
  margin-bottom: 15px;
}

.cart_sidebar form {
  margin-top: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #b7b7b7;
}

.cart_sidebar form h4 {
  font-size: 14px;
  font-weight: 400;
  color: #b7b7b7;
  font-family: 'Roboto', sans-serif;
}

.cart_sidebar form select {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance: auto;
  color: #b7b7b7;
}

.cart_sidebar form select option {
  color: #000;
}

.cart_sidebar form input {
  width: 100%;
  height: 40px;
  padding-left: 15px;
  border-radius: 0;
  border: 1px solid #b7b7b7;
  margin-bottom: 20px;
  appearance: auto;
  color: #b7b7b7;
}

.cart_sidebar form input::placeholder {
  color: #b7b7b7;
  font-family: 'Montserrat-Ultral';
}

.cart_sidebar form button {
  color: #000;
  font-size: 15px;
  border-radius: 0px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 40px;
  background-color: #ebebeb;
  border: 2px solid #ebebeb;
}

.cart_sidebar form button:hover {
  background-color: transparent;
  transition: 0.3s ease-in-out;
}

.checkout_btn {
  padding: 12px 50px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  border-radius: 0;
  font-weight: 500;
  border: 2px solid transparent;
  background-color: #739500;
  font-family: 'Montserrat-Ultral';
}

ul.shipping-ul {
  border-bottom: 1px solid #dbdbdb;
  margin: 0;
  padding-bottom: 30px;
}

h6.payment-h {
  font-size: 22px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #000;
  font-family: Montserrat;
}

.cart_sidebar .radiosss-payments li label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #b7b7b7;
  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  border-radius: 20px;
  left: 6px;
  border: 0;
  width: 10px;
  height: 10px;
  background-image: -webkit-linear-gradient(-92deg, #43aaa7 0%, #43aaa7 100%);
}

.radiosss-payments .card.card-body {
  padding: 0;
  border: 0;
  margin-left: 30px;
  background: none;
}

.radiosss-payments {
  border-bottom: 1px solid rgb(219, 219, 219);
}

section.checkout_page {
  padding: 100px 0;
}

.checkout_page .img-1 {
  position: absolute;
  left: -13%;
  top: 50%;
  width: 340px;
}

.checkout_page .img-2 {
  position: absolute;
  right: -7%;
  top: 60%;
  width: 230px;
  transform: rotate(200deg);
}

.billing_form {
  padding: 0;
}

/* Inner Check Out End */

/* InnerPage Aboutus start */

/* product-detail */
.baner-text.prd-detail-head h2 {
  margin-bottom: 0 !important;
  margin-top: 60px;
}

.baner-text.prd-detail-head h3 {
  font-size: 78px;
  text-transform: uppercase;
  font-weight: 300;
}

h4.text-green {
  font-size: 34px;
  text-transform: capitalize;
  margin-bottom: 10px;
}

h4.text-green+p {
  font-size: 14px;
  color: #636363;
}

.p-big-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border: 1px solid #00000038;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0px;
  background: #ffff;
}

.p-big-img img {
  width: 100%;
  height: 540px;
  object-fit: none;
}

.p-small-img {
  width: 100%;
  height: 100px;
  border: 1px solid #d2d2d2;
  border-radius: 15px;
  overflow: hidden;
}

.p-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-big-nav .slick-slide {
  opacity: 1;
}

.p-big-for .slick-next:before {
  content: '\f105';
}

.p-big-for .slick-prev:before {
  content: '\f104';
}

.p-big-for .slick-prev:before,
.p-big-for .slick-next:before {
  font-family: "Font Awesome 5 Free";
  font-size: 50px;
  line-height: 1;
  font-weight: 600;
  opacity: 1;
  color: white;
  border-radius: 100%;
}

.p-big-for .slick-next {
  right: -5%;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.p-big-for .slick-prev {
  left: -5%;
  opacity: 0;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

.p-big-for {
  overflow: hidden;
}

.p-big-for:hover .slick-next {
  right: 7%;
  opacity: 1;
}

.p-big-for:hover {
  cursor: pointer;
}

.p-big-for:hover .slick-prev {
  left: 5%;
  opacity: 1;
}

.skin-2 .num-in {
  height: 40px;
  width: 120px;
  float: left;
  border: 1px solid #b7b7b7;
  border-radius: 30px;
  cursor: pointer;
  margin: 0;
}

.skin-2 .num-in span {
  width: 40%;
  display: block;
  height: 40px;
  float: left;
  position: relative;
}

.skin-2 .num-in span.plus:after {
  transform: rotate(90deg);
}

.num-in input.in-num {
  background-color: #ffffff;
  width: 38%;
  font-family: 'Helvetica';
}

.skin-2 .num-in input {
  float: left;
  width: 20%;
  height: 40px;
  border: none;
  text-align: center;
  background: transparent;
  font-family: 'Roboto';
}

.skin-2 .num-in span:before,
.skin-2 .num-in span:after {
  content: '';
  position: absolute;
  background-color: #667780;
  height: 2px;
  width: 10px;
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -5px;
}

.product-det-content h4 {
  font-size: 40px;
  line-height: 1.2;
  color: #282828;
  margin-bottom: 20px;
  width: 90%;
  font-family: 'Montserrat';
}

.price-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 1px solid #afafaf;
  margin-bottom: 20px;
  margin-top: 20px;
}

.des_P {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 20px;
  color: #636363;
}

.price-tag h5 {
  /* font-size: 19px; */
  /* font-family: 'Montserrat', sans-serif; */
  /* text-transform: capitalize; */
  /* margin-bottom: 70px; */
  /* font-weight: 600; */
}

.price-tag+h5 small {
  font-family: 'Montserrat', sans-serif;
}

.price-tag+h5+h5 small {
  font-family: 'Montserrat', sans-serif;
}

.price-tag div:first-child {
  font-size: 25px;
  line-height: 1;
  font-weight: 600;
  font-family: 'Montserrat';
  color: #000000;
}

.price-tag div:first-child del {
  margin-right: 10px;
  font-size: 22px;
  color: #969696;
}

.price-tag div:last-child {
  font-size: 18px;
  color: grey;
}

.price-tag div:last-child ul {
  margin-right: 15px;
}

.price-tag i.fas.fa-star {
  color: #ffc107;
}

.add-cart-btn {
  display: inline-flex;
  height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 25px;
  border: 1px solid green;
  color: grey;
}

.add-cart-btn:hover {
  border: 1px solid green;
  background-color: green;
  color: white;
}

.like-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid grey;
  border-radius: 50%;
  font-size: 19px;
  color: #43aaa7;
}

.product-det-content ul.d-flex.justify-content-between.align-items-center {
  width: 62%;
  margin: 0 0 20px 0;
}

.product-det-content ul.social-icons-banner {
  margin-top: 0px;
  position: unset;
  display: flex;
}

.product-det-content ul.social-icons-banner::before {
  display: none;
}

.product-det-content ul.social-icons-banner li {
  margin-right: 10px;
}

.product-detail img.inner-sec-leaf2 {
  top: 50%;
}

.ptb-100 {
  padding: 100px 0;
}

ul.social-icons-banner li a i {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  border: 1px solid #acacac;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #7c7c7c;
  transition: 0.3s ease-in-out;
}

ul.social-icons-banner li a i:hover {
  background-color: #966b5e;
  color: #fff;
  border-color: #966b5e;
  transition: 0.3s ease-in-out;
}

.product-detail {
  padding: 80px 0;
}

span.text-green {
  color: #43aaa7;
}

li.quanity.product-detail {
  padding: 0;
}

.product-detail a.btn-4 {
  color: #fff;
  background: #43aaa7;
  padding: 10px 50px;
  border-radius: 40px;
  font-size: 16px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* product-detail */
.our-shop-top-headingg h2 {
  text-align: center;
}

section.our-shop-sec .main-bx-slid a img {
  margin: 0 auto;
  width: 100%;
  height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-det-content h5 {
  font-size: 20px;
}

.inner-about-image img {
  height: 739px;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */


.contact_detail_box figure img {
  margin: auto
}

.contact_detail_box h2 {
  font-size: 32px;
  line-height: 1;
  color: #000;
  font-weight: 400;
  margin: 30px 0 10px
}

.contact_detail_box p a {
  font-size: 13px;
  line-height: 24px;
  color: #636363 !important;
  margin: 0;
  font-family: Poppins;
  letter-spacing: 1px
}

.contact_detail_box {
  padding: 50px 30px;
  border: 2px solid #43a9a6;
  height: 280px;
  border-radius: 0;
  transition: .5s
}

.contact_detail_box:hover,
.page-link:hover {
  background: #000;
  color: #fff
}

.contact_form label {
  font-size: 14px;
  font-weight: 500;
  color: #5d5d5d;
  margin-bottom: 10px;
  font-family: 'Montserrat';
}

.contact_form input,
.contact_form textarea {
  width: 100%;
  margin-bottom: 20px;
  background-color: transparent
}

.contact_form input {
  height: 52px;
  box-shadow: none !important;
  outline: 0;
  border: 1px solid #d1d1d1;
  padding: 0 20px;
  border-radius: 1px;
  color: #000
}

.btn_contact,
.btn_contact:hover {
  border: 2px solid #00007c;
  right: 0;
  padding: 10px 40px
}

.btn_contact {
  background-color: #00007c;
  color: #fff;
  transition: .3s ease-in-out
}

.btn_contact:hover {
  background-color: #fff0;
  color: #00007c
}

.centerCol {
  margin: 0 auto;
  float: none
}

.contact_form textarea {
  border: 1px solid #d5d5d5;
  padding: 20px;
  color: #5d5d5d;
  border-radius: 0;
  height: 250px !important;
}

.contact-sec-h h6 {
  font-size: 70px;
  line-height: 1;
  color: #000;
  font-weight: 400;
  margin-bottom: 20px !important;
  /*font-family: "Bratterly";*/
}

.contact-sec-h p {
  font-size: 14px;
  width: 85%;
  color: #636363;
  margin: auto;
  font-weight: 500;
  line-height: 23px
}

.contact_page.all-section {
  background-color: #fff;
  padding: 100px 0 80px
}

.contact_form {
  background-color: #fff
}

.btn_wrap.text-center button {
  border: none;
  background: #ffac1c;
  padding: 15px 71px;
  font-family: Montserrat;
  font-size: 14px;
  text-transform: capitalize;
  font-weight: 500
}

.btn_wrap.text-center button::before,
.iconlist a::before,
.iconlist button::before {
  background: #000;
  height: 0
}

#myTab .nav-link.active,
.product-detail span:hover {
  background-color: transparent;
}

.contact_detail_box p {
  margin: 0 auto;
  width: 82%;
  font-weight: 400
}

.product-inner-sec select,
.product-side-bar.product-side-bar1 ul li a label {
  color: #000;
  font-weight: 600
}

figure img {
  width: 50px
}

section.contact_form button.theme_btn.theme_btn2 {
  padding: 15px 45px;
  background: #333;
  text-transform: uppercase
}

.number-item input::-webkit-inner-spin-button,
.number-item input::-webkit-outer-spin-button {
  -webkit-appearance: auto;
  margin: 0
}

.contact_detail_box:hover a {
  color: #fff !important
}


.contact_detail_box img {
  object-fit: scale-down;
  width: auto;
  filter: brightness(0) saturate(100%) invert(60%) sepia(62%) saturate(399%) hue-rotate(129deg) brightness(88%) contrast(80%);
}

.contact_detail_box:hover h2 {
  color: #ffff;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

.product-side-bar {
  position: relative;
  border-right: none;
  width: 90%;
}

.product-side-bar::before {
  top: -80px;
  width: 1px;
  right: -1px;
  content: '';
  height: 80px;
  position: absolute;
  background-color: transparent;
}

.product-side-bar h4 {
  font-size: 28px;
  text-transform: uppercase;
}

.product-side-bar ul {
  margin-top: 25px;
}

.product-side-bar ul li {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1cec3;
}

.product-side-bar .form-group {
  display: block;
}

.product-side-bar .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.product-side-bar .form-group label {
  cursor: pointer;
  position: relative;
  color: var(--black);
  font-family: 'Poppins';
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-side-bar .form-group label:before {
  content: '';
  -webkit-appearance: none;
  width: 15px;
  background-color: var(--white);
  height: 15px;
  padding: 0px;
  cursor: pointer;
  margin-right: 5px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #42403f;
}

.product-side-bar .form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 4px;
  height: 9px;
  border: solid #42403f;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */


.custom-box {
  background: #fff;
  padding: 25px 30px 35px;
}

/* image */
.custom-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 40px;
  margin: 0 0 30px 0;
}

.custom-img img {
  width: 100%;
  display: block;
  height: auto;
}

/* heading */
.custom-content h2 {
  font-size: 86px;
  color: #000;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 18px;
}

.custom-content h2 span {
  font-family: "Bratterly";
  font-size: 35px;
  font-weight: 400;
  margin-left: 0;
  position: relative;
  top: -10px;
  color: #222;
}

/* paragraph */
.custom-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #000;
  text-align: justify;
  margin-bottom: 28px;
}

/* list */
.custom-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 35px;
}

.custom-list li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  color: #000;
  line-height: 1.7;
  font-weight: 500;
}

.custom-list li::before {
  content: "âœ”";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #27c8c8;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* responsive */
@media(max-width:991px) {

  .custom-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-content h2 {
    font-size: 36px;
  }
}

@media(max-width:575px) {

  .custom-box {
    padding: 18px;
  }

  .custom-list {
    grid-template-columns: 1fr;
  }

  .custom-content h2 {
    font-size: 30px;
  }

  .custom-content h2 span {
    display: block;
    margin-left: 0;
    top: 0;
    margin-top: 8px;
  }
}


.custom-img img {
  height: 600px;
  border: 10px solid #ffff;
}

.custom-img::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: #b54a07;
  content: '';
  z-index: -1;
}

/* InnerPage Aboutus end */

/* InnerPage Aboutus start */

.banner-text p {
  width: 60%;
}

.banner-image-box {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 140%;
  margin-left: 17%;
}

span.banner-image-text {
  writing-mode: sideways-rl;
  color: #fff;
  font-family: 'Poppins';
  font-size: 17px;
  letter-spacing: 5px;
  font-weight: 300;
}

/* InnerPage Aboutus end */

/* Spinning Text Section Start */
.spinning-text {
  position: absolute;
  top: -20%;
  right: 40%;
  width: 140px;
  height: 140px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.spinning-text-inner {
  width: 100%;
  height: 100%;
  animation: rotateText 12s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinning-text svg {
  width: 100%;
  height: 100%;
}

.spinning-text text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 4.2px;
  text-transform: uppercase;
}

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.new-arrival .product-box {
  margin: 0;
}

.des-card-text h3 {
  font-size: 49px;
}

.des-card-text a {
  border: 1px solid;
}

.btn_wrap.text-center {
  display: flex;
  justify-content: center;
}

button#inquiryBtn {
  text-transform: uppercase;
}

/* Spinning Text Section End */



/* InnerPage Login start */
.login-body {
  background: url(../images/login-bg.png) no-repeat;
  background-attachment: fixed;
  background-size: cover;
  height: 100vh;
}

.text-blue {
  color: #100c6c;
}

.text-black {
  color: #000 !important;
}

.log-in-wrap {
  padding: 40px 40px;
  float: right;
  width: 100%;
  border-radius: 0;
  background: #ffff;
  box-shadow: 0 0 20px 0 #00000026;
}

.form-group {
  margin-bottom: 15px;
}


.log-in-wrap h2 {
  margin: 0 0 20px 0;
  text-align: left;
  color: #000;
  font-size: 50px;
  text-transform: capitalize;
  line-height: 50px;
  font-weight: 500;
  text-align: center;
}

.log-in-wrap.signup-bg h2 {
  color: #000;
}

.log-in-wrap.signup-bg input::placeholder {
  color: #fff;
}

.login_btn {
  width: 100%;
  background: #b8390e;
  padding: 10px;
  display: block;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid var(--yellow2);
  transition: 0.5s all;
  font-family: 'Montserrat';
}

.contact-page-main .form-control {
  height: 45px;
  background-color: #ffffff;
  border-color: #d5d5d5;
}

.log-in-page-main .form-check label.form-check-label {
  font-size: 14px;
  font-weight: 300;
  /* font-family: 'Lato'; */
  margin: 0;
  font-weight: 300;

  color: #000;
}

.form-check-input:checked {
  background-color: var(--yellow2);
  border-color: var(--yellow2);
}

.log-in-page-main .form-check,
.forgot-pass {
  display: inline-block;
}




.forgot-pass {
  text-align: right;
  width: 74%;
}

.forgot-pass a {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  color: #000;
  font-family: 'Poppins';
}

.term-condition:hover {
  color: #000;
}

.forgot-pass a:hover {
  color: var(--yellow2);
}

.agree-text {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Poppins';
  font-size: 14px;
  font-weight: 500;
}

.term-condition {
  font-weight: 500;
  margin-left: 10px;
  color: var(--yellow2);
  border-bottom: 2px solid var(--yellow2);
  /* font-size: 15px; */
}

.form-check {
  float: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  display: block;
  width: 100%;
  height: 50px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d7d7d7;
  border-radius: 0;
  -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  font-weight: 500;
  font-family: 'Poppins';
  color: #b2b2b2;
}

.log-in-wrap input::placeholder {
  font-weight: 500 !important;
  font-family: 'Poppins' !important;
  color: #b2b2b2 !important;
}


.login_btn:hover {
  color: #fff;
}

.login-forms {
  padding: 80px 0;
}

.login-menu ul {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin: 0;
}

.login-menu ul li a {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
}

.header-main-right {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

.login-menu {
  width: 100%;
}

.sign-up-btn {
  width: 42%;
}

.sign-up-btn a {
  color: var(--yellow1);
  border: 1px solid var(--yellow1);
  padding: 10px 25px;
  border-radius: 60px;
  font-size: 18px;
}

.sign-up-btn a:hover {
  background: var(--yellow1);
  color: #000;
}

.log-in-wrap.signup-bg .form-control::placeholder {
  color: #000;
  font-family: 'Montserrat', sans-serif;
}

.log-in-wrap.signup-bg button.login_btn {
    
    color: #fff;
    background: #b8390e;
}

.term-condition {
  color: #111111 !important;
  border-color: #000;
  border-bottom: 1px solid;
}

.log-in-wrap.signup-bg button.login_btn:hover {
  color: #fff;
}

.form-check .form-check-input:checked[type=checkbox] {
  filter: invert(1);
}

.form-check label {
  cursor: pointer;
  color: #000;
  font-family: 'Poppins';
}
.form-group.password-wrapper {
    position: relative;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
  font-size: 16px;
}

.toggle-password:hover {
  color: #000;
}

.banner-text h1 {
  font-size: 50px;
}

.banner-text h1 span {
  font-size: 60px;
}

/* InnerPage Login end */

.productdetailportion {
    position: relative !important;
}

.productdetailportion img {
    width: 100% !important;
    height: 540px !important;
    object-fit: contain;
}

img.post-media__img {
    width: 100%;
    height: 90px;
    object-fit: cover;
}

a.eye-icon {
    position: absolute;
    right: 8px;
    bottom: 10px;
    background: #52aba7;
    padding: 13px 15px;
    border-radius: 40px;
    color: #fff;
    font-size: 20px;
}

.productdetailfor {
    margin-bottom: 30px;
}
.productdetailsmallportion img {
    height: 110px;
}
.inner-about-text h2 {
    font-size: 55px;
}

.contact-sec-h h6 {
    font-size: 36px;
    line-height: 1;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px !important;
    /* font-family: "Bratterly"; */
}