/* @font-face {
    font-family: 'segoe_uibold';
    src: url('../fonts/segoeuib-webfont.woff2') format('woff2'),
         url('../../fonts/segoeuib-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

} */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif !important;
  font-size: 1rem;
}

.form-control:focus, .form-control:hover, .form-select:focus, .form-select:hover {
  outline: none;
  box-shadow: none;
}

textarea.form-control {
  height: calc(5.65em + 5.25rem);
}

a {
  outline: 0;
  text-decoration: none;
  color: #00a85a;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 600;
}

h1, .h1, .font-size-xxxl {
  font-size: 2rem;
}

h2, .h2, .font-size-xxl {
  font-size: 1.75rem;
}

h3, .h3, .font-size-xl {
  font-size: 1.5rem;
}

h4, .h4, .font-size-lg {
  font-size: 1.25rem;
}

h5, .h5, .font-size-md {
  font-size: 1rem;
}

h6, .h6, .font-size-xs {
  font-size: 0.75rem;
}

.font-size-sm {
  font-size: 0.8rem;
}

.bg-primary {
  background-color: #00a85a !important;
}
.bg-primary2 {
  background-color: rgb(246, 250, 253) !important;
}
.bg-white {
  background-color: #ffffff !important;
}
.bg-primary-light {
  background-color: rgba(0, 168, 90, 0.1) !important;
}
.bg-secondary {
  background-color: transparent;
}
.bg-secondary-light {
  background-color: transparent;
}
.bg-blue {
  background-color: transparent;
}
.bg-dark-blue {
  background-color: transparent;
}
.bg-gray {
  background-color: transparent;
}

.form-label {
  margin-bottom: 0.3rem;
  font-size: 1.125rem;
  color: #000000;
}

.form-control, .form-select {
  height: 3rem;
  font-size: 1rem;
  border-color: #00a85a;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(0, 0, 0, 0.9);
  box-shadow: 0 0 0 0.2rem rgba(0, 168, 90, 0.05);
  outline: none;
}
.form-control-sm, .form-select-sm {
  height: 30px;
  font-size: 0.725rem;
}
.form-control-icon, .form-select-icon {
  position: relative;
}
.form-control-icon .form-control, .form-select-icon .form-control {
  padding-right: 2.5rem;
}
.form-control-icon .btn-form-text, .form-select-icon .btn-form-text {
  position: absolute;
  top: 0.2rem;
  right: 0.25rem;
}

@media screen and (max-width: 1199.5px) {
  .showing-block .form-check {
    display: inline-block;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1199.5px) and (max-width: 575px) {
  .showing-block .form-check + .form-check {
    display: inline-block;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 1199.5px) {
  .title-md {
    margin: 1rem 0;
  }
}
.form-check {
  padding: 0;
}
.form-check input[type=checkbox] {
  display: none;
}
.form-check input[type=checkbox] + label {
  position: relative;
  padding-left: 1.8rem;
  user-select: none;
  cursor: pointer;
  line-height: 1.1;
}
.form-check input[type=checkbox] + label:before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 0.25rem;
  border: solid 1px #ccc;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  transition-duration: 0.2s;
}
.form-check input[type=checkbox] + label:after {
  content: "";
  border: solid #ffffff;
  border-width: 0 0 2px 2px;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 8px;
  height: 5px;
  transform: rotate(0deg) scale(0);
  transition-duration: 0.2s;
}
.form-check input[type=checkbox]:checked + label:before {
  background-color: #00a85a;
  border-color: #00a85a;
}
.form-check input[type=checkbox]:checked + label:after {
  transform: rotate(-50deg) scale(1);
}
.form-check input[type=checkbox]:disabled + label {
  cursor: not-allowed;
}
.form-check input[type=checkbox]:disabled + label:before {
  background-color: transparent;
  border-color: #bdbdbd;
}
.form-check input[type=checkbox]:disabled + label:after {
  background-color: #bdbdbd;
}
.form-check input[type=radio] {
  display: none;
}
.form-check input[type=radio] + label {
  position: relative;
  padding-left: 1.8rem;
  user-select: none;
  cursor: pointer;
  line-height: 1.1;
}
.form-check input[type=radio] + label:before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: solid 1px #ccc;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  transition-duration: 0.2s;
}
.form-check input[type=radio] + label:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #00a85a;
  transform: rotate(0deg) scale(0);
  transition-duration: 0.2s;
}
.form-check input[type=radio]:checked + label:before {
  background-color: #ffffff;
  border-color: #00a85a;
}
.form-check input[type=radio]:checked + label:after {
  transform: rotate(-50deg) scale(1);
}

.form-check.green-rectangal-check input[type=checkbox] + label:after {
  top: 3px;
  left: 3px;
  width: 9px;
}

.form-check.primary-rectangal-check input[type=checkbox]:checked + label:before {
  background-color: #00a85a;
  border-color: #00a85a;
}

