
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Bold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Thin.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Medium.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-Light.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-ExtraLight.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins/Poppins-SemiBold.woff2") format("woff2"),
    url("../fonts/Poppins/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

body {
  font-family: "Poppins";
  font-size: 16px;
  line-height: 20px;
  position: relative;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a {
  display: block;
  cursor: pointer;
}

a {
  -webkit-tap-highlight-color: transparent;
  /* removes blue flash on mobile */
  outline: none;
  /* removes focus outline */
}

a:focus,
a:active {
  background: none;
  /* removes any background highlight */
  outline: none;
}

.container {
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  overflow: hidden;
}

.top_bar {
  background: #137e3f;
  padding: 8px 0;
  text-align: center;
  font-size: 16px;
  color: #fff;
  line-height: 24px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 16px 0;
}

.header_link ul a:hover,
.header_link ul li.current-menu-item>a {
  color: #137e3f;
}

.logo img {
  display: block;
}

.header_link ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.header_link ul a {
  text-decoration: none;
  color: #646568;
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  padding: 10px 0px;
}

.header_link ul li.menu-item-has-children {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.header_link ul li.menu-item-has-children>a {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}

.header_link ul li.menu-item-has-children>a::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2025/03/down-chevron-gray.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.header_link ul li.menu-item-has-children.active>a::after {
  background-image: url("/wp-content/uploads/2025/03/down-chevron-green.svg");
  transform: rotate(180deg);
}

.header_link ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #fff;
  padding: 20px;
  flex-direction: column;
  row-gap: 20px;
  max-width: 220px;
  width: 100%;
  transform: translateX(-40%);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.header_link ul li.menu-item-has-children.active ul.sub-menu {
  display: block;
}

.header_link_hamberg {
  display: none;
}

.header_ham-close {
  display: none;
}

@media only screen and (max-width: 768px) {

  /* Hamburger */
  .header_link_hamberg {
    display: block;
    cursor: pointer;
    z-index: 1001;
  }

  /* Menu wrapper */
  .header_links_inner {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 420px;
    height: 100vh;
    background: #f5f5f5;
    padding: 40px 25px;
    transform: translateX(100%);
    transition: transform 0.45s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
  }

  /* OPEN STATE */
  .header_links_inner.is-open {
    transform: translateX(0);
  }

  /* Close icon */
  .header_ham-close {
    display: flex;
    justify-content: flex-end;
    cursor: pointer;
    margin-bottom: 30px;
  }

  /* Menu list */
  .header_links_inner ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .header_links_inner>ul>li>a {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 10px 0px 20px;
    border-bottom: 1px solid #dfdfdf;
  }

  /* Hide desktop menu */
  .header_links_inner {
    display: block;
  }

  .header_links_inner span {
    background-color: transparent;
  }

  /* Prevent body scroll when menu open */
  body.menu-open {
    overflow: hidden;
  }

  .header_link ul li.menu-item-has-children.active ul.sub-menu {
    position: relative;
    transform: unset;
    width: 100%;
    max-width: 100%;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
  }

  .menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
  }

  .menu-open {
    overflow: hidden;
  }

  /* Remove mobile tap highlight */
  .header_ham-close,
  .header_ham-open,
  .header_link_hamberg {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: transparent;
  }

  /* Remove focus / active background */
  .header_ham-close:focus,
  .header_ham-close:active,
  .header_ham-open:focus,
  .header_ham-open:active {
    outline: none;
    background: transparent;
  }

  .header_link ul li.menu-item-has-children.active ul.sub-menu {
    box-shadow: unset !important;
    background-color: transparent !important;
    border-bottom: 1px solid #dfdfdf;
  }

}

@media only screen and (max-width: 575px) {
  /* .header_link ul li ul.sub-menu {
    transform: translateX(-50%);
  } */

  .header_link ul {
    gap: 14px;
  }
}

.blog-page .blog-link a,
.about-page .about-link a,
.contact-page .contact-link a {
  color: #137e3f;
}

.footer {
  background-image: url("../images/footer.png");
  min-height: 509px;
  max-height: 509px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
}

.footer_page_link ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer_link,
.footer_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}

.footer {
  display: flex;
  align-items: end;
}

.footer_content {
  border-bottom: 1px solid #646568;
  padding-bottom: 26px;
  margin-bottom: 26px;
}

.footer_page_link ul li a {
  color: #646568;
  text-decoration: none;
  font-family: "Poppins";
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.footer_main .social_share_btn {
  display: flex;
  gap: 16px;
}

.footer_main .social_share_btn a {
  display: inline-flex;
  /* width: 100%;
  height: 100%;
  min-height: 45px;
  max-height: 45px; */
}

.footer_logo a {
  display: block;
}

/* -------------------------------------------------------------------------------------- */

/* -------- Overlay -------- */
.fs_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
}

.fs_overlay.active {
  opacity: 1;
  visibility: visible;
}

/* -------- Popup Container -------- */
.fsmobile_popup {
  position: fixed;
  bottom: -100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 390px;
  height: auto;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
}

.fsmobile_popup.active {
  bottom: 0;
}

/* -------- Top Section -------- */
.fs_pop_image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #4cff95 0%, #00a845 50%);
  padding-top: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.fs_pop_image .fs_pop_bh {
  margin-right: -70px;
  width: 100%;
  text-align: end;
}

.fs_pop_image .fs_pop_bh img {
  width: 100%;
  max-width: 205px;
  height: auto;
}

.fs_pop_up {
  width: 100%;
  margin-bottom: 13px;
  position: relative;
  z-index: 99;
  /* animation: floatUp 3s ease-in-out infinite; */
}

.fs_pop_image .fs_pop_up img {
  width: 100%;
  max-width: 214px;
  height: auto;
}

/* -------- Content Section -------- */
.fs_pop_content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 13px 40px;
  margin-top: -168px;
  text-align: center;
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.fs_pop_icon {
  position: relative;
  box-shadow: 0px 4px 6px 0px #0000000d;
  border: 3px solid #ebebeb;
  border-radius: 10px;
  background-color: #ffffff;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.fsmobile_popup.active .fs_pop_icon {
  transform: scale(1);
}

.fs_pop_inner_content p {
  font-weight: 500;
  font-size: 14px;
  color: #4b4b4b;
  min-height: 27px;
}

.fs_pop_inner_content span {
  position: relative;
  color: #00b249;
}

.fs_pop_inner_content span::after {
  content: "";
  background-image: url("/wp-content/uploads/2025/11/fs-line.svg");
  width: 100%;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.fs_pop_inner_content h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 33px;
  color: #4b4b4b;
  margin-bottom: 23px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.fsmobile_popup.active .fs_pop_inner_content h3 {
  opacity: 1;
  transform: translateY(0);
}

.fs_pop_inner_content {
  width: 100%;
}

/* -------- Buttons -------- */
.fs_pop_btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0px 13px;
  width: 100%;
}

.fs_pop_btns .primary_btn {
  background: #00b249;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  width: 100%;
}

.fs_pop_btns .primary_btn:hover {
  background: #008f3d;
}

.fs_pop_btns .fs_download-button {
  font-size: 16px;
  color: #00b249;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-decoration: underline;
}

.fs_pop_btns .fs_download-button:hover {
  opacity: 0.8;
}

/* -------- Close Button -------- */
.fs_close_btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.fs_close_btn:hover {
  transform: rotate(90deg);
}

/* ------------------------------------------------------------------------------ */

.social_icon a {
  display: block;
}

.social_icon a img {
  display: block;
}

.social_icon {
  display: flex;
  gap: 16px;
  align-items: center;
}

.copyright_section {
  color: #646568;
  font-family: "Poppins";
  font-size: 20px;
  font-weight: 400;
  line-height: 25.5px;
  text-align: center;
  margin-bottom: 47px;
}

.copyright_section a {
  display: inline-block;
  color: inherit;
}

.copyright_section a:hover {
  color: #00b249;
}

.footer_link {
  margin-bottom: 65px;
}

.page_title_main {
  padding: 64px 0;
}

.page_title_main h1.page_title {
  font-family: "Poppins";
  font-size: 49px;
  font-weight: 700;
  line-height: 62.47px;
  text-align: center;
  margin-bottom: 31px;
  position: relative;
}

.header {
  box-shadow: 0px 6px 37px 0px #0000000d;
  position: sticky;
  top: 0;
  z-index: 99;
  background: #fff;
}

.page_title_main .scan_img {
  position: relative;
  color: #00b249;
  display: inline-block;
  font-family: "Poppins";
  font-size: 49px;
  font-weight: 700;
  line-height: 62.47px;
}

.page_title_main .scan_img::after {
  content: "";
  background-image: url("../images/border.png");
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 100%;
  left: 60%;
  transform: translateX(-50%);
}

.page_title_main .scan_img::before {
  content: "";
  background-image: url("../images/Group_right.png");
  width: 60px;
  background-repeat: no-repeat;
  height: 100%;
  gap: 0px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  right: -33px;
  top: -15px;
}

p.page_discription {
  font-family: "Poppins";
  font-size: 31px;
  font-weight: 400;
  line-height: 39.52px;
  text-align: center;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  color: #646568;
  padding-top: 64px;
}

.blog p.page_discription {
  padding-top: 0px;
}

.wpcf7-not-valid-tip {
  margin-top: 15px;
  color: #dc3232;
}

.oop-main-title {
  padding-top: 48px;
  text-align: center;
  margin-bottom: 16px;
}

.oop-main-title h1 {
  font-size: 161px;
  font-weight: 600;
  line-height: 205px;
  color: #137e3f;
}

.oop-main-title p {
  font-size: 25px;
  line-height: 31px;
  color: #646568;
}

.oop-img-content img {
  width: 100%;
}

/* Hide login on forum page */
.bbpressloginlinks a.bbpressloginurl {
  display: none;
}

#bbpress-forums li.bbp-body ul.forum,
#bbpress-forums li.bbp-body ul.topic {
  padding: 16px 20px;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #dfdfdf;
  background: transparent;
  display: grid;
  grid-template-columns: 60% 10% 10% 20%;
  overflow: visible;
}

