@import url("https://fonts.googleapis.com/css2?family=Gorditas:wght@400;700&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");

:root {
  --primary-color: #21315fff;
  --secondary-color: #348dcdff;
  --heading-color: #21315f;
  --primary-black-color: #fdbd08ff;
  --white-color: #ffffff;
  --text-color: #5e5d5aff;
  --gray-color: #dfe4e3ff;
  --border-color: #39a9f6;
  --heading-font: "SUSE", sans-serif;
  --body-font: "Source Sans 3", serif;
}

html {
  font-size: 100%;
  font-family: "Source Sans 3", sans-serif;
}

body {
  font-family: "Source Sans 3", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.source-font {
  font-family: "Source Sans 3", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

body {
  font-family: "Source Sans 3", sans-serif !important;
}

.color-main {
  color: #3c4852 !important;
}

.bg-main {
  background-color: #3c4852 !important;
}

.border-main {
  border: 1px solid #3c4852 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.f-10 {
  font-size: 10px !important;
}

.f-11 {
  font-size: 11px !important;
}

.f-12 {
  font-size: 12px !important;
}

.f-13 {
  font-size: 13px !important;
}

.f-14 {
  font-size: 14px !important;
}

.f-15 {
  font-size: 15px !important;
}

.f-16 {
  font-size: 16px !important;
}

.f-17 {
  font-size: 17px !important;
}

.f-18 {
  font-size: 18px !important;
}

.f-19 {
  font-size: 19px !important;
}

.f-20 {
  font-size: 20px !important;
}

.f-21 {
  font-size: 21px !important;
}

.f-22 {
  font-size: 22px !important;
}

.f-23 {
  font-size: 23px !important;
}

.f-24 {
  font-size: 24px !important;
}

.f-25 {
  font-size: 25px !important;
}

a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

a:focus,
input:focus,
textarea:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

/* i,
span,
a {
  display: inline-block;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  margin: 0px;
  /* color: var(--heading-color); */
  color: #21315f;
  font-family: var(--heading-font);
}

h1 {
  font-size: 60px;
  line-height: 90px;
}

h2 {
  font-size: 48px;
  line-height: 58px;
}

h3 {
  font-size: 27px;
  line-height: 40px;
}

h4 {
  font-size: 20px;
  line-height: 34px;
}

h5 {
  font-size: 18px;
  line-height: 1;
}

h6 {
  font-size: 16px;
  line-height: 1;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  margin: 0px;
  font-size: 16px;
}

input,
textarea {
  display: inherit;
}

button {
  border: none;
}

label {
  margin-bottom: 0;
}

iframe {
  width: 100%;
  border: none;
  display: inherit;
}

img {
  max-width: 100%;
}

body {
  font-weight: normal;
  font-style: normal;
  font-weight: 400;
  color: var(--text-color);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 30px;
  overflow-x: hidden;
}

/*===== Scrollbar =====*/
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #abafb9;
}

::-webkit-scrollbar-thumb {
  background-color: #13172b;
}

/* Preloader CSS */
.preloader {
  bottom: 0;
  height: 100vh;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100vw;
  z-index: 99999;
  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;
  background-color: var(--white-color);
}

.preloader .loader img {
  -webkit-animation: zoomInOut 3s ease-in-out infinite;
  animation: zoomInOut 3s ease-in-out infinite;
}

@-webkit-keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Back To Top */
.back-to-top {
  border-radius: 50%;
  bottom: 30px;
  cursor: pointer;
  display: none;
  font-size: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 30px;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 337;
  color: var(--white-color);
  background-color: var(--primary-color);
}

.back-to-top:hover {
  color: var(--white-color);
}

/*---- 

====================
01. Base CSS
    # Common CSS
====================

----*/
/* Common  CSS */
label {
  margin-bottom: 0;
}

@media (min-width: 1451px) {
  .container {
    max-width: 1314px;
  }
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .container {
    max-width: 1200px;
  }
}

.p-r {
  position: relative;
}

.bg_cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
}

.font-200 {
  font-weight: 200;
}

.form-group {
  position: relative;
  /* margin-bottom: 22px; */
  margin-bottom: 10px;
}

.form_control {
  width: 100%;
}

.primary-bg {
  background-color: var(--primary-color);
}

.primary-black-bg {
  background-color: var(--primary-black-color);
}

.gray-bg {
  background-color: var(--gray-color);
}

/* Section Title */
.sub-heading {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sub-heading i {
  margin-right: 10px;
  line-height: 0;
}

.section-title .sub-heading {
  margin-bottom: 10px;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .section-title h2 {
    font-size: 44px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 32px;
    line-height: 45px;
  }
}

.section-title h2 span {
  /* color: var(--primary-color); */
  color: #38aaf8;
}

.section-title.style-one h2 span:after {
  display: block;
  content: "";
  background: url(../images/gallery/line.png) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 30px;
}

.section-title.style-two .sub-heading {
  padding: 7px 20px;
  line-height: 20px;
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Text White */
.text-white p,
.text-white h6,
.text-white h5,
.text-white h4,
.text-white h3,
.text-white h2,
.text-white h1 {
  color: var(--white-color);
}

.text-white .sub-heading {
  color: var(--primary-color);
}

/* Ratings */
.ratings li {
  display: inline-block;
  color: #ff8601;
}

/* Video popup */
.video-popup {
  position: relative;
  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;
  z-index: 1;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  font-size: 24px;
}

.video-popup:hover {
  color: var(--primary-color);
}

.video-popup:after,
.video-popup:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  border-radius: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--white-color);
  -webkit-animation: playpopup infinite ease-in 2s;
  animation: playpopup infinite ease-in 2s;
}

.video-popup:before {
  -webkit-animation: playpopup infinite ease-in-out 3s;
  animation: playpopup infinite ease-in-out 3s;
}

@-webkit-keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes playpopup {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0.3;
  }

  100% {
    -webkit-transform: scale(2);
    transform: scale(2);
    opacity: 0;
  }
}

/* All Button */
.theme-btn {
  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;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 18px;
}

.theme-btn i {
  margin-left: 7px;
}

.theme-btn.style-one {
  position: relative;
  background-color: var(--primary-color);

  color: var(--white-color);
  padding: 12px 20px;
  height: 40px;
  width: 108px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  line-height: 16px;
  cursor: pointer;
}

.theme-btn.style-one:hover {
  background-color: #838ba1db;
}

.theme-btn.style-two {
  border: 1px solid #737477;
  border-radius: 6px;
  /* padding: 12px 20px; */
  font-weight: 600;
  font-size: 14px;
  /* line-height: 16px; */
  cursor: pointer;
}

.theme-btn.style-two:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
}

.theme-btn.sm-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 15px;
  line-height: 20px;
  border-radius: 5px;
  font-size: 16px;
}

.theme-btn.sm-btn:hover {
  background-color: var(--secondary-color);
}

.read-more {
  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;
  color: var(--primary-color);
  font-weight: 500;
}

.read-more i {
  margin-left: 10px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.read-more:hover {
  color: var(--primary-color);
}

.read-more:hover i {
  margin-left: 13px;
}

.icon-btn.style-one {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: var(--primary-color);
  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;
  color: var(--white-color);
}

.icon-btn.style-one i {
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

/* Check List */
.check-list.style-one li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
}

.check-list.style-one li i {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15px;
  flex: 0 0 15px;
  max-width: 15px;
  line-height: 0;
  color: var(--primary-color);
  margin-right: 10px;
}

/* Offcanvas Overlay */
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 999;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

/* Animated List Wrap */
.headline-wrap {
  font-size: 40px;
  line-height: normal;
  font-family: var(--heading-font);
  text-transform: capitalize;
}

.headline-wrap .marquee-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}

.headline-wrap .marquee-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.headline-wrap .marquee-item i {
  color: var(--primary-color);
  margin-left: 50px;
  margin-right: 50px;
}

.headline-wrap .marquee-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--white-color);
}

.headline-wrap .marquee-inner.left {
  -webkit-animation: marquee_left 15s linear infinite;
  animation: marquee_left 15s linear infinite;
}

/* Headline Animation */
@-webkit-keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@keyframes marquee {
  100% {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
  }
}

