:root {
  --primary: #054f25;
  --secondary: #0f8924;
  --light-green: #eff8ec;
  --yellow: #ffa81d;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  color: #000;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: "Josefin Sans", sans-serif;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
.f16 {
  font-size: 16px !important;
}
.f18 {
  font-size: 18px !important;
}
.h-40 {
  height: 40px !important;
}
header {
  width: 100%;
  padding: 10px;
  background: #fff;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px -2px rgb(20 23 28 / 10%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
}

.logo img {
  width: 100%;
  max-width: 160px;
}

.menu-left {
  text-align: left;
}

.menu-left li {
  display: inline-block;
  margin-top: 5px;
  position: relative;
}

.menu-left li a {
  color: #000;
}

.menu-left li.menu-search-main {
  width: 56%;
  margin-left: 40px;
}

.has-dropdown {
  line-height: 40px;
}

.menu-left li .dropdown {
  position: absolute;
  left: 0;
  top: 60px;
  width: 300px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5px #d5d5d5;
  z-index: 10;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  padding: 10px 0;
  transition: all 0.3s;
}

.menu-left li .dropdown::after {
  top: -12px;
  left: 14px;
}

.menu-left li .dropdown::before {
  top: -14px;
  left: 14px;
}

.menu-left li .dropdown:after {
  border-color: transparent transparent #fff;
}

.menu-left li .dropdown:before {
  border-color: transparent transparent #e8e9eb;
}

.menu-left li .dropdown::before,
.menu-left li .dropdown::after {
  border-style: solid;
  border-width: 0 10px 13px;
  content: "";
  height: 0;
  width: 0;
  position: absolute;
}

.menu-left li .dropdown li {
  width: 100%;
  margin: 0;
  line-height: 10px;
}

.menu-left li .dropdown li a {
  padding: 15px 20px;
  display: block;
  font-size: 14px;
  background: #fff;
  transition: all 0.3s;
}

.menu-left li .dropdown li a:hover {
  background: #f4f4f4;
  padding-left: 25px;
}

.menu-left li:hover .dropdown {
  visibility: visible;
  opacity: 1;
  top: 40px;
}

.menu-search {
  width: 100%;
  position: relative;
}

.menu-search-input {
  outline: none;
  width: 95%;
  transition: all 0.3s;
  border: solid 1px #999;
  padding: 7px 50px 7px 25px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.menu-search-input:focus {
  border: solid 1px #1d732c;
}

.menu-search-input::placeholder {
  font-size: 14px;
  font-weight: 500;
}

.menu-search button {
  border: none;
  outline: none;
  background: none;
  position: absolute;
  right: 48px;
  top: 5px;
}

.menu-right {
  text-align: right;
}

.menu-right li {
  display: inline-block;
  margin-right: 10px;
  margin-top: 8px;
}

.menu-right li:last-child {
  margin-right: 0;
}

.menu-right li a {
  padding: 7px 12px;
  border-radius: 4px;
  border: solid 1px #ccc;
  color: #000;
  background: #fff;
  transition: all 0.3s;
}

.new-menu-right li a {
  padding: 7px 5px;
  border-radius: 4px;
  border: solid 1px #ccc;
  color: #000;
  background: #fff;
  transition: all 0.3s;
}

.menu-right li:last-child a {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.menu-right li a:hover,
.menu-right li:last-child a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.menu-right li a:hover {
  opacity: 0.8;
}

.menu-cart-icon {
  position: relative;
}

.menu-cart-icon span {
  position: absolute;
  right: -5px;
  top: -17px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--secondary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
}

.mobile-menu-icon {
  display: none;
}

.main {
  width: 100%;
  min-height: 350px;
  background-color: var(--light-green);
  text-align: center;
  margin-top: 60px;
  position: relative;
}

.main h1 {
  font-weight: 700;
  font-size: 110px;
  text-transform: capitalize;
  width: 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation-name: masked-animation;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-image: url(../images/main-banner.jpg);
  background-size: cover;
  margin-top: 40px;
}

.main h2 {
  font-size: 28px;
  padding-top: 20px;
  color: var(--primary);
}

@-webkit-keyframes masked-animation {
  0%,
  100% {
    background-position: 50% 35%;
  }

  50% {
    background-position: 50% 65%;
  }
}

@keyframes masked-animation {
  0%,
  100% {
    background-position: 50% 35%;
  }

  50% {
    background-position: 50% 65%;
  }
}

.main-search {
  width: 100%;
  max-width: 750px;
  height: 50px;
  border-radius: 5px;
  margin: 30px auto 10px;
  background: #fff;
  position: relative;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 5%);
}

.main-search-input {
  width: 98%;
  height: 100%;
  outline: none;
  border: none;
  padding-left: 15px;
  font-size: 16px;
}

.main-search button {
  position: absolute;
  top: 10%;
  right: 5px;
  height: 80%;
  outline: none;
  border: none;
  background: var(--secondary);
  color: #fff;
  border-radius: 3px;
  transition: all 0.3s;
  padding-left: 15px;
  padding-right: 15px;
}

.main-search button:hover {
  background: var(--primary);
}

.main-pos-1 {
  position: absolute;
  top: 60px;
  left: 20px;
  opacity: 0.5;
  transition: all 0.4s;
}

.main-pos-2 {
  position: absolute;
  bottom: 0px;
  right: 20px;
  opacity: 0.5;
  transition: all 0.4s;
}

/* .main:hover .main-pos-1, .main:hover .main-pos-2 {
    opacity: 0.5;
} */
.home-strip {
  width: 100%;
  min-height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: solid 1px #f0f0f0;
  padding: 20px 0;
}

.home-strip-cont h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
}

.home-strip-cont p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  color: #777;
}

