/*-----------------------------------*\
  #style.css
\*-----------------------------------*/



/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --maximum-blue-green: hsl(184, 50%, 60%);
  --selective-yellow: hsl(42, 98%, 55%);
  --eerie-black_70: hsla(240, 1%, 14%, 0.7);
  --granite-gray: hsl(0, 0%, 40%);
  --spanish-gray: hsl(0, 0%, 57%);
  --oxford-blue: hsl(243, 95%, 8%);
  --eerie-black: hsl(214, 10%, 14%);
  --xiketic: hsl(240, 100%, 6%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --white_10: hsla(0, 0%, 100%, 0.1);
  --jet: hsl(225, 4%, 21%);

  /**
   * typography
   */

  --ff-work-sans: 'poppins';
  --ff-jost: 'poppins';

  --fs-1: 3.2rem;
  --fs-2: 2.4rem;
  --fs-3: 2.2rem;
  --fs-4: 2rem;
  --fs-5: 1.8rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;
  --fs-8: 1rem;

  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;

  /**
   * spacing
   */

  --section-padding: 30px;

  /**
   * radius
   */

  --radius-circle: 50%;
  --radius-pill: 200px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
  --cubic-anim: cubic-bezier(0.455, 0.030, 0.515, 0.955);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a,
img,
span,
time,
data,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
}

input { width: 100%; }

input::-webkit-search-cancel-button { display: none; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-work-sans);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white-1);
  color: var(--xiketic);
  font-size: 1.6rem;
  line-height: 1.5;
}

:focus-visible { outline-offset: 4px; }

::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 98%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.section { padding-block: var(--section-padding); }

.has-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-jost);
  font-weight: var(--fw-500);
  line-height: 1.25;
}

.h1 { font-size: var(--fs-1); }

.h2 { font-size: var(--fs-2); }

.h3 { font-size: var(--fs-6); }

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.btn {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  max-width: max-content;
  border: 1px solid var(--white-1);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 30px;
  border-radius: var(--radius-pill);
  transition: var(--transition-1);
}

.btn ion-icon { font-size: 16px; }

.btn:is(:hover, :focus) {
  background-color: #051526;
  border-color: var(--maximum-blue-green);
  color: white;
}

.w-100 { width: 100%; }

.grid-list {
  display: grid;
  gap: 20px;
}

.section-title,
.section-text { text-align: center; }

.section-text { font-size: var(--fs-6); }

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  overflow: hidden;
}

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

.product-card {
  position: relative;
  border: 1px solid var(--white_10);
}

.product-card .card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--maximum-blue-green);
  color: var(--xiketic);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
}



.product-card .card-banner { position: relative; }

.product-card .card-action {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background-color: var(--xiketic);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  border-radius: var(--radius-pill);
  transition: var(--transition-2);
  opacity: 0;
}

.product-card:is(:hover, :focus) .card-action {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.product-card .action-btn {
  font-size: 18px;
  transition: var(--transition-1);
}

.product-card :is(.action-btn, .card-title):is(:hover, :focus) {
  color: var(--maximum-blue-green);
}

.product-card .card-content { padding: 0px; }

.product-card .h3 { font-weight: var(--fw-400); }

.product-card .card-title {
  font-family: var(--ff-jost);
  transition: var(--transition-1);
}

.product-card .card-price {
  color: var(--maximum-blue-green);
  margin-block: 10px 5px;
}

.product-card .rating-wrapper {
  display: flex;
  gap: 5px;
  color: var(--selective-yellow);
}

.product-card .rating-wrapper ion-icon { --ionicon-stroke-width: 45px; }

.has-scrollbar {
  display: block;
  gap: 10px;
  /* overflow-x: auto;
  scroll-snap-type: inline mandatory; */
  padding-block-end: 20px;
  margin-block-end: -20px;
}

.scrollbar-item {
  width: 100%;
  float: left;
  padding: 10px;
  /* scroll-snap-align: start; */
}
.new{
  clear: both;
}

/* .has-scrollbar::-webkit-scrollbar { height: 10px; }

.has-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
  border: 1px solid black;
}

.has-scrollbar::-webkit-scrollbar-thumb { background-color: black; }

.has-scrollbar::-webkit-scrollbar-button { width: 10%; } */



/*------------------------------*\
          HOME
\*-------------------------------*/



.topnav {
  overflow: hidden;
  background-color: #051526;
  padding-left: 6%;
}

.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 16px;
  padding-left: 50px;
}

