:root {
    --primary-color: #0075ff;
    --primary-color-alt: #0366da;
    --border-color: #ebebeb;
  }
  /* Start Base Layout */
  .base-layout {
    padding-bottom: 20px;
  }
  .base-layout .page-head {
    padding: 100px 20px;
    text-align: center;
    position: relative;
    background-image: url("../era/imgs/background-pattern.jpg");
    background-size: cover;
  }
  .base-layout .page-head::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.95;
  }
  .base-layout .page-head h1 {
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 40px;
    font-weight: bold;
    color: white;
    letter-spacing: -3px;
    line-height: 1.6;
  }
  .base-layout .page-head p {
    margin: 0;
    position: relative;
    z-index: 1;
    color: white;
    font-size: 20px;
    line-height: 2;
  }
  .base-layout .page-head a {
    font-weight: bold;
    color: white;
  }
  .base-layout .page-head a::before {
    content: "[ ";
  }
  .base-layout .page-head a::after {
    content: " ]";
  }
  .base-layout .base-search {
    background-color: white;
  }
  .base-layout .base-search form {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .base-layout .base-search input[type="text"] {
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #f9f8f8;
    flex: 1;
    padding: 15px;
  }
  .base-layout .base-search input[type="submit"] {
    background-color: var(--primary-color);
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    padding: 15px;
    transition: 0.3s;
  }
  .base-layout .base-search input[type="submit"]:hover {
    background-color: var(--primary-color-alt);
  }
  .base-layout .base-content {
    margin-top: 20px;
  }
  @media (min-width: 992px) {
    .base-layout .base-content {
      display: flex;
      gap: 15px;
    }
    .base-content .content-area {
      flex: 1;
    }
    .base-content .side-area {
      width: 35%;
    }
  }
  .content-area .base-box {
    padding: 20px;
    background-color: white;
    position: relative;
    border-right: 1px solid #ccc;
  }
  .content-area .base-box:hover::before {
    background-color: var(--primary-color-alt);
  }
  .content-area .base-box::before {
    content: "";
    position: absolute;
    right: -2px;
    width: 3px;
    background-color: var(--primary-color);
    height: 80px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .content-area .base-box:not(:last-child) {
    margin-bottom: 15px;
  }
  .content-area .base-box .box-thumbnail {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
  .content-area .base-box .box-thumbnail img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .content-area .base-box > a {
    font-weight: bold;
    font-size: 20px;
    color: black;
    width: fit-content;
    display: block;
    margin-bottom: 10px;
    position: relative;
  }
  .content-area .base-box > a::before {
    content: "";
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    opacity: 0.1;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px 10px;
    transition: 0.3s;
  }
  .content-area .base-box > a:hover::before {
    width: 100%;
  }
  .content-area .base-box > a span {
    position: relative;
    z-index: 1;
  }
  .content-area .base-box .excerpt {
    line-height: 2;
  }
  .content-area .base-box .info {
    margin-top: 20px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
  }
  .base-box .info i {
    color: #777;
    margin-left: 5px;
  }
  /* End Base Layout */
  /* Start Widgets */
  .base-widget {
    padding: 20px;
    background-color: white;
    margin-bottom: 20px;
  }
  .base-widget > h4 {
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    font-weight: bold;
    position: relative;
  }
  .base-widget > h4::after {
    content: "";
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 80px;
    height: 1px;
    background-color: var(--primary-color);
  }
  .base-widget > h4 i {
    margin-left: 5px;
  }
  /* End Widgets */
  /* Start Stats Widget */
  .stat-widget ul li {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    color: white;
    font-weight: bold;
  }
  .stat-widget ul li:not(:last-child) {
    margin-bottom: 10px;
  }
  .stat-widget ul li:first-child {
    background-color: royalblue;
  }
  .stat-widget ul li:nth-child(2) {
    background-color: darkslategray;
  }
  .stat-widget ul li:nth-child(3) {
    background-color: rebeccapurple;
  }
  .stat-widget ul li:nth-child(4) {
    background-color: seagreen;
  }
  .stat-widget ul li:nth-child(5) {
    background-color: crimson;
  }
  .stat-widget ul li i {
    margin-left: 10px;
  }
  /* End Stats Widget */
  /* Start Child Cats */
  .child-cats li {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .child-cats li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
  }
  .child-cats li img {
    width: 32px;
    margin-left: 5px;
  }
  .child-cats li a {
    font-weight: bold;
    color: black;
  }
  .child-cats li .count {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
  }
  /* End Child Cats */
  /* Start Latest Members */
  .latest-members li {
    display: flex;
    align-items: center;
    padding: 10px 10px 10px 0;
    border: 1px solid var(--border-color);
    position: relative;
  }
  .latest-members li::before {
    content: "";
    position: absolute;
    right: -2px;
    width: 3px;
    background-color: var(--primary-color);
    height: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .latest-members li:not(:last-child) {
    margin-bottom: 10px;
  }
  .latest-members li img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-left: 10px;
  }
  .latest-members li .member-name {
    display: block;
    font-weight: bold;
  }
  .latest-members li .register-date {
    color: #777;
  }
  .latest-members .widget-join {
    font-weight: bold;
    display: block;
    margin: 20px auto 0;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    width: fit-content;
  }
  /* End Latest Members */
  /* Start Base Items */
  .base-items li {
    position: relative;
    padding: 10px 0;
  }
  .base-items li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
  }
  .base-items li a {
    display: block;
    width: fit-content;
    line-height: 1.8;
    font-weight: bold;
    color: black;
    position: relative;
    z-index: 1;
  }
  /* End Base Items */
  /* Start Tag Cloud */
  .tag-cloud li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
  }
  .tag-cloud li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }
  .tag-cloud li a {
    background-color: #eee;
    padding: 5px 8px;
    border-radius: 6px;
    text-transform: capitalize;
    color: black;
  }
  .tag-cloud li span {
    font-weight: bold;
    color: var(--primary-color);
  }
  /* End Tag Cloud */
  /* Start Latest Article */
  .latest-article a {
    font-weight: bold;
    color: black;
    text-align: center;
    display: block;
    font-size: 16px;
  }
  .latest-article img {
    max-width: 100%;
    height: auto;
    padding: 3px;
    border: 1px solid #ccc;
    margin-top: 15px;
  }
  /* End Latest Article */
  /* Start Paginations */
  .base-paginations {
    margin: 20px 0;
    text-align: center;
  }
  .base-paginations .page-numbers {
    display: inline-flex;
    color: var(--primary-color);
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
  }
  .base-paginations .page-numbers.current,
  .base-paginations .page-numbers:hover {
    background-color: var(--primary-color);
    color: white;
  }
  .base-paginations .page-numbers:hover {
    text-decoration: none;
  }
  .base-paginations i {
    font-size: 10px;
  }
  /* End Paginations */
  /* Start Books */
  .from-book {
    margin-top: 10px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
  }
  .from-book span:last-child a {
    font-weight: bold;
    color: var(--primary-color);
  }
  .books-rate {
    padding: 10px 0;
    direction: ltr;
  }
  .books-rate .filled {
    color: var(--primary-color);
  }
  .books-points div {
    background-color: #f9f9f9;
    padding: 20px;
    position: relative;
    counter-increment: cons;
  }
  .books-points div:not(:last-child) {
    margin-bottom: 15px;
  }
  .books-points div::before {
    content: counter(cons);
    position: absolute;
    right: -5px;
    top: -5px;
    width: 18px;
    height: 18px;
    background-color: var(--primary-color);
    line-height: 18px;
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 12px;
  }
  /* End Books */
  /* Start Tutorials */
  .tutorial-type {
    text-transform: capitalize;
    background-color: #ddd;
    padding: 5px 10px;
    line-height: 1;
    border-radius: 6px;
    display: inline-flex;
    margin: 10px 0 0;
    font-weight: bold;
    color: white;
    font-size: 12px;
  }
  .tutorial-type.web-design {
    background-color: #18a3ac;
  }
  .tutorial-type.javascript {
    background-color: #f7df1e;
    color: black;
  }
  .tutorial-type.wordpress {
    background-color: #21759b;
  }
  .tutorial-type.python {
    background-color: #4584b6;
  }
  .tutorial-type.css {
    background-color: #90bd31;
  }
  /* End Tutorials */
  /* Start Courses Area */
  .courses-holder {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 15px;
    /* direction: ltr; */
  }
  .course-box {
    background-color: #f2f2f2;
    ;
    padding: 20px;
    font-size: 16px;
    transition: 0.3s;
    direction: rtl;
    text-align: right;
  }
  .course-box:hover {
    box-shadow: 0 0 10px #ddd;
  }
  .course-box .head {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .course-box .head img {
    width: 55px;
  }
  .course-box .link {
    font-weight: bold;
    color: black;
    width: fit-content;
    display: block;
    font-size: 18px;
  }
  .course-box .created {
    margin: 10px 0 0;
  }
  .course-box .details {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .course-box .details > div:not(:last-child) {
    margin-bottom: 10px;
  }
  .course-box .details > div i {
    margin-right: 5px;
  }
  .course-box .videos-duration {
    text-transform: capitalize;
  }
  .course-box .status i {
    margin-right: 5px;
  }
  .course-box .status .completed {
    color: var(--primary-color);
  }
  .course-box .status span.completed {
    font-weight: bold;
  }
  /* End Courses Area */
  /* Start Framework */
  .ltr {
    direction: ltr;
  }
  /* End Framework */