.btn-xl {
  height: 3rem;
}
.btn-lg {
  height: auto;
}
.btn-radius-xl {
  border-radius: 1.5rem;
}
.btn-arrow-right {
  width: 1.625rem;
  height: 1.625rem;
  line-height: 1.625rem;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(0, 168, 90, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-arrow-right:hover, .btn-arrow-right:focus {
  background-color: #00a85a;
  transform: scale(1.2);
}
.btn-arrow-right:hover svg g line, .btn-arrow-right:focus svg g line {
  stroke: #ffffff;
}
.btn-primary {
  background-color: #00a85a;
  border-color: #00a85a;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: rgb(0, 117, 62.6785714286);
  border-color: rgb(0, 117, 62.6785714286);
}
.btn-outline-secondary {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
}
.btn-outline-secondary img {
  margin-right: 1.5rem;
}
.btn-outline-secondary:hover, .btn-outline-secondary:focus {
  color: black;
  background-color: transparent;
  border-color: rgb(0, 117, 62.6785714286);
}
.btn-outline-primary {
  background-color: transparent;
  border-color: #00a85a;
  color: rgba(0, 0, 0, 0.7);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  color: #ffffff;
  background-color: #00a85a;
  border-color: #00a85a;
}
.btn-gray {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  border-radius: 20px;
}
.btn-gray:hover, .btn-gray:focus {
  background-color: #00a85a;
  color: #ffffff;
}
.btn-gray-hide {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffffff;
}
.btn-gray-hide:hover, .btn-gray-hide:focus, .btn-gray-hide:active, .btn-gray-hide :not(.btn-check) + .btn:active {
  background-color: black !important;
  color: #ffffff !important;
}
.btn-success {
  position: relative;
}
.btn-success .badge {
  position: absolute;
  top: -0.625rem;
  right: -0.313rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #00a85a;
  border-radius: 50%;
  font-size: 0.688rem;
  text-align: center;
  display: flex;
  align-items: center;
  color: white;
}
.btn:hover, .btn:focus .btn:active {
  outline: none;
  box-shadow: none;
}

.gap-1 {
  gap: 0.5rem;
}
.gap-2 {
  gap: 1rem;
}
.gap-3 {
  gap: 1.5rem;
}
.gap-4 {
  gap: 2rem;
}
.gap-5 {
  gap: 2.5rem;
}

.border-light {
  border: 1px solid #E2E2E2 !important;
}
.border-blue {
  border: 1px solid #00a85a !important;
}

button, input, optgroup, select, textarea {
  font-family: "Open Sans", sans-serif;
}

.bluelight-bg {
  background-color: rgb(246, 250, 253);
}

.no-border {
  border: none;
}

.section {
  padding: 3rem 0;
}

.header-title .title {
  font-size: 2rem;
}
.header-title .title-lg {
  font-size: 1.875rem;
}

.title-md {
  font-size: 1.5rem;
}

.title-sm {
  font-size: 1.25rem;
}

.login-header .title {
  font-size: 2.125rem;
}
.login-header p {
  font-size: 1.125rem;
}

.artical-card {
  border-width: 0 0 1px 0;
  border-color: #E2E2E2;
  border-style: solid;
  border-radius: 0;
}
.artical-card .card-body {
  padding: 0 0 0 1rem;
}
.artical-card .card-body .card-title {
  font-size: 1.375rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 29.688rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .artical-card .card-body .card-title {
    width: 100%;
  }
}
.artical-card .card-body p {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.5);
}
.artical-card .card-body .article-title {
  font-size: 1.125rem;
}
.artical-card .card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  width: 100%; /* Ensures the ul takes full width of the parent */
  justify-content: space-between; /* Aligns list items to the start */
  align-items: start; /* Vertically centers list items */
}
.artical-card .card-body ul li {
  margin: 0;
  padding: 0 0.5rem;
  font-size: 0.875rem;
  text-align: left;
  border-left: 1px solid #E2E2E2; /* Adds a border to the left of li */
  /* flex: none;
  width: 25%; */
  /* strong {display: block;} */
}
.artical-card .card-body ul li:first-child {
  border-left: none;
  padding-left: 0;
  flex: none;
  width: 35%;
}
.artical-card .card-body ul li:first-child strong {
  font-weight: 700;
}
.artical-card .card-body ul li:nth-of-type(2) {
  width: 35%;
}
.artical-card .card-body ul li:nth-of-type(3) {
  width: 15%;
}
.artical-card .card-body ul li:nth-of-type(4) {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .artical-card .card-body ul li {
    flex: 1;
  }
  .artical-card .card-body ul li strong {
    display: block;
  }
}
.artical-card .card-body ul.recent-issues-list li:nth-of-type(2) {
  width: 50%;
}
.artical-card .card-body ul.recent-issues-list li:nth-of-type(2) {
  width: 15%;
}
.artical-card .card-body ul.recent-issues-list li:nth-of-type(3) {
  width: 15%;
}
.artical-card .card-body ul.recent-issues-list li:nth-of-type(4) {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .artical-card .card-body {
    padding: 1rem 0;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .artical-card .card-body {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  .artical-card > .d-flex {
    display: block !important;
  }
  .artical-card img {
    margin: 0 auto;
    display: block;
  }
}

.articels-image-banner {
  position: relative;
  overflow: hidden;
  background: #ddd;
  padding-bottom: 11%;
  border-radius: 0px;
  /* width: 15rem; */
  margin-right: 2rem;
}
.articels-image-banner img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}

.trending-card p.card-text {
  font-weight: 600;
  font-size: 1.25rem;
  color: rgb(0, 0, 0);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 29.688rem;
  display: inline-block;
}

.btn-transparent-right-arrow {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: none;
  border: none;
}
.btn-transparent-right-arrow img {
  margin-left: 0.5rem;
}
.btn-transparent-right-arrow:hover, .btn-transparent-right-arrow:focus {
  color: #00a85a;
  border: none;
}

.white-bg {
  background-color: #ffffff;
}

/* Header Section Start */
.header {
  transition-duration: 0.4s;
  z-index: 9;
  position: relative;
  width: 100%;
  background-color: #ffffff;
}
.header .navbar {
  background-color: #ffffff;
}
.header .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}
.header .navbar .navbar-brand img {
  height: 3.375rem;
}
.header .navbar .navbar-nav .nav-link {
  color: #000000;
  padding: 1rem 0.938rem;
  font-size: 1.063rem;
}
.header .navbar .navbar-nav .nav-link:hover, .header .navbar .navbar-nav .nav-link:focus {
  color: rgb(0, 117, 62.6785714286);
}
.header .navbar .btn-outline-primary {
  color: #ffffff;
  border-color: #00a85a;
  padding: 0.688rem 3.125rem;
  font-size: 1.125rem;
  margin-left: 1rem;
  background-color: #00a85a;
  height: auto;
  line-height: 1.8;
  font-weight: 600;
}
.header .navbar .btn-outline-primary:hover, .header .navbar .btn-outline-primary:focus {
  background-color: #ffffff;
  color: #00a85a;
}
@media screen and (max-width: 767px) {
  .header .navbar .btn-outline-primary {
    padding: 0.688rem 1rem;
    font-size: 1rem;
  }
}
.header .sub-nav {
  background-color: #00a85a;
  padding: 0;
}
.header .sub-nav .container {
  position: relative;
}
@media screen and (max-width: 1199.5px) {
  .header .sub-nav .container {
    padding-right: 4rem;
  }
}
.header .sub-nav .nav .nav-link {
  color: #ffffff;
  padding: 1.25rem 1.563rem;
  text-transform: uppercase;
  font-size: 1.125rem;
}
.header .sub-nav .nav .nav-link:hover {
  background-color: rgb(0, 193.5, 103.6607142857);
}
@media screen and (max-width: 991px) {
  .header .sub-nav .nav .nav-link {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #fff;
  }
}
.header .sub-nav .nav-icons .icon {
  position: relative;
  padding: 1.25rem 1rem;
}
.header .sub-nav .nav-icons .icon .badge {
  position: absolute;
  top: 0.625rem;
  right: 0.313rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #7DCFB6;
  border-radius: 50%;
  font-size: 0.688rem;
  text-align: center;
  display: flex;
  align-items: center;
}
.header .sub-nav .nav-icons .icon:hover {
  color: white;
}
@media screen and (max-width: 1199.5px) {
  .header .sub-nav {
    padding: 1rem 0;
  }
}
.header .toggle-btn {
  display: none;
}
.header .toggle-btn:focus {
  outline: none;
}
.header .toggle-btn span, .header .toggle-btn span:before, .header .toggle-btn span:after {
  right: 0;
  content: "";
  position: absolute;
  display: block;
  width: 2rem;
  height: 2px;
  background: #ffffff;
  cursor: pointer;
}
.header .toggle-btn span {
  top: 1.125rem;
  right: 1rem;
}
.header .toggle-btn span:before {
  top: -0.625rem;
}
.header .toggle-btn span:after {
  bottom: -0.625rem;
  width: 2rem;
}
.header .toggle-btn span, .header .toggle-btn span:before, .header .toggle-btn span:after {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.header .toggle-btn.active span {
  background-color: transparent;
}
.header .toggle-btn.active span:before, .header .toggle-btn.active span:after {
  top: 0;
  background: #ffffff;
}
.header .toggle-btn.active span:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header .toggle-btn.active span:after {
  top: 10px;
  -webkit-transform: translateY(-10px) rotate(-45deg);
  -ms-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
  width: 25px;
  left: 0;
}
@media screen and (max-width: 991px) {
  .header .toggle-btn {
    display: block;
  }
}
.header .bg-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  display: none;
}
.header .bg-overlay.active {
  display: block;
}
@media screen and (max-width: 991px) {
  .header .toggle-btn.active {
    right: 18rem;
    z-index: 999999;
    top: 0px;
    position: fixed;
  }
  .header #navbar {
    position: fixed;
    top: 0;
    right: -18.75rem;
    width: 17.5rem;
    height: 100% !important;
    background-color: #00a85a;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    overflow: auto;
    z-index: 99999;
    padding: 2rem 1rem;
    box-shadow: inset 10px 1px 6px -6px rgba(0, 0, 0, 0.1);
    margin: 0;
    align-items: self-start;
  }
  .header #navbar.open {
    right: 0;
  }
  .header #navbar .nav.justify-content-end {
    justify-content: start !important;
    display: block;
  }
}

#header.affix {
  position: fixed;
  left: 0;
  top: 0;
}

