/*
Theme Name: Booksaw BookStore Template
Theme URI: https://templatesjungle.com/
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Booksaw is specially designed product packaged for Book Store by TemplateJungle.
Version: 1.1
*/

/*--------------------------------------------------------------
/* GENERAL STYLES
--------------------------------------------------------------*/
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  /* widths for rows and containers
     */
  --header-height: 160px;
  --header-height-min: 80px;
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}

/* Theme Colors */
:root {
  --accent-color: #C5A992;
  --secondary-color: #C5A992;
  --dark-color: #2f2f2f;
  --light-color: #F3F2EC;
  --body-text-color: #757575;
  --light-text-color: #afafaf;
  --dark-text-color: #2f2f2f;
}

/* Fonts */
:root {
  --body-font: "Raleway", sans-serif;
  --heading-font: "Prata", Georgia, serif;
  --secondary-font: "Playfair Display", Georgia, serif;
}

/* Bootstrap variables */
:root,
[data-bs-theme=light] {
  --heading-font: "Prata", Georgia, serif;
  --heading-font-weight: 400;
  --heading-color: var(--bs-dark);
  --heading-line-height: 1.1;

  --swiper-theme-color: var(--bs-primary);

  --custom-easing: cubic-bezier(.17, .67, .83, .67);

  /* theme colors */
  --bs-body-font-family: "Raleway", arial, sans-serif;
  --bs-body-font-size: 0.9rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.7;
  --bs-body-color: #333;
  --bs-body-color-rgb: 51, 51, 51;

  --bs-primary: #C5A992;
  --bs-primary-dark: #C5A992;
  --bs-secondary: #C5A992;
  --bs-black: #111;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #949494;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 169, 128, 115;
  --bs-secondary-rgb: 253, 238, 233;
  --bs-black-rgb: 17, 17, 17;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: 169, 128, 115;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  /* spacing */
  --bs-gutter-x: 2.5rem;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  line-height: var(--heading-line-height);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

/* container fluid */
.container-fluid {
  /* width: 98%; */
  max-width: 1800px;
}


/* Dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-link-color: var(--bs-black);
  --bs-dropdown-item-border-radius: 0;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-color: var(--bs-light);
  --bs-dropdown-link-active-bg: var(--bs-black);
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

.pagination {
  --bs-pagination-active-bg: var(--bs-black);
  --bs-pagination-bg: transparent;
  --bs-pagination-border-width: 0;
  --bs-pagination-border-radius: 0;
}

/* breadcrumb */
.breadcrumb {
  --bs-breadcrumb-item-padding-x: 1em;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* accordion */
.accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-border-radius: 0;
  --bs-accordion-inner-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-dark);
  --bs-accordion-btn-bg: transparent;
  --bs-accordion-btn-focus-border-color: var(--bs-dark);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-dark);
  --bs-accordion-active-bg: transparent;
}

.accordion-button {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--bs-border-color);
}

/* form control */
.form-control:focus {
  border-color: #ccc;
  box-shadow: 0 0 0 0.25rem rgba(200, 200, 200, .25);
}

/* dark theme */
[data-bs-theme=dark] {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-heading-color: #fff;
  --bs-link-color: #CCCCCC;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color-rgb: 204, 204, 204;
  --bs-link-hover-color-rgb: 131, 169, 172;
  --bs-body-color: var(--bs-light);
  --bs-body-color-rgb: 241, 241, 240;
  --bs-body-bg: #111;
  --bs-body-bg-rgb: 17, 17, 41;

  color: var(--bs-gray);
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

/* end of Bootstrap Color Theme */

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 3rem;
}

/* 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;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 2;
  color: var(--body-text-color);
  background-color: var(--light-color);
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: var(--accent-color);
  transition: 0.3s color ease-out;
}

a:hover {
  color: #111;
}

ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 0;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin-top: 5px;
  margin-bottom: 0;
}

ul li,
ol li {
  margin-bottom: 5px;
  outline: 0;
}

ul li.active a {
  color: #000000;
}

ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

dl {
  margin-top: 0;
  margin-bottom: 2rem;
}

dt,
dd {
  line-height: 1.42857143;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
}

figure {
  margin: 0;
}

img {
  display: inline-block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

::selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: none;
}

/* image align */
figure.align-right {
  margin: 30px 0 30px 30px;
}

/* Typography */
/*----------------------------------------------*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  line-height: 1.2;
  color: var(--dark-color);
}

h1.light,
.h1,
h2.light,
.h2,
h3.light,
.h3,
h4.light,
.h4,
h5.light,
.h5,
h6.light,
.h6 {
  color: #fff;
}

h1,
h2,
h3 {
  margin: 25px 0;
  text-transform: capitalize;
}

h5,
h6 {
  letter-spacing: 1px;
}

h1,
.h1 {
  font-size: 2.5em;
  line-height: 1.4;
}

h2,
.h2 {
  font-size: 1.5em;
  line-height: 1.4;
}

h3,
.h3 {
  font-size: 1.4em;
  line-height: 1.4;
}

h4,
.h4 {
  font-size: 1.1em;
  line-height: 1.4;
}

h5,
.h5 {
  font-size: .83em;
  line-height: 1.25;
}

h6,
.h6 {
  font-size: .67em;
  line-height: 1.1;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 20px 0;
}

p:empty {
  display: none;
}

small {
  font-size: 85%;
}

mark {
  background-color: #fcf8e3;
  padding: 0.28rem;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

code,
kbd,
var {
  font-size: 14px;
}

code {
  background-color: #f9f2f4;
}

abbr {
  border-bottom: 0.1px dotted #666;
  cursor: help;
}

::placeholder {
  color: #999;
}

/*----------------------------------------------*/
/* 2.1 Floating & Alignment */
/*----------------------------------------------*/

.align-left {
  float: left;
  text-align: left;
}

.align-right {
  float: right;
  text-align: right;
}

.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/**::after,*/
.container::after,
.row::after,
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.navbar .container::after,
.navbar .row::after,
.navbar .clearfix::after {
  /* remove the pseudo-element entirely */
  content: none;
  display: none;
  clear: none;
}

/** Text Align
--------------------------------------------------------------*/

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lead {
  font-size: 120%;
  line-height: 1.7em;
}

.text-lead strong {
  font-size: 115%;
  font-weight: 500;
}

.text-muted {
  color: #777;
}

