:root {
  --font: "Inter", sans-serif;
  --white: #ffffff;
  --blue: #312d89;
  --black: #000;
  --dark: #1a1a1a;
  --green: #106b41;
  --orange: #e66f1a;
  --light: #d6fbfd;
  scroll-behavior: smooth;
}

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

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

::-webkit-scrollbar-track {
  background: var(--light);
}

::-webkit-scrollbar-thumb {
  background: var(--blue);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--blue);
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  background-color: var(--white);
  box-sizing: border-box;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  max-width: 1320px;
}

p {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--dark);
}

img {
  max-width: 100%;
  height: auto;
}

.custom-btn {
  display: flex;
  min-width: 188px;
  min-height: 56px;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  -ms-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  transition: ease 0.5s;
}

.custom-btn:after {
  content: "";
  height: 0;
  width: 0;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  transition: ease 0.5s;
}

.custom-btn:hover:after {
  height: 500px;
  width: 500px;
}

.heading {
  color: var(--blue);
  font-family: var(--font);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

header {
  position: sticky;
  top: 0;
  z-index: 99;
}

.navbar {
  padding: 0;
  min-height: 90px;
  background: linear-gradient(90deg, #f3fff7 0%, #fffbf4 50%, #fff6ff 100%);
}

.navbar .navbar-brand {
  margin-right: 50px;
}

.navbar .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

.navbar .navbar-nav .nav-item,
.navbar .nav-right ul .nav-item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .navbar-nav .dropdown .dropdown-menu {
  left: 0;
  top: 90px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #ddd;
}

.navbar .navbar-nav .dropdown .dropdown-menu li {
  border-bottom: 1px solid #ddd;
}

.navbar .navbar-nav .dropdown .dropdown-menu li:nth-last-child(1) {
  border-bottom: none;
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
  color: var(--blue);
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 10px;
}

.navbar .navbar-nav .dropdown .dropdown-menu li:hover .dropdown-item {
  background: #120e6c;
  color: #fff;
}

.navbar .navbar-nav .nav-item .nav-link,
.navbar .nav-right ul .nav-item .nav-link {
  color: var(--blue);
  font-family: Inter;
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 0;
}

.navbar .nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
}

.navbar .nav-right ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar .nav-right .search-live {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  padding-left: 14px;
  margin-left: 14px;
}

.navbar .nav-right .search-live::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: var(--dark);
  left: -14px;
}

.navbar .nav-right .search-live button {
  background: transparent;
  border: none;
  box-shadow: none;
  outline: none;
}

.navbar .nav-right .search-live a {
  border-radius: 45px;
  background: var(--light);
  padding: 12px 32px;
  color: var(--blue);
  font-size: 17px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.navbar .nav-right .search-live a:hover {
  background: var(--blue);
  color: var(--white);
}

footer {
  padding-top: 60px;
  background: var(--blue);
}

footer .head-logo-text {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  /* 175% */
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 10px;
  border-left: 2px solid var(--white);
}

footer ul {
  list-style: none;
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer ul li a {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  text-decoration: none;
}

footer .social {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}

footer .social li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--white);
}