.home-strip-cont i {
  width: 50px;
  height: 50px;
  color: var(--secondary);
  border-radius: 50%;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
}

.bg-grey {
  background: #f1f7f8;
  position: relative;
  z-index: 1;
}

.inner-sec {
  width: 100%;
  padding: 50px 0;
  position: relative;
}

.main-title h1 {
  display: inline;
  position: relative;
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  font-family: "Inter", sans-serif;
}

.title-leaf {
  position: absolute;
  right: -10px;
  top: 13px;
  z-index: -1;
  opacity: 0;
  transition: all 0.5s;
}

.inner-sec:hover .title-leaf {
  opacity: 0;
}

.title-leaf img {
  width: 40px;
  transform: rotate(11deg);
}

.top-cat-cont {
  width: 100%;
  min-height: 100px;
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  display: flex;
  align-items: center;
  padding: 15px;
  position: relative;
  transition: all 0.3s;
}

.top-cat-cont:hover {
  border-bottom: solid 1px var(--secondary);
}

.top-cat-cont h1 {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  z-index: 10;
  position: relative;
}

.top-cat-cont p {
  font-size: 16px;
  margin-top: 5px;
  margin-bottom: 0;
}

.top-cat-section a {
  color: inherit;
  display: block;
}

.top-cat-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.top-cat-icon i {
  font-size: 50px;
  color: #e8e8e8;
  opacity: 0.7;
  transition: all 0.4s;
}

.top-cat-icon img {
  color: #e8e8e8;
  filter: grayscale();
  transition: all 0.4s;
  width: 64px;
  transform: scale(0.9);
  opacity: 0.3;
}

.top-cat-cont:hover img {
  opacity: 1;
  transform: scale(1);
  filter: grayscale(0);
}

.course-box {
  width: 70%;
  padding: 2px;
  background: #fff;
  border-radius: 10px;
  border: solid 1px #fff;
  transition: all 0.4s;
  box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px,
    rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
  margin-bottom: 30px;
  border: solid 1px #e8e8e8;
}

.course-box:hover {
  box-shadow: rgba(0, 0, 0, 0.2) 0px 25px 20px -20px;
}

.course-img {
  position: relative;
  width: 100%;
  /* height: 262px; */
}

.course-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
  border-radius: 5px;
}

.course-admin-pic {
  position: absolute;
  left: 7px;
  bottom: -50px;
  z-index: 10;
}

.course-admin-pic img {
  padding: 4px;
  width: 70px !important;
  height: 70px;
  border-radius: 100%;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
  margin-bottom: 5px;
  margin-left: 25px;
}

.course-admin-pic small {
  font-weight: 600;
  color: #999;
  font-size: 12px;
}

.course-play-button {
  position: absolute;
  left: 47%;
  top: 50%;
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--secondary);
  font-size: 30px;
  text-align: center;
  line-height: 50px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.course-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  transition: all 200ms;
}

