/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --primary-color:            #3b5d50;
  --second-color:            #87826E;
  --accent-color:             #777777;
  --white-color:              #fff;
  --black-color:              #151412;
  --light-dark:               #36332F;
  --gray-color:               #F3F3F3;
  --gray-color-300:           #F7F7F7;
  --gray-color-400:           #EFEFEF;
  --gray-color-500:           #AEAEAE;
  --gray-color-600:           #999999;
  --gray-color-800:           #3A3A3A;
  --light-gray-color:         #D7DDDF;
  --bs-primary-rgb:           135,130,110;
  --light-color:              #f8f9fa;
  --dark-color:               #212529;
  --light-blue-color:         #EDF1F3;
  --navbar-color-color:       #131814;
  --swiper-theme-color:       #4A4A4A;
  --swiper-pagination-color:  #4A4A4A;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
    :root {
        --header-height : 100px;
        --header-height-min   : 80px;
    }
}

/* Fonts */
:root {
    --body-font           : "Mulish", sans-serif;
    --heading-font        : "Italiana", serif;
}

/*----------------------------------------------*/
/* 2. GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  background-color: var(--gray-color-300);
  font-family: var(--body-font);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  width: 100%;
  overflow-x: clip;
  /* overflow-x: hidden; */
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--heading-font);
  text-transform: capitalize;
  color: var(--black-color);
}
h1{
  font-size: 5.5rem;
}
h2{
  font-size: 4.2rem;
}
h3{
  font-size: 2.625rem;
  line-height: 127%;
}
h4{
  font-size: 1.75rem;
  line-height: 127%;
}
@media only screen and (max-width: 360px) {
  h1{
    font-size: 4.5rem;
  }
  h2{
    font-size: 3.5rem;
  }
}
p {
  text-transform: none;
  letter-spacing: normal;
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--light-dark);
}
ul {
  color: var(--light-dark);
}
ul.inner-list li {
  font-size: 1.2em;
}
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

.fs-1{
  font-size: 1.75rem !important;
}
.fs-2{
  font-size: 1.625rem !important;
}
.fs-3{
  font-size: 1.375rem !important;
}
.fs-4{
  font-size: 1.25rem !important;
}
.fs-5{
  font-size: 1.125rem !important;
}
.fs-6{
  font-size: 1rem !important;
}
.font-weight-bold {
  font-weight:bold;
 }
.font-weight-normal {
  font-weight:normal;
}
.ml-auto {
  margin-left: auto;
}
.mr-auto {
  margin-right: auto;
}

/* 2.3 Background Color
/*----------------------------------------------*/
.bg-gray {
  background: var(--gray-color);
}
.bg-dark {
  background: var(--dark-color);
}
.bg-light {
  background: var(--light-color);
}

/* 2.4 Section
--------------------------------------------------------------*/
/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* - Section Margin
--------------------------------------------------------------*/
.margin-xlarge {
  margin-top: 9.5em;
  margin-bottom: 9.5em;
}

/* - Section Title
--------------------------------------------------------------*/
.title-accent{
  color: var(--gray-color-600);
  letter-spacing: 0.14em;
}
h5.card-title,
h5.cart-title {
  font-family: var(--body-font);
}

/** 2.5 Buttons
--------------------------------------------------------------*/
.btn {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black-color);
  height: fit-content;
  border-bottom: 2px solid var(--black-color);
  padding: 0;
  padding-bottom: 5px;
  border-radius: 0;
  transition: 0.3s ease-in;
}
.btn:hover {
  color: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
}
.btn:focus {
  box-shadow: none;
}

.btn-dark{
  color: var(--white-color);
  padding: 10px 22px;
  border: 0;
  transition: 0.3s ease;
}
.btn-dark:hover{
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 0;
}

.btn-primary, .btn-primary:active, .btn-primary:focus{
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 22px;
  border: 0;
  transition: 0.3s ease;
}
.btn-primary:hover{
  background-color: var(--black-color);
  color: var(--white-color);
  border: 0;
}