footer .head-list {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 35px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

footer .list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer .list li a {
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
}

footer .we-support {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

footer .we-support p {
  text-align: center;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 15px;
}

footer .copyright {
  background: #120e6c;
  text-align: center;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

footer .copyright p,
footer .copyright a {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 35px;
  margin-bottom: 0;
  text-decoration: none;
}

#goTopBtn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 100;
  background-color: var(--blue);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(14, 1, 72, 0.3);
  transition: opacity 0.3s;
}

#goTopBtn:hover {
  border: 2px solid var(--light);
}

/* media query */
@media (max-width: 2500px) and (min-width: 992px) {
  .navbar .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  .navbar .navbar-nav .dropdown:hover .nav-link::after{
    transform: rotate(180deg);
    transition: ease 0.3s;
  }
}

@media (max-width: 1200px) {

  .navbar .navbar-nav,
  .navbar .nav-right ul,
  .navbar .nav-right .search-live {
    gap: 10px;
  }
}

@media (max-width: 991px) and (min-width: 280px) {
  .navbar {
    padding: 20px 0;
  }

  .navbar .navbar-toggler {
    border: 1px solid var(--blue);
  }

  .navbar .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .navbar-nav,
  .navbar .nav-right ul {
    align-items: flex-start;
    margin-bottom: 20px !important;
  }

  .navbar .navbar-nav .nav-item,
  .navbar .nav-right ul .nav-item {
    min-height: auto;
  }

  .navbar .navbar-collapse {
    overflow: auto;
    max-height: 400px;
    padding: 20px 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
  }

  .navbar .navbar-nav,
  .navbar .nav-right ul,
  .navbar .nav-right .search-live,
  .navbar .nav-right {
    gap: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  .navbar .nav-right {
    justify-content: flex-start;
  }

  .navbar .navbar-nav .nav-item,
  .navbar .nav-right ul .nav-item {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .navbar-nav .dropdown-menu {
    width: 100%;
    margin-top: 10px !important;
  }

  .navbar .nav-right .search-live::before {
    display: none;
  }

  .navbar .nav-right .search-live {
    margin-left: 0;
    padding-left: 0;
  }

  .navbar .nav-right .search-live {
    flex-direction: column;
  }

}

@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  footer .head-logo-text {
    border: none;
  }

  footer ul {
    align-items: center;
  }

  footer .social {
    justify-content: center;
  }
}

/*--breadcrumb--*/
.breadcrumb-sec {
  background: transparent;
  margin: 0;
  padding: 10px 0;
}

.breadcrumb {
  background-color: transparent !important;
  padding-left: 0 !important;
  align-items: center;
}

.breadcrumb a {
  color: #074568;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: #37AB79;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:after {
  content: ">";
  padding: 0 5px;
  color: #000;
  font-family: cursive;
}

/*--blog center--*/
.blog-center-part {
  padding: 60px 0;
}

.blog-center-part .all-post {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.blog-center-part .all-post .no-result{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
  color: red;
}

.blog-center-part .post-box {
  width: calc(50% - 15px);
  padding: 30px;
  border-radius: 20px;
  border: 2px solid rgba(143, 143, 143, 0.20);
  background: #FFF;
  box-shadow: 0 12px 42px -4px rgba(24, 39, 75, 0.10);
}

.blog-center-part .post-box .featured-image {
  display: block;
  border-radius: 20px;
  line-height: 0;
  overflow: hidden;
}

.blog-center-part .avatarwithcategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.blog-center-part .avatarwithcategory .name-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.blog-center-part .avatarwithcategory .name-avatar .avatar-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}

.blog-center-part .avatarwithcategory .name-avatar .name {
  color: #767676;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
}

.blog-center-part .avatarwithcategory .category a {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #f2faff;
  color: #312d89;
  text-decoration: none;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  border: 1px solid transparent;
  transition: ease 0.3s;
}

.blog-center-part .avatarwithcategory .category a:hover {
  border: 1px solid #312d89;
}

.blog-center-part .post-box .title {
  display: block;
  color: #000;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-top: 25px;
  text-decoration: none;
}

.blog-center-part .post-box .desc {
  display: block;
  color: #767676;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 20px;
}

.blog-center-part .post-box .dateandlike {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.blog-center-part .post-box .dateandlike p {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: #767676;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.blog-center-part .post-box .read-more {
  display: block;
  margin-top: 20px;
}

.blog-center-part .post-box .read-more a {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  background: #312d89;
  text-decoration: none;
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: ease 0.3s;
}

.blog-center-part .post-box .read-more a:hover {
  color: #fff;
}

.blog-center-part .post-box .read-more a::before {
  content: "";
  height: 0;
  width: 0;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  transition: ease 0.5s;
}

.blog-center-part .post-box .read-more a:hover::before {
  height: 300px;
  width: 300px;
}

.blog-center-part .pagination {
  list-style: none;
  margin-top: 60px;
}

.blog-center-part .pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-center-part .pagination li .page-numbers.current,
.blog-center-part .pagination li .page-numbers.dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #57CC99;
  border: 1px solid #57CC99;
  border-radius: 50%;
  color: #FFF;
  text-align: center;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}

.blog-center-part .pagination li .page-numbers.dots {
  background: transparent;
  border: 1px solid transparent;
  color: #57CC99;
}

.blog-center-part .pagination li .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  color: #535353;
  text-align: center;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
}

.blog-center-part .pagination li .prev,
.blog-center-part .pagination li .next {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #E6FFF4;
  border: 1px solid #57CC99;
  border-radius: 50%;
  color: #37AB79;
  text-align: center;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 45px;
  overflow: hidden;
}

.blog-center-part .pagination li .prev {
  align-items: flex-start;
}

.blog-center-part .widget-area {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.blog-center-part .widget-area {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blog-center-part .widget-area .widget_search label {
  display: none;
}

.blog-center-part .widget-area .widget_search div {
  position: relative;
}

.blog-center-part .widget-area .widget_search input {
  display: flex
;
    align-items: center;
    min-height: 50px;
    border-radius: 10px;
    border: 1px solid #312d89;
    padding: 0 20px;
    padding-right: 55px;
    color: #000;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    box-shadow: none;
    outline: none;
}

.blog-center-part .widget-area .widget_search input::placeholder {
  color: #ABABAB;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.blog-center-part .widget-area .widget_search button {
  position: absolute;
  top: 5px;
  right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #312d89;
  color: #fff;
  font-size: 23px;
  transform: scaleX(-1);
}

.blog-center-part .widget-area .widget-title {
  color: #535353;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 30px;
}

.blog-center-part .widget-area .wp-block-latest-posts,
.blog-center-part .widget-area .wp-block-categories,
.blog-center-part .widget-area .wp-block-tag-cloud {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog-center-part .widget-area .wp-block-latest-posts li,
.blog-center-part .widget-area .wp-block-categories li,
.blog-center-part .widget-area .wp-block-categories select {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #ABABAB;
  min-height: 51px;
  color: #535353;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 15px 20px;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}
.blog-center-part .widget-area .wp-block-categories label {
  display: none;
}

.blog-center-part .widget-area .wp-block-latest-posts li a,
.blog-center-part .widget-area .wp-block-categories li a {
  color: #535353;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
	width: 100%;
}

.blog-center-part .widget-area .wp-block-tag-cloud {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-center-part .widget-area .wp-block-tag-cloud a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  color: #535353;
  font-family: var(--font);
  font-size: 16px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  border-radius: 10px;
  border: 1px solid #ABABAB;
}


.blog-center-part .datelikecategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.blog-center-part .datelikecategory p {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  color: #767676;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.blog-center-part .datelikecategory .category a {
  background: #312d89;
  color: #fff;
}

.blog-center-part .title-heading {
  color: #000;
  font-family: var(--font);
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin-top: 30px;
}

.blog-center-part .post-content {
  margin-top: 10px;
}

.blog-center-part .post-content p,
.blog-center-part .post-content ul li {
  color: #535353;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.blog-center-part .post-content p,
.blog-center-part .post-content li,
.blog-center-part .post-content img,
.blog-center-part .post-content div {
  margin-bottom: 1rem;
}

/*--table of content--*/
.tableofcontent {
  margin-top: 30px;
}

.tableofcontent .head {
  color: #000;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
}

.tableofcontent ul {
  border-radius: 10px;
  background: #312d89;
  list-style: none;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.tableofcontent ul li a {
  display: inline-flex;
  padding: 5px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  border: 1px solid #312d89;
  background: #E6FFF4;
  color: #074568;
  font-family: var(--font);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  text-decoration: none;
  transition: ease 0.3s;
}

.tableofcontent ul li a.active,
.tableofcontent ul li a:hover {
  color: #FFF;
  border: 1px solid #312d89;
  background: #312d89;
}

.post-share {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.post-share {
  margin-top: 20px;
}

.post-share .head {
  display: inline-block;
  color: #535353;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 0;
  padding: 10px 0;
}

.post-share ul {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.post-share ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #312d89;
  background: #e9f5fb;
}

.post-author {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  border-radius: 10px;
  background: #e9f5fb;
  padding: 20px;
  margin-top: 25px;
}

.post-author .author-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  min-width: 56px;
  height: 56px;
  min-height: 56px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 0;
}

.post-author .head {
  color: #312d89;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.post-author .name a {
  display: block;
  color: #312d89;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  padding-bottom: 10px;
  text-decoration: none;
}

.post-author .description {
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px;
}

.related-posts {
  margin-top: 25px;
}

.related-posts .head {
  color: #535353;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 20px;
}

.related-posts .posts {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.related-posts .posts .post {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(33.33% - 15px);
  padding: 20px;
  border-radius: 20px;
  border: 2px solid rgba(143, 143, 143, 0.20);
  background: #FFF;
  box-shadow: 0 12px 42px -4px rgba(24, 39, 75, 0.10);
}

.related-posts .posts .post .post-image {
  border-radius: 10px;
  line-height: 0;
  overflow: hidden;
}

.related-posts .posts .post .title {
  display: block;
  color: #000;
  font-family: var(--font);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px;
  margin-top: 25px;
}

.headerbanner{
  display: flex;
  align-items: center;
  justify-content: center;
    position: relative;
    text-align: center;
    min-height: 250px;
    background: radial-gradient(27.52% 27.52% at 50% 50%, rgb(83 79 177), rgb(49 45 137));
    padding: 60px 0px;
    overflow: hidden;
}
.headerbanner .header-content {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
}
.headerbanner .headingcommon {
    color: #fff;
    font-family: var(--font);
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.author_bio{
  border-radius: 10px;
  background: #e0eaff;
  padding: 20px;
  margin-bottom: 40px
}
.author_bio .author_topinfo{
  color: #074568;
  font-family: var(--font);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 125% */
  margin-bottom: 20px;
}
.author_bio .author-description{
  color: #000;
  font-family: var(--font);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 25px; /* 156.25% */
  margin-bottom: 0;
}

.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  background: #57CC99;
  position: absolute;
  top: 20px;
  right: 20px;
}

.code-container {
  position: relative;
}

.code-block {
  border-radius: 10px;
  background: #E6FFF4;
  color: #000;
  padding: 20px;
  padding-right: 80px;
  display: block;
  overflow-x: auto;
  min-height: 90px;
}



@media (max-width: 767px) {
  .blog-center-part .post-box {
    width: 100%;
  }
}


/*--dark mode css--*/

.dark-theme {}