/* Header Section Start */
/* search Section Start */
.search-section {
  background-color: #ffffff;
  background: url(../images/banner-img.png);
  background-repeat: no-repeat;
  background-position: top right;
  padding: 5rem 0;
  background-size: 44rem;
}
@media screen and (max-width: 767px) {
  .search-section {
    padding-top: 3rem;
    padding-bottom: 0;
  }
  .search-section .container {
    height: auto !important;
  }
}
.search-section .search--fiels {
  margin: 0;
}
.search-section .title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 2rem;
  font-weight: 300;
}
.search-section .title strong {
  font-weight: 600;
}
.search-section .title strong span {
  color: #00a85a;
}
@media screen and (max-width: 767px) {
  .search-section .title {
    font-size: 1.75rem;
  }
}
.search-section .input-group input[type=text].form-control {
  width: 44%;
}
@media screen and (max-width: 767px) {
  .search-section .input-group input[type=text].form-control {
    width: 100%;
    border-radius: 8px !important;
    margin-bottom: 1rem;
  }
}
.search-section .input-group .form-control, .search-section .input-group .form-select {
  border-radius: 8px;
  border: 1px solid #000000;
  height: 5rem;
}
@media screen and (max-width: 767px) {
  .search-section .input-group .form-control, .search-section .input-group .form-select {
    width: 100%;
    border-radius: 8px !important;
    margin-bottom: 1rem;
  }
}
.search-section .input-group .btn-primary {
  background-color: #00a85a;
  border-color: #00a85a;
  height: 5rem;
}
.search-section .input-group .btn-primary:hover {
  background-color: rgb(0, 117, 62.6785714286);
  border-color: rgb(0, 117, 62.6785714286);
}
@media screen and (max-width: 767px) {
  .search-section .input-group .btn-primary {
    border-radius: 8px !important;
    width: auto;
    margin-left: auto !important;
    margin-right: auto;
    display: block;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .search-section .input-group {
    flex-direction: column;
    width: 100%;
    display: block;
  }
}
.search-section .btn-link {
  color: #000000;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.175rem;
}
.search-section .btn-link:hover {
  color: black;
}
.search-section .img-item {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding-bottom: 58%;
}
.search-section .img-item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.search-section .img-item .img-body {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}

.explore-library-sec .col {
  border-left: 1px solid #E2E2E2;
  padding: 0 1.75rem;
}
.explore-library-sec .col h3 {
  font-size: 2.5rem;
  margin: 0 0 1.25rem;
}
.explore-library-sec .col p {
  font-size: 1.5em;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .explore-library-sec .col p {
    font-size: 1.25rem;
  }
}
.explore-library-sec .col a {
  color: #000000;
}
.explore-library-sec .col a h3 {
  font-size: 2.5rem;
  margin: 0 0 1.25rem;
}
@media screen and (max-width: 767px) {
  .explore-library-sec .col a h3 {
    font-size: 2rem;
  }
}
.explore-library-sec .col a p {
  font-size: 1.5em;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .explore-library-sec .col a p {
    font-size: 1.25rem;
  }
}
.explore-library-sec .col a p img {
  margin-left: 1.5rem;
}
.explore-library-sec .col:first-child {
  border: none;
  padding-left: 0;
}
@media screen and (max-width: 1199.5px) {
  .explore-library-sec .col:first-child {
    width: 100%;
    flex: 0 0 auto;
    text-align: center;
  }
  .explore-library-sec .col:first-child p {
    margin: 0;
  }
  .explore-library-sec .col:first-child h3 {
    margin-bottom: 2.5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 1199.5px) and (max-width: 767px) {
  .explore-library-sec .col:first-child h3 {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 1199.5px) {
  .explore-library-sec .col {
    width: 25%;
    flex: 0 0 auto;
    text-align: center;
    padding: 0 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .explore-library-sec .col {
    width: 50%;
    padding: 1.5rem 0;
    border-left: none;
  }
  .explore-library-sec .col:nth-of-type(2), .explore-library-sec .col:nth-of-type(3) {
    border-bottom: 1px solid #E2E2E2;
  }
  .explore-library-sec .col:nth-of-type(3), .explore-library-sec .col:nth-of-type(5) {
    border-left: 1px solid #E2E2E2;
  }
}
@media screen and (max-width: 1199.5px) {
  .explore-library-sec .d-flex {
    flex-wrap: wrap;
  }
}
/* search Section End */
.collections-btn {
  background-color: transparent;
  color: #000000;
  border: 2px solid rgba(0, 157, 68, 0.3);
  border-radius: 6px;
  padding: 1rem 3.625rem 1rem 2rem;
  font-size: 1.375rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  position: relative;
  height: 7rem;
  transition-duration: 0.3s;
}
@media screen and (max-width: 575px) {
  .collections-btn {
    padding: 1rem 2.625rem 1rem 2rem;
    font-size: 1.25em;
  }
}
.collections-btn .btn-arrow-right {
  margin-left: 1rem;
  width: 1.625rem;
  height: 1.625rem;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition-duration: 0.3s;
}
@media screen and (max-width: 575px) {
  .collections-btn .btn-arrow-right {
    right: 1rem;
  }
}
.collections-btn:hover, .collections-btn:focus {
  background-color: #00a85a;
  border-color: #00a85a;
  color: #ffffff;
  font-weight: 600;
}
.collections-btn:hover .btn-arrow-right, .collections-btn:focus .btn-arrow-right {
  opacity: 1;
  background-color: #ffffff;
}

.articles-sec .artical-card-wapper {
  padding: 1.5rem;
  border: 1px solid #E2E2E2;
  border-radius: 8px;
  height: 100%;
}
@media screen and (max-width: 1199.5px) {
  .articles-sec .artical-card-wapper {
    margin: 1rem 0;
    padding: 1rem;
  }
}
@media screen and (max-width: 575px) {
  .articles-sec .artical-card-wapper > .d-flex {
    display: block !important;
  }
  .articles-sec .artical-card-wapper .btn-transparent-right-arrow {
    display: block;
    text-align: right;
  }
}

.slick-slider .item {
  padding: 0 0.5rem;
}
.slick-slider .slick-prev, .slick-slider .slick-next {
  background: #00a85a;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  z-index: 1;
  margin-top: -0.75rem;
}
.slick-slider .slick-next {
  right: -1.375rem;
}
.slick-slider .slick-next:before {
  content: "";
  background: url("../images/arrow-right.svg") no-repeat center center;
  width: 3rem;
  height: 3rem;
  background-size: 1.25rem;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .slick-slider .slick-next {
    right: -5px;
  }
}
.slick-slider .slick-prev {
  left: -1.375rem;
}
.slick-slider .slick-prev:before {
  content: "";
  background: url("../images/arrow-left.svg") no-repeat center center;
  width: 3rem;
  height: 3rem;
  background-size: 1.25rem;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .slick-slider .slick-prev {
    left: -5px;
  }
}
.slick-slider .slick-dots li button:before {
  color: rgba(0, 168, 90, 0.2);
}
.slick-slider .slick-dots li.slick-active button:before {
  color: #00a85a;
}

.subscribers-slider .item {
  padding: 0 0.5rem;
}
.subscribers-slider .subscriber-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 157, 68, 0.3);
  padding: 1.5rem 1rem;
  border-radius: 8px;
  text-align: center;
}
.subscribers-slider .subscriber-card figure {
  height: 7.5rem;
}
.subscribers-slider .subscriber-card figure img {
  height: 100%;
}
.subscribers-slider .subscriber-card .card-img-top {
  /* max-width: 100px; */
  margin: 0 auto 10px auto;
  display: block;
}
.subscribers-slider .subscriber-card .card-title {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1rem;
  min-height: 2.5rem;
}

.subscribers-logo-sec .subscriber-logo-card {
  background-color: #ffffff;
  /* border:1px solid $light-gray-color; */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
}

.footer {
  background-color: #00a85a;
  color: #ffffff;
  padding: 5rem 0 1rem;
}
.footer .footer-section {
  flex: 1;
}
.footer .footer-section .footer__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}
@media screen and (max-width: 991px) {
  .footer .footer-section .footer__title {
    border-bottom: 1px solid #fff;
    padding-bottom: 0.875rem;
  }
  .footer .footer-section .footer__title:after, .footer .footer-section .footer__title:before {
    -webkit-transition: 0.5s all ease-out;
    transition: 0.5s all ease-out;
    display: inline-block;
    content: "";
    width: 9px;
    height: 2px;
    background: #ffffff;
    position: absolute;
    top: 12px;
    right: 10px;
    opacity: 1;
  }
  .footer .footer-section .footer__title:after {
    opacity: 1;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 6px;
  }
  .footer .footer-section .footer__title:before {
    opacity: 1;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 0px;
  }
  .footer .footer-section .footer__title.active:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 1;
  }
  .footer .footer-section .footer__title.active:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 1;
  }
}
.footer .footer-section p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}
.footer .footer-section ul {
  list-style: none;
  padding: 0;
}
.footer .footer-section ul li {
  margin: 5px 0;
}
.footer .footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.125rem;
  padding: 0.625rem 0;
}
.footer .footer-section ul li a:hover, .footer .footer-section ul li a:focus {
  color: #ffffff;
}
.footer .footer__about .footer-brand {
  height: 7rem;
  display: flex;
}
.footer .footer__about .footer-brand img {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .footer .footer__about .footer-brand {
    justify-content: center;
    margin-bottom: 1rem;
  }
}
.footer .footer__about .footer_about_title {
  font-size: 2.75rem;
  font-weight: 400;
}
@media screen and (max-width: 991px) {
  .footer .footer__about .footer_about_title br {
    display: none;
  }
}
.footer .footer__about .social-icons a {
  color: #ffffff;
  margin-right: 0.75rem;
  font-size: 1.75rem;
}
.footer .footer__about .social-icons a:hover {
  color: #ddd;
}
@media screen and (max-width: 991px) {
  .footer .footer__about .social-icons {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 991px) {
  .footer .footer__about {
    padding-bottom: 1.5rem;
    text-align: center;
  }
}
.footer .footer__bottom h5 {
  font-size: 1.125rem;
  color: #E2E2E2;
}
.footer .footer__bottom p {
  font-size: 0.875rem;
  color: #E2E2E2;
}
.footer .footer__bottom strong {
  font-weight: 700;
}

.faq-sec .faq-tab-sec {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .faq-sec .faq-tab-sec {
    display: block;
  }
}
.faq-sec .nav-tabs {
  border: none;
  border-radius: 8px;
  padding: 0.5rem;
  width: auto;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: 2px;
  overflow-y: hidden;
}
.faq-sec .nav-tabs .nav-item {
  border-left: 1px solid #E2E2E2;
  padding: 0 1rem;
  flex: 0 0 auto;
}
.faq-sec .nav-tabs .nav-item:first-child {
  border-left: 0px;
}
.faq-sec .nav-tabs .nav-item:last-child {
  border-radius: 0 8px 8px 0;
}
.faq-sec .nav-tabs .nav-item .nav-link {
  color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 0.5rem 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s;
  border-radius: 0;
  position: relative;
  font-size: 1rem;
}
.faq-sec .nav-tabs .nav-item .nav-link:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -0.5rem;
  width: 0;
  height: 3px;
  border-radius: 6px;
  background-color: #000000;
  transition-duration: 0.4s;
}
.faq-sec .nav-tabs .nav-item .nav-link.active {
  background-color: #ffffff;
  color: #000000;
}
.faq-sec .nav-tabs .nav-item .nav-link.active:before {
  width: 100%;
}
.faq-sec .nav-tabs .nav-item .nav-link:hover, .faq-sec .nav-tabs .nav-item .nav-link:focus {
  color: #000000;
}
.faq-sec .nav-tabs .nav-item .nav-link:hover:before, .faq-sec .nav-tabs .nav-item .nav-link:focus:before {
  width: 100%;
}

.accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #E2E2E2;
  background-color: transparent;
}
.accordion .accordion-item .accordion-button {
  background-color: transparent;
  color: #000000;
  font-weight: 600;
  padding: 1rem;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #00a85a;
}
.accordion .accordion-item .accordion-button:hover, .accordion .accordion-item .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion .accordion-item .accordion-body {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.7);
  font-size: 1rem;
  padding: 1rem;
}
.accordion .accordion-item .accordion-body ul {
  padding-left: 1.5rem;
}
.accordion .accordion-item .accordion-body ul li {
  list-style-type: disc;
}
.accordion .accordion-item .accordion-body ul li strong {
  color: rgba(0, 0, 0, 0.7);
}

.accordion-secondary .accordion-item .accordion-button {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.625rem;
  font-weight: 400;
}
.accordion-secondary .accordion-item .accordion-button strong {
  padding: 0 0.275rem;
}
.accordion-secondary .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000000;
}
.accordion-secondary .accordion-item .accordion-body {
  font-size: 1rem;
}

.accordion-issue_sec .accordion .accordion-item .accordion-button {
  font-size: 1.5rem;
  padding: 0.875rem 1rem;
}
.accordion-issue_sec .accordion .accordion-item .accordion-button:not(.collapsed) {
  font-weight: 400;
}
.accordion-issue_sec .accordion .accordion-item .accordion-button:not(.collapsed):hover, .accordion-issue_sec .accordion .accordion-item .accordion-button:not(.collapsed):focus {
  color: #00a85a;
}
.accordion-issue_sec .accordion .accordion-item .accordion-body {
  padding-top: 0;
}

.accordian-listing.accordion .accordion-item .accordion-button {
  padding: 0.5rem 1rem;
  margin: 0;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 1.75rem;
  height: 1.325rem;
  transform: translateY(-50%);
  cursor: pointer;
  margin-top: 0.895rem;
  background-image: url(../images/eye-icon-invisible.svg);
  background-size: 100%;
}

.password-toggle.show {
  background-image: url(../images/eye-icon-visible.svg);
}

.forgot-password {
  text-decoration: underline;
}
.forgot-password:hover, .forgot-password:focus {
  color: #000000;
}

.or-divider {
  padding: 0rem 1rem 3rem 1rem;
  position: relative;
  color: rgba(0, 0, 0, 0.6);
}
.or-divider span {
  display: inline-block;
  background-color: #ffffff;
  width: 3rem;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0.75rem auto 0;
}
.or-divider:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  transform: translateY(50%);
  left: 0;
}

.inner-banner-sec {
  background: rgba(125, 207, 182, 0.1);
  padding: 1rem 0 2rem 0; /* url('../images/inner-banner-bg.svg') no-repeat center right */
}

@media screen and (max-width: 1199.5px) {
  .inner-banner-header .d-flex {
    display: block !important;
  }
  .inner-banner-header .publisher.d-flex {
    display: flex !important;
  }
}

.custom-breadcrumb {
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-breadcrumb .breadcrumb-item {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  padding: 0rem 1.5rem;
}
.custom-breadcrumb .breadcrumb-item a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}
.custom-breadcrumb .breadcrumb-item a:hover, .custom-breadcrumb .breadcrumb-item a:focus {
  color: rgba(0, 0, 0, 0.8);
}
.custom-breadcrumb .breadcrumb-item.active {
  color: #000000;
  font-weight: 600;
}
.custom-breadcrumb .breadcrumb-item:before {
  content: "";
  background: url("../images/right-gray-icon.svg") no-repeat center center;
  position: absolute;
  top: 0;
  left: -0.375rem;
  width: 0.313rem;
  height: 0.875rem;
  transform: translateY(50%);
  opacity: 0.6;
}
.custom-breadcrumb .breadcrumb-item:first-child {
  padding-left: 0;
}
.custom-breadcrumb .breadcrumb-item:first-child:before {
  display: none;
}

.navbar {
  background-color: transparent;
  z-index: 8;
}
.navbar .navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
}
.navbar .nav-link {
  color: #000000;
}
.navbar .nav-link:hover {
  color: #00a85a;
}
.navbar .btn-primary {
  background-color: #00a85a;
  border: none;
}
.navbar .btn-primary:hover {
  background-color: rgb(0, 117, 62.6785714286);
}

.aim-scope-section {
  background-color: #ffffff;
  padding: 3rem 0;
}
.aim-scope-section h3 {
  font-size: 1.75rem;
  color: #00a85a;
}

.subscription-section .card {
  border-radius: 2px;
}
.subscription-section .card .subscription-price {
  font-size: 1.25rem;
  font-weight: 700;
}
.subscription-section .card .btn-primary {
  background-color: #00a85a;
  border: none;
}
.subscription-section .card .btn-primary:hover {
  background-color: rgb(0, 117, 62.6785714286);
}