@-webkit-keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes marquee_right {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee_left {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.animate-float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.animate-float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.rotate360 {
  -webkit-animation: spin 7s linear infinite;
  animation: spin 7s linear infinite;
}

.zoomInOut {
  -webkit-animation: zoomInOut 6s linear infinite;
  animation: zoomInOut 6s linear infinite;
}

@keyframes zoomInOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/*  Search Modal  */
.search-modal {
  background-color: rgba(13, 18, 23, 0.95);
}

.search-modal .modal-content {
  padding: 15px 30px;
  background-color: transparent;
  border: none;
}

.search-modal .modal-content label {
  position: absolute;
  top: 15px;
  right: 0;
  color: var(--white-color);
}

.search-modal .modal-content .form_control {
  padding: 15px 30px 15px 0;
  background-color: transparent;
  color: var(--white-color);
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.search-modal .modal-content .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}

.search-modal .modal-content .form_control::-moz-placeholder {
  color: var(--white-color);
}

.search-modal .modal-content .form_control:-ms-input-placeholder {
  color: var(--white-color);
}

.search-modal .modal-content .form_control::-ms-input-placeholder {
  color: var(--white-color);
}

.search-modal .modal-content .form_control::placeholder {
  color: var(--white-color);
}

.search-modal .modal-content .form_control:focus {
  background-color: transparent;
}

.modal-open {
  overflow: auto !important;
  padding-right: 0 !important;
  overflow-x: hidden !important;
}

.modal-open .modal.show {
  padding-right: 0 !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

/* Edufit Pagination */
.edufit-pagination.text-center li {
  margin-left: 7px;
}

@media (max-width: 575px) {
  .edufit-pagination.text-center li {
    margin-left: 2px;
  }
}

.edufit-pagination li {
  display: inline-block;
  margin-right: 7px;
}

@media (max-width: 575px) {
  .edufit-pagination li {
    margin-right: 2px;
  }
}

.edufit-pagination li a {
  width: 50px;
  height: 50px;
  font-size: 16px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  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: 1px solid rgba(31, 31, 31, 0.1);
  font: 600 16px var(--heading-font);
}

.edufit-pagination li a:hover,
.edufit-pagination li a.active {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: transparent;
}

/*---- 
====================
02. Components CSS
    # Header CSS
====================

----*/
/* Transparent header */
.transparent-header {
  position: absolute;
  background-color: transparent;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Edufit Dropdown */
.edufit-dropdown {
  position: relative;
  font-size: 16px;
}

.edufit-dropdown.currency-dropdown {
  margin-left: 25px;
}

.edufit-dropdown>a {
  color: var(--white-color);
}

.edufit-dropdown:hover .dropdown {
  opacity: 1;
  display: block;
  visibility: visible;
  margin: 6px 0 0 0;
}

.edufit-dropdown .dropdown {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 100px;
  padding: 10px 15px;
  margin: 25px 0 0 0;
  position: absolute;
  z-index: 16;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  left: 0;
  font-size: 16px;
  right: auto !important;
  background: #fff;
  -webkit-box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 2px 2px 15px 0 rgba(0, 0, 0, 0.07);
  border: 1px solid #eee;
  display: block;
  border-radius: 10px;
}

.edufit-dropdown .dropdown a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 400;
}

.edufit-dropdown .dropdown a:hover {
  color: var(--primary-color);
}

/* Header TopBar */
.header-top {
  padding: 7px 0;
}

@media screen and (max-width: 991px) {
  .header-top {
    display: none;
  }
}

.header-top .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

.header-top .top-left span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  color: var(--white-color);
}

.header-top .top-left span:not(:last-child) {
  margin-right: 15px;
}

.header-top .top-left span i {
  margin-right: 10px;
  color: var(--white-color);
  line-height: 0;
}

.header-top .top-left span a {
  letter-spacing: -0.28px;
}

.header-top .top-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.header-top .top-right ul:not(:last-child):after {
  display: inline-block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--heading-color);
  margin-left: 30px;
  margin-right: 30px;
}

.header-top .top-right ul.social-link li:not(:last-child) {
  margin-right: 15px;
}

.header-top .top-right ul.social-link li a {
  color: var(--heading-color);
}

/* Header Navigation */
@media screen and (max-width: 1199px) {
  .header-navigation {
    padding: 15px 0;
  }
}

.header-navigation .primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

.header-navigation .site-branding-sidebar {
  /* max-width: 200px; */
  height: 75px;
  width: 75px;
}

.header-navigation .site-branding {
  /* max-width: 200px; */
  height: 110px;
  width: 200px;
}

.header-navigation .site-branding .logo-img {
  height: 110px;
}

@media only screen and (max-width:1200px) {
  .header-navigation .site-branding {
    height: 100px;
  }

  .header-navigation .site-branding .logo-img {
    height: 100px;
  }

}


.header-navigation .main-menu ul>li {
  display: inline-block;
  position: relative;
  margin-left: 17px;
  margin-right: 17px;
}

@media screen and (max-width: 1199px) {
  .header-navigation .main-menu ul>li {
    margin-left: 12px;
    margin-right: 12px;
  }
}

.header-navigation {
  background-color: #39AAF8;
}

.header-navigation .main-menu ul>li>a {
  position: relative;
  display: block;
  text-transform: capitalize;
  line-height: 1;
  color: #fff;
  font-size: 14px;
  font-weight: 600 !important;
  padding: 3px 0;
}

.header-navigation .main-menu ul>li>a:hover {
  color: #3c4852 !important;
  border-bottom: 1px solid #3c4852;
}

.header-navigation .main-menu ul>li>a:after {
  position: absolute;
  bottom: 35%;
  right: 0;
  content: "";
  width: 0%;
  height: 1px;
  background-color: var(--primary-color);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

.header-navigation .main-menu ul>li>a span.dd-trigger {
  margin-left: 5px;
}

.header-navigation .main-menu ul>li .sub-menu {
  position: absolute;
  left: 0;
  top: 120%;
  width: 250px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 99;
  padding: 10px 0;
  background-color: var(--white-color);
  height: auto;
  text-align: left;
  -webkit-box-shadow: 0px 20px 30px 15px rgba(0, 0, 0, 0.03);
  box-shadow: 0px 20px 30px 15px rgba(0, 0, 0, 0.03);
  border-radius: 7px;
}

.header-navigation .main-menu ul>li .sub-menu li {
  display: block;
  margin: 0;
}

.header-navigation .main-menu ul>li .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px;
  position: relative;
  line-height: 2.5;
  margin: 0;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.header-navigation .main-menu ul>li .sub-menu li a span.dd-trigger {
  margin-left: auto;
}

.header-navigation .main-menu ul>li .sub-menu li a:hover {
  color: var(--primary-color);
}

.header-navigation .main-menu ul>li .sub-menu li .sub-menu {
  left: 100%;
  top: 50%;
}

@media screen and (max-width: 1199px) {
  .header-navigation .main-menu ul>li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .header-navigation .main-menu ul>li .sub-menu li .sub-menu {
    left: auto;
    right: 100%;
    top: 50%;
  }
}

.header-navigation .main-menu ul>li .sub-menu li:hover .sub-menu {
  top: 0%;
}

.header-navigation .main-menu ul>li .sub-menu li:hover>a {
  margin-left: 5px;
  color: var(--primary-color);
}

.header-navigation .main-menu ul>li:hover>a {
  color: var(--primary-color);
}

.header-navigation .main-menu ul>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.header-navigation .navbar-toggler {
  padding: 11px 9px;
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
  border-radius: 5px;
}

.header-navigation .navbar-toggler span {
  position: relative;
  border-radius: 3px;
  display: block;
  height: 2px;
  padding: 0;
  width: 25px;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background-color: #fff;
}

.header-navigation .navbar-toggler span:not(:first-child) {
  margin-top: 5px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(1) {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  top: 7px;
}

.header-navigation .navbar-toggler.active span:nth-of-type(2) {
  opacity: 0;
}

.header-navigation .navbar-toggler.active span:nth-of-type(3) {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  top: -7px;
}

@media screen and (max-width: 1199px) {
  .header-navigation .edufit-nav-menu {
    text-align: left;
    position: fixed;
    top: 0;
    left: -310px;
    width: 310px;
    height: 100%;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    padding: 20px 20px 30px;
    display: block;
    overflow-x: hidden;
    overflow-y: scroll;
    z-index: 9999;
    background-color: var(--white-color);
  }

  .header-navigation .edufit-nav-menu.menu-on {
    left: 0;
  }

  .header-navigation .edufit-nav-menu .main-menu {
    margin-top: 30px;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li {
    display: block;
    margin: 0;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
  }

  .header-navigation .edufit-nav-menu .main-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li a:after {
    display: none;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li .sub-menu>li>a {
    padding: 5px 20px;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li .sub-menu>li .sub-menu {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    display: none;
    -webkit-transition: none;
    transition: none;
    margin-left: 30px;
  }

  .header-navigation .edufit-nav-menu .main-menu ul li .dd-trigger {
    position: absolute;
    right: 0;
    top: 10px;
    height: 25px;
    width: 25px;
    border-radius: 3px;
    z-index: 2;
    cursor: pointer;
    font-size: 16px;
  }

  .header-navigation .edufit-nav-menu .edufit-nav-button .theme-btn.style-one {
    padding: 13px 25px;
    border-radius: 5px;
    margin-right: 15px;
    line-height: 24px;
  }

  .header-navigation .edufit-nav-menu .edufit-nav-button .theme-btn.style-two {
    padding: 9px 25px;
    border-radius: 5px;
  }

  .header-navigation .navbar-close {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    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: none;
    font-size: 16px;
  }

  .header-navigation .navbar-toggler {
    display: block;
  }
}

/* Nav Right Item */
.nav-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-right-item .search-btn {
  margin-right: 20px;
}

.nav-right-item .search-btn .icon {
  background-color: var(--white-color);
  width: 55px;
  height: 55px;
  border-radius: 13px;
  border: 1px solid var(--border-color);
  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;
  color: var(--heading-color);
}

@media screen and (max-width: 1199px) {
  .nav-right-item .search-btn .icon {
    width: 45px;
    height: 40px;
    border-radius: 5px;
  }
}

.nav-right-item .nav-button .theme-btn {
  padding: 12px 25px;
}

.nav-right-item .nav-button .theme-btn.style-two {
  margin-left: 15px;
  padding: 12px 20px;
  line-height: 16px;
  height: 40px;
  width: 108px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
}

/* Header Style One */
.header-one .header-top {
  background-color: #06193a;
}

.header-one .header-navigation .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

@media screen and (max-width: 1199px) {
  .header-one .header-navigation .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-one .header-navigation .primary-menu .edufit-nav-menu {
  margin-left: 2%;
}

@media screen and (max-width: 1199px) {
  .header-one .header-navigation .primary-menu .edufit-nav-menu {
    margin-left: 0;
  }
}

/* .header-one .header-navigation .primary-menu .nav-right-item {
  margin-left: auto;
} */

/* Header Style Two */
.header-two .header-top {
  background-color: #06193a;
}

.header-two .header-navigation .container-fluid {
  padding-left: 60px;
  padding-right: 60px;
}

@media screen and (max-width: 1199px) {
  .header-two .header-navigation .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.header-two .header-navigation .primary-menu {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 1199px) {
  .header-two .header-navigation .primary-menu {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.header-two .header-navigation .site-branding {
  width: 10%;
}

@media screen and (max-width: 1199px) {
  .header-two .header-navigation .site-branding {
    width: auto;
  }
}

.header-two .header-navigation .edufit-nav-menu {
  width: 70%;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .header-two .header-navigation .edufit-nav-menu {
    width: auto;
    text-align: left;
  }
}

.header-two .header-navigation .nav-right-item {
  width: 20%;
}

@media screen and (max-width: 1199px) {
  .header-two .header-navigation .nav-right-item {
    width: auto;
  }
}

/* Header Sticky */
.header-navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-color: transparent;
  -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.08);
  -webkit-animation: sticky 1.2s;
  animation: sticky 1.2s;
  background-color: var(--white-color);
}

@-webkit-keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

@keyframes sticky {
  0% {
    top: -200px;
  }

  100% {
    top: 0;
  }
}

/*---- 
====================
02. Components CSS
    # Elements CSS
====================

----*/
/* Edufit Image Box */
/* .edufit-image-box.style-one {
  height: 585px;
  position: relative;
  z-index: 1;
  padding-top: 90px;
} */
@media screen and (max-width: 1199px) {
  .edufit-image-box.style-one {
    max-width: 690px;
    margin: 0 auto 50px;
  }
}

.edufit-image-box.style-one .shape {
  position: absolute;
  z-index: -1;
}

.edufit-image-box.style-one .shape.shape_one {
  left: -90px;
  top: 0;
}

.edufit-image-box.style-one .shape.shape_two {
  right: 100px;
  bottom: 20%;
}

.edufit-image-box.style-one .edufit-img.image_one img {
  border-radius: 10px;
}

.edufit-image-box.style-one .edufit-img.image_two {
  position: absolute;
  top: 0;
  right: 30px;
  display: inline-block;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--white-color);
  -webkit-box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
  box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
}

.edufit-image-box.style-one .edufit-img.image_two img {
  width: 100%;
  border-radius: 10px;
}

.edufit-image-box.style-one .edufit-img.image_two .line {
  display: block;
  border-radius: 10px;
  background-color: #f5f5f5;
  height: 10px;
}

.edufit-image-box.style-one .edufit-img.image_two .line.line1 {
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}

.edufit-image-box.style-one .edufit-img.image_two .line.line2 {
  width: 40%;
}

.edufit-image-box.style-one .ef-iconic-box {
  /* position: absolute; */
  bottom: 0;
  left: 30px;
  max-width: 300px;
  border-radius: 15px;
}

.edufit-image-box.style-two .edufit-img {
  padding-right: 60px;
  position: relative;
}

/* Sub-Exam css */
.ip-exam-description {
  margin-top: 30px;
}

.ip-exam-btn {
  /* padding:10px 20px;
  border-radius:6px;
  background-color:var(--heading-color);
  color:white;
  width:200px; */
  margin-top: 20px;
  margin-left: -460px;
}

@media screen and (max-width: 667px) {
  .ip-exam-btn {
    margin-left: -245px;
  }

  .id-profile-img {
    height: 116px !important;
    width: 116px !important;
  }
}

.ip-exam-heading {
  font-size: 20px;
  color: var(--heading-color);
}


.course-info ul {
  list-style-type: disc;
}

/* @media screen and(max-width:667px){
 .course-info ul{
  list-style-type: none;
 }
} */

@media (min-width: 1200px) and (max-width: 1450px) {
  .edufit-image-box.style-two {
    padding-right: 20px;
  }
}

.edufit-image-box.style-two .edufit-img img {
  width: 100%;
  border-radius: 10px;
}

.edufit-image-box.style-three {
  position: relative;
  height: 440px;
  max-width: 700px;
}

@media screen and (max-width: 1199px) {
  .edufit-image-box.style-three {
    height: auto;
  }
}

.edufit-image-box.style-three .edufit-img.style-one {
  margin-top: 100px;
}

@media (max-width: 767px) {
  .edufit-image-box.style-three .edufit-img.style-one {
    margin-top: 0;
  }
}

.edufit-image-box.style-three .edufit-img img {
  width: 100%;
  border-radius: 10px;
}

.edufit-image-box.style-three .ef-iconic-box {
  position: absolute;
  bottom: 65px;
  left: 30%;
}

@media (max-width: 767px) {
  .edufit-image-box.style-three .ef-iconic-box {
    left: 0;
  }
}

.edufit-image-box.style-three .ef-iconic-box.style-one {
  padding: 20px;
  min-width: 300px;
  border-radius: 12px;
  background-color: var(--primary-color);
}

.edufit-image-box.style-three .ef-iconic-box.style-one .icon {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
}

.edufit-image-box.style-three .ef-iconic-box.style-one .content {
  line-height: 1;
}

.edufit-image-box.style-three .ef-iconic-box.style-one .content h2 {
  color: var(--white-color);
  line-height: 40px;
}

.edufit-image-box.style-three .ef-iconic-box.style-one .content span {
  font-size: 16px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
}

.edufit-image-box.style-four {
  position: relative;
  height: 570px;
  z-index: 1;
  max-width: 700px;
}

@media screen and (max-width: 1199px) {
  .edufit-image-box.style-four {
    margin: 0 auto 50px;
  }
}

.edufit-image-box.style-four .shape {
  position: absolute;
  z-index: -1;
}

.edufit-image-box.style-four .shape.shape-one {
  top: 80px;
  right: 80px;
}

.edufit-image-box.style-four .shape.shape-two {
  bottom: 50px;
  left: 60px;
}

.edufit-image-box.style-four .edufit-img.image_two {
  position: absolute;
  bottom: 0;
  right: 0;
  border: 8px solid var(--white-color);
}

/*  Edufit Content Box  */
.edufit-content-box>p {
  margin-bottom: 35px;
}

@media screen and (max-width: 1199px) {
  .edufit-content-box.style-one {
    max-width: 630px;
    margin: 0 auto 25px;
  }
}

.edufit-content-box.style-one .about-button-box .author-box {
  margin-left: 40px;
}

@media (max-width: 767px) {
  .edufit-content-box.style-one .about-button-box .author-box {
    margin-left: 10px;
  }
}

.edufit-content-box.style-two {
  padding-left: 40px;
}

@media screen and (max-width: 1199px) {
  .edufit-content-box.style-two {
    padding: 0 30px;
  }
}

.edufit-content-box.style-two>p {
  margin-bottom: 30px;
}

.edufit-content-box.style-two .check-list {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .edufit-content-box.style-two .content-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.edufit-content-box.style-two .content-button .theme-btn {
  margin-right: 40px;
}

@media (max-width: 767px) {
  .edufit-content-box.style-two .content-button .theme-btn {
    margin-bottom: 15px;
  }
}

.edufit-content-box.style-three {
  padding-left: 60px;
}

@media screen and (max-width: 1199px) {
  .edufit-content-box.style-three {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .edufit-content-box.style-three {
    padding-left: 0;
  }
}

.edufit-content-box.style-three .ef-iconic-box.style-two {
  max-width: 570px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

/* Author Box */
.author-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.author-box.style-one .author-thumb {
  width: 55px;
  height: 55px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 15px;
}

.author-box.style-one .author-info {
  margin-top: 3px;
}

.author-box.style-one .author-info h5 {
  margin-bottom: 5px;
}

.author-box.style-one .author-info span.position {
  font-size: 16px;
}

.instructor-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
}

.instructor-box .thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 55px;
  height: 55px;
  margin-right: 15px;
}

.instructor-box .thumbnail img {
  width: 100%;
  border-radius: 50%;
}

/* Edufit Iconic Box */
.ef-iconic-box.style-one {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--white-color);
  padding: 20px;
  border-radius: 15px;
  -webkit-box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
  box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
  min-width: 260px;
}

.ef-iconic-box.style-one .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  /* background-color: #F9F4E5ff; */
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 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;
  margin-right: 10px;
  color: var(--primary-black-color);
}

.ef-iconic-box.style-one .content h5 {
  margin-bottom: 3px;
}

.ef-iconic-box.style-one .content p {
  font-size: 16px;
}

.ef-iconic-box.style-two {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: start;
}

.ef-iconic-box.style-two .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  /* background-color:  #F9F4E5ff; */
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 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;
  margin-right: 20px;
  color: var(--primary-black-color);
}

.ef-iconic-box.style-two .content h5 {
  margin-bottom: 3px;
}

.ef-iconic-box.style-two .content p {
  font-size: 16px;
}

.ef-iconic-box.style-three {
  position: relative;
  z-index: 1;
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 30px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  overflow: hidden;
}

.ef-iconic-box.style-three:hover {
  /* background-color: var(--primary-color); */
  box-shadow: 1px 2px 1px 1px rgba(191, 190, 190, 0.3);
}

.ef-iconic-box.style-three:hover .shape img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 1;
}

.ef-iconic-box.style-three:hover .icon {
  /* background-color: rgba(255, 255, 255, 0.1); */
  /* color: var(--white-color); */
  background-color: rgba(98, 85, 250, 0.1);
  color: black;
}

.ef-iconic-box.style-three:hover .content h5 {
  /* color: var(--white-color); */
  color: #6255fa;
}

.ef-iconic-box.style-three:hover .content p {
  /* color: rgba(255, 255, 255, 0.8); */
  color: #6255fa;
}

.ef-iconic-box.style-three .shape {
  position: absolute;
  z-index: -1;
}

.ef-iconic-box.style-three .shape img {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 0.3;
  -webkit-transition: all 0.45s;
  transition: all 0.45s;
}

.ef-iconic-box.style-three .shape.line_one {
  top: 0;
  right: 0;
}

.ef-iconic-box.style-three .shape.line_two {
  top: 0;
  right: 0;
}

.ef-iconic-box.style-three .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(98, 85, 250, 0.1);
  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;
  color: var(--primary-color);
  font-size: 30px;
  margin-bottom: 20px;
}

.ef-iconic-box.style-three .icon i {
  line-height: 0.8;
  margin-top: 10px;
}

.ef-iconic-box.style-three .content h5 {
  margin-bottom: 18px;
}

.ef-iconic-box.style-three .content p {
  font-size: 16px;
  line-height: 27px;
}

.ef-iconic-box.style-four .icon {
  line-height: 1;
  margin-bottom: 5px;
  font-size: 50px;
  color: var(--secondary-color);
}

.ef-iconic-box.style-four .content h4 {
  margin-bottom: 15px;
}

.ef-iconic-box.style-five {
  position: relative;
  padding: 50px 35px 45px;
  border: 1px solid var(--border-color);
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-iconic-box.style-five {
    padding: 50px 30px 45px;
  }
}

.ef-iconic-box.style-five .step {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  line-height: 10px;
  border-radius: 0px 5px 5px 0px;
}

.ef-iconic-box.style-five .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  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;
  background-color: #f3f6ff;
  color: var(--primary-color);
  font-size: 50px;
  margin-bottom: 15px;
}

.ef-iconic-box.style-five .content h4 {
  margin-bottom: 10px;
}

.ef-iconic-box.style-five .content p {
  font-size: 16px;
  line-height: 28px;
}

/* Edufit Iconic Info Box */
.ef-iconic-info-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ef-iconic-info-box.style-one .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  margin-right: 20px;
  font-size: 55px;
  color: var(--heading-color);
}

@media (max-width: 575px) {
  .ef-iconic-info-box.style-one .icon {
    margin-bottom: 10px;
  }
}

.ef-iconic-info-box.style-one .content p {
  font: 600 20px var(--heading-font);
  color: var(--heading-color);
  line-height: 30px;
}

.ef-iconic-info-box.style-one .content p:hover a {
  color: var(--primary-color);
}

.ef-iconic-info-box.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ef-iconic-info-box.style-two .icon-box {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  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-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 30px;
}

.ef-iconic-info-box.style-two .icon-box .icon {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  /* background-color: var(--primary-color); */
  color: #6255fa;
  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-size: 30px;
}

.ef-iconic-info-box.style-two .content h4 {
  font-size: 20px;
}

.ef-iconic-info-box.style-two .content p {
  font-size: 16px;
  line-height: 22px;
}

.ef-iconic-info-box.style-two .content p:hover a {
  color: var(--primary-color);
}

/* Edufit Category Item */
.ef-category-item.style-one {
  /* padding: 30px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 43px 0px 43px;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  border-radius: 10px;
  height: 100%;
}

.ip-exam-sec {
  border-radius: 8px;
  border: 3px solid #f8f9fa;
}

.ef-category-item.style-one .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  /* background-color: var(--white-color); */
  font-size: 30px;
  width: 60px;
  height: 60px;
  border-radius: 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;
  margin-right: 15px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 30px;
}

.ef-category-item.style-one .content {
  line-height: 0;
}

.ef-category-item.style-one .content h5 {
  /* margin-bottom: 0px; */
  margin-top: 5px;
}

.ef-category-item.style-one .content p {
  font-size: 16px;
}

/* .ef-category-item.style-one.bg_one {
  background-color: #EEEDFF;
} */
.ef-category-item.style-one.bg_one .icon {
  color: #20315f;
}

/* .ef-category-item.style-one.bg_two {
  background-color: #E9F3F1;
} */
.ef-category-item.style-one.bg_two .icon {
  color: #1f1e20;
}

/* .ef-category-item.style-one.bg_three {
  background-color: #FFF2EE;
} */
.ef-category-item.style-one.bg_three .icon {
  color: #613ba7;
}

/* .ef-category-item.style-one.bg_four {
  background-color: #EAFAFF;
} */
.ef-category-item.style-one.bg_four .icon {
  color: #04b1e8;
}

/* .ef-category-item.style-one.bg_five {
  background-color: #FFFEEC;
} */
.ef-category-item.style-one.bg_five .icon {
  color: #b7ad00;
}

/* .ef-category-item.style-one.bg_six {
  background-color: #FFF0FF;
} */
.ef-category-item.style-one.bg_six .icon {
  color: #d300d3;
}

/* .ef-category-item.style-one.bg_seven {
  background-color: #EBFFDF;
} */
.ef-category-item.style-one.bg_seven .icon {
  color: #42b000;
}

/* .ef-category-item.style-one.bg_eight {
  background-color: #EEF3FF;
} */
.ef-category-item.style-one.bg_eight .icon {
  color: #0040db;
}

.ef-category-item.style-two {
  padding: 20px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.ef-category-item.style-two:hover {
  background-color: var(--primary-color);
}

.ef-category-item.style-two:hover .content h5 {
  color: var(--white-color);
}

.ef-category-item.style-two:hover .content span {
  color: var(--white-color);
}

.ef-category-item.style-two .icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

.ef-category-item.style-two .icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.ef-category-item.style-two .content {
  line-height: 1;
}

.ef-category-item.style-two .content h5 {
  margin-bottom: 13px;
}

.ef-category-item.style-two .content p {
  font-size: 16px;
}

/* Edufit Course Item */
.ef-course-grid-item.style-one .course-thumbnail img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.ef-course-grid-item.style-one .course-info {
  padding: 30px;
  border: 1px solid #efeeff;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.ef-course-grid-item.style-one .course-info .course-categories-wrap {
  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;
}

.ef-course-grid-item.style-one .course-info .course-categories-wrap .categories-button {
  margin-bottom: 10px;
}

.ef-course-grid-item.style-one .course-info .course-categories-wrap .categories-button a {
  padding: 8px 13px;
  background-color: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
  line-height: 19px;
}

.ef-course-grid-item.style-one .course-info .course-categories-wrap .course-price {
  margin-bottom: 15px;
}

.ef-course-grid-item.style-one .course-info .course-categories-wrap .course-price span.price {
  color: var(--primary-color);
  font: 700 20px var(--heading-font);
}

.ef-course-grid-item.style-one .course-info h3.title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.ef-course-grid-item.style-one .course-info h3.title:hover {
  color: var(--primary-color);
}

.ef-course-grid-item.style-one .course-info .course-meta {
  border-bottom: 1px solid #efeeff;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.ef-course-grid-item.style-one .course-info .course-meta span {
  margin-bottom: 10px;
}

.ef-course-grid-item.style-one .course-info .course-meta span:not(:last-child) {
  margin-right: 25px;
}

@media screen and (max-width: 991px) {
  .ef-course-grid-item.style-one .course-info .course-meta span:not(:last-child) {
    margin-right: 10px;
  }
}

.ef-course-grid-item.style-one .course-info .course-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.ef-course-grid-item.style-one .course-info .course-footer {
  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;
}

.ef-course-grid-item.style-two {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
}

.ef-course-grid-item.style-two .course-thumbnail {
  position: relative;
  overflow: hidden;
}

.ef-course-grid-item.style-two .course-thumbnail img {
  width: 100%;
}

.ef-course-grid-item.style-two .course-thumbnail .category {
  position: absolute;
  top: 30px;
  left: 30px;
}

.ef-course-grid-item.style-two .course-thumbnail .category a {
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 30px;
  line-height: 15px;
  font-size: 16px;
}

.ef-course-grid-item.style-two .course-info {
  padding-top: 25px;
}

.ef-course-grid-item.style-two .course-info h3.title {
  font-size: 20px;
  line-height: 30px;
}

.ef-course-grid-item.style-two .course-info h3.title:hover {
  color: var(--primary-color);
}

.ef-course-grid-item.style-two .course-info .course-meta span {
  margin-bottom: 10px;
}

.ef-course-grid-item.style-two .course-info .course-meta span:not(:last-child) {
  margin-right: 25px;
}

@media screen and (max-width: 991px) {
  .ef-course-grid-item.style-two .course-info .course-meta span:not(:last-child) {
    margin-right: 10px;
  }
}

.ef-course-grid-item.style-two .course-info .course-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.ef-course-grid-item.style-two .course-info .course-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  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;
}

.ef-course-grid-item.style-two .course-info .course-footer .instructor-box .info span {
  font-size: 16px;
}

.ef-course-grid-item.style-two .course-info .course-footer .course-price span.price {
  color: var(--primary-color);
  font: 700 20px var(--heading-font);
}

.ef-course-grid-item.style-three .course-thumbnail {
  position: relative;
  z-index: 1;
}

.ef-course-grid-item.style-three .course-thumbnail img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}

