header#Header {
  background-color: var(--theme-color-dark-grey);
  padding: 15px 0;
}
header#Header .custom-cls {
  position: relative;
}
header#Header .custom-cls .header-logo a {
  display: block;
}
header#Header .custom-cls .header-logo a img {
  max-width: 60%;
}
header#Header .custom-flex {
  align-items: center;
}
header#Header .nav-trigger-mob {
  display: none;
}
header#Header .custom_header_flex {
  display: flex;
  justify-content: end;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: center;
}
header#Header button.nav-trigger {
  height: 2.6rem;
  width: 2.6rem !important;
  position: relative;
  z-index: 9;
  padding: 0 !important;
  background: transparent !important;
  float: right;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
}
header#Header button.nav-trigger span {
  width: 1.5rem;
  height: 2px;
  background: var(--theme-color);
  top: 50%;
  position: absolute;
  transition: 0.5s;
  border-radius: 1.875rem;
  display: block;
  transform: translateY(-50%);
  right: 7px;
}
header#Header button.nav-trigger.active:before {
  top: 50%;
  transform: rotate(45deg);
  background: var(--theme-color);
}
header#Header button.nav-trigger.active:after {
  top: 50%;
  transform: rotate(-45deg);
  background: var(--theme-color);
}
header#Header button.nav-trigger.active span {
  width: 0;
}
header#Header button.nav-trigger:before {
  content: "";
  position: absolute;
  top: 13px;
  width: 1.5rem;
  height: 2px;
  background: var(--theme-color);
  transition: 0.5s;
  border-radius: 1.875rem;
  right: 7px;
}
header#Header button.nav-trigger:after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 13px;
  width: 1.5rem;
  height: 2px;
  background: var(--theme-color);
  transition: 0.5s;
  border-radius: 1.875rem;
}
header#Header nav.site_navigation {
  position: absolute;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  background: rgba(25, 25, 25, 0.8);
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.1215686275);
  overflow: hidden;
  right: 0px;
  margin-left: auto;
  border-radius: 12px;
  width: 240px;
}
header#Header nav.site_navigation.site_navigation {
  opacity: 0;
  z-index: -1;
  pointer-events: none;
}
header#Header nav.site_navigation.site_navigation.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}
header#Header nav.site_navigation .inner-bg {
  width: 100%;
  padding: 25px;
  position: relative;
}
header#Header nav.site_navigation .inner-bg > ul {
  flex-direction: column;
  justify-content: center !important;
  align-items: center !important;
  position: relative;
  list-style: none;
  width: 100%;
  margin-bottom: 0;
  padding-top: 25px;
}
header#Header nav.site_navigation .inner-bg > ul > li {
  align-items: start !important;
  flex-direction: column !important;
  width: 100% !important;
  background: transparent;
  padding: 2px;
  border-radius: 3px;
  transition: 0.5s all ease;
}
header#Header nav.site_navigation .inner-bg > ul > li.menu-item-has-children > a {
  position: relative;
  width: 100%;
}
header#Header nav.site_navigation .inner-bg > ul > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  border-bottom: 2px solid var(--theme-color-light);
  border-right: 2px solid var(--theme-color-light);
  height: 10px;
  width: 10px;
  transform: rotate(45deg) rotateX(0deg);
  transition: 0.5s;
  margin-left: 10px;
  position: absolute;
  right: 0;
}
header#Header nav.site_navigation .inner-bg > ul > li.menu-item-has-children > ul.sub-menu {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s ease;
  background: var(--theme-color-dark-grey);
  border-radius: 10px;
  position: absolute;
  left: 0;
  padding: 10px;
  list-style: none;
}
header#Header nav.site_navigation .inner-bg > ul > li.menu-item-has-children:hover a::after {
  transform: rotate(225deg) rotateX(0deg);
}
header#Header nav.site_navigation .inner-bg > ul > li.menu-item-has-children:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
  width: 100%;
  z-index: 1;
  position: static;
}
header#Header nav.site_navigation .inner-bg > ul > li.current-menu-item a {
  color: var(--theme-color);
  background: transparent;
}
header#Header nav.site_navigation .inner-bg > ul > li > a {
  font-family: var(--theme-font);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: var(--theme-color-light);
  text-transform: capitalize;
}
header#Header nav.site_navigation .inner-bg > ul > li > a:hover {
  opacity: 0.6;
}
header#Header nav.site_navigation .inner-bg > ul > li > a {
  width: 100%;
  display: flex !important;
  justify-content: flex-start;
  align-items: center;
  display: block;
  border-radius: 3px;
}