/** 2.6 Forms
--------------------------------------------------------------*/
label{
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
textarea,
select,
input{
  padding: 8px 0;
  background: none;
  border-top: none;
  border-right: none;
  border-left: none;
  border-image: initial;
  border-bottom: 1px solid var(--black-color);
  outline: none;
}
.form-control {
  font-size: inherit;
  font-weight: inherit;
  line-height: 1.5;
  color: var(--black-color);
  background: none;
  border: none;
  box-shadow: none;
  padding: 0;
}
.form-control::placeholder {
  color: var(--gray-color-600);
}
.form-control:focus {
  background: none;
  box-shadow: none;
}

/* - Image Hover Effects
------------------------------------------------------------- */
.zoom-effect {
  background-color: #f5f3ef;
  overflow: hidden;
}
img.zoom-in {  
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
}
.zoom-effect:hover img.zoom-in {
  opacity: 0.8;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* zoom out on animate */
.zoom-out {
  overflow: hidden;
}
.zoom-out img {
  transform: scale(1.1);
  transition: transform 1s ease-out;
  transition-delay: 500ms;
}
.aos-animate .zoom-out img {
  transform: scale(1);
}

/* - Preloader
------------------------------------------------------------- */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7eb;
  display: flex;
  align-items: center;
  z-index: 99999999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#preloader.hide-preloader {
  opacity: 0;
  visibility: hidden;
}
#loader {
  width: 180px;
  height: 9px;
  margin: auto;
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
#loader:before {
  content: "";
  position: absolute;
  left: -50%;
  height: 9px;
  width: 30%;
  background-color: #b7b4ab;
  -webkit-animation: lineAnim 1.6s linear infinite;
  -moz-animation: lineAnim 1.6s linear infinite;
  animation: lineAnim 1.6s linear infinite;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
@keyframes lineAnim {
  0% {
      left: -40%;
  }
  50% {
      left: 20%;
      width: 80%;
  }
  100% {
      left: 100%;
      width: 100%;
  }
}

/* - Swiper arrows
------------------------------------------------------------- */
.btn-right .swiper-buttons {
  display: flex;
  align-items: center;
}
.swiper-buttons .swiper-prev,
.swiper-buttons .swiper-next{
  color: var(--black-color);
  border: 1px solid var(--black-color);
  border-radius: 50%;    width: 52px;
  height: 52px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  transition: 0.3s ease;
}
..swiper-buttons .swiper-prev i,
.swiper-buttons .swiper-next i {
  font-size: 32px;
}
.swiper-prev:hover,
.swiper-next:hover{
  color: var(--white-color);
  background-color: var(--black-color);
}
.swiper-prev.swiper-button-disabled,
.swiper-next.swiper-button-disabled{
  color: var(--gray-color-500);
  border: 1px solid var(--gray-color-500);
  background: none;
}

.swiper-buttons span{
  color: var(--gray-color-500);
}
.swiper-buttons .swiper-prev.testimonial-arrow-prev,
.swiper-buttons .swiper-next.testimonial-arrow-next{
  border: none;
  background: none;
  padding: 0;
}
.swiper-prev.testimonial-arrow-prev:hover,
.swiper-next.testimonial-arrow-next:hover{
  color: var(--black-color);
}
.swiper-prev.testimonial-arrow-prev.swiper-button-disabled,
.swiper-next.testimonial-arrow-next.swiper-button-disabled{
  color: var(--gray-color-500);
}
@media only screen and (max-width: 768px) {
  .swiper-buttons .swiper-prev, .swiper-buttons .swiper-next {
    width: 36px;
    height: 36px;
  }
}
/*----------------------------------------------*/
/* 3. SITE STRUCTURE */
/*----------------------------------------------*/

/* 3.1 Header
/*----------------------------------------------*/
/* - Search Bar
------------------------------------------------------------- */
#search-bar {
  position: relative;
}
#search-bar input[type="text"] {
  color: var(--dark-gray-color);
  height: 40px;
  display: inline-block;
  border: none;
  outline: none;
  padding-right: 74px;
  width: 0px;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  z-index: 3;
  transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  cursor: pointer;
}
#search-bar input[type="text"]:focus:hover {
  border-bottom: 1px solid var(--black-color);
}
#search-bar input[type="text"]:focus {
  width: 200px;
  z-index: 1;
  border-bottom: 1px solid var(--black-color);
  cursor: text;
}
#search-bar button {
  background: transparent;
  border: none;
}

