:root {
  --primary-color: #0075ff;
  --primary-color-alt: #0366da;
  --green-color: #009688;
  --danger-color: darkred;
  --border-color: #ebebeb;
  --half-white: #f8f6f6;
  --second-color: #009688;
}
body {
  font-family: "Almarai", sans-serif;
  background-color: white;
}
ul:not(.classic),
ol:not(.classic) {
  list-style: none;
  margin: 0;
  padding: 0;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}
input:focus,
textarea:focus {
  outline: none;
}
::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-track {
  background-color: white;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}
::-webkit-scrollbar-thumb:hover {
  background-color: var(--primary-color-alt);
}
.mdil {
  font-size: 20px;
  line-height: 1;
  position: relative;
  top: 2px;
  height: 20px;
  display: inline-flex;
}
.head-with-desc {
  text-align: center;
  font-size: 45px;
  letter-spacing: 1px;
}
.head-with-desc span {
  margin-top: 15px;
  font-size: 18px;
  color: #444;
  word-spacing: 1px;
  font-weight: normal;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 30px 0;
  grid-gap: 20px;
  align-items: center;
}
.head-with-desc span:after,
.head-with-desc span:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #ccc;
  height: 5px;
  background-color: #f8f8f8;
}
.ad-box {
  position: absolute;
  left: 30px;
  top: 30px;
  background-color: var(--primary-color);
  font-weight: bold;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
}
/* Start Homepage */
.home .home-intro {
  padding: 20rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  width: 100%;
}
.home .search-form {
  margin-top: 50px;
  display: flex;
  width: 100%;
  position: relative;
}
.home .home-intro input[type="search"] {
  width: 100%;
  height: 60px;
  border: none;
  padding: 20px 20px 20px 95px;
  font-size: 18px;
  color: var(--primary-color);
  font-weight: bold;
  border-radius: 10px;
}
.home .home-intro input[type="search"]:focus {
  outline: none;
}
.home .home-intro input[type="search"]::-webkit-input-placeholder {
  color: #000;
  opacity: 0.6;
}
.home .home-intro input[type="search"]::-moz-placeholder {
  color: #000;
  opacity: 0.6;
}
.home .home-intro input[type="search"]:-moz-placeholder {
  color: #000;
  opacity: 0.6;
}
.home .home-intro .search-submit {
  height: 40px;
  width: 80px;
  background-color: var(--primary-color);
  border: none;
  font-size: 18px;
  z-index: 2;
  font-weight: bold;
  position: absolute;
  left: 10px;
  top: 10px;
  border-radius: 10px;
}
.home .home-intro .search-submit:focus {
  outline: none;
}
.waves {
  position: relative;
  width: 100%;
  height: 122px;
  top: -122px;
  /* Fix For Safari Gap */
  min-height: 100px;
  max-height: 150px;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
.home .section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.home .the-paths,
.home .last-tuts,
.random-q {
  background-color: #f4f6fa;
}
.home .plans .the-plans {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  direction: ltr;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.home .plans .the-plans a {
  padding: 10px;
  display: block;
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  transition: 0.5s;
}
.home .plans .the-plans a:hover {
  background-color: #dadada;
}
.home .plans .the-plans img {
  width: 80px;
  margin-top: -30px;
}
.home .plans .the-plans span {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: black;
  font-size: 18px;
}
.home .the-paths .data-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.home .the-paths .data-holder .box {
  padding: 25px 20px 20px;
  border: 1px solid #eee;
  background-color: white;
  border-radius: 10px 10px 0 0;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--primary-color);
}
.home .the-paths .data-holder .box img {
  width: 100px;
}
.home .the-paths .data-holder .box a {
  color: black;
  font-weight: bold;
  font-size: 18px;
  display: block;
  width: fit-content;
  margin: 15px auto 0;
  transition: 0.3s;
}
.home .the-paths .data-holder .box a:hover {
  color: var(--primary-color);
}
.home .latest .data-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.home .latest .data-holder .box {
  background-color: #f4f6fa;
}
.home .latest .front-end .box {
  text-align: center;
  direction: ltr;
}
.home .latest .data-holder .box img {
  max-width: 100%;
  height: auto;
}
.home .latest .data-holder .box a {
  color: black;
  transition: 0.3s;
  font-weight: bold;
  line-height: 1.6;
  display: block;
  width: fit-content;
  padding: 12px;
}
.home .latest .data-holder .box a:hover {
  color: var(--primary-color);
}
.home .last-tuts .data-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .home .last-tuts .data-holder {
    grid-template-columns: 1fr;
  }
}
.home .last-tuts .data-holder .box {
  background-color: white;
  padding: 15px;
}
@media (max-width: 767px) {
  .home .last-tuts .data-holder .box {
    text-align: center;
  }
}
.home .last-tuts .data-holder .box .tut-type {
  text-transform: capitalize;
  background-color: #ddd;
  padding: 5px 10px;
  line-height: 1;
  border-radius: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
  font-size: 13px;
  width: 90px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .home .last-tuts .data-holder .box .tut-type {
    text-align: center;
    display: block;
    margin: 0 auto 10px;
  }
}
.home .last-tuts .data-holder .box .tut-type.web-design {
  background-color: #18a3ac;
}
.home .last-tuts .data-holder .box .tut-type.javascript {
  background-color: #f7df1e;
  color: black;
}
.home .last-tuts .data-holder .box .tut-type.wordpress {
  background-color: #d54e21;
}
.home .last-tuts .data-holder .box .tut-type.python {
  background-color: #4584b6;
}
.home .last-tuts .data-holder .box .tut-type.css {
  background-color: #90bd31;
}
.home .last-tuts .data-holder .box .tut-type.laravel {
  background-color: #f55247;
}
.home .last-tuts .data-holder .box .tut-type.php {
  background-color: #4f5b93;
}
.home .last-tuts .data-holder .box .tut-type.vuejs {
  background-color: #42b883;
}
.home .last-tuts .data-holder .box .tut-type.programming {
  background-color: #7552cc;
}
.home .last-tuts .data-holder .box a {
  color: black;
  font-weight: bold;
  transition: 0.3s;
}
.home .last-tuts .data-holder .box a:hover {
  color: var(--primary-color);
}
.home .whats-new .data-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .home .whats-new .data-holder {
    grid-template-columns: 1fr;
  }
}
.home .whats-new .box {
  background-color: #eee;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
}
.home .whats-new .box .link {
  display: block;
  width: fit-content;
  line-height: 1.8;
  font-weight: bold;
  color: black;
  transition: 0.3s;
  margin-bottom: 15px;
}
.home .whats-new .box .link:hover {
  color: var(--primary-color);
}
.home .whats-new .box .show-more {
  text-align: left;
  margin-top: 10px;
  padding-bottom: 5px;
}
.home .whats-new .box .show-more a {
  font-weight: bold;
  color: var(--primary-color);
  position: relative;
  z-index: 1;
}
.home .whats-new .box .show-more a::before {
  content: "";
  position: absolute;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  right: -14px;
  top: 50%;
  background-color: #f9fbff;
  z-index: -1;
  transform: translateY(-50%);
}
.home .random-q a {
  padding: 15px;
  display: block;
  width: fit-content;
  color: black;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 600;
}
.home .random-q a:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.home .random-q a:hover {
  color: var(--primary-color);
}
.home .latest-comments .data-holder {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .home .latest-comments .data-holder {
    grid-template-columns: 1fr;
  }
}
.home .latest-comments .data-holder .home-comment {
  background-color: #eee;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .home .latest-comments .data-holder .home-comment {
    width: 100%;
    flex-direction: column;
  }
}
.home .latest-comments .data-holder .home-comment img {
  border-radius: 50%;
  margin-left: 15px;
}
.home .latest-comments .data-holder .home-comment .comment-link {
  color: var(--primary-color);
  font-weight: bold;
  transition: 0.3s;
}
.home .latest-comments .data-holder .home-comment .comment-link:hover {
  color: var(--primary-color-alt);
}
.home .latest-comments .data-holder .home-comment .writer {
  color: black;
  font-weight: bold;
  transition: 0.3s;
}
.home .latest-comments .data-holder .home-comment .writer:hover {
  color: var(--primary-color);
}
.home .latest-comments .data-holder .home-comment .info {
  border-right: 1px solid #ccc;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .home .latest-comments .data-holder .home-comment img {
    margin-left: 0;
    margin-bottom: 15px;
  }
  .home .latest-comments .data-holder .home-comment .info {
    border-right: none;
    padding-right: 0;
    border-top: 1px solid #ccc;
    padding-top: 15px;
    text-align: center;
  }
}
/* End Homepage */
/* Start Mentorship */
.mentorship {
  padding: 20px;
  margin: 20px auto;
  font-size: 16px;
  line-height: 1.8;
  background-color: white;
  box-shadow: 0 0 10px #ddd;
}
.mentorship .intro {
  text-align: center;
  border-bottom: 2px dashed #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mentorship h3 {
  background-color: var(--primary-color);
  padding: 15px;
  font-weight: bold;
  color: white;
  font-size: 20px;
}
.mentorship ul {
  position: relative;
}
.mentorship ul::before {
  content: "";
  position: absolute;
  width: 8px;
  height: calc(100% + 10px);
  background-color: var(--primary-color);
  right: 21px;
  top: -10px;
}
.mentorship ul li {
  padding: 10px 60px 10px 10px;
  background-color: #f9f9f9;
  position: relative;
  counter-increment: steps;
  margin-bottom: 10px;
  font-weight: 600;
}
.mentorship ul :before {
  content: counter(steps);
  width: 50px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mentorship ul li.important-point {
  color: red;
}
.mentorship .buy {
  background-color: #ddd;
  padding: 20px;
  text-align: center;
  font-weight: bold;
}
.mentorship .plans {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.mentorship .plans > div {
  flex: 1;
  min-width: 320px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 15px;
  border-radius: 10px;
  direction: ltr;
}
.mentorship .plans .period {
  font-weight: bold;
  color: var(--primary-color);
}
.mentorship .plans > div span {
  font-weight: bold;
  color: var(--green-color);
}
.mentorship .price-note {
  padding: 10px;
  margin-top: 15px;
  display: block;
  background-color: #f6f6f6;
  font-weight: bold;
  color: indianred;
}
.mentorship .present {
  padding: 10px;
  margin-top: 15px;
  display: block;
  background-color: #f6f6f6;
  font-weight: bold;
}
/* End Mentorship */
/* Start Footer */
.footer {
  background-color: black;
  color: white;
  padding: 15px;
}
.footer .social {
  display: flex;
  justify-content: center;
  direction: ltr;
  list-style: none;
  gap: 10px;
  margin-top: 5px;
  margin-bottom: 0;
}
.footer .social a {
  color: white;
  transition: 0.3s;
}
.footer .social a:hover {
  color: var(--primary-color);
}
.footer .copyright {
  text-align: center;
  padding-top: 15px;
}
@media (min-width: 768px) {
  .footer {
    display: flex;
    align-items: center;
  }
  .footer .social {
    flex: 1;
  }
  .footer .copyright {
    flex: 1;
  }
}
.scroll-to-top {
  width: 35px;
  height: 35px;
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: none;
  z-index: 9999;
}
.scroll-to-top span {
  background: linear-gradient(to right, #1368cc 50%, var(--primary-color) 50%) no-repeat scroll right bottom/210% 100%
    var(--primary-color);
  transition: all ease 0.3s;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.scroll-to-top span:hover {
  background-position: left bottom;
}
.scroll-to-top span:before {
  font: normal normal normal 24px/1 "Material Design Icons Light";
  content: "\F05D";
  font-size: 25px;
  position: relative;
  top: 5px;
}
/* End Footer */
/* Start Page 404 */
.page-404 {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  font-size: 30px;
  padding-bottom: 50px;
  min-height: calc(100vh - 110px);
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  top: -4px;
  margin-bottom: -4px;
}
.page-404 img {
  display: block;
  margin: 20px auto 0;
}
.page-404 h2 {
  font-size: 50px;
  direction: ltr;
  margin: 0;
}
.page-404 p {
  font-weight: bold;
  margin: 0;
}
.page-404 .home {
  background-color: #fff;
  color: #000;
  font-size: 20px;
  text-decoration: none;
  margin: 50px auto 0;
  padding: 0.7em 2em;
  border-radius: 500px;
  box-shadow: 0 20px 70px 4px rgba(0, 0, 0, 0.1), inset 7px 33px 0 0px var(--primary-color-alt);
  font-weight: 900;
  transition: all 300ms ease;
  display: block;
  width: fit-content;
}
.page-404 .home:hover {
  -webkit-transform: translateY(-13px);
  transform: translateY(-13px);
  box-shadow: 0 35px 90px 4px rgba(0, 0, 0, 0.3), inset 0px 0 0 2px #000;
}
/* End Page 404 */
/* Start Author Page */
.author-page {
  background-color: #f2f2f2;
  min-height: calc(100vh - 135px);
}
.author-page .author-header {
  background-color: white;
  padding: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .author-page .author-header {
    flex-direction: column;
    text-align: center;
  }
}
.author-page .author-header .avatar {
  border-radius: 50%;
}
.author-page .author-header .avatar .level-count {
  margin-top: 10px;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
}
.author-page .author-header .avatar .level-progress {
  position: relative;
  width: 80%;
  height: 15px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px auto;
  direction: ltr;
}
.author-page .author-header .avatar .level-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
}
.author-page .author-header .info {
  flex: 1;
}
.author-page .author-header h2 {
  margin: 0 0 10px;
  font-weight: bold;
}
.author-page .author-header .name {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 0;
}
.author-page .author-header .author-bio {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.author-page .author-header .joined-date {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  color: black;
  font-weight: bold;
  font-size: 12px;
}
.author-page .author-header .joined-date span {
  font-weight: normal;
  color: #777;
  margin-left: 5px;
}
.author-page .widget {
  background-color: white;
  padding: 20px;
  margin-bottom: 20px;
}
.author-page .widget h3 {
  margin: 0;
  font-weight: bold;
}
.author-page .no-data {
  margin-top: 12px;
}
.author-page .social-widget ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 0;
}
.author-page .social-widget ul li {
  background-color: #eee;
  padding: 10px;
}
.author-page .social-widget ul li img {
  width: 36px;
}
.author-page .latest-posts .posts-list {
  margin-top: 10px;
}
.author-page .latest-posts .posts-list li {
  font-size: 17px;
  padding: 10px 0;
}
.author-page .latest-posts .posts-list li:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.author-page .latest-posts .posts-list li a {
  color: var(--primary-color);
  transition: 0.3s;
}
.author-page .latest-posts .posts-list li a:hover {
  color: var(--primary-color-alt);
}
.author-page .latest-posts .posts-list li span {
  color: #000;
}
.author-page .statistics ul {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .author-page .statistics ul {
    flex-direction: column;
  }
}
.author-page .statistics ul li {
  width: 100%;
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
  transition: 0.3s;
}
.author-page .statistics ul li:hover {
  background-color: #f8f8f8;
  border-color: var(--primary-color);
}
.author-page .statistics ul li:hover .icon {
  color: var(--primary-color);
}
.author-page .statistics ul li .icon {
  color: black;
  font-size: 30px;
  margin-bottom: 10px;
}
.author-page .statistics ul li .label {
  display: block;
  color: #777;
  margin: 10px 0;
}
.author-page .statistics ul li .stat {
  font-weight: bold;
  font-size: 22px;
  line-height: 1;
}
.author-page .statistics .member-since {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 15px;
  margin-top: 15px;
  font-size: 16px;
}
.author-page .statistics .member-since span {
  font-weight: bold;
  color: black;
}
.author-page .points-log ul {
  margin-top: 20px;
}
.author-page .points-log li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eee;
  padding: 15px;
  font-size: 16px;
}
.author-page .points-log li:not(:last-child) {
  margin-bottom: 15px;
}
.author-page .points-log li .data {
  display: flex;
  align-items: center;
}
.author-page .points-log li .data .icon {
  font-size: 30px;
  display: inline-flex;
  height: auto;
  top: 0;
  margin-left: 10px;
}
.author-page .points-log li .data span:not(.icon) {
  font-weight: bold;
  color: var(--primary-color);
}
.author-page .points-log li .points-count {
  color: #009688;
  font-weight: bold;
}
.author-page .coding-skills ul {
  direction: ltr;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid #ccc;
  padding: 20px 0;
  margin-top: 20px;
}
.author-page .coding-skills li {
  padding: 8px 10px;
  border-radius: 6px;
  width: 100px;
  text-align: center;
  line-height: 1;
  color: white;
}
.skill-html {
  background-color: #e34f26;
}
.skill-css {
  background-color: #3b49df;
}
.skill-javascript {
  background-color: #f7df1e;
  color: black !important;
}
.skill-typescript {
  background-color: #2f74c0;
}
.skill-sass {
  background-color: #bf4080;
}
.skill-less {
  background-color: #1d365d;
}
.skill-stylus {
  background-color: #fe6347;
}
.skill-postcss {
  background-color: #d6380a;
}
.skill-pugjs {
  background-color: #53312a;
}
.skill-handlebars {
  background-color: #584b40;
}
.skill-twig {
  background-color: #bacf29;
}
.skill-gulp {
  background-color: #cf4647;
}
.skill-grunt {
  background-color: #e48632;
}
.skill-webpack {
  background-color: #5299c8;
}
.skill-rollup {
  background-color: #e93335;
}
.skill-parcel {
  background-color: #464be6;
}
.skill-bootstrap {
  background-color: #6e09f4;
}
.skill-tailwind {
  background-color: #38bdf8;
}
.skill-materialize {
  background-color: #ee6e73;
}
.skill-foundation {
  background-color: #074e68;
}
.skill-cpp {
  background-color: #044f88;
}
.skill-rust {
  background-color: #0b7261;
}
.skill-php {
  background-color: #4f5b93;
}
.skill-python {
  background-color: #4584b6;
}
.skill-java {
  background-color: #5283a2;
}
.skill-chash {
  background-color: #390091;
}
.skill-ruby {
  background-color: #cc0000;
}
.skill-mysql {
  background-color: #00758f;
}
.skill-mongodb {
  background-color: #589636;
}
.skill-postgresql {
  background-color: #336791;
}
.skill-sqlite {
  background-color: #0482c4;
}
.skill-mariadb {
  background-color: #c0765a;
}
.skill-oracle {
  background-color: #ff0000;
}
.skill-redis {
  background-color: #dc382c;
}
.skill-firebase {
  background-color: #f5840f;
}
.skill-vue {
  background-color: #42b883;
}
.skill-react {
  background-color: #00d8ff;
}
.skill-angular {
  background-color: #b52e31;
}
.skill-svelte {
  background-color: #ff3e00;
}
.skill-nodejs {
  background-color: #6cc24a;
}
.skill-expressjs {
  background-color: #333331;
}
.skill-jquery {
  background-color: #0769ad;
}
.skill-jest {
  background-color: #15c213;
}
.skill-mocha {
  background-color: #8d6748;
}
.skill-chai {
  background-color: #a40802;
}
.skill-cypress {
  background-color: #69d3a7;
}
.skill-jasmine {
  background-color: #8a4182;
}
.skill-karma {
  background-color: #42beae;
}
.skill-protractor {
  background-color: #b52e31;
}
.skill-laravel {
  background-color: #f55247;
}
.skill-symfony {
  background-color: #000;
}
.skill-django {
  background-color: #092e20;
}
.skill-flask {
  background-color: #3ea5ba;
}
.skill-spring {
  background-color: #65b743;
}
.skill-asp-net {
  background-color: #1879bd;
}
.skill-ruby-on-rails {
  background-color: #cc0000;
}
.author-page .user-trophies ul {
  direction: ltr;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.author-page .user-trophies .trophy {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #eee;
  padding: 12px;
  border-radius: 6px;
  width: 128px;
}
.author-page .user-trophies .trophy img {
  max-width: 100%;
  width: 68px;
}
.author-page .user-trophies .trophy.locked {
  opacity: 0.3;
}
.author-page .user-trophies .trophy .trophy-name {
  margin-top: 10px;
  font-size: 13px;
}
.author-page .user-trophies .trophy:not(.locked) .trophy-name {
  font-weight: bold;
  color: var(--primary-color);
}
/* End Author Page */
/* Start Leaderboard Page */
.leaderboard table {
  direction: ltr;
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
  min-width: 500px;
}
.leaderboard table th {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  background-color: #ddd;
}
.leaderboard table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
  background-color: white;
}
.leaderboard table td:first-child img {
  width: 50px;
  border-radius: 50%;
  border: 1px solid #ccc;
}
.leaderboard table td:nth-child(2) img {
  width: 50px;
}
.leaderboard table td:first-child,
.leaderboard table th:first-child,
.leaderboard table td:nth-child(2),
.leaderboard table th:nth-child(2) {
  width: 80px;
  text-align: center;
}
.leaderboard table td:last-child,
.leaderboard table th:last-child {
  width: 90px;
  text-align: center;
}
/* End Leaderboard Page */
/* Start Fundamentals Pages */
.items-container {
  counter-reset: count;
  margin: 20px auto;
  direction: ltr;
}
.items-container .video {
  background-color: white;
  padding: 30px;
  position: relative;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .items-container .video {
    margin-bottom: 30px;
  }
}
.items-container .video::before {
  counter-increment: count;
  content: counter(count);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  width: 30px;
  height: 30px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .items-container .video::before {
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
  }
}
.items-container .video .item {
  background-color: #f5f5f5;
  padding: 20px;
}
@media (max-width: 767px) {
  .items-container .video .item {
    text-align: center;
  }
}
.items-container .video .item:not(:last-child) {
  margin-bottom: 15px;
}
.items-container .video .item .name {
  font-weight: bold;
  font-size: 25px;
}
.items-container .video .info {
  margin-top: 15px;
  font-size: 13px;
}
.items-container .video .info .time {
  display: inline-flex;
  padding: 3px 6px;
  border-radius: 6px;
  background-color: #000;
  color: white;
  margin-right: 5px;
  font-weight: bold;
}
.items-container .video .info a {
  text-decoration: none;
  display: inline-flex;
  padding: 3px 6px;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  margin-right: 5px;
  font-weight: bold;
}
.items-container .video .info .url {
  background-color: #03a9f4;
}
.items-container .video .info .solution {
  background-color: #e91e63;
}
/* End Fundamentals Pages */
/* Start Meetings List */
.meetings-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.meetings-list .meeting {
  border: 1px solid #eee;
  background-color: white;
  position: relative;
}
.meetings-list .meeting .type {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: black;
  color: white;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: bold;
  border: 1px solid white;
}
.meetings-list .meeting .type.podcast {
  color: #ffc107;
}
.meetings-list .meeting .type.tv {
  color: #00bcd4;
}
.meetings-list .meeting .type.live {
  color: #8bc34a;
}
.meetings-list .meeting > a {
  display: block;
  padding: 15px;
  width: fit-content;
  color: black;
  font-weight: bold;
  font-size: 17px;
  line-height: 1.6;
  min-height: 94px;
  transition: 0.3s;
}
.meetings-list .meeting > a:hover {
  color: var(--primary-color);
}
.meetings-list .meeting .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #eee;
}
.meetings-list .meeting .info a {
  font-weight: bold;
  font-size: 13px;
  color: var(--primary-color);
}
.meetings-list .meeting .info span {
  background-color: #eee;
  padding: 2px 10px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: bold;
}
/* End Meetings List */
/* Start Contact Us */
.contact-page {
  padding: 20px;
  margin-top: 20px;
  background-color: white;
  font-size: 20px;
}
.contact-page .contact-text {
  color: black;
  line-height: 2;
  background-color: #fbf9f9;
  padding: 20px;
  font-size: 18px;
}
.contact-page .contact-text p {
  margin: 0;
  font-size: 16px;
  color: red;
  font-weight: bold;
}
.contact-page .contact-text:not(:first-of-type) {
  margin-top: 15px;
}
.contact-page .contact-box {
  direction: ltr;
  display: flex;
  align-items: center;
  background-color: #eee;
  margin-top: 15px;
}
.contact-page .contact-box i {
  background-color: #eeeeee;
  padding: 20px;
  font-size: 25px;
  color: var(--primary-color);
  border-right: 2px solid white;
}
.contact-page .contact-box a {
  padding: 20px;
  font-weight: bold;
  color: var(--primary-color);
}
/* End Contact Us */
/* Start Fav Games */
.franchise-name {
  margin-top: 20px;
  text-align: center;
  padding: 20px;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 40px;
  border: 2px solid #ddd;
}
.game-box {
  direction: ltr;
  background-color: #f2f5fc;
  padding: 15px;
  margin: 15px 0;
}
.game-box h3 {
  margin: 0 0 15px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
}
.game-box h3 span {
  font-size: 12px;
  margin-left: 10px;
  line-height: 1;
  color: #607d8b;
  font-weight: normal;
}
.game-box .content-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .game-box .content-box {
    flex-direction: column;
  }
}
.game-box .content-box .info {
  display: flex;
  align-items: center;
  line-height: 1.5;
  font-size: 16px;
}
@media (max-width: 767px) {
  .game-box .content-box .info {
    flex-direction: column;
    text-align: center;
  }
  .game-box .content-box .info img {
    margin: 0 0 10px !important;
  }
  bullet {
    display: block;
  }
}
.game-box .content-box .info img {
  margin-right: 15px;
}
.game-box .content-box .info h4 {
  margin: 0 0 5px;
  font-weight: bold;
  font-size: 20px;
}
.game-box .content-box .info .psn-link {
  font-weight: bold;
  color: var(--primary-color);
  transition: 0.3s;
}
.game-box .content-box .info .psn-link:hover {
  color: var(--primary-color-alt);
}
.game-box .content-box .trophies-area {
  padding: 0 20px;
  font-weight: bold;
}
.game-box .content-box .trophies-area .gold,
.game-box .content-box .trophies-area .gold + span {
  color: #c2903e;
  font-size: 25px;
}
.game-box .content-box .trophies-area .silver,
.game-box .content-box .trophies-area .silver + span {
  color: #777777;
  font-size: 25px;
}
.game-box .content-box .trophies-area .bronze,
.game-box .content-box .trophies-area .bronze + span {
  color: #c46438;
  font-size: 25px;
}
.game-box .content-box .trophies-area .num:not(:last-of-type) {
  border-right: 1px solid #ccc;
  padding-right: 10px;
  margin-right: 10px;
  line-height: 1;
  display: inline-flex;
}
.game-box .trophies-area .the-prog {
  background-color: var(--primary-color);
  color: white;
  padding: 5px;
  text-align: center;
  border-radius: 10px;
  line-height: 1;
  margin-top: 5px;
}
.game-box .trophies-area .console {
  font-weight: normal;
  text-align: center;
  width: fit-content;
  margin: 15px auto 0;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 5px 10px;
  line-height: 1;
  font-size: 16px;
}
/* End Fav Games */
/* Start New Roadmaps Design */
.roadmaps .roadmaps {
  position: relative;
}
.roadmaps .roadmap.completed::before {
  content: "Completed";
  position: absolute;
  left: 12px;
  top: -12px;
  background-color: #333;
  color: white;
  font-weight: bold;
  padding: 2px 10px;
  border-radius: 6px;
}
.roadmaps .roadmap.completed {
  border-bottom-color: #333;
  opacity: 1;
}
.roadmaps .learn-tip {
  padding: 15px;
  margin: 20px auto;
  background-color: white;
  font-size: 18px;
  position: relative;
}
.roadmaps .learn-tip::before {
  content: "";
  width: 3px;
  height: 30px;
  background-color: var(--primary-color);
  position: absolute;
  right: -1.5px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.roadmaps .learn-tip:hover::before {
  height: 100%;
}
.roadmaps .learn-tip span {
  font-weight: bold;
  color: indianred;
}
.roadmaps .roadmap {
  background-color: white;
  padding: 25px;
  position: relative;
  margin-bottom: 20px;
  border-bottom: 5px solid #ccc;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .roadmaps .roadmap {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .roadmaps .roadmap::after {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    width: 2px;
    height: calc(100% + 2px);
    border: 5px dashed #ccc;
    opacity: 0.2;
  }
}
.roadmaps .roadmap img {
  width: 80px;
  position: absolute;
  left: 20px;
  top: 20px;
  opacity: 0.07;
}
.roadmaps .roadmap h2 {
  margin: 0 0 30px;
  font-weight: bold;
  letter-spacing: -1px;
  line-height: 1;
  width: fit-content;
  position: relative;
}
.roadmaps .roadmap h2 strong {
  font-size: 12px;
  position: relative;
  top: -5px;
  margin-right: 5px;
  color: #009688;
}
@media (max-width: 767px) {
  .roadmaps .roadmap h2 {
    margin-right: auto;
    margin-left: auto;
  }
}
.roadmaps .roadmap h2::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;
}
.roadmaps .roadmap h2:hover::before {
  width: 100%;
}
.roadmaps .roadmap h2 span {
  position: absolute;
  right: 0;
  font-size: 12px;
  bottom: -20px;
  letter-spacing: 1px;
  color: #777;
  font-weight: normal;
  transition: 0.3s;
}
.roadmaps .roadmap h2:hover span {
  color: black;
}
.roadmaps .roadmap p {
  line-height: 1.9;
  font-size: 18px;
  color: black;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}
