:root {
  --primary: #8fc31f;
  --secondary: #8fc31f;
  --accent: #00cc83;
  --warning: rgb(220, 53, 69);
  --gray: #aaa;
  --gray-border: #e9eaeb;
  --gray-text: #444;
  --heading-dark: #262d3d;
  --font-size-base: 17px;
  --font-size-h2: 42px;
  --font-size-h3: 27px;
  --font-size-h6: 18px;
  --font-size-small: 13px;
  --line-height: 1.8;
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-round: 13px;
  --radius-full: 50px;
  --shadow-light: 10px 0 60px rgba(139, 139, 139, 0.1);
}

body,
html {
  overflow-x: hidden;
}

.section {
  padding: 80px 0;
}

.widget {
  border-radius: var(--radius-sm);
  padding: 35px 33px;
  border: 1px solid var(--gray-border);
}
.widget:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .widget {
    padding: 32px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .widget {
    padding-left: 25px;
    padding-right: 25px;
  }
}

.widget-title {
  margin-bottom: 20px;
}

/* Course Details */
.course-details-content h2 {
  font-size: var(--font-size-h2);
  margin-bottom: 22px;
}
@media only screen and (max-width: 767px) {
  .course-details-content h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 575px) {
  .course-details-content h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 480px) {
  .course-details-content h2 {
    font-size: 25px;
  }
}
.course-details-content h3 {
  font-size: var(--font-size-h3);
  margin-bottom: 15px;
}
@media only screen and (max-width: 480px) {
  .course-details-content h3 {
    font-size: 22px;
  }
}
.course-details-content p {
  margin-bottom: 15px;
  font-size: var(--font-size-base);
  line-height: var(--line-height);
}

.course-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 20px;
}
.course-header .category {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  margin-right: 15px;
  color: var(--secondary);
}
.course-header img {
  margin-right: 10px;
  margin-bottom: 5px;
}
.course-header .off {
  color: white;
  font-size: var(--font-size-small);
  font-weight: 600;
  margin-bottom: 5px;
  margin-right: 30px;
  border-radius: var(--radius-round);
  padding: 8px 13px 5px;
  text-transform: uppercase;
  background: var(--accent);
}
.course-header .ratting {
  display: flex;
  margin-top: 5px;
  align-items: center;
}
.course-header .ratting i {
  color: var(--warning);
  font-size: 14px;
  margin-right: 5px;
}
.course-header .ratting span {
  font-size: 20px;
}

.author-date-enroll {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
  padding-left: 0;
}
.author-date-enroll li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.author-date-enroll li:not(:last-child) {
  margin-right: 35px;
  position: relative;
  padding-right: 35px;
}
.author-date-enroll li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 20px;
  background: var(--gray-border);
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .author-date-enroll li:not(:last-child) {
    margin-right: 15px;
    padding-right: 0;
  }
  .author-date-enroll li:not(:last-child)::after {
    display: none;
  }
}
.author-date-enroll li img {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  margin-right: 12px;
}
@media only screen and (max-width: 767px) {
  .author-date-enroll li img {
    width: 36px;
    height: 36px;
  }
}
.author-date-enroll li h6 {
  font-size: var(--font-size-h6);
  margin-bottom: 0;
}
.author-date-enroll li i {
  margin-right: 10px;
  color: var(--secondary);
}