.active {
  background-color: #051526;
  color: white;
 
}
.nn {
  padding-left:350px;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

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

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.topnav .nn{
  margin-top: 20px;
}




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

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav .logo{
    display: none;
  }
  .topnav a {
  
    padding-left: 0px;
  }



 
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .nn{
    padding-left: 0px;
    
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}




/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header-top :is(.input-wrapper, .header-action-btn:last-child),
.header-contact-link { display: none; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: var(--xiketic); */
  z-index: 4;
}
.main-paper-banner{
  padding-left:0px;
  
 
  
  padding-top:30px;
}

.main-paper-banner .hero-f{
  font-size: 18px;
}
.main-paper-banner .hero-s{
  font-size: 16px;
}
.main-paper-banner .main-textx{
  padding-left:4%;
}

.header.active {
  position: fixed;
  transform: translateY(-100%);
  animation: slideInTop 0.5s ease forwards;
}

@keyframes slideInTop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.header-top { padding-block: 5px; }

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

/* .header-action-btn, */
.nav-open-btn {
  font-size: 24px;
  transition: var(--transition-1);
}

.header-action :is(.header-action-btn, .nav-open-btn):is(:hover, :focus) {
  color: var(--maximum-blue-green);
}

.header-action-btn { position: relative; }

.header-action-btn .span {
  position: absolute;
  top: -15px;
  right: -8px;
  background-color: var(--eerie-black); 
  font-size: var(--fs-8);
  min-width: 18px;
  min-height: 18px;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
}
.header-bottom .container{
  width: 100%;
  padding-bottom: -10px;
}

.header-bottom {
  position: fixed;
  top: 0;
  right: -300px;
  max-width: 260px;
  width: 100%;
  height: 10vh;
  /* background-color: var(--xiketic); */
  border: 1px solid var(--white-1);
  padding: 30px 5px;
  z-index: 1;
  transition: 0.25s var(--cubic-in);
  visibility: hidden;
}

/* .header-bottom.active {
  transform: translateX(-300px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
} */

.nav-close-btn {
  position: absolute;
  top: -1px;
  left: -41px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  /* background-color: var(--jet); */
  transition: var(--transition-1);
}

/* .nav-close-btn:is(:hover, :focus) { color: var(--maximum-blue-green); } */

.navbar-top {
  position: relative;
  border: 1px solid var(--white-1);
  margin-block-end: 40px;
}

.navbar-top .input-field {
  font-size: var(--fs-6);
  padding: 15px;
  outline: none;
}

.header-bottom .co{
  width: 20%;
}
.navbar-top .search-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border-inline-start: 1px solid var(--white-1);
  padding-inline: 15px;
}

.navbar-list {
  border-block: 1px solid var(--white-1);
  padding-block: 30px;
}

.navbar-link {
  padding-block: 10px;
  transition: var(--transition-1);
}

/* .navbar-link:is(:hover, :focus) { color: var(--maximum-blue-green); } */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* background-color: var(--white-1);  */
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}



/*-----------------------------------*\
             Divider-n
\*-----------------------------------*/

.divider-n{

/* background-color: #dee4cd; */
position: absolute;
 width: 95%; 
 margin-left: 0px;

 /* border: 2px solid #6e7c41; */


 
 
}
.divider-n ul{
  padding-left: 60px;
  
}
.divider-n li{
  text-align: center;
  margin: 10px;
  border: 2px solid #6e7c41;
  padding: 20px;
  padding-left: 70px;
  padding-right: 70px;
  color: white;
  background-color:#6e7c41 ;
  
  float: left;
}

.poster img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* HOME BOOKs */
.product-card img{
  height: 240px;
  

}



/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero .play-btn { display: none; }

.hero {
  padding-block-start: 0px;
  background-position: left;
}


.hero .container {
  display: grid;
  gap: 50px;
}

.hero-title::after {
  bottom: -15px;
  left: 0;
  width: 70px;
  height: 5px;
  background-color: var(--maximum-blue-green);
}

.hero-text { margin-block: 10px; }

.hero-banner {
  max-width: 0px;
  margin-inline: auto;
}

.hero-content .hero-text{
  font-size: 16px;
}





/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.feature { padding-block: 0; }