.text-pri {
  color: #ff9697;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/*------------------------------------------------
/* 2.3 Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label>.label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal;
}

/*------------------------------------------------
/* 2.4 Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol,
ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%;
}

li {
  margin-bottom: 1rem;
}

/*------------------------------------------------
/* 2.5 Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre>code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/*------------------------------------------------
/* 2.6 Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/*------------------------------------------------
/* 2.7 Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 768px) {
	button,
.button {
  margin-bottom: 1rem;
}
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/*------------------------------------------------
/* 2.8 Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

.list-icon i {
  margin-right: 10px;
}

.list-unstyled {
  list-style: none;
}

.txt-fx .letter {
  opacity: 0;
}

/*------------------------------------------------
/* 2.9 Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
a.btn,
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"],
button {
  background-image: none;
  background: var(--accent-color);
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.75em 1.5em;
  margin-top: 15px;
  font-size: 15px;
  font-weight: bold;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  z-index: 1;
  cursor: pointer;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.btn:hover,
.btn:focus,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="file"]:focus,
input[type="file"]:hover,
button:focus,
button:hover {
  text-decoration: none;
  outline: 0;
}

.light .btn:hover {
  color: #fff;
}

.btn:last-child {
  margin-right: 0;
}

.btn:active,
.btn.btn-outline-light:active,
.btn.btn-outline-dark:active,
.btn.btn-outline-accent:active,
input[type="button"]:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="file"]:active,
button:active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}

a.btn.disabled,
fieldset[disabled] a.btn {
  pointer-events: none;
}

/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.325em 1.7em;
  font-size: 0.65em;
}

.btn.btn-medium {
  padding: 0.5em 1.75em;
  font-size: 0.75em;
}

.btn.btn-large {
  padding: 1em 2.5em;
}

.btn.btn-xlarge {
  padding: 1.5em 2.7em;
  font-size: 0.9em;
}

.btn.btn-image {
  background-color: transparent;
  padding: 0;
  max-height: 50px;
}

.btn.btn-image img {
  max-height: 50px;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 4px;
}

.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}

/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  border: 1px solid #fff;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}

.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}

.btn.btn-outline-dark {
  border-color: #121212;
  color: #121212;
}

.btn.btn-outline-dark:hover {
  background: rgba(0, 0, 0, .03);
  background: #e3e0d5;
  border-color: #e3e0d5;
  color: #fff;
}

.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}

.btn.btn-outline-light {
  background: transparent;
  border-color: var(--light-text-color);
  color: var(--light-text-color);
}

.btn.btn-outline-light:hover {
  border-color: var(--accent-color);
  color: var(--accent-color) !important;
}

.btn.btn-full {
  display: block;
  margin: .85em 0;
  width: 100%;
  text-align: center;
}

/* button with line */
.btn-with-line {
  color: #fff;
  position: relative;
}

.btn-with-line:after {
  content: "";
  position: absolute;
  top: 8px;
  right: -66px;
  border-bottom: 2px solid #fff;
  width: 50%;
  z-index: 9;
  transition: 0.3s ease-out;
}

.btn-with-line:hover {
  color: #fff;
}

.btn-with-line:hover:after {
  width: 30%;
  right: -41px;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-common {
  background: var(--accent-color);
  color: #fff;
}

.btn.btn-common:hover {
  background: #151515;
  color: #fff;
}

.btn.btn-accent {
  color: #ffffff;
  background-color: var(--accent-color);
}

.btn.btn-accent:hover {
  color: #ffffff !important;
  background-color: #121212;
}

.btn.btn-gray,
.btn.btn-grey {
  background: #9e9e9e;
  color: #fff;
}

.btn.btn-black {
  background: #121212;
  color: #fff;
}

.btn.btn-black:hover {
  background-color: #797979;
}

.btn.btn-white {
  background: #f8f8f8;
  text-shadow: none;
  color: #121212 !important;
}

.btn.btn-white:hover {
  background: var(--accent-color);
  text-shadow: none;
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}

.btn-center {
  text-align: center;
  display: block;
}

.btn-right {
  text-align: right;
  display: block;
}


/*====================================================================*/
/* 5. CONTENT ELEMENTS */
/*====================================================================*/

/*--------------------------------------------------------------
/** 5.1 General Tabs
--------------------------------------------------------------*/

/* ======= Navbar style ======= */
.navbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 99;
    padding-right: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    height: 120px;
    border: none;
}
	
.navbar a {
  color: #121212;
  transition: 0.3s color ease-out;
}
.navbar * {

    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    list-style: none;
    word-wrap: break-word;
}
.navbar .container-fluid {
    padding-left: 45px;
    padding-right: 45px;
}
.navbar .container {
    border: none;
}
.nav-scroll .container {
    border: none;
}
.navbar-toggler-icon {
    background-image: none;
}
.navbar .navbar-toggler-icon,
.navbar .icon-bar {
    color: #000000;
}
.navbar .navbar-nav .nav-link {
    font-family: "Jost", sans-serif;
    font-size: 0.9em;
	letter-spacing: 0.12em;
    font-weight: 400;
    color: #777;
    margin: 1px;
    -webkit-transition: all .4s;
    transition: all .4s;
    padding-right: 12px;
    padding-left: 12px;
}
.navbar .navbar-nav .nav-link.nav-color {
    color: #000;
}
.navbar .navbar-nav .nav-link:hover {
    color: #000000 !important;
}
.navbar .navbar-nav .nav-link:hover i {
    color: #000000 !important;
}

/* Update this rule */
.navbar .navbar-nav .nav-item.active .nav-link {
    color: #000 !important;
}


.navbar .navbar-nav .active i {
    color: #000000 !important;
}
.nav-scroll {
    background: rgba(255,255,255,0.98);
    padding: 0 0 0 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    border: none;
    -webkit-box-shadow: 0 10px 35px 0 rgba(0,0,0,.1);
    box-shadow: 0 10px 35px 0 rgba(0,0,0,.1);
    height: 80px;
}
.nav-scroll .navbar-toggler-icon,
.nav-scroll .icon-bar {
    color: #000;
}

/* 2. Size your icon to match the usual toggler dimensions */
.navbar-toggler-icon img {
  display: block;       /* remove inline spacing */
  width: 3rem;        /* same as default toggler size */
  height: 1.9rem;
}

.nav-scroll .navbar-nav .nav-link {
    color: #000;
}
.nav-scroll .navbar-nav .active {
    color: #000 !important;
}
/* logo */
.nav-scroll .logo-wrapper .logo-img {
    width: 160px;
    margin-bottom: 0px;
}
.nav-scroll .logo-wrapper {}
.nav-scroll .logo-wrapper .logo h2 {
    display: block;
    width: 100%;
    color: #000000;
    position: relative;
    margin-bottom: 0;
    padding: 0;
}
.nav-scroll .logo-wrapper .logo span {
    color: #000000;
}
.logo-wrapper {
    float: left;
}
.logo-wrapper .logo {
    padding: 0;
}
.logo-wrapper .logo-img {
    width: 160px;
    text-align: center;
}

.logo-wrapper .logo h2 {
    font-family: "Petit Formal Script", serif;
    font-size: 24px;
    font-weight: 400;
    display: block;
    width: 100%;
    position: relative;
    color: #fff;
    margin-bottom: 0;
    padding: 0;
    line-height: 1.2em;
}
.logo-wrapper .logo h2 span {
    color: #000000;
}
/* dropdown */
.dropdown .nav-link i {
    padding-left: 0px;
    font-size: 12px;
    color: #fff;
}
.nav-scroll .dropdown .nav-link i {
    color: #000;
}
.nav-scroll .navbar-nav .active i {
    color: #000000 !important;
}
.navbar .dropdown-menu .dropdown-item {
    padding: 10px 0;
    font-family: "Jost", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000;
    position: relative;
    background-color: transparent;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.navbar .dropdown-menu .dropdown-item span {
    display: block;
    cursor: pointer;
}
.navbar .dropdown-menu .dropdown-item i {
    padding: 13px 0 0 5px;
    font-size: 12px;
    float: right;
    color: #000;
}

.navbar .dropdown-menu .dropdown:hover > .dropdown-item,
.navbar .dropdown-menu .dropdown-item.active,
.navbar .dropdown-menu .dropdown-item:hover {
    color: #000000 !important;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.navbar .dropdown-menu {
    box-shadow: 0 45px 45px 0 rgba(0, 0, 0,.05);
}
.navbar .dropdown-menu li:last-child {
    border-bottom: none;
}
/* li hover */
.navbar .dropdown-menu li {
    position: relative;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border-bottom: 1px solid rgba(236, 239, 241,0.5);  
}
.navbar .dropdown-menu li:hover {
    padding-left: 5px;
}
.navbar .dropdown-menu .dropdown-menu.pull-left {
    top: 0;
    left: auto;
    right: 100%;
}

/* navbar-right button */
.navbar .navbar-right {
    position: relative;
    display: flex;
    align-items: center;
}
.navbar .navbar-right .button {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    background: transparent;
    border-radius: 30px;
    padding: 3px 15px;
    transition: border-color 300ms ease, transform 300ms ease, background-color 300ms ease, color 300ms ease;
    transform-style: preserve-3d;
    font-family: "Jost", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #121212;
    border: 1px solid #121212;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navbar .navbar-right .button:hover {
    transform: translate3d(0px, -3px, 0.01px);
  background-color: transparent !important;
  color: #c5a992 !important;
  border-color: #c5a992 !important;2;
}
/* on hover, switch the link color too */
.navbar .navbar-right .button:hover a {
  color: #c5a992 !important;
}

/* Navbar Media Query */
@media screen and (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
        width: 240px;
        padding: 20px 25px;
        border-radius: 15px;
        border: 0;
        background-color: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }
    .navbar .dropdown-menu .dropdown-menu {
        left: calc(100% + 5px);
        top: -17px;
        right: auto;
        min-width: 240px;
        transform: translateY(0);
    }
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@media screen and (max-width: 991px) {
    .navbar {
        padding-left: 0px;
        padding-right: 0px;
        background: transparent;
        padding-top: 0px;
        padding-bottom: 0px;
        height: 100px;
        border: none;
    }
    .nav-scroll {
        background: #fff;
        height: 80px;
    }
    .logo-wrapper {
        float: left;
        padding: 20px 15px;
    }
    .nav-scroll .logo-wrapper {
        padding: 10px 15px 18px;
        background-color: transparent;
    }
    .nav-scroll .logo-img {
        width: 90px;
    }
    .navbar .logo {
        text-align: left;
        margin-left: 0px;
    }
    .nav-scroll .logo {}
    .logo-img {
        margin-bottom: 0px;
        width: 90px;
        padding: 0;
    }
    .navbar button {
        margin-right: 0px;
        outline: none !important;
        background: transparent;
        margin-top: 10px;
        border: none;
    }
    .navbar button:hover {
        background: transparent;
    }
    .navbar button:active,
    .navbar button:focus,
    .navbar button:hover {
        background: transparent;
        outline: none;
        color: transparent !important;
    }
    .navbar .container {
        max-width: 100%;
        padding-left: 25px;
		padding-right: 25px;
    }
    .navbar .nav-link {
        margin: 0px auto !important;
    }
    .navbar .navbar-nav .nav-link {
        color: #000000;
    }
    .nav-scroll .navbar-collapse .nav-link {
        color: #000 !important;
    }
    .nav-scroll .navbar-collapse .active {
        color: #000000 !important;
    }
    .navbar .dropdown-menu .dropdown-item {
        color: #000;
        padding: 10px 15px;
        font-size: 18px;
    }
    .navbar .dropdown-menu .dropdown-item.dropdown-toggle {
        font-weight: 400;
    }
    .navbar .dropdown-submenu .dropdown-toggle::after {
        right: 15px;
        font-size: 12px;
    }
    .navbar .dropdown-submenu:hover > .dropdown-toggle::after {
        transform: rotate(0deg);
    }
    .navbar .dropdown-submenu .dropdown-toggle.show::after {
        transform: rotate(90deg);
    }
    .navbar .dropdown-menu {
        border: none;
        padding: 0;
        border-radius: 0;
        margin: 0;
        background: #fff;
        box-shadow: none;
    }
    .navbar .dropdown-submenu .dropdown-menu {
        margin: 0;
        padding: 0 0 0 20px;
    }
    .navbar .dropdown-menu li a {
        padding: 0 15px;
    }
    .navbar .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
    }
    .navbar .navbar-nav {
        padding: 20px;
    }
    .navbar .navbar-collapse {
        max-height: 500px;
        overflow: auto;
        background: #fff;
        text-align: center;
    }
    .dropdown .nav-link i {
        color: #000;
    }
    .nav-scroll .dropdown .nav-link i {
        color: #000;
    }
    .nav-scroll .dropdown .nav-link.active i {
        color: #000000 !important;
    }
    .navbar .dropdown-menu .dropdown-item i {
        color: #000;
    }
.navbar .navbar-right {
    display: block; /* Keep it visible */
    text-align: center; /* Center the button */
    margin-bottom: 30px; /* Add some spacing */
    padding: 0 20px; /* Add some padding */
}

.navbar .navbar-right .button {
    display: inline-block; /* Make button size based on content */
    padding: 12px 24px; /* Larger padding for better touch */
    font-size: 0.9em; /* Slightly larger text */
    border: 1px solid #000; /* Example border; adjust as needed */
}
}

/* only apply to navbar list-items on desktop ( >1024px ) */
@media screen and (min-width: 1025px) {
  nav.navbar #navbar .navbar-nav .nav-item {
    margin-top: 10px;
  }
}
}
}