/*******************MainBanner****************************/
section.MainBanner {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  flex-direction: column;
  /* Top line */
  /* Bottom line */
}
section.MainBanner h1 {
  font-family: var(--theme-heading-font);
  font-size: 90px;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
}
section.MainBanner h1 .title-top {
  display: block;
  font-size: 120px;
  font-weight: 900;
  color: var(--font-color);
}
section.MainBanner h1 .title-bottom {
  display: block;
  font-size: 90px;
  color: var(--font-color);
  margin-top: 10px;
}
section.MainBanner em {
  color: var(--theme-color) !important;
  font-style: normal !important;
}

/******************copyright*****************************/
.copyRightSection {
  margin-top: 110px;
  position: relative;
}
.copyRightSection .copyright_txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: var(--theme-color-alt);
  position: relative;
}
.copyRightSection .large-text {
  font-family: var(--theme-heading-font);
  font-size: 200px;
  font-weight: 600;
  line-height: 1;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  opacity: 1;
  color: var(--theme-color-light-grey);
  pointer-events: none;
}
.copyRightSection .fox-position {
  position: absolute;
  bottom: 178px;
  left: 218px;
}
.copyRightSection .fox-position img {
  width: 190px;
}
.copyRightSection .tree-position {
  position: absolute;
  bottom: 173px;
  right: 40px;
}

/*********************explore*****************************/
section#explore .right-custom {
  display: flex;
  justify-content: flex-start;
}
section#explore .custom-right-border {
  padding: 0 0px 0 25px;
}
section#explore .custom-right-border:not(:last-child) {
  border-right: 1px solid;
  padding: 0 25px 0 25px;
}
section#explore .row_custom {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
section#explore .row-custom {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
section#explore .category {
  display: flex;
  text-align: center;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
section#explore .category .category-item {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
section#explore .category .category-item a {
  padding: 0.625rem 1.875rem !important;
  background-color: var(--theme-color-light) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
}
section#explore .category a.more {
  font-family: var(--theme-body-font);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.438rem;
  color: var(--theme-color-alt) !important;
  text-decoration: underline !important;
}
section#explore a.link-popular {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  color: var(--theme-color-grey) !important;
  cursor: pointer;
}
section#explore a.link-popular.active {
  color: var(--font-color) !important;
}
section#explore .post {
  height: 100%;
  border: 0px;
  border-radius: 40px;
  box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.0588235294);
}
section#explore .post .bg-custom {
  background: var(--theme-color-light-grey);
  height: 250px;
  border-radius: 40px 40px 0 0;
}
section#explore .post .post-thumbnail img {
  border-radius: 40px 40px 0px 0px;
  height: 250px !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section#explore .post .post_description {
  padding: 30px 25px 40px 25px;
}
section#explore .post .post_description .post-category a {
  padding: 0.5rem 1rem !important;
  background-color: var(--theme-color-dark-grey) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
  font-size: 16px;
  font-family: var(--theme-body-font);
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0px;
}
section#explore .post .post_description h4 {
  font-weight: 700;
  font-style: var(--theme-body-font);
  line-height: 27px;
  font-size: 22px;
}
section#explore .post .post_description .post-content {
  font-weight: 400;
  font-style: var(--theme-body-font);
  line-height: 20px;
  font-size: 16px;
  color: var(--theme-color-alt);
}
section#explore .post .post_description .post-date {
  color: var(--theme-color-alt);
}
section#explore .post .post_description .post_views {
  color: var(--theme-color-alt);
}
section#explore .card-body {
  display: flex;
  flex-direction: column;
}
section#explore .post-button {
  margin-top: auto;
}

