@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jockey+One&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jockey+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Jockey+One&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/***** General CSS *****/

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

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

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

footer a:focus {
  color: #fff;
}

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

.hei {
  height: 100%;
}

img {
  object-fit: cover;
  max-width: 100%;
  width: 100%;
  /* height: 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;
}

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

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

@font-face {
  font-family: "Jockey One", sans-serif;
  src: url(../fonts/Jersey.ttf);
  font-weight: 400;
  font-style: normal;
}

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

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;
}

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

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

.pt_8 {
  padding-top: 80px;
}

.pb_8 {
  padding-bottom: 80px;
}

.py_8 {
  padding: 80px 0px;
}

.sec {
  padding: 80px 0;
}

.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;
}

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

.auto {
  display: block;
  margin: 0 auto;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text_center {
  text-align: center;
}

.topbar {
  padding: 0 0 50px 0;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #000000;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  font-weight: 600;
  position: relative;
  padding: 30px 0;
  text-decoration: none;
  font-size: 35px;
  color: #fff;
  display: block;
  text-transform: uppercase;
  transition: 0.3s;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidenav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 0;
  margin: 0 auto;
  border-bottom: 2px solid #fea100;
  transition: ease-in;
  transition-duration: 0.2s;
}

.sidenav a:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.2s;
}

.sidenav a:hover {
  color: #fea100;
  transition: ease-out;
  transition-duration: 0.2s;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
  transition: ease-out;
  transition-duration: 0.2s;
}

/* @media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }
} */

.nav-head {
  border-left: 2px solid #febf00;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 15px;
  border-right: 2px solid #febf00;
}

.menuSec {
  padding: 30px 0 0 0;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 9;
  /* background-color: rgba(0, 40, 70, 0.71); */
  /* border-bottom: 2px solid #193c56; */
}

.menuSec img {
  margin: 0;
  height: 45px;
}

.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 {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #393939;
  padding: 0px 9px;
  font-size: 25px;
  font-weight: 500;
}

.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;
  right: 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;
}

.nav-head-a {
  background: #8cff13;
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 700;
  color: #0b2f4a;
  border-radius: 5px;
}

.nav-head span i {
  /* background: #8cff13; */
  color: #fea100;
  height: 46px;
  width: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
}

.droopdwon {
  float: left;
}

/* Heading CLasses */
h1 {
  font-size: 274px;
  line-height: 280px;
  color: #000;
  font-family: "Jockey One", sans-serif;
  font-weight: 500;
  margin: 0 0 17px;
  text-transform: uppercase;
}

h2 {
  font-size: 65px;
  line-height: 1.2;
  color: black;
  font-weight: 500;
  margin: 0 0 10px;
  font-family: "Jockey One", sans-serif;
  text-transform: uppercase;
}

h3 {
  font-family: "Jockey One", sans-serif;
  font-size: 50px;
  line-height: 1.2;
  color: #000000;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h4 {
  font-family: "Jockey One", sans-serif;
  font-size: 38px;
  line-height: 1.2;
  color: white;
  letter-spacing: 2px;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h5 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h6 {
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  color: #737373;
  font-weight: 500;
  margin: 0 0 10px;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  font-weight: 600;
  line-height: 28px;
  color: #000;
  font-family: "Open Sans", sans-serif;
}

/* Heading CLasses End*/

/* Menu css start */

.nav {
  display: block;
}

.nav ul {
  list-style: none;
  text-align: center;
}

.nav ul li a {
  text-transform: uppercase;
}

.nav ul li a,
.nav ul li a:after,
.nav ul li a:before {
  transition: all 0.5s;
}

.nav ul li a:hover {
  color: #555;
}

/* stroke */
.nav.stroke ul li a,
.nav.fill ul li a {
  position: relative;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: #febf00;
  height: 2px;
}

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

.nav.fill ul li a {
  transition: all 2s;
}

.nav.fill ul li a:after {
  text-align: left;
  content: ".";
  margin: 0;
  opacity: 0;
}

.nav.fill ul li a:hover {
  color: #fff;
  z-index: 1;
}

.nav.fill ul li a:hover:after {
  z-index: -10;
  animation: fill 1s forwards;
  -webkit-animation: fill 1s forwards;
  -moz-animation: fill 1s forwards;
  opacity: 1;
}

/* Menu css end */

/* Button Css start */

/* Button Css  End*/

/* Index Page start */

/* Header start */
ul#menu {
  justify-content: space-between;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 30px 0;
}

ul#menu a {
  color: #000000;
  padding: 30px 0;
}

.hdr_cart a i {
  color: #fea100;
  font-size: 35px;
}

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

.nav.stroke {
  height: 100%;
}

.hdr_hamburger {
  height: 100%;
}

.hdr_cart {
  height: 100%;
}

.hdr_logo a img {
  object-fit: scale-down;
  width: fit-content;
  height: auto;
  margin: 15px 0;
}

.hdr_logo {
  border-right: 2px solid #febf00;
}

/* Header end */

/* banner start */
.banner_sec {
  /* background-image: url(../images/banner.png); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 1060px;
  /* background-color: #AB0000; */
  position: relative;
}

.banner_sec::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/banner_gradient.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

/* banner start */

/* Marquee */
.marquee-list {
  background-color: #f0b01d;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
  margin: 0px;
  padding: 30px 0px;
  margin-top: -70px;
  transform: rotate(12deg) scale(1.1);
  position: absolute !important;
  top: 1130px;
  z-index: 9;
}

.marquee-list ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-animation: marquee 15s linear infinite running;
  -moz-animation: marquee 15s linear infinite running;
  -o-animation: marquee 15s linear infinite running;
  -ms-animation: marquee 15s linear infinite running;
  animation: marquee 15s linear infinite running;
  margin: 0px;
  gap: 30px;
}

.marquee-list ul:hover {
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -o-animation-play-state: paused;
  -ms-animation-play-state: paused;
  animation-play-state: paused;
}

.marquee-list li {
  min-width: fit-content;
  white-space: nowrap;
  text-align: center;
  padding: 0 10px;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  font-size: 16px;
  margin: 0;
  font-size: 30px;
  font-family: "Jockey One", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  color: #000;
  padding: 0;
  cursor: pointer;
  text-transform: capitalize;
}

@-moz-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-20%);
    -moz-transform: translate(-20%);
    -o-transform: translate(-20%);
    -ms-transform: translate(-20%);
    transform: translate(-20%);
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-20%);
    -moz-transform: translate(-20%);
    -o-transform: translate(-20%);
    -ms-transform: translate(-20%);
    transform: translate(-20%);
  }
}

@-o-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-20%);
    -moz-transform: translate(-20%);
    -o-transform: translate(-20%);
    -ms-transform: translate(-20%);
    transform: translate(-20%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translate(-20%);
    -moz-transform: translate(-20%);
    -o-transform: translate(-20%);
    -ms-transform: translate(-20%);
    transform: translate(-20%);
  }
}

.marquee-list.list_two_wrp {
  margin-top: -90px;
  transform: rotate(-12deg) scale(1.1);
  z-index: 0;
  position: relative;
  z-index: 99;
}

/* Marquee */

.banner_out_book {
  position: absolute;
  width: 60%;
  margin: 0 auto;
  display: block;
  top: 54%;
  left: 51%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 2;
}

.banner_text h1 {
  text-align: center;
  width: 100%;
}

img.banner_book {
  height: 75%;
  object-fit: contain;
}

.banner_right_text {
  position: relative;
}