.course-play-button span {
  display: block;
  position: relative;
  z-index: 3;
}

.course-box:hover .course-play-button:before {
  content: "";
  position: absolute;
  z-index: -10;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.course-play-button:hover:after {
  background-color: darken(#fa183d, 10%);
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.course-details {
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70px;
}

.course-details .row {
  width: 100%;
}

.course-details h1 {
  font-size: 16px;
  margin-top: 5px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.course-details h2 {
  font-size: 14px;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #999;
}

.rating {
  margin-top: 8px;
}

.rating li {
  display: inline;
  color: #d5d5d5;
  font-size: 12px;
}

/* .rating li:last-child, .rating li:nth-child(6) {
    color: #999;
    font-weight: 300;
} */
.rating li i.bi-star-fill {
  color: var(--secondary);
}

.course-details-list {
  padding: 0px 10px;
  background: var(--light-green);
  margin-top: 10px;
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.course-details-list li {
  display: inline;
  font-size: 12px;
  color: var(--secondary);
  margin-right: 10px;
}

.course-details-list li i {
  font-size: 12px;
}

.c-badge {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
  padding: 5px 10px;
  background: var(--yellow);
  color: #000;
  border-radius: 3px;
}

.compare-btn {
  padding: 7px 10px;
  font-weight: 500;
  font-size: 12px;
  border: var(--secondary) solid 1px;
  color: var(--secondary);
  border-radius: 3px;
  transition: all 0.2s;
}

.compare-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.course-price-sec {
  margin-top: 25px;
  border-top: solid 1px #e8e8e8;
  border-bottom: solid 0px #e8e8e8;
  padding: 10px 0 0px;
}

.btn-course {
  transition: all 0.3s;
  padding: 8px 12px;
  border: solid 1px var(--secondary);
  color: var(--secondary);
  font-size: 14px;
  border-radius: 4px;
}

.btn-course:hover {
  background: var(--secondary);
  color: #fff !important;
}

.course-price {
  font-weight: 600;
  color: var(--secondary);
  font-size: 16px;
}

.course-box-view-all {
  min-height: 291px;
  background: #cff3c3;
  color: var(--secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}

.mh-338 {
  min-height: 338px;
}

.mh-95 {
  min-height: 95px;
}

.joining-cont {
  width: 100%;
  padding: 20px 30px;
  min-height: 100px;
  background: #f1f7f8;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: all 0.4s;
}

.joining-cont:hover {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
  background: #fff;
}

.joining-cont::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 0;
  border-left: solid 2px #fff;
  left: 0px;
  bottom: 0;
  border-radius: 10px;
  transition: all 0.5s;
}

.joining-cont:hover::before {
  border-left: solid 2px var(--secondary);
  top: 0 !important;
  height: 100%;
}

.joining-cont h1 {
  font-size: 24px;
  font-family: "Inter", sans-serif;
}

.join-btn a {
  padding: 5px 10px;
}

.down-app {
  border-radius: 10px;
  box-shadow: 0 30px 60px 0 rgb(0 4 48 / 30%);
  padding: 50px 30px 50px 50px;
  position: relative;
  background: var(--secondary);
  overflow: hidden;
  margin-bottom: -100px;
  margin-top: 30px;
  z-index: 10;
  min-height: 138px;
}

.down-app::after {
  position: absolute;
  content: "";
  width: 900px;
  height: 900px;
  background: #fff;
  left: 52%;
  top: -515px;
  z-index: -1;
  border-radius: 100%;
}

.down-app h2 {
  width: 100%;
  max-width: 620px;
  line-height: 42px;
}

.down-app-btn a {
  width: 205px;
  height: 54px;
  background-color: var(--primary);
  color: #fff;
  font-size: 20px;
  border-radius: 4px;
  box-shadow: 0 12px 24px 0 rgb(5 79 37 / 30%);
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.down-app-btn a i {
  padding-right: 10px;
}

.down-app-btn a:hover {
  /* background-color: var(--secondary); */
  background-color: #111;
  box-shadow: 0 12px 24px 0 rgb(17 17 17 / 30%);
}

.top-courses a {
  color: inherit;
}

.top-courses a:hover {
  color: var(--secondary);
}

footer {
  padding-top: 120px;
  width: 100%;
  padding-bottom: 30px;
  position: relative;
}

footer p {
  color: #666;
  font-size: 14px;
  line-height: 20px;
  margin-top: 20px;
}

.footer-links {
  margin-top: 20px;
}

.footer-links li {
  margin-bottom: 5px;
}

.footer-links li a {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.footer-links li a:hover {
  color: #000;
}

.inner-banner {
  width: 100%;
  min-height: 400px;
  text-align: center;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 68px;
}

.inner-banner-img {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  height: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.inner-banner h1 {
  z-index: 100;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
  border-radius: 3px;
  font-size: 40px;
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.course-details-top {
  padding: 50px 0;
  background: var(--light-green);
  min-height: 400px;
  margin-top: 58px;
}

.course-details-top iframe {
  border-radius: 5px;
}

.c-detail-cont {
  padding: 20px 0;
}

/* .c-detail-cont h1 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Inter', sans-serif;
    margin-bottom: 10px;
} */
.c-detail-cont p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 5px;
}

.c-detail-cont a {
  color: var(--primary);
}

.c-details-list-cont {
  width: 100%;
  padding: 20px 30px;
  background: rgba(255, 255, 255, 1);
  border: solid 0px #e8e8e8;
  border-radius: 5px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

.c-details-list-cont h1 {
  font-size: 22px;
  padding-bottom: 10px;
  font-family: "Inter", sans-serif;
  border-bottom: solid 1px #e8e8e8;
  color: var(--primary);
  font-weight: 700;
}

.c-list::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.c-list::-webkit-scrollbar-track {
  background: #dcfad2;
}

/* Handle */
.c-list::-webkit-scrollbar-thumb {
  background: #aad9b1;
}

/* Handle on hover */
.c-list::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.c-list {
  margin-top: 15px;
  height: 200px;
  overflow-y: scroll;
}

.c-list li {
  padding: 5px 0 5px 25px;
  border-bottom: solid 1px var(--light-green);
  position: relative;
}

.c-list li::before {
  position: absolute;
  content: "";
  left: 0px;
  width: 20px;
  height: 20px;
  top: 7px;
  background: url(../images/play-circle.svg) no-repeat center;
}

.c-list li a {
  font-size: 16px;
  color: #666;
  transition: all 0.3s;
  font-weight: 500;
}

.c-list li a:hover {
  color: var(--secondary);
}

.c-list li a i {
  color: var(--primary);
  padding-left: 5px;
}

.c-list li a span {
  color: #999;
  padding-left: 15px;
  font-size: 14px;
}

.c-btn {
  padding: 10px 15px;
  border: solid 1px var(--secondary);
  transition: all 0.3s;
  border-radius: 4px;
}

.c-btn:hover {
  background-color: var(--secondary);
  color: #fff;
}

/* .course-overview h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 26px;
    padding-bottom: 10px;
} */

.course-overview p {
  color: #666;
  line-height: 24px;
  margin-bottom: 30px;
}

.student-review li {
  padding: 15px 5px;
  border-bottom: solid 1px var(--light-green);
  color: #888;
}

.student-review .rating li {
  border-bottom: 0;
  padding: 0;
}

.student-review span {
  color: var(--secondary);
}

.course-price-box {
  margin-top: 20px;
  background: #fff;
  min-height: 333.25px;
  padding: 30px;
  border-radius: 5px;
  /* box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px; */
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}

/* .course-price-box h1 {
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
} */
.course-price-box ul {
  margin-top: 10px;
}

.course-price-box li {
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
}

.course-price-box li::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  left: 0;
  top: 8px;
}

.adc-btn {
  padding: 10px 25px;
  border-radius: 4px;
  color: var(--secondary);
  border: solid 1px var(--secondary);
  background: #fff;
  transition: all 0.4s;
  width: 100%;
  max-width: 170px;
  display: block;
  text-align: center;
}

.buy-btn {
  padding: 10px 25px;
  border-radius: 4px;
  color: #fff;
  border: solid 1px var(--secondary);
  background: var(--secondary);
  transition: all 0.4s;
  width: 100%;
  max-width: 170px;
  display: block;
  text-align: center;
  margin-left: auto;
}

.adc-btn:hover,
.buy-btn:hover {
  background: var(--primary);
  color: #fff;
}

.login-cont {
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 6px;
}

.login-form {
  margin-top: 20px;
}

.login-form label {
  font-weight: 500;
  padding-bottom: 7px;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form .form-control {
  height: 50px;
}

.login-form .form-control:focus {
  box-shadow: none;
  border: solid 1px var(--secondary);
}

.login-btn {
  outline: none;
  border: solid 1px var(--secondary);
  color: #fff;
  height: 40px;
  background: var(--secondary);
  border-radius: 4px;
  transition: all 0.3s;
  margin: auto;
  width: 100%;
  max-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-btn:hover {
  background: var(--primary);
  color: #fff;
}

.login-btn i {
  padding-left: 5px;
}

.signup-btn {
  outline: none;
  border: solid 1px var(--secondary);
  color: var(--secondary);
  height: 40px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.3s;
  margin: auto;
  width: 100%;
  max-width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup-btn:hover {
  background: var(--secondary);
  color: #fff;
}

.forgot-link {
  color: #4b9941;
  transition: all 0.2s;
}

.forgot-link:hover {
  background-color: var(--light-green);
  color: #4b9941;
}

.delete-item {
  color: #d40000;
  font-size: 18px;
}

.cart-cont .table h5 {
  display: inline;
  font-family: "Inter", sans-serif;
  font-size: 16px;
}

.cart-price-sub {
  color: var(--secondary);
  font-weight: 500;
  display: flex;
}

.cart-cont .table span {
  cursor: pointer;
}

.minus,
.plus {
  font-size: 20px;
}

.cart-cont .table input {
  height: 30px;
  width: 80px;
  text-align: center;
  font-size: 20px;
  border: 1px solid #ddd;
  display: inline-block;
  vertical-align: middle;
}

.checkout-course-title {
  position: relative;
}
.checkout-course-title a {
  position: absolute;
  left: 10px;
}
.checkout-course-title h5 {
  position: absolute;
  left: 27px;
  top: 13px;
}
.number {
  display: flex;
  justify-content: space-around;
}
.cart-cont a {
  color: inherit;
}
.user-profile-pic {
  text-align: center;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 50%;
  margin: 30px auto 40px auto;
}
.user-profile-pic img {
  width: 100%;
  max-width: 100px;
}

.inner-page-title {
  padding: 40px 0 35px;
  background: var(--light-green);
  min-height: 80px;
  margin-top: 58px;
  display: flex;
  align-items: center;
}
.inner-page-title h1 {
  margin-bottom: 0;
  padding: 0;
}
.info-sec h1,
.info-sec h2,
.info-sec h3,
.info-sec h4,
.info-sec h5,
.info-sec h6 {
  font-family: "Inter", sans-serif;
}
.list {
  padding-left: 15px;
  margin-bottom: 20px;
}
.list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
.list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
}

/*=== New Css =====*/

.test-series h1 {
  font-size: 24px;
}

.test-series .course-box:hover {
  background-color: var(--secondary);
  color: #fff;
}

.exam-sec {
  width: 100%;
  min-height: 100vh;
  background-color: #e8ecfa;
  /* background-color: var(--light-green); */
  padding: 40px 0;
  margin-top: 58px;
}

.exam-sec h1,
.exam-sec h2,
.exam-sec h3,
.exam-sec h4,
.exam-sec h5,
.exam-sec h6 {
  font-family: "Inter", sans-serif;
}

.exam-sec h5 {
  font-size: 18px;
}

.exam-top-header {
  width: 100%;
  min-height: 100px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  padding: 20px 20px;
  margin-bottom: 5px;
}

.exam-top-header h4 small {
  padding-top: 10px;
  display: block;
  color: var(--primary);
}

.exam-user-img img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  padding: 3px;
  background-color: var(--light-green);
}

.exam-body {
  width: 100%;
  min-height: 80vh;
  background-color: #fff;
  padding: 20px 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.instructions-cont p {
  color: #444444;
  font-size: 18px;
}

.exam-ins-list {
  padding-left: 10px;
  margin-bottom: 25px;
}

.exam-ins-list li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
  font-size: 18px;
}

.exam-ins-list li span {
  position: absolute;
  left: 0;
  top: 0px;
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.exam-ins-list li span.grey {
  background-color: #666;
}

.exam-ins-list li span.red {
  background-color: #e20606;
}

.exam-ins-list li span.green {
  background-color: #07ca18;
}

.exam-ins-list li span.purple {
  background-color: #6c07ca;
}

.exam-ins-list li span.purple-marked {
  background-color: #eeb90a;
}

/* Custom radio buttons */
input[type="radio"] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-right: 15px;
  font-size: 18px;
}
input[type="radio"] + label:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 14px;
  position: absolute;
  top: 2px;
  left: 0;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 50%;
}
input[type="radio"] {
  display: none !important;
}
input[type="radio"]:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #0588c5;
}
/* Custom checkbox */
input[type="checkbox"] + label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
  margin-right: 15px;
  font-size: 18px;
}
input[type="checkbox"] + label:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin-right: 14px;
  position: absolute;
  top: 3px;
  left: 0;
  border: 1px solid #aaa;
  background-color: #fff;
  border-radius: 5px;
}
input[type="checkbox"] {
  display: none !important;
}
input[type="checkbox"]:checked + label:after {
  content: "✔";
  font-size: 18px;
  line-height: 20px;
  color: #0588c5;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

.exam-sidebar {
  width: 100%;
  background-color: #f5f5f5;
  height: 100%;
  position: relative;
  padding: 15px;
}

.ans-list {
  display: flex;
  justify-content: flex-start;
}

.ans-list li {
  display: inline;
  position: relative;
  padding-left: 40px;
  margin-right: 20px;
}

.ans-list li span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  /* bottom: -5px; */
  top: 0;
}

.answered {
  background-color: #07ca18;
  color: #fff;
}

.not-answered {
  background-color: #e20606;
  color: #fff;
}

.not-visited {
  background-color: #666;
  color: #fff;
}

.marked-for-review {
  background-color: #6c07ca;
  color: #fff;
}

.am-item {
  padding-left: 50px !important;
}

.marked-for-evaluation {
  background-color: #6c07ca;
  color: #fff;
  bottom: 5px !important;
  width: 35px !important;
  height: 35px !important;
}

.marked-for-evaluation i {
  position: absolute;
  bottom: -15px;
  right: -7px;
  font-size: 30px;
  color: #87f390;
}

.btn-purple {
  background-color: #7119b9;
  color: #fff;
}

.btn-purple:hover {
  background-color: #7f1bd1 !important;
  color: #fff !important;
}

.exam-sidebar h4 {
  margin-top: 60px;
  width: 100%;
  display: block;
  padding: 10px;
  color: #fff;
  background-color: #3277b8;
  font-size: 18px;
}

.question-number-list {
  width: 100%;
  padding: 10px;
  height: 310px;
  overflow-y: scroll;
}

.question-number-list li {
  margin-bottom: 20px;
}



#timer {
  width: 80px;
  height: 70px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  color: var(--secondary);
}

.scale-list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 50px;
  background-color: #f0f0f0;
}

.scale-list li {
  position: relative;
  padding-left: 37px;
}

.scale-list li span {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  top: -3px;
}

.feed-4 {
  background-color: #009a00;
}

.feed-3 {
  background-color: #ff9801;
}

.feed-2 {
  background-color: #639cdf;
}

.feed-1 {
  background-color: #ff3334;
}

.exam-success-alert {
  padding: 50px;
  background-color: #f5f5f5;
}

.exam-success-alert p {
  font-size: 20px;
}

.response-sheet-list li {
  padding-left: 30px;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.response-sheet-list li span {
  position: absolute;
  left: 0;
}

.wrong {
  color: #e40000;
}

.right {
  color: #07ca18;
  font-size: 26px;
}

.ans-list-title {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  border-bottom: solid 1px #ccc;
}

.ans-list-title li {
  width: 100%;
}

.ans-list-title li a {
  font-size: 20px;
  color: #222;
  display: block;
  height: 50px;
}

.ans-list-title li a.active {
  border-bottom: solid 3px var(--secondary);
}

.ans-cont {
  width: 100%;
  padding: 30px 20px;
  background-color: #f5f5f5;
  min-height: 250px;
}

.qs-list {
  width: 100%;
  min-height: 60px;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
  /* box-shadow:  0 0 10px rgba(0,0,0,0.1); */
}

.qs-list li {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  padding-left: 60px;
}

.qs-list li i {
  position: absolute;
  left: 0;
  width: 45px;
  height: 40px;
  font-size: 22px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -3px;
}

.qs-list li i.rank {
  color: #d81731;
  background-color: #fff1f2;
}

.qs-list li i.score {
  color: #b814e0;
  background-color: #f8e8fc;
}

.qs-list li i.qs-at {
  color: #1466e0;
  background-color: #e4edfc;
}

.qs-list li i.perctl {
  color: #e014c5;
  background-color: #fddef9;
}

.qs-list li i.acry {
  color: #04e216;
  background-color: #ebfdec;
}

.attempt-list {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
}

.attempt-list li {
  padding: 15px 25px;
  border-radius: 5px;
  background-color: #fff;
  margin-bottom: 15px;
}

.sol-top-list {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.sol-top-list li a {
  color: #666;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #d5d5d5;
}

.sol-top-list li a.active {
  color: #fff;
  background-color: #1466e0;
}

.sol-cont {
  width: 100%;
  min-height: 60px;
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #e8e8e8;
  padding: 10px 20px;
}

.sol-cont-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 500;
    color: #999;
    margin-top: 6px;
}

.sol-cont-list li span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sol-cont-list li span.red {
    color: #fff;
    background-color: #e40000;
}

.bookmark-icon {
    font-size: 22px;
    color: #999;
    padding-top: 6px;
}

.sol-des {
    font-size: 18px;
}

.f22 {
    font-size: 22px;
}

.leaders-list {
    display: flex;
    justify-content: space-around;
    width: 100%;
    padding: 5px 20px 5px 20px;
    /* background-color: #fff; */
    background: rgb(255,250,238);
}

.leaders-list img {
    width: 100%;
    max-width: 100px;
    border-radius: 50%;
}

.leader-one img {
    border: solid 3px #b6c7cf;
}

.leader-two img {
    border: solid 3px #ffb600;
}

.leader-three img {
    border: solid 3px #db9146;
}

.leader-img {
  position: relative;
  width: 100%;
  max-width: 95px;
  margin: auto;
}

.leader-img span.l1 {
    position: absolute;
    right: -10px;
    top: 0;
    width:40px;
    height: 40px;
    border-radius: 50%;
    border:solid 2px #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #b6c7cf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-img span.l2 {
    position: absolute;
    right: -10px;
    top: 0;
    width:40px;
    height: 40px;
    border-radius: 50%;
    border:solid 2px #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #ffb600;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-img span.l3 {
    position: absolute;
    right: -10px;
    top: 0;
    width:40px;
    height: 40px;
    border-radius: 50%;
    border:solid 2px #fff;
    font-size: 20px;
    font-weight: 600;
    background-color: #db9146;
    display: flex;
    justify-content: center;
    align-items: center;
}

.leaders-list p {
    text-align: center;
    margin-top: 5px;
    font-size: 18px;
    font-weight: 700;
}

.leaders-content {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-bottom: solid 1px #e8e8e8;
    font-size: 18px;
}

.leaders-content p {
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
}

.leaders-list-bottom li {
    display: inline;
    margin-right: 20px;
    font-weight: 500;
}

.leaders-list-bottom li img {
    max-width: 100%;
    width: 50px;

}

.leaders-list-bottom li:first-child {
    font-size: 22px;
    color: #999;
}

.plus-minus-markes-list li {
    display: inline-flex;
    margin-right: 10px;
}

.plus-mark {
    width: 60px;
    height: 30px;
    border-radius: 4px;
    background-color: #dff6eb;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

.minus-mark {
    width: 60px;
    height:30px;
    border-radius: 4px;
    background-color: #fadfe6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

/*=== End New Css =====*/

/*--- Media Screen Css Start ----*/
@media (max-width: 1199px) {
  .menu-left li.menu-search-main {
    width: auto;
  }
}

@media (max-width: 1399px) {
  .down-app-shape img {
    right: -240px;
  }

  .down-app-btn a {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .mobile-menu-icon {
    display: block;
    position: fixed;
    width: 40px;
    height: 30px;
    right: 15px;
    top: 15px;
    cursor: pointer;
  }

  .navbar-toggler span,
  .navbar-toggler span::after,
  .navbar-toggler span::before {
    display: block;
    content: "";
    background-color: #333;
    height: 2px;
    width: 20px;
    transition: all ease-in-out 0.3s;
  }

  .navbar-toggler span {
    margin-top: 12px;
  }

  .navbar-toggler span::before {
    transform: translateY(-8px);
  }

  .navbar-toggler span::after {
    transform: translateY(5px);
  }

  .navbar-toggler.open-navbar-toggler span::before {
    transform: translateY(0) rotate(45deg);
  }

  .navbar-toggler.open-navbar-toggler span::after {
    transform: translateY(-2px) rotate(-45deg);
  }

  .navbar-toggler.open-navbar-toggler span {
    background-color: transparent;
  }

  .mobile-menu {
    position: fixed;
    left: -200%;
    width: 100%;
    right: 0;
    height: 100%;
    top: 57px;
    background: #f1f7f8;
    padding: 20px;
    overflow-x: hidden;
    display: block;
    transition: all 0.4s;
    margin: 0;
  }

  .mobile-menu-show {
    left: 0;
  }

  .menu-left li.menu-search-main {
    display: none;
  }

  .dropdown {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    background: #f1f7f8;
    display: none;
    visibility: visible !important;
    opacity: 1 !important;
    height: 0;
  }

  .dropdown-show {
    display: block !important;
    margin-bottom: 20px !important;
  }

  .menu-left li .dropdown::before,
  .menu-left li .dropdown::after {
    display: none;
  }

  .menu-right {
    margin-top: 30px !important;
  }

  .down-app-shape img {
    right: -75%;
  }

  .main {
    overflow-x: hidden;
  }

  .main h1 {
    font-size: 70px;
    margin-top: 100px;
  }

  .main h2 {
    font-size: 20px;
  }

  .down-app h2 {
    margin-bottom: 30px;
  }

  .down-app::after {
    display: none;
  }

  .down-app h2 {
    font-weight: 700;
    line-height: 36px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .inner-banner {
    min-height: 200px;
  }

  .inner-banner h1 {
    font-size: 30px;
  }

  .course-price-box {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .main-pos-1 {
    opacity: 0.1;
  }

  .main h1 {
    font-size: 40px;
  }

  .main h2 {
    font-size: 16px;
  }

  .home-strip-cont {
    padding-bottom: 20px;
    border-bottom: solid 1px #f0f0f0;
    text-align: center;
  }

  .home-strip-cont i {
    margin: auto;
  }

  .main-title h1 {
    display: block;
    text-align: center;
  }

  .down-app-shape img {
    right: -110%;
  }
  .ans-list {
    display: block;
  }
  .ans-list li {
    display: block;
    margin-bottom: 20px;
  }

  .scale-list {
    display: block;
    padding: 15px;
  }

  .scale-list li {
    display: block;
    margin-bottom: 20px;
  }
  

}

@media (max-width: 575px) {
  .main-search-input {
    font-size: 12px;
  }

  .course-details-list li {
    text-align: center;
  }

  .course-details-list {
    min-height: 50px;
  }

  .joining-cont {
    flex-direction: column;
    margin-bottom: 20px;
  }

  .joining-cont h1 {
    margin-bottom: 20px;
    text-align: center;
  }

  .down-app h2 {
    text-align: center;
  }

  .down-app-shape img {
    display: none;
  }

  .down-app {
    padding: 15px 15px 30px 15px;
  }

  .footer-links {
    margin-top: 8px;
  }

  .buy-btn {
    margin-left: inherit;
  }

  .course-details-top iframe {
    height: 400px;
  }
  .ans-list-title {
    display: inline-block;
    width: 100%;
    margin-bottom: 120px;
    border:none
  }
  .ans-list-title li {
    display: block;
    width: 100%;
  }
  .ans-list-title li a {
    display: block;
    width: 100%;
  }

  .attempt-list {
    display: block;
  }

  .attempt-list li {
    display: block;
    padding: 10px;
    margin-bottom: 5px;
  }

  .sol-top-list {
    display: block;
    width: 100%;
  }

  .sol-top-list li {
    display: block;
    margin-bottom: 20px;
    width: 100%;
  }

  .sol-top-list li a {
    width: 100%;
    display: block;
  }

  .sol-cont-list {
    display: block;
  }
  
  .sol-cont-list li {
    display: block;
    margin-bottom: 12px;
  }

  .sol-cont-list li:nth-child(4) {
    display: none;
  }

  .leaders-list {
    display: block;
  }

  .leaders-list li {
    display: block;
    margin-bottom: 10px;
  }

}

@media (max-width: 455px) {
  .qs-list {
    display: block;
  }

  .leaders-list-bottom li {
    display: block;
    text-align: center;
  }


}
