/*!--------------------------------------------------------------
This is your custom stylesheet.

Add your own styles here to make theme updates easier.
To override any styles from other stylesheets, simply copy them into here and edit away.

Make sure to respect the media queries! Otherwise you may
accidentally add desktop styles to the mobile layout.
https://www.w3schools.com/css/css_rwd_mediaqueries.asp
--------------------------------------------------------------*/
@-webkit-keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

@keyframes dash-check {
  0% {
    stroke-dashoffset: -100;
  }
  100% {
    stroke-dashoffset: 900;
  }
}

.custom-page-template-full #page > .site-content {
  padding-left: 0;
  padding-right: 0;
}

.custom-page-template-full #page > .site-content .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.custom-page-template-full #page > .site-content .bb-grid {
  margin-left: 0;
  margin-right: 0;
}

.custom-page-template-full #page > .site-content .bb-grid .bb-grid-cell:not(.no-gutter),
.custom-page-template-full #page > .site-content .bb-grid > :not(.no-gutter) {
  padding-left: 0;
  padding-right: 0;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.75);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0;
}

.modal .modal-content {
  position: relative;
  margin: auto;
}

.modal .close {
  position: absolute;
  top: 22px;
  right: 22px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#videoModal .modal-content {
  max-width: 800px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 40px 50px 72px;
  width: calc(100% - 40px);
  text-align: center;
}

@media only screen and (max-width: 601px) {
  #videoModal .modal-content {
    padding: 40px 20px;
  }
}

#videoModal .fluid-width-video-wrapper {
  padding-bottom: 56.25%;
}

#videoModal p {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  text-transform: capitalize;
  color: #8f4d93;
  margin-bottom: 4px;
}

#videoModal h2 {
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 40px;
}

@media only screen and (max-width: 601px) {
  #videoModal h2 {
    margin-bottom: 20px;
  }
}

#page .footer-bottom {
  padding-top: 12px;
  padding-bottom: 12px;
}

#page .footer-bottom .container {
  max-width: 1410px;
  width: calc(100% - 10px);
}

#page .footer-bottom .copyright {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 24px;
  line-height: 24px;
  color: #ffffff;
}

#page .footer-bottom.bb-footer .footer-socials i {
  font-size: 36px;
  position: relative;
  z-index: 1;
}

#page .footer-bottom.bb-footer .footer-socials i:hover::after {
  background: #000;
}

#page .footer-bottom.bb-footer .footer-socials i::after {
  content: "";
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.hero {
  max-width: 1410px;
  margin: 0 auto;
  width: calc(100% - 40px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 410px;
      grid-template-columns: 1fr 410px;
  grid-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 100px;
}

@media only screen and (max-width: 1024px) {
  .hero {
    -ms-grid-columns: 1fr 300px;
        grid-template-columns: 1fr 300px;
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .hero {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 60px;
  }
}

.hero-inner {
  display: -ms-grid;
  display: grid;
  row-gap: 80px;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
}

.hero .welcome {
  background: linear-gradient(268.13deg, #e44371 0%, #43177d 100%);
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 385px 1fr;
      grid-template-columns: 385px 1fr;
  padding: 30px 77px 0 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (max-width: 601px) {
  .hero .welcome {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    padding: 30px 20px 0;
  }
}

.hero .welcome.resume {
  padding: 60px 40px 50px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
}

.hero .welcome .resume-course {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 150px 1fr 240px;
      grid-template-columns: 150px 1fr 240px;
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 601px) {
  .hero .welcome .resume-course {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.hero .welcome .resume-course h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 8px;
}

.hero .welcome .resume-course h4 {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  margin-bottom: 8px;
}

.hero .welcome .resume-course h4 a {
  color: #00a8e2;
}

@media only screen and (max-width: 1024px) {
  .hero .welcome .resume-course__details {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
  }
}

@media only screen and (max-width: 601px) {
  .hero .welcome .resume-course__details {
    grid-column: 1/-1;
  }
}

.hero .welcome .resume-course__pbar {
  height: 4px;
  background: #e1e1e1;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .welcome .resume-course__pbar-inner {
  height: 4px;
  background: #7cc623;
  border-radius: 100px 0px 0px 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

@media only screen and (max-width: 1024px) {
  .hero .welcome .resume-featured {
    grid-column: 1/-1;
  }
}

.hero .welcome .resume-featured img {
  width: 100%;
  border-radius: 8px;
}

.hero .welcome .resume-completion {
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #bfc3c7;
  margin-top: 8px;
}

.hero .welcome .btn-resume {
  width: 100%;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

@media only screen and (max-width: 1024px) {
  .hero .welcome .btn-resume {
    -ms-grid-column: 3;
    grid-column: 3;
  }
}

@media only screen and (max-width: 601px) {
  .hero .welcome .btn-resume {
    grid-column: 1/-1;
  }
}

.hero .welcome .btn-resume svg {
  margin-left: 12px;
}

.hero .welcome-text {
  padding-top: 20px;
  padding-bottom: 50px;
}

.hero .welcome h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 16px;
}

.hero .welcome p {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}

.hero .welcome .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.hero .welcome-featured img {
  max-width: 350px;
  margin: 0 auto;
  display: block;
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .hero .welcome-featured img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
}

@media only screen and (max-width: 601px) {
  .hero .welcome-featured img {
    position: static;
  }
}

.hero .cards-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.hero .cards-heading h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
  padding-right: 20px;
}

.hero .cards-heading a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  text-transform: capitalize;
  color: #00a8e2;
  white-space: nowrap;
}

.hero .cards-heading a svg {
  margin-left: 12px;
}

.hero .cards-grid {
  opacity: 0;
  visibility: hidden;
}

.hero .cards-grid:hover .slick-arrow {
  opacity: 1;
}

.hero .cards-grid.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.hero .cards-grid .slick-list {
  margin-left: -30px;
}

.hero .cards-grid .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.hero .cards-grid .slick-slide {
  height: auto;
  margin-left: 30px;
}

.hero .cards-grid .slick-arrow {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  .hero .cards-grid .slick-arrow {
    opacity: 1;
  }
}

.hero .cards-grid .slick-arrow.slick-prev {
  left: -20px;
}

.hero .cards-grid .slick-arrow.slick-next {
  right: -20px;
  left: auto;
}

.hero .cards-item {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px 20px 24px;
}

.hero .cards-featured {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 66.66%;
}

.hero .cards-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .cards-details {
  padding-top: 20px;
}

.hero .cards-details h3 {
  margin-bottom: 12px;
}

.hero .cards-details h3 a {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #000000;
}

.hero .cards-details p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
  margin-bottom: 0;
}

.hero .cards .card-metadata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 16px;
}

.hero .cards .card-category {
  padding: 4px 8px;
  background: #43177d;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .cards .card-category.activity {
  background: #8f4d93;
}

.hero .cards .card-category.infographic {
  background: #00a8e2;
}

.hero .cards .card-category svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  width: 16px;
  margin-right: 4px;
}

.hero .cards .card-category span {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

.hero .cards .btn-bookmark {
  padding: 0;
  border: 0;
  background: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hero .cards .btn-bookmark.active svg {
  fill: #eea71c;
}

.hero-sidebar {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  row-gap: 57px;
  position: relative;
  overflow: hidden;
}

.hero-sidebar > div > h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 32px;
}

@media only screen and (max-width: 601px) {
  .hero-sidebar > div > h2 {
    width: 50%;
    line-height: 1.2;
  }
}

.hero-sidebar .recent-comments__inner {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 36px 30px 28px;
}

.hero-sidebar .recent-comments__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 24px 0;
  border-bottom: 1px solid #e1e1e1;
}

.hero-sidebar .recent-comments__item:first-child {
  padding-top: 0;
}

.hero-sidebar .recent-comments__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-sidebar .recent-comments__avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
}