.widget-course-details {
  padding: 35px;
  border: none;
  max-width: 500px;
  box-shadow: var(--shadow-light);
}
@media only screen and (max-width: 768px) {
  .widget-course-details {
    margin-top: 32px;
    padding: 32px 20px;
  }
}
@media only screen and (max-width: 375px) {
  .widget-course-details {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.widget-course-details .widget-video {
  position: relative;
  margin: -20px -20px 0;
}
.widget-course-details .widget-video img {
  width: 100%;
}
.widget-course-details .price-off {
  display: flex;
  line-height: 1;
  align-items: center;
  margin: 0px 0 28px;
}
.widget-course-details .price-off .price {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent);
}
.widget-course-details .price-off .off {
  color: white;
  font-size: var(--font-size-small);
  font-weight: 600;
  border-radius: var(--radius-round);
  margin-left: 8px;
  padding: 8px 13px 5px;
  text-transform: uppercase;
  background: var(--warning);
}
.widget-course-details .theme-btn {
  width: 100%;
  margin-right: 22px;
}
@media only screen and (max-width: 768px) {
  .widget-course-details .theme-btn {
    background: var(--accent);
  }
}
.widget-course-details .social-style-two {
  margin-top: 20px;
}
.widget-course-details .social-style-two a {
  font-size: 20px;
  color: var(--secondary);
}

.course-details-list li {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-border);
}
.course-details-list li:first-child {
  padding-top: 0;
}
.course-details-list li i {
  margin-right: 10px;
  color: var(--gray);
}
.course-details-list li span {
  font-weight: 600;
  margin-right: auto;
  padding-right: 10px;
}
.course-details-list li b {
  color: var(--heading-dark);
}

.theme-btn,
a.theme-btn {
  color: white;
  background: var(--primary);
  cursor: pointer;
  font-weight: 800;
  font-size: 17px;
  transition: 0.5s;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  display: inline-flex;
  padding: 15px 40px 12px;
  text-transform: uppercase;
}
.theme-btn i,
a.theme-btn i {
  font-size: 12px;
  transition: 0.5s;
  margin-left: 15px;
}
.theme-btn:hover i,
a.theme-btn:hover i {
  margin: 0 -3px 0 20px;
}
.theme-btn:hover, .theme-btn:focus, .theme-btn.style-two:not(:hover),
a.theme-btn:hover,
a.theme-btn:focus,
a.theme-btn.style-two:not(:hover) {
  background: #7aa618;
}

.widget-recent-courses .content a {
  color: var(--gray-text);
}
.widget-recent-courses ul {
  padding: 0;
  margin: 0;
}
.widget-recent-courses ul li {
  display: flex;
  align-items: center;
}
.widget-recent-courses ul li:not(:last-child) {
  margin-bottom: 25px;
}
.widget-recent-courses ul li .image {
  flex: none;
  max-width: 92px;
  margin-right: 20px;
}
.widget-recent-courses ul li h6 {
  font-size: 17px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.widget-recent-courses ul li .content span {
  font-size: var(--font-size-small);
}
.widget-recent-courses ul li .content span a {
  font-weight: 700;
}

.course-note {
  font-size: var(--font-size-small);
  line-height: 1.6;
  opacity: 0.7;
  padding: 15px 0;
}
.course-note p {
  font-weight: bold;
  margin-bottom: 10px;
}
.course-note ol {
  padding-left: 1.2em;
  margin: 0;
}
.course-note ol li {
  margin-bottom: 8px;
  list-style: auto;
}

.list-style-two {
  padding-left: 15px;
  margin-bottom: 0;
}
.list-style-two li {
  list-style: disc;
  margin-bottom: 5px;
}

.teacher-list {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  width: 90%;
}
.teacher-list:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media only screen and (max-width: 767px) {
  .teacher-list {
    width: 100%;
    margin: 0 auto;
  }
}

.signup-modal .modal-content {
  border-radius: 20px;
  border: none;
}
@media only screen and (max-width: 767px) {
  .signup-modal .modal-content {
    padding: 20px 16px !important;
  }
}
.signup-modal .theme-btn {
  border: none;
}

.session-box {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e0e0e0;
}

.mobile-sticky-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  -webkit-backdrop-filter: saturate(180%) blur(8px);
          backdrop-filter: saturate(180%) blur(8px);
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid #ddd;
  z-index: 999;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05);
}
.mobile-sticky-btn .theme-btn {
  padding: 14px 20px 12px;
  font-size: 16px;
  border-radius: 8px;
}/*# sourceMappingURL=course.css.map */