li.bbp-forum-info,
li.bbp-topic-title {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

li.bbp-topic-title p.bbp-topic-meta {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  margin: 0px !important;
  gap: 6px;
}

li.bbp-topic-title p.bbp-topic-meta span a {
  display: flex;
  align-items: center;
}

li.bbp-forum-reply-count,
li.bbp-forum-topic-count,
li.bbp-topic-reply-count,
li.bbp-topic-voice-count {
  width: 100%;
  text-align: start;
}

li.bbp-forum-freshness,
li.bbp-topic-freshness {
  width: 100%;
  text-align: start !important;
}

.forum-titles li {
  font-family: "Poppins";
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 22px;
}

#bbpress-forums li.bbp-body ul li.bbp-forum-info a {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 24px;
  line-height: 30px;
  color: #000000;
  text-decoration: none;
}

#bbpress-forums li.bbp-body ul li.bbp-forum-info:hover a {
  color: #00b249;
}

#bbpress-forums li.bbp-body ul li.bbp-forum-topic-count,
#bbpress-forums li.bbp-body ul li.bbp-forum-reply-count,
#bbpress-forums li.bbp-body ul li.bbp-forum-freshness a,
#bbpress-forums li.bbp-body ul li.bbp-forum-freshness span {
  font-family: "Poppins";
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 20px;
  color: #646568;
}