.banner_right_text::before {
  position: absolute;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 79%;
  background-image: url(../images/banner_triangle.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  z-index: -1;
}

.banner_right_text::after {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63%;
  height: 78%;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #f0b01d 124.55%);
  z-index: -2;
  content: "";
}

.story_sec {
  padding-top: 250px;
  padding-bottom: 80px;
  background: black;
  position: relative;
}

/* Follow Us Sidebar */
.follow-us {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  /* Red gradient background */
  padding: 10px;
  border-radius: 40px 0 0 40px;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 20px 10px;
  display: grid;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

/* Follow Us Text */
.follow-text {
  writing-mode: vertical-rl;
  transform: rotate(0deg);
  font-size: 16px;
  color: #fea100;
  margin: 0;
  padding-bottom: 10px;
  font-weight: bold;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 400;
  line-height: 37.5px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

/* Icon Styling */
.icons a {
  display: block;
  margin: 5px 0;
  transition: transform 0.3s, filter 0.3s;
}

.icons i {
  color: #ffff;
  font-size: 21px;
}

.icons a:hover {
  transform: scale(1.2);
  filter: brightness(1.2);
}

.story_text h2 {
  color: #fff;
}

.icons ul a {
  background-color: #fea100;
  width: 43px;
  height: 44px;
  display: flex;
  align-items: center;
  /* clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%); */
  justify-content: center;
  transform: rotate(90deg);
  border-radius: 50%;
}

h2.big {
  font-size: 113px;
}

span.yellow {
  color: #febf00;
  display: block;
}

.exclusive {
  position: relative;
}

.exclusive img {
  position: absolute;
  width: 80px;
  height: 80px;
  right: 0;
  bottom: 0;
}

.icons ul {
  display: grid;
  gap: 5px;
}

/* a.facebook {
    background-color: #1877F2 !important;
}

a.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4) !important;
} */

.diary_icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.diary_text .d-flex {
  padding: 20px 0;
  border-top: 1px solid #afafaf;
  border-bottom: 1px solid #afafaf;
}

.diary_icons a {
  border-radius: 50%;
  justify-content: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background: #febf00;
}

.diary_icons a i {
  color: #000;
  font-size: 15px;
}

a.diary_icons1 {
  border-radius: 50%;
  justify-content: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  background: #fa8232 !important;
}

a.diary_icons1 i {
  color: #fff;
  font-size: 15px;
}

.checked {
  color: #ff8a00;
}

.theme_btn1 {
  padding: 5px 17px;
  border-radius: 30px;
  font-family: poppins;
  text-transform: uppercase;
  font-weight: 600;
  background: #febf00;
  color: #000;
  font-size: 20px;
}

.theme_btn2 {
  padding: 5px 17px;
  border-radius: 30px;
  font-family: poppins;
  text-transform: uppercase;
  font-weight: 500;
  background: #000000;
  color: #fff;
  font-size: 22px;
}

.diary_buttons {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.diary_main_bar {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 10px;
}

.rate_bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.deal_bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.diary_main_bar * {
  margin: 0;
}

.rate_bar h5 {
  color: #dc0000;
  font-weight: 700;
  font-size: 30px;
}

.deal_bar h6 {
  color: #000;
  text-transform: capitalize;
}

ul.time {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #febf00;
}

ul.time p {
  color: #000;

  font-size: 16px;
  font-weight: 00;
  line-height: 24px;
}

.deal_bar span {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

.about_text p {
  line-height: 33px;
  font-size: 18px;
}

.about_image img {
  height: 600px;
  object-fit: cover;
  object-position: top;
}

.about_image {
  position: relative;
}

.about_image::before {
  position: absolute;
  height: 73%;
  bottom: 0;
  width: 100%;
  content: "";
  background: #febf00;
  z-index: -1;
}

section.about_sec {
  padding-top: 0;
}

.gen_top_text h6 {
  text-transform: capitalize;
  color: #dc0000;
}

.gen_text h6 {
  text-transform: capitalize;
  color: #fea100;
}

.gen_image img {
  height: 400px;
  margin-bottom: 15px;
}

.gen_box {
  margin: 20px 0;
}

.gen_text .d-flex {
  gap: 10px;
}

.event_topbar select {
  appearance: auto;
  width: 13%;
  text-align: left;
  padding: 14px;
  border-radius: 40px;
  font-size: 20px;
}

.calen_box {
  padding: 40px 0;
  display: flex;
  align-items: center;
  color: #000;
  gap: 11px;
  border-right: 3px solid #afafaf;
  margin-right: 20px;
}

.calen_box i {
  font-size: 50px;
}

.event_image {
  display: flex;
  align-items: center;
  gap: 30px;
}

.event_image img {
  height: 180px;
  width: 100%;
  object-fit: fill;
  object-position: left;
}

h6.yellow {
  color: #fea100 !important;
  text-transform: capitalize;
  font-family: "Jockey One", sans-serif !important;
}

.calen_box h6 {
  text-transform: capitalize;
  font-family: "Open Sans";
  font-weight: 500;
  margin: 0;
}

.event_image_text_inner p {
  color: #000;
  margin: 0;
  text-transform: capitalize;
  font-family: "Jockey One", sans-serif;
  font-size: 23px;
}

.event_image_text_inner span {
  color: #3c3c3c;
  font-family: montserrat;
  display: block;
  font-size: 15px;
  text-transform: uppercase;
}

.event_box {
  padding: 20px 20px;
  margin: 10px 0;
  background: #d9d9d933;
}

.event_box.event_box1 {
  background: transparent;
}

.checked {
  color: white;
  font-size: 20px;
}

.testi_sec {
  padding-bottom: 60px;
  background-color: #febf00;
}

/* footer start */

/* footer end */
/* Index Page end */

.testi_icon a {
  width: 100%;
  height: 343px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.testi_icon a i {
  font-size: 300px;
  color: #febf00;
}

.testi_icon {
  position: relative;
  z-index: 1;
  padding: 40px 0;
}

.testi_icon::before {
  position: absolute;
  top: -80px;
  width: 95%;
  height: 123%;
  left: 50%;
  background: #ffd640;
  content: "";
  z-index: -1;
  transform: translate(-50%, 0);
}

.testi_text1 {
  padding-left: 10%;
}

.testi_text1 h6 {
  color: #000;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.testi_text1 h6 b {
  font-style: italic;
  line-height: 43px;
  text-transform: lowercase;
}

.testi_text1 h3 {
  text-transform: capitalize;
  font-family: "Poppins";
  font-weight: 700;
}

.testi_inner_box .d-flex.align-items-center {
  margin-top: 37px;
}

.testi_text1 h5 {
  color: #000;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
}

.testi_text1 p b {
  font-size: 20px;
  font-weight: 800;
}

.rating h2 {
  font-family: "Inter", sans-serif;
  color: #fff;
  font-weight: 500;
  font-size: 78px;
}

.testi_inner_box .d-flex.align-items-center {
  gap: 20px;
  margin-left: 30px;
}

.testi_inner_box .d-flex.align-items-center ul span {
  font-size: 30px;
}

.slick-next {
  position: absolute;
  bottom: 0;
  top: unset;
  right: -60px;
  opacity: 1;
  left: unset;
}

.slick-prev {
  position: absolute;
  bottom: 0;
  top: unset;
  right: -30px;
  opacity: 1;
  left: unset;
}

.slick-prev::before {
  content: "\f053";
  font-family: "Font Awesome 5 Pro";
  color: #fff;
  font-weight: 900;
  opacity: 1;
}

.slick-next::before {
  content: "\f054";
  font-family: "Font Awesome 5 Pro";
  color: #fff;
  font-weight: 900;
  opacity: 1;
}

.slick-prev::after {
  width: 13px;
  height: 13px;
  border: 4px solid white;
  bottom: 4px;
  top: unset;
  right: -11px;
  opacity: 1;
  left: unset;
  content: "";
  position: absolute;
  border-radius: 50%;
}

footer {
  background: #000;
  padding-top: 60px;
  overflow: hidden;
}

footer * {
  color: #fff;
}

.contact a {
  font-family: Inter;
  font-size: 25px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

.contact p {
  margin: 20px 0 0 0;
  font-family: "Inter";
  font-size: 17.52px;
  font-weight: 700;
  line-height: 26.28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #ffff;
}

.mail a {
  display: block;
  font-family: Inter;
  font-size: 17px;
  font-weight: 700;
  line-height: 39.41px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 10px 0;
}

.ftr_logo a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
  object-fit: scale-down;
  width: fit-content;
  height: auto;
}

.hmf_box {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hmf_text p {
  font-family: Inter;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
}

footer h5 {
  font-family: Inter;
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.qucklinks ul li a {
  font-family: Inter;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 10px 0;
  display: block;
}

.hmf_image img {
  margin: 10px 0;
  height: 50px;
  width: 388px;
  object-fit: scale-down;
}

.updatebox p {
  font-family: Poppins;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}

.update_input input {
  width: 100%;
  height: 47px;
  padding: 0 0 0 30px;
  border-radius: 30px;
  background: #3c3c3c;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 45px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  border: navajowhite;
}

.update_input input::placeholder {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 45px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #fff;
}

button.theme_btn1 {
  text-transform: capitalize;
  position: absolute;
  width: fit-content;
  right: 0;
  height: 100%;
  top: 50%;
  transform: translate(0px, -50%);
}

.update_input {
  position: relative;
}

.copyright ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.copyright ul li {
  font-family: Inter;
  /* font-size: 10px; */
  font-weight: 700;
  line-height: 39.41px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  position: relative;
}

footer .row.align-items-end {
  padding: 0 0 20px 0;
}

.copyright ul li::before {
  position: absolute;
  top: 50%;
  left: -10%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: white;
  content: "";
  transform: translate(-50%, -50%);
}

.copyright ul li:nth-child(1):before {
  display: none;
}

.ftr_icons i {
  font-size: 30px;
  color: #febf00;
}

.ftr_icons {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 30px 0 10px 0;
}

.mail {
  position: relative;
}

.mail::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 1px;
  background: #ffffff;
  content: "";
}

.mail::after {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 200%;
  height: 1px;
  background: #ffffff;
  content: "";
}

.logo_box {
  position: relative;
}

.logo_box::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 200%;
  background: #ffffff;
  content: "";
}

.story_sec::before {
  position: absolute;
  top: -140px;
  left: 0;
  width: 100%;
  height: 200px;
  content: "";
  background: #000;
  z-index: 1;
  clip-path: polygon(49% 70%,
      49% 60%,
      100% 0,
      100% 100%,
      80% 100%,
      20% 100%,
      0 100%,
      0 0);
}

.banner_text.inner_banner_text h1 {
  font-size: 95px;
  color: #ffff;
  line-height: normal;
}

.banner_text.inner_banner_text::after {
  display: none;
}

.marquee-list.marquee-list1 {
  transform: unset;
  bottom: 0;
  top: unset;
}

section.banner_sec.inner_banner_sec {
  height: 600px;
}

.banner_out_book.banner_out_book1 {
  position: relative;
  width: 100%;
  margin: 0;
}

.banner_out_book.banner_out_book1.banner_right_text::after {
  display: none;
}

.inner_banner_right_text::before {
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 100%;
  background-image: url(../images/banner_triangle.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  z-index: -1;
}

.banner_text.inner_banner_text {
  align-items: start;
  margin-top: -40px;
}

section.about_sec.about_sec1.sec {
  padding-top: 100px;
}

section.about_sec.about_sec1 p {
  color: #2c2b2b;

  font-size: 15px;
  line-height: 26px;
}

.categ_check {
  gap: 20px;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #cccc;
  width: 90%;
}

.categ_check p {
  margin: 0;
  font-size: 15px;
  text-transform: capitalize;
}

.categ_check input {
  width: 17px;
  height: 16px;
  accent-color: #f0b01d;
}

.categ_box h5 {
  color: #000;
  font-family: "Jockey One";
  text-transform: capitalize;
}

.categ_box {
  height: 70%;
  border-right: 1px solid #eeeeee;
}

ul.pagination {
  padding: 50px 0 10px 0;
  gap: 20px;
}

a.page-link {
  border-radius: 50% !important;

  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #a8947d;
  color: #151515;
  font-size: 15px;
}

a.page-link:hover {
  background-color: #f0b01d !important;
  border-color: #f0b01d !important;
  box-shadow: unset;
  color: #fff !important;
}

a.page-link:focus-within {
  background-color: #f0b01d !important;
  border-color: #f0b01d !important;
  box-shadow: unset;
  color: #fff !important;
}

/*contact */

.contact-pag-form form {
  position: relative;
}

.contact-pag-form .form-group {
  position: relative;
}

.contact-pag-form .form-group::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  left: 40px;
  top: 5px;
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}

.contact-pag-form .form-group1::after {
  content: "";
  height: 53px;
  width: 10px;
  position: absolute;
  right: 40px;
  top: 5px;
  left: unset;
  transform: rotate(180deg);
  background-size: 10px 50px;
  background-image: url(../images/aroow-forward.png);
  background-repeat: no-repeat;
}

.contact-pag-form form input.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 55px;
  border: 1px solid #c6c6c6;
  line-height: 0;
  box-shadow: none;
  color: black;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  font-family: "Montserrat";
  display: flex;
  border-radius: 0;
}

.contact-pag-form form select.form-control {
  height: 60px;
  font-size: 15px;
  padding-left: 25px;
  border: 1px solid #c6c6c6;
  box-shadow: none;
  color: #7e7e7e;
  font-weight: 400;
  background-color: transparent;
  margin-top: 20px;
  font-family: "Montserrat";
  display: flex;
  border-radius: 0;
  font-weight: 400;
}

.contact-pag-form .form-group:before {
  content: "";
  position: absolute;
  background-image: url(../images/contact-line.png);
  width: 8px;
  height: 47px;
  background-repeat: no-repeat;
  left: 40px;
  top: 5px;
}

.contact-pag-form .form-group:before {
  content: "";
  position: absolute;
  background-image: url(../images/contact-line.png);
  width: 50px;
  height: 50px;
}

.contact-pag-form form input.form-control::placeholder {
  color: #909091;
}

.contact-main-sec .them-btn-1:hover {
  background-color: #00006d;
  transition: 0.3s all;
}

.contact-pag-form form textarea.form-control {
  font-size: 15px;
  /* padding-left: 55px; */
  /* padding-top: 110px; */
  border: 1px solid #c6c6c6;
  letter-spacing: 0;
  box-shadow: none;
  resize: none;
  background-color: transparent;
  margin-top: 20px;
  color: #000000;
  border-radius: inherit;
  border-radius: 0;
  height: 150px;
  padding: 22px 20px;
}

.contact-pag-form .email {
  padding: 0;
}

.contact-pag-form h4 {
  font-size: 62px;
  line-height: 70px;
  font-weight: 500;
  text-transform: capitalize;
  color: #fff;
}

.contact-pag-form form textarea.form-control::placeholder {
  color: #909091;
}

.contact-pag-form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #909091;
}

.contact-pag-form ::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(18, 28, 42, 0.55);
}

.contact-pag-form :-moz-placeholder {
  /* Firefox 18- */
  color: rgba(18, 28, 42, 0.55);
}

.cicle-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 1px solid #febf00;
  height: 60px;
  width: 60px;
  border-radius: 50px;
  color: #febf00;
}

.cicle-icon img {
  margin: 0 auto;
}

.contact-info {
  background: transparent;
  width: 100%;
  padding: 40px 10px;
  margin-bottom: 10px;
  border: 1px solid #c6c6c6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contact-main-sec h4 {
  font-size: 29px;
  color: #000000;
  font-weight: 700;
  line-height: 42px;
  text-transform: uppercase;
  margin-bottom: 10px;
  margin-left: 10px;
}

.contact-main-sec p span {
  display: block;
}

.contact-main-sec p {
  font-size: 16px;
  color: #000;
  margin-bottom: -5%;
}

.contact-main-sec h2 {
  margin: 0 0 10px 0;
  font-size: 27px;
  color: #000000;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
}

.contact_text p {
  font-size: 25px;
  line-height: 25px;
  color: #8b8b8b;
  padding-top: 0px;
  font-weight: 500;
  font-family: "Montserrat";
  letter-spacing: 1px;
}

.contact_text p a {
  font-size: 19px;
  color: #8b8b8b;
  text-decoration: none;
  transition: 0.5s ease-in-out;
  margin-top: 3px;
  display: block;
}

.mailt {
  padding-left: 30px;
}

.contact_text a:hover {
  color: #8b8b8b;
}

.contact_text p a.email-text {
  font-size: 19px;
  color: #8b8b8b;
}

.contact_text p a.email-text:hover {
  color: #8b8b8b;
}

.contact-us {
  padding: 6% 0;
}

.contact-head {
  text-align: center;
}

.contact-head h2 {
  font-size: 50px;
  color: #000;
  text-transform: uppercase;
}

.lg-btn {
  width: 100%;
}

.cp {
  font-size: 17px;
  line-height: 27px;
}

.contact_heading {
  margin-bottom: 30px;
}

.contact_heading h2 {
  font-size: 45px;
  color: #000000;
  font-weight: bolder;
}

.contact-side-bar {
  padding-top: 18px;
  margin-left: 20px;
}

.contact-main-sec {
  padding: 100px 0;
}

.contact-main-sec .them-btn-1 {
  margin-top: 20px;
  border: none;
  padding: 12px 20px;
  background-color: #ff0000;
  color: white;
  border-radius: 25px;
}

.b-img img {
  border-radius: 20px;
}

.contact-pag-form .form-group i {
  position: absolute;
  top: 20px;
  left: 13px;
  font-size: 20px;
  color: #7e7e7e;
}

.contact-pag-form .form-group1 i {
  right: 13px;
  left: unset;
}

.contact-pag-form {
  margin-top: 0;
}

.contact-pag-form button {
  margin-top: 5%;
  width: fit-content;
  border: none;
}

button.theme_btn img {
  width: 30%;
}

.theme_btn3 {
  width: fit-content;
  padding: 15px 27px;
  border-radius: 30px;
  font-family: poppins;
  text-transform: uppercase;
  font-weight: 600;
  background: #febf00;
  color: #000;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner_event_box_image {
  float: right;
  width: 250px;
  height: 450px;
  margin: 0px 40px 40px 40px;
}

.inner_event_box .event_image_text_inner h6 {
  font-family: "Jockey One";
  color: #000;
}

.inner_event_box .event_image_text_inner p {
  font-size: 18px;
  text-transform: uppercase;
}

.inner_event_box .calen_box h6 {
  font-family: poppins;
  color: #000;
}

/*contact end*/

/* Product Detail Page start */

.skin-2 .num-in {
  height: 40px;
  width: 150px;
  float: left;
  border: 0;
  border-radius: 25px;
  cursor: pointer;
}

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

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

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

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

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

.product-det-content h4 {
  font-size: 33px;
  line-height: 40px;
  font-family: "Trajan";
  color: black;
  text-transform: capitalize;
}

.radio-input input {
  display: none;
}

.radio-input {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: #fff;
  color: #000000;
  gap: 10px;
  overflow: hidden;
}

.radio-input label {
  width: 90px;
  padding: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-weight: 600;
  letter-spacing: 0;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #000;
}

.selection {
  display: none;
  position: absolute;
  height: 100%;
  width: calc(var(--container_width) / 3);
  z-index: 0;
  left: 0;
  top: 0;
  transition: 0.15s ease;
}

.radio-input label:has(input:checked) {
  color: #fff;
  background: linear-gradient(196deg,
      rgb(171 134 105) 10%,
      rgb(171 134 105) 50%,
      rgb(171 134 105) 60%);
  border: 0;
}

.radio-input label:has(input:checked)~.selection {
  background-color: rgb(11 117 223);
  display: inline-block;
}

.radio-input label:nth-child(1):has(input:checked)~.selection {
  transform: translateX(calc(var(--container_width) * 0 / 3));
}

.radio-input label:nth-child(2):has(input:checked)~.selection {
  transform: translateX(calc(var(--container_width) * 1 / 3));
}

.radio-input label:nth-child(3):has(input:checked)~.selection {
  transform: translateX(calc(var(--container_width) * 2 / 3));
}

.product-det-box {
  padding: 30px;
  border: 1px solid #9e9e9e;
  border-radius: 0px;
}

.product-det-box h3 {
  font-size: 23px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 0;
}

.product-det-box h3 span {
  font-size: 30px;
  width: 100px;
  font-family: "Jockey One", sans-serif;
}

.counter-det-box {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #a9a9a9;
  position: relative;
  margin-top: 30px;
  justify-content: start;
  gap: 10%;
}

.counter-det-box:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background: #a9a9a9;
}

.counter-det-box h3 {
  margin: 0;
}

.prod-det-buttons {
  align-items: center;
  justify-content: space-between;
  display: flex;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #a9a9a9;
  position: relative;
  padding-right: 45px;
  border-radius: 40px;
}

.btn2.cart-btn {
  font-weight: 500;
  font-size: 17px;
  font-size: 33px;
  text-transform: capitalize;
  color: #000;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: jocky-one;
  font-family: "Jockey One", sans-serif;
}

.prod-det-buttons i {
  font-size: 30px;
  background: -webkit-linear-gradient(#093f3f, #2e6f6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.prod-det-buttons:after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 20%;
  top: 0;
  background: #a9a9a9;
}

.rating:not(:checked)>input {
  position: absolute;
  appearance: none;
}

.rating:not(:checked)>label {
  float: right;
  cursor: pointer;
  font-size: 30px;
  color: #000000;
}

.rating:not(:checked)>label:before {
  content: " \f005" !important;
  font-family: "FontAwesome";
  font-size: 20px;
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
  color: #e58e09;
}

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

.rating>input:checked~label {
  color: #000000;
}

ul.review-det {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin: 25px 0;
}

ul.review-det h4 {
  font-size: 14px;
  text-decoration: underline;
  color: #121212;
  font-family: poppins;
  margin: 0;
  text-transform: capitalize;
}

.product-det-imag {
  height: 99.7%;
  border: 1px solid #a9a9a9;
  border-right: 0;
  width: 100%;
}

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

.banner_right_ul ul li a {
  color: #adbfc0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: 1px solid;
  transition: 0.3s ease-in-out;
}

.product_banner_right_ul ul {
  width: unset !important;
  flex-direction: row !important;
  padding: 0 !important;
  align-items: start;
}

.banner_right_ul.product_banner_right_ul.wow.bounceInRight ul li img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(10%) saturate(288%) hue-rotate(134deg) brightness(82%) contrast(85%);
}

.select-box label {
  font-size: 14px;
  width: 100%;
  height: 100%;
  border: 1px solid #000000;
  margin: 0 10px 0 0;
  padding: 8px 23px;
  text-transform: capitalize;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 30px;
  background: #ffffff;
}

.desin-text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.select-box {
  margin: 10px 10px 10px 0;
  position: relative;
  border-radius: 30px;
}

.select-box input:checked+label {
  background: #ffac1c;
  color: #fff;
}

.select-box input {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #febf00;
  top: 0;
  opacity: 0;
  left: 0;
  cursor: pointer;
  border: navajowhite;
}

/* Product Detail Page End */

/*cart-pg start*/

.add-to-cart {
  position: relative;
  padding: 110px 0 30px;
}

.add-to-cart thead {
  color: #fff;
  border-radius: 30px;
  background: #f0b01d;
}

.add-to-cart .table>thead>tr>th {
  border-bottom: 0;
  padding-left: 25px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 20px;
  padding-right: 0 !important;
  font-family: "Jockey One", sans-serif;
  font-weight: 500;
}

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

.table-space h3 {
  font-size: 18px;
  color: #00000080;
  margin-bottom: 5px;
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: "Montserrat";
}

.table-space span {
  font-size: 22px;
  text-transform: uppercase;
  color: #00000080;
  font-weight: 400;
}

.product-img {
  /* border: 1px solid #ccc; */
  display: inline-block;
  width: 70%;
  height: 170px;
  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: 18px;
  display: block;
  /* text-align: center; */
  padding-top: 9px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  text-decoration: none;
  color: #666666;
  text-align: center;
}

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

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

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

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

a.remove {
  font-size: 26px;
  color: white;
  padding: 10px 17px;
  margin-top: 35px;
  /* transform: skewX(-15deg); */
  /* width: fit-content; */
  /* display: flex; */
  /* justify-content: end; */
  position: absolute;
  right: 494px;
  border-radius: 5px;
  background: #f0b01d;
}

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

.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;
}

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