.site-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  width: 100%;
  z-index: 999999;
  transition: background-color 0.3s ease;
}
.navbar-toggler svg.navbar-icon {
  width: 50px;
  height: 50px;
}
.navbar-nav .nav-item a.nav-link {
  margin-right: 24px;
  margin-left: 16px;    
  color: var(--gray-color-800);
  font-size: 16px;
  font-weight: normal;
}
.navbar-nav .nav-item a.nav-link.active,
.navbar-nav .nav-item a.nav-link:hover {
  color: var(--accent-color);
}
.navbar-brand .logo {
  height: 60px;
}
.site-header-scroll .navbar-brand .logo {
  height: 40px;
  transition: all .5s;
}
.site-header-scroll .navbar-brand {
  padding: 0;
}
.site-header-scroll {
  backdrop-filter: saturate(180%) blur(6px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.08);
}
.dropdown-toggle::after {
  display: none;  
}
.header__menu-toggle {
  display: block;
    background-color: var(--light-dark);
    width: 28px;
    height: 1px;
    margin-top: -1px;
    text-shadow: none;
    color: transparent;
    transition: all 0.5s;
    position: absolute;
    right: 14px;
    top: 50%;
    bottom: auto;
    left: auto;
    line-height: 0;
}
.header__menu-toggle::before, .header__menu-toggle::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: inherit;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  bottom: -8px;
}
.header__menu-toggle::before {
  top: -8px;
  bottom: auto;
}
.header-holder {
  position: relative;
  padding: 4px 0;
  background-color: var(--second-color);
  z-index: 9999999;
}

.header__top__left p {
	color: #ffffff;
	margin-bottom: 0;
}

.header__top__right {
	text-align: right;
}

.header__top__links {
	display: inline-block;
	margin-right: 25px;
}

.header__top__links a {
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-right: 28px;
	display: inline-block;
}

.header__top__links a:last-child {
	margin-right: 0;
}

.header__top__hover {
	display: inline-block;
	position: relative;
  padding-left: 12px;
  z-index: 9999;
}

.header__top__hover:hover ul {
	top: 33px;
	opacity: 1;
	visibility: visible;
}

.header__top__hover span {
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	cursor: pointer;
}

.header__top__hover span i {
	font-size: 16px;
	position: relative;
	top: 2px;
	right: 2px;
}

.header__top__hover ul {
	background: #ffffff;
	display: inline-block;
	padding: 2px 0;
	position: absolute;
	top: 44px;
  left: 50%;
  width: 120px;
	opacity: 0;
	visibility: hidden;
	z-index: 3;
  transform: translateX(-50%);
	-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
  z-index: 99999;
}

.header__top__hover ul li {
	list-style: none;
	font-size: 13px;
	color: var(--accent-color);
	padding: 2px 15px;
  line-height: 1.8;
	cursor: pointer;
  text-align: center;
}
.header__top__hover ul li:hover {
  background: var(--bs-gray-200);
}

/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
  box-shadow: none;
}
#header-nav .offcanvas.show {
  z-index: 9999;
  background-color: var(--gray-color-300);
}
#header-nav .offcanvas-end {
  width: 80%;
  border: none;
}
.offcanvas.show .offcanvas-body .navbar-nav {
  align-items: unset!important;
}
.offcanvas-body .dropdown-menu{
  min-width: 13rem;
  background-color: var(--gray-color-300);
  border: 1px solid var(--gray-color-500);
  border-radius: 8px;
}
.offcanvas-body .dropdown-menu .dropdown-item{
  color: var(--black-color);
}
.offcanvas-body .dropdown-menu .dropdown-item.active,
.offcanvas-body .dropdown-menu .dropdown-item:hover,
.offcanvas-body .dropdown-menu .dropdown-item:focus{
  background: none;
  color: var(--accent-color);
}
.offcanvas-body .dropdown-menu-shop {
  margin-top: 20px;
  border: none;
  border-radius: 0;
  width: 100%;
}
.navbar-nav ul {
  flex: 2;
}
.navbar-brand {
  flex: 1;
}
/* cart dropdown */
.cart-dropdown .dropdown-menu {
  min-width: 21rem;
}
.cart-dropdown .dropdown-menu .btn {
  font-size: 15px;
}
.cart-dropdown .badge {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.dropdown-menu-big ul {
  list-style-type: none;
}
.offcanvas-body .dropdown-menu-big ul li a.dropdown-item {
  padding-left: 0;
  font-size: 14px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--gray-color-800);
}
.offcanvas-header .navbar-brand .logo {
  height: 44px;
}
.display-mb {
  display: none;
}
.cart-dropdown .dropdown-menu.dropdown-menu-member {
  padding: 0;
  min-width: 150px;
  text-align: center;
  background: #fff;
  border: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.cart-dropdown .dropdown-menu.dropdown-menu-member ul {
  padding:8px  0;
}
.cart-dropdown .dropdown-menu.dropdown-menu-member li {
  list-style: none;
}
.cart-dropdown .dropdown-menu.dropdown-menu-member a {
  display: block;
  padding: 4px 12px;
  font-weight: normal;
  font-size: 15px;
  color: var(--accent-color);
}
.cart-dropdown .dropdown-menu.dropdown-menu-member a:hover {
   background: var(--bs-gray-200);;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .dropdown-menu-shop {
    position: fixed;
    width: 100%;
    left: 0;
    backdrop-filter: saturate(180%) blur(6px);
    background: rgba(255, 255, 255, 0.95);
    top: auto;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, .125); ;
  }
  .site-header-scroll .navbar-expand-lg .navbar-nav .dropdown-menu-shop {
    margin-top: 8px;
  }
  
}
@media only screen and (max-width: 564px) {
  .cart-dropdown .dropdown-menu {
    min-width: fit-content;
  }
}