.bootstrap-tabs .tab-content {
  padding: 20px 0;
}

.bootstrap-tabs .tab-content>.tab-pane {
  display: none;
}

.bootstrap-tabs .tab-content>.active {
  display: block;
}

/*--------------------------------------------------------------
/** 5.2 Accordions
--------------------------------------------------------------*/
.fade {
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  /*box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);*/
}

.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='%230c63e4'%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-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  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");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}

.accordion-button:hover {
  z-index: 2;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1rem 1.25rem;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

.accordion-flush .accordion-item:first-child {
  border-top: 0;
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}

.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/


/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}

.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}

.padding-medium {
  padding-top: 3em;
  padding-bottom: 4em;
}

.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

.padding-2xlarge {
  padding-top: 15em;
  padding-bottom: 15em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}

.margin-medium {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
}

.margin-large {
  margin-top: 6em;
  margin-bottom: 6em;
}

.margin-xlarge {
  margin-top: 7.5em;
  margin-bottom: 7.5em;
}

@media only screen and (max-width: 768px) {

  .margin-small,
  .margin-medium,
  .margin-large,
  .margin-xlarge {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Button
------------------------------------------------------------- */

button {
  font-size: 1em;
  font-weight: 600;
  border: none;
  height: 65px;
  cursor: pointer;
  text-transform: uppercase;
}

.btn-wrap {
  text-transform: capitalize;
}

.btn-wrap a {
  text-decoration: none;
  font-weight: 600;
}

.btn-wrap a:hover {
  color: #74642F;
}

.btn-normal {
  color: #fff;
}

.btn-accent {
  color: #111;
}

.btn-submit {
  background: #fff;
  color: #2f2f2f;
}

.btn-submit:hover {
  background-color: #c5a992;
  color: #fff;
}

.btn-accent-arrow {
  color: #111;
}

.btn-wrap i.icon {
  transition: 0.5s ease-out;
  font-size: 9px;
  padding-left: 10px;
}

.btn-wrap:hover i.icon {
  padding-left: 20px;
}

.btn-subscribe {
  width: 30%;
  color: #111;
  background: transparent;
  margin: 0;
  height: max-content;
}

.btn-subscribe span {
  transition: 0.5s ease-out;
  padding-right: 5px;
  opacity: 1;
}

.btn-subscribe:hover span {
  padding-right: 10px;
  opacity: 0.5;
}

/*--- Image hover Effect
-----------------------------------------------*/
.image-hvr-effect {
  display: flex;
  overflow: hidden;
}

.image-hvr-effect img.post-image {
  transform: scale(1);
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.image-hvr-effect:hover img.post-image {
  transform: scale(1.1);
}


/*--- Pattern Overlay
-----------------------------------------------*/
.pattern-overlay {
  background-image: url(images/pattern1.png);
  background-repeat: no-repeat;
  background-position: top right;
}

.leaf-pattern-overlay {
  background-image: url(images/leaf.png);
  background-repeat: no-repeat;
  background-position: bottom left;
}

.corner-pattern-overlay {
  background-image: url(images/pattern2.png);
  background-repeat: no-repeat;
  background-position: top right;
}

/*--- Page Title
-----------------------------------------------*/
.page-title {
  font-size: 4.5em;
  margin-top: 2em;
}

@media screen and (max-width: 768px) {
  .page-title {
    font-size: 2.5em;
    margin-top: 1em;
  }
}

/*--- Section Title
-----------------------------------------------*/
.section-header {
  position: relative;
}

.section-title {
  font-size: 3em;
  font-weight: 500;
  line-height: 1;
  position: relative;
  margin-bottom: 75px;
}

.section-title.divider {
  width: 100%;
}

.section-title.divider:after {
  content: "";
  border-bottom: 3px solid #74642F;
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  width: 50px;
}

.section-header .section-title:before,
.section-header .section-title:after {
  content: "";
  border-bottom: 1px solid #E0E0E0;
  position: absolute;
  top: 30px;
  width: 25%;
  align-items: center;
}

.section-header .section-title:before {
  left: 3px;
}

.section-header .section-title:after {
  right: 3px;
}

.section-header .title span {
  font-size: 14px;
  color: #afafaf;
  text-transform: uppercase;
}


@media screen and (max-width: 1366px) {

  .section-header .section-title:before,
  .section-header .section-title:after {
    width: 30%;
  }
}

@media screen and (max-width: 999px) {

  .section-header .section-title:before,
  .section-header .section-title:after {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 2em;
  }

  .section-header .section-title:before,
  .section-header .section-title:after {
    top: 60px;
    width: 100%;
  }
}

/* -- Image Dimension
--------------------------------------------------------------*/
img.post-image {
  width: 100%;
  height: 328px;
  object-fit: cover;
}

/* -- Slick Slide
--------------------------------------------------------------*/
/* .slick-dots {
  bottom: -100px;
}

.slick-dots li {
  width: 10px;
  height: 10px;
  background: #D7D5CC;
  color: #D7D5CC;
  border-radius: 50%;
}

.slick-dots .slick-active {
  color: #74642F;
  background: #74642F;
  border: 1px solid #D7D5CC;
  outline: 1px solid #D7d5cc;
} */

/* -- Top Menu Part
--------------------------------------------------------------*/
.top-content {
  padding: 15px 0;
  border-bottom: 1px solid #E0E0E0;
}

.social-links ul {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}

.social-links a {
  color: var(--dark-text-color);
  text-decoration: none;
}

.top-content li {
  padding-right: 30px;
}

.top-content li:last-child {
  padding-right: 0;
}

.top-content a {
  color: #555;
  text-decoration: none;
}

.top-content .right-element {
  text-align: right;
}

.top-content .right-element .for-buy {
  margin-right: 40px;
}

/* - Search Form hover Effects
------------------------------------------------------------- */
#header-wrap .action-menu {
  display: inline-block;
  align-items: baseline;
}

#header-wrap .action-menu span.opennav.openicon {
  cursor: pointer;
}

.action-menu .icon {
  font-size: 18px;
  font-weight: 800;
}

.action-menu .search-bar {
  overflow: hidden;
}

.action-menu .search-bar,
.action-menu .open-icon-wrap {
  width: 40px;
  height: 40px;
  background: #efeee8;
  border-radius: 40px;
  display: flex;
  justify-content: right;
  align-items: center;
  cursor: pointer;
  transition: 0.3s width cubic-bezier(0, 0.75, 0.49, 0.99);
}

#header-wrap .search-button {
  order: 1;
  padding-right: 10px;
  padding-left: 10px;
  text-decoration: none;
  color: var(--body-text-color);
}