/* table-responsive {} */
.custom-nav-tabs {
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.custom-nav-tabs .nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  border: none;
  background-color: #ffffff;
}
.custom-nav-tabs .nav-tabs .nav-item {
  padding: 0 1rem;
}
.custom-nav-tabs .nav-tabs .nav-item:first-child {
  padding-left: 0;
}
.custom-nav-tabs .nav-tabs .nav-item .nav-link {
  color: rgba(0, 0, 0, 0.6);
  border: none;
  padding: 2rem 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s;
  border-radius: 0;
  position: relative;
  font-size: 1rem;
}
.custom-nav-tabs .nav-tabs .nav-item .nav-link:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 6px;
  background-color: #00a85a;
  transition-duration: 0.4s;
}
.custom-nav-tabs .nav-tabs .nav-item .nav-link.active {
  background-color: #ffffff;
  color: #000000;
}
.custom-nav-tabs .nav-tabs .nav-item .nav-link.active:before {
  width: 100%;
}
.custom-nav-tabs .nav-tabs .nav-item .nav-link:hover, .custom-nav-tabs .nav-tabs .nav-item .nav-link:focus {
  color: #000000;
}
.custom-nav-tabs .nav-tabs .nav-item .nav-link:hover:before, .custom-nav-tabs .nav-tabs .nav-item .nav-link:focus:before {
  width: 100%;
}
@media screen and (max-width: 991px) {
  .custom-nav-tabs .nav-tabs .nav-item .nav-link {
    white-space: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .custom-nav-tabs .nav-tabs .nav-item {
    flex-shrink: 0;
  }
}
@media screen and (max-width: 991px) {
  .custom-nav-tabs .nav-tabs {
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 991px) {
  .custom-nav-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
  }
}

.ulinline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ulinline-list li {
  margin: 0;
  padding: 0 1rem;
  font-size: 1rem;
  border-left: 1px solid #E2E2E2;
}
.ulinline-list li:first-child {
  border-left: none;
  padding-left: 0; /* font-weight: 600; */
}
@media screen and (max-width: 991px) {
  .ulinline-list li:first-child {
    padding-left: 1rem;
    border-left: 1px solid #E2E2E2;
  }
}
.ulinline-list li:first-child strong {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .ulinline-list li {
    text-align: left;
  }
  .ulinline-list li strong {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .journal-list-group .ulinline-list li strong {
    display: inline-flex;
  }
}

.publisher {
  margin: 0;
  padding: 0;
  list-style: none;
}
.publisher li {
  margin: 0;
  padding: 0 1rem;
  font-size: 1rem;
  border-left: 1px solid #E2E2E2;
}
.publisher li:first-child {
  border-left: none;
  padding-left: 0;
}
.publisher li a {
  text-decoration: underline;
  color: #000000;
}
.publisher li a:hover, .publisher li a:focus {
  color: #00a85a;
}

.discourse-card {
  border: none;
  background-color: transparent;
}
.discourse-card p {
  color: #666666;
}
@media screen and (max-width: 1199.5px) {
  .discourse-card .ulinline-list {
    justify-content: space-between;
  }
  .discourse-card .ulinline-list li {
    text-align: center;
  }
  .discourse-card .ulinline-list li strong {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  .discourse-card {
    /* text-align: center; */
  }
  .discourse-card img {
    margin: 0 auto 1rem !important;
    display: block;
  }
  .discourse-card .ulinline-list {
    justify-content: start;
  }
  .discourse-card .ulinline-list li {
    text-align: leftr;
  }
  .discourse-card .ulinline-list li strong {
    display: block;
  }
}
@media screen and (max-width: 991px) and (max-width: 1199.5px) {
  .discourse-card .ulinline-list li {
    /*   width: 50%; */
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 991px) and (max-width: 1199.5px) {
  .discourse-card .ulinline-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 991px) {
  .discourse-card .publisher {
    justify-content: start;
  }
}

.inner-filter {
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-nav-sec.affix .inner-filter {
  padding-bottom: 1rem;
}

@media screen and (max-width: 1199.5px) {
  .filter-nav-sec .d-flex.align-items-center {
    width: 100% !important;
    flex-wrap: wrap;
    position: relative;
  }
  .filter-nav-sec .col-6 {
    width: 100% !important;
  }
  .filter-nav-sec .title-md {
    margin-bottom: 0.5rem !important;
  }
  .filter-nav-sec .input-group {
    margin-bottom: 0.5rem !important;
  }
  .filter-nav-sec .d-flex.justify-content-between.align-items-center.gap-2 {
    flex-wrap: nowrap;
  }
}

.select2-container--default .select2-selection--single {
  background-color: #ffffff;
  border-color: #00a85a;
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  background-image: url(../images/select-icon.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 40px;
  top: 50%;
  right: 0.5rem;
  width: 12px;
  margin-top: -4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-selection--multiple {
  background-color: #ffffff;
  border-color: #00a85a;
  height: 40px;
  padding: 0.5rem;
}

.select2-selection--multiple .select2-search.select2-search--inline {
  background-image: url(../images/select-icon.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  height: 40px;
  top: 50%;
  right: 0.5rem;
  width: 12px;
  margin-top: -4px;
  position: absolute;
}

.selected-items-container .selected-item {
  background-color: rgba(0, 168, 90, 0.5);
  font-size: 1rem;
}

.select2-dropdown {
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.selected-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.selected-items-container .selected-item {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: #00a85a;
  font-size: 1rem;
  color: #ffffff;
  border-radius: 6px;
  width: 48%;
}
.selected-items-container .selected-item .remove-item {
  margin-left: 1rem;
  cursor: pointer;
  color: #ffffff;
  font-size: 1.25rem;
}

.select2-results__option {
  display: flex;
  align-items: center;
}
.select2-results__option input[type=checkbox] {
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 8px;
}
.select2-results__option input[type=checkbox]:checked {
  background-color: #00a85a;
  border-color: #00a85a;
}
.select2-results__option input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.select2-results__option span {
  font-size: 1rem;
  color: #000000;
  display: flex;
  align-items: center;
}

.selected-items-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.selected-item {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background-color: #00a85a;
  color: #00a85a;
  border-radius: 20px;
  font-size: 14px;
}

.remove-item {
  margin-left: 8px;
  cursor: pointer;
  color: #fff;
  font-weight: bold;
}

.count-input {
  margin-top: 10px;
  font-size: 1.2rem;
  border: 1px solid #ccc;
  padding: 0.5rem;
  border-radius: 4px;
  width: 100px; /* Adjust width as needed */
}

/* Custom styles for Select2 */
.select2-container .select2-selection--multiple .select2-selection__choice__remove {
  cursor: pointer;
  margin-left: 0.5rem;
}

.journal-list-group .list-group-item {
  border-width: 0 0 1px 0;
  border-radius: 0;
  padding: 1.25rem 0;
}
.journal-list-group .list-group-item:first-child {
  border-radius: 0;
}
.journal-list-group .list-group-item a {
  color: #000000;
}
.journal-list-group .list-group-item a h3 {
  font-size: 1.375rem;
  font-weight: 400;
}
.journal-list-group .list-group-item a .btn-primary {
  padding: 0.125rem 1rem;
  font-size: 0.875rem;
}
.journal-list-group .list-group-item a:hover, .journal-list-group .list-group-item a:focus {
  color: #00a85a;
}
.journal-list-group .list-group-item a:hover .btn-gray, .journal-list-group .list-group-item a:focus .btn-gray {
  background-color: #00a85a;
  border-color: #00a85a;
}
.journal-list-group .list-group-item a:hover .btn-gray:hover, .journal-list-group .list-group-item a:hover .btn-gray:focus, .journal-list-group .list-group-item a:focus .btn-gray:hover, .journal-list-group .list-group-item a:focus .btn-gray:focus {
  color: #ffffff;
}
@media screen and (max-width: 1199.5px) {
  .journal-list-group .list-group-item a {
    display: block !important;
  }
}

.pagination-list .pagination {
  margin: 0 0.5rem 0 0;
}
.pagination-list .pagination .page-item {
  margin: 0;
}
.pagination-list .pagination .page-item .page-link {
  color: #000000;
}
.pagination-list .pagination .page-item .page-link:hover, .pagination-list .pagination .page-item .page-link:focus {
  box-shadow: none;
}
.pagination-list .pagination .page-item.active .page-link {
  background-color: #00a85a;
  color: #ffffff;
}
.pagination-list .pagination .page-item.disabled .page-link {
  color: rgba(0, 0, 0, 0.5);
  display: none;
}
@media screen and (max-width: 991px) {
  .pagination-list {
    margin-top: 1.5rem;
  }
}

.subscription-price {
  background-color: #ffffff;
}
.subscription-price-text {
  font-size: 1.25rem;
  color: #000000;
}
.subscription-price-text-price {
  font-size: 2.25rem;
  color: #000000;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .subscription-price-text-price {
    font-size: 1.75rem;
  }
}
.subscription-price:hover, .subscription-price:focus {
  background-color: #00a85a;
}
.subscription-price:hover .subscription-price-text, .subscription-price:focus .subscription-price-text {
  color: #ffffff;
}
.subscription-price:hover .subscription-price-text-price, .subscription-price:focus .subscription-price-text-price {
  color: #ffffff;
}
.subscription-price:hover .btn-transparent-right-arrow, .subscription-price:focus .btn-transparent-right-arrow {
  color: #ffffff;
}
.subscription-price:hover .btn-arrow-right, .subscription-price:focus .btn-arrow-right {
  background-color: #ffffff;
  transform: scale(1.2);
}
.subscription-price:hover .btn-arrow-right svg g line, .subscription-price:focus .btn-arrow-right svg g line {
  stroke: #00a85a;
}
@media screen and (max-width: 991px) {
  .subscription-price {
    padding: 1rem !important;
  }
}
@media screen and (max-width: 767px) {
  .subscription-price {
    margin-bottom: 1.5rem;
  }
}

.blue-box--card {
  width: 100%;
  display: flex;
  height: auto;
}
.blue-box--card---text {
  font-size: 1.25rem;
  color: #000000;
}
.blue-box--card:hover .blue-box--card---text, .blue-box--card:focus .blue-box--card---text {
  color: #ffffff;
}
.blue-box--card .btn-transparent-right-arrow .btn-arrow-right {
  position: relative;
  opacity: 1;
  right: 0;
  transform: translateY(0%);
}
.blue-box--card:hover .btn-transparent-right-arrow, .blue-box--card:focus .btn-transparent-right-arrow {
  color: #ffffff;
}

.editorial-sec h5 {
  font-size: 1.125rem;
}
.editorial-sec i {
  font-style: normal;
}

.card-board h6 {
  font-size: 1rem;
}
.card-board p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}

.list-unstyled li {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.list-unstyled li h5 {
  font-size: 1.375rem;
  font-weight: 400;
}
.list-unstyled li h5 a {
  color: #000000; /* text-decoration: underline; */
}
.list-unstyled li h5 a:hover, .list-unstyled li h5 a:focus {
  color: #00a85a;
}
.list-unstyled li ul li {
  margin: 0;
  padding: 0 1rem;
  font-size: 1rem;
  border-bottom: none;
}

.issues-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.issues-list li {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.green-rectangal {
  background-color: #7DCFB6;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 3px;
  display: flex;
}

.primary-rectangal {
  background-color: #00a85a;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 3px;
  display: flex;
}

.nav-pills .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 0.875rem 0.875rem;
  font-size: 1.075rem;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  position: relative;
  border-radius: 0;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
.nav-pills .nav-link.active {
  background-color: #00a85a;
  color: #ffffff;
  font-weight: 600;
}
.nav-pills .nav-link.active .right-icon {
  border-color: #ffffff;
  transform: rotate(45deg) scale(1.1);
}

.about-sec p {
  color: rgba(0, 0, 0, 0.8);
}
.about-sec ul li {
  padding: 0.5rem 0;
  color: rgba(0, 0, 0, 0.8);
}
@media screen and (max-width: 767px) {
  .about-sec .nav-pills {
    margin-bottom: 1.5rem;
  }
}

.right-icon {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  border: solid rgba(0, 0, 0, 0.3);
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg) scale(1);
  position: absolute;
  right: 0.625rem;
  top: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.nav-link.active .right-icon {
  transform: rotate(45deg) scale(1.1);
}

.contact-sec .blue-box--card {
  display: block;
}
.contact-sec .blue-box--card:hover span, .contact-sec .blue-box--card:focus span {
  color: #000000;
}
.contact-sec .blue-box--card a {
  padding: 0.375rem 0;
  color: #000000;
}
.contact-sec .contact-call-card a {
  display: flex;
}

.custom-dark-alert {
  background-color: #778FA2;
  color: #ffffff;
  border-radius: 0;
  margin: 0;
}
.custom-dark-alert .btn-close {
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  font-size: 0.875rem;
  top: 50%;
  right: 1rem;
  margin-top: -0.725rem;
  background-image: none;
  opacity: 1;
}
.custom-dark-alert .btn-close::before, .custom-dark-alert .btn-close::after {
  content: "";
  position: absolute;
  background: #ffffff;
}
.custom-dark-alert .btn-close::before {
  width: 1px;
  height: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.custom-dark-alert .btn-close::after {
  width: 1rem;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.cutome-table thead tr {
  border: none;
}
.cutome-table thead tr th {
  border: none;
  vertical-align: top;
  font-size: 1.125rem;
  white-space: nowrap;
}
.cutome-table thead tr:last-child {
  padding: 0px;
}
.cutome-table tbody tr {
  border: none;
}
.cutome-table tbody tr td {
  border: 1px solid rgba(0, 0, 0, 0.3);
  vertical-align: top;
  font-size: 1rem; /* background-color: rgba($primary, 0.08); */
}
.cutome-table tbody tr td .form-check input[type=checkbox] + label:before {
  background-color: transparent;
  border-color: #00a85a;
}
.cutome-table tbody tr td .form-check input[type=checkbox]:disabled + label:before {
  background-color: transparent;
  border-color: #bdbdbd;
}
.cutome-table tbody tr td .form-check input[type=checkbox]:checked + label:before {
  background-color: #7DCFB6;
  border-color: #7DCFB6;
}
.cutome-table tbody tr td .form-check input[type=checkbox] + label:after {
  top: 2px;
  left: 2px;
}
.cutome-table tbody tr:last-child {
  padding-left: 0;
  padding-right: 0;
}
.cutome-table tbody tr .btn-arrow-right {
  margin-left: 0 !important;
  width: 2rem;
  height: 2rem;
}
.cutome-table tbody tr .btn-arrow-right svg {
  width: 1rem;
}
.cutome-table tbody tr .btn-arrow-right:hover, .cutome-table tbody tr .btn-arrow-right:focus, .cutome-table tbody tr .btn-arrow-right:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.cutome-table tbody tr .btn-transparent-right-arrow {
  padding-left: 0;
  padding-right: 0;
  border: none;
}
.cutome-table tbody tr .btn-transparent-right-arrow:hover, .cutome-table tbody tr .btn-transparent-right-arrow:focus, .cutome-table tbody tr .btn-transparent-right-arrow:active {
  outline: none;
  border: none;
  box-shadow: none;
  background-color: transparent;
}
.cutome-table tbody tr .btn-transparent-right-arrow:hover line, .cutome-table tbody tr .btn-transparent-right-arrow:focus line, .cutome-table tbody tr .btn-transparent-right-arrow:active line {
  stroke: #ffffff;
}
.cutome-table tbody tr .btn-transparent-right-arrow:hover path, .cutome-table tbody tr .btn-transparent-right-arrow:focus path, .cutome-table tbody tr .btn-transparent-right-arrow:active path {
  stroke: #ffffff;
}
.cutome-table tbody tr .btn-transparent-right-arrow:hover circle, .cutome-table tbody tr .btn-transparent-right-arrow:focus circle, .cutome-table tbody tr .btn-transparent-right-arrow:active circle {
  stroke: #ffffff;
}

.notes {
  background-color: rgba(0, 168, 90, 0.1);
  padding: 1rem;
  position: relative;
  display: inline-block;
}

.notes::before {
  background-color: #00a85a;
  width: 6px;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
}

.notes p {
  margin-bottom: 0;
}

.advance-search .ulinline-list li {
  padding: 0 0.5rem;
  font-size: 0.875rem;
}
.advance-search .ulinline-list li:first-child {
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  .advance-search .ulinline-list li:first-child {
    padding-left: 0.5rem;
    border-left: 1px solid #E2E2E2;
  }
}
@media screen and (max-width: 1199.5px) {
  .advance-search .ulinline-list li strong {
    display: inline-block;
  }
}
@media screen and (max-width: 991px) {
  .advance-search .ulinline-list li {
    margin-bottom: 1rem;
    text-align: left;
  }
  .advance-search .ulinline-list li strong {
    display: inline-block;
  }
}
@media screen and (max-width: 1199.5px) {
  .advance-search .ulinline-list {
    flex-wrap: wrap;
  }
}

.anchor-link a {
  text-decoration: underline;
  font-size: 1rem;
  color: #000000;
}
.anchor-link a + a {
  margin-left: 1rem;
}

.search-card {
  background-color: rgba(0, 168, 90, 0.08);
}
@media screen and (max-width: 767px) {
  .search-card {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 767px) {
  .btn-filter {
    margin-bottom: 1rem;
    width: 100%;
  }
}

.site-map-sec ul.nav-pills {
  list-style: none;
  column-count: 4;
  padding: 0;
}
.site-map-sec ul.nav-pills li a {
  color: #000000;
  font-weight: 600;
  font-size: 1.125rem;
}
.site-map-sec ul.nav-pills li a:hover, .site-map-sec ul.nav-pills li a:focus {
  background-color: #00a85a;
  color: #ffffff;
}
.site-map-sec ul.nav-pills li span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem 0.875rem 0.875rem;
  font-size: 1.075rem;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  position: relative;
  border-radius: 0;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-size: 1.125rem;
  font-weight: 600;
}
.site-map-sec ul.nav-pills li ul {
  column-count: 1;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .site-map-sec ul.nav-pills {
    column-count: 1;
  }
}

.sbscribe-toc-alerts-modal .btn-close-new {
  background-color: transparent;
  border-color: transparent;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  position: absolute;
  right: 1.5rem;
  padding: 0;
  opacity: 0.8;
}
.sbscribe-toc-alerts-modal .btn-close-new :focus, .sbscribe-toc-alerts-modal .btn-close-new :hover, .sbscribe-toc-alerts-modal .btn-close-new :active, .sbscribe-toc-alerts-modal .btn-close-new :active:focus-visible, .sbscribe-toc-alerts-modal .btn-close-new :first-child:active {
  background-color: transparent;
  border-color: transparent;
  opacity: 1;
}
.sbscribe-toc-alerts-modal .btn-close-new.btn:first-child:active {
  background-color: transparent;
  border-color: transparent;
  opacity: 1;
}
.sbscribe-toc-alerts-modal .modal-body {
  background-color: rgba(0, 168, 90, 0.05);
}
.sbscribe-toc-alerts-modal .btn-close {
  background: none;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.75rem;
  position: absolute;
  right: 1.5rem;
}
.sbscribe-toc-alerts-modal .sbscribe-toc-alerts {
  padding: 5rem 0;
}
.sbscribe-toc-alerts-modal .sbscribe-toc-alerts .blue-circle {
  width: 5.938rem;
  height: 5.938rem;
  background-color: #00a85a;
  line-height: 5.938rem;
  border-radius: 50%;
  margin: 0 auto;
}

.login-banner {
  position: relative;
  overflow: hidden;
  background: #ddd;
  margin: 0;
  height: 100%;
}
.login-banner img {
  position: absolute;
  width: 60%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 9;
}

.login-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 168, 90, 0.5);
  z-index: 9;
}

@media screen and (max-width: 767px) {
  .login-card .card-body {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media screen and (max-width: 767px) {
  #about_journal {
    padding: 1rem 0 !important;
    z-index: 1;
  }
}

#about_journal .inner-banner-header {
  display: none;
}

/* #about_journal.affix { position: fixed; width: 100%; top:0; left: 0; background-color: $white-color;
    .inner-banner-header {display: block;}
    .custom-nav-tabs .nav-tabs .nav-item .nav-link {padding: 1rem 0.5rem 2rem;}
} */
#about_journal.affix {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #00a85a !important;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
#about_journal.affix .inner-banner-header {
  display: block;
}
#about_journal.affix .custom-nav-tabs .nav-tabs {
  background-color: transparent;
}
#about_journal.affix .custom-nav-tabs .nav-tabs .nav-item .nav-link {
  padding: 1rem 0.5rem 2rem;
  color: #ffffff;
}
#about_journal.affix .inner-banner-header h1 {
  color: #ffffff;
}
#about_journal.affix .custom-nav-tabs .nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
}
#about_journal.affix .custom-nav-tabs .nav-tabs .nav-item .nav-link:before {
  background-color: #ffffff;
  bottom: 3px;
}
#about_journal.affix .btn-outline-primary {
  border-color: #ffffff;
  color: #ffffff;
}
#about_journal.affix .btn-outline-primary:hover, #about_journal.affix .btn-outline-primary:focus {
  background-color: #ffffff;
  color: #000000;
}
#about_journal.affix .publisher li {
  color: #ffffff;
}

