/*
Theme Name: Hema Thakur WordPress Theme
Theme URI: https://www.wordpress.org/
Author: Hema Thakur 
Author URI: https://www.skalabell.com/
Description: Hema Thakur WordPress Theme
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: hemathakur-wp
*/
body {
    background: #fff;
    font-family: "Maitree", serif;
    overflow-x: hidden;
}

img {
    min-width: 100%;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

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

h1 {
    font-weight: 700;
    font-size: 50px;
    padding-bottom: 0px;
    line-height: normal;
}

h2 {
    font-weight: 700;
    font-size: 36px;
    padding-bottom: 20px;
    line-height: normal;
}

h3 {
    font-weight: 700;
    font-size: 30px;
    padding-bottom: 20px;
    line-height: normal;
}

h4 {
    font-weight: 700;
    font-size: 26px;
    padding-bottom: 20px;
    line-height: normal;
}

h5 {
    font-weight: 600;
    font-size: 20px;
    padding-bottom: 10px;
    line-height: normal;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px;
    line-height: normal;
}

p {
    line-height: 35px;
    font-size: 18px;
    margin: 0px;
    padding-bottom: 15px;
}

nav{
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
/*  background: #3E8DA8;*/
/*  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
  z-index: 99;
  padding: 10px 0 0 0;
}
nav .navbar{
  height: 100%;
  max-width: 1250px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0 50px;
}
.navbar .logo a{
  font-size: 30px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
nav .navbar .nav-links{
  line-height: 70px;
  height: 100%;
}
nav .navbar .links{
  display: flex;
}
nav .navbar .links li{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a{
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(180deg);
  }

nav .navbar .links li .arrow{
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu{
  position: absolute;
  top: 70px;
  left: 0;
  line-height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu{
  display: block;
}
.navbar .links li .sub-menu li{
  padding: 0 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a{
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow{
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu{
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu{
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu{
  display: block;
}
.navbar .search-box{
  position: relative;
   height: 40px;
  width: 40px;
}
.navbar .search-box i{
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box{
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3E8DA8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box{
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3E8DA8;
}
.search-box .input-box::before{
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3E8DA8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input{
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo{
  display: none;
}
.navbar .bx-menu{
  display: none;
}
@media (max-width:920px) {
  nav .navbar{
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a{
    font-size: 27px;
  }
  nav .navbar .links li{
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a{
    font-size: 15px;
  }
}
@media (max-width:800px){
  nav{
    /* position: relative; */
  }
  .navbar .bx-menu{
    display: block;
  }
  nav .navbar .nav-links{
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background:  #3E8DA8;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name{
    font-size: 25px;
    color: #fff;
  }
    .sidebar-logo  i,
    .navbar .bx-menu{
      font-size: 25px;
      color: #fff;
    }
  nav .navbar .links{
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow{
    line-height: 40px;
  }
nav .navbar .links li{
    display: block;
  }
nav .navbar .links li .sub-menu{
  position: relative;
  top: 0;
  box-shadow: none;
  display: none;
}
nav .navbar .links li .sub-menu li{
  border-bottom: none;

}
.navbar .links li .sub-menu .more-sub-menu{
  display: none;
  position: relative;
  left: 0;
}
.navbar .links li .sub-menu .more-sub-menu li{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow{
  transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu{
    display: none;
  }
  .navbar .links li .sub-menu .more span{
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu{
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu{
    display: none;
  }
.navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu{
      display: block;
    }
    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow{
        transform: rotate(180deg);
}
    .navbar .nav-links.show2 .links .more-arrow{
      transform: rotate(90deg);
    }
}
@media (max-width:370px){
  nav .navbar .nav-links{
  max-width: 100%;
} 
}


.logo img{
    width: 70%;
    min-width: 70%;
}
.logo{
    text-align: center;
}

/*--------Home About Us Section------*/
.homeherobanner{
    position: relative;
    padding: 30px 0 0 0;
}

.homeherobanner img{
    width: 100%;
}
.homeherotext h1{
    color: #fff;
    font-size: 90px;
    line-height: 90px;
    text-align: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.homeherotext h2{
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 45px;
    font-weight: 600;
}

.homeherotext p{
        color: #fff;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: center;
    font-weight: 300;
}

.homeherotext{
  position: absolute;
  top: 35%;
}
.carousel-indicators{
    bottom: -45px;
}

.carousel-indicators button{
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

/*.homeherotext{
    width: 49%;
}*/
/*.homeheroslider .owl-dots{
    text-align: center;
    margin: 0px 0 0 0;
}*/

#carouselExampleDark button{
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
}
/*.homeheroslider .owl-dots button span{
    background: #ffffff6b;
    width:10px;
    height:10px;
    margin:5px 7px;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;
}
.homeheroslider .owl-dots button.active span,
.homeheroslider .owl-dots button:hover span {
    width:10px;
    height:10px;
    margin:5px 7px;
    background: #fff ;
    display:block;
    -webkit-backface-visibility:visible;
    -webkit-transition:opacity 200ms ease;
    -moz-transition:opacity 200ms ease;
    -ms-transition:opacity 200ms ease;
    -o-transition:opacity 200ms ease;
    transition:opacity 200ms ease;
    -webkit-border-radius:30px;
    -moz-border-radius:30px;
    border-radius:30px;
}*/


.aboutuscontainer{
    margin: 50px 0 0 0;
}

.homeaboutusimg img{
    width: 100%;
    min-width: 100%;
}

.aboutuscontenttag h2{
    color: #c40000;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    padding: 0 150px;
    margin-bottom: 30px;
    font-weight: 600;
}

.aboutuscontenttag p{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: center;
    font-weight: 300;
}

.aboutuscontenttag p span{
    font-weight: 500;
}

.aboutusbtn{
    text-align: center;
    margin: 50px 0 0 0;
}

.floating {  
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 15px); }
    to   { transform: translate(0, -0px); }    
}


.aboutusbtn a{
    background: #c40000;
    color: #fff;
    padding: 7px 30px;
    font-size: 18px;
    transition: 0.5s;
    border-radius: 25px;
    border: 1px solid #c40000;
}

.aboutusbtn a:hover {
    color: #c40000;
    background: #fff;
    transition: 0.5s;
    transition-delay: 0.3s;
    border: 1px solid #c40000;
}

.aboutuscontenttag{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--------Home Top Episodes container-----*/
.topepisodecobntainer{
    margin: 50px 0 0 0;
}

.topepisodecobntainer h2{
    color: #000;
    font-size: 40px;
    line-height: 45px;
    text-align: left;
    font-weight: 600;
}

.topepisodevideo h3{
    text-align: left;
    color: #363636;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 10px 0 0 0;
    padding-bottom: 10px;
}

.topepisodevideo p{
    text-align: left;
    color: #000;
    font-size: 14px;
    line-height: 15px;
    font-weight: 400;
    text-transform: capitalize;
}

/*------Search Library Section------ */
.searchform{
    text-align: center;
    margin: 0 auto;
    width: 60%;
}
.input-box {
  position: relative;
  height: 40px;
  width: 100%;
  background: #000;
  margin: 0 20px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.input-box i,
.input-box .button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.searchform .input-box{
    display: block;
    margin: auto;
}

.input-box input {
  height: 100%;
  width: 100%;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  border: none;
  padding: 5px 10px;
  background-color: transparent;
  color: #fff;
}
.input-box .button {
  right: 0px;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  background-color: #000;
  cursor: pointer;
}
.input-box .button:active {
  transform: translateY(-50%) scale(0.98);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .input-box {
    height: 40px;
    margin: 0 8px;
  }
  .input-box i {
    left: 12px;
    font-size: 25px;
  }
  .input-box input {
    padding: 5px 10px 0 10px;
  }
  .input-box .button {
    right: 12px;
    font-size: 14px;
    padding: 8px 18px;
  }
}
.librarycontainer{
    margin: 50px 0 0 0;
}

.librarycontainer h2{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
}

.entiresearchtext p{
    text-align: center;
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 20px;
    padding: 0 300px;
}

.searchlibrarybox ul li{
    display: inline-block;
    width: 19%;
    background: #c40000;
    text-align: center;
    margin-bottom: 20px;
    margin-left:2px;
    margin-right: 2px;
    padding: 15px;
    border-radius: 20px;
}

.searchlibrarybox ul li:hover{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.5s ease-in;
}

.searchlibrarybox ul li img{
    width: auto;
    min-width: auto;
}

.searchlibrarybox ul li h3{
    text-align: center;
    color: #fff;
    font-size: 18px;
    line-height: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 10px 0 0 0;
}

.searchlibrarybox{
    text-align: center;
    margin: 50px 0 0 0;
}

.podcastimg img{
    width: 100%;
}

.podcastcontainer{
    margin: 50px 0 0 0;
}

.podcasttext p{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
}

.podcasttext{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.podcasttext p span{
    font-weight: 500;
}

/*----Publish Works CSS-----*/
.publishesworkscontainer{
    margin: 50px 0 0 0;
    text-align: center;
}

.publishesworkscontainer h2{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 50px;
}

.publishesworkscontainer h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}

.publishedbooks img{
    width: 100%;
    transition-duration: 1s;
    margin: 0 auto;
    display: block;
}

.publishedbooks img:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    z-index: 0;
}

.publishedbooktitle h3{
    text-align: center;
    color: #000;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

.publishedbooks:hover .publishedbooktitle h3{
    color: #c40000;
    transition: all 0.6s ease-in;
}
.mediaplatform{
    margin: 50px 0 0 0;
}

.mediaplatformtag h2{
    text-align: left;
    color: #000;
    font-size: 50px;
    line-height: 50px;
    font-weight: 600;
}

.footercontainer{
    margin: 50px 0 0 0;
    background: #c40000;
    padding: 30px 0 0 0;
}

.footerlogo img{
    width: 50%;
    min-width: 50%;
}
.topicsmenu ul li{
    text-align: center;
    padding-bottom: 10px;
}
.topicsmenu ul li a{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
}

.topicsmenu ul li a:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    z-index: 0;
    font-weight: 600;
    font-size: 20px;
}

.footermenu ul li{
    text-align: right;
    padding-bottom: 10px;
}

.footermenu ul li a{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
}

.footermenu ul li a:hover{
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    z-index: 0;
    font-weight: 600;
    font-size: 20px;
}

.fooetrsocial ul li{
    display: inline-block;
    padding-left: 10px;
}

.fooetrsocial ul{
    text-align: right;
}

.fooetrsocial ul li a{
    color: #fff;
}

/*.fooetrsocial ul li a {
    color: #fff;
    border-radius: 50%;
    padding: 5px;
    width: 30px;
}
*/
.fooetrsocial ul li i{
         border: 1px solid #fff;
    width: 35px;
    height: 35px;
    padding: 8px;
    border-radius: 50%;
}
.fooetrsocial ul li i:hover{
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s ease-in;
}

.fooetrcall a{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
}

.fooetrcall a i{
    color: #c40000;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #fff;
    padding: 5px;
    width: 30px;
    margin-right: 10px;
}

.fooetremail a{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
}

.fooetremail a i{
    color: #c40000;
    border-radius: 50%;
    border: 1px solid #fff;
    background: #fff;
    padding: 5px;
    width: 30px;
    margin-right: 10px;
}

.fooetrcall{
    padding-top: 30px;
}

.fooetremail{
    padding-top: 30px;
}

.fooetrsocial{
    padding-top: 30px;
}

.copyrightstext{
    text-align: center;
    margin: 50px 0 0 0;
}

.copyrightstext p{
    color: #fff;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    font-weight: 400;
}

.innerpodcastcontainer h1{
        color: #c40000;
    font-size: 45px;
    line-height: 50px;
    text-align: center;
    padding: 0 250px;
    margin-bottom: 30px;
    font-weight: 600;
}

.innerpodcastcontainer{
    margin: 50px 0 0 0;
}

.innerpodcastbox h3{
    color: #555555;
    font-size: 20px;
    line-height: 25px;
    text-align: left;
    margin-bottom: 0px;
    padding-bottom: 0px;
    font-weight: 400;
}
.podcasthero{
    margin: 20px 0 0 0;
}

.podcasthero img{
    width: 100%;
    padding:30px;
}

.podsubscribecontainer{
    margin:50px 0 0 0;
}

.podsubscribecontainer h2{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
}

.susbspotifylogo{
    text-align: right;
}

.susbspotifylogo img{
    width: 50%;
    min-width: 50%;
}

.susbyoutubelogo{
    text-align: left;
}

.susbyoutubelogo img{
    width: 50%;
    min-width: 50%;
}

.subscribefield .input-container {
  display: flex; /* Enables Flexbox for the container */
  gap: 10px; /* Adds space between the input fields */
}

.subscribefield .input-container .subscribesmfield {
  flex: 1; /* Makes each input field take up equal available space */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.subscribefromsec h2{
    text-align: center;
    color: #fff;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
}

.subscribecontainer{
    margin: 50px 0 0 0;
}

.subscribefromsec p{
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 20px;
    color: #fff;
}

.subscribefromsec{
    margin: 0 200px;
}

.subscribefromsec{
    background: #c40000;
    padding: 30px 50px;
    border-radius: 25px;
}

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

.subscribebuttonpds{
    background: #fff;
    color: #000;
    padding: 10px 30px;
    border: none;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 20px;
}

.subscribebtn{
    text-align: center;
}

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

/*-----Topic Page CSS-----*/

.topiccontainer{
    margin: 50px 0;
}

.topicsectag h1{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
}

.topicsectag p{
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #000;
    padding: 0 250px;
    padding-bottom: 30px;
}

.topicimg img{
    width: 100%;
}

.topicmetades h6{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.topicmetades h2{
    color: #c40000;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0 120px;
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.topicimg{
    padding-bottom: 100px;
}
.topicmetades{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topicmetades{
    padding-bottom: 100px;
}

.topicmetades p{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: center;
    font-weight: 300;
}

.topicbtn a{
    background: #282828;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    transition: all 0.5s;
    border-radius: 25px;
    border: 1px solid #282828;
}

.topicbtn a:hover{
    background: #c40000;
    color: #fff;
    padding: 10px 30px;
    font-size: 18px;
    transition: all 0.5s;
    transition-delay: 0.3s;
    border-radius: 25px;
    border: 1px solid #c40000;
}

.topicbtn{
    text-align: center;
    margin: 30px 0 0 0;
}

.topicsubscontainer{
    margin: 50px 0 0 0;
}

.topcsubfform h2{
    text-align: center;
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
    padding-bottom: 0px;
}
 .topcsubfform p{
    text-align: center;
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    border-radius: 20px;
    color: #fff;
    padding: 0 50px;
 }
 .topcsubfform{
    background: #c40000;
    padding: 30px 50px;
    border-radius: 25px;
}

.topsubsc h2{
    text-align: center;
    font-size: 30px;
    line-height: 30px;
    font-weight: 600;
}
.topsubsc{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}


.shoppagepublishbook{
    margin: 50px 0 0 0;
    text-align: center;
}

.shoppagepublishbook h2{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
        display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 50px;
}

.shoppagepublishbook h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}
.publishedbooktitle{
    min-height: 65px;
}

.shoppagemetades h1{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
        display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 30px;
}
.shoppagemetades h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}

.shoppagemetades p{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
}

.shoppublishbtn ul li{
    display: inline-block;
    padding: 0 15px;
}
.shoppublishbtn ul{
    text-align: center;
}

.shoppublishbtn ul li a{
    background: #c40000;
    color: #fff;
    padding: 5px 20px;
    font-size: 15px;
    transition: 0.5s;
    border-radius: 5px;
    border: 1px solid #c40000;
}

.shoppublishbtn ul li a:hover{
    color: #fff;
    background: #404040;
    transition: 0.5s;
    transition-delay: 0.3s;
    border: 1px solid #404040;
}

.bookwiseimgleft img{
    width: 100%;
    min-width: 100%;
}

.bookpagecontainer{
    margin: 50px 0 0 0;
}

.bookingtextright h2{
    color: #000;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    font-weight: 600;
}

.bookingtextright p{
    text-align: center;
    color: #000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    text-transform: capitalize;
}

.bookingtextright img{
    width: 100%;
}
.bookingtextright h3{
    color: #000;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px 0 0 0;
}

.amazonbtn img{
    background: #c40000;
    padding: 10px 15px;
    width: 30%;
    min-width: 30%;
    border-radius: 5px;
}

.amazonbtn{
    text-align: center;
}

.bookpagecontainer hr{
    margin: 50px 0 50px 0;
}
.contacthero{
    margin: 20px 0 0 0;
}
.contacthero img {
    width: 100%;
    padding: 30px;
}

.contactconatiner{
    margin: 50px 0 0 0;
    text-align: center;
}

.contactconatiner h2{
    text-align: center;
    color: #000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 30px;
}

.contactconatiner h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
}

.contactde p{
    text-align: center;
    color: #000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
    padding: 0 50px;
}

.phoneicon{
    text-align: center;
}

.phoneicon i{
    background: #c40000;
    color: #fff;
    padding: 11px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
}

.contactdetails{
    margin: 50px 0 0 0;
}
.phonnumber p a{
    text-align: center;
    color: #000;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
}

.phonnumber{
    text-align: center;
    margin: 20px 0 0 0;
}

.envelopeicon{
    text-align: center;
}

.envelopeicon i{
    background: #c40000;
    color: #fff;
    padding: 11px;
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 50%;
}

.emailid p a{
    text-align: center;
    color: #000;
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
}

.emailid{
    text-align: center;
    margin: 20px 0 0 0;
}

.sociallink{
    text-align: center;
    margin: 20px 0 0 0;
}

.sociallink ul li{
    display: inline-block;
    padding: 0 10px;
}

.sociallink ul li i{
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 16px;
    padding: 10px;
    color: #000;
    width: 40px;
    height: 40px;
}
.sociallink ul li i:hover{
    background: #c40000;
    color: #fff;
    transition: all 0.5s ease-in;
    border: 1px solid #fff;
}
.aboutherotag{
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}
.aboutherotag h1{
    text-align: center;
    color: #c40000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 30px;
}

.aboutherotag h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #c40000;
    border-radius: 2px;
}

.aboutherotag p{
        color: #363636;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: center;
    font-weight: 300;
}

.aboutherotag p span{
    font-weight: 500;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
    gap: 12px;
  }

  .item {
    background: #c40000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    border-radius: 8px;
    font-size: 16px;
    transition: transform 0.3s ease;
  }

  .item:hover {
    transform: scale(1.05);
  }

  /* Specific layout positions (similar to uploaded image) */
  .item1 { grid-column: span 2; grid-row: span 2; }  /* The Times of India */
  .item2 { grid-column: span 1; grid-row: span 1; }  /* India TV */
  .item3 { grid-column: span 1; grid-row: span 1; }  /* Firstpost */
  .item4 { grid-column: span 1; grid-row: span 2; }  /* DNA */
  .item5 { grid-column: span 1; grid-row: span 1; }  /* The Telegraph */
  .item6 { grid-column: span 1; grid-row: span 1; }  /* Republic */
  .item7 { grid-column: span 1; grid-row: span 1; }  /* Fox Story */
  .item8 { grid-column: span 1; grid-row: span 1; }  /* India.com */
  .item9 { grid-column: span 1; grid-row: span 1; }  /* IANS */
  .item10 { grid-column: span 1; grid-row: span 1; } /* ANI */

  /* Responsive layout for smaller screens */
  @media (max-width: 900px) {
    .grid {
      grid-template-columns: repeat(2, 1fr);
      grid-auto-rows: 120px;
    }
  }

  @media (max-width: 600px) {
    .grid {
      grid-template-columns: 1fr;
      grid-auto-rows: 100px;
    }
  }

  .featuredmediaimg .item  img{
    width: 50%;
    min-width: 50%;
  }

  .aboutheroimg img{
    width: 100%;
  }

  .avboutpublishcontainer{
    margin: 50px 0 0 0;
    text-align: center;
  }

  .avboutpublishcontainer h2{
    text-align: center;
    color: #c40000;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 30px;
  }

  .avboutpublishcontainer h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #c40000;
    border-radius: 2px;
  }

 .aboutpublicmetzg p{
        color: #363636;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 10px;
 }

 .shoppagemetades{
    margin: 50px 0 0 0;
    text-align: center;
 }

.risebookherocontainer{
    margin: 50px 0 0 0;
}
 .risebookheroimg img{
    width: 100%;
 }
 .risebookheroimg{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
 }

.rosebokdes{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
 .rosebokdes h1{
    color: #000;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    font-weight: 600;
 }

 .rosebokdes p{
    text-align: center;
    color: #000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}

.risegetbook h2{
        color: #000;
    font-size: 25px;
    line-height: 30px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px 0 0 0;
}

.riseamazonbook{
    text-align: left;
}

.riseamazonbook img{
    background: #c40000;
    padding: 10px 15px;
    width: 15%;
    min-width: 15%;
    border-radius: 5px;
}
.reviescontainer{
    margin: 50px 0 0 0;
}

.reviescontainer h2{
        color: #000;
    font-size: 25px;
    line-height: 30px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    margin: 30px 0 0 0;
}

.reviewcont .checked{
    color: #c40000;
    margin-bottom: 10px;
}

.reviewcont p{
    text-align: left;
    color: #000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}

.reviewcont h3{
    text-align: left;
    color: #c40000;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}

.rosebokdes img{
    width: 100%;
}

/* default arrow = down */
.arrow {
    transition: transform 0.3s ease;
}

/* When hovering the parent list item */
li:hover > .arrow {
    transform: rotate(180deg);
}

.mediaplatformtag{
    position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mobileheroimg{
    display: none;
}

.copyrightstext p a{
    color: #fff;
}

/*---blog page-----*/

.hemathakurblogcontainer img{
    width: 100%;
    padding: 30px 30px 0 30px;
}
.hemathakurblogcontainer {
    margin: 20px 0 0 0;
    position: relative;
}

.blogtitlecontainer {
    margin: 0 30px;
    padding: 30px;
    background: #c40000c7;
    position: absolute;
    bottom: 0px;
}

.blogtitlecontainer h1{
    text-align: left;
    color: #fff;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 30px;
}

.blogtitlecontainer p{
    color: #fff;
    font-size: 25px;
    line-height: 25px;
    text-align: left;
    font-weight: 300;
}

.recentblogpost{
    margin-bottom: 30px;
    padding: 50px 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.recentblogpost h3{
    color: #c40000;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 0px;
    font-weight: 600;
}
.recentblogpost h3 span{
    color: #c40000;
    font-size: 20px;
    line-height: 20px;
    text-align: left;
    margin-bottom: 0px;
    font-weight: 500;
}

.recentblogpost p{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    font-weight: 300;
}

.blogbtn{
    margin: 20px 0;
}

.blogbtn a{
    background: #c40000;
    color: #fff;
    padding: 7px 30px;
    font-size: 18px;
    transition: 0.5s;
    border-radius: 25px;
    border: 1px solid #c40000;
}

.recentblogpost h5{
    color: #363636;
    font-size: 40px;
    line-height: 45px;
    text-align: left;
    font-weight: 600;
}

.hemablogcontainer{
    margin: 30px 0 0 0;
    padding: 20px;
}

.recentblogpost:hover{
    background: #c40000;
}

.recentblogpost:hover h3{
    color: #fff;
}

.recentblogpost:hover h3 span{
    color: #fff;
}

.recentblogpost:hover p{
    color: #fff;
}
.recentblogpost:hover h5{
    color: #fff;
}
.recentblogpost:hover .blogbtn a{
    background: #fff;
    color: #c40000;
    padding: 7px 30px;
    font-size: 18px;
    transition: 0.5s;
    border-radius: 25px;
    border: 1px solid #c40000;
}

.hemablogcontainer h2{
    text-align: left;
    color:  #363636;
    font-size: 40px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    padding-bottom: 0px;
    margin-bottom: 30px;
}



.blogFeaturedImage img{
    width: 100%;
    padding: 30px 30px 0 30px;
}
.singlebloheroimg{
    margin: 20px 0 0 0;
}
.innerBlogContainer{
    margin: 20px 0 0 0;
}


.blogsingletitile h1{
    color: #c40000;
    font-size: 40px;
    line-height: 45px;
    text-align: left;
    padding: 0 100px;
    margin-bottom: 10px;
    font-weight: 600;
}

.blogdetailscontent p{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    padding: 0 100px;
    text-align: left;
    font-weight: 300;
}

.blogsingletitile{
    margin: 30px 0 0 0;
}

.recentblogpost p small{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    font-weight: 300;
}
.recentblogpost:hover p small{
    color: #fff;
}

.singlepostEntry p small{
    color: #363636;
    font-size: 18px;
    line-height: 25px;
    text-align: left;
    font-weight: 300;
    padding: 0 100px;
}

.blogmobilehero{
    display: none;
}