/********************InnerBanner*************************/
.post-image-credit {
  color: var(--theme-color-alt);
  font-size: 0.7rem;
  font-style: italic;
}

section.ContentDetail {
  padding-top: 5rem;
}
section.ContentDetail .container.custom-bg-single {
  border-radius: 40px 40px 0 0;
  padding: 50px 0 10px 0;
}
section.ContentDetail .single_custom_category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
section.ContentDetail .single_custom_category a.custom-language {
  background: var(--theme-color-dark-grey) !important;
  border-radius: 19px;
  height: 37px;
  line-height: 37px;
  font-size: 14px;
  color: var(--font-color);
  width: 44%;
  max-width: 150px;
  display: inline-block;
  padding: 0;
}
section.ContentDetail .single_custom_category a.custom-language span.letter {
  display: block;
  float: left;
  text-align: center;
  width: 50px;
  padding: 0;
  background: var(--theme-color);
  color: var(--theme-color-light);
  font-size: 18px;
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
}
section.ContentDetail .single_custom_category a.custom-language span {
  vertical-align: middle;
  display: block;
  float: left;
  padding: 0 10px;
}
section.ContentDetail .single_custom_category a.category-name {
  padding: 0.5rem 1rem !important;
  background-color: var(--theme-color-dark-grey) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
  font-size: 16px;
  font-family: var(--theme-body-font);
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0px;
}
section.ContentDetail .outer-flex {
  display: flex;
  gap: 2rem;
  border-top: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding: 1rem 0.5rem;
  justify-content: space-between;
}
section.ContentDetail .outer-flex .inner-flex {
  color: var(--theme-color-alt);
}

/******************MainContent**************************/
/*****************banner-container*********************/
section.banner-container {
  padding-top: 5rem !important;
}
section.banner-container .archive-description p {
  width: 75%;
  margin: auto;
}