#header-wrap.show .search-bar {
  width: 300px;
}

#header-wrap .search-bar form {
  margin: 0;
}

#header-wrap .search-box .search-input {
  width: 250px;
  border: 0;
  margin-bottom: 0;
  font-weight: 300;
  padding-left: 20px;
  background: #efeee8;
}

.action-menu .side-nav-bar .menu-btn a,
.action-menu .searchbar a {
  color: #000;
  text-decoration: none;
  line-height: 2.2;
}

.action-menu .icon.icon-menu-btn:hover {
  color: #fff;
  text-decoration: none;
}

.action-menu .menu-btn a {
  color: #07051a;
  text-decoration: none;
}

.action-menu .icon.icon-menu-btn:hover {
  color: var(--accent-color);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .action-menu .search-bar {
    margin-top: 20px;
    width: 100%;
  }
}

/* - Main Navigation
------------------------------------------------------------- */
#header {
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
  background-color: #f3f2ec;
	display: flex; /* Added */
  align-items: center; /* Added */
}

#header .row {
  width: 100%; /* Added */
  margin: 0; /* Added */
  display: flex; /* Added */
  align-items: center; /* Added */
}

#header .menu-list a {
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.12em;
	font-size: 0.9rem; /* Adjust this value to make the text smaller (e.g., 0.8rem, 14px) */
}