.hero-sidebar .recent-comments__topic {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
  padding-left: 18px;
}

.hero-sidebar .recent-comments__topic a {
  color: #00a8e2;
}

.hero-sidebar .recent-comments__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-top: 8px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
}

.hero-sidebar .announcements {
  display: block;
  position: relative;
}

.hero-sidebar .announcements-slider {
  opacity: 0;
  visibility: hidden;
}

.hero-sidebar .announcements-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.hero-sidebar .announcements-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  list-style-type: none;
  padding: 0;
  left: auto;
  top: -50px;
}

.hero-sidebar .announcements-slider .slick-dots li {
  margin: 0 0.25rem;
}

.hero-sidebar .announcements-slider .slick-dots button {
  display: block;
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #e1e1e1;
  text-indent: -9999px;
}

.hero-sidebar .announcements-slider .slick-dots li.slick-active button {
  background-color: #7cc623;
}

.hero-sidebar .announcements-item {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
}

.hero-sidebar .announcements-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .tab-container .card-detials h3 {
  margin-bottom: 8px;
}

.hero .tab-container .cards-author {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
  margin-bottom: 24px;
}

.hero .tab-container .cards-author a {
  color: #00a8e2;
}

.hero .tab-container .cards-progress__pbar {
  height: 4px;
  background: #e1e1e1;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero .tab-container .cards-progress__pbar-inner {
  height: 4px;
  background: #7cc623;
  border-radius: 100px 0px 0px 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.hero .tab-container .cards-percentage {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #7f868f;
  margin-top: 8px;
  text-transform: capitalize;
}

.hero .tab-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 29px;
}

.hero .tab-heading a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  text-transform: capitalize;
  color: #00a8e2;
  padding-bottom: 8px;
}

.hero .tab-heading a svg {
  margin-left: 12px;
}

.hero .tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
          column-gap: 60px;
}

@media only screen and (max-width: 601px) {
  .hero .tab-menu {
    -webkit-column-gap: 20px;
            column-gap: 20px;
  }
}

.hero .tab-menu button {
  background: 0;
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  padding-bottom: 8px;
  border-radius: 0;
  border-bottom: 3px solid transparent;
}

@media only screen and (max-width: 601px) {
  .hero .tab-menu button {
    font-size: 18px;
  }
}

.hero .tab-menu button.active {
  border-bottom: 3px solid #00a8e2;
}

.popular {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 100px 0;
}

@media only screen and (max-width: 768px) {
  .popular {
    padding: 80px 0;
  }
}

.popular-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 410px;
      grid-template-columns: 1fr 410px;
  grid-gap: 40px;
  max-width: 1410px;
  margin: 0 auto;
  width: calc(100% - 40px);
}

@media only screen and (max-width: 1024px) {
  .popular-inner {
    -ms-grid-columns: minmax(0, 1fr) 300px;
        grid-template-columns: minmax(0, 1fr) 300px;
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .popular-inner {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    grid-gap: 60px;
  }
}

.popular-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.popular-heading h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0;
}

.popular-heading a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  text-transform: capitalize;
  color: #00a8e2;
}

.popular-heading a svg {
  margin-left: 12px;
}

.popular-slider:hover .slick-arrow {
  opacity: 1;
}

.popular-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.popular-slider .slick-list {
  margin-left: -30px;
}

.popular-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.popular-slider .slick-slide {
  height: auto;
  margin-left: 30px;
}

.popular-slider .slick-arrow {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

@media only screen and (max-width: 1024px) {
  .popular-slider .slick-arrow {
    opacity: 1;
  }
}

.popular-slider .slick-arrow.slick-prev {
  left: -20px;
}

.popular-slider .slick-arrow.slick-next {
  right: -20px;
  left: auto;
}

.popular-item {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px 20px 30px;
}

.popular-item__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-top: 12px;
  margin-bottom: 16px;
}

.popular-item__logo img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border: 1px solid #e1e1e1;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05));
  border-radius: 8px;
  position: absolute;
  top: -35px;
  left: 20px;
}

.popular-item__logo .btn-joingroup {
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  color: #7cc623;
  margin-left: auto;
}

.popular-item__details h3 {
  margin-bottom: 12px;
}

.popular-item__details h3 a {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: #000000;
}

.popular-item__restriction {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
  margin-bottom: 12px;
}

.popular-item__members {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popular-item__members-avatar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.popular-item__members-avatar img {
  width: 30px;
  height: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  border-radius: 100%;
}

.popular-item__members-avatar img ~ img {
  margin-left: -10px;
}

.popular-item__members span {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
  margin-left: 12px;
}

.popular .join {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.popular .join h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0 0 40px;
}

.popular .join-group {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 35px;
}

.popular .join-group svg {
  margin-bottom: 24px;
}

.popular .join-group h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  margin-bottom: 8px;
}

.popular .join-group p {
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #7f868f;
  margin-bottom: 24px;
}

.popular .join-group > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.achievements {
  padding: 129px 0 120px;
}

@media only screen and (max-width: 768px) {
  .achievements {
    padding: 80px 0;
  }
}

.achievements-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 410px;
      grid-template-columns: 1fr 410px;
  grid-gap: 40px;
  max-width: 1410px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 auto;
  width: calc(100% - 40px);
}

@media only screen and (max-width: 1024px) {
  .achievements-inner {
    -ms-grid-columns: minmax(0, 1fr) 300px;
        grid-template-columns: minmax(0, 1fr) 300px;
    grid-gap: 30px;
  }
}

@media only screen and (max-width: 768px) {
  .achievements-inner {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 60px;
  }
}

.achievements-list > h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 40px;
}

.achievements-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 24px 30px;
}

@media only screen and (max-width: 601px) {
  .achievements-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.achievements-item {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px 30px 20px 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
      grid-template-columns: 80px 1fr;
  grid-gap: 16px;
}

.achievements-item h3 {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  text-transform: capitalize;
  color: #43177d;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.achievements-item h3 span {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  color: #00a8e2;
}

.achievements-item p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
}

.achievements-item p:last-of-type {
  margin-bottom: 0;
}

.achievements-badge {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  width: 80px;
  height: 80px;
  background: #bfc3c7;
  border: 6px solid #f1f1f4;
  border-radius: 100px;
  overflow: hidden;
}

.achievements .lvl {
  display: -ms-grid;
  display: grid;
  grid-gap: 60px;
}