/********************recent-posts-archive****************/
section.recent-posts-archive {
  margin-top: 3rem;
  margin-bottom: 6.25rem;
}
section.recent-posts-archive .articles-card {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
section.recent-posts-archive .articles-card .img-container {
  flex-basis: 100%;
}
section.recent-posts-archive .articles-card .img-container img {
  border-radius: 0.375rem;
}
section.recent-posts-archive .articles-card .content-container {
  flex-basis: 100%;
}
section.recent-posts-archive .articles-card .content-container .button.readmore {
  background-color: var(--theme-color-warning);
  border-radius: 0.375rem;
  color: var(--theme-color-light);
  border: none;
  padding: 16px 35px;
  display: inline-block;
}
section.recent-posts-archive .articles-card .content-container h4 a {
  font-family: var(--theme-body-font);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.875rem;
  color: var(--theme-color-success);
}
section.recent-posts-archive .articles-card:not(:last-child) {
  margin-bottom: 2rem;
}
section.recent-posts-archive .post.card {
  height: 100%;
  border: 0 !important;
  border-radius: 40px;
}
section.recent-posts-archive .post.card .post_description.card-body {
  padding: 30px 25px 40px 25px;
  display: flex;
  flex-direction: column;
}
section.recent-posts-archive .post.card .post_description.card-body h4 {
  font-weight: 600;
  font-style: var(--theme-body-font);
  line-height: 1.813rem;
  font-size: 1.5rem;
}
section.recent-posts-archive .post.card .post_description.card-body .post-date {
  color: var(--theme-color-alt);
}
section.recent-posts-archive .post.card .post_description.card-body .post_views {
  color: var(--theme-color-alt);
}
section.recent-posts-archive .post.card .post_description.card-body .post-button {
  margin-top: auto;
}
section.recent-posts-archive .post.card .post-category a {
  padding: 0.5rem 1rem !important;
  background-color: var(--theme-color-dark-grey) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
  font-size: 16px;
  font-family: var(--theme-body-font);
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0px;
}
section.recent-posts-archive .post.card .post-thumbnail img {
  border-radius: 40px 40px 0px 0px;
  height: 250px !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 100% !important;
}
section.recent-posts-archive .post.card .bg-custom {
  background: var(--theme-color-light-grey);
  height: 250px;
  border-radius: 40px 40px 0 0;
}

/*******************related-posts-archive***************/
section.related-posts-archive {
  margin-top: 4rem;
  margin-bottom: 6.25rem;
}
section.related-posts-archive .post.card {
  height: 100%;
  border: 0px !important;
  border-radius: 40px;
}
section.related-posts-archive .post.card .post_description.card-body {
  padding: 30px 25px 40px 25px;
  display: flex;
  flex-direction: column;
}
section.related-posts-archive .post.card .post_description.card-body h4 {
  font-weight: 600;
  font-style: var(--theme-body-font);
  line-height: 1.813rem;
  font-size: 1.5rem;
}
section.related-posts-archive .post.card .post_description.card-body .post-date {
  color: var(--theme-color-alt);
}
section.related-posts-archive .post.card .post_description.card-body .post_views {
  color: var(--theme-color-alt);
}
section.related-posts-archive .post.card .post_description.card-body .post-button {
  margin-top: auto;
}
section.related-posts-archive .post.card .post-category a {
  padding: 0.5rem 1rem !important;
  background-color: var(--theme-color-dark-grey) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
  font-size: 16px;
  font-family: var(--theme-body-font);
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0px;
}
section.related-posts-archive .post.card .post-thumbnail img {
  border-radius: 40px 40px 0px 0px;
  height: 250px !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  max-width: 100% !important;
}
section.related-posts-archive .post.card .bg-custom {
  background: var(--theme-color-light-grey);
  height: 250px;
  border-radius: 40px 40px 0 0;
}

/********************AllCategories**********************/
section.AllCategories {
  margin-top: 5rem;
}
section.AllCategories h4 a {
  font-weight: 600;
  color: var(--font-color) !important;
}
section.AllCategories h4 a:hover {
  text-decoration: underline !important;
}
section.AllCategories ul {
  margin-top: 2rem;
}
section.AllCategories ul li {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  color: var(--theme-color-alt);
  margin-bottom: 1rem;
}
section.AllCategories ul li a.link-bg {
  padding: 0.625rem 1.875rem !important;
  background-color: var(--theme-color-light-grey) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
  display: inline-block;
}
section.AllCategories ul li a.after-bg {
  position: relative;
}
section.AllCategories ul li a.after-bg::after {
  background-color: var(--theme-color);
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.AllCategories button.load-more-tags-btn.more {
  font-family: var(--theme-body-font);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.438rem;
  color: var(--theme-color-alt) !important;
  text-decoration: underline !important;
  border: none;
  background: transparent;
}
section.AllCategories ul.list-unstyled.tags-list {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-wrap: wrap;
}
section.AllCategories .loop-category {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  align-items: center;
  padding: 40px 0;
}
section.AllCategories .loop-category:not(:last-child) {
  border-bottom: 1px solid var(--theme-color-grey);
}
section.AllCategories .loop-category .top-arrow {
  background: var(--theme-color);
  width: 57px;
  height: 57px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  flex: none;
  position: relative;
}
section.AllCategories .loop-category .top-arrow a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
section.AllCategories .loop-category:first-child {
  border-top: 1px solid var(--theme-color-grey);
}
section.AllCategories .loop-category h4 {
  width: 25%;
  margin: 0;
}
section.AllCategories .loop-category .center-outer {
  width: 100%;
}
section.AllCategories form {
  margin-top: 2rem;
}
section.AllCategories form label[for=search-form-1] {
  display: none !important;
}
section.AllCategories form input[type=search] {
  background: #f9f9f9;
  outline: none;
  border: 2px solid #f9f9f9;
  height: 50px;
  border-radius: 32px;
  width: 30%;
  padding: 0 30px;
}
section.AllCategories form input[type=submit] {
  background-color: var(--theme-color) !important;
  border-color: var(--theme-color);
  color: var(--theme-color-light) !important;
  font-weight: 600 !important;
  outline: none;
  border: none;
  border-radius: 32px !important;
  font-family: var(--theme-body-font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
  padding: 15px 35px;
}

@media only screen and (min-width: 991.98px) {
  /********************Modal Css*************************/
  body.single div#addModal .modal-dialog {
    margin-right: unset;
    max-width: 325px !important;
  }
  body.single div#addModal .modal-dialog .modal-content {
    max-width: -moz-fit-content;
    max-width: fit-content;
    height: 360px;
    width: 360px;
  }
  body.single div#addModal .modal-dialog .modal-content .modal-body a {
    display: block;
  }
  body.single div#addModal .modal-dialog .modal-content .modal-body a img {
    height: 280px;
    width: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  body.single div#addModal .modal-dialog-centered {
    align-items: end !important;
    position: absolute;
    right: 0;
    bottom: -28px;
  }
}
/******************homepage header button modal**********************************/
#mc_embed_signup {
  width: 100% !important;
}