.feature-card {
  background-color: var(--oxford-blue);
  padding: 15px 2px;
  display: flex;
  align-items: center;
  gap: 25px;
}

.feature-card .card-icon {
  width: 60px;
  flex-shrink: 0;
}

.feature-card:hover .card-icon { animation: shake-lr 0.5s var(--cubic-anim) both; }

@keyframes shake-lr {
  0%,
  100% {
    transform: rotate(0);
    transform-origin: 50% 50%;
  }

  10%,
  90% { transform: rotate(4deg); }

  20%,
  40%,
  60% { transform: rotate(-6deg); }

  30%,
  50%,
  70% { transform: rotate(6deg); }

  80% { transform: rotate(-4deg); }
}

.feature-card .card-title { margin-block-end: 5px; }





/*-----------------------------------*\
  #FEATURED COLLECTION
\*-----------------------------------*/

.featured .section-text { margin-block: 10px 50px; }

.featured .grid-list { gap: 10px; }





/*-----------------------------------*\
  #OFFER
\*-----------------------------------*/

.offer { text-align: center; }

.offer .section-subtitle { font-size: var(--fs-3); }

.offer .section-title {
  --fs-2: 3rem;
  color: var(--maximum-blue-green);
  margin-block: 20px 30px;
}

.countdown-list {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-block: 25px 40px;
}

.countdown-time {
  font-size: var(--fs-5);
  margin-block-end: 8px;
}

.offer .btn {
  padding-block: 12px;
  margin-inline: auto;
}





/*-----------------------------------*\
  #POPULAR
\*-----------------------------------*/

.popular .section-text { margin-block: 10px 40px; }

.filter-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-block-end: 40px;
}

.filter-btn {
  font-family: var(--ff-jost);
  font-size: var(--fs-5);
  padding: 5px 20px;
  transition: var(--transition-1);
}

.filter-btn.active { color: var(--maximum-blue-green); }





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { padding-block-start: 0; }

.blog .section-text { margin-block: 15px 50px; }

.blog-card {
  text-align: center;
  border: 1px solid black;
  padding: 10px;
}

.blog-card .card-content { padding: 0 15px 10px; }

.blog-card .h3 {
  font-size: var(--fs-4);
  font-weight: var(--fw-400);
  margin-block: 25px 20px;
}

.blog-card .card-title { transition: var(--transition-1); }

.blog-card .card-title:is(:hover, :focus) { color: var(--maximum-blue-green); }

.blog-card .card-meta-list {
  display: flex;
  justify-content: center;
  padding-block: 15px 20px;
  border-block-start: 1px solid var(--white-1);
}

.blog-card .meta-item {
  display: flex;
  align-items: center;
  color: var(--spanish-gray);
}

.blog-card .meta-link {
  font-size: var(--fs-7);
  transition: var(--transition-1);
}

.blog-card a.meta-link:is(:hover, :focus) { color: var(--maximum-blue-green); }

.blog-card .meta-item:not(:last-child)::after {
  content: "/";
  display: block;
  margin-inline: 8px;
}

.blog-card .card-text {
  font-size: var(--fs-6);
  margin-block-end: 15px;
}