.ef-course-grid-item.style-three .course-thumbnail .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
}

.ef-course-grid-item.style-three .course-thumbnail .share-button .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  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;
}

.ef-course-grid-item.style-three .course-info {
  padding: 20px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  border-top: none;
  border-radius: 0 0 20px 20px;
}

.ef-course-grid-item.style-three .course-info .course-categories-wrap {
  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;
}

.ef-course-grid-item.style-three .course-info .course-categories-wrap .categories-button {
  margin-bottom: 10px;
}

.ef-course-grid-item.style-three .course-info .course-categories-wrap .categories-button a {
  padding: 7px 15px;
  border-radius: 30px;
  line-height: 21px;
  background-color: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
}

.ef-course-grid-item.style-three .course-info .course-categories-wrap .course-rating {
  margin-bottom: 10px;
}

.ef-course-grid-item.style-three .course-info .course-categories-wrap .course-rating span i {
  color: #ff8601;
  margin-right: 8px;
}

.ef-course-grid-item.style-three .course-info h3.title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ef-course-grid-item.style-three .course-info h3.title:hover {
  color: var(--primary-color);
}

.ef-course-grid-item.style-three .course-info .course-meta span {
  margin-bottom: 10px;
}

.ef-course-grid-item.style-three .course-info .course-meta span:not(:last-child) {
  margin-right: 10px;
}