/*****************card hover****************************************************/
.shine-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.shine-animate::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.shine-animate-item:hover .shine-animate::before {
  animation: hoverShine 1.2s;
}

body.page-id-633 ul {
  list-style: none;
}

/*********************search post page******************************/
section.search-posts-archive .post {
  height: 100%;
  border: 1px solid var(--theme-color-grey);
  border-radius: 40px;
}
section.search-posts-archive .post .post-thumbnail img {
  border-radius: 40px 40px 0px 0px;
  height: 250px !important;
  width: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
section.search-posts-archive .post .post_description {
  padding: 30px 25px 40px 25px;
}
section.search-posts-archive .post .post_description .post-category a {
  padding: 0.5rem 1rem !important;
  background-color: var(--theme-color-dark-grey) !important;
  border-radius: 250px !important;
  color: var(--theme-color-alt) !important;
  font-size: 16px;
  font-family: var(--theme-body-font);
  font-weight: 400;
  line-height: 20px;
  margin: 10px 0px;
}
section.search-posts-archive .post .card-body {
  display: flex;
  flex-direction: column;
}
section.search-posts-archive .post .card-body .post-button {
  margin-top: auto;
}

.no-post-found {
  text-align: center;
  margin-top: 2rem;
  text-transform: capitalize;
}

/**********************modal-body*********************************/
div#followModal .modal-body {
  padding-top: 0 !important;
}
div#followModal .modal-body #mc_embed_signup form {
  margin: 0 !important;
}
div#followModal .modal-body #mc_embed_signup form .optionalParent .foot {
  display: block;
}
div#followModal .modal-body #mc_embed_signup form .optionalParent .foot .button {
  width: 100% !important;
  height: 50px !important;
}
div#followModal .modal-body #mc_embed_signup form .mc-field-group input[type=email] {
  background: #f9f9f9;
  outline: none !important;
  border: 1px solid #f9f9f9;
  height: 50px !important;
  border-radius: 32px !important;
  padding: 0 30px !important;
}
div#followModal .modal-dialog {
  transform: translate(-50%, -50%) !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: 100% !important;
}
div#followModal .modal {
  --bs-modal-margin: 0 !important;
}
div#followModal .bottom-right-img {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  pointer-events: none;
}
div#followModal .top-left-img {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  pointer-events: none;
}
div#followModal .modal-content {
  overflow: hidden !important;
  padding: 50px;
}
div#followModal .modal-content .modal-header {
  border-bottom: none !important;
  display: inline-block !important;
  z-index: 1;
}
div#followModal .modal-content .modal-header button.btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
div#followModal .modal-content .modal-header .btn-close:focus:focus {
  box-shadow: none !important;
}

