@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/***** General CSS *****/

body {
  word-break: break-word;
  font: 15px/25px 'Poppins', sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #f2f0c0;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
 /* color: #393939;*/

   color: #ffffff;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

p {
  font-weight: 500;
}

p {
  margin: 0;
  padding: 0;
}

/***** Font Files *****/

@font-face {
  font-family: 'Fonts Awesome';
  src: url(../fonts/fontawesome-webfont.eot);
  src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal
}


/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

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

.theme-btn {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 15px 40px;
  color: #fff;
  margin: 20px 20px 20px 0;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  text-transform: capitalize;
  border: 2px solid;
  text-transform: uppercase;
}

.theme-btn:hover {
  background-color: #fff;
  color: #28b16d;
  border-color: #28b16d;
}

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  margin: 0 0 17px;
}

h2 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 55px;
  line-height: 60px;
  color: #393939;
  font-weight: 500;
}

h3 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 28px;
}

h4 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 13px;
}

h5 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 20px;
}

h6 {
  font-family: 'Poppins', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0 0 22px;
}

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

}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}


/*header css start */

.menuSec {
  padding: 0px 0;
}

.menuSec img {
  margin: 0;
}

.menuSec form input {
  border: none;
  outline: none;
  width: 25%;
  padding: 7px 0 6px 18px;
  border-radius: 12px;
}

.menuSec .search-bar {
  text-align: end;
  margin: 6px -12px 0 0px;
  display: none;
}

.show-search-bar {
  display: block !important;
}

.menuSec ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: right;
  text-transform: capitalize;
}

.menuSec ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
}

.menuSec li ul {
  display: none;
}



/* .menuSec ul li a:after {
  content: '';
  position: absolute;
  top: 35%;
  right: 0;
  width: 1px;
  height: 13px;
  background-color: #393939;
} */

.menuSec ul li:last-child a {
  padding-right: 0px;
}

.menuSec ul li:last-child a:after {
  display: none;
}

.menuSec ul li a:hover,
.menuSec ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menuSec li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menuSec li>ul>li>a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
  display: block;
  margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
  display: none;
}

.menuSec li:hover li {
  float: none;
}

.menuSec li:hover a {}

.menuSec li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menuSec ul ul ul {
  left: 100%;
  top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
  content: " ";
  display: table;
}

.menuSec ul:after {
  clear: both;
}

.menuSec li>ul>li:hover>ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.droopdwon li:hover>ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 40px;
}

.droopdwon {
  float: left;
}

.droopdwon li:hover li a:hover {
  background-color: #ffffff;
  color: #000 !important;
}

/*header css start */

.dropdown-menu {
  position: absolute !important;
  z-index: 1000;
  display: block;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}


/*banner css start */
.inner_banner>img {
  width: 100%;
}

section.banner-sec .text-sec .refer {
  color: #fff;
  font-family: 'Poppins';
  font-size: 15px;
  line-height: 42px;
}

.carousel-item>img {
  width: 100%;
}

.carousel-inner>.item>a>img,
.carousel-inner>.item>img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators {}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.1);
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}


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

.store-btns .add-to-cart {
  border: 1px solid rgb(99 101 26);
}

/*banner css end*/

.blog_sec {
  padding: 5% 0;
}

/*slick slider in tabs css start*/


/* Style the tab */




.tab_sec .tab {
  overflow: hidden;
  border: 0;
  background-color: #ffffff;
}

/* Style the buttons that are used to open the tab content */
.tab_sec .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab_sec .tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab_sec .tab button.active {
  background-color: #ccc;
}

/* Style the tab content */

.tab_sec .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 0;
}

.tabcontent.active {
  display: block;
}

/*slick slider in tabs css start*/

.nav-item {
  padding: 10px;
}

/* menu css start */
@font-face {
  font-family: Bebas;
  src: url('../fonts/Bebas-Regular.ttf');
}

@font-face {
  font-family: Alander;
  src: url('../fonts/Alander\ Demo.ttf');
}

ul#cen-menu {
  text-align: center;
}

.menuSec ul li a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #fff !important;
  padding: 10px 23px;
  font-size: 16px;
  line-height: 42px;
}

.menuSec .row {
  border-bottom: 1px solid #fff;
  padding: 11px 0;
}

/* menu css end */



/* banner css start */
section.banner-sec .name {
  font-size: 36px;
  font-family: Alander;
  color: #fff;
}

h6.logo {
  margin: 20px 0 0 0;
  font-family: Bebas;
  font-size: 35px;
  color: #ffe4b2;
}

section.banner-sec .text-sec {
  padding: 190px 0;
}

section.banner-sec .intro {
  font-family: 'Bebas';
  color: #ffe4b2;
  font-size: 55px;
  line-height: 66px;
}

.banner-sec {
  background-image: url("../images/banner.jpg");
  box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 24%) !important;
  background-position: inherit;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

section.banner-sec .text-sec {
  height: 786px;
  padding: 244px 0px;
}

.banner-inner-box {
  background-color: #f2f0c0;
  position: absolute;
  padding: 28px 0px 18px 37px;
  bottom: 0;
}

.banner-inner-box .desc {
  font-size: 14px;
  line-height: 24px;
  width: 76%;
}
.banner-inner-box p{
    font-family: 'Poppins', Sans-Serif;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
}
.banner-inner-box a.amaz {
  background: rgb(167, 172, 51);
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
  color: #ffe4b2;
  padding: 12px 27px;
  border-radius: 7px;
  text-transform: uppercase;
  font-family: 'Bebas';
  letter-spacing: 1px;
  font-size: 15px;
  border: 1px solid rgb(167 172 51);

}

.banner-inner-box a.amaz i {
  color: #fff;
  margin: 0 8px 0 0px;
  background-color: #333333;
  font-size: 11px;
  padding: 2px 2px;
  border-radius: 50%;
}

.banner-inner-box a.appl {
  border: 1px solid #000;
  padding: 12px 27px;
  border-radius: 7px;
  text-transform: uppercase;
  font-family: 'Bebas';
  font-size: 15px;
  color: #000;
}

.banner-inner-box a.appl i {
  margin: 0 7px 0px 0;
}

.banner-inner-box .store-btns {
  margin: 24px 0 0 0;
}

.banner-inner-box p.title {
  font-family: 'Bebas';
  font-size: 36px;
  line-height: 43px;
}