.achievements .lvl h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 40px;
}

.achievements .lvl-current {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 72px 1fr;
      grid-template-columns: 72px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 17px;
  padding: 35px 30px;
}

.achievements .lvl-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.achievements .lvl-rank {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
}

.achievements .lvl-pts {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  text-transform: capitalize;
  color: #7f868f;
}

.achievements .lvl-pts span {
  color: #7cc623;
}

.achievements .lvl-pbar {
  background: #e1e1e1;
  border-radius: 100px;
  width: 100%;
  overflow: hidden;
  height: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}

.achievements .lvl-pbar__inner {
  background: #7cc623;
  border-radius: 100px 0px 0px 100px;
  height: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.achievements .leaderboard-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.achievements .leaderboard-heading h2 {
  margin-bottom: 0;
}

.achievements .leaderboard-heading a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
  text-transform: capitalize;
  color: #00a8e2;
  margin-left: 12px;
}

.achievements .leaderboard-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
}

.achievements .leaderboard-ranking {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  padding: 43px 30px 37px;
  z-index: 1;
}

.achievements .leaderboard-ranking > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.achievements .leaderboard-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}

.achievements .leaderboard-item.top-1 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-bottom: 28px;
}

.achievements .leaderboard-item.top-1 .leaderboard-avatar {
  width: 110px;
  height: 110px;
}

@media only screen and (max-width: 1024px) {
  .achievements .leaderboard-item.top-1 .leaderboard-avatar {
    width: 90px;
    height: 90px;
  }
}

.achievements .leaderboard-item.top-2 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.achievements .leaderboard-item.top-2 .leaderboard-item__top {
  background: #00a8e2;
}

.achievements .leaderboard-item.top-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.achievements .leaderboard-item.top-3 .leaderboard-item__top {
  background: #e44371;
}

.achievements .leaderboard-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #ffffff;
  background: #eea71c;
  margin-top: -15px;
  position: relative;
  z-index: 2;
}

.achievements .leaderboard-item h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #43177d;
  margin: 10px auto 6px;
}

.achievements .leaderboard-item .pts {
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  color: #7cc623;
}

.achievements .leaderboard-avatar {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  border: 6px solid #ffffff;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.05));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.05));
  overflow: hidden;
}

.achievements .leaderboard-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 10px;
  margin-top: 38px;
}

.achievements .leaderboard-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f6f3f8;
  border-radius: 8px;
  padding: 10px 20px;
}

.achievements .leaderboard-list__item.current {
  background: #e0f4fb;
  border: 2px solid #00a8e2;
}

.achievements .leaderboard-rank {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  font-weight: bold;
  font-size: 16px;
  line-height: 30px;
  text-align: right;
  color: #8f4d93;
}

.achievements .leaderboard-user {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
}

.achievements .leaderboard-user img {
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  margin-right: 10px;
  border-radius: 50%;
}

.achievements .leaderboard-user span {
  font-weight: 600;
  font-size: 16px;
  line-height: 30px;
  color: #43177d;
  text-transform: capitalize;
}

.achievements .leaderboard-pts {
  font-weight: bold;
  font-size: 18px;
  line-height: 30px;
  text-align: right;
  color: #7cc623;
}

.profile-inner {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 29px 22px;
}

.profile-inner h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #43177d;
  margin-bottom: 16px;
}

.profile-pbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 4px;
  background: #e1e1e1;
  border-radius: 100px;
  width: 100%;
}

.profile-pbar__inner {
  height: 4px;
  background: #7cc623;
  border-radius: 100px 0px 0px 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.profile-percentage {
  font-family: "SF UI Text", sans-serif;
  margin-top: 8px;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #7f868f;
}

.profile-items {
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
  margin-top: 24px;
}

.profile-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.profile-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #7f868f;
}

.profile-details svg {
  margin-right: 12px;
}

.profile-stats {
  font-family: "SF UI Text", sans-serif;
  border: 1px solid #e44371;
  border-radius: 100px;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  color: #e44371;
  padding: 4px 10px;
}

.page-template-page-courses .course {
  padding: 60px 0;
}

@media only screen and (max-width: 901px) {
  .page-template-page-courses .course {
    padding-bottom: 30px;
  }
}

.page-template-page-courses .course-inner {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.page-template-page-courses .course-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 901px) {
  .page-template-page-courses .course-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-gap: 10px;
  }
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .course-filter__by {
    width: 100%;
  }
}

.page-template-page-courses .course-filter .btn-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px;
  background: #ffffff;
  border: 1px solid #8f4d93;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #8f4d93;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .course-filter .btn-filter {
    width: 100%;
  }
}

.page-template-page-courses .course-filter .btn-filter svg {
  margin-right: 8px;
}

.page-template-page-courses .course-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .course-tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-gap: 10px;
  }
}

.page-template-page-courses .course-tabs .btn {
  padding: 10px 24px;
  height: 44px;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px;
  background: #ffffff;
  border: 1px solid #7f868f;
  border-radius: 100px;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #7f868f;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .course-tabs .btn {
    width: 100%;
  }
}

.page-template-page-courses .course-tabs .btn:hover, .page-template-page-courses .course-tabs .btn.active {
  color: #fff;
  background: #00a8e2;
  border-color: #00a8e2;
}

.page-template-page-courses .course-tabs .btn:hover svg path, .page-template-page-courses .course-tabs .btn.active svg path {
  stroke: #fff;
}

.page-template-page-courses .course-tabs .btn svg {
  margin-right: 12px;
}

.page-template-page-courses .search-results {
  padding-bottom: 40px;
}

.page-template-page-courses .search-results__inner {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (max-width: 901px) {
  .page-template-page-courses .search-results__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: 20px;
  }
}

.page-template-page-courses .search-results .show-result {
  margin-top: 8px;
  white-space: nowrap;
}

.page-template-page-courses .search-results .filter-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 8px;
  padding: 0 16px;
}