.or-amazon p {
  font-size: 16px;
  position: absolute;
  background: #fff;
  top: -20px;
  left: 50%;
  padding: 5px 20px;
  color: #000;
  display: block;
  text-transform: uppercase;
  transform: translateX(-50%);
  border: 1px solid #c8c8c8;
  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 #e5e5e5; */
  padding: 35px 35px;
  background-color: #fff0;
  background-color: #f9f9f9;
  border-radius: 15px;
}

.total-section li {
  font-size: 20px;
  padding-bottom: 30px;
  color: #000000a1;
  font-weight: 400;
  /* font-family: 'Poppins'; */
  text-transform: uppercase;
  font-family: "Jockey One", sans-serif;
}

li.color-change {
  font-size: 28px;
  font-weight: 500;
  padding-bottom: 0;
  color: #f0b01d;
}

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

.ship-estimate {
  background-color: #f9f9f9;
  padding: 50px;
  margin-top: 100px;
  /* border: 1px solid #e5e5e5; */
}

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

.ship-estimate li {
  font-size: 20px;
  margin-bottom: 5px;
  /* font-family: 'Montserrat'; */
  color: #0000005e;
}

.ship-estimate .grey-style {
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

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

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

.total-section ul {
  margin: 0;
}

.input-number {
  width: 97px;
  padding: 0 12px;
  vertical-align: top;
  text-align: center;
  outline: none;
  background-color: #fff0;
  color: #000;
  height: 51px;
}

.carousel-control-next-icon {
  background: none;
  position: relative;
}

.carousel-control-next-icon:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  color: #00000069;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.carousel-control-prev-icon {
  background: none;
  position: relative;
  left: -38px;
}

.carousel-control-prev-icon:before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  height: 50px;
  width: 50px;
  color: #00000069;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.input-number-decrement,
.input-number-increment {
  width: 50px;

  line-height: 48px;

  background: #fff0;

  color: #000;

  text-align: center;

  font-weight: bold;

  cursor: pointer;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.input-number-decrement:active,
.input-number-increment:active {
  background: #ddd;
}

.input-number-decrement {
  border-right: none;
  border-radius: 0;
}

.input-number-increment {
  border-left: none;
  border-radius: 0;
}

.quan {
  margin-top: 20px;
}

.quantity_counter_wrap span {
  color: #000;
  font-size: 18px;
}

.quantity_counter_wrap {
  padding: 0 0 10px;
  /* border-bottom: 1px solid #464646; */
}

.proceed .btn_theme_green {
  color: #fff;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  font-family: "Montserrat";
  font-weight: 500;
  text-transform: uppercase;
  font-size: 18px;
  background: #f0b01d;
}

/*CART END*/
/*CHECKOUT PAGE STRT*/

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

.billing_form h3 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #f0b01d;
  margin: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 28px;
  /* font-family: 'Recoleta'; */
  font-weight: 400;
}

.billing_form label {
  font-size: 13px;
  color: #373a33;
  line-height: 20px;
  font-weight: 600;
}

input[type="text"]::placeholder {
  font-size: 14px;
  color: #7c7c7c;
  font-weight: 500;
  line-height: 14px;
}

.radiosss p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
}

.billing_form input {
  width: 100%;
  height: 45px;
  border: 2px solid #dbdbdb;
  margin-bottom: 20px;
  padding-left: 15px;
  background-color: #fff0;
  border-radius: 0px;
}

.billing_form input::placeholder {
  color: #7c7c7c;
}

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

.cart_sidebar .cart_lst li {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}

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

.cart_sidebar .cart_lst li:last-child {
  font-size: 17px;
  font-weight: 500;
  color: #000;
  font-family: "Jockey One", sans-serif;
}

.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: 2px solid #bfbfbf;
  border-radius: 0px;
}

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

.cart_sidebar a {
  padding: 12px 70px;
  color: #fff;
  border-radius: 0;
  background: #f0b01d;
  font-size: 19px;
  width: 100%;
  display: block;
  margin: 10px 0;
}

.cart_sidebar .h-sub {
  font-weight: 500;
  color: #000;
  font-size: 20px;
  border-bottom: 1px solid #373a33;
  margin-bottom: 20px;
  line-height: 0;
  padding-bottom: 30px;
  padding-top: 20px;
  font-family: "Jockey One", sans-serif;
}

.cart_sidebar h5 span {
  float: right;
}

.cart_sidebar h4 {
  font-size: 17px;
  font-weight: 500;
  color: #000;
}

.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: 500;
  color: #000;
}

.cart_sidebar ul li label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #0e194a;
  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: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #f1b938;
  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 #000;
  margin: 0;
  padding-bottom: 30px;
}

h6.payment-h {
  font-weight: 400;
  color: #000;
  font-size: 20px;
  margin-bottom: 30px;

  text-transform: uppercase;
}

label {
  display: inline-block;
  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: #f0b01d;
}

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

.radiosss-payments {
  border-bottom: 1px solid #000;
}

.billing_form {
  border: 2px solid #bfbfbf;
  padding: 20px;
  border-radius: 0px;
}

section.checkout_page.pt-5.pb-5 {
  padding: 100px 0px 40px !important;
}

/*CHECKOUT PAGE END*/
.blog-detail-card-heading-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-detail-search-main {
    position: relative;
    width: 100%;
    margin: 0 0 50px 0;
}
.blog-detail-card-heading {
  width: 64%;
}

.blog-detail-search input {
  width: 100%;
  padding: 0 80px 0 20px;
  height: 60px;
  border: 1px solid #e1e1e1;
  outline: none;
  border-radius: 0;
}

.blog-detail-search-icon button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 5px;
  background-color: #000;
  border: none;
  color: #fff;
  font-size: 20px;
}

.blog-detail-search-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.blog-detail-recent-main .blog-list-card-img img {
  height: 111px;
}

.blog-detail-recent-main .blog-list-card-txt h5 {
  font-size: 13px;
  line-height: 22px;
  width: 100%;
  margin: 5px 0;
}

.blog-detail-recent-main .blog-list-card-user-txt h6 {
  font-size: 9px;
  line-height: 12px;
}

.blog-detail-recent-main .blog-list-card-user-txt p {
  font-size: 9px;
  line-height: 12px;
}

.blog-detail-recent-main .blog-list-card-user {
  gap: 10px;
}

.blog-detail-recent-main .blog-list-card {
  box-shadow: 0 0 0 0 #0000;
}

.blog-detail-tags-key span {
  font-size: 10px;
  line-height: 10px;
  color: #000;
  font-family: "Montserrat";
  text-transform: uppercase;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  height: 25px;
  background-color: #fafafa;
  border-radius: 100px;
  transition: ease-in;
  transition-duration: 0.2s;
}

.blog-detail-tags-key span:hover {
  background-color: #4caf50;
  color: #fff;
  transition: ease-out;
  transition-duration: 0.2s;
}

.blog-detail-recent,
.blog-detail-tags {
  margin: 0 0 30px 0;
}

.blog-detail-card-main {
  padding: 0 40px 0 0;
}

.blog-detail-card-img img {
  height: 510px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.blog-detail-search-recent-tags-main {
  position: relative;
}

.blog-detail-search-recent-tags-main::before {
  content: "";
  position: absolute;
  top: -11%;
  left: -6%;
  border-left: 1px solid #0000001c;
  height: 981px;
}

.blog-detail-recent-main {
  position: relative;
}

.blog-detail-recent-main::before {
  content: "";
  position: absolute;
  top: 16%;
  left: -6%;
  border-top: 2px solid #b2b2b2;
  width: 400px;
}

.blog-detail-tags-main {
  position: relative;
}

.blog-detail-tags-main::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -6%;
  border-top: 2px solid #b2b2b2;
  width: 400px;
}

