:root {
  --bs-body-bg: #f8f9fa;
  --bs-card-color: #4f4f4f;
  --bs-border-radius-lg: 1rem ;
}

.card {
  --bs-card-spacer-y: 1rem;
  --bs-card-spacer-x: 1rem;
  --bs-card-title-spacer-y: 0.5rem;
  --bs-card-title-color: ;
  --bs-card-subtitle-color: ;
  --bs-card-border-width: 0;
  --bs-card-border-radius: var(--bs-border-radius-lg);
  --bs-card-inner-border-radius: calc(var(--bs-border-radius) -(var(--bs-border-width)));
  --bs-card-cap-padding-y: 0.5rem;
  --bs-card-cap-padding-x: 1rem;
  --bs-card-cap-bg: var(--bs-card-bg);
  --bs-card-cap-color: ;
  --bs-card-height: ;
  --bs-card-color: ;
  --bs-card-bg: #ffffff;
  --bs-card-img-overlay-padding: 1rem;
  --bs-card-group-margin: 0.75rem;
  box-shadow: var(--bs-card-box-shadow);
  border: none !important;
  border-radius: 0px !important;
}

.pagination {
  --bs-pagination-padding-x: 0.75rem;
  --bs-pagination-padding-y: 0.375rem;
  --bs-pagination-font-size: 1rem;
  --bs-pagination-color: var(--bs-link-color);
  --bs-pagination-bg: var(--bs-body-bg);
  --bs-pagination-border-width: var(--bs-border-width);
  --bs-pagination-border-color: var(--bs-border-color);
  --bs-pagination-border-radius: calc(.375rem - 1px);
  --bs-pagination-hover-color: var(--bs-link-hover-color);
  --bs-pagination-hover-bg: var(--bs-tertiary-bg);
  --bs-pagination-hover-border-color: var(--bs-border-color);
  --bs-pagination-focus-color: var(--bs-link-hover-color);
  --bs-pagination-focus-bg: var(--bs-secondary-bg);
  --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-pagination-active-color: #fff;
  --bs-pagination-active-bg: #0d6efd;
  --bs-pagination-active-border-color: #0d6efd;
  --bs-pagination-disabled-color: var(--bs-secondary-color);
  --bs-pagination-disabled-bg: var(--bs-secondary-bg);
  --bs-pagination-disabled-border-color: var(--bs-border-color);
  display: flex;
  gap: 4px;
  padding-left: 0;
  list-style: none;
  transition: all 0.3s;
}

.page-link {
  border-radius: 0.2rem;
  background-color: transparent;
  min-width: 34px;
  color: rgba(0, 0, 0, 0.6392156863);
  border: 1px solid rgba(0, 0, 0, 0.6392156863);
}
.page-link:hover {
  color: white;
  background-color: black;
  border: 1px solid black;
}

.page-link:focus,
.page-link:active {
  outline: transparent;
  box-shadow: none;
  background-color: rgba(26, 27, 28, 0.0431372549);
}

.page-link.active {
  background-color: #1a1b1c;
  border-color: #1a1b1c;
  color: #fff;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  border: none;
  background: none;
  background-color: transparent;
  font-size: 25px;
  padding: 2px 10px;
}
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  color: black;
}

.card.flush {
  --bs-card-spacer-y: 0;
  --bs-card-spacer-x: 0;
  --bs-card-border-radius: .85rem;
  border: none;
  box-shadow: none;
}

.card.flush .card-img-top {
  height: 230px;
  width: 100%;
  border-top-left-radius: 50px;
  border-top-right-radius: 0px;
}

.card-title {
  font-size: 10px;
  line-height: 1.375;
  color: black;
}
.card-title b {
  font-size: 12px;
  font-weight: 400;
  color: black;
}

.card-text {
  font-size: 16px;
  color: black;
  font-weight: 900;
}