.ef-course-grid-item.style-three .course-info .course-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}

.ef-course-grid-item.style-three .course-info .course-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 15px;
}

.ef-course-grid-item.style-three .course-info .course-footer .instructor-box span i {
  color: var(--primary-color);
  margin-right: 7px;
}

.ef-course-grid-item.style-three .course-info .course-footer .course-price span.price {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 500;
}

.ef-course-list-item.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .ef-course-list-item.style-one {
    -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;
  }
}

.ef-course-list-item.style-one .course-thumbnail {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 200px;
}

.ef-course-list-item.style-one .course-thumbnail img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}

@media (max-width: 767px) {
  .ef-course-list-item.style-one .course-thumbnail {
    width: 100%;
  }

  .ef-course-list-item.style-one .course-thumbnail img {
    border-radius: 10px 10px 0 0;
  }
}

.ef-course-list-item.style-one .course-thumbnail .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
}

.ef-course-list-item.style-one .course-thumbnail .share-button .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  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;
}

.ef-course-list-item.style-one .course-info {
  padding: 30px 20px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
  font-size: 16px;
  width: 100%;
  border-radius: 0 10px 10px 0;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ef-course-list-item.style-one .course-info {
    border-radius: 0 0 10px 10px;
  }
}

.ef-course-list-item.style-one .course-info .course-categories-wrap {
  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;
}

.ef-course-list-item.style-one .course-info .course-categories-wrap .categories-button {
  margin-bottom: 10px;
}

.ef-course-list-item.style-one .course-info .course-categories-wrap .categories-button a {
  padding: 7px 15px;
  border-radius: 30px;
  line-height: 21px;
  background-color: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
}

.ef-course-list-item.style-one .course-info .course-categories-wrap .course-rating {
  margin-bottom: 10px;
}

.ef-course-list-item.style-one .course-info .course-categories-wrap .course-rating span i {
  color: #ff8601;
  margin-right: 8px;
}

.ef-course-list-item.style-one .course-info h3.title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}

.ef-course-list-item.style-one .course-info h3.title:hover {
  color: var(--primary-color);
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-course-list-item.style-one .course-info h3.title {
    font-size: 16px;
    line-height: 26px;
  }
}

.ef-course-list-item.style-one .course-info .course-meta span {
  margin-bottom: 10px;
}

.ef-course-list-item.style-one .course-info .course-meta span:not(:last-child) {
  margin-right: 10px;
}

.ef-course-list-item.style-one .course-info .course-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}

.ef-course-list-item.style-one .course-info .course-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ef-course-list-item.style-one .course-info .course-footer .instructor-box span i {
  color: var(--primary-color);
  margin-right: 7px;
}

.ef-course-list-item.style-one .course-info .course-footer .course-price span.price {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 500;
}

/* Event Item */
.ef-event-item.style-one {
  background-color: #1e304d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 30px;
  border-radius: 10px;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-event-item.style-one {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .ef-event-item.style-one {
    padding: 20px 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.ef-event-item.style-one .event-thumbnail {
  width: 160px;
  height: 160px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .ef-event-item.style-one .event-thumbnail {
    margin-bottom: 20px;
  }
}

.ef-event-item.style-one .event-thumbnail img {
  border-radius: 10px;
}

@media (max-width: 767px) {
  .ef-event-item.style-one .event-info .event-meta {
    margin-bottom: 15px;
  }
}

.ef-event-item.style-one .event-info .event-meta span {
  color: var(--white-color);
}

.ef-event-item.style-one .event-info .event-meta span:not(:last-child) {
  margin-right: 25px;
}

.ef-event-item.style-one .event-info .event-meta span i {
  color: var(--primary-color);
  margin-right: 5px;
}

.ef-event-item.style-one .event-info h4 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 10px;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-event-item.style-one .event-info h4 {
    font-size: 17px;
    line-height: 27px;
  }
}

@media (max-width: 767px) {
  .ef-event-item.style-one .event-info h4 {
    margin-bottom: 20px;
  }
}

.ef-event-item.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 20px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
  padding: 10px;
}

@media screen and (max-width: 991px) {
  .ef-event-item.style-two {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
  }
}

.ef-event-item.style-two .event-thumbnail {
  position: relative;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 200px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-thumbnail {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.ef-event-item.style-two .event-thumbnail img {
  width: 100%;
  border-radius: 7px;
}

.ef-event-item.style-two .event-thumbnail .share-button {
  position: absolute;
  top: 20px;
  right: 20px;
}

.ef-event-item.style-two .event-thumbnail .share-button .icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 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;
  background-color: var(--white-color);
  color: var(--primary-color);
}

.ef-event-item.style-two .event-info {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}

.ef-event-item.style-two .event-info .event-meta span {
  font-size: 16px;
}

.ef-event-item.style-two .event-info .event-meta span:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-info .event-meta span:not(:last-child) {
    margin-right: 7px;
  }
}

.ef-event-item.style-two .event-info .event-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}

.ef-event-item.style-two .event-info h4.title {
  line-height: 30px;
}