/******************404***********************/
section.common-banner.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

/*****************modal*********************/
div#addModal .modal-header {
  border: none !important;
}
div#addModal .modal-content {
  border-radius: 25px 0 0 0px !important;
}
div#addModal .modal-body {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/****************toggle button***********/
button.btn-custom-info {
  border: none !important;
}
button.btn-custom-info:hover {
  border: none !important;
}

body.dark-mode section.MainBanner .content {
  color: var(--theme-color-light) !important;
}
body.dark-mode .copyRightSection .copyright_txt {
  color: var(--theme-color-light) !important;
  background: var(--font-color);
}
body.dark-mode .btn-custom-outline-dark {
  background-color: transparent !important;
  border: 1px solid var(--theme-color-light) !important;
  color: var(--theme-color-light) !important;
}
body.dark-mode section#explore a.link-popular.active {
  color: var(--theme-color-light) !important;
}
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: var(--theme-color-light);
}
body.dark-mode section#explore .category a.more {
  color: var(--theme-color-light) !important;
}
body.dark-mode section.AllCategories h4 a {
  color: var(--theme-color-light) !important;
}
body.dark-mode section.related-posts-archive .post.card .post_description.card-body h4 {
  color: var(--theme-color-light) !important;
}
body.dark-mode .post-content {
  color: var(--theme-color-light) !important;
}
body.dark-mode section.ContentDetail .outer-flex .inner-flex {
  color: var(--theme-color-light);
}
body.dark-mode div#followModal .modal-header h3 {
  color: var(--font-color) !important;
}
body.dark-mode section#explore .post.card {
  background-color: transparent;
}
body.dark-mode .post-image-credit {
  color: var(--theme-color-light);
}
body.dark-mode section.related-posts-archive .post.card {
  background-color: transparent;
}
body.dark-mode section.recent-posts-archive .post.card {
  background-color: transparent;
}
body.dark-mode a {
  color: var(--theme-color-light);
}

/*************************22April2k24*********************/
div#followModal .modal-dialog .modal-content section.Follow form.wpcf7-form.init input.wpcf7-form-control {
  background-color: var(--theme-color-light-grey);
}
div#followModal .modal-dialog .modal-content textarea.wpcf7-form-control {
  background-color: var(--theme-color-light-grey);
}
div#followModal .modal-dialog .modal-content p {
  font-size: 0.7rem !important;
  color: var(--font-color);
}

/***************8may2k24*****************/
.drawing-animation circle,
.drawing-animation ellipse,
.drawing-animation path,
.drawing-animation polygon,
.drawing-animation rect {
  fill: none;
  stroke-width: 15px;
  stroke-dasharray: 20000;
  stroke-dashoffset: 20000;
  animation: drawing-animation 6s linear forwards;
  animation-delay: 1.5s;
}

@keyframes drawing-animation {
  to {
    stroke-dashoffset: 0;
  }
}
/************************bg-animation******************************/
.bg-animation {
  width: 100%;
  margin-top: 40px;
  position: relative;
}
.bg-animation .heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  width: 100%;
}
.bg-animation .heading h1.bold {
  font-weight: 800;
  font-size: 7.5rem;
}

section.MainBanner .content {
  position: relative;
  padding-top: 40px;
  font-family: var(--theme-body-font);
  font-size: 2rem !important;
  font-weight: 400;
  color: var(--theme-color-alt) !important;
}

section.StoryRepeater .container.custom-bg-single {
  background-color: var(--theme-color-light);
  border-radius: 0 0 40px 40px;
  padding: 0px 0 70px 0;
}