@media only screen and (max-width: 901px) {
  .page-template-page-courses .search-results .filter-categories {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.page-template-page-courses .search-results .filter-categories__item {
  background: #ffffff;
  border: 1px solid #00a8e2;
  border-radius: 100px;
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #00a8e2;
  padding: 10px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-template-page-courses .search-results .filter-categories__item span.btn-delete {
  margin-left: 10px;
  cursor: pointer;
}

.page-template-page-courses .search-results .btn-clear {
  background: 0;
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #7cc623;
  text-transform: capitalize;
  margin-top: 10px;
  white-space: nowrap;
}

@media only screen and (max-width: 901px) {
  .page-template-page-courses .search-results .btn-clear {
    margin-top: 0;
  }
}

.page-template-page-courses .resources {
  display: -ms-grid;
  display: grid;
  row-gap: 80px;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  padding-bottom: 120px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources {
    row-gap: 50px;
  }
}

.page-template-page-courses .resources-inner {
  max-width: 1280px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.page-template-page-courses .resources-slider {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.page-template-page-courses .resources-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.page-template-page-courses .resources .slick-slide {
  margin-left: 30px;
  visibility: hidden;
}

.page-template-page-courses .resources .slick-slide.slick-active {
  visibility: visible;
}

.page-template-page-courses .resources .slick-list {
  margin-left: -30px;
  overflow: visible;
}

.page-template-page-courses .resources .slick-arrow {
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  width: 40px;
  height: 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1280px) {
  .page-template-page-courses .resources .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.page-template-page-courses .resources .slick-arrow.slick-prev {
  left: -60px;
}

@media (max-width: 1280px) {
  .page-template-page-courses .resources .slick-arrow.slick-prev {
    left: -15px;
  }
}

.page-template-page-courses .resources .slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media (max-width: 1280px) {
  .page-template-page-courses .resources .slick-arrow.slick-next {
    right: -15px;
  }
}

.page-template-page-courses .resources .slick-arrow.slick-disabled {
  opacity: 0;
}

.page-template-page-courses .resources .last.resources-item:not(:first-child):hover::before {
  content: "";
  position: absolute;
  width: 20px;
  top: 0;
  left: -20px;
  z-index: 11;
  height: 100%;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources .last.resources-item:not(:first-child):hover::before {
    display: none;
  }
}

.page-template-page-courses .resources .last.resources-item:not(:first-child):hover .resources-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
  -webkit-transform: translate(calc(-50% - 340px), -50%);
          transform: translate(calc(-50% - 340px), -50%);
  opacity: 1;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources .last.resources-item:not(:first-child):hover .resources-dialog {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.page-template-page-courses .resources .last:not(:first-child) .resources-dialog {
  -webkit-transform: translate(calc(-50% - 320px), -50%);
          transform: translate(calc(-50% - 320px), -50%);
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources .last:not(:first-child) .resources-dialog {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.page-template-page-courses .resources .last:not(:first-child) .resources-dialog:after, .page-template-page-courses .resources .last:not(:first-child) .resources-dialog:before {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources .last:not(:first-child) .resources-dialog:after, .page-template-page-courses .resources .last:not(:first-child) .resources-dialog:before {
    display: none !important;
  }
}

.page-template-page-courses .resources .last:not(:first-child) .resources-dialog:after {
  border-color: rgba(255, 255, 255, 0);
  border-left-color: #fff;
  border-width: 15px;
  margin-top: -15px;
}

.page-template-page-courses .resources .last:not(:first-child) .resources-dialog:before {
  border-color: rgba(225, 225, 225, 0);
  border-left-color: #e1e1e1;
  border-width: 16px;
  margin-top: -16px;
}

.page-template-page-courses .resources-item {
  position: relative;
}

.page-template-page-courses .resources-item .btn-bookmark {
  position: absolute;
  top: 13px;
  right: 15px;
  background: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-template-page-courses .resources-item .btn-bookmark.active svg {
  fill: #eea71c;
}

.page-template-page-courses .resources-item .btn-bookmark.active svg path {
  stroke: #eea71c;
}

.page-template-page-courses .resources-item:hover::after {
  content: "";
  position: absolute;
  width: 20px;
  top: 0;
  right: -20px;
  z-index: 11;
  height: 100%;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources-item:hover::after {
    display: none;
  }
}

.page-template-page-courses .resources-item:hover .resources-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: auto;
  -webkit-transform: translate(calc(-50% + 340px), -50%);
          transform: translate(calc(-50% + 340px), -50%);
  opacity: 1;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources-item:hover .resources-dialog {
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}

.page-template-page-courses .resources-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    grid-gap: 20px;
  }
}

.page-template-page-courses .resources-heading__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
  font-family: "SF UI Text", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #000000;
  width: 100%;
}

.page-template-page-courses .resources-heading__title svg {
  margin-right: 16px;
}

.page-template-page-courses .resources-heading a {
  white-space: nowrap;
}

.page-template-page-courses .resources-featured {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 66.66%;
}

.page-template-page-courses .resources-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.page-template-page-courses .resources-details {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 20px 16px;
  z-index: 2;
}

.page-template-page-courses .resources-details::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(#000000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  z-index: -1;
  border-radius: 8px;
}

.page-template-page-courses .resources-metadata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 6px;
}

.page-template-page-courses .resources-metadata span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 4px 8px;
  background: #43177d;
  border-radius: 4px;
  font-family: "SF UI Text", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-transform: capitalize;
}

.page-template-page-courses .resources-metadata span img,
.page-template-page-courses .resources-metadata span svg {
  margin-right: 4px;
  width: 18px;
  height: 18px;
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
}

.page-template-page-courses .resources-metadata span.new {
  background: #eea71c;
}

.page-template-page-courses .resources-metadata span.category-infographic {
  background: #00a8e2;
}

.page-template-page-courses .resources-metadata span.category-curated {
  background: #7cc623;
}

.page-template-page-courses .resources-metadata span.category-masterclass {
  background: #e44371;
}

.page-template-page-courses .resources-metadata span.category-activity {
  background: #8f4d93;
}

.page-template-page-courses .resources-title {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 6px;
}

.page-template-page-courses .resources-title a {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #ffffff;
}

.page-template-page-courses .resources-author {
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #bfc3c7;
  padding: 4px 0 10px;
}

.page-template-page-courses .resources-pbar {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  height: 4px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page-template-page-courses .resources-pbar__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 4px;
  background: #7cc623;
  border-radius: 100px;
}

.page-template-page-courses .resources-dialog {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
  border: 1px solid #e1e1e1;
  -webkit-filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.1));
  -webkit-transform: translate(calc(-50% + 320px), -50%);
          transform: translate(calc(-50% + 320px), -50%);
  width: 340px;
  z-index: 10;
  right: -340px;
  padding: 30px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources-dialog {
    right: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    left: auto;
    top: 50%;
    width: 100%;
  }
}

.page-template-page-courses .resources-dialog:after, .page-template-page-courses .resources-dialog:before {
  right: 100%;
  top: 50%;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.page-template-page-courses .resources-dialog:after {
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 15px;
  margin-top: -15px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources-dialog:after {
    display: none;
  }
}

.page-template-page-courses .resources-dialog:before {
  border-color: rgba(225, 225, 225, 0);
  border-right-color: #e1e1e1;
  border-width: 16px;
  margin-top: -16px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .resources-dialog:before {
    display: none;
  }
}

.page-template-page-courses .resources-dialog__new {
  background: #eea71c;
  border-radius: 4px;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 12px;
  line-height: 24px;
  color: #ffffff;
  text-transform: capitalize;
  padding: 1px 10px;
  white-space: nowrap;
  height: 26px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-template-page-courses .resources-dialog__title {
  margin: 8px 0;
}

.page-template-page-courses .resources-dialog__title h3 {
  margin: 0;
}

.page-template-page-courses .resources-dialog__title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  font-family: "SF UI Display", sans-serif;
  text-transform: capitalize;
  color: #000000;
}

.page-template-page-courses .resources-dialog__metadata {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  color: #7f868f;
}

.page-template-page-courses .resources-dialog__excerpt {
  margin-top: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: #444444;
}

.page-template-page-courses .resources-dialog__excerpt p {
  margin: 0;
}

.page-template-page-courses .resources-dialog .btn-learnmore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  width: 100%;
  height: 48px;
  background: #00a8e2;
  border-radius: 8px;
  margin-top: 24px;
}

.page-template-page-courses .filter-options {
  position: fixed;
  left: -999999px;
  z-index: 99999999;
}

.page-template-page-courses .filter-options.active {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.page-template-page-courses .filter-options.active .filter-options__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.page-template-page-courses .filter-options__inner {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  height: 100vh;
  overflow: auto;
  max-width: 480px;
  overflow: auto;
  width: calc(100% - 40px);
  -webkit-transform: translateX(480px);
          transform: translateX(480px);
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.page-template-page-courses .filter-options__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 28px 30px;
  background: #8f4d93;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .filter-options__heading {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-template-page-courses .filter-options__heading h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

.page-template-page-courses .filter-options__heading .close-filter {
  cursor: pointer;
}

.page-template-page-courses .filter-options__search {
  padding: 24px 30px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .filter-options__search {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-template-page-courses .filter-options__search input[type="text"] {
  width: 100%;
  background: #f1f1f4 url("../img/search.svg") no-repeat 16px center;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #7f868f;
  padding: 16px 12px 16px 51px;
  height: 56px;
}

.page-template-page-courses .filter-options__content {
  border-top: 1px solid #e1e1e1;
  padding: 30px 25px;
}

@media only screen and (max-width: 601px) {
  .page-template-page-courses .filter-options__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.page-template-page-courses .acc__card:first-child .acc__panel {
  display: block;
}

.page-template-page-courses .acc__title {
  font-family: "SF UI Display", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #7f868f;
  padding: 12px 0;
  border-bottom: 1px solid #e1e1e1;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

.page-template-page-courses .acc__title.active .plus {
  display: none;
}

.page-template-page-courses .acc__title.active .minus {
  display: block;
}

.page-template-page-courses .acc__title .minus {
  display: none;
}

.page-template-page-courses .acc__panel {
  display: none;
}

.page-template-page-courses .acc__panel ul {
  list-style: none;
  margin: 24px 0 40px;
  padding: 0;
  border: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  grid-gap: 16px;
}

.page-template-page-courses .acc__panel input[type="checkbox"] {
  position: absolute;
  left: -9999999px;
}

.page-template-page-courses .acc__panel input[type="checkbox"]:checked + span::before {
  border-color: #00a8e2;
  background: #fff;
}

.page-template-page-courses .acc__panel input[type="checkbox"]:checked + span svg {
  display: block;
}

.page-template-page-courses .acc__panel label {
  margin: 0;
  display: block;
}

.page-template-page-courses .acc__panel label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
  cursor: pointer;
  position: relative;
}

.page-template-page-courses .acc__panel label span::before {
  content: "";
  display: block;
  background: #f1f1f4;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  margin-right: 12px;
}

.page-template-page-courses .acc__panel label svg {
  position: absolute;
  top: 7px;
  left: 5px;
  display: none;
}

.page-template-page-courses .acc__panel label svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: dash-check 1s ease-in-out forwards;
          animation: dash-check 1s ease-in-out forwards;
}

.page-template-page-courses .btn-filternow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  font-family: "SF UI Text", sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin: 32px auto 0;
}

.page-template-page-courses .noresult,
.page-template-page-courses .nocourses {
  padding: 125px 0 165px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 500px;
}

.page-template-page-courses .noresult svg,
.page-template-page-courses .nocourses svg {
  margin-bottom: 28px;
}

.page-template-page-courses .noresult h2,
.page-template-page-courses .nocourses h2 {
  font-family: "SF UI Text", sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 16px;
}

.page-template-page-courses .noresult p,
.page-template-page-courses .nocourses p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
}

.page-template-page-courses .noresult p:last-of-type,
.page-template-page-courses .nocourses p:last-of-type {
  margin-bottom: 0;
}

.page-template-page-courses .noresult .btn-browse,
.page-template-page-courses .nocourses .btn-browse {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 280px;
  height: 48px;
  background: #00a8e2;
  border-radius: 8px;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  margin: 24px auto 0;
}

.whats-inside {
  background: #ffffff;
  border-radius: 8px;
  padding: 54px 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  grid-gap: 24px;
  max-width: 350px;
  width: 100%;
  position: relative;
  margin-left: auto;
}

@media only screen and (max-width: 601px) {
  .whats-inside {
    margin-right: auto;
    max-width: 100%;
  }
}

.whats-inside .btn-bookmark {
  position: absolute;
  top: 13px;
  right: 15px;
  background: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.whats-inside .btn-bookmark.active svg {
  fill: #eea71c;
}

.whats-inside .btn-bookmark.active svg path {
  stroke: #eea71c;
}

.whats-inside h3 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #43177d;
  margin: 0;
}

.whats-inside ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  grid-gap: 24px;
}

.whats-inside li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.whats-inside li svg {
  margin-right: 16px;
}

.whats-inside li span {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #7f868f;
}

.whats-inside .btn-unlock {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.whats-inside .btn-unlock svg {
  margin-right: 13px;
}

.about-wrapper {
  position: fixed;
  top: 140px;
  width: auto !important;
}

@media (max-width: 1024px) {
  .about-wrapper {
    position: static;
    top: auto;
    width: 100% !important;
  }
}

.content-outline {
  background: #ffffff;
  border-radius: 8px;
  max-width: 350px;
  width: 100%;
  position: relative;
  margin-left: auto;
}

@media only screen and (max-width: 601px) {
  .content-outline {
    margin-right: auto;
    max-width: 100%;
  }
}

.content-outline.about {
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .content-outline.about {
    max-width: 100%;
  }
}

.content-outline.about ul {
  grid-gap: 7px;
}

.content-outline.about li span {
  color: #444;
}

.content-outline__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.content-outline .btn-bookmark {
  background: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.content-outline .btn-bookmark.active svg {
  fill: #eea71c;
}

.content-outline .btn-bookmark.active svg path {
  stroke: #eea71c;
}

.content-outline h3 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #43177d;
  margin: 0;
}

.content-outline ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  grid-gap: 24px;
}

.content-outline li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.content-outline li svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  margin-right: 16px;
  position: relative;
  top: 2px;
}

.content-outline li b {
  color: #444444;
}

.content-outline li span {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #7f868f;
}

.content-outline .btn-view {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.content-outline .btn-view svg {
  margin-right: 13px;
}

.content-outline__featured {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.content-outline__featured::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0.15)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
  z-index: 5;
}

.content-outline__featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-outline__details {
  padding: 24px 30px 36px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  grid-gap: 24px;
}

.experts-slider {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.experts-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.experts-slider .slick-slide {
  margin-left: 30px;
  visibility: hidden;
}

.experts-slider .slick-slide.slick-active {
  visibility: visible;
}

.experts-slider .slick-list {
  margin-left: -30px;
  overflow: visible;
}

.experts-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.experts-slider .slick-slide {
  height: inherit !important;
}

.experts-slider .slick-arrow {
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  width: 40px;
  height: 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1280px) {
  .experts-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.experts-slider .slick-arrow.slick-prev {
  left: -60px;
}

@media (max-width: 1280px) {
  .experts-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}

.experts-slider .slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media (max-width: 1280px) {
  .experts-slider .slick-arrow.slick-next {
    right: -15px;
  }
}

.experts-slider .slick-arrow.slick-disabled {
  opacity: 0.4;
}

.experts-slider__inner {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 30px 17px;
}

.experts-slider__inner .experts-avatar img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  display: block;
  margin: 0 auto 20px;
}

.experts-slider__inner h3 {
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  text-align: center;
  color: #444444;
  margin: 0;
}

.experts-slider__inner .position {
  font-weight: normal;
  font-size: 16px;
  line-height: 32px;
  text-align: center;
  color: #7f868f;
}

.activities-slider,
.courses-slider {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.activities-slider.slick-initialized,
.courses-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.activities-slider .slick-slide,
.courses-slider .slick-slide {
  margin-left: 30px;
  visibility: hidden;
}

.activities-slider .slick-slide.slick-active,
.courses-slider .slick-slide.slick-active {
  visibility: visible;
}

.activities-slider .slick-list,
.courses-slider .slick-list {
  margin-left: -30px;
  overflow: visible;
}

.activities-slider .slick-track,
.courses-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.activities-slider .slick-slide,
.courses-slider .slick-slide {
  height: inherit !important;
}

.activities-slider .slick-arrow,
.courses-slider .slick-arrow {
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  width: 40px;
  height: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1280px) {
  .activities-slider .slick-arrow,
  .courses-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.activities-slider .slick-arrow.slick-prev,
.courses-slider .slick-arrow.slick-prev {
  left: -60px;
}

@media (max-width: 1280px) {
  .activities-slider .slick-arrow.slick-prev,
  .courses-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}

.activities-slider .slick-arrow.slick-next,
.courses-slider .slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media (max-width: 1280px) {
  .activities-slider .slick-arrow.slick-next,
  .courses-slider .slick-arrow.slick-next {
    right: -15px;
  }
}

.activities-slider__item.locked .courses-featured,
.courses-slider__item.locked .courses-featured {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.activities-slider__item.locked:hover .courses-progress .locked .lock-dialog,
.courses-slider__item.locked:hover .courses-progress .locked .lock-dialog {
  display: block;
}

.activities-slider__inner,
.courses-slider__inner {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px 20px 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.activities-slider .courses-featured,
.activities-slider .activities-featured,
.courses-slider .courses-featured,
.courses-slider .activities-featured {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px;
}

.activities-slider .courses-featured img,
.activities-slider .activities-featured img,
.courses-slider .courses-featured img,
.courses-slider .activities-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.activities-slider .courses-details,
.activities-slider .activities-details,
.courses-slider .courses-details,
.courses-slider .activities-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 16px;
}

.activities-slider .courses-details h3,
.activities-slider .activities-details h3,
.courses-slider .courses-details h3,
.courses-slider .activities-details h3 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 8px;
}

.activities-slider .courses-metadata,
.courses-slider .courses-metadata {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
  margin-bottom: 24px;
}

.activities-slider .courses-metadata a,
.courses-slider .courses-metadata a {
  color: #00a8e2;
}

.activities-slider .activities-metadata,
.courses-slider .activities-metadata {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
  margin-bottom: 12px;
}

.activities-slider .activities-metadata a,
.courses-slider .activities-metadata a {
  color: #00a8e2;
}

.activities-slider .activities-description p,
.courses-slider .activities-description p {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
}

.activities-slider .courses-progress,
.activities-slider .activities-progress,
.courses-slider .courses-progress,
.courses-slider .activities-progress {
  margin-top: auto;
}

.activities-slider .courses-progress span,
.activities-slider .activities-progress span,
.courses-slider .courses-progress span,
.courses-slider .activities-progress span {
  margin-top: auto;
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
  display: block;
  margin-bottom: 8px;
}

.activities-slider .courses-progress .locked,
.activities-slider .activities-progress .locked,
.courses-slider .courses-progress .locked,
.courses-slider .activities-progress .locked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.activities-slider .courses-progress .locked > svg,
.activities-slider .activities-progress .locked > svg,
.courses-slider .courses-progress .locked > svg,
.courses-slider .activities-progress .locked > svg {
  margin-right: 12px;
}

.activities-slider .courses-progress .locked > span,
.activities-slider .activities-progress .locked > span,
.courses-slider .courses-progress .locked > span,
.courses-slider .activities-progress .locked > span {
  margin: 0;
}

.activities-slider .courses-progress .locked .lock-dialog,
.activities-slider .activities-progress .locked .lock-dialog,
.courses-slider .courses-progress .locked .lock-dialog,
.courses-slider .activities-progress .locked .lock-dialog {
  display: none;
  position: absolute;
  bottom: -75px;
  z-index: 10;
}

.activities-slider .courses-progress .locked .lock-dialog > span,
.activities-slider .activities-progress .locked .lock-dialog > span,
.courses-slider .courses-progress .locked .lock-dialog > span,
.courses-slider .activities-progress .locked .lock-dialog > span {
  padding: 29px 22px 17px;
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

.activities-slider .courses-pbar,
.activities-slider .activities-pbar,
.courses-slider .courses-pbar,
.courses-slider .activities-pbar {
  width: 100%;
  height: 6px;
  background: #d8dade;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.activities-slider .courses-pbar__inner,
.activities-slider .activities-pbar__inner,
.courses-slider .courses-pbar__inner,
.courses-slider .activities-pbar__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 6px;
  background: #7cc623;
  border-radius: 100px;
}

.more-resources-slider .slick-arrow,
.activities-slider .slick-arrow {
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: 0;
  width: 40px;
  height: 40px;
  background: #ffffff;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1280px) {
  .more-resources-slider .slick-arrow,
  .activities-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}

.more-resources-slider .slick-arrow.slick-prev,
.activities-slider .slick-arrow.slick-prev {
  left: -60px;
}

@media (max-width: 1280px) {
  .more-resources-slider .slick-arrow.slick-prev,
  .activities-slider .slick-arrow.slick-prev {
    left: -15px;
  }
}

.more-resources-slider .slick-arrow.slick-next,
.activities-slider .slick-arrow.slick-next {
  left: auto;
  right: -60px;
}

@media (max-width: 1280px) {
  .more-resources-slider .slick-arrow.slick-next,
  .activities-slider .slick-arrow.slick-next {
    right: -15px;
  }
}

.more-resources-slider .slick-arrow.slick-disabled,
.activities-slider .slick-arrow.slick-disabled {
  opacity: 0.4;
}

.more-resources-slider {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.more-resources-slider p:last-of-type {
  margin-bottom: 0;
}

.more-resources-slider.slick-initialized {
  opacity: 1;
  visibility: visible;
}

.more-resources-slider .slick-slide {
  margin-left: 30px;
  visibility: hidden;
}

.more-resources-slider .slick-slide.slick-active {
  visibility: visible;
}

.more-resources-slider .slick-list {
  margin-left: -30px;
  overflow: visible;
}

.more-resources-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.more-resources-slider .slick-slide {
  height: inherit !important;
}

.more-resources-slider__item.locked .courses-featured {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

.more-resources-slider__item.locked:hover .courses-progress .locked .lock-dialog {
  display: block;
}

.more-resources-slider__inner {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px 20px 30px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.more-resources-slider .more-resources-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 10px;
}

.more-resources-slider .more-resources__category {
  background: #8f4d93;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  padding: 4px 8px;
}

.more-resources-slider .more-resources__category svg {
  width: 18px;
  height: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  margin-right: 6px;
}

.more-resources-slider .more-resources__category span {
  font-family: "SF UI Text", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

.more-resources-slider .more-resources-featured {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  border-radius: 8px;
}

.more-resources-slider .more-resources-featured img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.more-resources-slider .more-resources-details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 14px;
  padding-top: 16px;
}

.more-resources-slider .more-resources-details h3 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
  margin: 0;
}

.more-resources-slider .more-resources-metadata {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
}

.more-resources-slider .more-resources-metadata a {
  color: #00a8e2;
}

.more-resources-slider .more-resources-description p {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #444444;
}

.more-resources-slider .more-resources-progress {
  margin-top: auto;
}

.more-resources-slider .more-resources-progress span {
  margin-top: auto;
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
  display: block;
  margin-bottom: 8px;
}

.more-resources-slider .more-resources-progress .locked {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.more-resources-slider .more-resources-progress .locked > svg {
  margin-right: 12px;
}

.more-resources-slider .more-resources-progress .locked > span {
  margin: 0;
}

.more-resources-slider .more-resources-progress .locked .lock-dialog {
  display: none;
  position: absolute;
  bottom: -75px;
  z-index: 10;
}

.more-resources-slider .more-resources-progress .locked .lock-dialog > span {
  padding: 29px 22px 17px;
  position: absolute;
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

.more-resources-slider .more-resources-pbar {
  width: 100%;
  height: 6px;
  background: #d8dade;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.more-resources-slider .more-resources-pbar__inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 6px;
  background: #7cc623;
  border-radius: 100px;
}

.courses-completed {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  text-align: right;
  color: #00a8e2;
}

.resources-wrapper .resources-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 24px;
}

@media only screen and (max-width: 601px) {
  .resources-wrapper .resources-filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.resources-wrapper .resources-filter button {
  background: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "SF UI Text", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  color: #444444;
  position: relative;
  top: 5px;
}

.resources-wrapper .resources-filter button svg {
  margin-left: 16px;
}

.resources-wrapper .resources-filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  background: #fff;
  border: 1px solid #e1e1e1;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 21px 30px 25px;
  z-index: 10;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
      grid-template-columns: minmax(0, 1fr);
  grid-gap: 16px;
}

.resources-wrapper .resources-filter input[type="checkbox"] {
  position: absolute;
  left: -9999999px;
}

.resources-wrapper .resources-filter input[type="checkbox"]:checked + span::before {
  border-color: #00a8e2;
  background: #fff;
}

.resources-wrapper .resources-filter input[type="checkbox"]:checked + span svg {
  display: block;
}

.resources-wrapper .resources-filter label {
  margin: 0;
  display: block;
  white-space: nowrap;
}

.resources-wrapper .resources-filter label span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
  cursor: pointer;
  position: relative;
}

.resources-wrapper .resources-filter label span::before {
  content: "";
  display: block;
  background: #f1f1f4;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  margin-right: 16px;
}

.resources-wrapper .resources-filter label svg {
  position: absolute;
  top: 7px;
  left: 5px;
  display: none;
}

.resources-wrapper .resources-filter label svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: dash-check 1s ease-in-out forwards;
          animation: dash-check 1s ease-in-out forwards;
}

.resources-wrapper .resources-filter__categories {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 10px;
}

.resources-wrapper .resources-filter__item {
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #00a8e2;
  border: 1px solid #00a8e2;
  border-radius: 100px;
  padding: 10px 24px;
}

.resources-list {
  margin-top: 40px;
}

.resources-list__item {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 30px 49px 30px 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 320px 1fr;
      grid-template-columns: 320px 1fr;
  grid-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (max-width: 768px) {
  .resources-list__item {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.resources-list__featured img {
  width: 100%;
  border-radius: 8px;
}

.resources-list__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  grid-gap: 10px;
  margin-bottom: 18px;
}

.resources-list .infographic {
  background: #8f4d93;
  border-radius: 4px;
  padding: 2px 16px;
  white-space: nowrap;
  font-family: "SF UI Text", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #ffffff;
  text-transform: capitalize;
}

.resources-list__details h3 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: #000000;
  margin-bottom: 8px;
}

.resources-list__details p {
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #444444;
}

.unlock {
  padding: 66px 0;
  max-width: 1110px;
  margin: 0 auto;
  width: calc(100% - 40px);
  text-align: center;
}

.unlock h2 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  color: #ffffff;
  margin: 0;
}

.unlock .btn-unlock {
  max-width: 290px;
  width: 100%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.unlock .btn-unlock svg {
  margin-right: 13px;
}

.reviews .elementor-testimonial-wrapper svg {
  display: block;
  margin-bottom: 24px;
}

.reviews-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 46px;
}

.reviews-heading__title h2 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 24px;
  color: #43177d;
  margin-bottom: 10px;
}

.reviews-heading .reviews-total {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #444444;
}

.reviews-heading__action .btn-leave {
  max-width: 240px;
  width: 100%;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.reviews-sortby {
  padding-top: 24px;
  border-top: 1px solid #e1e1e1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.reviews-sortby span {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #444444;
  margin-right: 24px;
}

.reviews-sortby select {
  background: #ffffff url("../img/dropdown.svg") no-repeat calc(100% - 24px) center;
  border: 1px solid #7f868f;
  border-radius: 8px;
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  color: #7f868f;
  min-height: 44px;
  padding: 10px 46px 10px 24px;
}

.reviews-list {
  margin-top: 24px;
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
}

.reviews-list__item {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 43px 30px;
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
}

.reviews-list__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
          column-gap: 12px;
}

.reviews-list__avatar {
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
}

.reviews-list__avatar img {
  border-radius: 100px;
}

.reviews-list__info h3 {
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 4px;
}

.reviews-list__info .reviews-date {
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
  color: #7f868f;
}

.reviews-list p {
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #444444;
}

.reviews .btn-loadmore {
  max-width: 240px;
  width: 100%;
  height: 56px;
  border: 1px solid #00a8e2;
  border-radius: 8px;
  margin: 40px auto 0;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #00a8e2;
  background: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.single-sfwd-courses {
  background: #fff;
}

.single-sfwd-courses .learndash-wrapper div.ld-item-list {
  margin-top: 80px;
  margin-bottom: 80px;
}

.single-sfwd-courses .bb-course-banner-inner {
  padding-top: 0;
}

.single-sfwd-courses .bb-course-banner-inner .badge-type {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: #fff;
  font-family: "SF UI Text", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #43177d;
  padding: 8px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.single-sfwd-courses .bb-course-banner-inner .badge-type > div {
  -webkit-column-gap: 8px;
          column-gap: 8px;
}

.single-sfwd-courses .bb-course-banner-inner h1.entry-title {
  margin-bottom: 12px;
}

.single-sfwd-courses .bb-course-banner-inner .bb-course-category {
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  text-transform: capitalize;
  color: #ffffff;
}

.single-sfwd-courses .bb-course-banner-inner .course-author {
  margin-bottom: 12px;
}

.single-sfwd-courses .bb-course-banner-inner .course-author a {
  -webkit-column-gap: 12px;
          column-gap: 12px;
}

.single-sfwd-courses .bb-course-banner-inner .course-author .author-name {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}

.single-sfwd-courses .bb-course-banner-inner .course-author .avatar {
  max-width: 40px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  margin: 0;
}

.single-sfwd-courses .bb-course-banner-inner .bb-course-excerpt {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
}

.single-sfwd-courses .ld-tab-content p {
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #444444;
}

.single-sfwd-courses .ld-tab-content p a {
  color: #00a8e2;
}

.single-sfwd-courses .ld-tab-content > ol,
.single-sfwd-courses .ld-tab-content > ul {
  list-style: none;
  margin: 0 0 32px 40px;
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
}

@media only screen and (max-width: 601px) {
  .single-sfwd-courses .ld-tab-content > ol,
  .single-sfwd-courses .ld-tab-content > ul {
    margin-left: 20px;
  }
}

.single-sfwd-courses .ld-tab-content > ol li,
.single-sfwd-courses .ld-tab-content > ul li {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  color: #444444;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 16px;
          column-gap: 16px;
}

.single-sfwd-courses .ld-tab-content > ol li::before,
.single-sfwd-courses .ld-tab-content > ul li::before {
  content: "";
  width: 28px;
  height: 28px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 28px;
          flex: 0 0 28px;
  position: relative;
  background: url("../img/check.svg") no-repeat center center/contain;
}

.single-sfwd-courses .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 16px 20px;
}

.single-sfwd-courses .learndash-wrapper .ld-item-list .ld-item-list-item .ld-item-list-item-preview .ld-item-title {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: #444444;
}

.single-sfwd-courses .content-area {
  padding-bottom: 0;
}

.single-sfwd-courses .ld-sidebar-widgets {
  display: none;
}

.single-sfwd-courses .bb-vw-container.bb-learndash-banner {
  background: url("../img/coursebg.png") no-repeat center center/cover;
  min-height: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-sfwd-courses .bb-vw-container.bb-learndash-banner::before {
  display: none;
}

.single-sfwd-courses .ld-section-heading h2 {
  font-family: "SF UI Display", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px !important;
  line-height: 32px;
  text-transform: uppercase;
  color: #000000;
}

.single-sfwd-courses .ld-section-heading .ld-item-list-actions .ld-expand-button .ld-text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: #444444;
}

.single-sfwd-courses .ld-section-heading .ld-item-list-actions .ld-expand-button .ld-icon-arrow-down {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.single-sfwd-courses .more-resources {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #f1f1f4;
  padding-top: 102px;
  padding-bottom: 124px;
}

.single-sfwd-courses .more-resources h2 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 24px;
  color: #43177d;
  margin-bottom: 40px;
}

.single-sfwd-courses .more-resources__inner {
  max-width: 1180px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.single-sfwd-courses .bb-single-course-sidebar.bb-preview-wrap {
  margin-top: -460px !important;
}

@media (max-width: 820px) {
  .single-sfwd-courses .bb-single-course-sidebar.bb-preview-wrap {
    margin-top: 30px !important;
  }
}

.single-sfwd-courses .bb-single-course-sidebar .widget {
  margin-bottom: 0;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-upper h4 {
  font-family: "SF UI Display", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #43177d;
  margin: 0;
  padding: 0;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-preview-content {
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
  padding: 40px 30px 56px;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-volume,
.single-sfwd-courses .bb-single-course-sidebar .bb-course-volume-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 24px;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-volume-list {
  padding: 0;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-volume-list li {
  margin-bottom: 0;
  -webkit-column-gap: 16px;
          column-gap: 16px;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-course-volume-list li span {
  font-family: "SF UI Text", sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #7f868f;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-button-wrap,
.single-sfwd-courses .bb-single-course-sidebar .bb-course-status-content {
  padding: 0;
}

.single-sfwd-courses .bb-single-course-sidebar .btn-bookmark {
  background: 0;
  padding: 0;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-sfwd-courses .bb-single-course-sidebar .btn-bookmark.active svg {
  fill: #eea71c;
}

.single-sfwd-courses .bb-single-course-sidebar .btn-bookmark.active svg path {
  stroke: #eea71c;
}

.single-sfwd-courses .bb-single-course-sidebar .learndash_join_button {
  margin: 0;
}

.single-sfwd-courses .bb-single-course-sidebar .learndash_join_button a {
  width: 100%;
  height: 56px;
  background: #00a8e2;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "SF UI Text", sans-serif;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-pbar__bar {
  width: 100%;
  height: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f1f1f4;
  border-radius: 100px;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-pbar__bar-inner {
  height: 4px;
  background: #7cc623;
  border-radius: 100px 0px 0px 100px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-pbar__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 8px;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-pbar__current span {
  font-family: "SF UI Text", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #444444;
}

.single-sfwd-courses .bb-single-course-sidebar .bb-pbar__current span:last-child {
  color: #7f868f;
}

.single-sfwd-lessons .learndash-wrapper .custom-lesson-next-prev a {
  width: 45%;
}

.page-template-page-dashboard .my-courses-grid .no-courses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #E1E1E1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
  padding: 74px 0px;
  margin-bottom: 50px;
  margin-top: 40px;
  cursor: pointer;
}

.page-template-page-dashboard .my-courses-grid .no-courses h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #000000;
  margin-top: 16px;
  margin-bottom: 16px;
}

.page-template-page-dashboard .my-courses-grid .no-courses p {
  font-family: SF UI Text;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  color: #7F868F;
  margin-bottom: 16px;
}

.page-template-page-dashboard .my-courses-grid .no-courses a.browse-courses {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 56px;
  background: #00A8E2;
  border-radius: 8px;
  font-family: SF UI Text;
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
/*# sourceMappingURL=custom.css.map */

@media (max-width:799px) {
 .buddypanel,
 .site-header-container {
  display:none!important
 }
 .bb-mobile-header {
  height:76px
 }
 .bb-left-panel-mobile {
  margin-left:10px
 }
 .site-header .bb-left-panel-mobile>i {
  color:var(--bb-header-links)
 }
 .bb-left-panel-mobile,
 .header-search-link {
  color:#939597;
  font-size:26px
 }
 .site-title a {
  display:inline-block
 }

 .bb-mobile-header-wrapper, .bb-mobile-panel-wrapper {
 	display: block !important;
 }

}
@media (min-width:800px) {
 .bb-mobile-header-wrapper,
 .bb-mobile-panel-wrapper {
  display:none!important
 }
}


.bb-mobile-panel-inner .main-navigation {
	display: block;
}