.card-link {
  color: #1a1b1c;
  text-decoration: none;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.card-link:hover {
  color: #70A548;
}

.card-link:before {
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #1a1b1c;
  transition: width 0.3s ease-in-out;
}

.card-link:hover:before {
  content: "";
  width: 100%;
}

.card-body {
  padding: 16px;
}
.card-body h1 {
  font-size: 40px;
  line-height: 0.7 !important;
}
.card-body .line {
  border-top: 4px solid #E4E4E4;
  border-bottom: 4px solid #E4E4E4;
}

.card.animate {
  opacity: 0;
  transform: translateY(50px);
  /* Start the card offscreen */
  border: 2px solid #ddd;
  border-top-left-radius: 50px !important;
  background-color: #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(50px);
    /* Start the animation from below */
  }
  to {
    opacity: 1;
    transform: translateY(0);
    /* Move the card to its original position */
  }
}
.image-overlay {
  position: relative;
  display: inline-block;
  border-top-right-radius: 50px;
}
.image-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(107, 115, 123, 0.55);
  mix-blend-mode: multiply;
  border-top-left-radius: 50px;
}

.bookmark {
  --text-color: white;
  --icon-color-default: #8A91B4;
  --icon-color-active: black;
  --default-position: 32px;
  --default-y: 0px;
  --icon-background-height: 19px;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  background: none;
  border: none;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  display: flex;
  cursor: pointer;
}

.bookmark:active {
  --shadow-y: 1px;
  --shadow-blur: 2px;
  --scale-x: .975;
  --scale-y: .94;
}

.bookmark.marked {
  --icon-color: var(--icon-color-active);
  fill: black;
}

.bookmark .icon {
  position: relative;
  z-index: 1;
  transform: scale(0.62);
  top: -12px;
  right: -17px;
}

.bookmark .icon:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 9px;
  width: 18px;
  height: 19px;
  border-radius: 1px;
  -webkit-clip-path: inset(0 -1px var(--icon-background-height) -1px round 1px);
          clip-path: inset(0 -1px var(--icon-background-height) -1px round 1px);
  background: var(--icon-color, var(--icon-color-default));
  transition: background 0.5s ease 0.01s;
}

.bookmark .icon svg {
  display: block;
  width: 40px;
  height: 50px;
  stroke: var(--icon-color, var(--icon-color-default));
  stroke-width: 2px;
  stroke-linejoin: round;
  stroke-linecap: round;
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  -webkit-clip-path: inset(5px 0 0 0);
          clip-path: inset(5px 0 0 0);
  fill: black;
}

.bookmark .icon svg path {
  fill: white;
  transition: fill 0.5s ease 0.01s, stroke 0.5s ease 0.01s;
}
.bookmark .icon svg path:active {
  fill: black;
  transition: fill 0.5s ease 0.01s, stroke 0.5s ease 0.01s;
}

.bookmark .icon svg path.default {
  --fill: var(--default-fill, var(--background, var(--background-default)));
  -webkit-clip-path: circle(var(--default-position) at 50% 100%);
          clip-path: circle(var(--default-position) at 50% 100%);
}
.bookmark .icon svg path.default:hover {
  fill: black;
  stroke: black;
}

.bookmark .icon svg path.filled {
  --fill: var(--icon-color, var(--icon-color-default));
}

.bookmark span {
  position: relative;
  z-index: 1;
  display: block;
  margin-left: -2px;
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: inherit;
}

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

.dribbble {
  position: fixed;
  display: block;
  right: 20px;
  bottom: 20px;
}

.dribbble img {
  display: block;
  height: 28px;
}

button:focus {
  outline: none !important;
}

.social-icons a {
  font-size: 12px;
  border-radius: 50%;
  margin-right: 6px;
  width: 23px;
  height: 23px;
  text-align: center;
}
.social-icons .fa-twitter {
  color: white;
  border: 1px solid #14171A;
  padding: 4px;
  background-color: #14171A;
}
.social-icons .fa-twitter:hover {
  color: #14171A;
  background-color: white;
}
.social-icons .fa-facebook-f {
  color: #fff;
  border: 1px solid #3b5999;
  padding: 4px;
  background-color: #3b5999;
}
.social-icons .fa-facebook-f:hover {
  color: #3b5999;
  background-color: white;
}
.social-icons .fa-share-alt {
  color: #fff;
  border: 1px solid #0097cf;
  padding: 4px;
  background-color: #0097cf;
}
.social-icons .fa-share-alt:hover {
  color: #0097cf;
  background-color: white;
}

.bookmark:active .icon svg path {
  stroke: red !important;
  /* Change stroke color to red when bookmark is active */
  fill: red !important;
  /* Change fill color to red when bookmark is active */
}/*# sourceMappingURL=print.css.map */