#header .menu-list a.active {
  color: var(--accent-color);
}

/*----- Billboard
--------------------------------------------------------------*/
#billboard .main-slider {
  padding: 50px 0 80px 0;
}

.main-slider .slider-item {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: center;
}

.main-slider .banner-content {
  width: 35%;
  margin-top: 60px;
  margin-right: 80px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-slider .banner-image-container {
  width: 800px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-slider .banner-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 999px) {
  .main-slider .slider-item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
  }

  .main-slider .banner-content {
    width: 100%;
    margin-right: 0;
    margin-bottom: 80px;
    max-width: none;
  }

  .main-slider .banner-image-container {
    width: 100%;
    height: 300px;
  }
	 /* center the title and paragraph in the billboard under 999px */
  #billboard .banner-content h2.banner-title,
  #billboard .banner-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
	
	/* also center the button under the text */
  #billboard .banner-content .btn-wrap {
    text-align: center;
  }
  /* ensure the link itself is inline-block so margin:auto would work if needed */
  #billboard .banner-content .btn-wrap .btn {
    display: inline-block;
    /* optional: if you want extra vertical spacing */
    margin: 10px auto 0;
  }
}

.banner-content h2.banner-title {
  font-size: 4.5em;
  font-weight: 500;
  color: #222;
}

.banner-content p {
  margin: 0 0 30px 0;
}

#billboard .slick-dots {
  left: 200px;
  bottom: 110px;
  width: 10%;
  text-align: inherit;
}

#billboard button.slick-arrow {
  background: transparent;
  border: 1px solid #E5E3DA;
  padding: initial;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  z-index: 5;
  cursor: pointer;
}

#billboard button.slick-arrow:hover {
  border: 1px solid #74642F;
  background-color: #E5E3DA;
}

#billboard button.prev.slick-arrow {
  left: 110px;
}

#billboard button.next.slick-arrow {
  right: 110px;
}

#billboard .slick-arrow i.icon {
  color: #8C8C8C;
}

@media screen and (max-width: 1366px) {
  #billboard button.prev.slick-arrow {
    left: 0;
  }

  #billboard button.next.slick-arrow {
    right: 0;
  }
}

@media screen and (max-width: 999px) {
  .banner-content h2.banner-title {
    font-size: 3.5em;
  }

  #billboard .main-slider {
    margin: 70px 0;
    padding: 0;
  }



  #billboard .slick-dots {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
  }
}





/*----- Thank you Section
--------------------------------------------------------------*/

/* Center the thank-you text (h1 + p) on screens <992px */
@media screen and (max-width: 991px) {
  #thank-you .col-md-12 {
    text-align: center !important;
  }
 
}







/*----- Cient-holder Section
--------------------------------------------------------------*/
#client-holder {
  background: #EDEBE4;
  padding: 70px 0;
}

#client-holder .logo-wrap {
  max-width: 1000px;
  margin: auto;
}
/* 1. Grid setup (unchanged) */
#client-holder .grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

/* 2. Between 1021px–1200px:  
   – ideal width = 18% of container  
   – never shrink smaller than 100px  
   – never grow larger than 150px */
@media screen and (min-width: 1021px) and (max-width: 1200px) {
  #client-holder .grid img {
    flex: 0 0 auto;               /* don’t force a percent basis */
    width: clamp(100px, 18%, 150px);
    height: auto;
  }
	  /* shrink the client-holder row to 80% and center it */
  #client-holder .row {
    width: 80% !important;
    margin: 0 auto !important;
  }
}

/* 3. Below 1020px:  
   – switch to two-per-row  
   – ideal width = 45%  
   – never shrink smaller than 120px  
   – never grow larger than 200px */
@media screen and (max-width: 1020px) {
 #client-holder {
    padding: 30px 0;
}
 #client-holder .container {
   max-width: 738px;
}	
	#client-holder .grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  #client-holder .grid img {
    flex: 0 0 auto;
    width: clamp(120px, 45%, 150px);
    height: auto;
    margin: 10px;
  }
	  #client-holder .row {
    width: 100% !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 768px) {
 #client-holder {
    padding: 30px 0;
}
	 #client-holder .container {
   max-width: 738px;
}
}



/*----- About Team Section
--------------------------------------------------------------*/
#team {
  background: #EDEBE4;
  
}

/* 1) Three-per-row & centered from 768px up to 1023px */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  /* keep the flex row and center its items */
  #team > .container > .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* make each member ~30% wide so three fit in one row */
  #team .col-md-3 {
    flex: 0 0 30% !important;
    max-width: 30% !important;
   
  }
}

/* 2) Full-stack & slightly smaller images below 768px */
@media screen and (max-width: 767px) {
  /* each occupies 100% */
  #team .col-md-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 1.5rem;
  }

  /* shrink the photos so they’re not huge */
  #team .member-image {
    width: clamp(120px, 60%, 180px);
    height: auto;
  }
	  #team .team-member.pb-5 {
    padding-bottom: 0 !important;
  }
}

/* 1) Center ALL section-titles in #team when <1024px */
@media screen and (max-width: 1023px) {
  #team .section-title {
    text-align: center !important;
  }

  /* 2) Remove the extra top-margin on the *second* section-title */
  /* targets the <h3> inside the second inner .row under #team */
  #team > .container > .row > .row:nth-of-type(2) h3.section-title {
    margin-top: 0 !important;
  }
}