@media only screen and (max-width: 1450px) {
  .navbar-nav .nav-item a.nav-link {
    margin-right: 16px;
    margin-left: 16px;
  }  
}
@media only screen and (max-width: 991px) {
  .navbar-brand .logo {
    height: 52px;;
  }
  .navbar-nav .nav-item a.nav-link {
    margin-right: 0;
    margin-left: 0;
  }  
  .site-header-scroll {
    backdrop-filter: none;
  }
  .offcanvas-body .dropdown-menu-big .col-lg-auto {
    display: none;
  }
  .header__top__right {
    display: none;
  }
  .header-holder {
    z-index: 1;
  }
  .display-mb {
    display: block;
  }
  .offcanvas.show .offcanvas-body .navbar-nav {
    flex-direction: column-reverse;
  }
  .offcanvas-body .dropdown-menu-shop {
    margin-top: 0;
    padding-top: 8px !important;
  }
  .offcanvas-body .dropdown-menu-shop .col-lg-3 {
    margin-bottom: 20px;
  }
  .offcanvas-body .dropdown-menu-shop .fs-5 {
    font-size: 1rem!important;
  }
  .offcanvas-body .display-mb li {
    list-style: none;
  } 
  .offcanvas-body .display-mb li .dropdown-item {
    font-size: 14px;
  }
  .navbar-nav .justify-content-end {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--gray-color-400);
  }
  a.nav-link.dropdown-toggle.ms-0 {
    display: flex;
    justify-content: space-between;
  }
  .dropdown-menu-big ul {
    padding-left: 0;
  }
}

/* 3.2 Billboard
/*----------------------------------------------*/
.banner-content{
  margin-top: 30%;
}
.swiper-slide .banner-content{
  opacity: 0;  
  transition: opacity 1.5s ease-in-out;
}
.swiper-slide-active .banner-content{
  opacity: 1;
}
#billboard .main-slider-pagination {
  z-index: 999;
  bottom: 24px;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  background-color: var(--gray-color-400);
  opacity: 0.9;
  width: 18px;
  height: 4px;
  border-radius: 8px;
  margin: 0 13px !important;
  transition: 0.3s ease;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color: var(--black-color);
  opacity: 1;
}

/* 3.3 Product
/*----------------------------------------------*/
.product-store .product-card .cart-concern {
  bottom: 120px;
  left: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
  transition: 0.5s ease-out;
  opacity: 0;
}
.product-store .product-card:hover .cart-concern {
  opacity: 1;
}
.product-card .cart-concern svg {
  width: 16px;
  height: 16px;
  fill: var(--light-color);
  margin-left: 9px;
}
.product-card img {
  width: 100%;
}