.blog-card .btn {
  margin-inline: auto;
  padding-block: 12px;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer-top { border-block-end: 1px solid var(--granite-gray); }

.footer-top .container { gap: 40px; }

.footer-text { margin-block: 15px 30px; }

.social-list {
  display: flex;
  gap: 20px;
}

.social-link {
  font-size: 25px;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) { color: var(--maximum-blue-green); }

.footer-list-title {
  font-size: var(--fs-5);
  font-family: var(--ff-jost);
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-link {
  margin-block-start: 10px;
  transition: var(--transition-1);
}

.footer-link:is(:hover, :focus) { color: var(--maximum-blue-green); }

.footer-bottom {
  padding-block: 20px;
  text-align: center;
}

.copyright {
  font-size: var(--fs-6);
  margin-block-end: 20px;
}

.footer-bottom .w-100 {
  max-width: max-content;
  margin-inline: auto;
}
.show-book .h2{
  padding-top: 150px;
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: var(--maximum-blue-green);
  font-size: 20px;
  padding: 10px;
  border-radius: var(--radius-circle);
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.back-top-btn.active {
  transform: translateY(10px);
  opacity: 1;
  visibility: visible;
}


/*-----------------------*\

           FROM
\*------------------------*/

.form-container{
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  padding-left: auto;
  padding-right: auto;

  border-radius: 10px;
  margin-top:100px;
  width: 900px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);

}
.form-container .text1{
 

  margin: 10px 0px 10px;
  background-color: white;
 
  
}

.form-container .box1{
  
  padding: 0px 20px 0px 40px;
 
  border-radius: 5px;
  font-size: 14px;

  

}
.form-container .box1 input{
 border: 1px solid grey;
 padding-top: 5px;
 padding-bottom: 5px;
 

 border: none;                /* Remove the default border */
 border-bottom: 1px solid grey; /* Add a bottom border */
 background: transparent;     /* Make the background transparent */
 outline: none;               /* Remove the focus outline */
 font-size: 16px;             /* Adjust font size if needed */
 padding: 5px 0;              /* Adjust padding for a line-like look */
 width: 98%;  
 font-size: 13px;
 

}
.form-container .box2 input{
  border: 1px solid grey;
  border: none;                /* Remove the default border */
  border-bottom: 1px solid grey; /* Add a bottom border */
  background: transparent;     /* Make the background transparent */
  outline: none;               /* Remove the focus outline */
  font-size: 16px;             /* Adjust font size if needed */
  padding: 5px 0;              /* Adjust padding for a line-like look */
  width: 100%;  
  font-size: 13px;
 
 }
.form-container .box2 .box-tabel label::after{
  content: "*";
  color: red;
  
}

.form-container .box4  label::after{
  content: "*";
  color: red;
  
}

.form-container .box1  label1::after{
  content: "*";
  color: red;
  
}

.form-container .box2 .box2-label{

  padding-left:40px;
}


.form-container .box2{

  padding: 0px 0px 0px 0px;

  border-radius: 5px;
  font-size: 14px;
  



}

.form-container .box4{

  padding: 0px 30px 0px 30px;

  border-radius: 5px;
  font-size: 14px;
  

}

.form-container .box2 td{
     padding: 10px 0px 20px 35px;
}

.form-container .box2 .text2{
background-color: white;
margin: 10px 0px 0px 0px;
padding: 5px 5px 5px 10px;
}
.form-container  .from-button{
background-color: #04AA6D;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}








/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen




 */



 @media (max-width: 550px){


  .hero{
   
    height:300px;
    padding-right:0px;
  }
    .hero-content .hero-f{
     padding-right:40px;
   }
   .hero-content .hero-s{
     padding-left:40px;
   }
   .hero-content{
     padding-left:5px;
     text-align:center;
   }

   .hero-content .h1{
     margin-right:10px;
   }
   .main-paper-banner{
    justify-content: center;
    font-size: 8px;

    padding-left: 0px; 
    padding-top:0px;
  }
  .main-paper-banner .hero-f{
   
    font-size: 10px;
 
  

  }
  .main-paper-banner .main-textx{
    padding-left:0;
  }
  .main-paper-banner .main-textx h1{
    font-size:10px;
    margin-right:2px;
  }
 
  .main-paper-banner .hero-s{
    font-size: 10px;
  }

 .divider-n  {
  
  padding-top: 70px;
  padding-bottom: 50px;
  
 
 }
 .show-book .h2{
  padding-top: 350px;
}


.divider-n ul{
  margin-right: 30px;
  
 

}
 
.thr-t{
  padding-top: 100px;
  
}
.publish-p .h2{
  padding-top: 200px;
}

.hero-f{
 
  
}


 .divider-n li{
   font-size:8px;
   height:70px;
 
   
 }

 .container .section-title{
   padding-top:200px;
   padding-right:50px;
 }

  .poster{
    display:none;
  }

  .container .grid-list{
    width:95%;
 
      text-align: center;
    padding-left:20px;
    
  }

  .footer .footer-top .container .footer-list{
    display:none;
  }
  .hero-content{
    padding-top: 100px;
  }



  /* HOME BOOK */

  .product-card img{
    height: 400px;
    

  }


  /*------------------------*\

      Publish With Us
  \*------------------------*/

  .section .publish-list-contain{
    display:none;
  }

  .publish-content{
    padding-top:10px;
    width: 100%;
    font-size: 14px;
  }

  .publish-three-button{
    padding-left: 0px;
    
    
   
    font-size: 7px;
  }
   .publish-book-list{
     padding-top:100px;
     font-size: 14px;
   }

  .publish-book-list .publish-book-name .fa-ul{
    padding-left:0px
  }

  .pdf{
    display: none;
  }
 
  .new-s{
    display:none;
  }

  .book-list .fa-ul{
    font-size: 10px;
    }
    .hhero-content  .available{
      padding-left: 20px;
     
    }

  .hhero-content  .available  ul{
      display: flex;
    }
    .hhero-content  .available  img{
      width: 25%;
    }
    .hhero-content  .available  p{
      font-size: 10px;
    }

    .topnav .logo{
      display: none;
    }

    .topnav .active{
      padding-left: 0px;
    }


    /*------------------*\
          FORM
    \*------------------*/

    .form-container{
      width:320px;
      font-size:12px;
      margin:auto;
      margin-top:150px;
    }

    .box2 td{
      display: table-row;
      
    }
    .form-container .box2{

      margin-left: 30px;
    }
     .form-container .box2 .text2{
       width:150%;
       margin: 10px 10px 10px 0px;
      padding: 5px 0px 5px 5px;
       
    }

    /* Contact */


    .container .hero-content .policy-contenth{
      
      padding-left: 0px;
      width: 300px;
    }
    .container .hero-content .policy-contenth h1{
      font-size: 20px;
      padding-top: 10px;
    }
    .container .hero-content .policy-contenth li{
      padding-left: 0px;
      font-size: 12px;
      margin: 10px;
    }
    .container .hero-content .image-contact {
      display:none;
    }


    /*----------------*\
            BLOG
    \*----------------*/

    .blog-main-pages h1{
      margin-top: 50px;
    }
    .blog-main-pages img{
      width: 90%;
    }

    /*--------------------*\
        Become a Editor
   \*-------------------*/

   .container .hero-list button{
  
    margin-left: 0px;
  }



}

@media (min-width: 575px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

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

  .scrollbar-item { min-width: calc(50% - 5px); }



  /**
   * HERO
   */

 
   

  .hero .play-btn {
    display: block;
    color: var(--maximum-blue-green);
    border: 1px solid var(--maximum-blue-green);
    font-size: 22px;
    padding: 20px;
    border-radius: var(--radius-circle);
    animation: pulse 2.5s ease infinite;
  }

  @keyframes pulse {
    0%,
    30% { box-shadow: 0 0 0 0 var(--maximum-blue-green); }
    100% { box-shadow: 0 0 0 20px transparent; }
  }

  .hero .btn-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
  }

  .hero { padding-block-start: 150px; }

}





/**
 * responsive for large than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 3.5rem;
    --fs-2: 3rem;
    --fs-3: 2.4rem;

    /**
     * spacing
     */

    --section-padding: 80px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }

  .section-text {
    --fs-6: 1.6rem;
    max-width: 40ch;
    margin-inline: auto;
  }

  .has-scrollbar { gap: 30px; }
  
  .scrollbar-item { min-width: calc(50% - 15px); }

  .product-card .card-action {
    gap: 20px;
    padding: 14px 20px;
  }

  .product-card .action-btn { font-size: 22px; }

  .product-card .card-content { padding: 0 20px 20px; }

  .product-card .h3 { --fs-6: 1.8rem; }

  .product-card .card-price {
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
  }



  /**
   * HERO
   */

  .hero .container {
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
  }



  /**
   * FEATURED COLLECTION
   */

  .featured .grid-list { gap: 10px; }



  /**
   * OFFER
   */

  .offer .container { max-width: 420px; }

  .offer .section-title { --fs-2: 4rem; }

  .countdown-list { gap: 40px; }

  .countdown-time { --fs-5: 2.4rem; }



  /**
   * FOOTER
   */

  .footer-bottom { text-align: left; }

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

  .copyright { margin-block-end: 0; }

  .footer-bottom .w-100 { margin-inline: 0; }

}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 4rem;

    /**
     * spacing
     */

    --section-padding: 100px;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 960px; }

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

  .btn { --fs-7: 1.6rem; }

  .scrollbar-item {
    min-width: calc(33.33% - 20px);
    width: calc(33.33% - 20px);
  }



  /**
   * HEADER
   */

  .nav-close-btn,
  .navbar-top,
  .overlay,
  .nav-open-btn { display: none; }

  .header-top :is(.input-wrapper, .header-action-btn:last-child) { display: block; }

  .input-wrapper {
    position: relative;
    max-width: 480px;
    width: 100%;
  }

  .header-top {
    padding-block: 10px;
    border-block-end: 1px solid var(--white_10);
  }

  .input-field {
    font-size: var(--fs-6);
    height: 50px;
    border: 1px solid var(--white_10);
    padding-inline: 15px;
  }

  .input-wrapper .btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 4px;
    padding-inline: 45px;
    background-color: var(--maximum-blue-green);
    border-color: var(--maximum-blue-green);
  }

  .input-wrapper .btn:is(:hover, :focus) {
    color: var(--maximum-blue-green);
    background-color: transparent;
  }

  .header-action { gap: 25px; }

  .header-bottom,
  .header-bottom.active,
  .navbar-list {
    all: unset;
    display: block;
  }

  .header-bottom { padding-block: 20px; }

  .header-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar-list {
    display: flex;
    gap: 30px;
  }

  .header-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-1);
  }

  .header-contact-link .span { font-size: var(--fs-4); }

  .header-contact-link ion-icon { font-size: 30px; }

  .header-contact-link:is(:hover, :focus) { color: var(--maximum-blue-green); }

  .navbar-link { font-size: var(--fs-5); }

  .header.active {
    position: absolute;
    transform: none;
    animation: none;
  }

  .header.active .header-bottom {
    background-color: var(--xiketic);
    position: fixed;
    width: 100%;
    top: 0;
    transform: translateY(-100%);
    animation: slideInTop 0.5s ease forwards;
  }



  /**
   * HERO
   */

  .hero { padding-block-start: 250px; }

  .hero-banner { max-width: unset; }



  /**
   * FEATURE
   */

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

  .feature-card .card-title { --fs-6: 1.8rem; }



  /**
   * OFFER
   */

  .offer .container { max-width: 550px; }

  .offer .section-title { --fs-2: 4.6rem; }

  .offer .section-text { max-width: unset; }

  .countdown-list { gap: 50px; }

  .countdown-label { font-size: var(--fs-4); }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.4fr 0.5fr 0.5fr; }

  .footer-brand { padding-inline-end: 40px; }

}