.ef-event-item.style-two .event-info h4.title:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .ef-event-item.style-two .event-info h4.title {
    font-size: 18px;
  }
}

.ef-event-item.style-two .event-info p {
  font-size: 16px;
}

.ef-event-item.style-two .edufit-button {
  text-align: right;
  width: 20%;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .ef-event-item.style-two .edufit-button {
    padding-right: 0;
    width: auto;
    text-align: left;
  }
}

/*  Pricing Item  */
.ef-pricing-item.style-one {
  padding: 40px 40px 45px;
  border-radius: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  background-color: rgba(26, 26, 26, 0.01);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ef-pricing-item.style-one:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.ef-pricing-item.style-one:hover .pricing-top h4 {
  color: var(--white-color);
}

.ef-pricing-item.style-one:hover .pricing-top h2.price {
  color: var(--white-color);
}

.ef-pricing-item.style-one:hover .pricing-body .check-list li {
  color: var(--white-color);
}

.ef-pricing-item.style-one:hover .pricing-body .check-list li i {
  color: var(--white-color);
}

.ef-pricing-item.style-one:hover .pricing-body .check-list li.uncheck {
  color: rgba(255, 255, 255, 0.75);
}

.ef-pricing-item.style-one:hover .pricing-footer .theme-btn.style-one {
  background-color: var(--white-color);
  color: var(--heading-color);
}

.ef-pricing-item.style-one .pricing-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.ef-pricing-item.style-one .pricing-top h2.price span.duration {
  font-size: 16px;
  font-family: var(--body-font);
}

.ef-pricing-item.style-one .pricing-body {
  margin-bottom: 45px;
}

.ef-pricing-item.style-one .pricing-body p {
  margin-bottom: 25px;
}

.ef-pricing-item.style-one .pricing-body ul.check-list li {
  font-weight: 500;
  color: var(--heading-color);
}

.ef-pricing-item.style-one .pricing-body ul.check-list li:not(:last-child) {
  margin-bottom: 15px;
}

.ef-pricing-item.style-one .pricing-body ul.check-list li i {
  color: var(--heading-color);
}

.ef-pricing-item.style-one .pricing-body ul.check-list li.uncheck {
  color: rgba(33, 37, 41, 0.5);
}

.ef-pricing-item.style-one .pricing-footer {
  text-align: center;
}

.ef-pricing-item.style-one .pricing-footer .theme-btn {
  width: 100%;
  margin-bottom: 15px;
}

.ef-pricing-item.style-one .pricing-footer .theme-btn.style-one {
  background-color: #212529;
}

/*  Accordion Item  */
.ef-accordion-item {
  border-radius: 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  /* background-color: rgba(26, 26, 26, 0.01); */
}

.ef-accordion-item .accordion-title {
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 10px 10px 0 0;
  position: relative;
}

@media (max-width: 767px) {
  .ef-accordion-item .accordion-title {
    font-size: 14px;
    line-height: 27px;
  }
}

.ef-accordion-item .accordion-content {
  /* padding: 15px 20px 15px; */
  padding: 8px 13px 8px;
  display: flex;
  position: relative;
}

.ef-accordion-item .accordion-content span {
  font-size: 16px;
  margin: 5px;
}

.ip-btn-next {
  margin-left: 600px;
}

.ip-btn-submit {
  margin-left: 600px;
}

/* Style for scoreboard cells */
table {
  width: 60%;
  border-collapse: separate;
  border-radius: 10px;
  margin: 20px auto;
}

th,
td {
  padding: 10px;
  text-align: center;
}

/* td {
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ddd;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
} */

/* Default (non-attempted) color (Red) */
.non-attempted {
  background-color: rgb(255, 255, 255);
  color: #3C4852;
  border-radius: 50px;
  border: 1px solid #3C4852;
}

/* Color when a question is attempted (Green) */
.attempted {
  background-color: green;
  color: white;
  border-radius: 50px;
}

.unattempted {
  background-color: red;
  color: white;
  border-radius: 50px;
}


.ip-represent-sec {
  display: block;
  /* gap:30px;
 justify-content: center; */
}

.answered {
  color: green;
  font-size: 20px;
  margin-bottom: 7px;
}

.mrk-review-bg {
  background-color: #ffa220;
  color: white;
  border-radius: 50px;
}

.mrk-review {
  color: #ffa220;

}

.ans-review {
  color: #e436ff;
}

.ans-review-bg {
  background-color: #e436ff;
  color: rgb(255, 255, 255);
  border-radius: 50px;
}

.viewed {
  color: red;
  font-size: 20px;
  margin-bottom: 7px;
}

.unanswerable {
  color: rgb(255, 255, 255);
  font-size: 20px;
  margin-bottom: 7px;
}

.ip-que-status {
  font-size: 18px;
  color: var(--text-color);
}

@media screen and (max-width: 667px) {
  .ip-btn-next {
    margin-left: 185px;
  }
}

@media screen and (max-width: 667px) {
  table {
    width: 100%;
  }
}

@media screen and (max-width: 667px) {
  .ip-btn-submit {
    margin-left: 150px;
  }
}

/*  Edufit Instructor Item  */
.ef-instructor-item.style-one {
  border-radius: 10px;
  position: relative;
  width: 95%;
  margin: auto;
  text-align: center;
  background-color: #33a1eb3b;
  min-height: 220px;
  padding: 8px;
}

.ef-instructor-item>img {
  width: auto;
  height: 140px;
  max-width: 100%;
  object-fit: contain;
}

.ef-instructor-item>.title {
  font-size: 0.9em;
  color: #0f0f0f;
}

.ef-instructor-item.style-one:hover .instructor-thumbnail .hover-item {
  top: 10px;
  visibility: visible;
  opacity: 1;
}

.ef-instructor-item.style-one .instructor-thumbnail {
  position: relative;
  z-index: 1;
  height: 250px;
}

.ef-instructor-item.style-one .instructor-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 0;
  border-radius: 10px;
}

.ef-instructor-item.style-one .instructor-thumbnail img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}

.ef-instructor-item.style-one .instructor-thumbnail .hover-item {
  position: absolute;
  top: -50%;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.ef-instructor-item.style-one .instructor-thumbnail .hover-item ul.social-link li:not(:last-child) {
  margin-bottom: 10px;
}

.ef-instructor-item.style-one .instructor-thumbnail .hover-item ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 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;
  background-color: var(--white-color);
  color: var(--heading-color);
}

.ef-instructor-item.style-one .instructor-info {
  padding-top: 20px;
  position: absolute;
  bottom: 13px;
  left: 10px;
  z-index: 1;
  text-align: start;
}

.ef-instructor-item.style-one .instructor-info h2 a {
  color: #fff !important;
}

.ef-instructor-item.style-two:hover .instructor-thumbnail .hover-item {
  top: 10px;
  visibility: visible;
  opacity: 1;
}

.instructor-info .title {
  font-size: 1rem;
  text-align: center;
}

.ef-instructor-item.style-two .instructor-thumbnail {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.ef-instructor-item.style-two .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.ef-instructor-item.style-two .instructor-thumbnail .hover-item {
  position: absolute;
  top: -50%;
  right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.ef-instructor-item.style-two .instructor-thumbnail .hover-item ul.social-link li:not(:last-child) {
  margin-bottom: 10px;
}

.ef-instructor-item.style-two .instructor-thumbnail .hover-item ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 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;
  background-color: var(--white-color);
  color: var(--heading-color);
}

.ef-instructor-item.style-two .instructor-thumbnail .instructor-info {
  bottom: -35%;
}

.ef-instructor-item.style-three:hover .instructor-thumbnail ul.social-link li:nth-child(2) {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.ef-instructor-item.style-three:hover .instructor-thumbnail ul.social-link li:nth-child(3) {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.ef-instructor-item.style-three:hover .instructor-thumbnail ul.social-link li:nth-child(4) {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
  bottom: -45%;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -50%;
  }
}

@media screen and (max-width: 1199px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -60%;
  }
}

@media screen and (max-width: 991px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -55%;
  }
}

@media (max-width: 767px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -35%;
  }
}

@media (max-width: 575px) {
  .ef-instructor-item.style-three:hover .instructor-thumbnail .instructor-info {
    bottom: -45%;
  }
}