/*----- Featured Books Section
--------------------------------------------------------------*/

#featured-books .product-list {
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 30px;
}

/*----- Best Selling Section Section
--------------------------------------------------------------*/
#best-selling {
  background: #EDEBE4;
  padding: 120px 0;
}

#best-selling .products-thumb {
  margin-right: 60px;
  box-shadow: 2px 6px 34px 4px rgba(63, 63, 63, 0.08);
}

#best-selling .product-entry {
  margin-top: 50px;
}

#best-selling .product-entry h3.item-title {
  font-size: 1.8em;
  font-weight: 100;
  margin-top: 15px;
}

#best-selling .product-entry .item-price {
  font-size: 1.5em;
  color: #74642F;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #best-selling .products-thumb {
    margin: 0;
  }
}

/*----- Popular Books Section
--------------------------------------------------------------*/
.tab-content {
  position: relative;
}

[data-tab-content] {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.active[data-tab-content] {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  margin: 55px 0;
  justify-content: center;
  list-style: none;
}

.tabs .tab {
  font-weight: 600;
  color: #999;
  margin-right: 50px;
  cursor: pointer;
}

.tabs .tab.active,
.tabs .tab:hover {
  color: #111;
  border-bottom: 2px solid #9A884C;
}

img.books-image {
  /*height: 290px;*/
  margin-right: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}

/*----- Quotation Section
--------------------------------------------------------------*/
#quotation {
  padding-top: 6em; /* 1. Adds more space above the section title */
}

#quotation .section-title.divider,
#quotation .section-title.divider:after {
  margin: 0 auto;
}

#quotation .section-title.divider {
  margin-bottom: 50px; /* Optional: Adjusts space below title to balance the increased top padding */
}

#quotation blockquote {
  width: 40%;
  margin: 0 auto;
}

#quotation q {
  display: block;
  font-size: 1.2em;
  padding: 40px 0;
  line-height: 1.5; /* 3. Reduces distance between sentences (default is likely 2 from body, adjusted to 1.4) */
  quotes: none; /* Removes the quotation marks */
}

#quotation .author-name {
  font-family: "Prata", Georgia, serif;
  font-size: 1.4em;
}

@media screen and (max-width: 2560px) {
  #quotation blockquote {
    width: 50%;
  }
}
@media screen and (max-width: 1400px) {
  #quotation blockquote {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  #quotation blockquote {
    width: 80%;
  }
}

/*
@media screen and (max-width: 1320px) {
  #quotation blockquote {
      width: 60%;
  }
}
*/
/*----- Special Offer Section
--------------------------------------------------------------*/
#special-offer .section-header {
  background: #EDEBE4;
  padding: 140px 0 220px;
  margin-bottom: -141px;
  z-index: -1;
}

#special-offer .section-title {
  width: 70%;
  margin: 0 auto;
}

span.prev-price {
  color: #999;
  font-size: 0.8em;
  padding-right: 10px;
  text-decoration: line-through;
}


/*----- Subscribe Section
--------------------------------------------------------------*/
#subscribe {
  background: #EDEBE4;
  padding: 120px 0;
}

#subscribe .subscribe-content {
  margin-left: 15px;
}

#subscribe .subscribe-content input[type="text"] {
  background: none;
  border: none;
  width: 252px;
}

#subscribe form#form {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #6F6F6F;
}

::-webkit-input-placeholder {
  color: #7A7A7A;
  /* WebKit browsers */
}

:-ms-input-placeholder {
  color: #7A7A7A;
  /* Internet Explorer 10+ */
}


@media screen and (max-width: 1200px) {
  #subscribe form#form {
    width: 100%;
  }

  #subscribe .subscribe-content input[type="text"] {
    width: 100%;
  }

  #subscribe .btn-subscribe {
    width: 30%;
  }
}

@media screen and (max-width: 980px) {

  /*#subscribe .grid {
      flex-wrap: wrap;
      justify-content: center;
  }*/
  #subscribe .section-title {
    width: 100%;
    margin: 0 auto 50px;
  }

  #subscribe p {
    width: 100%;
    text-align: left;
    margin: 30px auto;
  }

  #subscribe form#form,
  #subscribe .subscribe-content {
    width: 100%;
  }

  #subscribe form#form {
    margin: 0 auto;
  }

  #subscribe .subscribe-content {
    margin-left: 0;
  }

  #subscribe {
    margin-bottom: 90px;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  /* Force each half-column to span 100% */
  #subscribe .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100%  !important;
  }
  /* Center it if you want padding on the sides */
  #subscribe .col-md-8 {
    margin: 0 auto;
  }
}

/*
@media screen and (max-width: 780px) {
  #subscribe form#form {
      width: 90%;
  }
  #subscribe .subscribe-content {
      width: 90%;
  }
}*/


/*----- Latest Blog Section
--------------------------------------------------------------*/
#latest-blog {
}

#latest-blog article.column {
  margin-bottom: 60px;
}

#latest-blog figure {
  margin-bottom: 30px;
}

#latest-blog .meta-date {
  font-family: "Prata", Georgia, serif;
  color: #74642F;
  padding-bottom: 20px;
}

#latest-blog h3 {
  font-size: 1.7em;
  font-weight: 500;
  margin-top: 0;
}

#latest-blog .links-element {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #C8C8C8;
  padding-top: 20px;
}

#latest-blog .categories {
  text-transform: uppercase;
}

.social-links li {
  padding-right: 20px;
}

@media screen and (max-width: 999px) {
  #latest-blog h3 {
    font-size: 1.4em;
  }
}

@media screen and (max-width: 767px) {
  #latest-blog .grid {
    flex-wrap: wrap;
  }

  #latest-blog article.column {
    width: 100%;
  }
}

/*----- Contact Section
--------------------------------------------------------------*/
#download-app {
  background: #EDEBE4;
  padding: 120px 0;
  overflow: hidden;
  z-index: 0;
}

/*#download-app .container {
    max-width: 1040px;
}*/
/*#download-app figure {
    width: 40%;
    z-index: 0;
}*/
#download-app .app-info {
  padding-top: 0px;
  margin-left: 50px;
}

#download-app .app-info p {
  margin-bottom: 50px;
}

@media screen and (max-width: 820px) {
  #download-app .grid {
    flex-wrap: wrap;
  }

  #download-app figure {
    margin: 0 auto;
  }

  #download-app .app-info {
    width: 90%;
    margin: 0 auto;
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {	
  .contact-detail p {
    text-align: center;
  }	
  .page-title {
    text-align: center;
  }
  
  .contact-detail .detail {
    width: 100%;
    text-align: center;
  }
}