.rating span {
  background: #9EA330;
  background: radial-gradient(ellipse farthest-side at top center, #9EA330 0%, #66691B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* banner css start end */
/* featured books css sec  start*/
@font-face {
  font-family: Myriad-Regular;
  src: url("../fonts/Myriad\ Pro\ Regular.ttf");
}

.featured-books-sec .txt-sec p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-family: Myriad-Regular;
  margin: 6px 0;
}

.aftbnr-ftbk .txt-sec p{
  color: #000;
    font-size: 16px;
    line-height: 31px;
    font-family: Myriad-Regular;
    margin: 6px 0 20px;
}
.featured-books-sec a.add-to-cart {
  color: #ffe4b2;
  text-decoration: underline;
  font-size: 18px;
  font-family: 'Bebas';
}

.aftbnr-ftbk .txt-sec .add-to-cart {
    background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
    color: #ffe4b2;
    padding: 12px 27px;
    border-radius: 7px;
    text-transform: uppercase;
    font-family: 'Bebas';
    letter-spacing: 1px;
    font-size: 18px;
    border: 1px solid rgb(167 172 51);
}

.featured-books-sec .img-sec {
  border: 3px solid #404400;
  padding: 58px 0px;
  border-bottom: none;
}

.aftbnr-ftbk .img-sec {
  border: 3px solid #404400;
  padding: 0 0px;
  border-bottom: 3px solid #404400;
}

.featured-books-sec .txt-sec {
    background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
    text-align: center;
    padding: 12px 37px;
    height: 190px;
}
.aftbnr-ftbk .txt-sec {
   background: transparent;
    text-align: left;
    padding: 12px 0;
   display: flex;
    align-items: flex-start;
    justify-content: left;
    flex-flow: column;
}
.featured-books-sec .heading-sec {
  text-align: center;
}

.featured-books-sec .heading-sec h2 {
  font-family: 'Bebas';
  text-transform: uppercase;
  font-size: 87px;
  color: #404400;
  line-height: 103px;
}

.featured-books-sec .book-sec .img-sec {
  width: 415px;
  height: 486px;
}

.aftbnr-ftbk .book-sec .img-sec {
  width: 525px;
    height: 374px;
}

.featured-books-sec .book-sec {
  text-align: center;
}

.featured-books-sec .heading-sec p {
  width: 50%;
  display: inline-block;
  color: #5b5a47;
  font-size: 16px;
  line-height: 27px;
  margin: 0 0 18px 0;
  font-family: 'Myriad-Regular';
}

.featured-books-sec .txt-sec .title, .featured-books-sec .txt-sec .title a {
    color: #000;
    font-size: 28px;
    line-height: 32px;
    font-family: 'Bebas';
}

section.featured-books-sec {
  background-color: #f2f0c0;
  padding: 63px 0;
}

/* featured books css sec end */
/*  ABout author css start*/
.about-author-sec .author-intro h2 {
  font-family: 'Bebas';
  text-transform: uppercase;
  color: #ffe4b2;
  font-size: 87px;
  line-height: 103px;
}

section.about-author-sec {
  background: linear-gradient(273deg, rgba(167, 172, 51, 1) 36%, rgba(87, 89, 21, 1) 100%);
}

.about-author-sec .author-intro p {
  color: #fff;
  font-size: 16px;
  font-family: Myriad-Regular;
  margin: 6px 0;
  line-height: 33px;
}

.about-author-sec .author-intro {
  padding: 24px 0 0px 94px;
  width: 96%;
}

section.about-author-sec .inner-relv {
  position: relative;
}

section.about-author-sec .inner-box {
  position: absolute;
  bottom: 0;
  left: 0;
}

section.about-author-sec .our-miss h4 {
  font-family: 'Bebas';
  text-transform: uppercase;
  color: #ffe4b2;
  font-size: 44px;
  line-height: 52px;
}

section.about-author-sec .our-miss p {
  color: #fff;
  font-size: 16px;
  font-family: Myriad-Regular;
  margin: 6px 0;
  line-height: 33px;
}

section.about-author-sec .our-miss a {
  font-family: 'Bebas';
  text-transform: uppercase;
  color: #ffe4b2;
  font-size: 18px;
  line-height: 42px;
  text-decoration: underline;
}

section.about-author-sec .inner-box .vid-sec {
  position: relative;
}

section.about-author-sec .lady-prnt {
  padding: 0 0 0 0;
}

section.about-author-sec .inner-box .vid-sec a {
  position: absolute;
  left: 264px;
  top: 180px;
  color: yellow;
  border: 2px solid #fff;
  padding: 17px 23px;
  border-radius: 50%;
}

/* ABout author css end */
/* motivational books css start */

.featured-books-sec .nav-pills .nav-link.active {
  color: #fff !important;
  background-color: #404400 !important;
}

.featured-books-sec .nav-link {
  color: #000 !important;
  padding: 10px 16px !important;
  border: 1px solid #000 !important;
  border-radius: 8px !important;
  font-family: 'Bebas';
  font-size: 24px;
  line-height: 43px;
}

/* motivational books css end */
/* news & blog css start  */
.img-sec.news-blog {
  height: 337px !important;
  padding: 0;
  border: none;
}

p.news-blog-date {
  color: #ffe4b2 !important;
  font-size: 18px;
  font-family: 'Bebas';
  text-transform: uppercase;
}

/* introducing Ebook css start */
.intro-to-Ebook a.appl {
  border: 1px solid #fff;
  padding: 12px 27px;
  border-radius: 7px;
  text-transform: uppercase;
  font-family: 'Bebas';
  font-size: 15px;
  color: #fff;
}

section.intro-to-Ebook .cont .desc {
  font-size: 18px;
  line-height: 33px;
  font-family: 'Myriad-Regular';
  margin: 38px 0;
}

.intro-to-Ebook a.appl i {
  margin: 0 13px;
}

section.intro-to-Ebook .cont .rating a {
  padding: 0 30px 0 0;
  font-size: 18px;
}

section.intro-to-Ebook .cont .rating {
  margin: 18px 0;
}

section.intro-to-Ebook .cont .title {
  font-family: 'Bebas';
  text-transform: uppercase;
  font-size: 46px;
  color: #ffffff;
  line-height: 54px;
}

section.intro-to-Ebook .cont h2 {
  font-family: 'Bebas';
  color: #fff;
  font-size: 75px;
  line-height: 89px;
}

section.intro-to-Ebook .cont h2 span {
  color: #ffe4b2;
}

section.intro-to-Ebook {
  background-image: url("../images/intro-ebook-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 56px 0 0 0px;
  height: 681px;
}

section.intro-to-Ebook .cont .auth-name {
  font-size: 24px;
  font-family: 'Poppins';
  line-height: 73px;
}

section.intro-to-Ebook .cont .auth-name span {
  color: #ffe4b2;
  margin: 0 0 0 11px;
}

.intro-to-Ebook .add-to-cart {
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
  color: #ffe4b2;
  padding: 12px 27px;
  border-radius: 7px;
  text-transform: uppercase;
  font-family: 'Bebas';
  letter-spacing: 1px;
  font-size: 15px;
  margin: 0 0 0 18px;
}

/* introducing Ebook css end */
/* news & blog css end  */

.footer-btm .text {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-btm .text .right {
  display: flex;
  width: 28%;
  justify-content: space-evenly;
}

.footerSec {
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 53px 0 0 0;
  color: #fff;
  font-size: 13px;
}

.footer-btm {
  border-top: 1px solid #fff;
  padding: 30px 0;
  margin-top: 28px;
}

.footerSec h5 {
  font-family: 'Bebas';
  color: #ffe4b2;
  line-height: 42px;
  font-size: 36px;
}

.footer-contact ul {
  width: 77%;
}

.foot-links a {
  color: #fff;
}

/* footer css end */


/*about page css start*/


.about_Sec {
  background: url(../images/about-bg.jpg);
  height: 65vh;
  box-shadow: inset 0 0 0 1000px rgb(0 0 0 / 24%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.about_Sec .txt_wrp {}

.about_Sec .txt_wrp h1 {
  font-family: 'Bebas';
  color: #ffe4b2;
  line-height: 42px;
  font-size: 130px;
  margin: 0;
  letter-spacing: -5px;
}

.about_second_fold {
  background: #fcf9cc;
  padding: 80px 0;
}

.about_second_fold .clearfix {}

.about_second_fold .clearfix h2 {
  font-size: 87px;
  font-family: 'Bebas';
  color: #404400;
  margin: 0 0 30px 0;
}

.about_second_fold .clearfix h6 {
  font-size: 44px;
  font-family: 'Bebas';
  color: #404400;
  margin: 0 0 30px 0;
}

.about_second_fold .clearfix p {
  font-family: Myriad-Regular;
  font-size: 16px;
  font-weight: 600;
  line-height: 35px;
  margin: 0 0 30px 0;
}

/*about page css end*/



/*cart-pg start*/

.add-to-cart {
  position: relative;
  /* padding: 80px 0; */
  /* background: #fffccf; */
}

.add-to-cart thead {
  color: #fff;
  background: linear-gradient(272deg, #46470f 20%, #c9cf40 70%);
}

.add-to-cart .table>thead>tr>th {
  border-bottom: 0;
  padding-left: 25px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-family: 'Poppins';
  font-size: 15px;
  padding-right: 0 !important;
}

.add-to-cart thead tr th {
  font-size: 19px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.table-space h3 {
  font-size: 16px;
  color: #000;
  margin-bottom: 5px;
  font-family: 'Poppins';
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.table-space span {
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  font-family: 'Poppins';
  font-weight: 400;
}

.product-img {
  /* border: 1px solid #ccc; */
  display: inline-block;
  width: 100%;
  height: 150px;
  padding: 10px 0px;
  /* background-color: #ffffff; */
  text-align: center;
}

.poduct-name {
  margin-left: 10px;
}

.table-space {
  display: flex;
  align-items: center;
  width: 100%;
}



.add-to-cart a {
  font-size: 17px;
  display: block;
  text-align: center;
  padding-top: 9px;
  color: rgba(0, 0, 0, 0.50);
  font-weight: 500;
  text-decoration: none;
  color: #000;
  font-family: 'Poppins';
}

.poduct-name span:nth-child(2) {
  margin-bottom: 5px;
  display: inline-block;
}

.add-to-cart h4 {
  font-size: 20px;
  font-family: 'Poppins';
  font-weight: 400;
  color: #000;
  text-align: center;
  margin-top: 40px;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

tr.space {
  border-bottom: 1px solid #ccc;
}

a.remove {
  background: #000;
  font-size: 26px;
  color: white;
  padding: 10px 20px;
  border: none;
  margin-top: 35px;
}

.proceed a {
  color: #000;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Poppins';
  padding: 12px 30px;
  text-transform: uppercase;
}

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

.proceed .checkout-btn {
  background-color: #df1a2b;
  border: none;
  padding: 20px;
  width: 100%;
  font-size: 20px;
  margin-top: 4px;
  border-radius: 0;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  font-family: 'recharge-bold';
}

.or-amazon {
  margin-top: 50px;
  position: relative;
  border: 1px solid #cbc9a3;
  /* top: 25px; */
  padding: 40px 50px;
  border-radius: 5px;
  background-color: #fffccf;
}

.or-amazon p {
  font-size: 16px;
  position: absolute;
  background: #fffccf;
  top: -20px;
  left: 50%;
  padding: 5px 20px;
  color: #000;
  display: block;
  text-transform: uppercase;
  transform: translateX(-50%);
  border: 1px solid #cbc9a3;
  font-weight: 400;
  font-family: 'Poppins';
}

.or-amazon img {
  width: 60%;
}

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

.total-section {
  border: 1px solid #cbc9a3;
  padding: 50px 50px;
  background-color: #fff0;
}

.total-section li {
  font-size: 20px;
  padding-bottom: 30px;
  color: #000;
  font-weight: 400;
  font-family: 'Poppins';
}

li.color-change {
  color: var(--blue);
  text-transform: uppercase;
  font-size: 28px;
  font-family: 'Poppins';
  font-weight: 500;
  padding-bottom: 0;
}

.total-section li span {
  float: right;
}

.ship-estimate {
  background-color: #fff0;
  padding: 50px;
  margin-top: 25px;
  border: 1px solid #cbc9a3;
}

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

.ship-estimate li {
  font-size: 26px;
  color: var(--blue);
  margin-bottom: 5px;
  font-family: 'Poppins';
  font-weight: 500;
}

.ship-estimate .grey-style {
  color: #000;
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 400;
}

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

.nice-select .list {
  height: 350px;
  overflow-y: scroll;
}

.total-section ul {
  margin: 0;
}



a.btn_theme1_blue {
  text-align: center;
  background: linear-gradient(272deg, #46470f 20%, #c9cf40 70%);
  color: #fff;
  display: block;
  font-family: 'Poppins';
  padding: 10px 0;
  font-weight: 700;
}


.continue_btn {
  float: right;
}


ul.quan {
  margin: 40px 0 0 0;
}

li.inc input {
  background: transparent;
  padding: 15px 0;
  text-align: center;
  border: 2px solid #cbc9a3;
}


/*CART END*/



/*CHECKOUT PAGE STRT*/



.billing_form {
  padding: 40px;
  /*background-color: #0e194a;*/
}

.billing_form h3 {
  font-size: 30px;
  color: #404400;
  margin: 0;
  line-height: 25px;
  font-family: 'Poppins';
  margin-bottom: 20px;
  font-weight: 700;
}

.billing_form label {
  font-size: 15px;
  color: #000;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Poppins';
  margin: 0 0 5px 0;
}


.billing_form input ::placeholder {
  font-family: 'Montserrat';
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  line-height: 14px;
}

.radiosss p {
  color: #000;
  font-size: 12px;
  font-family: 'Poppins';
  font-weight: 400;
  margin: 0;
}


.billing_form input {
  width: 100%;
  height: 45px;
  margin-bottom: 20px;
  padding-left: 15px;
  background-color: #fff0;
  border: 1px solid #c5c5b8;
  border-radius: 0;
  font-family: 'Poppins';
  color: #000;
}

.billing_form input::placeholder {
  color: #7C7C7C;

}

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

.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #000;
  font-family: 'Poppins';
  font-weight: 400;
}

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


.cart_sidebar .cart_lst li:last-child {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: 'Poppins';
}



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



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

.thankyou_txt h3 {
  font-size: 35px;
  color: #000;
  font-weight: 800;
  margin: 0;

}

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

.order_det h5 {
  font-size: 20px;
  color: #7c7c7c;
  font-weight: 400;

}

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

.order_complete_detail h3 {
  font-size: 22px;
  color: #000;
  font-weight: 700;

}

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

.order_detail_table h5 {
  margin-top: 0px;
  padding-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  font-size: 16px;
  font-weight: 700;
  color: #000;

}

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

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

}

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

.order_detail_table ul li span {
  float: right;
}

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

.order_detail_table h6 {
  font-size: 17px;
  font-weight: 700;
  color: #000;

  padding: 25px 0;
  border-top: 1px solid #dbdbdb;
  margin: 0;

}

.order_detail_table h6 span {
  float: right;
}

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

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

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

.check_menu ul li.purp {
  color: #4b902c;
}

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



.cart_sidebar h3 {
  font-weight: 700;
  margin-top: 0px;
  line-height: 25px;
  font-family: 'Poppins';
  margin-bottom: 20px;
  font-size: 30px;
  color: #404400;
}



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

.cart_sidebar h5 span {
  float: right;
}

.cart_sidebar h4 {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  font-family: 'Poppins';
}

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

.cart_sidebar ul li label {
  position: relative;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  font-family: 'Poppins';
}


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

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

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

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

.cart_sidebar form h4 {
  font-size: 14px;
  font-weight: 400;
  color: #b7b7b7;

}

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

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

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

.cart_sidebar form input::placeholder {
  color: #b7b7b7;
}

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

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

.checkout_btn {
  padding: 14px 50px;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  background: linear-gradient(180deg, #63ab1e 60%, #4a8f2c 100%);
  text-transform: uppercase;
  border-radius: 100px;
}

.Quick_info ul li a {
  text-transform: lowercase;
  font-size: 14px;
}


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

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

label {
  display: inline-block;
  font-family: 'Montserrat';
  font-size: 16px;
  line-height: 20px;
  color: #7c7c7c;
  font-weight: 500;
  margin-bottom: 12px;
}

.cart_sidebar .radiosss-payments li label:before {

  content: '';

  -webkit-appearance: none;

  background-color: transparent;

  border: 1px solid #b7b7b7;

  box-shadow: 0 1px 2px rgb(0 0 0 / 5%), inset 0px -15px 10px -12px rgb(0 0 0 / 5%);

  padding: 10px;

  display: inline-block;

  position: relative;

  vertical-align: middle;

  cursor: pointer;

  margin-right: 10px;

  border-radius: 50px;
}

.cart_sidebar .radiosss-payments li input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  border-radius: 20px;
  left: 6px;
  border: 0;
  width: 10px;
  height: 10px;
  background-color: #000;
}



.radiosss-payments .card.card-body {
  padding: 0;
  border: 1px solid transparent;
  margin-left: 0;
  padding: 10px;
  background-color: #fff0;
}

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



.billing_form {
  border: 1px solid #c5c5b8;
  padding: 30px;
}

section.checkout_page.pt-5.pb-5 {
  background: #fffccf;
}

/*CHECKOUT PAGE END*/



/*PAGE: CONTACT PAGE CSS STRT*/
.contact-page {
  padding: 80px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background: #efedbe;
}

.get-in-touch {
  border-radius: 20px;
  padding: 30px;
  background-image: url(../images/c1.jpg);
  object-fit: contain;
  background-position: unset;
  background-repeat: no-repeat;
}

.get-in-touch h2 {
  font-size: 51.57px;
  font-weight: 500;
  padding-bottom: 0;
  color: #ffe4b2;
  margin: 0 0 10px;
  text-transform: capitalize;
  font-family: 'Bebas';
}

.get-in-touch p {
  color: #fff;
  font-size: 15px;
  line-height: 31px;
}

.contact-socail {
  padding-top: 10px;
}

.contact-socail i {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background-color: #696c33b8;
  color: #fff;
  border-radius: 50%;
  font-size: 30px;
  transition: 1s ease-in-out;
  margin-top: 0;
}

.contact-socail i:hover {
  transform: rotate(360deg);
}

.contact-socail h6 {
  color: #a7ac33;
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 28px;
}

.contact-socail a {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Poppins';
}

.requet-quote {
  padding: 50px 30px 50px 30px;
  box-shadow: 0px 0px 6px #0000003d;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
}

.contact-page .requet-quote:placeholder {
  color: #000 !important;
}

button.btn_theme.d-inline-flex.mt-4 {
  width: 25%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-transform: uppercase;
  border-radius: 6px;
  color: #fff;
  background: #000;
}

.requet-quote h2 {
  color: #ffe4b2;
  font-size: 57.18px;
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  font-family: 'Bebas';
}

.requet-quote h2:before {
  content: '';
  height: 50px;
  width: 6px;
  background-color: #ffe4b2;
  left: -30px;
  /*top: 8px;*/
  position: absolute;
}

.requet-quote input {
  width: 100%;
  border: 1px solid #7a7e22;
  padding: 15px 20px;
  border-radius: 10px;
  margin-top: 17px;
  background-color: #92953d;
  color: #fff;
}

.requet-quote a {
  color: #fff;
  padding: 10px 30px;
  font-size: 18px;
  background-color: #ee202a;
  line-height: 120px;
  border-radius: 5px;
  transition: 0.5s ease-in-out;
}

.requet-quote a:hover {
  padding: 10px 50px;
}

.login-forms {
  padding: 70px 0px;
  background: #f7f7f7;
}

.form-box {
  background-color: #f8f8f8;
  padding: 20px 50px;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
  box-shadow: 0px 0px 20px #00000021;
}

.form-box h2 {
  color: #000000;
  font-size: 34px;
  text-align: center;
}

.form-box input {
  background-color: #fff;
  border: 1px solid #dbdbdb;
  width: 100%;
  border-radius: 5px;
  padding: 13px 20px;
  margin-top: 20px;
}

.form-box ::placeholder {
  color: #cacaca;
  font-size: 16px;
}

.requet-quote input::placeholder {
  color: #000;
}

.form-box label {
  color: #000000;
  font-size: 14px;
}

.f-flex-s {
  display: flex;
}

.coloum1 {
  width: 45%;
}

.coloum2 {
  width: 45%;
  margin-left: 10%;
}

.btn-form {
  color: #fff;
  background-image: linear-gradient(to right, #1cf0f5, #2f3f9b);
  text-align: center;
  text-transform: uppercase;
  margin-top: 20px;
  border-radius: 5px;
  display: block;
  width: 100%;
  padding: 13px 20px;
  border: 0px;
}

.social {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

ul.social_link {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.social h3 {
  font-size: 19.4px;
  color: #fff;
}

ul.social_link i {
  font-size: 20px;
  background: none;
  padding: 0;
  width: 50px;
  height: 0;
}

.contact-page input::-webkit-input-placeholder {
  color: #fff;
}

.contact-page input::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.contact-page input:-ms-input-placeholder {
  color: #fff;
}

.contact-page input:-moz-placeholder {
  color: #fff;
  opacity: 1;
}


.contact-page button.theme_btn {
    background: #ffe4b2;
    font-family: 'Poppins';
    color: #000;
    border: 0;
    padding: 10px 40px;
    font-weight: 500;
    border-radius: 5px;
    width: 180px;
}
.btn-primary {
    border-color: #ffe4b2;
    background: #ffe4b2;
    font-family: 'Poppins';
    color: #000;
    border: 0;
    padding: 10px 40px;
    font-weight: 500;
    border-radius: 5px;
}
.btn-primary:hover {
    color: #fff;
    background: rgb(167, 172, 51);
}
.requet-quote a {
    background-color: #ffe4b2;
    color: #000;
}

/*PAGE: CONTACT PAGE CSS END*/

/* Testi */
section.testimonial {
    padding: 80px 0;
    background: linear-gradient(273deg, rgba(167, 172, 51, 1) 36%, rgba(87, 89, 21, 1) 100%);
}

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

.test-wrap {
    background: #f2f0c04d;
    padding: 40px;
    clip-path: polygon(84% 0, 100% 33%, 100% 100%, 0 100%, 0 0);
    transition: 0.5s;
}

.test-wrap:hover {
    background: #575915;
}

.test-wrap ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.test-wrap ul li img {
    width: 100px;
    height: 84px;
    border-radius: 10px;
    object-fit: cover;
       border: 1px solid #595b16;
}

.test-wrap ul li h6 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Bebas';
}

.test-wrap ul li h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.stars i {
   color: #ffc107;
    font-size: 20px;
    margin-bottom: 10px;
}

.test-wrap p {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    width: 100%;
    margin-bottom: 0;
}

section.testimonial h2.big-heading {
    text-align: center;
    font-family: 'Bebas';
    text-transform: uppercase;
    font-size: 87px;
    color: #404400;
    line-height: 103px;
}
section.testimonial p.top-para {
    color: #fff;
}

.for-clip {
    position: relative;
}

.for-clip:before {
    position: absolute;
    content: '';
    width: 12vw;
    height: 12vw;
    right: 10px;
    z-index: 9;
    top: 10px;
    clip-path: polygon(29% 0%, 100% 0, 100% 60%, 61% 28%);
    background: #f2f0c0;
}
section.testimonial p.top-para {
    margin: 0 auto;
    text-align: center;
    width: 50%;
    margin-bottom: 30px;
}
/* end  */
/*product page css Start*/

section.productsec {
  padding: 100px 0 100px;
  width: 100%;
  background-position: center;
  background-size: contain;
  background: #e0deae;
}

.panel-groupnew .panel-heading {
  padding: 0;
}

.panel-groupnew .panel-title>a {
  display: block;
  padding: 20px 19px;
  outline: none;
  text-decoration: none;
  color: rgb(0 0 0);
  font-family: Poppins;
}

.panel-groupnew .panel-heading .panel-title>a.accordion-toggle::before,
.panel-groupnew a[data-toggle="collapse"]::before {
  content: "\f068";
  float: right;
  font: normal normal normal 14px/1 FontAwesome;
  width: 30px;
  height: 30px;
  font-size: 12px;
  border-radius: 50px;
  text-align: center;
  padding: 9px 9px;
  margin: -7px 0;
  color: #B5C448;
  font-size: 21px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.panel-groupnew .panel-heading .panel-title>a.accordion-toggle.collapsed::before,
.panel-groupnew a.collapsed[data-toggle="collapse"]::before {
  content: "\f067";
  font: normal normal normal 14px/1 FontAwesome;
  color: #B5C448;
  font-size: 21px;
}

.frequently-list .panel-body ul li a {
  color: #333333;
  font-size: 15px;
  font-weight: 500;
  padding-left: 35px;
}

.panel-groupnew2 .hide-btn {
  display: none !important;
}

.panel-groupnew2 .panel-title {
  padding: 0 !important;
}

.frequently-list .panel-group {
  margin-bottom: 0;
}

.frequently-list .panel-body ul li i {
  float: right;
  margin-top: 5px;
}

.frequently-list .panel-body ul li {
  padding-right: 40px;
}

.frequently-list {
  border: 1px solid #e0deae;
  box-shadow: 0px 0px 6px 4px #0000000f;
}

.panel-body ul {
  padding: 0;
}

.frequently-list .panel-body li {
  display: block;
  border-bottom: 1px solid #EEEEEE;
  width: 100%;
  font-family: 'Poppins';
  padding: 15px 0px 15px 0px;
  background-color: #e0deae;
}

.frequently-list .panel-body li:last-child {
  border: 0 !important;
}

.frequently-list .panel {
  border: 0;
}

.frequently-list .panel-default>.panel-heading {
  background-color: transparent;
}

.frequently-list h4.panel-title {
  padding: 12px 12px 12px 15px;
  color: #b79e55;
  border-bottom: 1px solid #EEEEEE;
  margin: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
}

.frequently-list .panel-body {
  padding: 0 !important;
}

.paddingbottom {
  padding: 0 0 63px;
}

.frequently-list .panel-group .panel-heading+.panel-collapse>.panel-body,
.panel-group .panel-heading+.panel-collapse>.list-group {
  border: 0;
}

.frequently-list .panel-group .panel {
  margin: 0;
}

.defaultlist select {
  width: 100%;
  height: 60px;
  padding: 0 8px;
  border: 1px solid #a7a4a4;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #545454;
  font-family: 'Poppins';
  appearance: auto;
  background: transparent;
}

.showinglist p {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-align: right;
  margin: 21px 0 0;
  color: #000;
  font-family: 'Poppins';
}

.productlistbox1 {
  margin: 0 0 50px;
}

.catogeriesbox {
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
  padding: 8px 19px 8px;
}

.catogeriesbox h4 {
  color: #ffffff;
  font-size: 20px;
  line-height: 20px;
  font-weight: 400;
  font-family: 'Poppins';
  padding: 20px 10px 0;
  margin-bottom: 15px;
}

.frequently-list #collapsetwo a {
  padding-left: 15px;
}

.frequently-list #collapsetwo li {
  padding-left: 30px;
}

.frequently-list .dash {
  padding: 0 25px;
  color: black;
  font-size: 19px;
}

.frequently-list .dollar {
  color: #333333;
  font-size: 15px;
  font-weight: 500;
}

.product-page-prdtc {
  box-shadow: 6px 5px 10px 5px #00000012;
}

prdtc-desc ul {
  justify-content: center;
}

.best-deal-sec {
  background-color: rgb(233, 238, 245);
  padding: 120px 0px;
}

.heading-uni h6 {
  font-family: Poppins;
  font-size: 18px;
  color: rgb(65, 65, 74);
  font-weight: 300;
}

.best-sale-slider {
  background-color: white;
  margin-bottom: 50px;
  padding: 0px 10px 30px;
}

.best-sale-slider .sale-badge {
  background-color: #B5C448;
  font-family: Poppins;
  color: rgb(0 0 0);
  font-size: 15px;
  position: absolute;
  top: 20px;
  left: 30px;
  padding: 0px 10px;
}

.heart-icon {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 20px;
  color: rgb(181 196 72);
}

.best-sale-slider img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
}

.best-sale-slider h6 {
  font-family: Poppins;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: black;
}

.prdtc-desc ul li a {
  color: rgb(227, 162, 6);
  font-size: 19px;
  margin-left: 8px;
}

.prdtc-desc h5 {
  font-family: Poppins;
  color: rgb(0, 0, 0);
  font-size: 21px;
  font-weight: 500;
}

.prdtc-desc .our-line {
  font-family: Poppins;
  color: rgb(215, 215, 215);
  font-size: 16px;
  text-decoration: line-through;
}

.slick-dots li.slick-active button::before {
  opacity: 1;
  color: rgb(12, 44, 83);
}

.slick-dots li button::before {
  font-size: 70px;
}

.collection .col_wrpr h6 span.fr-left::before {
  content: "";
  position: absolute;
  background-color: rgb(27, 57, 93);
  height: 55px;
  left: 0px;
  width: 97%;
  z-index: -1;
  top: -5px;
  font-family: "Playfair Display";
}

.collection .col_wrpr img.img-1,
img.img-4 {
  height: 550px;
  object-fit: cover;
  width: 100%;
}

.col_wrpr .img-3 {
  height: 256px;
}

.prdtc-desc ul {
  justify-content: center;
}

.frequently-list .collapsed {
  background-color: transparent !important;
}

.frequently-list .panel-default>.panel-heading h4 a {
  background-color: transparent !important;
}

.freq-checkbox {
  margin-left: 24px;
}

#headingOne .panel-title {
  padding: 0;
}

.product-page-sec .product-slider-inner .img-main {
  width: auto;
  margin-bottom: 70px;
  height: auto;
  margin-top: 50px;
}

.product-slider-inner {
  border: 1px solid #e1e1e1;
}

.product-slider-inner-img {
  background: #ebebeb;
  text-align: center;
}

.prdtc-txt {
  background-color: #ffffff;
}

.prdtc-txt .stars {
  margin: 0;
  display: flex;
}

.prdtc-txt .stars li {
  margin-right: 5px;
}

.product-main img {
  width: 100%;
  /* padding: 50px 10px; */
  margin: auto;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.product-main {
  background-color: #fff0;
  border: 2px solid #fff0;
  padding: 0;
  text-align: center;
  box-shadow: 0px 0px 11px #0000000d;
  border-radius: 20px;
  margin: 0 0 30px;
}

.product-txt-inner ul li i {
  color: #E3A206;
  font-size: 16px;
  margin-right: 5px;
}

.product-txt-inner h6 {
  color: #CCCCCC;
  font-family: 'helvetabold';
  font-size: 16px;
}

.product-txt-inner h5 {
  font-family: 'Poppins';
  color: black;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-top: 10px;
  margin: 0;
}

.product-txt-inner h6 {
  color: #CCCCCC;
  font-family: 'Poppins';
  font-size: 16px;
  text-align: left;
}

.product-cart-icon.d-flex {
  justify-content: end;
}

.product-cart-icon i {
  width: 47px;
  height: 45px;
  background-color: #e80b3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px !important;
  color: white !important;
  margin-top: 0;
  margin-left: 9px !important;
  cursor: pointer;
  border-radius: 0;
}

.product-cart-icon i:hover {
  background-color: #000000;
  color: #fff !important;
}

.frequently-list .panel-body ul {
  margin-bottom: 0;
}

.product-txt-inner {
  padding: 20px 10px;
  background-color: white;
}

.prdt-pg-col .product-txt-inner {
  height: 140px;
}

.frequently-list .panel-default>.panel-heading h4 a:not(.collapsed) {
  color: #000000 !important;
}

.frequently-list .panel-default>.panel-heading h4 a i {
  float: right;
  margin-right: 20px;
}

.product-txt-inner ul {
  margin: 0;
}


.product-main>a {
  display: block;
  padding: 20px;
  border-radius: 50px;
}

.product-page-sec .book-sec {
  text-align: center;
  margin: 0 0 30px 0;
  background: linear-gradient(180deg,rgba(255,255,255,0) 48%, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
  height: 100%;
}

.product-page-sec .book-sec .img-sec {
  border: 3px solid #404400;
  padding: 20px 0px;
  border-bottom: none;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-page-sec .book-sec .img-sec img {
  width: 70%;
      height: 300px;
    object-fit: contain;

  
}

.product-page-sec .book-sec .txt-sec {
  /*background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);*/
  text-align: center;
  padding: 12px 37px;
  /*height: 300px;*/
}

.product-page-sec .book-sec .txt-sec p {
  font-size: 12px;
  line-height: 18px;
  padding: 10px 0;
  color: #fff;
}

.product-page-sec .book-sec .txt-sec p.title {
  font-size: 25px;
  font-family: 'Bebas';
  color: #efedbe;
}

.product-page-sec .book-sec .txt-sec a {
  padding: 0;
  font-size: 14px;
  font-family: 'Bebas';
  color: #efedbe;
  background: no-repeat;
  text-decoration: underline;
}

.product-page-sec .book-sec .txt-sec a {
    background: rgb(167, 172, 51);
    background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
    color: #ffe4b2;
    padding: 12px 27px;
    border-radius: 7px;
    text-transform: uppercase;
    font-family: 'Bebas';
    letter-spacing: 1px;
    font-size: 15px;
    border: 1px solid rgb(167 172 51);
    display:inline-block;
    margin-top:15px;
}






/*product page css end*/




.prod-detail {
  /* margin: 30px; */
  padding: 60px 0;
  background: #f0eebf;
}


.prod-detail h2 {
  font-family: 'Bebas';
  font-size: 69px;
  line-height: 70px;
  color: #404400;
  font-weight: 500;
  margin: 0 0 30px;
  text-transform: uppercase;
}

.prod-detail p {
  font-family: 'Poppins';
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 20px;
}

.prod-detail h3 {
  font-family: 'Bebas';
  font-weight: 300;
  font-size: 44px;
  line-height: 70px;
  color: #404400;
}

.prod-detail h6 {
  font-family: 'Montserrat-Regular', Sans-Serif;
  font-size: 18px;
  line-height: 23px;
  color: #000;
  font-weight: 500;
  margin: 0 0 22px;
}
.prod-detail .text-divider {
  --text-divider-gap: 1rem;
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin:10px 0;
}

.prod-detail .text-divider::before, .prod-detail .text-divider::after {
  content: '';
  height: 1px;
  background-color: silver;
  flex-grow: 1;
}

.prod-detail .text-divider::before {
  margin-right: var(--text-divider-gap);
}

.prod-detail .text-divider::after {
  margin-left: var(--text-divider-gap);
}
.prod-detail a.amaz {
    display: block;
    width: fit-content;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    margin: auto;
}

ul.quantity {
  display: flex;
  justify-content: s;
  align-items: center;
  gap: 37px;
}

.quantity input[type="number"] {
  border: none;
  background: #dedcaf;
  text-align: center;
  padding: 15px;
}

.prod-detail a {
  border: solid;
  width: 20%;
  display: inline;
  padding: 14px;
  border: none;
  color: white;
  font-size: 16px;
  font-family: 'Poppins';
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
}

.description-detail .nav {
  border-bottom: solid 0.5px #cccccc;
  padding-bottom: 15px;
}

.description-detail .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: #fff;
  font-size: 18px;
  font-family: 'Poppins';
  text-transform: inherit;
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
}

.description-detail .nav-pills .nav-link {
  border-radius: 0rem;
  background: #dedcaf;
  margin-left: 10px;
  font-size: 18px;
  color: black;
  font-family: 'Poppins';
  /* font-weight: 800; */
  padding: 12px 15px;
}

.description-detail .tab-content>.active {
  display: block;
  font-size: 18px;
  color: #000;
  font-family: 'Poppins';
  line-height: 27px;
  font-weight: 400;
}


.prod-det-img.wow.fadeInRight {
  text-align: center;
}


.prod-det-img.wow.fadeInRight img {
  padding: 40px;
  border: 2px solid #000;
}


section.add-info.pb-8 {
  padding: 40px 0 60px 0;
  background: #f0eebf;
}



/* product tabs css */

.rate {
  height: 46px;
  /* padding: 0 10px; */
  float: left;
  display: block;
  clear: both;
}

.rate input {
  top: 0;
  visibility: hidden;
}

.rate:not(:checked)>input {
  position: absolute;
  /* top: -9999px; */
}

.rate:not(:checked)>label {
  float: right;
  width: 0.5em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 35px;
  color: #ccc;
  margin: 0 3px;
}

.rate:not(:checked)>label:before {
  content: '\f005';
  font-family: 'Font Awesome 5 Free';
  font-weight: 800;
  color: #000;
  font-size: 16px;
}

.rate>input:checked~label {
  color: #f9d71c;
}

.rate:not(:checked)>label:hover,
.rate:not(:checked)>label:hover~label {
  color: #deb217;
}

.rate>input:checked+label:hover,
.rate>input:checked+label:hover~label,
.rate>input:checked~label:hover,
.rate>input:checked~label:hover~label,
.rate>label:hover~input:checked~label {
  color: #c59b08;
}

.prd-commets .testimonial-heading {
  letter-spacing: 1px;
  margin: 30px 0px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.prd-commets .testimonial-heading span {
  font-size: 1.3rem;
  color: #252525;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.prd-commets .testimonial-box-container {
  display: block;
}

.prd-commets .testimonial-box {
  width: 100%;
  box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  padding: 20px;
  margin: 15px;
  cursor: pointer;
}

.testi-box {
  border: 1px solid #575915;
  padding: 30px;
  margin: 20px 0;
}

.prd-commets .prd-commets .profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
}

.prd-commets .profile-img img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  object-position: center;
  border-radius: 50px;
  margin-right: 20px;
}

.prd-commets .profile {
  display: flex;
  align-items: center;
}

.prd-commets .name-user {
  display: flex;
  flex-direction: column;
}

.prd-commets .name-user strong {
  color: #3d3d3d;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.prd-commets .name-user span {
  color: #979797;
  font-size: 0.8rem;
}

.prd-commets .reviews {
  color: #f9d71c;
}

.prd-commets .box-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.prd-commets .client-comment p {
  font-size: 0.9rem;
  color: #4b4b4b;
  text-align: left;
}

.prd-commets .testimonial-box:hover {
  transform: translateY(-10px);
  transition: all ease 0.3s;
}

.description .tab-content input[type="text"] {
  width: 100%;
  border: 0px;
  background-color: rgb(222 220 175);
  padding: 10px;
  height: 50px;
  margin-bottom: 20px;
  font-weight: 500;
  color: rgb(124, 124, 124);
}

.prdtc-rvw ul {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.description .tab-content form .row {
  align-items: center;
}

.prdtc-rvw i {
  font-size: 25px;
  margin-right: 10px;
}

.description .tab-content textarea {
  width: 100%;
  border: 0px;
  background-color: rgb(222 220 175);
  padding: 10px;
  margin-bottom: 20px;
  font-weight: 500;
  color: rgb(124, 124, 124);
}

.description .tab-content form {
  margin-bottom: 70px;
}

.prdtc-rvw i:hover {
  color: #FFC107;
}

.review-btn .theme_btn {
  display: inline;
  padding: 10px 20px;
  border: none;
  color: white;
  font-size: 16px;
  font-family: 'Poppins';
  background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
}


/*Changes */

.banner-inner-box .img-sec img.img-fluid {
    width: 261px;
    height: 209px;
    object-fit: contain;
}

section.featured-books-sec .book-sec .img-sec img {
    width: 272px;
    height: 358px;
    object-fit: cover;
}

section.aftbnr-ftbk .book-sec .img-sec img {
    width: 100%;
    height: 368px;
    object-fit: cover;
}

.vid-sec img {
    width: 587px;
    object-fit: cover;
}
.img-sec.news-blog img {
    width: 400px !important;
    height: 326px !important;
}
.about_second_fold .clearfix img.img-fluid {
    width: 526px;
    height: 775px;
        object-fit: contain;
}

section.blogs-details {
    padding: 80px 0;
}

section.blogs-details .blogs-img-text img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 30px;
}

section.blogs-details .col-lg-8 {
    width: 100%;
}
.requet-quote button {
    background: #ffe4b2;
    font-family: 'Poppins';
    color: #000;
    border: 0;
    padding: 10px 40px;
    font-weight: 500;
    border-radius: 5px;
    margin-top: 10px;
}
/*end */



@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1200px) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1199px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .featured-books-sec .book-sec .img-sec {
    width: 100%;
    height: 486px;
  }

  .banner-inner-box {
    padding: 10px;
    bottom: 0;
  }

  .store-btns a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
  }

  .banner-inner-box .desc {
    width: 100%;
  }


}



.txt-sec {
    position: relative;
}

p.news-blog-date {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: 0 !important;
}
.book-sec .txt-sec p.title {
    max-height: 130px;
    overflow: hidden;
}

.prdmain-cnt {
    background: linear-gradient(180deg, rgba(167, 172, 51, 1) 24%, rgba(87, 89, 21, 1) 100%);
    padding: 60px 60px 40px 60px;
}
.prdmain-cnt h4 {
    color: #efedbe;
    font-family: 'Bebas';
    font-size: 60px;
    margin-bottom: 30px;
}

.prdmain-cnt p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
}







section.featured-books-sec.missin-sec .our-miss h4 {
    font-family: 'Bebas';
    text-transform: uppercase;
    color: #404400;
    font-size: 44px;
    line-height: 52px;
}



section.featured-books-sec.missin-sec .inner-box .row {
    align-items: center;
}

section.featured-books-sec.missin-sec .vid-sec img {
    width: 100%;
}

section.featured-books-sec.missin-sec .our-miss a {
    font-family: 'Bebas';
    text-transform: uppercase;
    color: #404400;
    font-size: 23px;
    line-height: 42px;
    text-decoration: underline;
}

section.featured-books-sec.missin-sec .vid-sec {
    position: relative;
}

section.featured-books-sec.missin-sec .vid-sec a {position: absolute;left: 264px;top: 180px;color: yellow;border: 2px solid #fff;padding: 17px 23px;border-radius: 50%;}

section.contactDescForHome {
    padding: 50px 0;
}

section.contactDescForHome .row {
    padding: 30px;
    background: linear-gradient(273deg, rgba(167, 172, 51, 1) 36%, rgba(87, 89, 21, 1) 100%);
    align-items:center;
}

section.contactDescForHome .wrapperBox p {
    color: #fff;
    font-size: 30px;
    font-family: Myriad-Regular;
    margin: 6px 0;
    line-height: 33px;
}
section.contactDescForHome .btnWrapper{
    text-align:center;
}
section.contactDescForHome .btnWrapper a{
    background: #f2f0c0;
    color: rgb(167 172 51);
    padding: 15px 40px;
    border-radius: 7px;
    text-transform: uppercase;
    font-family: 'Bebas';
    letter-spacing: 1px;
    font-size: 24px;
    border: 1px solid #f2f0c0;
}