#bbpress-forums li.bbp-footer,
#bbpress-forums li.bbp-header {
  background: transparent;
  padding: 16px 20px;
  border: none;
}

#bbpress-forums ul.bbp-forums,
#bbpress-forums ul.bbp-lead-topic,
#bbpress-forums ul.bbp-replies,
#bbpress-forums ul.bbp-search-results,
#bbpress-forums ul.bbp-topics {
  border: none;
}

.page-id-578 .blog_summary p, .page-id-2663 .blog_summary p {
  font-size: 16px;
  font-weight: 500;
  color: #646568;
  width: 100%;
  max-width: 1064px;
  margin: 0 auto;
  text-align: center;
}
.page-id-2663 .blog_summary p{
  font-size: 20px;
}

.page-id-578 .summary_title::after, .page-id-2663 .summary_title::after {
  display: none;
}

.page-id-578 .summary_title, .page-id-2663 .summary_title {
  width: 100%;
  justify-content: center;
}

.page-id-578 .blog_summary {
  padding: 54px 20px 0;
}

.page-id-578 .blog_summary p img {
  display: block;
  margin: 0 auto;
  margin-top: 60px;
}

.page-id-578 .blog_summary p a, .page-id-2663 .blog_summary p a {
  display: inline-block;
  color: inherit;
}