/* Stack and center contact sections (≤1023px), including page title */
@media screen and (max-width: 1023px) {
  /* 1) Force the two .col-md-6 halves to full width */
  section.contact-information .col-md-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  /* 2) Center the intro paragraph */
  section.contact-information .contact-detail p {
    text-align: center !important;
    margin: 0 auto;
  }

  /* 3) Center the detail block if you want its container centered */
  section.contact-information .contact-detail .detail {
    width: 100% !important;
    text-align: center !important;
  }

  /* 4) Center the page-title in the header section */
/* only center the Contact page title */
#contact-header h1.page-title {
  text-align: center;
  margin: 20px auto;
}
	 /* 5) Remove top-margin on the contact form column */
  section.contact-information .row.g-5 > .col-md-6:nth-child(2) {
    margin-top: 0 !important;
  }
	
 /* Remove the 3em top padding from the contact-information section */
  section.contact-information.padding-medium {
    padding-top: 0 !important;
  }
	

}
/* keep contact section’s container at 720px between 992px–1024px */
@media screen and (min-width: 992px) and (max-width: 1024px) {
  section.contact-information .container,
  section.contact-information .container-md,
  section.contact-information .container-sm {
    max-width: 720px !important;
    width: 100%     !important;
    margin: 0 auto  !important;
  }
}








/*----- Footer Section
--------------------------------------------------------------*/
footer#footer {
  padding-bottom: 80px;
  margin-top: 100px;
  margin-bottom: 60px;
  border-bottom: 1px solid #E0E0E0;
}

#footer .footer-item {
  margin-right: none;
}

#footer .footer-item img.footer-logo {
  margin-bottom: 40px;
}

#footer .footer-item p {
  width: 80%;
}

#footer .footer-menu {
  margin-right: 40px;
  margin-bottom: 40px;
}

#footer .footer-menu ul {
  list-style: none;
}

#footer .footer-menu ul a {
  color: var(--dark-text-color);
  text-decoration: none;
}

#footer .footer-menu:last-child {
  margin-right: 0;
}

.footer-menu h5 {
  font-size: 1.5em;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 40px;
  text-transform: capitalize;
}


@media screen and (max-width: 768px) {
#footer .footer-item {
    margin-right: 0;
  }
	#footer .footer-item p {
  width: 100%;
}
  #footer .footer-item p {
    text-align: center;
  }
  #footer .footer-menu h5 {
    text-align: center;
  }
  #footer .footer-menu ul li {
    text-align: center;
  }
	
	#footer-bottom p {
    text-align: center;
  }
  #footer-bottom ul li {
    text-align: center;
  }
	.footer-logo {
   width: 50%;
    display: block;
    margin: 0 auto;
  }
  
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
 
/* only inside the footer */
#footer .container,
#footer .container-md,
#footer .container-sm {
  max-width: 720px;
}

  
		
	/* ensure the footer row still wraps */
  #footer .row {
    display: flex;
    flex-wrap: wrap;
  }

  /* make the brand column full-width */
  #footer .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* make each menu column half-width */
  #footer .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* optional: add some breathing room under each block */
  #footer .col-md-4,
  #footer .col-md-2 {
    margin-bottom: 20px;
  }
	
	#footer .footer-item {
    margin-right: 0;
  }
	#footer .footer-item p {
  width: 100%;
}
  #footer .footer-item p {
    text-align: center;
  }
  #footer .footer-menu h5 {
    text-align: center;
  }
  #footer .footer-menu ul li {
    text-align: center;
  }
	
	#footer-bottom p {
    text-align: center;
  }
  #footer-bottom ul li {
    text-align: center;
  }
	.footer-logo {
   width: 50%;
    display: block;
    margin: 0 auto;
  }
	
}
	









/* Shop page */
.products-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.product-style {
  position: relative;
  overflow: hidden;
}

.slick-slider .product-style {
  margin: 0 15px 25px;
}

.product-style figcaption p {
  margin-bottom: 20px;
}

.product-style img.product-item {
  position: relative;
  background: #EFEEE8;
  border: 1px solid #EAE8DF;
  padding: 15%;
  cursor: pointer;
  width: 100%;
}

.product-style button.add-to-cart {
  position: absolute;
  background: #000;
  color: #fff;
  width: 100%;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  line-height: 3;
  bottom: 300px;
  bottom: -65px;
  left: 0;
  z-index: 9;
  transition: 0.3s ease-out;
}

.product-style:hover button.add-to-cart {
  bottom: 380px;
  bottom: 0;
}

.product-item figcaption {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.product-item figcaption>h3 {
  font-size: 1.4em;
  font-weight: 500;
  color: #74642F;
  margin: 0;
}
.product-item figcaption>p {
  margin: 0;
}

.product-item .item-price {
  color: #74642F;
  font-size: 1.3em;
}

@media screen and (max-width: 768px) {
  .products-grid .product-item {
    width: 45%;
  }

  .product-style img.product-item {
    /*height: 550px;*/
    object-fit: contain;
    margin: 0 auto;
  }

  .products-grid.col-3 .product-style,
  .products-grid.col-4 .product-style,
  .products-grid.col-5 .product-style {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .products-grid .product-style {
    width: 100%;
  }
}


/* Flipbook Dearflip PDF Viewerr */

/* Target the inner row that directly contains the thumb + text columns */
#download-app .container > .row > .col-md-8 > .row {
  /* .row is already display:flex; this just adds vertical centering */
  align-items: center;
	padding-top: 50px;
}
/* Target the “inner” row that directly contains the two columns */
#download-app .col-md-8 > .row {
  /* .row is already display:flex; we just need to center its children */
  align-items: center;
}


/* ---------------------------------------------------------
   1) Target only the dFlip thumb inside the download-app area
   2) Force it to be a non-shrinking flex-item with fixed size
   3) Override any inline/display rules from Bootstrap or dFlip
   --------------------------------------------------------- */
#download-app ._df_thumb {
  display: block !important;        /* instead of inline-block */
  flex: 0 0 auto !important;        /* prevent any flex-shrink or flex-grow */
  width: 350px !important;          /* your new desired width */
  height: 450px !important;         /* your new desired height */
  margin: 0 auto 10px auto !important; /* optional: center horizontally & reset extra margins */
}






/* Unique 3D-Flip-Book Styles (prefixed “cb3d-” to avoid conflicts) */

/* Container */
.cb3d-wrapper {
  width: 200px;
  height: 300px;
  perspective: 800px;
  perspective-origin: left center;
  margin: 0;
  padding: 0;
}

/* Page stack */
.cb3d-wrapper .cb3d-pages {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

/* Every page face */
.cb3d-wrapper .cb3d-pages li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
  background-color: #000;
}