/**
 * responsive for large than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 7rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }

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



  /**
   * HEADER
   */

  .input-wrapper { max-width: 750px; }

  .navbar-list { gap: 50px; }



  /**
   * HERO
   */

  .hero-text { font-size: var(--fs-5); }



  /**
   * FEATURE
   */

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

  .feature-card { height: 100%; }



  /**
   * OFFER
   */

  .offer .container { max-width: 700px; }



  /**
   * POPULAR
   */

  .popular .scrollbar-item {
    min-width: calc(25% - 22.5px);
    width: calc(25% - 22.5px);
  }

  .popular .has-scrollbar { padding-block-end: 50px; }



  /**
   * BACK TO TOP
   */

  .back-top-btn {
    bottom: 70px;
    right: 30px;
    font-size: 25px;
    padding: 15px;
  }

}



/*-----------------------------*\

         PUBLISH WITH US

\*------------------------------*/


.publish {
  padding-block-start: 90px;
  background-position: center;
  margin-top: 100px;
  height: 200px;
}

.publish .container {
  display: grid;
  gap: 20px;
}

.publish-content { text-align:center;}

.publish-text { margin-block: 20px; }


.publish-three-button{
  padding-left: 0px;
  width: 80%;
  
}
.publish-three-button button{
  background-color: #CCD5AE;
  padding:  10px;

  color: rgb(0, 0, 0);
  border-radius: 5px;
}