ul.new_date {
  gap: 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

ul.new_date li {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 10px;
  border-right: 1px solid #ccc;
}

ul.new_date li p {
  margin: 0;
}

ul.new_date li i {
  color: #f0b01d;
}

.news_text h4 {
  color: #3d3d3d;
  text-transform: capitalize;
}

ul.new_date li:nth-child(2) {
  border: navajowhite;
}

.news_image img {
  border-radius: 30px;
}

.news_text.news_text1 * {
  text-align: right;
}

.news_text.news_text1 ul {
  justify-content: end;
}

.news_text.news_text1 a {
  text-align: right;
  float: right;
}

.news_text {
  margin: 20px 0;
}

.blog-detail-recent h5 {
  color: #000;
  font-family: "Jockey One";
}

.blog-detail-tags h5 {
  color: #000;
  margin: 20px 0;
  font-size: 20px;
  margin-bottom: 0 !important;
}

.blog_post p {
  color: #939393;
}

.blog_post ul.new_date li p {
  color: #939393 !important;
}

.blog_post {
  width: fit-content;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccc;
  margin: 20px 0;
}

section.blog-detail-sec .news_text p {
  color: #939393;
}

ul.new_date li p {
  color: #000 !important;
}

.categ_check.categ_check1 {
  padding: 10px 0;
}

.blog_post:last-child {
  border: navajowhite;
}

.theme_btn2:hover {
  color: #ffff;
}

span.fa.fa-star.checked {
  color: #ff8a00;
}

.qucklinks a:hover {
  color: #fff;
}

section.inner_events .event_image_text_inner p {
  font-family: "Jockey One", sans-serif;
  font-size: 23px;
}

section.inner_events .event_image_text_inner p span {
  font-size: 16px;
  text-transform: uppercase;
}

.event_button a {
  width: 100%;
  padding: 15px 25px;
  display: block;
  text-align: center;
  font-family: "Jockey One", sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.ban_bot_box {
  display: flex;
  align-items: center;
  gap: 20px;
  border-right: 1px solid #e4e7e9;
  width: 100%;
}

.ban_bot_box1 {
  border: none !important;
}

.ban_bot_box_text p {
  margin: 0;
  text-transform: uppercase;
}

.ban_bot_box_text span {
  color: #5f6c72;
  font-weight: 500;
  font-size: 14px;
}

.ban_bot_main_box {
  padding: 50px 30px;
  border: 1px solid #e4e7e9;
}

section.diary_sec.sec {
  padding-bottom: 20px;
}

span.fa.fa-star.checked:last-child {
  color: lightgray;
}

/*Blog Page css Ends*/
.cntc-box-sec {
  color: #fff;
  list-style: none;
  padding: 37px 35px;
  position: relative;
  background-color: #f0b01d;
  height: 460px;
}

.cntc-box-sec::before {
  position: absolute;
  content: "";
  background: url(../images/diamond.png);
  filter: brightness(0) invert(1);
  background-size: contain;
  width: 43px;
  height: 43px;
  right: -110px;
  top: -60px;
  z-index: 1;
}

.cntc-box-sec::after {
  position: absolute;
  content: "";
  background: url(../images/el-yellow.png);
  filter: brightness(0) invert(1);
  background-size: contain;
  width: 90px;
  height: 92px;
  right: -140px;
  bottom: -20px;
  z-index: 1;
  transform: rotate(90deg);
}

.cntc-box-sec ul {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 8px 0;
  margin-bottom: 0;
  padding-bottom: 25px !important;
  border: none;
  justify-content: space-between;
}

.sec-head {
  margin-bottom: 20px;
}

.sec-head.text-center h2 {
  font-size: 54px;
  text-transform: capitalize;
  font-family: "lucidabrightRegular";
  background: inherit;
  -webkit-background-clip: text;
  -webkit-text-fill-color: inherit;
  color: #fff;
}

.cntc-box-sec li {
  font-size: 16px;
  color: #000;
}

.cntc-box-sec h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 2;
  background: inherit;
  -webkit-background-clip: inherit;
  -webkit-text-fill-color: inherit;
  text-transform: uppercase;
  color: #000;
}

.cntc-box-sec li img {
  object-fit: scale-down;
  width: 36px;
  height: 40px;
}

/*Media Query Start*/


/* a.youtube {
    background-color: #434343 !important;

}

a.pinterest {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
} */

.mail a:hover {
  color: #fff;
}

/* InnerPage Blog start */
.how-it-work {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}

.how-it-work p {
  line-height: 25px;
}

section.how-it-work-sec {
  margin: 80px 0px;
}

.how-work-box1 {
  border: 5px solid #ffde59;
  text-align: center;
  padding: 40px 0px;
  border-radius: 14px;
}

.how-work-box1 img {
  height: 40px;
  margin-bottom: 20px;
}

.how-work-box1 h3 {
  margin-bottom: 10px;
}

.how-work-box1 p {
  line-height: 25px;
}

span.btm-1colo {
  color: #ffde59;
  font-size: 30px;
  font-weight: 600;
}

.how-work-box2 {
  border: 5px solid #098e49;
  text-align: center;
  padding: 40px 0px;
  border-radius: 14px;
  margin-top: 50px;
}

span.btm-2colo {
  color: #098e49;
  font-size: 30px;
  font-weight: 600;
}

.how-work-box2 img {
  height: 40px;
  margin-bottom: 20px;
}

.how-work-box2 h3 {
  margin-bottom: 10px;
}

.how-work-box2 p {
  line-height: 25px;
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  height: 360px;
  object-position: center;
}

.blog-text {
  height: 250px;
  width: 100%;
  padding: 50px 20px;
  background: #fff;
  border-radius: 10px;
  /* position: absolute; */
  bottom: 0;
  left: 0;
  margin-top: -20px;
  border: 1px solid #f0b01d;
}

.blog-text ul {
  display: flex;
  margin: 0;
  border-left: 0;
  border-right: 0;
  padding: 10px 0;
  gap: 17px;
}

.blog-text ul li {
  color: #000000;
  font-size: 13px;
  font-weight: 600;
}

.blog-text ul li i {
  color: #f0b01d;
}

.blog-box {
    position: relative;
    margin: 20px 0;
    box-shadow: 0px 2px 21px #00000054;
    border-radius: 20px;
}

.blog-text h4 {
  margin-top: 10px;
  font-size: 23px;
  color: #000;
  margin-bottom: 0;
}

.blog-text p {
  line-height: 25px;
}

/* InnerPage Blog end */

/* InnerPage Blog-Detail start */
.inner-banner-box h2 {
  display: grid;
}

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

.blogs-img-text ul li i {
  color: #000000;
  font-size: 20px;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
}

.blogs-img-text ul {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 20px;
}

.blogs-img-text h5 {
  /* font-weight: 600; */
  font-size: 60px;
  margin-top: 15px;
  color: #000000;
  /* font-family: 'Poppins'; */
  /* border-bottom: 1px solid #00000057; */
  text-transform: uppercase;
  padding-bottom: 0px;
  /* display: inline-block; */
}

.blogs-img-text p {
  font-weight: 400;
  font-size: 18px;
  color: #636161;
  line-height: 32px;
  text-align: justify;
  padding: 0px 0;
}

.search a {
  width: 100px;
  height: 51px;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 17px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #003366;
  color: #fff !important;
}

.search {
  position: relative;
  display: flex;
}

.search input {
  border: 1px solid #e1e1e1;
  width: 100%;
  padding: 12px 10px;
  border-radius: 10px 0px 0px 10px;
}

.blog-categories h4 {
  font-weight: 700;
  font-size: 34px;
  margin-top: 30px;
  padding-bottom: 5px;
  position: relative;
  color: #000;
  text-transform: uppercase;
}
section.blog-sec.sec .heading.topbar.text_center {
    padding: unset;
}
.blog-categories h4:before {
  /* content: ''; */
  /* position: absolute; */
  /* width: 58px; */
  /* height: 2px; */
  /* background: #c61414; */
  /* bottom: 0; */
  /* transition: .5s ease-in-out; */
}

.blog-categories a {
    display: block;
    font-family: "Poppins";
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    /* padding: 10px 0; */
    /* border-bottom: 1px solid #e1e1e1; */
    width: 100%;
    /* box-shadow: 3px 0px 10px #000; */
    border-radius: 10px;
}

.blog-categories p {
  font-weight: 500;
  color: #646464;
  font-size: 14px;
}

.postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 14px 0;
    margin-top: 0;
}

.postss i {
  color: #f0b01d;
  font-size: 18px;
  margin-right: 10px;
}

.postss h6 {
  font-weight: 400;
  font-size: 16px;
  color: #676767;
  margin-bottom: 0;
  margin-top: 4%;
  text-transform: uppercase;
  font-family: "Poppins";
}

.blog-categories {
  padding: 0 0px;
}

.blogs-img-text img {
  width: 100%;
  border-radius: 10px;
  height: 740px;
  object-fit: fill;
}

.postss p {
  /* font-weight: 700; */
  color: #000;
  font-size: 17px;
  /* text-transform: capitalize; */
  line-height: 23px;
  /* font-family: 'Rajdhani'; */
  text-align: left;
}

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

.postss ul li p {
  margin-bottom: 0;
}

.search button {
  /* position: absolute; */
  right: 0;
  border: none;
  height: 50px;
  width: 130px;
  background: #f0b01d;
  font-size: 15px;
  border-radius: 0px 10px 10px 0px;
  padding: 0;
  text-transform: uppercase;
  color: #fff;
}

.blog-categories h4:hover:before {
  width: 100%;
  background: #78b921;
}

.postss img {
  width: 140px;
  height: 90px;
  object-fit: fill;
  border-radius: 10px;
}

section.blog-sec p.text_center.auto {
  width: 70%;
  margin: 0 auto;
}

.postss ul li {
  width: 48%;
}

.blogs-det-bottom-text {
  margin-top: 50px;
}

.blogs-det-bottom-text h3 {
  width: 80%;
}

.blogs-det-bottom-text h5 {
  color: #f0b01d;
  text-transform: capitalize;
  font-family: "Jockey One", sans-serif;
  margin-top: 30px;
}

.blogs-det-bottom-text p {
  font-weight: 400;
}

.copyright ul li a:hover {
  color: #fff;
}

/* InnerPage Blog-Detail end */

/* Revision Css start  */

section.inner_book_sec.sec .gen_box .gen_image {
  padding: 0px 20px;
}

section.inner_book_sec.sec .gen_box .gen_image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: 100% 100%;
}

section.inner_book_sec.sec .gen_box {
  text-align: center;
}