section.StoryRepeater .accordion-item {
  border: 1px solid #dee2e6 !important;
  border-radius: 0.375rem !important;
}
section.StoryRepeater .accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
section.StoryRepeater .accordion-item button.accordion-button.collapsed {
  border-radius: 0.375rem !important;
  background-color: var(--theme-color);
  color: var(--theme-color-light);
}
section.StoryRepeater .accordion-item .accordion-body ol li:not(:last-child), section.StoryRepeater .accordion-item .accordion-body ul li:not(:last-child) {
  margin-bottom: 15px;
}
section.StoryRepeater .accordion-button:not(.collapsed) {
  color: var(--theme-color-light);
  background-color: var(--theme-color);
  border-radius: 0.375rem 0.375rem 0 0;
}
section.StoryRepeater .accordion-button {
  font-size: 1.5rem !important;
}
section.StoryRepeater .accordion-button:focus {
  box-shadow: none !important;
}
section.StoryRepeater .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
section.StoryRepeater .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

section.MainContent .custom-bg-single {
  padding-top: 20px;
  padding-bottom: 50px;
}
section.MainContent .custom-bg-single h3 {
  margin-top: 30px;
}

section.MainContent .add-boder-radius {
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

body.page-template-common .common-content .inside-container {
  margin-top: 5rem;
  border: 0px;
  border-radius: 40px;
  background-color: var(--theme-color-light);
  padding: 100px;
}

.contact {
  margin-top: 5rem;
}
.contact .inside-container {
  border: 0px;
  border-radius: 40px;
  background-color: var(--theme-color-light);
  padding: 100px;
}
.contact span.wpcf7-form-control-wrap input.wpcf7-form-control {
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #d9d9d9;
  width: 100%;
  background-color: var(--theme-color-light);
}
.contact span.wpcf7-form-control-wrap input.wpcf7-form-control::-ms-input-placeholder {
  color: #979797;
}
.contact span.wpcf7-form-control-wrap input.wpcf7-form-control:focus-visible {
  outline: none !important;
}
.contact span.wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea {
  height: 140px;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid #d9d9d9;
  width: 100%;
  resize: none;
  background-color: var(--theme-color-light);
}
.contact span.wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea::-ms-input-placeholder {
  color: #979797;
}
.contact span.wpcf7-form-control-wrap textarea.wpcf7-form-control.wpcf7-textarea:focus-visible {
  outline: none !important;
}
.contact .custom_btn_position input.wpcf7-form-control.btn-custom.btn-custom-info {
  border: none;
}

section.copyRightSection ul.social-icons li a {
  font-size: 20px;
}
section.copyRightSection ul.social-icons li a i {
  font-size: 30px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 20px; /* space between items */
}

.footer-links li {
  display: inline;
  margin-bottom: 20px;
}

.footer-links a {
  text-decoration: none;
  color: var(--font-color); /* or your footer link color */
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--theme-color); /* hover color */
}

.word_search_input div#form-section div label {
  margin-bottom: 5px;
  margin-top: 20px;
}
.word_search_input div#form-section div input[type=text] {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 6px 8px;
  font-size: 1.2em;
  font-weight: 700;
  border: 1px solid #ccc;
  font-family: inherit;
  color: #222;
}
.word_search_input div#form-section div textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 6px 8px;
  font-size: 1.2em;
  font-weight: 700;
  border: 1px solid #ccc;
  font-family: inherit;
  color: #222;
}
.word_search_input div#form-section .grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 20px 0;
}

.instructions {
  background-color: var(--theme-color);
  border-radius: 20px;
  padding: 20px;
  color: var(--theme-color-light);
  margin-top: 50px;
}
.instructions h2 {
  color: var(--theme-color-light);
}

div#input_notes {
  background-color: var(--theme-color);
  padding: 20px;
  border-radius: 20px;
  color: var(--theme-color-light);
  margin-top: 50px;
}
div#input_notes h2 {
  color: var(--theme-color-light);
}/*# sourceMappingURL=style.css.map */