.publish-list-contain {
  width: 1500px;
  margin: auto;
}
.publish-list-contain-first{
  width: 600px;
  float: left;
  height: 230px;
  text-align: center;
}
.publish-list-contain-first .list li {
 
  float: right;
  justify-content: center;
  padding: 20px  30px;
  margin-right: 60px;


}
.publish-list-contain-second span{
  color: rgb(23, 32, 168);
}
.publish-list-contain-first .list li a{
  color: rgb(23, 32, 168);
}
.publish-list-contain-second {
  width: 800px;
  float: left;
  height: 230px;

  color: black;
}



.publish-book-list .fa-ul{
padding-left: 230px;
}
.publish-book-list .publish-book-name{
  padding-top: 20px;
  padding-bottom: 30px;
}

.publish-book-list .publish-book-name li:hover{
  color: rgb(84, 84, 230);
}


/*------------------------*\
        CHAPTER ADD
\*------------------------*/



.chapter {
  padding-block-start: 90px;
  background-position: center;
  margin-top: 100px;
}

.chapter .container {
  display: grid;
  gap: 20px;
}

.chapter-content { text-align:center;}

.chapter-text { margin-block: 20px; }


/*------------------------------*\
     List contain
\*------------------------------*/


.chapter-list-contain{
  width: 1360px;
  margin: auto;
}