/* Inner pages gradient */
.cb3d-wrapper .cb3d-pages li.cb3d-paper {
  background-image: linear-gradient(
    to right,
    #000 0%,
    #000 90%,
    #ededed 100%
  );
  background-size: 100%;
}

/* Depth offsets for paper layers */
.cb3d-wrapper .cb3d-pages li.cb3d-layer3 {
  transform: rotateY(40deg) translateZ(-3px);
}
.cb3d-wrapper .cb3d-pages li.cb3d-layer2 {
  transform: rotateY(30deg) translateZ(-2px);
}
.cb3d-wrapper .cb3d-pages li.cb3d-layer1 {
  transform: rotateY(20deg) translateZ(-1px);
}

/* Front cover with your banner */
.cb3d-wrapper .cb3d-pages li.cb3d-front {
  z-index: 5 !important;
  transform: rotateY(0deg) translateZ(0px);
  background: url("./images/main-banner1.jpg") center center / cover no-repeat !important;
}

/* Hover triggers “opening” */
.cb3d-wrapper:hover .cb3d-pages li.cb3d-front {
  transform: rotateY(-40deg) translateZ(0px);
}
.cb3d-wrapper:hover .cb3d-pages li.cb3d-layer1 {
  transform: rotateY(-34deg) translateZ(-1px);
}
.cb3d-wrapper:hover .cb3d-pages li.cb3d-layer2 {
  transform: rotateY(-27deg) translateZ(-2px);
}
.cb3d-wrapper:hover .cb3d-pages li.cb3d-layer3 {
  transform: rotateY(-15deg) translateZ(-3px);
}






/* Basir-PD Project 22 - Creative 3D Book Animation */

/* Remove the global * rule to avoid affecting other elements */
/* If box-sizing: border-box is needed only for the book, apply it to .book-container and its descendants */

/*--------------------------------------
  global box‐sizing
---------------------------------------*/
.book-container,
.book-container * {
  box-sizing: border-box;
}

/*--------------------------------------
  container & perspective
---------------------------------------*/
.book-container {
  width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  margin: 0;
  padding: 0;
}

.book {
  position: relative;
  width: 395px;
  height: 524px;
  transition: 1s;
  transform-style: preserve-3d;
	
}

.book.flip {
  transform: rotateY(180deg);
}

.rotateLeft {
  transform: rotateY(45deg);
}

.rotateRight {
  transform: rotateY(-45deg);
}

.first-half,
.second-half {
  position: absolute;
  width: 50%;
  height: 100%;
  background-image: url("./images/3D Book Animation/images/main-banner1.jpg");
  background-size: 100% 100%;
}

.second-half {
  left: 50%;
  background-image: url("./images/3D Book Animation/images/main-banner1.jpg");
}
.front-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("./images/main-banner1.jpg") center/cover no-repeat;
  transform-style: preserve-3d;             /* <— allow pseudos in 3D */
  transform: translateZ(var(--thickness))    /* pull it out */
             rotateY(0deg);
  backface-visibility: hidden;
}
.front-cover:before,
.front-cover:after {
  content: "";
  position: absolute;
  background-image: url("./images/3D Book Animation/middle-cover.jpg");
  width: 8px;
  height: 100%;
  background-size: 100% 100%;
  transform-origin: left;
  transform: rotateY(90deg);
	
}

.front-cover:after {
  right: 0;
  background-image: url("./images/3D Book Animation/middle-cover-2.jpg");
  transform-origin: right;
  transform: rotateY(-90deg);
}

.back-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("./images/3D Book Animation/back-cover.jpg");
  background-size: 100% 100%;
  transform: rotateY(180deg) translateZ(8px);
}



/* Cookie Notification */


#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
  padding: 0px 20px;
  font-size: 14px;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, opacity 0.6s ease;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cookie-notice.hide {
  transform: translateY(100%);
  opacity: 0;
}

#cookie-notice .cookie-text {
  text-align: center;
  width: 100%;
}

#cookie-notice a {
  color: #bab297;
  text-decoration: none;
}

#cookie-close {
  font-size: 20px;
  color: #666;
  cursor: pointer;
  user-select: none;
  padding-left: 20px;
  display: flex;
  align-items: center;
}


/* Newsletter Subscription */


#form-message p {
    font-size: 1rem;
    padding: 10px;
    border-radius: 4px;
}
#form-message p[style*="color: #2D672E"] {
    background-color: #F3F2EC; /* Light green background */
}
#form-message p[style*="color: #dc3545"] {
    background-color: #f8d7da; /* Light red background */
}




/* ------------------------------------------------------------
   Kill *all* dFlip styles inside this one column, then fall
   back to your existing .image-hvr-effect/.post-image rules
   ------------------------------------------------------------ */

/* 1) Reset the thumbnail wrapper */
.no-dflip ._df_thumb {
  border: none              !important; /* dflip.min.css: border, box-shadow */
  box-shadow: none          !important;
  width: auto               !important; /* dflip.min.css: width:250px */
  
  margin: 0                 !important; /* dflip.min.css: margin:30px */
  display: block            !important; /* override inline-block */
  text-align: inherit       !important;
  cursor: pointer           !important;
  transform: none           !important;
  perspective: none         !important;
}

.no-dflip ._df_thumb:hover {
  cursor: pointer           !important;
}

/* === Reset DFlip but keep your theme’s image sizing & hover === */
.no-dflip ._df_thumb  {
  /* global img reset + your post-image size */
  display: inline-block    !important; /* from img {} */  
  border: 0                !important;
  max-width: 100%          !important;
  vertical-align: middle   !important;

  width: 100%              !important; /* from img.post-image {} */  
  height: 328px            !important;  
  object-fit: cover        !important;

  /* hover-zoom prep (will be triggered by .image-hvr-effect:hover) */
  transform: scale(1)      !important; /* from .image-hvr-effect img.post-image {} */  
  will-change: transform   !important;  
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94) !important;
  z-index: 0               !important;

  /* undo any stray margins/padding */
  margin: 0                !important;
  padding: 0               !important;
}


/* 3) Reset the “button” span */
.no-dflip ._df_button {
  padding: 0                !important; /* undo dflip’s padding, bg, borders */
  background: none          !important;
  color: inherit            !important;
  font-size: inherit        !important;
  border: none              !important;
  border-radius: 0          !important;
  cursor: auto              !important;
  display: inline           !important;
  position: static          !important;
  white-space: normal       !important;
}

/* 4) Reset its hover state */
.no-dflip ._df_button:hover {
  cursor: pointer           !important;
  text-decoration: none     !important;
  color: inherit            !important;
  background: none          !important;
}