.journal-cover-img {
  max-width: 32rem;
}
@media screen and (max-width: 767px) {
  .journal-cover-img {
    margin-right: 0 !important;
  }
}
.journal-cover-img img {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .journal-cover-img img {
    width: auto;
  }
}

.filter-nav-sec.affix {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #00a85a;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  padding: 1rem 0 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
.filter-nav-sec.affix .inner-filter {
  margin: 0;
}
.filter-nav-sec.affix .btn-filter {
  display: none;
}
.filter-nav-sec.affix .title-md {
  font-size: 1.5rem;
  color: #ffffff;
}
.filter-nav-sec.affix .form-check input[type=checkbox] + label {
  color: #ffffff;
}
.filter-nav-sec.affix .form-select {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
  background-image: url(../images/white-arrow.png);
  background-repeat: no-repeat;
  background-position: right 0.5rem top 1.25rem;
  background-size: 1rem;
}
.filter-nav-sec.affix .form-select option {
  background-color: #00a85a;
  color: #ffffff;
}
.filter-nav-sec.affix .form-control {
  background-color: transparent;
  color: #000000;
  border-color: #ffffff;
  color: #ffffff;
}
.filter-nav-sec.affix .form-control::placeholder {
  color: #ffffff; /* Replace with your desired color */
  opacity: 1; /* Optional: Ensures full opacity if needed */
}

@media (max-width: 576px) {
  .filter-nav-sec.affix {
    max-width: 100vw;
    left: 0;
    right: 0;
    margin: 0;
    padding-bottom: 0.5rem;
  }
  .filter-nav-sec.affix .container,
  .filter-nav-sec.affix .inner-filter {
    padding: 0 1rem;
    margin: 0;
    max-width: 100%;
  }
}
.shopping-sec .cart-items {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  border-radius: 8px;
}
.shopping-sec .cart-items th, .shopping-sec .cart-items td {
  border: 1px solid #E2E2E2;
  padding: 0.5rem 1rem;
  color: #000000;
}
.shopping-sec .cart-items td {
  font-size: 1rem;
  vertical-align: middle;
}
.shopping-sec .cart-items td:first-child {
  font-weight: 600;
}
.shopping-sec .cart-items th {
  background-color: #00a85a;
  font-size: 1.25rem;
  border: 1px solid #ffffff;
  padding: 1rem;
  color: #ffffff;
}
.shopping-sec .cart-items input[type=number] {
  width: 100px;
  text-align: center;
  margin: 0 auto;
}
.shopping-sec .cart-summary {
  margin-top: 20px;
  text-align: right;
}
.shopping-sec .cart-summary span {
  font-weight: bold;
}

.price-details .title-lg {
  font-size: 2rem;
  margin-bottom: 0;
  padding: 1rem;
  text-align: center;
}
.price-details .details-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.price-details .details-row span {
  font-size: 1.25rem;
}
.price-details .details-row.total {
  font-weight: bold;
  border-top: 1px solid #00a85a;
  padding-top: 10px;
}
.price-details .checkout-btn {
  font-size: 1.25rem;
}

.tab-content {
  width: 100%; /* Ensures it takes full width */
  overflow: hidden; /* Prevents overflow issues */
}

.tab-pane {
  display: block; /* Ensure proper display */
}

.welcome-text {
  font-size: 0.875rem;
  color: #00a85a;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
@media screen and (max-width: 1199.5px) {
  .welcome-text {
    font-size: 0.75rem;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .welcome-text {
    text-align: center !important;
  }
}

.css-1yaevti-DropDown {
  max-height: 220px;
}

.react-dropdown-select.form-select {
  background-image: none;
  border-radius: 0.375rem;
  border-color: #00569D;
}

.react-dropdown-select-content input {
  font-size: 1rem;
}

.table-responsive {
  min-height: 400px;
}

.border-radius-8 {
  border-radius: 8px;
}

.cart-radio .form-check-label {
  font-size: 1rem;
  font-weight: 600;
}

.relative-for-preloder {
  position: relative;
  overflow: hidden;
}

.preloader-wapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Ensure it's on top */
}

/* Preloader spinner */
.preloader {
  width: 50px;
  height: 50px;
  border: 5px solid #00a85a; /* Gray outer border */
  border-top: 5px solid #7fefbb; /* Blue spinner color */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Continuous spinning animation */
}

.preloader-wapper-fullbody {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2; /* Ensure it's on top */
}

/* Preloader spinner */
.preloader-full-body {
  width: 50px;
  height: 50px;
  border: 5px solid #00a85a; /* Gray outer border */
  border-top: 5px solid #3498db; /* Blue spinner color */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* Continuous spinning animation */
}

/* Keyframes for spinning animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.accordion .accordion-item .accordion-body ul.accordion-issue_list {
  padding-left: 1rem;
}

.accordion .accordion-item .accordion-body ul.accordion-issue_list li {
  list-style: none;
}

.accordion .accordion-item .accordion-body ul.accordion-issue_list.list-unstyled li h5 {
  font-size: 1.125rem;
}

.pointer {
  cursor: pointer;
}

/* Responsive Styles */
.select2-search {
  display: block !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: #fff;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
  width: 93% !important;
  position: absolute;
  left: 0.65rem;
  right: 0;
  height: 33px;
  top: 0;
  margin: 0;
  line-height: 33px;
}

.select2-selection--multiple .select2-search.select2-search--inline {
  width: 100%;
  background-size: 12px;
  background-position: right;
}

.select2-selection--multiple .select2-search.select2-search--inline {
  margin-top: 0;
  top: 0;
}

.custom-text-style section {
  padding: 1rem 0;
}

.custom-text-style section section {
  padding: 0rem 0 0 1rem;
}

.custom-text-style section > h4, .article-references h2.title-md {
  color: #00a85a;
  font-size: 1.5rem;
  font-weight: 600;
}

.custom-text-style section > section h4 {
  color: #000000;
  font-size: 1.25rem;
}

.custom-text-style label {
  font-size: 1.375rem;
  color: #000000;
  padding-bottom: 1rem;
}

.custom-text-style table {
  border: 1px solid #E2E2E2;
  margin-bottom: 1rem;
}

.custom-text-style table tr th {
  font-size: 1.125rem;
  padding: 0.5rem;
  border-left: 1px solid #E2E2E2;
}

.custom-text-style table tr td {
  border-top: 1px solid #E2E2E2;
  padding: 0.5rem;
  font-size: 1rem;
}

.custom-text-style table tr td {
  border-left: 1px solid #E2E2E2;
}

.article-references .list-unstyled li h5 {
  font-size: 1.25rem;
}

.custom-text-style a, .custom-text-style .list-unstyled li h5 a {
  text-decoration: underline;
}

.invalid.form-control, .invalid.form-select {
  border-color: var(--bs-form-invalid-color);
  color: var(--bs-form-invalid-color);
}

.search-section .input-group .form-control.invalid, .search-section .input-group .form-select.invalid {
  border-color: var(--bs-form-invalid-color);
}

.similar-journals-slider .collections-btn {
  font-size: 1.275rem;
  padding: 1rem 2rem 1rem 2rem;
  height: 8.5rem;
}

.cursor-auto {
  cursor: auto;
}

.sticky-bottom-custom {
  position: sticky;
  top: 5rem;
  z-index: 2; /* Keep it above other elements */
}

.journal-list-section {
  min-height: 150vh;
}

.journal-list-section, .journal-list-section .container, .journal-list-section .container .row {
  overflow: visible !important;
  position: relative;
}

/* Dropdown Container */
.sort-dropdown {
  position: relative;
  display: inline-block;
}
.sort-dropdown .btn-outline-primary {
  background-color: #ffffff;
  white-space: nowrap;
  line-height: 2.25rem;
}
.sort-dropdown .btn-outline-primary:hover, .sort-dropdown .btn-outline-primary:focus, .sort-dropdown .btn-outline-primary:active {
  color: #000000;
  background-color: #ffffff;
  border-color: #00a85a;
}

.artical-home-img {
  height: 8rem;
}

.artical-home-img img {
  height: 100%;
}

/* Hidden Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: auto;
}

/* Show on Hover */
.sort-dropdown:hover .dropdown-menu {
  display: block;
}

/* Alphabet Filter */
.alphabet-filter {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
  padding: 1rem;
}

.alphabet-filter a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  padding: 0.5rem 1rem;
}

.alphabet-filter a.active {
  background: #00a85a;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

.multi-select {
  width: 100%;
  position: relative;
}
.multi-select .dropdown-button {
  width: 100%;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid #00a85a;
  border-radius: 0.375rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  text-align: left;
  cursor: pointer;
  white-space: nowrap; /* Prevent text from wrapping */
  overflow: hidden; /* Hide overflowing content */
  text-overflow: ellipsis;
  display: block;
  padding-right: 1.75rem;
}
.multi-select .dropdown-button:focus {
  outline: none;
}
.multi-select .absolute {
  position: absolute;
  z-index: 9;
}
.multi-select .w-full {
  width: 100%;
}
.multi-select .max-h-48 {
  max-height: 12rem;
}
.multi-select .search-input {
  width: 100%;
  padding: 0.5rem;
  border-bottom: 1px solid #d1d5db;
}
.multi-select .search-input:focus {
  outline: none;
}
.multi-select .multi-search {
  border: 1px solid #333333;
  outline: none;
}
.multi-select .multi-search:focus {
  outline: none;
}

.search-showing-block .title-md {
  white-space: nowrap;
}

.search-showing-block .input-group input[type=text].form-control {
  width: 36%;
  font-size: 1rem;
}

.search-showing-block .form-select {
  font-size: 1rem;
  padding-right: 1.5rem;
}

.filter-nav-sec.affix .search-showing-block .btn-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #00a85a;
}

.advance-search-page {
  white-space: nowrap;
}
@media screen and (max-width: 1199.5px) {
  .advance-search-page {
    position: absolute;
    top: 7.5rem;
    right: 1rem;
    z-index: 99;
  }
}

.search-filter .input-group-text {
  color: #ffffff;
}

.search-showing-bloc .form-select {
  background-position: right 0.5rem center;
}

.filter-nav-sec.affix .advance-search-page {
  color: #ffffff;
}

.height-3 {
  height: 3rem;
}

.advance-search .btn-gray {
  white-space: nowrap;
}

.ml-15-875 {
  margin-left: 17.5rem;
}

.grid-10 {
  margin: 0 -0.5rem;
  --bs-gutter-x: 0.75rem;
}
.grid-10 [class*=col-] {
  padding: 0 -0.5rem;
}

.w-11 {
  width: 11rem;
}

.article-search-button {
  position: relative;
}
.article-search-button .dropdown-icon {
  display: inline-block;
  position: absolute;
  width: 1rem;
  height: 1rem;
  top: 0.75rem;
  right: 0.375rem;
}
.article-search-button .dropdown-icon::before,
.article-search-button .dropdown-icon::after {
  content: "";
  position: absolute;
  width: 0.8rem;
  height: 0.125rem;
  background: #00a85a;
  top: 50%;
  right: 0.313rem;
  transition: 0.3s all ease-out;
}
.article-search-button .dropdown-icon::before {
  transform: rotate(-45deg);
  right: 0px;
}
.article-search-button .dropdown-icon::after {
  transform: rotate(45deg);
  right: 0.575rem;
}
.article-search-button.active .dropdown-icon::before {
  transform: rotate(45deg);
}
.article-search-button.active .dropdown-icon::after {
  transform: rotate(-45deg);
}

.service-title {
  font-size: 1.25rem;
  font-weight: 400;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  background-color: transparent;
}
.service-card .card-title {
  font-size: 1.25rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card .card-img {
  height: 4.875rem;
}

.service-card img {
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover img {
  transform: scale(1.05);
}

.login-dropdown {
  position: relative;
  display: inline-block;
}

.login-dropdown .icon {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.custom-arrow {
  transition: transform 0.3s ease;
}

/* Optional: rotate arrow on hover */
.login-dropdown:hover .custom-arrow {
  transform: rotate(180deg);
}

.login-dropdown .dropdown-toggle:after {
  display: none;
}
.login-dropdown .btn.show {
  background-color: rgb(0, 99.9681528662, 182.5);
  border-color: transparent;
}
.login-dropdown .btn-primary {
  padding: 0.75rem 2rem;
}
.login-dropdown .btn-primary:hover, .login-dropdown .btn-primary:focus {
  background-color: rgb(0, 99.9681528662, 182.5);
  border-color: transparent;
}
.login-dropdown .dropdown {
  display: block;
}
.login-dropdown .dropdown-menu, .login-dropdown .dropdown-menu.show {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  min-width: 150px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-radius: 4px;
  padding: 0;
  transform: inherit !important;
  inset: inherit !important;
  right: 0 !important;
}
.login-dropdown .dropdown-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  border-bottom: 1px solid #00a85a;
  font-size: 1.125rem;
}
.login-dropdown .dropdown-menu a:last-child {
  border: none;
}
.login-dropdown .dropdown-menu a:hover {
  background: #f0f0f0;
}
.login-dropdown:hover .dropdown-menu {
  display: block;
}
.login-dropdown .dropdown-menu a {
  color: #00a85a;
}
.login-dropdown .dropdown-menu a:hover, .login-dropdown .dropdown-menu a:focus {
  color: #ffffff;
  background-color: #00a85a;
}

.shipping-address-sec textarea.form-control {
  height: calc(5.65em + 0.25rem);
}

/* Sidebar Styling */
.sidebar {
  background-color: #ffffff; /* Light gray background */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  min-width: 100%; /* Full width within card */
  max-width: 600px; /* Limit max width for larger screens */
  margin: 0 auto; /* Center the sidebar */
  padding: 20px; /* Increased padding for better spacing */
  /* Icon Styling */
  /* Hover Effect */
  /* Active State */
}
.sidebar .sidebar-title {
  font-size: 1.3rem; /* Slightly larger title */
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 1.75rem; /* More space below title */
}
.sidebar .menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Two equal columns */
  gap: 0.75rem; /* Increased gap for better separation */
  padding: 0;
  list-style: none;
}
.sidebar .nav-item {
  margin: 0;
}
.sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  color: #000000;
  background-color: #ffffff; /* White background for each item */
  border-radius: 6px; /* Rounded corners */
  transition: background-color 0.3s, color 0.3s, transform 0.2s;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.sidebar .nav-link i {
  font-size: 1.2rem;
  margin-right: 10px;
  color: #000000;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
}
.sidebar .nav-link:hover, .sidebar .nav-link:focus {
  background-color: #00a85a; /* Blue background for active */
  color: #ffffff; /* White text */
  font-weight: 500;
}
.sidebar .nav-link:hover i, .sidebar .nav-link:focus i {
  color: #ffffff; /* White icon for active state */
}

.checkmark-fail {
  font-size: 2.5rem;
  color: #ffffff;
  background-color: #c61d0c;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  margin: 0 auto;
}

.checkmark {
  font-size: 2.5rem;
  color: #ffffff;
  background-color: #048c01;
  width: 6rem;
  height: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  margin: 0 auto;
}

.small-text {
  font-size: 0.85rem;
  color: #777;
}

@media screen and (max-width: 1199.5px) {
  .register-sec .d-flex.g-0.justify-content-center {
    width: 100%;
    padding: 0 1rem;
  }
  .register-sec .d-flex.g-0.justify-content-center .col-md-7.p-0.white-bg {
    width: 100%;
  }
}

/* Menu Item Styling */
/* Responsive Design */
@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr; /* Single column on smaller screens */
  }
  .sidebar {
    max-width: 100%; /* Full width on mobile */
  }
  .sidebar .nav-link {
    font-size: 0.9rem; /* Slightly smaller text */
    padding: 0.625rem 0.75rem; /* Adjusted padding */
  }
}
@media (min-width: 1350px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1320px;
  }
}
@media (min-width: 1400px) {
  html {
    font-size: 85%;
  }
}
@media (max-width: 1400px) {
  html {
    font-size: 75%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 75%;
  }
  .similar-journals-slider .collections-btn {
    font-size: 1em;
  }
  br {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