.page-id-578 .blog_summary p a:hover, .page-id-2663 .blog_summary p a:hover {
  color: #00b249;
}

.footer-wrapper {
  width: 100%;
  background-color: #B3E8C8;
}

@media only screen and (max-width: 1900px) {
  .footer {
    background-size: contain;
  }

  .footer .container,
  .footer-wrapper {
    background-color: #B3E8C8;
  }
}

@media only screen and (max-width: 1200px) {
  .oop-main-title h1 {
    font-size: 100px;
    line-height: 150px;
  }

  .oop-main-title p {
    font-size: 20px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 1024px) {
  .oop-main-title h1 {
    font-size: 70px;
    line-height: 100px;
  }

  .oop-main-title p {
    font-size: 18px;
    line-height: 23px;
  }

  #bbpress-forums ul.bbp-forums,
  #bbpress-forums ul.bbp-lead-topic,
  #bbpress-forums ul.bbp-replies,
  #bbpress-forums ul.bbp-search-results,
  #bbpress-forums ul.bbp-topics {
    overflow-x: scroll !important;
    scrollbar-width: none;
  }
}

@media only screen and (max-width: 767px) {
  .oop-main-title {
    padding-top: 20px;
  }

  .oop-main-title h1 {
    font-size: 50px;
    line-height: 70px;
  }

  .oop-main-title p {
    font-size: 16px;
    line-height: 20px;
  }

  .page-id-578 .blog_summary p img {
    margin-top: 30px;
  }

  .page-id-578 .blog_summary {
    padding: 30px 15px 0;
  }

  .page-id-578 .blog_summary p, .page-id-2663 .blog_summary p {
    font-size: 14px;
    line-height: 18px;
  }

  .page-id-578 .summary_title{
    margin-bottom: 20px;
  }

  .footer_main .social_share_btn a img {
    width: 100%;
    max-width: 156px;
    height: 100%;
  }

  .forum-titles li {
    font-size: 16px;
    line-height: 20px;
  }

  #bbpress-forums ul.bbp-forums,
  #bbpress-forums ul.bbp-lead-topic,
  #bbpress-forums ul.bbp-replies,
  #bbpress-forums ul.bbp-search-results,
  #bbpress-forums ul.bbp-topics {
    width: 700px !important;
  }
}

@media only screen and (max-width: 1024px) {

  .page_title_main h1.page_title,
  .page_title_main .scan_img {
    font-size: 45px;
    line-height: 50px;
  }

  .banner_detail p {
    font-size: 28px;
    line-height: 32px;
  }

  p.page_discription {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
  }

  .page_title_main .scan_img::before {
    right: -45px;
  }
}

@media only screen and (max-width: 991px) {

  .page_title_main h1.page_title,
  .page_title_main .scan_img {
    font-size: 30px;
    line-height: 35px;
  }

  .banner_detail p {
    font-size: 20px;
    line-height: 30px;
  }

  .header_link ul{
    gap: 10px;
  }
  .header_link ul a{
    font-size: 16px;
  }
  a.navbar-brand {
    max-width: 140px;
}

}

@media only screen and (max-width: 768px) {
  .footer_page_link ul li a {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.02em;
  }

  .top_bar {
    font-size: 14px;
    color: #fff;
    line-height: 18px;
  }

  .copyright_section {
    font-size: 16px;
    line-height: 20px;
  }

  .footer_page_link ul {
    gap: 10px;
  }

  .header_link ul a {
    font-size: 16px;
    line-height: 20px;
    padding: 0px;
  }

  .footer_link,
  .footer_content {
    justify-content: center;
  }

  .footer_content {
    flex-direction: column;
  }

  .page_title_main .scan_img::before {
    right: -45px;
    top: -18px;
  }

  .page_title_main {
    padding: 35px 0;
  }

  p.page_discription {
    font-size: 16px;
    line-height: 20px;
    padding-top: 35px;
  }

  .header_link ul li.menu-item-has-children.active ul.sub-menu li a {
    padding: 10px 0px;
  }
}