/* 3.4 Video
/*----------------------------------------------*/
.video-section.jarallax{
  min-height: 825px;
}
.play-btn img {
  width: 220px;
}
/* overide */
.modal-dialog {
  max-width: 800px;
  margin: auto;
  height: 100vh;
  display: flex;
  align-items: center;
}
.modal-content {
  padding: 0;
  background-color: #f5f3ef;
  border: none;
  border-radius: 0
}
.text-pattern {
  animation: rotation 50s infinite linear;
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

/* 3.5 FAQs
/*----------------------------------------------*/
.accordion-item{
  background: none;
}
.accordion-button{
  background: none;
  font-size: 1.75rem;
  line-height: 127%;
  color: var(--black-color);
}
.accordion-button:focus {
  border: none;
  outline: 0;
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--black-color);
  background: none;
  box-shadow: none;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-body{
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
.accordion-button {
  font-size: 1.15rem;
}
}
/* 3.6 Banner
/*----------------------------------------------*/
#banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  height: 90vh;
}
.banner-content-1 { grid-area: 1 / 1 / 3 / 2; }
.banner-content-2 { grid-area: 1 / 2 / 2 / 3; }
.banner-content-3 { grid-area: 2 / 2 / 3 / 3; }
.banner-content-text{
  left: 10%;
  bottom: 16%;
}
#banner.aos-init.aos-animate .banner-content-1,
#banner.aos-init.aos-animate .banner-content-2,
#banner.aos-init.aos-animate .banner-content-3{
  animation: parallax 1s ease-in-out forwards;
}
@keyframes parallax {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media only screen and (max-width: 1100px) {
  #banner {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    height: 140vh;
  }  
  .banner-content-1 { grid-area: 1 / 1 / 2 / 2; }
  .banner-content-2 { grid-area: 2 / 1 / 3 / 2; }
  .banner-content-3 { grid-area: 3 / 1 / 4 / 2; }
}

/* 3.7 Footer
/*----------------------------------------------*/
.footer-section {
  padding: 120px 0 80px;
  background: #ffffff; }
  .footer-section .relative {
    position: relative; }
  .footer-section a {
    text-decoration: none;
    color: var(--light-dark);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    font-size: 1rem;
  font-weight: normal; }
  .footer-section a:hover {
    color: var(--second-color); 
  }
  .footer-section a small {
    color: var(--accent-color);
  }
  .footer-section a small:hover {
    color: var(--primary-color);
  }
  
  .footer-section .subscription-form {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
    margin-top: 100px; }
    @media (min-width: 992px) {
      .footer-section .subscription-form {
        margin-top: 0px;
        margin-bottom: 80px; } }
    .footer-section .subscription-form h3 {
      font-size: 18px;
      font-weight: 500;
      color: #3b5d50;
    font-weight: normal; }
    .footer-section .subscription-form .form-control {
      height: 50px;
      border-radius: 10px;
      font-family: "Inter", sans-serif; }
      .footer-section .subscription-form .form-control:active, .footer-section .subscription-form .form-control:focus {
        outline: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-color: #3b5d50;
        -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2); }
      .footer-section .subscription-form .form-control::-webkit-input-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control::-moz-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control:-ms-input-placeholder {
        font-size: 14px; }
      .footer-section .subscription-form .form-control:-moz-placeholder {
        font-size: 14px; }
    .footer-section .subscription-form .btn {
      border-radius: 10px !important; }
  .footer-section .sofa-img {
    position: absolute;
    top: -200px;
    z-index: 1;
    right: 0; }
    .footer-section .sofa-img img {
      max-width: 380px; }
  .footer-section .links-wrap {
    margin-top: 0px; }
    @media (min-width: 992px) {
      .footer-section .links-wrap {
        margin-top: 54px; } }
    .footer-section .links-wrap ul li {
      margin-bottom: 10px; }
  .footer-section .footer-logo-wrap .footer-logo {
    font-size: 32px;
    font-weight: 500;
    text-decoration: none;
    color: #3b5d50; }
    .footer-logo img {
      height: 60px;
    }
  .footer-section .custom-social li {
    margin: 2px;
    display: inline-block; }
    .footer-section .custom-social li a {
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 40px;
      display: inline-block;
      background: #dce5e4;
      color: #3b5d50;
      border-radius: 50%; }
      .footer-section .custom-social li a:hover {
        background: #3b5d50;
        color: #ffffff; }
  .footer-section .border-top {
    border-color: #dce5e4; }
    .footer-section .border-top.copyright {
      font-size: 14px !important; }


/* 4. PAGES
/*----------------------------------------------*/

/* 4.1 About Us Page
/*----------------------------------------------*/
#about .about-content{
  padding: 60px 80px;
  background-color: var(--gray-color-300);  
}
.about-content h2 {
  position: 
  ;
}
.about-content h2:before {
  content: "";
  width: 8rem;
  height: 1px;
  background-color: var(--dark-color);
  position: absolute;
  top: 50%;
  left: -11rem;
}
.about-content p {
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
#about.aos-init.aos-animate img.single-image{
  animation: parallax 0.8s ease-in-out forwards;
}
@keyframes parallax {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media only screen and (max-width: 1200px) {
  #about .about-content{
    min-width: 70%;
  }
}
@media only screen and (max-width: 991px) {
  #about .about-content{
    position: unset;
    padding: 40px;
  }
}

/* Newsletter */
#newsletter .form-control{
  font-size: inherit;
}
#newsletter form input{
  background: none;
}
#newsletter form input:focus{
  box-shadow: none;
}