.roadmaps .roadmap p::after {
  content: "";
  position: absolute;
  bottom: -1px;
  right: 50%;
  transform: translateX(50%);
  background-color: var(--primary-color);
  height: 1px;
  width: 40px;
  transition: 0.3s;
}
.roadmaps .roadmap:hover p::after {
  transform: translateX(0);
  right: 0;
  width: 100%;
}
.roadmaps .roadmap p span,
.roadmaps .roadmap p bdi {
  font-weight: bold;
  color: var(--primary-color);
}
.roadmaps .roadmap .details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.roadmaps .roadmap .details a {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  padding: 8px 10px;
  display: block;
  width: fit-content;
  border-radius: 6px;
  transition: 0.3s;
  border-bottom: 2px solid var(--primary-color-alt);
  border-top: 2px solid var(--primary-color-alt);
}
.roadmaps .roadmap .details a:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color-alt);
}
.roadmaps .roadmap .details .cinfo {
  font-weight: bold;
  display: block;
  background-color: #fafafa;
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}
.roadmaps .roadmap .details .cinfo span {
  color: var(--primary-color);
}
/* End New Roadmaps Design */
/* Start Classic Track */
.classic-track {
  direction: ltr;
  margin-top: 20px;
}
.classic-track .item {
  position: relative;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px #ddd;
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.classic-track .item:not(:last-child) {
  margin-bottom: 20px;
}
.classic-track .item .status {
  position: absolute;
  right: -40px;
  top: 50%;
  border-radius: 6px;
  font-weight: bold;
  color: white;
  transform: rotate(90deg);
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -12px;
  width: 80px;
  background-color: #333;
}
.classic-track .item .status.completed {
  background-color: #009688;
}
.classic-track .item .image {
  width: 250px;
}
.classic-track .item .image img {
  max-width: 100%;
}
.classic-track .item .info .title {
  margin: 0 0 10px;
  font-weight: bold;
}
.classic-track .item .info p strong {
  color: #e91e63;
}
.classic-track .item .info a {
  display: inline-flex;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  transition: 0.3s;
  padding: 2px 10px;
  border-radius: 6px;
}
.classic-track .item .info a:hover {
  background-color: var(--primary-color-alt);
}
@media (max-width: 767px) {
  .classic-track .item {
    justify-content: center;
    text-align: center;
  }
}
/* End Classic Track */
/* Start Study Plan */
.fast-go {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 15px;
  padding: 15px;
  margin: 0;
}
.fast-links {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}
.fast-links li.active {
  color: var(--primary-color);
}
.study-plan-intro {
  background-color: white;
  padding: 15px;
  margin: 20px 0;
  display: flex;
  text-align: center;
  flex-wrap: wrap;
}
.study-plan-intro a {
  display: block;
  font-weight: bold;
  color: black;
  padding: 10px 0;
  transition: 0.3s;
  width: calc(100% / 3);
}
.study-plan-intro a:hover {
  background-color: #f5f5f5;
  color: var(--primary-color);
}
.study-plan-intro a::before {
  font: normal normal normal 24px/1 "Material Design Icons Light";
  display: block;
  margin: 0 auto 10px;
  font-size: 25px;
}
.study-plan-intro a:not(:last-child) {
  border-left: 1px solid #eee;
}
.study-plan-intro .course-link::before {
  content: "\F36B";
}
.study-plan-intro .course-code::before {
  content: "\F5C0";
}
.study-plan-intro .course-link-one::before {
  content: "\F1DA";
}
@media (max-width: 767px) {
  .study-plan-intro a {
    width: 100%;
  }
  .study-plan-intro a:not(:last-child) {
    width: 100%;
    border-left: none;
  }
  .study-plan-intro a::before {
    display: none;
  }
}
.week-box {
  background-color: #fff;
  padding: 0;
  box-shadow: 0 0 10px #ddd;
  margin-bottom: 20px;
}
.week-title {
  background-color: var(--primary-color);
  color: white;
  margin: 0;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  display: flex;
  justify-content: space-between;
}
.week-do {
  padding: 20px;
  background-color: #f8f8f8;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}
.week-do span {
  display: block;
  font-weight: normal;
  margin-top: 5px;
  color: #717171;
}
.week-lessons {
  direction: ltr;
}
.week-lessons li {
  padding: 15px;
  font-size: 17px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  border-left: 2px solid white;
  transition: 0.3s;
}
.week-lessons li:hover {
  border-left-color: var(--primary-color);
}
.week-lessons li > div {
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ccc;
}
.week-lessons li .info {
  margin-top: 5px;
  font-size: 14px;
}
.week-lessons li .info a {
  color: black;
  font-weight: bold;
  margin-right: 10px;
  transition: 0.3s;
}
.week-lessons li .info a:hover {
  color: var(--primary-color);
}
.week-lessons li .info span:not(.practice-label) {
  color: #777;
}
.week-lessons li .info span:not(.practice-label)::before {
  content: "[ ";
}
.week-lessons li .info span:not(.practice-label)::after {
  content: " ]";
}
.week-lessons li .info .practice-label {
  color: red;
  font-weight: bold;
  margin-left: 10px;
}
.assign-links li {
  padding: 15px;
}
.assign-links li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.assign-links a {
  color: black;
  font-weight: bold;
  transition: 0.3s;
  font-size: 17px;
}
.assign-links a:hover {
  color: var(--primary-color);
}
.assign-links li > span {
  display: block;
  margin-top: 5px;
  font-size: 15px;
}
.assign-links li > span span {
  font-weight: bold;
  color: var(--primary-color);
}
.terms-items {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px !important;
}
.terms-items li {
  background-color: #eee;
  padding: 10px;
  margin-left: 10px;
  margin-top: 10px;
  border-radius: 6px;
  font-weight: bold;
}
.plan-ref-and-tools li {
  padding: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.plan-ref-and-tools li::before {
  font: normal normal normal 24px/1 "Material Design Icons Light";
  content: "\F2D1";
  margin-right: 10px;
}
.plan-ref-and-tools li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.plan-ref-and-tools li a {
  font-weight: bold;
  color: black;
  transition: 0.3s;
}
.plan-ref-and-tools li a:hover {
  color: var(--primary-color);
}
/* End Study Plan */
/* Start Design Preview Page */
.design-preview {
  padding: 20px;
  background-color: white;
  margin-top: 20px;
  border-radius: 10px;
}
.design-preview h3 {
  margin: 20px 0;
  background-color: #eee;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
}
.design-preview h3:first-of-type {
  margin-top: 0;
}
.design-preview img {
  border: 2px solid #eee;
  padding: 3px;
  background-color: white;
  border-radius: 10px;
}
/* End Design Preview Page */
/* Start Influencers Page */
.influencers {
  background-color: white;
  padding: 20px;
  direction: ltr;
}
@media (min-width: 768px) {
  .influencers {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
  }
}
.influencers .box {
  background-color: #eee;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #f1f1f1;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .influencers .box {
    margin-bottom: 20px;
  }
}
.influencers .box .content {
  position: relative;
  z-index: 2;
}
.influencers .box .content h4 {
  background-color: white;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.influencers .box .content .channel-name {
  font-weight: bold;
  font-size: 13px;
  color: #009688;
}
.influencers .box .content > img {
  max-width: 100%;
  height: auto;
  width: 100%;
  border: 1px solid white;
  border-radius: 6px;
}
.influencers .box ul {
  display: flex;
  justify-content: center;
  gap: 5px;
  background-color: white;
  padding: 10px;
  border-radius: 6px;
  margin-top: 10px;
}
.influencers .box ul li a img {
  width: 30px;
  border-radius: 6px;
  transition: 0.3s;
}
.influencers .box ul li a img:hover {
  transform: rotate(0.25turn);
}
.influencers .box ul li .tag {
  color: white;
  padding: 2px 10px;
  display: inline-flex;
  border-radius: 6px;
  font-weight: bold;
}
.influencers .box ul li .tag.history {
  background-color: #03a9f4;
}
.influencers .box ul li .tag.marketing {
  background-color: #e91e63;
}
.influencers .box ul li .tag.business {
  background-color: #009688;
}
.influencers .box ul li .tag.management {
  background-color: #ff5722;
}
.influencers .box:hover:before {
  animation: rotateImportantText 5s infinite linear;
  background-image: linear-gradient(
    to bottom,
    rgba(24, 120, 96, 0) 40%,
    var(--primary-color) 50%,
    rgba(24, 120, 96, 0) 60%
  );
}
.influencers .box:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
}
.influencers .box:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 5px;
  background-color: #ededed;
}
@-webkit-keyframes rotateImportantText {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotateImportantText {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* End Influencers Page */
/* Start Life Journey */
.video-area {
  padding-top: 20px;
}
.video-area .video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid #eee;
  gap: 20px;
  position: relative;
  counter-increment: lessons;
}
.video-area .video::before {
  content: counter(lessons);
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 80px;
  color: var(--primary-color);
  font-weight: bold;
  line-height: 1;
  opacity: 0.1;
}
.video-area .video img {
  max-width: 100%;
  padding: 5px;
  background-color: white;
}
@media (min-width: 768px) {
  .video-area .video img {
    width: 250px;
  }
}
.video-area .video .info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.video-area .video .info h3 {
  margin: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 21px;
  margin-bottom: 10px;
  width: 100%;
}
.video-area .video .info p {
  margin: 0 0 10px;
  line-height: 1.8;
  font-size: 16px;
  color: #777;
  width: 100%;
}
.video-area .video .info a {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  padding: 10px;
  border-radius: 6px;
  line-height: 1;
}
.video-area .video .info .time {
  background-color: #eee;
  color: #777;
  padding: 4px 10px;
  border-radius: 6px;
}
/* End Life Journey */
/* Start Courses Child Lessons */
.courses-lessons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.courses-lessons .the-box {
  border: 1px solid #eee;
  background-color: white;
}
.courses-lessons > img {
  max-width: 100%;
}
.courses-lessons .box-link {
  display: block;
  padding: 15px;
  width: fit-content;
  color: black;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.6;
  min-height: 94px;
  transition: 0.3s;
}
.courses-lessons .box-link:hover {
  color: var(--primary-color);
}
.courses-lessons .box-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-top: 1px solid #eee;
}
.courses-lessons .box-footer .video-number {
  color: var(--primary-color);
}
.courses-lessons .box-footer .video-techs {
  font-size: 14px;
  color: #777;
}
.courses-lessons .box-footer .video-time {
  background-color: #eee;
  padding: 2px 10px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: bold;
}
.courses-lessons .box-footer .video-date {
  color: #777;
  font-family: Tahoma, Arial;
}
.courses-lessons.list-view {
  display: block;
}
.courses-lessons.list-view .the-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.courses-lessons.list-view .the-box img {
  width: 200px;
}
.courses-lessons.list-view .the-box img + div {
  flex: 1;
}
.courses-lessons.list-view .box-link {
  min-height: auto;
}
/* End Courses Child Lessons */
/* Start Themes Demos */
.themes-demos {
  margin-top: 20px;
  direction: ltr;
}
.themes-demos .demo {
  background-color: white;
  padding: 20px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  position: relative;
  counter-increment: demos;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .themes-demos .demo {
    padding: 20px 20px 20px 40px;
  }
}
@media (max-width: 767px) {
  .themes-demos .demo {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .themes-demos .demo::before {
    content: counter(demos);
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    padding: 2px 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
  }
}
.themes-demos .demo img {
  width: 140px;
  margin-right: 20px;
  border-radius: 50%;
  padding: 3px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}
@media (max-width: 767px) {
  .themes-demos .demo img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.themes-demos .demo .info .link {
  font-size: 30px;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: black;
  transition: 0.3s;
}
.themes-demos .demo .info .name {
  font-size: 20px;
  margin: 0 0 15px;
}
.themes-demos .demo .info .name span {
  font-weight: bold;
  color: var(--primary-color);
}
.themes-demos .demo .info .link:hover {
  color: var(--primary-color);
}
.themes-demos .demo .info .author {
  color: black;
  transition: 0.3s;
  font-weight: bold;
}
.themes-demos .demo .info .author:hover {
  color: var(--primary-color);
}
/* End Themes Demos */
/* Start Code Area */
div.code-toolbar > .toolbar > .toolbar-item > button.copy-to-clipboard-button {
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  position: relative;
  right: 2px;
  top: 2px;
}
/* End Code Area */
/* Start Breadcrumbs */
.breadcrumb-container {
  position: relative;
  background-image: url(../images/bg/wave-pattern-light.svg);
  z-index: 1;
  background-size: cover;
}
.breadcrumb-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fafafa;
  opacity: 0.85;
  border-radius: 0;
  z-index: -1;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}
.breadcrumb-container .row {
  display: flex;
  align-items: center;
}
.breadcrumb-container h1 {
    color: black;
    font-size: 15px;
    margin: 0;
    font-weight: bold;
}
.breadcrumb-container .links {
  padding: 15px;
  font-size: 14px;
  margin: 0 auto 0 0;
}
.breadcrumb-container .links > li {
  display: inline-block;
  color: #6b6b6b;
}
.breadcrumb-container .links > li:not(.active) {
  font-weight: bold;
}
.breadcrumb-container .links > li + li:before {
  padding: 0 5px;
  color: #999;
  content: "/\00a0";
}
.breadcrumb-container .links a {
  color: black;
  transition: 0.3s;
  direction: ltr;
  display: inline-flex;
}
@media (max-width: 767px) {
  .breadcrumb-container .links > li {
    display: block;
    text-align: center;
  }
  .breadcrumb-container .links > li:not(:first-child):before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f103";
    color: #bbb;
    display: block;
    font-size: 15px;
    margin: 10px;
  }
}
/* End Breadcrumbs */
/* Start Widgets */
.login-widget .input {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ccc;
  caret-color: var(--primary-color);
}
.login-widget input[type="submit"] {
  padding: 10px;
  width: 100%;
  border: none;
  background-color: var(--primary-color);
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.login-widget .join-supporters {
  text-align: center;
  margin-top: 15px;
}
.login-widget .join-supporters a {
  color: var(--primary-color);
  font-weight: bold;
  transition: 0.3s;
}
.login-widget .user-avatar {
  margin: 10px auto;
  text-align: center;
}
.login-widget .user-avatar img {
  padding: 5px;
  background-color: white;
  border: 1px solid #ccc;
}
.login-widget .user-name {
  font-size: 20px;
  text-align: center;
}
.login-widget .user-name span {
  font-weight: bold;
}
.login-widget .user-links {
  display: flex;
  align-items: center;
  direction: ltr;
  margin: 15px 0 0;
  border-top: 1px solid #ccc;
  padding-top: 20px;
  gap: 15px;
  justify-content: center;
}
.login-widget .user-links a {
  font-size: 16px;
  color: black;
  font-weight: bold;
  transition: 0.3s;
}
.login-widget .user-links a:hover {
  color: var(--primary-color);
}
.login-widget .user-level {
  margin: 20px 0 0;
  border-top: 1px solid #ccc;
}
.login-widget .user-level .level-count {
  margin-top: 10px;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 20px;
  text-align: center;
}
.login-widget .user-level .level-progress {
  position: relative;
  width: 80%;
  height: 15px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin: 10px auto;
  direction: ltr;
}
.login-widget .user-level .level-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
}
/* End Widgets */
/* Start Main Control */
.main-control {
  direction: ltr;
  display: none;
  padding: 40px 20px;
  background-color: white;
  margin-top: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding: 40px 15px 20px;
}
.main-control::before {
  content: "Statistics & Options";
  position: absolute;
  top: -12px;
  padding: 2px 10px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 9px;
  height: 24px;
  left: 50%;
  transform: translateX(-50%);
}
.main-control .stats {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.main-control .stats .stat {
  flex: 1;
  font-weight: bold;
}
.main-control .stats .stat .icon {
  margin-bottom: 20px;
  color: black;
  font-size: 30px;
}
.main-control .stats .stat .title {
  display: block;
  color: #777;
  font-size: 16px;
  font-weight: normal;
  margin: 5px 0;
}
.main-control .stats .stat .number {
  font-size: 22px;
}
.main-control .options {
  flex-grow: 1;
  text-align: center;
  border-top: 1px solid #ccc;
  width: 100%;
  margin-top: 20px;
  padding: 20px 0 0;
}
.main-control .the-progress {
  display: block;
  width: 100%;
  height: 16px;
  background-color: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  direction: ltr;
  position: relative;
}
.main-control .the-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
}
/* End Main Control */
/* Start Custom Toggle */
.toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 46px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s;
}
.toggle-switch:before,
.toggle-switch:after {
  content: "";
}
.toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom, #fff 0%, #eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
  width: 12px;
  height: 12px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.25s;
}
.toggle:hover .toggle-switch:before {
  background: linear-gradient(to bottom, #fff 0%, #fff 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
}
.toggle-checkbox:checked + .toggle-switch {
  background-color: var(--primary-color);
}
.toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}
.toggle-checkbox {
  -webkit-appearance: none;
  appearance: none;
}
/* End Custom Toggle */
/* Start Comments */
.main-comments {
  padding: 15px;
  margin-bottom: 20px;
  background-color: white;
  font-size: 18px;
  border: 1px solid #eee;
}
.main-comments .comments-count,
.main-comments .comment-reply-title {
  background-color: var(--primary-color);
  color: white;
  padding: 20px;
  margin: 0 0 20px;
  font-weight: bold;
}
.main-comments .comments-list .comment {
  padding: 15px;
}
.main-comments .comments-list > .comment {
  background-color: #eee;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.main-comments .comments-list .comment-body {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-comments .comments-list .comment-body .avatar-area {
  padding: 20px;
  margin-left: 20px;
  border: 3px solid transparent !important;
}
@media (max-width: 767px) {
  .main-comments .comments-list .comment-body .avatar-area {
    margin-left: 0;
    width: 100%;
  }
}
.main-comments .comments-list .info {
  flex: 1;
}
.main-comments .comments-list .info p {
  line-height: 1.6;
  font-size: 15px;
  color: black;
}
.main-comments .comments-list .info .control {
  padding: 15px 0;
  border-top: 1px solid #ddd;
  margin-top: 15px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
}
.main-comments .comments-list .info .text a {
  font-weight: bold;
  color: black;
  transition: 0.3s;
}
.main-comments .comments-list .info .text a:hover {
  color: var(--primary-color);
}
.main-comments .awaiting-moderation {
  color: #e91e63;
  text-align: center;
  font-weight: bold;
  font-size: 13px;
  font-style: normal;
}
.main-comments .comments-list .info .links {
  display: flex;
  gap: 5px;
}
.main-comments .comments-list .info .comment-reply-link {
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  background-color: var(--primary-color);
}
.main-comments .comments-list .info .comment-edit-link {
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  background-color: var(--green-color);
}
.main-comments .comments-list .info .hash-url {
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  background-color: indianred;
}
.main-comments .comments-list .info .comment-reply-login {
  padding: 4px 10px;
  border-radius: 6px;
  color: white;
  font-weight: bold;
  background-color: #673ab7;
}
.main-comments .comments-list > .comment > .children > .comment {
  background-color: #fff;
  margin-top: 15px;
}
.main-comments .comments-list > .comment > .comment-body > .avatar-area,
.main-comments .comments-list > .comment > .children > .comment .children .comment > .comment-body > .avatar-area {
  border-color: white;
}
.main-comments .comments-list > .comment > .children > .comment > .comment-body > .avatar-area {
  border-color: #eee;
}
.main-comments .comments-list > .comment > .children > .comment .children .comment {
  background-color: #eee;
  margin-top: 15px;
}
.comment-separator {
  background-color: #fff;
  border-top: 2px dashed #8c8b8b;
}
.comment-form .logged-in-as {
  font-size: 15px;
  margin-bottom: 15px;
}
.comment-form .required-field-message,
.comment-form-comment label {
  display: none;
}
.comment-form-comment {
  margin: 0;
}
.comment-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  resize: vertical;
  min-height: 100px;
  background-color: #eee;
}
.comment-form .submit {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .main-comments .comments-list .comment-body {
    flex-direction: column;
    text-align: center;
  }
  .main-comments .comments-list .info .control {
    flex-direction: column;
  }
  .main-comments .comments-list .info .control .text {
    margin-bottom: 10px;
  }
}
.avatar-area .level-count {
  margin-top: 5px;
  font-weight: bold;
  text-align: center;
}
.avatar-area .level-progress {
  position: relative;
  height: 10px;
  background-color: #bbb;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 5px;
  direction: ltr;
}
.avatar-area .level-progress span {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background-color: var(--primary-color);
}
/* End Comments */
/* Start Misc Selectors */
.video-answer {
  display: inline-flex;
  max-width: 320px;
}
.video-answer img {
  padding: 3px;
  border: 1px solid #ccc;
}
.has-video-answer {
  display: inline-flex;
  background-color: #f44336;
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: bold;
  margin-top: 8px;
}
/* End Misc Selectors */