section.inner_book_sec.sec .gen_box .gen_text .d-flex {
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

section.inner_book_sec.sec .gen_box p {
  font-size: 14px;
  line-height: 21px;
}

section.inner_book_sec.sec .gen_box span.fa.fa-star.checked {
  font-size: 14px;
}

/* Say Reader section css start  */

section.sayReader {
  position: relative;
}

section.sayReader h5 {
  color: #ffca08;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0px;
}

section.sayReader h6 {
  line-height: 30px;
  letter-spacing: 0px;
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  color: #000;
  text-transform: capitalize;
  margin-top: 20px;
}

section.sayReader p {
  font-size: 14px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Poppins";
  margin-bottom: 0;
  font-style: italic;
}

section.sayReader p.bold {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  color: #ffca08;
  font-family: "Poppins";
}

section.sayReader .syatext {
  width: 80%;
  margin: 0px auto;
}

/* Say Reader section css end */

/* free chapter section css start  */
section.freeChapters.sec {
  background-image: url(../images/freeChaperbg1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.imgchp {
  position: relative;
}

section.freeChapters .wrapes {
  width: 90%;
  margin: 0px auto;
}

section.freeChapters .chapetext {
  width: 95%;
}

section.freeChapters .chapetext h5 {
  color: #ffca08;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 30px;
  margin: 0;
}

section.freeChapters .chapetext h4 {
  font-family: "Inter";
  text-transform: capitalize;
  font-size: 60px;
  line-height: 70px;
  padding-left: 31px;
  position: relative;
  margin-top: 20px;
}

section.freeChapters .chapetext h6 {
  color: #fff;
  margin: 20px 0;
  font-size: 18px;
  text-transform: capitalize;
  line-height: 30px;
}

section.freeChapters .chapetext form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

section.freeChapters .chapetext input {
  width: 100%;
  padding: 10px 10px;
  background-color: #ffffff;
  border-radius: 0px 0px 0px 0px;
  border: 3px solid #ffca08;
  color: #000;
}

section.freeChapters .chapetext input::placeholder {
  color: #000;
}

section.freeChapters .chapetext button.p-btns {
  display: inline-block;
  border: 0px;
  padding: 10px 40px;
  font-size: 18px;
  line-height: 27px;
  border-radius: 40px;
  background: #f9ad03;
  transition: 0.9s;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}

section.freeChapters .chapetext button.p-btns:hover {
  background: #000;
  color: #fff;
  transform: translate(0px, -2px);
}

section.freeChapters .chapetext h4:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background: #f9ad03;
}

section.freeChapters .imgchp {
  position: relative;
  width: 100%;
  float: right;
  margin-right: 20px;
  position: relative;
  height: 100%;
}

/* free chapter section css end */

/* Privacy Policy   */

section.banner_sec.inner_banner_sec.policy h1 {
  text-align: left;
  font-size: 100px;
}

/* Privacy Policy   */

section.gen_sec.sec.home-books .row {
  justify-content: center;
}

section.gen_sec.sec.home-books .row img.img-fluid {
  background: #a3a3a3;
  border-radius: 10px;
}

section.gen_sec.sec.home-books h6 {
  text-transform: capitalize;
  font-family: "Jockey One";
  font-size: 30px;
  color: #000;
  line-height: 40px;
  margin-top: 10px;
  padding-bottom: 10px;
}

section.gen_sec.sec.home-books .diary_buttons a {
  font-size: 15px;
  text-align: center;
  padding: 13px 10px;
  margin: 0px auto;
  display: inline-block;
  width: 70%;
}

section.banner_sec.inner_banner_sec.readingOrder h1 {
  display: inline-block;
  font-size: 90px;
  line-height: 1.1;
}

section.readings.sec {
  position: relative;
}

section.readings.sec .heading {
  margin-bottom: 80px;
}

section.readings.sec .heading h2 {
  text-transform: capitalize;
}

section.readings.sec .sub-heading {
  margin-bottom: 30px;
  position: relative;
}

section.readings.sec .sub-heading h3 {
  position: relative;
  font-size: 37px;
  text-transform: capitalize;
  font-weight: 500;
}

section.readings.sec .sub-heading h3 span {
  display: inline-block;
  background: #ffff;
  position: relative;
  padding: 0 30px;
}

section.readings.sec .sub-heading h3:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0px auto;
  background: #000;
}

section.readings.sec .gen_box {
  position: relative;
  text-align: center;
}

section.readings.sec .gen_box .gen_image {
  margin-bottom: 30px;
}

section.readings.sec .gen_box .gen_image img.img-fluid {
  background: #a3a3a3;
  border-radius: 10px;
  width: 80%;
  margin: 0px auto;
  display: table;
  box-shadow: 0px 0px 16px 5px #44444438;
}

.gen_text1 {
  width: 80%;
  margin: 0 auto;
  border: 1px solid;
  padding: 10px 0;
}

section.readings.sec .gen_box h6 {
  color: #000;
  font-family: "Jockey One";
  font-weight: 500;
  font-size: 30px;
}

section.readings.sec .gen_box .readingbk {
  display: inline-block;
}

section.readings.sec .gen_box .readingbk a {
  font-weight: 500;
  font-family: "Jockey One";
  text-decoration: underline;
  font-size: 18px;
  display: inline-block;
  margin: 12px 0;
  transition: 0.9s;
}

section.readings.sec .gen_box .readingbk a:hover {
  color: #777;
}

section.readings.sec .row {
  justify-content: center;
}

section.readings.sec .sub-heading.text_center.spacingForOrders {
  margin-top: 80px;
}

section.readings.sec .row.four-grid .gen_image img.img-fluid {
  width: 100%;
}


.diary_image1 img {
  height: 410px;
  object-fit: scale-down;
}

.gen_text h6 {
  margin: 0;
}

.gen_text a {
  margin: 10px 0 !important;



}

.imgchp {}

.inner_tablet {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  height: 84%;
  transform: translate(-50%, -50%);
}

.imgchp img {
  height: 100%;
  object-fit: fill;
}

.event_image_text_inner {
  width: 80%;
}

.event_image_text {
  width: 20%;
}



ul.points li p {
  font-size: 15px;
}

ul.points li p strong {
  color: #000;
  font-size: 20px;
}

ul.points li p strong {
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

ul.points li p strong::before {
  position: absolute;
  top: 50%;
  left: 0;
  height: 7px;
  width: 7px;
  background-color: #000;
  border-radius: 50%;
  content: '';
  transform: translate(0px, -50%);
}

/* Revision Css end  */
html {
  overflow-x: hidden;
}



/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1500px) {
  .cntc-box-sec li {
    font-size: 14px;
    color: #000;
  }

  .cntc-box-sec {
    color: #fff;
    list-style: none;
    padding: 37px 25px;
    position: relative;
    background-color: #f0b01d;
    height: 460px;
  }

  .deal_bar h6 {
    color: #000;
    text-transform: capitalize;
    font-size: 23px;
  }

  .event_image_text {
    width: 30%;
  }

  .rating h2 {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 68px;
  }

  h2 {
    font-size: 55px;
    line-height: 1.2;
    color: black;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: "Jockey One", sans-serif;
    text-transform: uppercase;
  }

  .update_input {
    position: relative;
    width: 90%;
  }

  .updatebox p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 90%;
  }

  .inner_banner_right_text::before {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 90%;
    background-image: url(../images/banner_triangle.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
  }

  .abt_para.pt-5 {
    padding-top: 20px !important;
  }

  section.about_sec.about_sec1.sec {
    padding-top: 40px;
  }

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

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

  section.banner_sec.inner_banner_sec.policy h1 {
    text-align: left;
    font-size: 90px;
  }

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

  section.about_sec.about_sec1.sec {
    padding-top: 40px;
  }



  .inner_banner_right_text::before {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 70%;
    background-image: url(../images/banner_triangle.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
  }

  .event_image_text {

    width: 30%;
  }

  .hdr_logo a img {
    object-fit: scale-down;
    width: 90%;
    height: auto;
    margin: 15px 0;
  }

  .marquee-list {

    top: unset;
    z-index: 9;
    bottom: 0;
  }

  .sec {
    padding: 50px 0;
  }

  .rating h2 {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 68px;
  }

  .update_input {
    position: relative;
    width: 90%;
  }

  .updatebox p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 90%;
  }

  .story_sec {
    padding-top: 150px;
    padding-bottom: 80px;
    background: black;
    position: relative;
  }

  .diary_text .d-flex {
    padding: 20px 0;
    border-top: 1px solid #afafaf;
    border-bottom: 1px solid #afafaf;
    width: 90%;
  }

  .exclusive img {
    position: absolute;
    width: 80px;
    height: 80px;
    right: 30px;
    bottom: 0;
  }

  h2 {
    font-size: 50px;
    line-height: 1.2;
    color: black;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: "Jockey One", sans-serif;
    text-transform: uppercase;
  }

  .diary_main_bar {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .cntc-box-sec {
    color: #fff;
    list-style: none;
    padding: 37px 25px;
    position: relative;
    background-color: #f0b01d;
    height: 460px;
  }

  .cntc-box-sec li {
    font-size: 14px;
    color: #000;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
section.banner_sec.inner_banner_sec.readingOrder h1 {
    display: inline-block;
    font-size: 70px;
    line-height: 1.1;
  }
  section.banner_sec.inner_banner_sec.policy h1 {
    text-align: left;
    font-size: 70px;
  }

  .btn2.cart-btn {
    font-weight: 500;
    font-size: 17px;
    font-size: 23px;
    text-transform: capitalize;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: jocky-one;
    font-family: "Jockey One", sans-serif;
  }

  .product-det-box {
    padding: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
  }

  .product-det-box {
    padding: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
  }

  .product-det-box h3 span {
    font-size: 20px;
    width: 100px;
    font-family: "Jockey One", sans-serif;
  }

  ul.review-det {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 5px 0;
  }

  .counter-det-box:after {
    display: none;
  }

  .counter-det-box {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #a9a9a9;
    position: relative;
    margin-top: 10px;
    justify-content: start;
    gap: 10%;
  }


  .description-det-text p {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #000;
    font-family: "Open Sans", sans-serif;
  }

  .cntc-box-sec {
    color: #fff;
    list-style: none;
    padding: 37px 25px;
    position: relative;
    background-color: #f0b01d;
    height: 460px;
  }

  .diary_text .d-flex {
    padding: 20px 0;
    border-top: 1px solid #afafaf;
    border-bottom: 1px solid #afafaf;
    width: 85%;
  }



  .testi_text1 {
    padding-left: 10px;
  }

  .testi_icon a i {
    font-size: 200px;
    color: #febf00;
  }

  .testi_sec {
    padding-bottom: 30px;
    background-color: #febf00;
  }

  .update_input {
    position: relative;
    width: 90%;
  }

  .updatebox p {
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 85%;
  }

  .testi_icon a {
    width: 100%;
    height: 282px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
  }

  .sec {
    padding: 40px 0;
  }

  .event_image_text {
    width: 30%;
  }

  .about_text p {
    line-height: 20px;
    font-size: 15px;
  }

  .story_sec {
    padding-top: 60px;
    padding-bottom: 80px;
    background: black;
    position: relative;
  }

  .exclusive img {
    position: absolute;
    width: 80px;
    height: 80px;
    right: 50px;
    bottom: 0;
  }

  .marquee-list {

    bottom: 0;
    z-index: 9;
    top: unset;
  }

  .banner_sec {
    height: 770px;
  }

  .diary_main_bar {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .event_topbar select {
    width: 22%;
  }

  .banner_text h1 {
    font-size: 180px;
    line-height: 200px;
  }

  img.banner_book {
    /* height: 69%; */
    /* object-fit: contain; */
  }

  .banner_right_text::after {
    width: 63%;
    height: 63%;
  }

  .banner_sec {
    height: 970px;
  }

  h2.big {
    font-size: 85px;
    margin-top: 35px;
  }

  .exclusive h2 {
    font-size: 50px;
    width: 99%;
  }

  .theme_btn1 {
    font-size: 15px;
  }

  .rating h2 {
    font-size: 58px;
  }

  .testi_inner_box .d-flex.align-items-center ul span {
    font-size: 22px;
  }

  .abt_para.pt-5 {
    padding-top: 20px !important;
  }

  h2 {
    font-size: 55px;
    line-height: 1.2;
    color: black;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: "Jockey One", sans-serif;
    text-transform: uppercase;
  }

  .gen_text1 {
    width: 100%;
    margin: 0 auto;
    border: 1px solid;
    padding: 10px 0;
  }

  section.readings.sec .gen_box h6 {
    color: #000;
    font-family: "Jockey One";
    font-weight: 500;
    font-size: 20px;
  }

  .event_image_text_inner {
    width: 100%;
  }

  section.freeChapters .chapetext h4 {
    font-family: "Inter";
    text-transform: capitalize;
    font-size: 50px;
    line-height: 70px;
    padding-left: 20px;
    position: relative;
    margin-top: 20px;
  }


  .postss ul li:nth-child(1) {
    width: 30%;
  }

  .postss ul li {
    width: 68%;
  }

  .postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 0;
    margin-top: 0;
  }

  .blogs-img-text img {
    width: 100%;
    border-radius: 10px;
    height: 590px;
    object-fit: fill;
  }

  a.remove {
    font-size: 26px;
    color: white;
    padding: 10px 17px;
    margin-top: 35px;
    /* transform: skewX(-15deg); */
    /* width: fit-content; */
    /* display: flex; */
    /* justify-content: end; */
    position: absolute;
    right: unset;
    border-radius: 5px;
    background: #f0b01d;
  }

  .ship-estimate {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 50px;
    /* border: 1px solid #e5e5e5; */
  }

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

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

  .cart_sidebar {
    padding: 40px 5px;
    border: 2px solid #bfbfbf;
    border-radius: 0px;
  }

  .billing_form input {
    width: 100%;
    height: 45px;
    border: 2px solid #dbdbdb;
    margin-bottom: 10px;
    padding-left: 15px;
    background-color: #fff0;
    border-radius: 0px;
  }


  .cart_sidebar a {
    padding: 12px 10px;
    color: #fff;
    border-radius: 0;
    background: #f0b01d;
    font-size: 19px;
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  .cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
  }

  .cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 5px;
    color: #7c7c7c;
  }

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

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

  .billing_form {
    border: 2px solid #bfbfbf;
    padding: 10px;
    border-radius: 0px;
  }

  section.news_sec.sec {
    padding: 50px 0;
  }

  .blog-detail-search-main {
    position: relative;
    width: 100%;
    margin: 0 0 50px 0;
  }

  .blog-detail-card-main {
    padding: 0;
  }

  .categ_check {
    gap: 20px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccc;
    width: 1005;
  }

  ul.new_date {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn2.cart-btn {
    font-weight: 500;
    font-size: 17px;
    font-size: 23px;
    text-transform: capitalize;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: jocky-one;
    font-family: "Jockey One", sans-serif;
  }

  .product-det-box {
    padding: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
  }

  .product-det-box {
    padding: 10px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
  }

  .product-det-box h3 span {
    font-size: 20px;
    width: 100px;
    font-family: "Jockey One", sans-serif;
  }

  ul.review-det {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 5px 0;
  }

  .counter-det-box:after {
    display: none;
  }

  .counter-det-box {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #a9a9a9;
    position: relative;
    margin-top: 10px;
    justify-content: start;
    gap: 10%;
  }


  .description-det-text p {
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    color: #000;
    font-family: "Open Sans", sans-serif;
  }

  .prod-det-buttons {
    align-items: center;
    justify-content: space-between;
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    border: 1px solid #a9a9a9;
    position: relative;
    padding-right: 35px;
    border-radius: 40px;
  }


  .blog-detail-tags-main:before {
    display: none;
  }

  ul.new_date {
    gap: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .categ_check {
    gap: 20px;
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #cccc;
    width: 1005;
  }

  .blog-detail-card-main {
    padding: 0;
  }

  .blog-detail-search-main {
    position: relative;
    width: 100%;
    margin: 0 0 50px 0;
  }

  section.news_sec.sec {
    padding-bottom: 0;
  }

  .cart_sidebar {
    padding: 40px 5px;
    border: 2px solid #bfbfbf;
    border-radius: 0px;
  }

  .billing_form input {
    width: 100%;
    height: 45px;
    border: 2px solid #dbdbdb;
    margin-bottom: 10px;
    padding-left: 15px;
    background-color: #fff0;
    border-radius: 0px;
  }


  .cart_sidebar a {
    padding: 12px 10px;
    color: #fff;
    border-radius: 0;
    background: #f0b01d;
    font-size: 19px;
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  .cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
  }

  .cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 5px;
    color: #7c7c7c;
  }

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

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

  .billing_form {
    border: 2px solid #bfbfbf;
    padding: 10px;
    border-radius: 0px;
  }

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

  .ship-estimate {
    background-color: #f9f9f9;
    padding: 50px;
    margin-top: 0px;
    /* border: 1px solid #e5e5e5; */
  }

  a.remove {
    font-size: 26px;
    color: white;
    padding: 10px 17px;
    margin-top: 35px;
    /* transform: skewX(-15deg); */
    /* width: fit-content; */
    /* display: flex; */
    /* justify-content: end; */
    position: unset;
    right: 494px;
    border-radius: 5px;
    background: #f0b01d;
  }


  .postss ul li:nth-child(1) {
    width: 30%;
  }

  .postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 0px 0;
    margin-top: 0;

  }

  .blogs-img-text img {
    width: 100%;
    border-radius: 10px;
    height: 580px;
    object-fit: fill;
  }

  section.freeChapters .chapetext h6 {
    color: #fff;
    margin: 20px 0;
    font-size: 15px;
    text-transform: capitalize;
    line-height: 20px;
  }

  section.freeChapters .chapetext h4 {
    font-family: "Inter";
    text-transform: capitalize;
    font-size: 24px;
    line-height: 70px;
    padding-left: 10px;
    position: relative;
    margin-top: 20px;
  }

  .calen_box {
    padding: 40px 0;
    display: flex;
    align-items: center;
    color: #000;
    gap: 11px;
    border-right: 3px solid #afafaf;
    margin-right: 0;
  }

  .gen_text1 {
    width: 100%;
    margin: 0 auto;
    border: 1px solid;
    padding: 10px 0;
  }

  section.readings.sec .gen_box h6 {
    color: #000;
    font-family: "Jockey One";
    font-weight: 500;
    font-size: 20px;
  }

  section.about_sec.about_sec1.sec {
    padding-top: 40px;
  }

  .abt_para.pt-5 {
    padding: 0 !important;
  }


  .update_input {
    position: relative;
    margin: 0 0 20px 0;
  }


  .update_input {
    position: relative;
    margin: 0 0 20px 0;
    width: 80%;
  }

  .updatebox p {
    font-family: Poppins;
    font-size: 19px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
    width: 96%;
  }

  footer h5 {
    font-family: Inter;
    font-size: 30px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-transform: capitalize;
    margin-bottom: 10px;
    margin-top: 10px;
  }

  .theme_btn1 {
    padding: 5px 17px;
    border-radius: 30px;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 600;
    background: #febf00;
    color: #000;
    font-size: 17px;
  }

  .event_image_text {
    width: 35%;
  }

  .event_image_text_inner span {
    color: #3c3c3c;
    font-family: montserrat;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
  }

  .calen_box {
    padding: 40px 0;
    display: flex;
    align-items: center;
    color: #000;
    gap: 11px;
    border-right: 3px solid #afafaf;
    margin-right: 0;
  }

  .event_image img {
    height: 150px;
    width: 100%;
    object-fit: fill;
    object-position: left;
  }

  .event_image {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  section.gen_sec.sec.home-books.pb-0 {
    padding-top: 0;
  }

  .story_sec {
    padding-top: 100px;
    padding-bottom: 80px;
    background: black;
    position: relative;
  }

  .banner_sec {
    /* background-image: url(../images/banner.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 660px;
    /* background-color: #AB0000; */
    position: relative;
  }

  .marquee-list {
    bottom: 0;
    top: unset;
  }

  .hdr_cart a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
  }

  .header .col-lg-7.col-sm-12 {
    order: 4;
  }

  .header .col-lg-1.col-sm-12.col-md-3 {
    order: 2;
  }

  .header .col-lg-1.col-sm-3.col-md-2 {
    order: 3;
  }

  section.header .row {
    justify-content: center;
  }

  .follow-us {
    position: fixed;
    right: 0;
    top: 56%;
  }

  .exclusive h2 {
    font-size: 54px;
    line-height: 50px;
  }

  .exclusive {
    margin-top: 22px;
  }

  .update_input input {
    margin-bottom: 0;
  }

  .about_text p {
    line-height: 29px;
    font-size: 16px;
    width: 93%;
  }

  .testi_text1 h6 b {
    line-height: 40px;
    font-size: 25px;
  }

  .event_topbar select {
    width: 30%;
  }

  .story_text h2 {
    color: #fff;
    font-size: 61px;
  }

  .diary_text h6 {
    font-size: 19px;
  }

  .gen_image img {
    object-fit: fill;
    height: 250px;
  }

  .qucklinks {
    margin: 20px 0px;
  }

  .logo_box {
    margin: 20px 0px;
  }

  .testi_icon a {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  section.freeChapters .chapetext h5 {
    margin-top: 21px;
  }

  .event_button a {
    margin-top: 20px;
  }

  .blog-text p {
    margin-top: 10px;
  }

  .blog-text h4 {
    margin-top: 10px;
    font-size: 20px;
  }

  .blog-text {
    height: 220px;
    padding: 20px 10px;
  }

  .blog-text ul li {
    color: #000000;
    font-size: 10px;
    font-weight: 600;
  }

  .blog-image img {
    width: 100%;
    height: 240px;
  }

  .cntc-box-sec ul li a {
    font-size: 14px;
  }

  .cntc-box-sec {
    margin-top: 30px;
    height: auto;
  }

  .hdr_logo {
    border-right: none;
  }

  .nav-head {
    border-left: none;
    border-right: none;
  }

  .banner_text h1 {
    text-align: center;
    width: 100%;
    line-height: 200px;
    font-size: 55px !important;
  }

  .banner_out_book {
    /* width: 60%; */
    /* top: 57%; */
  }

  img.banner_book {
    /* height: 50%; */
  }

  .banner_right_text::after {
    width: 63%;
    height: 55%;
  }

  .about_text {
    margin-top: 20px;
  }

  section.readings.sec .gen_box .gen_image img.img-fluid {
    width: 100%;
  }
}

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

  .sidenav a {
    font-weight: 600;
    position: relative;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    transition: 0.3s;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: start;
  }

  .inner_event_box_image {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
  }

  .postss ul li:nth-child(1) {
    width: 30%;
  }

  .blog-box {
    position: relative;
    margin: 20px 40px;
  }
  
  .banner_out_book {
            z-index: 9 !important;
        position: relative !important;
        padding-top: 35px;
}

  .rate_bar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
  }

  ul#menu {
    display: none;
  }

  .banner_out_book {
    position: unset;
    width: 87%;
    margin: 40px auto;
    display: block;
    top: 0;
    left: 0;
    transform: unset;
    height: auto;
    z-index: 2;
  }

  .banner_sec {
    /* background-image: url(../images/banner.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    /* background-color: #AB0000; */
    position: relative;
  }

  .banner_sec::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  h1 {
    font-size: 110px;
    line-height: normal;
    color: #000;
    font-family: "Jockey One", sans-serif;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
  }

  .banner_right_text {
    position: absolute;
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
  }

  .header .col-lg-7.col-sm-12 {
    order: 4;
  }


  .header .col-lg-1.col-sm-6 {
    order: 2;
  }


  .header .col-lg-1.col-sm-6.col-md-6 {
    order: 3;
  }

  .story_sec::before {
    display: none
  }

  .banner_text h1 {
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .banner_right_text::before {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 79%;
    background-image: url(../images/banner_triangle.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
  }

  .banner_out_book {
    position: unset;
    width: 83%;
    margin: 60px auto;
    display: block;
    top: 0;
    left: 0;
    transform: unset;
    height: auto;
    z-index: 2;
  }

  .banner_right_text::after {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 59%;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f0b01d 124.55%);
    z-index: -2;
    content: "";
  }



  .nav-head {
    border-left: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 15px;
    border-right: none;
  }

  .story_sec {
    padding-top: 80px;
    padding-bottom: 40px;
    background: black;
    position: relative;
  }

  .marquee-list {
    bottom: -90px;
    top: unset;
  }

  h2.big {
    font-size: 48px;
  }

  h2 {
    font-size: 57px;
    line-height: 1.2;
    color: black;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: "Jockey One", sans-serif;
    text-transform: uppercase;
  }

  .marquee-list li {

    /* font-size: 20px; */

  }

  .marquee-list ul {

    gap: 10px;

  }

  .marquee-list li img {
    width: 20px;
  }

  .marquee-list {
    bottom: -40px;
    top: unset;
    /* padding: 14px 0; */
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  img.banner_book {}

  .hdr_logo {
    border-right: none;
    justify-self: center;
  }

  .follow-us {
    display: none;
  }


  .diary_image1 img {
    height: 300px;
    object-fit: contain;
  }

  html {
    overflow-x: hidden;
  }

  .sec {
    padding: 30px 0;
  }

  h6 {
    /* font-size: 16px; */
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    color: #737373;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .diary_main_bar {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
  }

  .deal_bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .exclusive img {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: -40px;
  }



  .theme_btn1 {
    padding: 9px 10px;
    border-radius: 30px;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 600;
    background: #febf00;
    color: #000;
    font-size: 15px;
    display: block;
    width: fit-content;
  }

  .diary_buttons {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .theme_btn2 {
    padding: 8px 10px;
    border-radius: 30px;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 500;
    background: #000000;
    color: #fff;
    font-size: 15px;
  }

  .ban_bot_box {
    display: flex;
    align-items: center;
    /* gap: 10px; */
    border-right: none;
    width: 100%;
    margin: 10px 0;
  }

  .ban_bot_box_text span {
    color: #5f6c72;
    font-weight: 500;
    /* font-size: 13px; */
  }

  .ban_bot_main_box {
    /* padding: 20px 10px; */
    border: 1px solid #e4e7e9;
  }

  .exclusive img {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: -40px;
  }

  .diary_text {
    margin: 40px 0;
  }

  .about_image img {
    height: 500px;
    object-fit: cover;
    object-position: top;
  }

  .about_text p {
    line-height: 25px;
    font-size: 16px;
    /* margin: 0 0 5px 0; */
  }

  .about_text {
    margin: 20px 0 0 0;
  }

  p {
    /* font-size: 14px; */
    font-weight: 600;
    /* line-height: 20px; */
    color: #000;
    font-family: "Open Sans", sans-serif;
  }

  .gen_image img {
    /* height: 300px; */
    margin-bottom: 15px;
  }

  section.gen_sec.sec.home-books h6 {
    text-transform: capitalize;
    font-family: "Jockey One";
    /* font-size: 28px; */
    color: #000;
    line-height: normal;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  section.gen_sec.sec.home-books .diary_buttons a {
    /* font-size: 14px; */
    text-align: center;
    /* padding: 13px 10px; */
    margin: 0px auto;
    /* display: inline-block; */
    /* width: auto; */
  }

  .event_topbar select {
    appearance: auto;
    width: auto;
    text-align: left;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
  }

  .calen_box {
    /* padding: 10px 0 10px 0; */
    display: flex;
    align-items: center;
    /* color: #000; */
    gap: 11px;
    border-right: none;
    margin-right: 0;
    justify-content: center;
  }

  .event_image {
    display: flex;
    align-items: center;
    gap: 10px;
    /* flex-wrap: wrap; */
    flex-direction: column;
  }

  .event_image_text_inner {
    width: 100%;
  }

  .event_image_text_inner p {
    color: #000;
    margin: 0;
    text-transform: capitalize;
    font-family: "Jockey One", sans-serif;
    /* font-size: 20px; */
    margin-bottom: 10px;
    text-align: center;
  }

  .event_image_text_inner span {
    color: #3c3c3c;
    font-family: montserrat;
    display: block;
    /* font-size: 12px; */
    text-transform: uppercase;
    margin: 3px 0;
    text-align: center;
  }

  .event_image img {
    height: 290px;
    width: 100%;
    /* object-fit: contain; */
    object-position: center;
  }

  .event_box {
    padding: 20px 10px;
    margin: 10px 0;
    background: #d9d9d933;
  }

  .event_image_text {
    width: 70%;
  }

  .calen_box i {
    /* font-size: 40px; */
  }

  .event_box .theme_btn1 {
    justify-self: center;
  }

  .testi_icon a {
    width: 150px;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    justify-self: center;
    height: 150px;
  }

  .testi_icon::before {
    position: absolute;
    top: 0;
    width: 95%;
    height: 100%;
    left: 50%;
    background: #ffd640;
    content: "";
    z-index: -1;
    transform: translate(-50%, 0);
  }

  .testi_icon {
    position: relative;
    z-index: 1;
    padding: 30px 0;
  }

  .testi_text1 h6 b {
    font-style: italic;
    line-height: normal;
    text-transform: lowercase;
  }

  .testi_text1 {
    padding-left: 0;
  }

  .testi_text1 h5 {
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
    font-size: 25px;
  }

  .testi_text1 h3 {
    text-transform: capitalize;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 40px;
  }

  .testi_inner_box .d-flex.align-items-center ul span {
    font-size: 20px;
  }

  .rating h2 {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 50px;
    margin: 0;
  }

  .testi_icon a i {
    font-size: 100px;
    color: #febf00;
  }

  .testi_slider .slick-slide {
    margin: 0;
  }

  footer h5 {
    margin-bottom: 10px;
    font-family: Inter;
    /* font-size: 25px; */
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-transform: capitalize;
    margin-top: 30px;
  }


  .mail a {
    display: block;
    font-family: Inter;
    /* font-size: 13px; */
    font-weight: 700;
    line-height: 39.41px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 10px 0;
  }

  .ftr_icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 0px 0;
  }

  .updatebox p {
    font-family: Poppins;
    /* font-size: 14px; */
    font-weight: 400;
    /* line-height: 20px; */
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
  }

  .qucklinks ul li a {
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 1px 0;
    display: block;
  }

  .hmf_text p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
  }

  .hmf_box {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 20px 0 0 0;
  }

  .ftr_icons i {
    /* font-size: 20px; */
    color: #febf00;
  }


  .banner_text.inner_banner_text h1 {
    font-size: 94px !important;
    color: #fff;
    line-height: normal;
  }

  .inner_banner_sec::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/banner_gradient.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .inner_banner_sec .banner_out_book.banner_out_book1 {
    position: relative;
    width: 70%;
    margin: 0 auto 100px auto;
  }

  section.about_sec.about_sec1 p {
    color: #2c2b2b;
    font-size: 14px;
    line-height: 20px;
  }

  .abt_para.pt-5 {
    padding-top: 10px !important;
  }

  section.about_sec.about_sec1.sec {
    padding-top: 40px;
  }

  .inner_banner_sec {
    height: auto !important;
    padding-top: 10%;
    margin-top: 5%;
  }

  section.blog-sec p.text_center.auto {
    width: 100%;
    margin: 0 auto;
  }

  .topbar {
    padding: 0px 0 20px 0;
  }

  .blog-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    /* height: 250px; */
    object-position: top;
  }

  .blog-text {
    height: auto;
    width: 100%;
    /* padding: 20px 20px 10px 20px; */
    background: #fff;
    border-radius: 10px;
    /* position: absolute; */
    bottom: 0;
    left: 0;
    margin-top: -20px;
    border: 1px solid #f0b01d;
  }

  .blogs-det-bottom-text h3 {
    width: 100%;
  }

  h3 {
    font-family: "Jockey One", sans-serif;
    font-size: 37px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    margin-top: 0;
  }

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

  .blog-categories {
    padding: 20px 0px;
  }

  .blogs-img-text img {
    width: 100%;
    border-radius: 10px;
    height: 400px;
    object-fit: cover;
    object-position: top;
  }

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

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

  .or-amazon {
    margin-top: 50px;
    position: relative;
    border: 1px solid #c8c8c8;
    /* top: 25px; */
    padding: 10px 50px;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 30px;
  }

  .total-section li {
    font-size: 20px;
    padding-bottom: 20px;
    color: #000000a1;
    font-weight: 400;
    /* font-family: 'Poppins'; */
    text-transform: uppercase;
    font-family: "Jockey One", sans-serif;
  }

  .ship-estimate {
    background-color: #f9f9f9;
    padding: 50px;
    margin-top: 20px;
    /* border: 1px solid #e5e5e5; */
  }

  .add-to-cart {
    position: relative;
    padding: 50px 0 30px;
  }

  .billing_form label {
    font-size: 13px;
    color: #373a33;
    line-height: 20px;
    font-weight: 600;
    /* margin: 0; */
  }

  .cart_sidebar .h-sub {
    font-weight: 500;
    color: #000;
    font-size: 20px;
    border-bottom: 1px solid #373a33;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 10px;
    font-family: "Jockey One", sans-serif;
  }

  .cart_sidebar a {
    padding: 12px 40px;
    color: #fff;
    border-radius: 0;
    background: #f0b01d;
    font-size: 19px;
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  section.checkout_page.pt-5.pb-5 {
    padding: 50px 0px 40px !important;
  }

  .contact-main-sec {
    padding: 60px 0;
  }

  .cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
  }

  .cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 0;
    color: #7c7c7c;
  }

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

  .cart_sidebar {
    /* padding: 40px 15px; */
    border: 2px solid #bfbfbf;
    border-radius: 0px;
    margin: 20px 0;
  }

  .billing_form input::placeholder {
    font-size: 12px;
    color: #7c7c7c;
  }

  .contact-pag-form form input.form-control::placeholder {
    color: #909091;
    font-size: 13px;
  }

  .contact-pag-form form select.form-control {
    /* font-size: 12px; */
  }

  .cntc-box-sec {
    color: #fff;
    list-style: none;
    /* padding: 37px 5px; */
    position: relative;
    background-color: #f0b01d;
    height: auto;
    margin: 30px 0;
  }

  .cntc-box-sec h3 {
    color: #fff;
    /* font-size: 32px; */
    font-weight: 400;
    line-height: 2;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    text-transform: uppercase;
    color: #000;
    line-height: normal;
  }

  .cntc-box-sec ul {
    display: inline-flex;
    align-items: center;
    /* gap: 11px; */
    /* padding: 8px 0; */
    margin-bottom: 0;
    padding-bottom: 5px !important;
    border: none;
    justify-content: space-between;
  }

  .contact-pag-form .form-group i {
    position: absolute;
    top: 20px;
    left: 13px;
    /* font-size: 16px; */
    color: #7e7e7e;
  }

  .contact-pag-form form input.form-control {
    height: 60px;
    /* font-size: 12px; */
    padding-left: 55px;
    border: 1px solid #c6c6c6;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: "Montserrat";
    display: flex;
    border-radius: 0;
  }

  .cntc-box-sec li img {
    object-fit: scale-down;
    /* width: 26px; */
    /* height: 40px; */
  }

  .inner_event_box_image {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
  }

  ul.new_date {
    /* gap: 20px; */
    /* display: flex; */
    /* align-items: center; */
    /* margin-bottom: 0; */
  }

  .news_text.news_text1 a {
    text-align: right;
    float: right;
    display: block;
    width: fit-content;
    margin: 10px 0;
  }

  .blog-detail-card-img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .blog-detail-search-main {
    position: relative;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .blog-detail-search input {
    /* width: 100%; */
    /* padding: 0 80px 0 3px; */
    /* height: 60px; */
    /* border: 1px solid #e1e1e1; */
    /* outline: none; */
    /* border-radius: 0; */
  }

  ul.points li p strong {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    font-size: 15px;
  }

  ul.points li p {
    /* font-size: 14px; */
    /* font-weight: 400; */
  }

  .blog-detail-card-main {
    padding: 0;
  }

  section.banner_sec.inner_banner_sec.policy h1 {
    text-align: center;
    font-size: 100px;
  }

  section.readings.sec .heading {
    margin-bottom: 0;
  }

  .gen_text1 {
    width: 100%;
    margin: 0 auto;
    border: 1px solid;
    padding: 10px 0;
  }

  section.freeChapters .imgchp {
    position: relative;
    width: 100%;
    float: right;
    margin-right: 0;
    position: relative;
    height: 100%;
  }

  .product-det-box {
    padding: 4px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
  }

  .product-det-box h3 span {
    font-size: 24px;
    width: 60px;
    font-family: "Jockey One", sans-serif;
  }

  .prod-det-buttons:after {
    display: none;
  }

  .product-det-box h3 {
    /* font-size: 20px; */
    /* text-transform: uppercase; */
    /* display: flex; */
    /* align-items: center; */
    /* justify-content: space-between; */
    /* margin: 0; */
  }

  section.freeChapters .chapetext h6 {
    color: #fff;
    margin: 20px 0;
    /* font-size: 14px; */
    text-transform: capitalize;
    /* line-height: 20px; */
  }

  section.freeChapters .chapetext {
    width: 100%;
    margin: 20px 0;
  }

  section.freeChapters .chapetext h4 {
    font-family: "Inter";
    text-transform: capitalize;
    /* font-size: 40px; */
    line-height: normal;
    padding-left: 11px;
    position: relative;
    margin-top: 10px;
  }

  section.sayReader h6 {
    line-height: 30px;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    color: #000;
    text-transform: capitalize;
    margin-top: 0;
  }

  section.sayReader p {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
    font-style: italic;
  }

  section.readings.sec .sub-heading h3 span {
    display: inline-block;
    background: #ffff;
    position: relative;
    padding: 0;
  }

  section.sayReader .syatext {
    width: 100%;
    margin: 0px auto;
  }

  section.readings.sec .gen_box h6 {
    color: #000;
    font-family: "Jockey One";
    font-weight: 500;
    font-size: 25px;
  }

  .btn2.cart-btn {
    font-weight: 500;
    font-size: 17px;
    font-size: 26px;
    text-transform: capitalize;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: jocky-one;
    font-family: "Jockey One", sans-serif;
  }

  .skin-2 .num-in {
    height: 40px;
    width: 90px;
    float: none;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
  }

  .counter-det-box {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #a9a9a9;
    position: relative;
    margin-top: 30px;
    justify-content: space-between;
    gap: 10%;
  }

  h4 {
    font-family: "Jockey One", sans-serif;
    /* font-size: 27px; */
    line-height: 1.2;
    color: white;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .hdr_hamburger {
    display: none;
  }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .hdr_hamburger {
    display: none;
  }

  ul#menu {
    display: none;
  }

  .banner_out_book {
    position: unset;
    width: 87%;
    margin: 40px auto;
    display: block;
    top: 0;
    left: 0;
    transform: unset;
    height: auto;
    z-index: 2;
  }

  .banner_sec {
    /* background-image: url(../images/banner.png); */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: auto;
    /* background-color: #AB0000; */
    position: relative;
  }

  .banner_sec::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .banner_out_book {
            z-index: 9 !important;
        position: relative !important;
        padding-top: 35px;
}

  h1 {
    font-size: 60px;
    line-height: normal;
    color: #000;
    font-family: "Jockey One", sans-serif;
    font-weight: 500;
    margin: 0 0 17px;
    text-transform: uppercase;
  }

  .banner_right_text {
    position: absolute;
    padding: 0;
    width: 100%;
    top: 0;
    left: 0;
  }

  .header .col-lg-7.col-sm-12 {
    order: 4;
  }


  .header .col-lg-1.col-sm-6 {
    order: 2;
  }


  .header .col-lg-1.col-sm-6.col-md-6 {
    order: 3;
  }

  .story_sec::before {
    display: none
  }

  .banner_text h1 {
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .banner_right_text::before {
    position: absolute;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 79%;
    background-image: url(../images/banner_triangle.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    content: "";
    z-index: -1;
  }

  .banner_out_book {
    position: unset;
    width: 83%;
    margin: 60px auto;
    display: block;
    top: 0;
    left: 0;
    transform: unset;
    height: auto;
    z-index: 2;
  }

  .banner_right_text::after {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 59%;
    border-radius: 50%;
    background: linear-gradient(180deg, #ffffff 0%, #f0b01d 124.55%);
    z-index: -2;
    content: "";
  }



  .nav-head {
    border-left: none;
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 15px;
    border-right: none;
  }

  .story_sec {
    padding-top: 80px;
    padding-bottom: 40px;
    background: black;
    position: relative;
  }

  .marquee-list {
    bottom: -90px;
    top: unset;
  }

  h2.big {
    font-size: 28px;
  }

  h2 {
    font-size: 23px;
    line-height: 1.2;
    color: black;
    font-weight: 500;
    margin: 0 0 10px;
    font-family: "Jockey One", sans-serif;
    text-transform: uppercase;
  }

  .marquee-list li {

    font-size: 20px;

  }

  .marquee-list ul {

    gap: 10px;

  }

  .marquee-list li img {
    width: 20px;
  }

  .marquee-list {
    bottom: -40px;
    top: unset;
    padding: 14px 0;
    right: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
  }

  img.banner_book {
    height: 75%;
    object-fit: fill;
  }

  .hdr_logo {
    border-right: none;
    justify-self: center;
  }

  .follow-us {
    display: none;
  }


  .diary_image1 img {
    height: 300px;
    object-fit: contain;
  }

  html {
    overflow-x: hidden;
  }

  .sec {
    padding: 30px 0;
  }

  h6 {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
    color: #737373;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .diary_main_bar {
    display: flex;
    align-items: center;
    padding: 20px 0;
    gap: 10px;
    flex-wrap: wrap;
  }

  .deal_bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .exclusive img {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: -40px;
  }



  .theme_btn1 {
    padding: 9px 10px;
    border-radius: 30px;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 600;
    background: #febf00;
    color: #000;
    font-size: 15px;
    display: block;
    width: fit-content;
  }

  .diary_buttons {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .theme_btn2 {
    padding: 8px 10px;
    border-radius: 30px;
    font-family: poppins;
    text-transform: uppercase;
    font-weight: 500;
    background: #000000;
    color: #fff;
    font-size: 15px;
  }

  .ban_bot_box {
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: none;
    width: 100%;
  }

  .ban_bot_box_text span {
    color: #5f6c72;
    font-weight: 500;
    font-size: 13px;
  }

  .ban_bot_main_box {
    padding: 20px 10px;
    border: 1px solid #e4e7e9;
  }

  .exclusive img {
    position: absolute;
    width: 60px;
    height: 60px;
    right: 0;
    top: -40px;
  }

  .diary_text {
    margin: 40px 0;
  }

  .about_image img {
    height: 300px;
    object-fit: cover;
    object-position: top;
  }

  .about_text p {
    line-height: 20px;
    font-size: 14px;
    margin: 0 0 5px 0;
  }

  .about_text {
    margin: 20px 0 0 0;
  }

  p {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    font-family: "Open Sans", sans-serif;
  }

  .gen_image img {
    height: 300px;
    margin-bottom: 15px;
  }

  section.gen_sec.sec.home-books h6 {
    text-transform: capitalize;
    font-family: "Jockey One";
    font-size: 28px;
    color: #000;
    line-height: normal;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  section.gen_sec.sec.home-books .diary_buttons a {
    font-size: 14px;
    text-align: center;
    padding: 13px 10px;
    margin: 0px auto;
    display: inline-block;
    width: auto;
  }

  .event_topbar select {
    appearance: auto;
    width: auto;
    text-align: left;
    padding: 8px 24px;
    border-radius: 40px;
    font-size: 14px;
  }

  .calen_box {
    padding: 10px 0 10px 0;
    display: flex;
    align-items: center;
    color: #000;
    gap: 11px;
    border-right: none;
    margin-right: 0;
    justify-content: center;
  }

  .event_image {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .event_image_text_inner {
    width: 100%;
  }

  .event_image_text_inner p {
    color: #000;
    margin: 0;
    text-transform: capitalize;
    font-family: "Jockey One", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
  }

  .event_image_text_inner span {
    color: #3c3c3c;
    font-family: montserrat;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin: 3px 0;
  }

  .event_image img {
    height: 200px;
    width: 100%;
    object-fit: contain;
    object-position: center;
  }

  .event_box {
    padding: 20px 10px;
    margin: 10px 0;
    background: #d9d9d933;
  }

  .event_image_text {
    width: 70%;
  }

  .calen_box i {
    font-size: 40px;
  }

  .event_box .theme_btn1 {
    justify-self: center;
  }

  .testi_icon a {
    width: 150px;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    justify-self: center;
    height: 150px;
  }

  .testi_icon::before {
    position: absolute;
    top: 0;
    width: 95%;
    height: 100%;
    left: 50%;
    background: #ffd640;
    content: "";
    z-index: -1;
    transform: translate(-50%, 0);
  }

  .testi_icon {
    position: relative;
    z-index: 1;
    padding: 30px 0;
  }

  .testi_text1 h6 b {
    font-style: italic;
    line-height: normal;
    text-transform: lowercase;
  }

  .testi_text1 {
    padding-left: 0;
  }

  .testi_text1 h5 {
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    margin: 0;
    font-size: 25px;
  }

  .testi_text1 h3 {
    text-transform: capitalize;
    font-family: "Poppins";
    font-weight: 700;
    font-size: 40px;
  }

  .testi_inner_box .d-flex.align-items-center ul span {
    font-size: 20px;
  }

  .rating h2 {
    font-family: "Inter", sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 50px;
    margin: 0;
  }

  .testi_icon a i {
    font-size: 100px;
    color: #febf00;
  }

  .testi_slider .slick-slide {
    margin: 0;
  }

  footer h5 {
    margin-bottom: 10px;
    font-family: Inter;
    font-size: 25px;
    font-weight: 700;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    text-transform: capitalize;
    margin-top: 30px;
  }


  .mail a {
    display: block;
    font-family: Inter;
    font-size: 13px;
    font-weight: 700;
    line-height: 39.41px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 10px 0;
  }

  .ftr_icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0 0px 0;
  }

  .updatebox p {
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
  }

  .qucklinks ul li a {
    font-family: Inter;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 1px 0;
    display: block;
  }

  .hmf_text p {
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #fff;
  }

  .hmf_box {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    margin: 20px 0 0 0;
  }

  .ftr_icons i {
    font-size: 20px;
    color: #febf00;
  }


  .banner_text.inner_banner_text h1 {
    font-size: 54px !important;
    color: #fff;
    line-height: normal;
  }

  .inner_banner_sec::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../images/banner_gradient.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .inner_banner_sec .banner_out_book.banner_out_book1 {
    position: relative;
    width: 100%;
    margin: 0;
  }

  section.about_sec.about_sec1 p {
    color: #2c2b2b;
    font-size: 14px;
    line-height: 20px;
  }

  .abt_para.pt-5 {
    padding-top: 10px !important;
  }

  section.about_sec.about_sec1.sec {
    padding-top: 40px;
  }

  .inner_banner_sec {
    height: auto !important;
    padding-top: 30%;
    margin-top: 5%;
  }

  section.blog-sec p.text_center.auto {
    width: 100%;
    margin: 0 auto;
  }

  .topbar {
    padding: 0px 0 20px 0;
  }

  .blog-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    height: 250px;
    object-position: top;
  }

  .blog-text {
    height: auto;
    width: 100%;
    padding: 20px 20px 10px 20px;
    background: #fff;
    border-radius: 10px;
    /* position: absolute; */
    bottom: 0;
    left: 0;
    margin-top: -20px;
    border: 1px solid #f0b01d;
  }

  .blogs-det-bottom-text h3 {
    width: 100%;
  }

  h3 {
    font-family: "Jockey One", sans-serif;
    font-size: 37px;
    line-height: 1.2;
    color: #000000;
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  .postss {
    border-bottom: 1px solid #e1e1e1;
    padding: 10px 0;
    margin-top: 0;
  }

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

  .blog-categories {
    padding: 20px 0px;
  }

  .blogs-img-text img {
    width: 100%;
    border-radius: 10px;
    height: 300px;
    object-fit: cover;
    object-position: top;
  }

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

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

  .or-amazon {
    margin-top: 50px;
    position: relative;
    border: 1px solid #c8c8c8;
    /* top: 25px; */
    padding: 10px 50px;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 30px;
  }

  .total-section li {
    font-size: 20px;
    padding-bottom: 20px;
    color: #000000a1;
    font-weight: 400;
    /* font-family: 'Poppins'; */
    text-transform: uppercase;
    font-family: "Jockey One", sans-serif;
  }

  .ship-estimate {
    background-color: #f9f9f9;
    padding: 50px;
    margin-top: 20px;
    /* border: 1px solid #e5e5e5; */
  }

  .add-to-cart {
    position: relative;
    padding: 50px 0 30px;
  }

  .billing_form input {
    width: 100%;
    height: 40px;
    border: 2px solid #dbdbdb;
    margin-bottom: 10px;
    padding-left: 5px;
    background-color: #fff0;
    border-radius: 0px;
    font-size: 12px;
  }

  .billing_form label {
    font-size: 13px;
    color: #373a33;
    line-height: 20px;
    font-weight: 600;
    margin: 0;
  }

  .cart_sidebar .h-sub {
    font-weight: 500;
    color: #000;
    font-size: 20px;
    border-bottom: 1px solid #373a33;
    margin-bottom: 20px;
    line-height: 0;
    padding-bottom: 30px;
    padding-top: 10px;
    font-family: "Jockey One", sans-serif;
  }

  .cart_sidebar a {
    padding: 12px 40px;
    color: #fff;
    border-radius: 0;
    background: #f0b01d;
    font-size: 19px;
    width: 100%;
    display: block;
    margin: 10px 0;
  }

  section.checkout_page.pt-5.pb-5 {
    padding: 50px 0px 40px !important;
  }

  .contact-main-sec {
    padding: 60px 0;
  }

  .cart_sidebar ul li label {
    position: relative;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
  }

  .cart_sidebar .cart_lst li:not(:last-child) {
    margin-bottom: 0;
    color: #7c7c7c;
  }

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

  .cart_sidebar {
    padding: 40px 15px;
    border: 2px solid #bfbfbf;
    border-radius: 0px;
    margin: 20px 0;
  }

  .billing_form input::placeholder {
    font-size: 12px;
    color: #7c7c7c;
  }

  .contact-pag-form form input.form-control::placeholder {
    color: #909091;
    font-size: 13px;
  }

  .contact-pag-form form select.form-control {
    font-size: 12px;
  }

  .cntc-box-sec {
    color: #fff;
    list-style: none;
    padding: 37px 5px;
    position: relative;
    background-color: #f0b01d;
    height: auto;
    margin: 30px 0;
  }

  .cntc-box-sec li {
    font-size: 12px;
    color: #000;
  }

  .cntc-box-sec h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    line-height: 2;
    background: inherit;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit;
    text-transform: uppercase;
    color: #000;
    line-height: normal;
  }

  .cntc-box-sec ul {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 0;
    margin-bottom: 0;
    padding-bottom: 5px !important;
    border: none;
    justify-content: space-between;
  }

  .contact-pag-form .form-group i {
    position: absolute;
    top: 20px;
    left: 13px;
    font-size: 16px;
    color: #7e7e7e;
  }

  .contact-pag-form form input.form-control {
    height: 60px;
    font-size: 12px;
    padding-left: 55px;
    border: 1px solid #c6c6c6;
    line-height: 0;
    box-shadow: none;
    color: black;
    font-weight: 400;
    background-color: transparent;
    margin-top: 20px;
    font-family: "Montserrat";
    display: flex;
    border-radius: 0;
  }

  .cntc-box-sec li img {
    object-fit: scale-down;
    width: 26px;
    height: 40px;
  }

  .inner_event_box_image {
    float: none;
    width: 100%;
    height: auto;
    margin: 0;
  }

  ul.new_date {
    gap: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }

  .news_text.news_text1 a {
    text-align: right;
    float: right;
    display: block;
    width: fit-content;
    margin: 10px 0;
  }

  .blog-detail-card-img img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
  }

  .blog-detail-search-main {
    position: relative;
    width: 100%;
    margin: 0 0 20px 0;
  }

  .blog-detail-search input {
    width: 100%;
    padding: 0 80px 0 3px;
    height: 60px;
    border: 1px solid #e1e1e1;
    outline: none;
    border-radius: 0;
  }

  ul.points li p strong {
    position: relative;
    z-index: 1;
    padding-left: 20px;
    font-size: 15px;
  }

  ul.points li p {
    font-size: 14px;
    font-weight: 400;
  }

  .blog-detail-card-main {
    padding: 0;
  }

  section.banner_sec.inner_banner_sec.policy h1 {
    text-align: center;
    font-size: 100px;
  }

  section.readings.sec .heading {
    margin-bottom: 0;
  }

  .gen_text1 {
    width: 100%;
    margin: 0 auto;
    border: 1px solid;
    padding: 10px 0;
  }

  section.freeChapters .imgchp {
    position: relative;
    width: 100%;
    float: right;
    margin-right: 0;
    position: relative;
    height: 100%;
  }

  .product-det-box {
    padding: 4px;
    border: 1px solid #9e9e9e;
    border-radius: 0px;
  }

  .product-det-box h3 span {
    font-size: 24px;
    width: 60px;
    font-family: "Jockey One", sans-serif;
  }

  .prod-det-buttons:after {
    display: none;
  }

  .product-det-box h3 {
    font-size: 20px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
  }

  section.freeChapters .chapetext h6 {
    color: #fff;
    margin: 20px 0;
    font-size: 14px;
    text-transform: capitalize;
    line-height: 20px;
  }

  section.freeChapters .chapetext {
    width: 100%;
    margin: 20px 0;
  }

  section.freeChapters .chapetext h4 {
    font-family: "Inter";
    text-transform: capitalize;
    font-size: 40px;
    line-height: normal;
    padding-left: 11px;
    position: relative;
    margin-top: 10px;
  }

  section.sayReader h6 {
    line-height: 30px;
    letter-spacing: 0px;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    color: #000;
    text-transform: capitalize;
    margin-top: 0;
  }

  section.sayReader p {
    font-size: 14px;
    line-height: normal;
    font-weight: 400;
    font-family: "Poppins";
    margin-bottom: 0;
    font-style: italic;
  }

  section.readings.sec .sub-heading h3 span {
    display: inline-block;
    background: #ffff;
    position: relative;
    padding: 0;
  }

  section.sayReader .syatext {
    width: 100%;
    margin: 0px auto;
  }

  section.readings.sec .gen_box h6 {
    color: #000;
    font-family: "Jockey One";
    font-weight: 500;
    font-size: 25px;
  }

  .btn2.cart-btn {
    font-weight: 500;
    font-size: 17px;
    font-size: 26px;
    text-transform: capitalize;
    color: #000;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: jocky-one;
    font-family: "Jockey One", sans-serif;
  }

  .skin-2 .num-in {
    height: 40px;
    width: 90px;
    float: none;
    border: 0;
    border-radius: 25px;
    cursor: pointer;
  }

  .counter-det-box {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #a9a9a9;
    position: relative;
    margin-top: 30px;
    justify-content: space-between;
    gap: 10%;
  }

  h4 {
    font-family: "Jockey One", sans-serif;
    font-size: 27px;
    line-height: 1.2;
    color: white;
    letter-spacing: 2px;
    font-weight: 500;
    margin: 0 0 10px;
    text-transform: uppercase;
  }

  section.freeChapters .imgchp {
    position: relative;
    width: 100%;
    float: right;
    margin-right: 0;
    position: relative;
    height: 500px;
  }


  .add-to-cart a {
    font-size: 18px;
    display: block;
    /* text-align: center; */
    padding-top: 9px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    text-decoration: none;
    color: #666666;
    text-align: center;
  }

  a.remove {
    font-size: 26px;
    color: white;
    padding: 10px 17px;
    margin-top: 35px;
    /* transform: skewX(-15deg); */
    /* width: fit-content; */
    /* display: flex; */
    /* justify-content: end; */
    position: unset !important;
    right: 494px;
    border-radius: 5px;
    background: #f0b01d;
  }

  .table-space {
    display: block !important;
    align-items: center;
    width: 100% !important;
  }

  .table-responsive {
    width: 1000px !important;
    /* overflow-x: scroll; */
    max-width: 100% !important;
  }

  table.table {
    overflow-x: scroll !important;
    width: 800px !important;
    /* max-width: 1000px; */
  }

  td.col-md-5.col-lg-5.col-12 {
    width: 30% !important;
  }

  tr.space td.col-md-5.col-lg-5.col-12 .row {
    width: 100% !important;
  }

  .table-space {
    display: block;
    align-items: center;
    width: 100% !important;
  }

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

  td.col-md-3.col-lg-3.col-12 {
    width: 20% !important;
  }


  .col-md-5.no-padding {
    width: 100% !important;
  }

  .hdr_logo {
    border-right: navajowhite;
  }

  .hdr_cart a {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #fecf3e;
    padding: 20px 0 0 0;
    margin: 10px 0 0 0;
  }


  .sidenav a {
    font-weight: 600;
    position: relative;
    padding: 10px 10px;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    transition: 0.3s;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: start;
  }
}


/*Media Query End*/ 


.news-heading {
    margin-bottom: 70px;
}
.news-heading {
    text-align: center;
}
.policy ul p {
    margin-bottom: 3px;
}

.policy ul  li {
    padding-left: 20px;
}

.policy ul {
    margin-bottom: 19px;
}
section.policy.sec h3 {
    font-size: 28px;
    font-weight: 500;
}
.shop-det-botm-text {
    border: 1px solid #9e9e9e;
    padding: 10px;
    border-top: unset;
    margin-top: -3px;
}