/* 4.2 Shop Page
--------------------------------------------------------------*/
/* ----------- SideBar -----------*/
.sidebar input.search-field {
  background: none;
  border: none;
  outline: none;
  outline-offset: 0;
}
h5.widget-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .widget-search-bar form {
    flex-wrap: wrap;
  }
}

/* ----------- Pagination -----------*/
.paging-navigation .pagination .page-numbers {
  color: var(--gray-color-500);
}
.paging-navigation .pagination .page-numbers:hover,
.paging-navigation .pagination .page-numbers.current {
  color: var(--primary-color);
}

/* 4.3 Single Product Page
/*----------------------------------------------*/
/*---- Single Product Image ----------*/
.single-product .large-swiper{
  padding-left: 0;
}
.product-preview .swiper-slide {
  height: fit-content;
  padding-bottom: 10px;
  transition: cubic-bezier(0.22, 0.78, 0.71, 1.01);
}
.swiper-slide-thumb-active img{
  border: 1px solid var(--accent-color);
}

/*---- Single Product Information ----------*/
.product-info del{
  color: var(--gray-color-500);
}
.product-info hr{
  color: var(--gray-color-500);
}
.rating-container .rating {
  display: flex;
  padding-right: 4px;
  color: var(--black-color);
}
.product-info .product-price strong {
  font-size: 1.6em;
  padding-right: 10px;
}
.product-info .select-item{
  margin-right: 8px;
}
.input-group{
  padding: 6px;
  background-color: var(--gray-color-400);
}
.input-group button{
  border: none;
}

/*---- Product Tabs ----------*/
.nav-tabs {
  border-bottom: 1px solid var(--black-color);
}
.nav-tabs .nav-link {
  color: var(--black-color);
  font-weight: 600;
}
.nav-tabs .nav-link:focus{
  box-shadow: none;
}
.nav-tabs .nav-link {
  background: none;
  border: none;
}
.nav-tabs button.nav-link.active {
  color: var(--primary-color);
  background: none;
}
.nav-tabs button.nav-link:hover {
  color: var(--primary-color);
}
.tabs-listing .tab-content {
  border-bottom: 1px solid var(--black-color);
  padding: 40px 0;
}
.product-tabs .review-item{
  width: 50%;
  margin-bottom: 20px;
}
.product-tabs .review-item .image-holder{
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
  .product-tabs .review-item{
    width: 100%;
    flex-wrap: wrap;
  }
  .product-tabs .review-item .image-holder{
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 991px) {
  .cart-header{
    display: none;
  }
}

/* 4.4 Cart Page
-----------------------------------------------------*/
.shopify-cart .table th {
    width: 36%;
}
.table>:not(caption)>*>*{
  padding: 1.5rem;
}
.shopify-cart .cart-product-detail{
  max-width: 250px;
}
@media screen and (max-width: 775px) {
  .shopify-cart .table thead{
    display: none;
  }
  .shopify-cart .table tbody{
    border: none;
  }
  .shopify-cart .table tbody td{
    display: block;
  }
  .table>:not(caption)>*>*{
    padding: 1rem;
  }
}

/* 4.5 Blog Page
--------------------------------------------------------------*/
/*------------ Sidebar -----------*/
.widget.sidebar-recent-post .card-image{
  max-width: 120px;
}
.sidebar-post-item h4.card-title {
  font-size: 1.2em;
}

/* 4.6 Single Post Page
--------------------------------------------------------------*/
#single-post-navigation .post-navigation span.page-nav-title {
  font-size: 1.5em;
}
.post-navigation svg {
  width: 30px;
  height: 45px;
}
.post-navigation:hover svg,
.post-navigation:focus svg {
  fill: var(--primary-color);
}