.ef-instructor-item.style-three .instructor-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.ef-instructor-item.style-three .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.ef-instructor-item.style-three .instructor-thumbnail .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link {
  position: absolute;
  top: 20px;
  right: 20px;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li {
  position: relative;
  z-index: 2;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:not(:last-child) {
  margin-bottom: 10px;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--primary-color);
  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-size: 16px;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:nth-child(2) {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
  visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:nth-child(3) {
  -webkit-transform: translateY(-100px);
  transform: translateY(-100px);
  visibility: hidden;
  -webkit-transition: all 0.33s;
  transition: all 0.33s;
  z-index: 1;
}

.ef-instructor-item.style-three .instructor-thumbnail ul.social-link li:nth-child(4) {
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
  visibility: hidden;
  -webkit-transition: all 0.37s;
  transition: all 0.37s;
  z-index: 1;
}

.ef-instructor-item.style-three .instructor-thumbnail .instructor-info {
  position: absolute;
  bottom: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: var(--white-color);
  padding: 30px;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.ef-instructor-item.style-four:hover .instructor-thumbnail .hover-content {
  visibility: visible;
  opacity: 1;
}

.ef-instructor-item.style-four:hover .instructor-info {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.ef-instructor-item.style-four .instructor-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.ef-instructor-item.style-four .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.ef-instructor-item.style-four .instructor-thumbnail .hover-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.ef-instructor-item.style-four .instructor-info {
  background-color: var(--white-color);
  width: 80%;
  margin: 0 auto 40px;
  padding: 15px 15px 20px;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 10px;
}

.ef-instructor-item.style-four .instructor-info span.position {
  margin-bottom: 10px;
}

.ef-instructor-item.style-four .instructor-info ul.social-link li {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
}

.ef-instructor-item.style-four .instructor-info ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  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-size: 16px;
}

.ef-instructor-item.style-four .instructor-info ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

/*  Testimonial Item  */
.ef-testimonial-item.style-one {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  background-color: var(--white-color);
}

.ef-testimonial-item.style-one .testimonial-content .author-box-rating {
  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: 25px;
}

@media (max-width: 767px) {
  .ef-testimonial-item.style-one .testimonial-content .author-box-rating {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.ef-testimonial-item.style-one .testimonial-content .author-box-rating .rating {
  margin-top: 20px;
}

.ef-testimonial-item.style-two {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.ef-testimonial-item.style-two .testimonial-content .testimonial-img {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  padding: 20px 15px;
}

.ef-testimonial-item.style-two .testimonial-content .testimonial-img:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear,
      left top,
      left bottom,
      color-stop(35.1%, rgba(0, 0, 0, 0)),
      to(#000));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35.1%, #000 100%);
  z-index: -1;
}

.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button .video-popup {
  width: 60px;
  height: 60px;
}

.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button .video-popup:before,
.ef-testimonial-item.style-two .testimonial-content .testimonial-img .play-button .video-popup:after {
  display: none;
}

.ef-testimonial-item.style-two .testimonial-content .testimonial-img .content h4 {
  color: var(--white-color);
}

/*  Edufit Blog Post Item  */
.ef-blog-grid-item.style-one {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.ef-blog-grid-item.style-one .post-thumbnail {
  margin-bottom: 20px;
}

.ef-blog-grid-item.style-one .post-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.ef-blog-grid-item.style-one .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 5px;
}

.ef-blog-grid-item.style-one .post-content .post-meta span:not(:last-child) {
  margin-right: 25px;
}

.ef-blog-grid-item.style-one .post-content .post-meta span a {
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  line-height: 11px;
  background: rgba(98, 85, 250, 0.1);
  color: var(--primary-color);
}

.ef-blog-grid-item.style-one .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--primary-color);
}

.ef-blog-grid-item.style-one .post-content h4.title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 35px;
}

.ef-blog-grid-item.style-one .post-content h4.title:hover {
  color: var(--primary-color);
}

.ef-blog-grid-item.style-one .post-content .author-box-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ef-blog-grid-item.style-one .post-content .icon-btn.style-one:hover {
  background-color: var(--heading-color);
  color: var(--white-color);
}

.ef-blog-grid-item.style-one .post-content .icon-btn.style-one:hover i {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.ef-blog-grid-item.style-one .post-content .author-box .author-info {
  line-height: 0;
  margin-top: 0;
}

.ef-blog-grid-item.style-one .post-content .author-box .author-info span {
  font-size: 14px;
  line-height: 12px;
  margin-bottom: 10px;
}

.ef-blog-grid-item.style-one .post-content .author-box .author-info h5 {
  margin-bottom: 0;
}

.ef-blog-grid-item.style-two .post-thumbnail {
  position: relative;
  overflow: hidden;
}

.ef-blog-grid-item.style-two .post-thumbnail img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.ef-blog-grid-item.style-two .post-thumbnail .category {
  position: absolute;
  top: 30px;
  left: 30px;
}

.ef-blog-grid-item.style-two .post-thumbnail .category a {
  padding: 5px 10px;
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 30px;
  line-height: 24px;
}

.ef-blog-grid-item.style-two .post-content {
  padding: 30px;
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(33, 37, 41, 0.1);
  border-top: none;
  background: rgba(26, 26, 26, 0.01);
}

@media screen and (max-width: 1199px) {
  .ef-blog-grid-item.style-two .post-content {
    padding: 30px 15px;
  }
}

.ef-blog-grid-item.style-two .post-content h4.title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 15px;
}

.ef-blog-grid-item.style-two .post-content h4.title:hover {
  color: var(--primary-color);
}

.ef-blog-grid-item.style-two .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 10px;
}

.ef-blog-grid-item.style-two .post-content .post-meta span:not(:last-child) {
  margin-right: 20px;
}

.ef-blog-grid-item.style-two .post-content .post-meta span i {
  margin-right: 10px;
  color: var(--primary-color);
}

.ef-blog-grid-item.style-three .post-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.ef-blog-grid-item.style-three .post-content {
  position: relative;
  padding: 25px 30px;
  border-radius: 10px;
  background-color: var(--white-color);
  -webkit-box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.1);
  margin-left: 30px;
  margin-right: 30px;
  margin-top: -90px;
}

@media screen and (max-width: 1199px) {
  .ef-blog-grid-item.style-three .post-content {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.ef-blog-grid-item.style-three .post-content .post-categories {
  position: absolute;
  top: -18px;
  left: 30px;
}

.ef-blog-grid-item.style-three .post-content .post-categories a {
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 11px;
  background-color: var(--primary-color);
  color: var(--white-color);
  margin-bottom: 15px;
  border-radius: 20px;
}

.ef-blog-grid-item.style-three .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .ef-blog-grid-item.style-three .post-content .post-meta span {
    font-size: 14px;
  }
}

.ef-blog-grid-item.style-three .post-content .post-meta span:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .ef-blog-grid-item.style-three .post-content .post-meta span:not(:last-child) {
    margin-right: 5px;
  }
}

.ef-blog-grid-item.style-three .post-content .post-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}

.ef-blog-grid-item.style-three .post-content h4.title {
  margin-bottom: 10px;
  line-height: 30px;
}

.ef-blog-grid-item.style-three .post-content h4.title:hover {
  color: var(--primary-color);
}

@media screen and (max-width: 991px) {
  .ef-blog-grid-item.style-three .post-content h4.title {
    font-size: 18px;
  }
}

/*  Blog List Item  */
.ef-blog-list-item.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  border-radius: 10px;
  /* Border radius for the container */
  background: var(--white-color);
  /* -webkit-box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 2px 24px 0px rgba(0, 0, 0, 0.05); */
  padding: 30px;
  /* min-height: 250px; */

  /* Transparent border and border-image */
  /* border: 3px solid #e5dede;  */
  border-radius: 10px;
  background-clip: padding-box;
  box-sizing: border-box;
  /* border:3px solid transparent;
  border-image: linear-gradient(to right, #38aaf8, #4d5a7d) 1; */
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .ef-blog-list-item.style-one {
    -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;
    padding: 22px !important;
  }
}