.chapter-list-contain-first{
  width: 680px;
  float: left;
  height: 800px;
  justify-content: center;
  
}
.chapter-list-contain-first .chapter-book1-image{
  display: block;
margin-left: auto;
margin-right: auto;
width: 40%;
}

.chapter-list-contain-second .chapter-book1-image2{
  display: block;
margin-left: auto;
margin-right: auto;
width: 30%;
}

.chapter-list-contain-second{
  width: 680px;
  float: left;
  height: 800px;
  
  color: white;
}

.clear{
  clear: both;
}

.chapter-image-button{
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 5px 10px 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 40px 20px 10px 300px;
  
 
  

}
.chapter-image-button2{
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 5px 10px 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 40px 20px 10px 250px;
 
 
  

}
.chapter-list-contain-first .chapter-list1{
  margin: 0px 0px 0px 70px;
}

.chapter-list-contain-first .chapter-list1 button{
  border-style: solid;
  border-width: thin;
  border-color: rgb(0, 0, 0);
  font-size: 2.5em;
  color: rgb(0, 0, 0);
 
  padding: 5px 10px 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 10px 1px 0px;
  
}

.chapter-list-contain-second p{
  text-align: center;
  margin-top: 10px;
  color: black;
}

.chapter-list-contain-second .chapter-image2-button{
  background-color: #04AA6D;
  border: none;
  color: white;
  padding: 5px 10px 5px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 20px 10px 265px;
  cursor: pointer;
}


/*-----------------*\

    ABOUT
\*-----------------*/


.hero {
  margin-top: 100px;
  padding-block-start: 90px;
  background-position: center;
}

.hero .container {


  display: grid;
  gap: 20px;
}
.hero-content{
  margin-top: 100px;
}
.hero-content h1{
  
  margin-bottom: 20px;
}

.container .hero-list ol{
  padding-left: 50px;
  padding-top: 20px;
}

.hero-content { text-align:center;}
.hero-content p{
  text-align: justify;
  text-justify: inter-word;
}

.hero-content ul{
  text-align: justify;
  text-justify: inter-word;
}
.hero-text { margin-block: 0px;  text-align: justify;
  text-justify: inter-word;}

.three-button{
  padding-left: 140px;
}
.three-button button{
  background-color: #CCD5AE;
  padding:  10px;
  color: rgb(0, 0, 0);
  border-radius: 5px;
}
.container .hero-content .policy-content{
  text-align: left;
}
.container .hero-content .policy-content h1{
  font-size: 20px;
  padding-top: 10px;
}
.container .hero-content .policy-content li{
  padding-left: 100px;
  margin: 10px;
}

.container .hero-content h6{
  padding-top: 30px;
  padding-bottom: 10px;
}

.container .hero-list button{
  background-color: #CCD5AE;
  
  margin-top: 20px;
  padding:  10px 50px 10px 50px;
  color: rgb(0, 0, 0);
  border-radius: 5px;
  margin:auto;
}



/*------------------*\

     Contact
\*-------------------*/




.container .hero-content .policy-contenth{
  text-align: left;
  width:500px;
  
}
.container .hero-content .policy-contenth h1{
  font-size: 20px;
  padding-top: 10px;
}
.container .hero-content .policy-contenth li{
  padding-left: 0px;
  margin: 10px;
}




/*---------------------------*\
        BLOG PAPES
\*---------------------------*/



.blog-main-pages h1{
  padding-top: 100px;
  padding-bottom: 20px;
  font-size: 27px;

}

.blog-main-pages img{
  margin: auto;
  margin-bottom: 40px;
}

.blog-main-pages p{
  font-size: 20px;
  text-align: justify;
  margin-bottom: 0px;
  padding-bottom: 0px;;
}