@media screen and (max-width: 479px) {

  .page_title_main h1.page_title,
  .page_title_main .scan_img,
  .log_heading h1.page_title,
  .section_title {
    font-size: 25px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .logo {
    /* width: 100%; */
    text-align: center;
    display: flex;
    /* justify-content: center; */
    /* margin-bottom: 10px; */
  }

  /* .header_link {
    width: 100%;
  } */

  .footer_page_link ul li a,
  .copyright_section {
    font-size: 14px;
  }

  .footer_link {
    margin-bottom: 50px;
  }

  .page_title_main .scan_img::before {
    right: -47px;
    top: -13px;
  }
}

.author_profile_info {
  position: relative;
  margin-bottom: 64px !important;
  z-index: 1;
}

.author_back-image {
  position: relative;
  width: 100%;
  height: 201px;
  background-color: #00b2491a;
}

.author_back-image::before {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2025/07/vector_left.svg");
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 80%;
}

.author_back-image::after {
  content: "";
  display: block;
  background-image: url("/wp-content/uploads/2025/07/vector_right.svg");
  background-repeat: no-repeat;
  width: 709px;
  position: absolute;
  top: 0;
  right: 0;
  height: 80%;
}

.author_back-image img {
  position: relative;
  width: 100%;
  height: 201px;
  object-fit: cover;
}

.author_designation {
  margin-bottom: 24px;
}

.author_designation span {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 31px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #646568;
}

.author_profile_inner {
  /* position: absolute;
    top: 70%;
    bottom: 0px;
    width: 100%;
    transform: translateY(-50%); */
  margin-top: -110px;
  position: relative;
  z-index: 99;
}

.author-profile-wrapper {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.author-profile-wrapper .author-avatar {
  max-width: 220px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.author-profile-wrapper .author-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.author-profile-wrapper .author-social {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.author-profile-wrapper .author-details {
  width: 100%;
}

.author-profile-wrapper .author-social-info {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
}

.author-profile-wrapper .author-name {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 49px;
  line-height: 74px;
  vertical-align: middle;
  color: #000000;
}

.author-profile-wrapper .author-bio {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #646568;
}

@media screen and (max-width: 1024px) {
  .author_profile_inner {
    margin-top: -85px;
  }

  .author-profile-wrapper .author-social img {
    width: 24px !important;
    height: 24px !important;
    object-fit: cover;
  }

  .author-profile-wrapper .author-name {
    font-size: 39px;
    line-height: 50px;
  }

  .author_designation span {
    font-size: 26px;
    line-height: 100%;
  }

  .author-profile-wrapper .author-bio {
    font-size: 18px;
    line-height: 22px;
  }
}

@media screen and (max-width: 768px) {
  .author_profile_inner {
    margin-top: -80px;
  }

  .author-profile-wrapper .author-bio {
    font-size: 16px;
    line-height: 20px;
  }

  .author-profile-wrapper .author-avatar {
    max-width: 120px;
  }
}

@media screen and (max-width: 600px) {
  .author-profile-wrapper {
    flex-wrap: wrap;
  }

  .author-profile-wrapper .author-social-info {
    margin-top: 0px;
  }

  .author-profile-wrapper .author-name {
    font-size: 34px;
    line-height: 40px;
  }

  .author-profile-wrapper .author-social-info {
    flex-wrap: wrap;
  }

  .author-profile-wrapper .author-bio {
    font-size: 16px;
    line-height: 20px;
  }
}

@media screen and (max-width: 480px) {
  .author-profile-wrapper .author-avatar {
    width: 170px;
  }

  .author-profile-wrapper .author-name {
    font-size: 30px;
    line-height: 40px;
  }

  .author_designation span {
    font-size: 24px;
    line-height: 30px;
  }

  .fsmobile_popup {
    bottom: -150%;
  }
}

@media (max-width: 768px) {
  .footer {
    min-height: 423px;
    padding-top: 64px;
  }

  .footer_logo {
    max-width: 162px;
    width: 100%;
  }

  .footer_content {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .footer_link {
    margin-bottom: 40px;
  }

  .copyright_section {
    margin-bottom: 24px;
  }

  .social_icon a {
    width: 32px;
    height: 32px;
  }
}