.ef-blog-list-item.style-one .post-thumbnail {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

@media (max-width: 767px) {
  .ef-blog-list-item.style-one .post-thumbnail {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

/* .ef-blog-list-item.style-one .post-thumbnail img {
  width: 100%;
  border-radius: 10px;
} */
/* .ef-blog-list-item.style-one .post-content {
  width: 100%;
} */

.ef-blog-list-item.style-one .post-content p {
  color: #38aaf8;
  text-align: center;
  font-size: 14px;
}

.ef-blog-list-item.style-one .post-thumbnail span {
  height: 30px;
  width: 30px;
  background-color: #66ec42;
  border-radius: 50%;
  position: absolute;
  font-size: 18px;
  top: 0rem;
  right: 0rem;
  color: white;
}

@media (max-width: 767px) {
  .ef-blog-list-item.style-one .post-content {
    width: 100%;
  }
}

.ef-blog-list-item.style-one .post-content .post-categories a {
  padding: 12px 20px;
  font-size: 14px;
  letter-spacing: 0.14px;
  line-height: 11px;
  background-color: var(--primary-color);
  color: var(--white-color);
  margin-bottom: 15px;
  border-radius: 20px;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one .post-content .post-categories a {
    margin-bottom: 5px;
  }
}

.ef-blog-list-item.style-one .post-content .post-meta span {
  font-size: 16px;
  margin-bottom: 7px;
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one .post-content .post-meta span {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 991px) {
  .ef-blog-list-item.style-one .post-content .post-meta span {
    font-size: 14px;
  }
}

.ef-blog-list-item.style-one .post-content .post-meta span:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .ef-blog-list-item.style-one .post-content .post-meta span:not(:last-child) {
    margin-right: 5px;
  }
}

.ef-blog-list-item.style-one .post-content .post-meta span i {
  margin-right: 7px;
  color: var(--primary-color);
}

.ef-blog-list-item.style-one .post-content h4.title {
  margin-bottom: 10px;
  line-height: 30px;
}

.ef-blog-list-item.style-one .post-content h4.title:hover {
  color: var(--primary-color);
}

@media (min-width: 1200px) and (max-width: 1450px) {
  .ef-blog-list-item.style-one .post-content h4.title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 991px) {
  .ef-blog-list-item.style-one .post-content h4.title {
    font-size: 18px;
  }
}

/*---- 
====================
02. Components CSS
    # Footer CSS
====================

----*/
.footer-default {
  position: relative;
  background-color: #005792;
  position: relative;
  z-index: 1;
}

.footer-default .shape {
  position: absolute;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .footer-default .shape {
    display: none;
  }
}

.footer-default .shape span img {
  width: 60px;
  opacity: 0.5;
}

.footer-default .shape.shape-one {
  top: 10%;
  left: 3%;
}

.footer-default .shape.shape-two {
  top: 7%;
  right: 7%;
}

.footer-default .shape.shape-three {
  bottom: 25%;
  left: 6%;
}

.footer-default .shape.shape-four {
  bottom: 25%;
  right: 3%;
}

.footer-default .shape.shape-five {
  bottom: 25%;
  right: 50%;
}

.footer-widget .footer-content h4.widget-title {
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--white-color);
}

.footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget .footer-content .widget-nav li:not(:last-child) {
  margin-bottom: 5px;
}

.footer-widget .footer-content .widget-nav li a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget .footer-content .widget-nav li a:hover {
  color: #ffc008;
}

.footer-about-widget {
  max-width: 370px;
}

.footer-about-widget .footer-content .footer-logo {
  margin-bottom: 9px;
}

.footer-about-widget .footer-content p {
  margin-bottom: 25px;
}

.footer-about-widget .footer-content .social-link li {
  display: inline-block;
}

.footer-about-widget .footer-content .social-link li:not(:last-child) {
  margin-right: 10px;
}

.footer-about-widget .footer-content .social-link li a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  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;
}

.footer-about-widget .footer-content .social-link li a:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.footer-contact-widget .footer-content .info-box span {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
}

.footer-contact-widget .footer-content .info-box h5 {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-widget .footer-content .info-box h5 a:hover {
  color: var(--primary-color);
}

.footer-newsletter-widget .footer-content p {
  margin-bottom: 25px;
}

.footer-newsletter-widget .footer-content .form-group {
  position: relative;
}

.footer-newsletter-widget .footer-content .form-group label {
  position: absolute;
  top: 13px;
  left: 15px;
  color: var(--primary-color);
}

.footer-newsletter-widget .footer-content .form-group .form_control {
  width: 100%;
  padding: 16px 30px 16px 40px;
  line-height: 20px;
  border-radius: 10px;
  border: 1.2px solid rgba(16, 16, 16, 0.1);
  font-size: 14px;
  margin-bottom: 15px;
  background-color: rgba(28, 28, 28, 0.85);
  color: var(--white-color);
}

.footer-newsletter-widget .footer-content .form-group .form_control::-webkit-input-placeholder {
  color: var(--white-color);
}

.footer-newsletter-widget .footer-content .form-group .form_control::-moz-placeholder {
  color: var(--white-color);
}

.footer-newsletter-widget .footer-content .form-group .form_control:-ms-input-placeholder {
  color: var(--white-color);
}

.footer-newsletter-widget .footer-content .form-group .form_control::-ms-input-placeholder {
  color: var(--white-color);
}

.footer-newsletter-widget .footer-content .form-group .form_control::placeholder {
  color: var(--white-color);
}

.footer-copyright {
  border-top: 1px solid rgba(33, 37, 41, 0.8);
  padding: 25px 0;
  background-color: #005792;
}

@media screen and (max-width: 991px) {
  .footer-copyright .copyright-text {
    margin-bottom: 15px;
    text-align: center;
  }
}

.footer-copyright .copyright-text p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-copyright .copyright-text p span {
  color: var(--primary-color);
}

/* new css by ishita  */
.ip-rank-img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
}

.ip-dfc-section-bg-color {
  background-color: rgb(157 198 200) !important;
}

/* new css for responsive  */
@media (max-width: 767px) {
  .ip-rank-img {
    width: 100%;
    /* Makes images fill their container */
  }

  .title {
    font-size: 14px;
    /* Adjust font size for mobile */
  }

  .post-content p {
    font-size: 12px;
    /* Adjust paragraph text size for mobile */
  }

  .id-padd-mobile-bre {
    padding: 30px 0px;
  }
}

@media (max-width: 991px) {
  .post-content {
    text-align: center;
  }
}

.ef-event-sec {
  background-color: #f8f9fa;
  padding: 30px 0;
}

.ip-dif-box {
  /* Center content box vertically and horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  /* Centers the box horizontally */
}

.ef-iconic-box {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.ef-iconic-box .icon {
  font-size: 30px;
  margin-right: 20px;
}

.ef-iconic-box .content h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.ef-iconic-box .content p {
  color: #666;
}

/* Ensure responsiveness on smaller screens */
@media (max-width: 991px) {
  .ip-dif-box {
    padding: 20px;
    margin-top: 30px;
  }

  .ef-iconic-box {
    margin-bottom: 30px;
  }
}

/* Right side: Content Box */
.ip-dif-box {
  flex: 1;
  margin-left: -50%;
  /* Used negative margin to overlap the content */
  padding-left: 20px;
  padding-right: 20px;
  margin-top: 28px;
  z-index: 2;
}

.ip-lng-wrapper {
  padding: 10px 0px;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  margin-top: 5px;
}

.ip-lng-icons {
  margin-right: 10px;
}

/*  Course  Page Css  */
.course-filter .show-text p {
  color: var(--heading-color);
  font-weight: 500;
}

.course-filter .filter-grid-list {
  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: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 575px) {
  .course-filter .filter-grid-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.course-filter .filter-grid-list a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  padding: 10px 20px;
  line-height: 20px;
  background-color: rgba(26, 26, 26, 0.01);
  border: 1px solid rgba(33, 37, 41, 0.1);
}

.course-filter .filter-grid-list a:not(:last-child) {
  margin-right: 15px;
}

.course-filter .filter-grid-list a i {
  margin-right: 7px;
  color: var(--primary-color);
  line-height: 0;
}

.course-filter .filter-grid-list a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.course-filter .filter-grid-list a:hover i {
  color: var(--white-color);
}

.edufit-tabs {
  margin-bottom: 40px;
}

.edufit-tabs .nav-link {
  border-radius: 0;
  border: none;
  margin-bottom: 0;
  margin-right: 30px;
  padding: 0;
  padding-bottom: 15px;
  color: var(--heading-color);
  font: 500 18px var(--heading-font);
}

.edufit-tabs .nav-link.active {
  color: var(--primary-color);
}

@media (max-width: 767px) {
  .edufit-tabs .nav-link {
    margin-right: 15px;
    font-size: 16px;
  }
}

ul.ratings li {
  display: inline-block;
}

.course-details-wrapper .course-thumbnail {
  margin-bottom: 35px;
}

.course-details-wrapper .course-thumbnail img {
  border-radius: 10px;
}

.course-details-wrapper .course-info h3.title {
  font-size: 24px;
  line-height: 60px;
  margin-bottom: 25px;
}

@media screen and (max-width: 1199px) {
  .course-details-wrapper .course-info h3.title {
    font-size: 24px;
    line-height: 35px;
  }
}

@media (max-width: 767px) {
  .course-details-wrapper .course-info h3.title {
    font-size: 20px;
    line-height: 30px;
  }
}

.course-details-wrapper .course-info .course-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.course-details-wrapper .course-info .course-meta .instructor-box {
  margin-bottom: 20px;
}

.course-details-wrapper .course-info .course-meta .ef-category-box {
  margin-bottom: 20px;
}

.course-details-wrapper .course-info .course-meta .ef-category-box h6 {
  margin-bottom: 10px;
}

.course-details-wrapper .course-info .course-meta .ef-rating-box {
  margin-bottom: 20px;
}

.course-details-wrapper .edufit-content-box h4 {
  margin-bottom: 20px;
}

.course-details-wrapper .edufit-content-box p {
  margin-bottom: 25px;
}

.course-details-wrapper .edufit-content-box ul {
  margin-bottom: 20px;
}

.course-details-wrapper .edufit-content-box ul.video-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.course-details-wrapper .edufit-content-box ul.video-list li:not(:last-child) {
  margin-bottom: 20px;
}

.course-details-wrapper .edufit-content-box .accordion-content {
  padding-top: 30px;
}

.course-details-wrapper .course-instructor-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .course-details-wrapper .course-instructor-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.course-details-wrapper .course-instructor-box .instructor-thumbnail {
  max-width: 270px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .course-details-wrapper .course-instructor-box .instructor-thumbnail {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 25px;
  }
}

.course-details-wrapper .course-instructor-box .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.course-details-wrapper .course-instructor-box .instructor-info h4 {
  margin-bottom: 15px;
}

.course-details-wrapper .course-instructor-box .instructor-info p {
  margin-bottom: 35px;
}

.course-details-wrapper .course-instructor-box .instructor-info ul.social-link li {
  display: inline-block;
}

.course-details-wrapper .course-instructor-box .instructor-info ul.social-link li a {
  width: 40px;
  height: 40px;
  border-radius: 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;
  border: 1px solid var(--border-color);
  font-size: 16px;
}

.course-details-wrapper .course-instructor-box .instructor-info ul.social-link li a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.course-details-wrapper .rating-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.course-details-wrapper .rating-box .author-avatar {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 60px;
  margin-right: 20px;
}

.course-details-wrapper .rating-box .author-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.course-details-wrapper .rating-box .author-content .author-name {
  font-weight: 700;
  color: var(--heading-color);
}

.course-details-wrapper .rating-box .author-content .author-name span {
  margin-left: 10px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
}

.course-details-wrapper .rating-box .author-content ul {
  margin-bottom: 10px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget {
  padding: 2px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview {
  position: relative;
  overflow: hidden;
  border-radius: 7px;
  margin-bottom: 15px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview img {
  border-radius: 7px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview .play-button .video-popup {
  width: 50px;
  height: 50px;
  font-size: 14px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview .play-button .video-popup:after,
.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview .play-button .video-popup:before {
  display: none;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-preview .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 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;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 7px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info h4 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info h4 span.price {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 7px 15px;
  line-height: 14px;
  border-radius: 10px;
  margin-right: 10px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info .course-button {
  margin-bottom: 15px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info .course-button .theme-btn {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info .course-button p {
  font-size: 16px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info h4.title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info ul li {
  font-size: 16px;
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info ul li:not(:last-child) {
  margin-bottom: 10px;
  /* padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color); */
}

.sidebar-widget-area .sidebar-widget.sidebar-course-info-widget .widget-content .course-info ul li span {
  float: right;
}

/* css for timer  */
.profile-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.inner-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: none;
  display: block;
  justify-content: center;
  align-items: center;
  border: 15px solid #1b9393;
  background-size: 210%;
  background-position: center;
  object-fit: cover;
  align-content: center;
  overflow: auto;
}

.inner-circle-mining {
  width: 200px;
  height: 200px;
  border-radius: 10%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("{{ asset('upload/mining.gif') }}");
  background-size: 210%;
  background-position: center;
  object-fit: cover;
  align-content: center;
}

.circle-content {
  text-align: center;
  width: 400px;
}

.thumbnail {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.thumbnail a {
  flex: 1 1 calc(50% - 10px);
}

@media (min-width: 577px) {
  .thumbnail a {
    flex: 1 1 auto;
  }
}

/* .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
} */

.card-item {
  flex: 1 1 calc(50% - 10px);
  /* Adjust to ensure two columns */
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.box {
  border-radius: 5px;
  color: #856404;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bot-gif {
  max-width: 20%;
  height: auto;
}

@media (max-width: 576px) {
  .card-item {
    flex: 1 1 100%;
    /* Stack vertically on mobile */
  }
}

.progress-bar-container {
  width: 80%;
  margin: 0 auto;
  height: 30px;
  border-radius: 10px;
  background-color: lightgray;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(to right, red, yellow, green);
  transition: width 0.2s ease, background 0.3s ease;
  width: 0%;
  /* Default to 0% width */
}

#progressText {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  margin-top: 5px;
}

.item-container {
  display: inline-block;
}

.flip-card {
  background-color: transparent;
  width: 80px;
  height: 50px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  transform-origin: top;
}

.flip-card-front,
.flip-card-back {
  /* position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center; */
}

.flip-card-front {
  color: var(--heading-color);
  font-size: 20px;
}

.flip-card-back {
  background-color: #f1ecf1;
  color: white;
  transform: rotateX(180deg);
}

/* .flip {
  transform: rotateX(180deg);
} */

/* Instructor Details */
.instructor-details-wrapper .instructor-item {
  /* border-radius: 10px; */
  /* border: 1px solid rgba(33, 37, 41, 0.1); */
  /* background-color: rgba(26, 26, 26, 0.01); 
  padding: 20px; */
  padding: 12px;
  text-align: center;
}

.ip-win-sec {
  border-right: 1px solid rgba(33, 37, 41, 0.1);
}

.instructor-details-wrapper .instructor-item .instructor-thumbnail {
  max-width: 260px;
  height: 250px;
  display: inline-block;
}

.instructor-details-wrapper .instructor-item .instructor-thumbnail img {
  width: 100%;
  border-radius: 10px;
}

.instructor-details-wrapper .instructor-item .instructor-info {
  text-align: center;
  padding-top: 10px;
}

.instructor-details-wrapper .instructor-item .instructor-info span.position {
  margin-bottom: 10px;
}

.instructor-details-wrapper .instructor-item .instructor-info h6 {
  margin-bottom: 15px;
  font-family: var(--body-font);
  color: var(--text-color);
  font-weight: 400;
}

.instructor-details-wrapper .instructor-item .instructor-info h6 span {
  font-weight: 600;
  color: var(--heading-color);
}

.instructor-details-wrapper .instructor-item .instructor-info ul.social-link {
  margin-bottom: 30px;
}

.instructor-details-wrapper .instructor-item .instructor-info ul.social-link li {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.instructor-details-wrapper .instructor-item .instructor-info ul.social-link li a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  font-size: 16px;
  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%;
}

.instructor-details-wrapper .instructor-info-wrapper {
  /* border: 1px solid var(--heading-color); */
  padding: 20px 30px 25px;
  border-radius: 10px;
  /* background-color: rgba(26, 26, 26, 0.01); */
  background-color: white;
}

/* .instructor-details-wrapper .instructor-info-wrapper .instructor-info{
  border-right:1px solid var(--heading-color);
} */
.instructor-details-wrapper .instructor-info-wrapper .instructor-info span.position {
  margin-bottom: 5px;
}

.instructor-details-wrapper.instructor-info .instructor-meta {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
}

.instructor-details-wrapper .instructor-info .instructor-meta span {
  margin: 5px;
}

.instructor-details-wrapper .instructor-info .instructor-meta span span {
  color: var(--heading-color);
  font-weight: 600;
}

.instructor-details-wrapper .instructor-info-wrapper .edufit-content-box>h3 {
  margin-bottom: 20px;
  /* border-bottom: 1px solid var(--heading-color); */
  padding-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
}

.instructor-details-wrapper .instructor-info-wrapper .edufit-content-box>h5 {
  margin-bottom: 20px;
}

.instructor-details-wrapper .instructor-info-wrapper .edufit-content-box>h5 span {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 10px;
  border-radius: 30px;
  margin-left: 15px;
  font-weight: 400;
}

.progress-item.style-one .progress-title {
  margin-bottom: 20px;
}

.progress-item.style-one .progress-title h6 span {
  float: right;
}

.progress-item.style-one .progress {
  height: 6px;
}

.progress-item.style-one .progress .progress-bar {
  background-color: var(--primary-color);
}

/* scored css */

.ip-scored-sec {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.ip-scored-sec .one,
.three,
.four,
.five,
.seven,
.eight,
.nine {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgb(4, 169, 4);
  color: white;
  font-size: 18px;
}

.ip-scored-sec .two,
.six,
.ten {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgb(255, 0, 0);
  color: white;
  font-size: 18px;
}

/* scored button */
.score-button button {
  /* background-color: var(--heading-color); */
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  border-radius: 6px;
  height: 50px;
  width: 250px;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 20px;
  gap: 50px;
}

.score-button button:hover {
  color: white;
  background-color: var(--heading-color);
  transition: 1.5s all;
}

/* View answer css */

.ip-solution-wrong {
  border: 1px solid red;
  margin: 2px 15px;
  border-radius: 6px;
}

.ip-solution-wrong input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid red;
  position: relative;
  cursor: pointer;
  background-color: red;
  margin: 12px;
}

.ip-solution-correct {
  border: 1px solid green;
  margin: 8px 15px;
  border-radius: 6px;
}

.ip-solution-correct input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid green;
  position: relative;
  cursor: pointer;
  background-color: green;
  margin: 12px;
}

.ip-solution-view {
  border: 1px solid gray;
  margin: 8px 15px;
  border-radius: 6px;
}

.ip-solution-view input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid gray;
  position: relative;
  cursor: pointer;
  background-color: gray;
  margin: 12px;
}

.comments-respond {
  max-width: 100%;
}

.ip-answer-heading {
  margin: 0px 15px;
}

.ip-answer {
  margin: 0px 15px;
}

.ip-answer p {
  font-size: 8 px !important;
}

.comments-heading {
  margin: 0px 15px;
}

.form_group textarea {
  margin: 0px 15px;
  height: 60px;
}

.form_group button {
  margin: 0px 15px;
}

.ip-ans-review-wrong {
  background-color: red;
  color: white;
  border-radius: 3px;
  position: absolute;
  /* left:540px; */
  right: -5px;
  top: 21px;
}

.ip-ans-review-wrong i {
  margin: 2px;
}

/* @media screen and(max-width:667px){
  .ip-ans-review-wrong{
    left:126px;
    top:13px;
  }
} */

.ip-ans-review-correct {
  background-color: green;
  color: white;
  border-radius: 3px;
  position: absolute;
  /* left:495px; */
  right: -5px;
  bottom: -5px;
  border-radius: 6px 0px 6px 0px;
}

.ip-ans-review-correct i {
  margin: 2px;
  font-size: 13px;
}

/* @media screen and(max-width:667px) {
  .ip-ans-review-correct{
    left:70px;
    top:13px;
  }
} */

@media screen and (max-width: 667px) {
  .form_group textarea {
    margin: 0px 2px;
  }
}

/* Student profile css */
.ip-student-pro span {
  margin: -7px 12px;
}

.ip-edit-btn {
  padding: 12px 14px;
  position: relative;
  background-color: var(--primary-color);
  color: var(--white-color);
  height: 40px;
  width: 108px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  line-height: 16px;
  cursor: pointer;
}

/* exam list css */
/* Title Styling */
.ip-exam-list h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  text-align: center;
}

/* Table Styling */
.ip-exam-list table {
  width: 100%;
  border-collapse: collapse;
}

/* Table Header */
.ip-exam-list th {
  background-color: rgb(248, 248, 244);
  color: var(--heading-color);
  font-weight: 400;
  padding: 2px 10px;
  text-align: center;
  vertical-align: text-top;
}

/* Table Cells */
.ip-exam-list td {
  background-color: #ffffff;
  padding: 5px 12px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.ip-stu-view-btn {
  background-color: #21315f;
  color: white;
  border-radius: 6px;
  height: 30px;
  width: 80px;
  padding: 0px 5px;
}

.ip-stu-view-btn i {
  font-size: 12px;
  margin: 5px;
}

/* edit profile form css */
.img-account-profile {
  height: 10rem;
}

.rounded-circle {
  border-radius: 50% !important;
}

.card {
  box-shadow: 0 0.15rem 1.75rem 0 rgb(33 40 50 / 15%);
}

.card .card-header {
  font-weight: 500;
}

.card-header:first-child {
  border-radius: 0.35rem 0.35rem 0 0;
}

.card-header {
  padding: 1rem 1.35rem;
  margin-bottom: 0;
  background-color: rgba(33, 40, 50, 0.03);
  border-bottom: 1px solid rgba(33, 40, 50, 0.125);
}

.form-control,
.dataTable-input {
  display: block;
  width: 100%;
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #69707a;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c5ccd6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.35rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn {
  background-color: var(--heading-color);
  color: white;
  padding: 12px 30px;
}

.ef-faq-sec .ef-accordion-item .accordion-title[aria-expanded="false"] {
  background-color: #fff;
  color: #3c4852;
}

.ef-faq-sec .ef-accordion-item .accordion-title[aria-expanded="true"] {
  background-color: #39aaf8;
  color: #fff;
}

.ef-faq-info-sec .faq-info-box {
  padding: 38px 50px 45px;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .ef-faq-info-sec .faq-info-box {
    padding: 38px 30px 45px;
  }
}

.ef-faq-info-sec .faq-info-box .ef-iconic-info-box {
  margin-bottom: 35px;
}

.ef-faq-info-sec .faq-info-box h3 {
  margin-bottom: 15px;
}

.ef-faq-info-sec .faq-info-box>p {
  font-size: 20px;
  line-height: 32px;
  color: rgba(33, 37, 41, 0.7);
}

.ef-accordion-item {
  border-radius: 10px;
  border: none !important;
  background-color: rgba(26, 26, 26, 0.01);
}

.ef-accordion-item .accordion-title {
  padding: 18px 20px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  line-height: 1.35em;
  display: flex;
  border-radius: 10px 10px 0 0;
  background-color: #fff;
}

@media (max-width: 767px) {
  .ef-accordion-item .accordion-title {
    font-size: 14px;
    line-height: 27px;
  }
}

.ef-accordion-item .accordion-title[aria-expanded="true"] {
  background-color: #fff;
  color: #3c4852;
  border-bottom: 1px solid #b7bec2;
}

.ef-accordion-item .accordion-title[aria-expanded="true"]:after {
  content: "-";
  position: absolute;
  top: 30%;
  right: 10px;
  background-color: #3c4852;
  color: #fff;
  width: 25px;
  height: 25px;
  border: none;
  display: grid;
  place-content: center;
  border-radius: 2px;
}

.ef-accordion-item .accordion-title[aria-expanded="false"]:after {
  content: "+";
  position: absolute;
  top: 30%;
  right: 10px;
  background-color: #3c4852;
  color: #fff;
  width: 25px;
  height: 25px;
  border: none;
  display: grid;
  place-content: center;
  border-radius: 2px;
}

.ef-accordion-item .accordion-content {
  padding: 15px 20px 15px;
}

.ef-accordion-item .accordion-content p {
  font-size: 16px;
}

.section {
  padding: 50px 0;
}

@media only screen and (max-width:768px) {
  .section {
    padding: 30px 0px;
  }
}



.about-heading {
  font-size: 43px;
  font-weight: 700;
  color: #3c4852;
  line-height: 52px;
}

.para {
  color: #3c4852;
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
}

.small-head {
  color: #38a9f6;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  width: fit-content;
  position: relative;
  margin-bottom: 10px;
}

.small-head::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120%;
  height: 2px;
  background-color: #7a8b94;
}

.arrow-circle {
  position: relative;
}

.bg-white {
  background-color: #fff !important;
}

.bg-f5 {
  background-color: #fcfcfc !important;
}

.sub-head {
  color: #3c4852 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 24px !important;
}

.subject-card {
  width: auto;
  max-width: 100%;
}

.subject-img-card {
  position: relative;
  display: block;
  min-width: fit-content;
  height: 156px;
  text-align: center;
  margin-bottom: 10px;
}

.subject-img-card img {
  width: 100%;
  max-width: 100%;
  height: 156px;
  border-radius: 8px;
}

.responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .remove-pr-mob {
    padding-right: 0px !important;
  }

  .subject-img-card {
    position: relative;
    display: block;
    min-width: fit-content;
    height: 215px;
    text-align: center;
    margin-bottom: 10px;
  }

  .subject-img-card img {
    width: 100%;
    max-width: 100%;
    height: 215px;
    border-radius: 8px;
  }
}

.side-heading {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 26px !important;
  color: #3c4852 !important;
}

.h5-head {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.005em;
  margin: 0px;
  color: rgb(60, 72, 82);
  line-height: 24px;
}

.ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Limits text to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  max-height: 3.2em;
  /* Adjust as per your font-size */
}

.bg-practice {
  background-color: #e0d9f5;
}

.bg-mock {
  background-color: #d8f0e5;
}

.bg-live {
  background-color: #fde3dd;
}

.bg-support {
  background-color: #ffece5;
}

.bg-icons {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff !important;
}

.order-s-1 {
  order: 1;
}

.order-s-2 {
  order: 2;
}

.exam-start {
  text-align: start;
}

@media screen and (min-width: 0px) and (max-width: 769px) {
  .order-s-1 {
    order: 2;
  }

  .order-s-2 {
    order: 1;
  }

  .subject-card {
    margin-bottom: 20px;
  }

  .subject-card .sub-head {
    text-align: center !important;
  }
}

.footer-widget .footer-content h4.widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #e3bb42;
}

.footer-widget .footer-content h4.widget-title {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.banner-img {
  width: 100%;
  height: 670px;
  object-fit: fill;
}

@media (max-width: 768px) {
  .banner-img {
    width: 100%;
    height: 250px;
    object-fit: fill;
  }
}

.id-profile-img {
  height: 153px;
  width: 153px;
}

@media screen and (max-width: 1180px) {
  .nav-right-item {
    width: 100%;
    justify-content: space-between !important;
  }

  .hidden-nav-mobile {
    display: block !important;
  }

  #hide_sm {
    display: none !important;
  }

  .header-navigation .main-menu ul>li>a {
    color: #333 !important;
  }
}

#hide_lg_btn {
  background-color: #fff;
}