/* ========== Common Css Start here  ============*/
/* ========================================
   THEME CSS VARIABLES (DYNAMIC VIA :root)
   These can be overridden from other portals
======================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --primary: var(--primary-color, #FF7700);
  --secondary: var(--secondary-color, #0D4A4D);
  --light-gray: var(--primary-light, #efefef);
}

/*  Font Family Variables */
/*  Font Weight Variables */
/*  Font Size Variables */
/* Line Height Variables */
/*  Color Variables  */
/* Using CSS variables defined in _css-variables.scss */
/*============  Border Radius Property Mixin Here    =============*/
/*============  Flex Property Mixin Here    =============*/
/*============  Transition Property Mixin Here    =============*/
/*============  Transform Property Mixin Here    =============*/
/*============  Before/After Property Mixin Here    =============*/
/*============  Border/Outline/Shadow/Text-Decoration Property Mixin Here    =============*/
/*============  Fix Widht/Height Property Mixin Here    =============*/
/*============  Text Ellipsis Property Mixin Here    =============*/
/*============  Input Placeholder Color Mixin Here    =============*/
/*============  scroll-bar Mixin Here    =============*/
/*============  Column Count Mixin Here    =============*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
  line-height: normal;
  color: #000;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-align: left;
}

a {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
a:focus, a:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
a {
  list-style: none;
  text-decoration: none;
}

button, .btn {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
button:focus, button:hover, .btn:focus, .btn:hover {
  outline: none;
  box-shadow: none;
}

input, .form-control {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
input:focus, input:hover, .form-control:focus, .form-control:hover {
  outline: none;
  box-shadow: none;
}

ul, ol {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin-bottom: 0;
  padding: 0;
}

img {
  width: auto;
  max-width: 100%;
  min-width: auto;
  height: auto;
  min-height: auto;
}

picture {
  display: inline-block;
  line-height: 0;
}

.flex-between {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}
.flex-between .user-dropdown {
  margin-left: auto;
}

.selected-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  width: 100%;
}
.selected-box > div {
  width: calc(50% - 15px);
}

.components-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #000;
  padding: 10px 10px;
  background-color: #eee;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.text-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}

/* ========== Common Css Start here, Please Not use this Css in your project  ============*/
.container {
  max-width: 1310px;
  width: 100%;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.left-side-container {
  padding-left: calc((100% - 1280px) / 2);
}
@media only screen and (max-width: 1310px) {
  .left-side-container {
    padding-left: 15px;
  }
}

.py-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 1279px) {
  .py-100 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 991px) {
  .py-100 {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 767px) {
  .py-100 {
    padding: 40px 0;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1279px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-100 {
    padding-bottom: 40px;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 1279px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-100 {
    padding-top: 40px;
  }
}

.section-head {
  font-size: 18px;
  line-height: 22px;
  color: #000;
  font-weight: 500;
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 1279px) {
  .section-head {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .section-head {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 40px;
    gap: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .section-head {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .section-head {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 20px;
    flex-direction: column;
    text-align: center;
  }
}
.section-head .head-right {
  flex: 1;
}
.section-head p {
  font-weight: 400;
  opacity: 0.6;
}

.section-title {
  font-size: 46px;
  line-height: 52px;
  color: #000;
  font-weight: 500;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1279px) {
  .section-title {
    font-size: 42px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 1199px) {
  .section-title {
    font-size: 38px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title {
    font-size: 34px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title {
    font-size: 30px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 575px) {
  .section-title {
    font-size: 26px;
    line-height: 32px;
  }
}
.section-title:last-child {
  margin-bottom: 0;
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 1199px) {
  .pt-120 {
    padding-top: 100px;
  }
}

.pt-72 {
  padding-top: 72px;
}
@media only screen and (max-width: 1199px) {
  .pt-72 {
    padding-top: 60px;
  }
}

.button-full {
  width: 100%;
}
.button-full .common-btn {
  width: 100%;
  justify-content: space-between;
}

main {
  min-height: calc(100vh - 156px);
}
@media only screen and (max-width: 991px) {
  main {
    min-height: calc(100vh - 140px);
  }
}
@media only screen and (max-width: 767px) {
  main {
    min-height: calc(100vh - 177px);
  }
}
@media only screen and (max-width: 479px) {
  main {
    min-height: calc(100vh - 208px);
  }
}

/*========== User Dropdown Css Start here  ============*/
.user-dropdown .user-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 6px;
  background-color: #F1F1F2;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.user-dropdown .user-toggle:focus, .user-dropdown .user-toggle:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.user-dropdown .user-toggle {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
@media only screen and (max-width: 991px) {
  .user-dropdown .user-toggle {
    padding: 6px;
  }
}
.user-dropdown .user-toggle .user-img {
  display: inline-block;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
}
.user-dropdown .user-toggle .user-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.user-dropdown .user-toggle .user-name {
  display: inline-block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .user-dropdown .user-toggle .user-name {
    display: none;
  }
}
.user-dropdown .user-toggle .dropdown-icon {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-dropdown .user-toggle .dropdown-icon img {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(53%) sepia(94%) saturate(2648%) hue-rotate(359deg) brightness(100%) contrast(107%);
}
.user-dropdown .user-toggle.show {
  background: #eeeeee;
  border-color: rgba(0, 0, 0, 0.9);
}
.user-dropdown .user-toggle.show .dropdown-icon img {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.user-dropdown .dropdown-menu {
  padding: 0;
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  min-width: 200px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1490196078);
  overflow: hidden;
}
.user-dropdown .dropdown-menu li .dropdown-item {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.user-dropdown .dropdown-menu li .dropdown-item:focus, .user-dropdown .dropdown-menu li .dropdown-item:hover {
  outline: none;
  box-shadow: none;
}
.user-dropdown .dropdown-menu li .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  background-color: transparent;
}
.user-dropdown .dropdown-menu li .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.05);
}
.user-dropdown .dropdown-menu li:last-child .dropdown-item {
  border-bottom: none;
}

/*========== Button Css Start here  ============*/
.button-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 8px 8px 12px;
  border: 1px solid;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #222222;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  min-width: 100px;
}
.common-btn picture {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
  margin-left: 6px;
  background-color: #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.common-btn picture img {
  width: 14px;
  height: 14px;
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.common-btn:hover picture img {
  transform: rotate(0deg);
}

.primary-btn {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #FFFFFF;
}
.primary-btn:hover {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
}

.primary-btn-white {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.primary-btn-white:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  border: 1px solid var(--primary);
}
.primary-btn-white:hover picture {
  background-color: var(--secondary);
}
.primary-btn-white:hover picture img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
}

.secondry-btn {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: #FFFFFF;
}
.secondry-btn:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
}

.secondry-white-btn {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #000;
}
.secondry-white-btn:hover {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #FFFFFF;
}
.secondry-white-btn:hover picture {
  background-color: #FFFFFF;
}
.secondry-white-btn:hover picture img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(7500%) hue-rotate(61deg) brightness(111%) contrast(107%);
}
.secondry-white-btn picture {
  background-color: var(--secondary);
}
.secondry-white-btn picture img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
}

.secondry-border-btn {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
}
.secondry-border-btn:hover {
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  color: #FFFFFF;
}
.secondry-border-btn:hover picture {
  background-color: #FFFFFF;
}
.secondry-border-btn:hover picture img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(9%) saturate(7500%) hue-rotate(61deg) brightness(111%) contrast(107%);
}
.secondry-border-btn picture {
  background-color: var(--secondary);
}
.secondry-border-btn picture img {
  filter: invert(100%) sepia(100%) grayscale(100%) brightness(200%);
}

.text-btn {
  background-color: transparent;
  border: none;
  color: #727376;
}
.text-btn:hover {
  color: var(--primary);
}

.action-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.action-icon-btn:focus, .action-icon-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.action-icon-btn {
  background-color: #F4F4F4;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 6px;
}

/*========== Common Input Box Css Start here  ============*/
.common-form {
  width: 100%;
}
.common-form .from-group {
  width: 100%;
  margin-bottom: 0px;
  position: relative;
}
.common-form .from-group .form-label {
  display: block;
  text-align: left;
  margin-bottom: 6px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #222222;
}
.common-form .from-group .group-input {
  position: relative;
  width: 100%;
}
.common-form .from-group .req-mark {
  color: #ff0000;
  margin-left: 2px;
  font-weight: 400;
}
.common-form .from-group .form-control {
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  width: 100%;
  padding: 20px 20px;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media only screen and (max-width: 1279px) {
  .common-form .from-group .form-control {
    padding: 16px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .common-form .from-group .form-control {
    padding: 12px 20px;
  }
}
.common-form .from-group .form-control:focus {
  border-color: var(--secondary);
  outline: none;
}
.common-form .from-group .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.4);
}
.common-form .from-group .form-control::placeholder {
  color: rgba(34, 34, 34, 0.4);
}
.common-form .from-group .form-control:focus {
  border-color: var(--secondary);
}
.common-form .from-group .error-message {
  display: block;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #ff0000;
  margin-top: 4px;
}
.common-form .from-group .input-icon-left {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  pointer-events: none;
  border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.common-form .from-group .input-icon-left + .form-control {
  padding-left: 40px;
}
.common-form .from-group .input-icon-right {
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  pointer-events: none;
  border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.common-form .from-group .input-icon-right + .form-control {
  padding-right: 40px;
}
.common-form .from-group .input-action {
  position: absolute;
  top: 18px;
  bottom: 2px;
  right: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 0px 50px 50px 0px;
  -o-border-radius: 0px 50px 50px 0px;
  cursor: pointer;
}
.common-form .from-group .input-action .eye-icon img {
  width: 24px;
  height: 24px;
}
.common-form .from-group .input-action + .form-control {
  padding-right: 50px;
}

/*========== Bootstrap Select Css Start here  ============*/
.dropdown.bootstrap-select {
  width: 100% !important;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light {
  padding: 13px 14px;
  padding-right: 40px;
  position: relative;
  background: #F6F6F6;
  border: 1px solid transparent;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #222222;
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light:focus, .dropdown.bootstrap-select .dropdown-toggle.btn-light:hover {
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light {
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light::after {
  content: " ";
  position: absolute;
  right: 15px;
  top: 0px;
  bottom: 0;
  background: url("../../assets/images/dropdown-icon.svg") no-repeat center center;
  background-size: contain;
  width: 15px;
  height: 15px;
  padding: 0;
  margin: auto 0;
  border: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light:focus {
  outline: none !important;
  box-shadow: none;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light .filter-option-inner-inner {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light .filter-option-inner-inner img {
  width: 20px;
  height: 15px;
  margin-right: 6px;
  position: relative;
  bottom: 2px;
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.show {
  border-color: var(--secondary);
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.show::after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.dropdown.bootstrap-select .dropdown-toggle.btn-light.bs-placeholder .filter-option-inner-inner {
  font-weight: 400;
  color: color-mix(in srgb, var(--secondary) 70%, transparent);
}
.dropdown.bootstrap-select > .dropdown-menu {
  background: #FFFFFF;
  box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:focus, .dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:hover {
  outline: none;
  box-shadow: none;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control {
  padding: 8px 16px;
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select > .dropdown-menu .bs-searchbox .form-control:focus {
  border-color: var(--secondary);
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar {
  width: 6px;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar:horizontal {
  height: 6px;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.dropdown.bootstrap-select > .dropdown-menu > .inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.dropdown.bootstrap-select > .dropdown-menu ul {
  padding: 0 8px;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a {
  position: relative;
  background: transparent;
  padding: 8px 10px;
  margin: 2px 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a.selected, .dropdown.bootstrap-select > .dropdown-menu ul li a:hover {
  color: white;
  background-color: color-mix(in srgb, var(--secondary) 70%, transparent);
}
.dropdown.bootstrap-select > .dropdown-menu ul li a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a .text img {
  width: 20px;
  height: 15px;
  margin-right: 6px;
}
.dropdown.bootstrap-select > .dropdown-menu ul li a::before {
  content: " ";
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 0;
  height: 1px;
  background-color: color-mix(in srgb, var(--secondary) 10%, transparent);
}
.dropdown.bootstrap-select > .dropdown-menu ul li:last-child a::before {
  display: none;
}
.dropdown.bootstrap-select.checkbox-select > .dropdown-menu ul li a .check-mark {
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border: 1px solid color-mix(in srgb, var(--secondary) 40%, transparent);
}
.dropdown.bootstrap-select.checkbox-select > .dropdown-menu ul li a .check-mark::after {
  background: url("../../assets/images/check-right-icon.svg") no-repeat center center;
  background-size: 10px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(6698%) hue-rotate(181deg) brightness(117%) contrast(94%);
}
.dropdown.bootstrap-select.radio-select > .dropdown-menu ul li a .check-mark {
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  border: 2px solid color-mix(in srgb, var(--secondary) 40%, transparent);
}
.dropdown.bootstrap-select.radio-select > .dropdown-menu ul li a .check-mark::after {
  background: url("../../assets/images/rounded-dots.svg") no-repeat center center;
  background-size: 8px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(6698%) hue-rotate(181deg) brightness(117%) contrast(94%);
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a {
  padding-right: 40px;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark {
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a .check-mark::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  border: none;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a:hover .check-mark {
  border-color: #FFFFFF;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a.selected .check-mark {
  border-color: #FFFFFF;
}
.dropdown.bootstrap-select.show-tick > .dropdown-menu ul li a.selected .check-mark::after {
  opacity: 1;
}

/*========== Custome Checkbox Css Start here  ============*/
.custom-inputs {
  display: inline-flex;
  gap: 16px;
}
.custom-inputs .custom-input-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-inputs .custom-input-btn .checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  background-color: #fff;
  border: 1px solid #727376;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.custom-inputs .custom-input-btn .checkmark::after {
  content: " ";
  position: absolute;
  opacity: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.custom-inputs .custom-input-btn input {
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
}
.custom-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}
.custom-inputs .custom-input-btn input[type=checkbox]:checked ~ .checkmark::after {
  opacity: 1;
}
.custom-inputs .custom-input-btn input[type=checkbox]:checked ~ .label-text {
  color: red;
}
.custom-inputs .custom-input-btn input[type=checkbox] + .checkmark {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.custom-inputs .custom-input-btn input[type=checkbox] + .checkmark::after {
  background: url("../../images/check-right-icon.svg") no-repeat center center;
  background-size: 10px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(1284%) hue-rotate(100deg) brightness(114%) contrast(100%);
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
.custom-inputs .custom-input-btn input[type=radio]:checked ~ .checkmark::after {
  opacity: 1;
}
.custom-inputs .custom-input-btn input[type=radio]:checked ~ .label-text {
  color: red;
}
.custom-inputs .custom-input-btn input[type=radio] + .checkmark {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.custom-inputs .custom-input-btn input[type=radio] + .checkmark::after {
  width: 8px;
  min-width: 8px;
  height: 8px;
  min-height: 8px;
  background: var(--secondary);
  margin: auto;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.custom-inputs .custom-input-btn a {
  position: relative;
  color: var(--primary);
}

/*========== Tabing Css Start here  ============*/
.tabing-nav {
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.tabing-nav .nav-link {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.tabing-nav .nav-link:focus, .tabing-nav .nav-link:hover {
  outline: none;
  box-shadow: none;
}
.tabing-nav .nav-link {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  padding: 8px 20px;
  border: none;
  border-bottom: 2px solid transparent;
  text-align: center;
  background-color: transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.tabing-nav .nav-link.active {
  border-bottom: 2px solid var(--secondary);
  color: var(--secondary);
}

/*========== Breadcrumb Css Start here  ============*/
.custom-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1199px) {
  .custom-breadcrumb {
    margin-bottom: 18px;
  }
}
.custom-breadcrumb .bcrumb-item {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  padding: 0;
}
.custom-breadcrumb .bcrumb-item a {
  color: rgba(0, 0, 0, 0.6);
}
.custom-breadcrumb .bcrumb-item::after {
  content: ">";
  display: inline-block;
  padding: 0 8px;
}
.custom-breadcrumb .bcrumb-item.active {
  color: #000;
}
.custom-breadcrumb .bcrumb-item:last-child::after {
  content: inherit;
}
@media screen and (max-width: 767px) {
  .custom-breadcrumb {
    display: none;
  }
}

/*========== Common Modal Css Start here  ============*/
.common-modal .modal-dialog {
  width: 100%;
  margin: auto;
  padding: 15px;
}
.common-modal .modal-dialog.modal-center {
  display: flex;
  align-items: center;
  min-height: 100%;
}
.common-modal .modal-content {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.1490196078);
  border: none;
  overflow: hidden;
}
.common-modal .modal-content .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.common-modal .modal-content .modal-header .modal-title {
  font-size: 24px;
  line-height: 130%;
  color: #000;
  font-weight: 500;
}
.common-modal .modal-content .close-modal {
  position: relative;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  background: #f1eefd;
  border: none;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.5);
}
.common-modal .modal-content .close-modal::after, .common-modal .modal-content .close-modal::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--secondary);
}
.common-modal .modal-content .close-modal::after {
  width: 50%;
  height: 1px;
}
.common-modal .modal-content .close-modal::before {
  height: 50%;
  width: 1px;
}
.common-modal .modal-content .modal-body {
  padding: 20px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  background-color: #EEEEEE;
  max-height: calc(100vh - 174px);
  overflow: auto;
}
.common-modal .modal-content .modal-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;
  gap: 10px;
  padding: 16px 20px;
  background-color: #EEEEEE;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}
.common-modal .modal-content .modal-footer .common-btn {
  min-width: 120px;
  margin: 0;
}
.common-modal.no-header .modal-content {
  position: relative;
}
.common-modal.no-header .modal-content .modal-body {
  padding: 30px;
}
.common-modal.no-header .modal-content .close-modal {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 9;
}

.ratingmodal-form {
  display: grid;
  gap: 28px;
}

.ratingmodal-field {
  display: grid;
  gap: 16px;
}

.ratingmodal-label {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  font-weight: 600;
}

.ratingmodal-stars {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ratingmodal-stars__button {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 52px;
  line-height: 1;
  color: #b9cdd1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.ratingmodal-stars__button:hover, .ratingmodal-stars__button:focus {
  color: var(--primary);
}
.ratingmodal-stars__button.is-active {
  color: var(--primary);
}

.ratingmodal-textarea {
  width: 100%;
  min-height: 220px;
  resize: none;
  border: 0;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 20px 22px;
  font-size: 16px;
  line-height: 24px;
  color: #000;
}
.ratingmodal-textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.ratingmodal-textarea::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.ratingmodal-textarea:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--secondary) 18%, transparent);
}

@media only screen and (max-width: 767px) {
  .ratingmodal-stars {
    gap: 10px;
  }
  .ratingmodal-stars__button {
    font-size: 42px;
  }
  .ratingmodal-textarea {
    min-height: 180px;
    padding: 18px;
  }
}
/*========== Accordion Css Start here  ============*/
.accordion {
  width: 100%;
}
.accordion .faq-item {
  border: 1px solid color-mix(in srgb, var(--secondary) 50%, transparent);
  margin-bottom: 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
  overflow: hidden;
}
.accordion .faq-item:last-child {
  margin-bottom: 0;
}
.accordion .faq-item-header {
  position: relative;
  background-color: #FFFFFF;
  padding: 12px 16px;
  padding-right: 50px;
  cursor: pointer;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: var(--secondary);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.accordion .faq-item-header:hover {
  background-color: #f8f8f8;
}
.accordion .faq-item-header .pluse-mins-icon {
  display: inline-block;
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  border: 1px solid var(--secondary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.accordion .faq-item-header .pluse-mins-icon::before, .accordion .faq-item-header .pluse-mins-icon::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--secondary);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.accordion .faq-item-header .pluse-mins-icon::before {
  width: 12px;
  height: 2px;
}
.accordion .faq-item-header .pluse-mins-icon::after {
  width: 2px;
  height: 12px;
}
.accordion .faq-item-header .angle-icon {
  display: inline-block;
  line-height: 0;
  position: absolute;
  top: 50%;
  right: 50px;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.accordion .faq-item-header .angle-icon::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/dropdown-icon.svg") no-repeat center center;
  background-size: 14px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
}
.accordion .faq-item-header.active {
  background-color: #f8f8f8;
  border-color: color-mix(in srgb, var(--secondary) 50%, transparent);
}
.accordion .faq-item-header.active .pluse-mins-icon::after {
  height: 0;
  opacity: 0;
}
.accordion .faq-item-header.active .angle-icon::before {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.accordion .faq-item-header[aria-expanded=true] {
  background-color: #f8f8f8;
  border-color: color-mix(in srgb, var(--secondary) 50%, transparent);
}
.accordion .faq-item-header[aria-expanded=true] .pluse-mins-icon::after {
  height: 0;
  opacity: 0;
}
.accordion .faq-item-header[aria-expanded=true] .angle-icon::before {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
}
.accordion .faq_body_inner {
  padding: 16px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
}
.accordion .faq_body_inner p {
  margin-bottom: 12px;
}
.accordion .faq_body_inner p:last-child {
  margin-bottom: 0;
}

/* ========== LRF Pages Css Start here  ============*/
.lrf-pages {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  padding: 20px;
  gap: 120px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F4EEE2 33.22%);
}
@media only screen and (max-width: 1279px) {
  .lrf-pages {
    gap: 50px;
  }
}
.lrf-pages .lrf-image-side {
  width: 41%;
  background-color: var(--primary);
  border-radius: 36px;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  -o-border-radius: 36px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-image-side {
    display: none;
  }
}
.lrf-pages .lrf-content-wrap {
  flex: 1;
  position: relative;
  max-width: 612px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0 120px;
}
.lrf-pages .lrf-content-wrap .lfr-logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content-wrap .lfr-logo {
    top: 5px;
  }
}
.lrf-pages .lrf-image-slide {
  width: 100%;
  height: 100%;
}
.lrf-pages .lrf-image-slide .slider-content {
  padding: 40px;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-image-slide .slider-content {
    padding: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-image-slide .slider-content {
    padding: 20px;
  }
}
.lrf-pages .lrf-image-slide .content-label {
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
  color: #FFFFFF;
  text-transform: uppercase;
}
.lrf-pages .lrf-image-slide .font-36 {
  font-size: 36px;
  line-height: 48px;
  font-weight: 600;
  color: #FFFFFF;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-image-slide .font-36 {
    font-size: 32px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-image-slide .font-36 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .lrf-pages .lrf-image-slide .font-36 {
    font-size: 24px;
    line-height: 30px;
  }
}
.lrf-pages .lrf-image-slide .font-24 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #FFFFFF;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-image-slide .font-24 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-image-slide .font-24 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .lrf-pages .lrf-image-slide .font-24 {
    font-size: 18px;
    line-height: 26px;
  }
}
.lrf-pages .lrf-image-slide .slide-info-button {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lrf-pages .lrf-image-slide .slide-info-button button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  color: var(--secondary);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.lrf-pages .lrf-image-slide .slide-info-button button:focus, .lrf-pages .lrf-image-slide .slide-info-button button:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.lrf-pages .lrf-image-slide .slide-info-button button {
  background-color: #FFFFFF;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.lrf-pages .lrf-image-slide .first-slide > img {
  width: calc(100% - 80px);
}
.lrf-pages .lrf-image-slide .first-slide .slider-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.lrf-pages .lrf-image-slide .second-slide {
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
  background-position: top left 30% !important;
}
.lrf-pages .lrf-image-slide .second-slide .slider-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 0%, transparent) 38.51%, color-mix(in srgb, var(--primary) 98%, transparent) 66.71%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lrf-pages .lrf-image-slide .third-slide {
  background-repeat: no-repeat !important;
  background-position: top !important;
}
.lrf-pages .lrf-image-slide .third-slide .slider-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.lrf-pages .lrf-image-slide .third-slide .slider-content img {
  margin-top: auto;
}
.lrf-pages .lrf-image-slide .fouth-slide .fouth-slide-img {
  padding: 100px 77px 0;
  text-align: center;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-image-slide .fouth-slide .fouth-slide-img {
    padding: 80px 50px 0;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-image-slide .fouth-slide .fouth-slide-img {
    padding: 60px 30px 0;
  }
}
.lrf-pages .lrf-image-slide .fouth-slide .slider-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.lrf-pages .lrf-image-slide .fifth-slide {
  background-repeat: no-repeat !important;
  background-size: 100% auto !important;
  background-position: top -100px center !important;
}
.lrf-pages .lrf-image-slide .fifth-slide .slider-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 0%, transparent) 38.51%, color-mix(in srgb, var(--primary) 98%, transparent) 66.71%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.lrf-pages .lrf-content {
  width: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  color: #222222;
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content {
    font-size: 16px;
    line-height: 20px;
  }
}
.lrf-pages .lrf-content .backto {
  display: block;
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-content .backto {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content .backto {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .lrf-pages .lrf-content .backto {
    margin-bottom: 20px;
  }
}
.lrf-pages .lrf-content .backto a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(34, 34, 34, 0.7);
  background-color: rgba(0, 0, 0, 0.1);
  padding: 5px 10px;
  border-radius: 50px;
}
.lrf-pages .lrf-content .lrf-title {
  font-size: 42px;
  line-height: 52px;
  font-weight: 500;
  color: #222222;
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 1366px) {
  .lrf-pages .lrf-content .lrf-title {
    font-size: 40px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-content .lrf-title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content .lrf-title {
    font-size: 30px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .lrf-pages .lrf-content .lrf-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.lrf-pages .lrf-content .common-form {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  text-align: left;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-content .common-form {
    padding-top: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content .common-form {
    padding-top: 24px;
  }
}
.lrf-pages .lrf-content .common-form .from-group .input-action {
  opacity: 0.5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  height: 24px;
}
.lrf-pages .lrf-content .common-form .from-group .input-action:hover {
  opacity: 1;
}
.lrf-pages .lrf-content .common-form .remember-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.lrf-pages .lrf-content .common-form .remember-group .custom-inputs .custom-input-btn {
  color: #727376;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.lrf-pages .lrf-content .common-form .remember-group .forgot-link {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.lrf-pages .lrf-content .common-form .remember-group .forgot-link:focus, .lrf-pages .lrf-content .common-form .remember-group .forgot-link:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.lrf-pages .lrf-content .common-form .remember-group .forgot-link {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  margin-left: auto;
  color: var(--secondary);
  text-decoration: underline;
}
.lrf-pages .lrf-content .common-form .button-wrap {
  width: 100%;
  margin: 24px 0 14px;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-content .common-form .button-wrap {
    margin: 20px 0 10px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content .common-form .button-wrap {
    margin: 16px 0 8px;
  }
}
.lrf-pages .lrf-content .common-form .button-wrap .common-btn {
  padding: 20px;
  width: 100%;
  background-color: var(--secondary);
  color: #FFFFFF;
  border-color: var(--secondary);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-content .common-form .button-wrap .common-btn {
    padding: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content .common-form .button-wrap .common-btn {
    padding: 12px;
  }
}
.lrf-pages .lrf-content .common-form .button-wrap .common-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.lrf-pages .lrf-content .common-form .our-login-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.lrf-pages .lrf-content .common-form .our-login-btn-wrap .our-login-btn {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.lrf-pages .lrf-content .common-form .our-login-btn-wrap .our-login-btn:focus, .lrf-pages .lrf-content .common-form .our-login-btn-wrap .our-login-btn:hover {
  outline: none;
  box-shadow: none;
}
.lrf-pages .lrf-content .common-form .our-login-btn-wrap .our-login-btn {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: #FFFFFF;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
}
@media only screen and (max-width: 1279px) {
  .lrf-pages .lrf-content .common-form .our-login-btn-wrap .our-login-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .lrf-pages .lrf-content .common-form .our-login-btn-wrap .our-login-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}
.lrf-pages .lrf-content .common-form .back-screen-link {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #222222;
  text-align: center;
}
.lrf-pages .lrf-content .common-form .back-screen-link a {
  display: inline-block;
  color: var(--primary);
}
.lrf-pages .lrf-content .otp-box {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.lrf-pages .lrf-content .otp-box .otp-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 16px;
  line-height: 20px;
  color: #534C60;
}
.lrf-pages .lrf-content .otp-box .otp-header a {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.lrf-pages .lrf-content .otp-box .otp-header a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5px;
  min-width: 5px;
  height: 5px;
  min-height: 5px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 50px;
}
.lrf-pages .lrf-content .otp-box .otp-timer {
  font-size: 36px;
  line-height: 40px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  margin: 20px 0;
}
.lrf-pages .lrf-content .otp-box .otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.lrf-pages .lrf-content .otp-box .otp-inputs input {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  font-size: 22px;
  line-height: 28px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
}

.signup-page {
  background: url(../../images/business-landing-bg.png) no-repeat bottom -100px center, #E8F4ED;
  display: flex;
  padding-top: 70px;
}
.signup-page__section {
  margin: auto;
  padding: 40px 0;
}
@media only screen and (max-width: 767px) {
  .signup-page__section {
    width: 100%;
  }
}
.signup-page .signup-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.12fr);
  align-items: stretch;
  max-width: 1050px;
  background-color: #FFFFFF;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .signup-page .signup-card {
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .signup-page .signup-card {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .signup-page .signup-card {
    border-radius: 14px;
    -webkit-border-radius: 14px;
    -moz-border-radius: 14px;
    -ms-border-radius: 14px;
    -o-border-radius: 14px;
    margin: 0 auto;
  }
}
.signup-page .signup-card__image {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .signup-page .signup-card__image {
    min-height: 500px;
  }
}
@media only screen and (max-width: 991px) {
  .signup-page .signup-card__image {
    min-height: 360px;
  }
}
@media only screen and (max-width: 767px) {
  .signup-page .signup-card__image {
    display: none;
  }
}
.signup-page .signup-card__image::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 119, 0, 0) 52.43%, rgba(255, 119, 0, 0.98) 92%);
}
.signup-page .signup-card__image picture,
.signup-page .signup-card__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.signup-page .signup-card__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.signup-page .signup-card__form {
  padding: 30px 40px;
}
@media only screen and (max-width: 1199px) {
  .signup-page .signup-card__form {
    padding: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .signup-page .signup-card__form {
    padding: 20px;
  }
}
.signup-page .form-header {
  text-align: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1279px) {
  .signup-page .form-header {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .signup-page .form-header {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .signup-page .form-header {
    margin-bottom: 20px;
  }
}
.signup-page .form-header__title {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: #222222;
}
@media only screen and (max-width: 1279px) {
  .signup-page .form-header__title {
    font-size: 28px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 991px) {
  .signup-page .form-header__title {
    font-size: 24px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .signup-page .form-header__title {
    font-size: 20px;
    line-height: 26px;
  }
}
.signup-page .form-header__text {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(34, 34, 34, 0.7);
}
.signup-page .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .signup-page .form-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.signup-page .form-group--full {
  grid-column: 1/-1;
}
.signup-page .form-group__label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #000000;
}
.signup-page .form-group__control {
  position: relative;
}
.signup-page .form-group__control .dropdown.bootstrap-select .dropdown-toggle.btn-light {
  padding-left: 42px;
}
.signup-page .form-group__control .form-control {
  padding-left: 42px;
}
.signup-page .form-group__icon {
  position: absolute;
  top: 0;
  left: 14px;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
  z-index: 1;
  pointer-events: none;
}
.signup-page .form-control {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  background-color: #F6F6F6;
  box-shadow: none;
  padding: 14px 14px 14px 14px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #222222;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.signup-page .form-control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.7);
}
.signup-page .form-control::placeholder {
  color: rgba(34, 34, 34, 0.7);
}
.signup-page .form-control:focus {
  outline: none;
  background-color: #FFFFFF;
  border-color: rgba(var(--secondary), 0.34);
}
.signup-page .form-textarea {
  min-height: 120px;
  resize: none;
  border-radius: 16px;
  padding: 14px 16px;
}
.signup-page .phone-field {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .signup-page .phone-field {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}
.signup-page .phone-field__code {
  position: relative;
}
.signup-page .phone-field__code::after {
  content: " ";
  position: absolute;
  top: -6px;
  right: 16px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-right: 1.5px solid rgba(34, 34, 34, 0.7);
  border-bottom: 1.5px solid rgba(34, 34, 34, 0.7);
  transform: rotate(45deg);
  pointer-events: none;
}
.signup-page .phone-field__code .form-control {
  padding: 14px 32px 14px 14px;
}
.signup-page .common-btn {
  margin-top: 40px;
  width: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .signup-page .common-btn {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .signup-page .common-btn {
    margin-top: 24px;
  }
}

.lrf-footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  text-align: center;
  font-size: 12px;
  line-height: 140%;
  color: rgba(0, 0, 0, 0.6);
  padding: 30px 0 0;
  margin-top: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.lrf-footer .terms-link {
  font-weight: 500;
  color: #000;
}
.lrf-footer .powered-by .jiratech-logo {
  height: 100%;
  max-height: 40px;
}

.signup-card-box .form-header {
  text-align: center;
  margin-bottom: 40px;
}
.signup-card-box .form-header__title {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 36px;
  font-weight: 600;
  color: #222222;
}
.signup-card-box .form-header__text {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(34, 34, 34, 0.7);
}
.signup-card-box .form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.signup-card-box .form-group__label {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  color: #000000;
  text-align: left;
}
.signup-card-box .form-group__control {
  position: relative;
  text-align: left;
}
.signup-card-box .form-control {
  width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  background-color: #F6F6F6;
  box-shadow: none;
  padding: 18px 20px 18px 20px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #222222;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.signup-card-box .phone-field__code .form-control {
  padding: 14px 32px 14px 14px;
}
.signup-card-box .phone-field__code::after {
  content: " ";
  position: absolute;
  top: -6px;
  right: 16px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto 0;
  border-right: 1.5px solid rgba(34, 34, 34, 0.7);
  border-bottom: 1.5px solid rgba(34, 34, 34, 0.7);
  transform: rotate(45deg);
  pointer-events: none;
}
.signup-card-box .form-group--full {
  grid-column: 1/-1;
}
.signup-card-box .common-btn {
  margin-top: 40px;
  width: 100%;
  font-size: 20px;
  line-height: 21px;
  padding-top: 19px;
  padding-bottom: 19px;
}
@media only screen and (max-width: 767px) {
  .signup-card-box .form-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.signup-card-box .text-danger {
  font-size: 12px;
}

.already-have-account {
  margin-top: 25px;
  text-align: center;
}
.already-have-account p {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000000;
}
.already-have-account p a {
  font-size: 16px;
  line-height: 20px;
  color: #FF7700;
  font-weight: 500;
  text-decoration: none;
}

/*========== Header Css Start here  ============*/
.header {
  width: 100%;
  transition: all 0.3s ease;
}
.header.index-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  border: 1px solid transparent;
}
.header.index-header.headerfixed {
  top: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.header.index-header.headerfixed .header-inner {
  padding: 12px 0;
}
.header.index-header .header-inner {
  background-color: #ffffff;
  border-radius: 200px;
  padding: 12px 12px 12px 30px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1100px) {
  .header.index-header .header-inner {
    padding: 12px 12px 12px 20px;
  }
}
@media only screen and (max-width: 991px) {
  .header.index-header .header-inner {
    border-radius: 30px;
    padding: 12px;
  }
}
.header:not(.index-header) {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.header:not(.index-header, .business-header) {
  background-color: #ffffff;
}
.header.headerfixed {
  background-color: #ffffff;
}
.header.show .header-inner .header-menu {
  left: 0px;
  opacity: 1;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0px;
  position: relative;
}
.header-inner .header-logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 46px;
}
.header-inner .header-logo img {
  max-width: 174px;
}
@media only screen and (max-width: 1100px) {
  .header-inner .header-logo img {
    max-width: 140px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-menu {
    position: fixed;
    top: 0px;
    left: -100vw;
    z-index: 9;
    width: 100vw;
    height: 100vh;
    background-color: #FFFFFF;
    padding: 60px 20px 20px;
    transition: all 0.3s ease;
    opacity: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-menu .header-menu-inner {
    max-height: calc(100vh - 82px);
    overflow: auto;
    margin-top: 20px;
  }
}
.header-inner .header-menu .main-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1100px) {
  .header-inner .header-menu .main-menu {
    gap: 15px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-menu .main-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-menu .main-menu li {
    width: 100%;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.2);
    padding: 12px 0;
  }
}
.header-inner .header-menu .main-menu li a {
  text-decoration: none;
  color: #727376;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  text-underline-offset: 3px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.header-inner .header-menu .main-menu li a:hover, .header-inner .header-menu .main-menu li a.active {
  color: #000;
  text-decoration: underline;
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-menu .main-menu li a:hover {
    text-decoration: none;
  }
}
.header-inner .header-menu .mobile-login-sugnup {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-menu .mobile-login-sugnup {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 24px;
    margin-top: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
}
.header-inner .header-menu .mobile-login-sugnup .common-btn {
  height: 46px;
}
.header-inner .header-action {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media only screen and (max-width: 1024px) {
  .header-inner .header-action .common-btn {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .common-btn {
    padding: 5px;
    min-width: inherit;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .common-btn span {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .common-btn .arrow-icon {
    display: none;
  }
}
.header-inner .header-action .common-btn .user-icon {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .common-btn .user-icon {
    display: inline-flex;
    margin-left: 0;
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
    background-color: transparent;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .common-btn .user-icon img {
    transform: inherit;
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .common-btn.primary-btn {
    background-color: #f1f1f2;
    border-color: #f1f1f2;
  }
}
.header-inner .header-action .common-btn.primary-btn-white {
  height: 46px;
}
.header-inner .header-action .search-box-button {
  width: 180px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .search-box-button {
    width: 42px;
    overflow: hidden;
  }
}
.header-inner .header-action .search-box-button .search-control {
  width: 100%;
  padding: 12px 12px;
  background: #f1f1f2;
  border: 1px solid #f1f1f2;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  text-align: left;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
  padding-right: 50px;
}
.header-inner .header-action .search-box-button .search-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.header-inner .header-action .search-box-button .search-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1100px) {
  .header-inner .header-action .search-box-button .search-control {
    padding-right: 42px;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .search-box-button .search-control {
    padding: 10px 10px;
  }
}
.header-inner .header-action .search-box-button .search-control:focus {
  border-color: var(--secondary);
}
.header-inner .header-action .search-box-button .search-btn {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 8px;
  margin: auto 0;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.header-inner .header-action .search-box-button .search-btn:focus, .header-inner .header-action .search-box-button .search-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
@media only screen and (max-width: 991px) {
  .header-inner .header-action .search-box-button .search-btn {
    right: 6px;
  }
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .search-box-button .search-btn {
    background: #f1f1f2;
  }
}
.header-inner .header-action .search-box-button .search-btn img {
  width: 14px;
  height: 14px;
}
@media only screen and (max-width: 767px) {
  .header-inner .header-action .search-box-button .search-btn img {
    width: 20px;
    height: 20px;
  }
}
.header-inner .header-action .search-box-button .close-icon {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 8px;
  margin: auto 0;
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.header-inner .header-action .search-box-button .close-icon:focus, .header-inner .header-action .search-box-button .close-icon:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.header-inner .header-action .search-box-button .close-icon img {
  width: 14px;
  height: 14px;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid #f1f1f2;
  border-radius: 50px;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  background-color: #f1f1f2;
}
@media only screen and (min-width: 1025px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.menu-toggle .menu-bars {
  position: absolute;
  top: 50%;
  left: 14px;
  width: 16px;
  height: 2px;
  background: #222222;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.menu-toggle .menu-bars::before, .menu-toggle .menu-bars::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
}
.menu-toggle .menu-bars::before {
  top: -6px;
}
.menu-toggle .menu-bars::after {
  bottom: -6px;
}
.menu-toggle.on .menu-bars {
  background: transparent;
}
.menu-toggle.on .menu-bars::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle.on .menu-bars::after {
  transform: rotate(-45deg);
  top: 0;
}

.search-open {
  position: relative;
}
.search-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9;
}
.search-open .header-inner .header-action .search-box-button {
  width: calc(100% - 250px);
  position: absolute;
  z-index: 1;
}
@media only screen and (max-width: 1100px) {
  .search-open .header-inner .header-action .search-box-button {
    width: calc(100% - 180px);
  }
}
@media only screen and (max-width: 1024px) {
  .search-open .header-inner .header-action .search-box-button {
    position: fixed;
    padding: 12px 12px;
    background-color: white;
    z-index: 99;
  }
}
.search-open .header-inner .header-action .search-box-button .search-btn {
  opacity: 0;
  pointer-events: none;
}
.search-open .header-inner .header-action .search-box-button .close-icon {
  opacity: 1;
  pointer-events: auto;
}
.search-open .header:not(.index-header) .header-inner .header-action .search-box-button {
  right: 0px;
}
@media only screen and (max-width: 1024px) {
  .search-open .header:not(.index-header) .header-inner .header-action .search-box-button {
    width: 100%;
    top: 0px;
    left: 0px;
    right: 0px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-open .header:not(.index-header) .header-inner .header-action .search-box-button .close-icon {
    right: 20px;
  }
}
.search-open .header.index-header .header-inner .header-action .search-box-button {
  right: 10px;
}
@media only screen and (max-width: 1024px) {
  .search-open .header.index-header .header-inner .header-action .search-box-button {
    width: calc(100% - 32px);
    left: 15px;
    right: 15px;
    padding: 10px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 1024px) {
  .search-open .header.index-header .header-inner .header-action .search-box-button .close-icon {
    right: 16px;
  }
}
.search-open .search-result-section {
  opacity: 1;
  visibility: visible;
}

.search-result-section {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 82px;
  left: 12px;
  right: 12px;
  width: calc(100% - 24px);
  max-height: calc(100vh - 94px);
  z-index: 9;
  padding: 24px 10px;
  background-color: #fff;
  border-radius: 16px;
}
@media only screen and (max-width: 991px) {
  .search-result-section {
    padding: 16px 6px;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section {
    max-height: calc(100vh - 70px);
    width: 100%;
    left: 0px;
    right: 0px;
    top: 70px;
    bottom: 0;
    border-radius: 0px;
  }
}
.search-result-section .search-result-inner {
  overflow: auto;
  max-height: calc(100vh - 144px);
  padding: 0 14px;
}
.search-result-section .search-result-inner::-webkit-scrollbar {
  width: 6px;
}
.search-result-section .search-result-inner::-webkit-scrollbar:horizontal {
  height: 6px;
}
.search-result-section .search-result-inner::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.search-result-section .search-result-inner::-webkit-scrollbar-track {
  background-color: transparent;
}
@media only screen and (max-width: 991px) {
  .search-result-section .search-result-inner {
    padding: 0px 10px;
    max-height: calc(100vh - 126px);
  }
}
.search-result-section .search-result-inner .search-label-box {
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .search-result-section .search-result-inner .search-label-box {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .search-label-box {
    margin-bottom: 20px;
  }
}
.search-result-section .search-result-inner .search-label-box:last-child {
  margin-bottom: 0;
}
.search-result-section .search-result-inner .search-label-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .search-result-section .search-result-inner .search-label-wrapper {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .search-label-wrapper {
    margin-bottom: 16px;
  }
}
.search-result-section .search-result-inner .search-label-wrapper .search-result-link {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: color-mix(in srgb, var(--secondary) 60%, transparent);
}
.search-result-section .search-result-inner .search-result-label {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: var(--primary);
}
.search-result-section .search-result-inner .course-grid.grid-4 .course-box__meta {
  margin-top: 16px;
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .course-grid.grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .course-grid .course-box {
    background-color: transparent;
    padding: 0;
  }
}
.search-result-section .search-result-inner .course-grid .course-box .course-box__body {
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .course-grid .course-box .course-box__content {
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .course-grid .course-box .course-box__title {
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .course-grid .course-box .course-box__media {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .course-grid .course-box .course-box__meta {
    margin-top: 0;
  }
}
.search-result-section .search-result-inner .search-all-link {
  text-align: center;
}
.search-result-section .search-result-inner .search-all-link .link-btn {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.search-result-section .search-result-inner .search-all-link .link-btn:focus, .search-result-section .search-result-inner .search-all-link .link-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.search-result-section .search-result-inner .search-all-link .link-btn {
  background-color: transparent;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
}
.search-result-section .search-result-inner .no-result {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 40px;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .search-result-section .search-result-inner .no-result {
    row-gap: 30px;
    padding: 40px 0;
  }
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .no-result {
    row-gap: 20px;
    padding: 30px 0;
    min-height: calc(100vh - 126px);
    height: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .search-result-section .search-result-inner .no-result {
    padding: 24px 0;
  }
}
.search-result-section .search-result-inner .no-result .no-result-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .search-result-section .search-result-inner .no-result .no-result-title {
    font-size: 18px;
    line-height: 24px;
  }
}

/*========== Footer Css Start here  ============*/
.footer {
  border-top: 1px solid color-mix(in srgb, var(--secondary) 40%, transparent);
  background: #FFFFFF;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
@media only screen and (max-width: 991px) {
  .footer-top {
    padding: 20px 0;
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-top {
    flex-direction: column;
  }
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  .footer-nav {
    gap: 12px 30px;
  }
}
.footer-nav li:first-child a::after {
  display: none;
}
.footer-nav a {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #727376;
  transition: color 0.2s;
  position: relative;
}
.footer-nav a::after {
  content: "";
  position: absolute;
  left: -22px;
  bottom: 0;
  top: 0;
  width: 4px;
  height: 4px;
  background-color: #000000;
  margin: auto 0;
  border-radius: 50%;
}
@media only screen and (max-width: 991px) {
  .footer-nav a::after {
    left: -16px;
  }
}
.footer-nav a:hover {
  color: #000000;
}

.footer-copy {
  padding: 24px 0;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .footer-copy {
    padding: 20px 0;
  }
}
.footer-copy p {
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.5);
}

/* ========= Home Page Css Start here  ============*/
.hero-section {
  width: 100%;
  background: url(../../images/hero-bg.png) no-repeat center center;
  background-size: cover;
  padding: 130px 0 40px;
}
.hero-section .hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 88px;
}
@media only screen and (max-width: 1279px) {
  .hero-section .hero-inner {
    gap: 60px;
  }
}
@media only screen and (max-width: 1199px) {
  .hero-section .hero-inner {
    gap: 40px;
  }
}
.hero-section .hero-left {
  width: 58%;
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-left {
    width: 52%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    text-align: center;
  }
}
.hero-section .hero-left .users {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .users {
    flex-direction: column;
    align-items: center;
  }
}
.hero-section .hero-left .users .user-images {
  display: flex;
}
.hero-section .hero-left .users picture {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  position: relative;
}
.hero-section .hero-left .users picture img {
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  overflow: hidden;
}
.hero-section .hero-left .users picture:nth-child(2) {
  margin-left: -12px;
}
.hero-section .hero-left .users picture:nth-child(3) {
  margin-left: -12px;
}
.hero-section .hero-left .users picture:nth-child(4) {
  margin-left: -12px;
}
.hero-section .hero-left .users span {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  max-width: 328px;
  width: 100%;
}
.hero-section .hero-left .banner-heading {
  font-size: 62px;
  line-height: 75px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1150px) {
  .hero-section .hero-left .banner-heading {
    font-size: 54px;
    line-height: 64px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-left .banner-heading {
    font-size: 50px;
    line-height: 58px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-left .banner-heading {
    font-size: 46px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 359px) {
  .hero-section .hero-left .banner-heading {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero-section .hero-right {
  flex: 1;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-right {
    display: none;
  }
}
.hero-section .hero-right .hero-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 589px;
}
.hero-section .hero-right .hero-img-card::before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31%, #000000 100%);
}
.hero-section .hero-right .hero-img-card picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-section .hero-right .hero-img-card picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero-section .hero-right .hero-img-card .tags {
  padding: 24px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-section .hero-right .hero-img-card .tags span {
  background: color-mix(in srgb, var(--primary) 5%, transparent);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  color: #ffffff;
  position: relative;
}
.hero-section .hero-right .hero-img-card .tags span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 1px 0px 0px 0px;
  background: linear-gradient(-45deg, color-mix(in srgb, var(--primary) 5%, transparent), rgb(255, 255, 255));
  -webkit-mask: linear-gradient(var(--primary) 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  backdrop-filter: blur(10px);
}
.hero-section .hero-right .hero-img-card .tags span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 0 0px 1px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgb(255, 255, 255));
  -webkit-mask: linear-gradient(var(--primary) 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  backdrop-filter: blur(10px);
}
.hero-section .hero-right .shape {
  position: absolute;
  width: 160px;
  min-width: 160px;
  height: 160px;
  min-height: 160px;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 991px) {
  .hero-section .hero-right .shape {
    left: -60px;
    width: 120px;
    min-width: 120px;
    height: 120px;
    min-height: 120px;
  }
}

.our-community-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .our-community-section {
    padding: 20px 0;
  }
}
.our-community-section .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .our-community-section .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.our-community-section .container .community-box {
  padding: 0 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  font-weight: 400;
}
@media only screen and (max-width: 1279px) {
  .our-community-section .container .community-box {
    padding: 0 40px;
  }
}
@media only screen and (max-width: 991px) {
  .our-community-section .container .community-box {
    padding: 0 24px;
  }
}
@media only screen and (max-width: 767px) {
  .our-community-section .container .community-box {
    padding: 24px 0px;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.our-community-section .container .community-box:first-child {
  padding-left: 0;
}
.our-community-section .container .community-box:last-child {
  padding-right: 0;
  border-right: none;
}
@media only screen and (max-width: 767px) {
  .our-community-section .container .community-box:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.our-community-section .container .community-box span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 16px;
  color: #222222;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 6px 12px;
  border-radius: 12px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -ms-border-radius: 12px;
  -o-border-radius: 12px;
}
.our-community-section .container .community-box .community-title {
  display: block;
  margin: 16px 0 10px;
  font-size: 60px;
  line-height: 72px;
  color: #000000;
  font-weight: 400;
}
@media only screen and (max-width: 1279px) {
  .our-community-section .container .community-box .community-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .our-community-section .container .community-box .community-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .our-community-section .container .community-box .community-title {
    font-size: 30px;
    line-height: 40px;
    margin: 10px 0 10px;
  }
}

.top-courses-section {
  width: 100%;
  overflow: hidden;
}

.top-courses-slider {
  overflow: visible;
}
.top-courses-slider .swiper-slide {
  background-color: #f4f2ea;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 20px;
  transition: background-color 0.3s ease;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media only screen and (max-width: 767px) {
  .top-courses-slider .swiper-slide {
    padding: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
}
.top-courses-slider .swiper-slide:hover {
  background-color: var(--primary);
}
.top-courses-slider .swiper-slide:hover .courses-slide-content {
  color: #FFFFFF;
}
.top-courses-slider .swiper-slide:hover .slide-title {
  color: #FFFFFF;
}
.top-courses-slider .swiper-slide:hover .arrow-title .arrow-btn {
  background-color: #FFFFFF;
  transform: rotate(0deg);
}
.top-courses-slider .swiper-slide:hover .arrow-title .arrow-btn img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(12deg) brightness(102%) contrast(103%);
}
.top-courses-slider .swiper-slide.image-shape {
  background-color: var(--primary);
  overflow: hidden;
}
.top-courses-slider .swiper-slide.image-shape > picture {
  position: relative;
  top: -20px;
  left: -20px;
  padding-bottom: 87%;
}
@media only screen and (max-width: 767px) {
  .top-courses-slider .swiper-slide.image-shape > picture {
    top: -15px;
    left: -15px;
  }
}
.top-courses-slider .swiper-slide.image-shape > picture .shape {
  position: absolute;
  inset: 0;
  transform: scale(1.2) translate(35px, 7px);
}
@media only screen and (max-width: 1199px) {
  .top-courses-slider .swiper-slide.image-shape > picture .shape {
    transform: scale(1.2) translate(30px, 5px);
  }
}
@media only screen and (max-width: 991px) {
  .top-courses-slider .swiper-slide.image-shape > picture .shape {
    transform: scale(1.2) translate(25px, 3px);
  }
}
@media only screen and (max-width: 767px) {
  .top-courses-slider .swiper-slide.image-shape > picture .shape {
    transform: scale(1.2) translate(23px, 3px);
  }
}
.top-courses-slider .swiper-slide.image-shape > picture .shape svg {
  width: 100%;
  height: 100%;
}
.top-courses-slider .swiper-slide.image-shape > picture .shape svg path {
  fill: var(--primary);
}
.top-courses-slider .swiper-slide.image-shape .courses-slide-content {
  margin-top: 0px;
  color: #FFFFFF;
}
.top-courses-slider .swiper-slide.image-shape .slide-title {
  color: #FFFFFF;
}
.top-courses-slider .swiper-slide.image-shape .arrow-title .arrow-btn {
  background-color: #FFFFFF;
}
.top-courses-slider .swiper-slide.image-shape .arrow-title .arrow-btn img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(12deg) brightness(102%) contrast(103%);
}
.top-courses-slider .swiper-slide > picture {
  padding-bottom: 81%;
  position: relative;
  width: 100%;
}
.top-courses-slider .swiper-slide > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.top-courses-slider .swiper-slide .courses-slide-content {
  margin-top: 30px;
  font-size: 14px;
  line-height: 20px;
  color: #222222;
  font-weight: 400;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .top-courses-slider .swiper-slide .courses-slide-content {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .top-courses-slider .swiper-slide .courses-slide-content {
    margin-top: 20px;
  }
}
.top-courses-slider .swiper-slide .arrow-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.top-courses-slider .swiper-slide .slide-title {
  flex: 1;
  max-width: 340px;
  width: 100%;
  font-size: 26px;
  line-height: 28px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 1279px) {
  .top-courses-slider .swiper-slide .slide-title {
    font-size: 22px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .top-courses-slider .swiper-slide .slide-title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .top-courses-slider .swiper-slide .slide-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.top-courses-slider .swiper-slide .arrow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  background-color: #000000;
  border-radius: 50%;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.top-courses-slider .swiper-slide .arrow-btn:focus, .top-courses-slider .swiper-slide .arrow-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.top-courses-slider .swiper-slide .arrow-btn {
  transform: rotate(-45deg);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .top-courses-slider .swiper-slide .arrow-btn {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .top-courses-slider .swiper-slide .arrow-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .top-courses-slider .swiper-slide .arrow-btn {
    width: 30px;
    min-width: 30px;
    height: 30px;
    min-height: 30px;
  }
}
.top-courses-slider .swiper-slide .arrow-btn img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(12deg) brightness(102%) contrast(103%);
}
@media only screen and (max-width: 480px) {
  .top-courses-slider .swiper-slide .arrow-btn img {
    width: 50%;
  }
}
.top-courses-slider .swiper-slide .slide-info-button {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.top-courses-slider .swiper-slide .slide-info-button button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  color: #222222;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.top-courses-slider .swiper-slide .slide-info-button button:focus, .top-courses-slider .swiper-slide .slide-info-button button:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.top-courses-slider .swiper-slide .slide-info-button button {
  background-color: #FFFFFF;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.browse-section {
  background: var(--secondary);
}
.browse-section .section-head {
  color: #FFFFFF;
}
.browse-section .section-head .section-title {
  color: #FFFFFF;
}
.browse-section .section-head p {
  max-width: 378px;
  width: 100%;
  font-weight: 400;
}
@media only screen and (max-width: 575px) {
  .browse-section .section-head p {
    max-width: 100%;
  }
}
.browse-section .category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1279px) {
  .browse-section .category-grid {
    padding-bottom: 40px;
    gap: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .browse-section .category-grid {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .browse-section .category-grid {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 24px;
  }
}
.browse-section .category-grid .cat-card {
  background: #FFFFFF;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .browse-section .category-grid .cat-card {
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
}
.browse-section .category-grid .cat-card .cat-card-head {
  padding: 20px;
}
@media only screen and (max-width: 767px) {
  .browse-section .category-grid .cat-card .cat-card-head {
    padding: 15px;
  }
}
.browse-section .category-grid .cat-card .cat-card-head .cat-icon {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1279px) {
  .browse-section .category-grid .cat-card .cat-card-head .cat-icon {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .browse-section .category-grid .cat-card .cat-card-head .cat-icon {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .browse-section .category-grid .cat-card .cat-card-head .cat-icon {
    margin-bottom: 20px;
  }
}
.browse-section .category-grid .cat-card .cat-card-head .cat-card-title {
  font-size: 26px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 1279px) {
  .browse-section .category-grid .cat-card .cat-card-head .cat-card-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .browse-section .category-grid .cat-card .cat-card-head .cat-card-title {
    font-size: 20px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .browse-section .category-grid .cat-card .cat-card-head .cat-card-title {
    font-size: 18px;
    line-height: 24px;
  }
}
.browse-section .category-grid .cat-card .cat-card-body {
  padding: 20px;
  background-color: rgba(34, 34, 34, 0.05);
}
@media only screen and (max-width: 767px) {
  .browse-section .category-grid .cat-card .cat-card-body {
    padding: 15px;
  }
}
.browse-section .category-grid .cat-card .cat-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 0px 30px;
}
@media only screen and (max-width: 1279px) {
  .browse-section .category-grid .cat-card .cat-features {
    padding: 16px 0px 24px;
  }
}
@media only screen and (max-width: 991px) {
  .browse-section .category-grid .cat-card .cat-features {
    padding: 8px 0px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .browse-section .category-grid .cat-card .cat-features {
    padding: 5px 0px 15px;
  }
}
.browse-section .category-grid .cat-card .cat-features li {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  padding-left: 26px;
}
.browse-section .category-grid .cat-card .cat-features li::before {
  content: "";
  position: absolute;
  left: 0;
  background: url(../../images/round-checkmark.svg) no-repeat center center;
  background-size: contain;
  width: 16px;
  height: 16px;
}
.browse-section .category-grid .cat-card .common-btn {
  width: 100%;
  justify-content: space-between;
}
.browse-section .browse-footer {
  display: flex;
  justify-content: center;
}
.browse-section .browse-footer .common-btn {
  min-width: 150px;
  justify-content: space-between;
}

@media only screen and (max-width: 767px) {
  .plans-section {
    overflow: hidden;
  }
}
.plans-section .descover-inner {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1279px) {
  .plans-section .descover-inner {
    gap: 20px;
  }
}
.plans-section .descover-inner .ai-info {
  max-width: 452px;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  background-color: var(--primary);
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1279px) {
  .plans-section .descover-inner .ai-info {
    max-width: 400px;
    padding: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .plans-section .descover-inner .ai-info {
    padding: 20px;
    max-width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .plans-section .descover-inner .ai-info {
    padding: 15px;
    max-width: calc(100% - 15px);
    width: calc(100% - 15px);
  }
}
.plans-section .descover-inner .ai-info .by {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 18px;
  color: #FFFFFF;
}
.plans-section .descover-inner .ai-info .ai-info-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1279px) {
  .plans-section .descover-inner .ai-info .ai-info-title {
    font-size: 26px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 991px) {
  .plans-section .descover-inner .ai-info .ai-info-title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .plans-section .descover-inner .ai-info .ai-info-title {
    font-size: 20px;
    line-height: 26px;
  }
}
.plans-section .descover-inner .ai-info .slide-info-button {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.plans-section .descover-inner .ai-info .slide-info-button .info-data {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  color: var(--secondary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.plans-section .descover-inner .ai-info .slide-info-button .info-data:focus, .plans-section .descover-inner .ai-info .slide-info-button .info-data:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.plans-section .descover-inner .ai-info .slide-info-button .info-data {
  background-color: #FFFFFF;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.plans-section .descover-inner .plans-swiper-wrap {
  width: calc(100% - 482px);
}
@media only screen and (max-width: 1279px) {
  .plans-section .descover-inner .plans-swiper-wrap {
    width: calc(100% - 420px);
  }
}
@media only screen and (max-width: 991px) {
  .plans-section .descover-inner .plans-swiper-wrap {
    width: calc(100% - 370px);
  }
}
@media only screen and (max-width: 767px) {
  .plans-section .descover-inner .plans-swiper-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .plans-section .descover-inner .plans-swiper-wrap .plans-swiper {
    overflow: visible;
  }
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide {
  padding-bottom: 450px;
  position: relative;
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide .card-body {
  background-color: #FFFFFF;
  padding: 20px;
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 1279px) {
  .plans-section .descover-inner .plans-swiper-wrap .swiper-slide .card-body {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    border-radius: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .plans-section .descover-inner .plans-swiper-wrap .swiper-slide .card-body {
    left: 8px;
    right: 8px;
    bottom: 8px;
    padding: 12px;
    border-radius: 12px;
  }
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide .plans-swiper-title {
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide .slide-info-button {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide .slide-info-button .info-data {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  color: var(--secondary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide .slide-info-button .info-data:focus, .plans-section .descover-inner .plans-swiper-wrap .swiper-slide .slide-info-button .info-data:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.plans-section .descover-inner .plans-swiper-wrap .swiper-slide .slide-info-button .info-data {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.yourgoals-section {
  background-color: #f4f2ea;
}
.yourgoals-section .section-head p {
  max-width: 378px;
  width: 100%;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .yourgoals-section .section-head p {
    max-width: 290px;
  }
}
@media only screen and (max-width: 575px) {
  .yourgoals-section .section-head p {
    max-width: 100%;
  }
}
.yourgoals-section .section-title {
  max-width: 558px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .yourgoals-section .section-title {
    max-width: 100%;
  }
}
.yourgoals-section .goal-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media only screen and (max-width: 1279px) {
  .yourgoals-section .goal-boxes {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .yourgoals-section .goal-boxes {
    gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .yourgoals-section .goal-boxes {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.yourgoals-section .goal-boxes .goal-box {
  background-color: #FFFFFF;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .yourgoals-section .goal-boxes .goal-box {
    padding: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
}
.yourgoals-section .goal-boxes .goal-box .box-number {
  display: inline-block;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  background-color: var(--secondary);
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50%;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1279px) {
  .yourgoals-section .goal-boxes .goal-box .box-number {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .yourgoals-section .goal-boxes .goal-box .box-number {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .yourgoals-section .goal-boxes .goal-box .box-number {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    font-size: 16px;
    margin-bottom: 16px;
  }
}
.yourgoals-section .goal-boxes .goal-box .box-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1279px) {
  .yourgoals-section .goal-boxes .goal-box .box-title {
    font-size: 22px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .yourgoals-section .goal-boxes .goal-box .box-title {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .yourgoals-section .goal-boxes .goal-box .box-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}

.testimonials-section .dtestimonials-inner {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner {
    gap: 20px;
  }
}
.testimonials-section .dtestimonials-inner .what-our {
  max-width: 374px;
  height: 500px;
  width: 100%;
  padding: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  flex-direction: column;
  background: url(../../images/our-testimonials.png) no-repeat center center;
  background-size: cover;
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .what-our {
    max-width: 320px;
    height: 450px;
    padding: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .what-our {
    max-width: 280px;
    height: 400px;
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .what-our {
    padding: 0px;
    max-width: calc(100% - 15px);
    width: calc(100% - 15px);
    height: auto;
    background: none;
    text-align: center;
  }
}
.testimonials-section .dtestimonials-inner .what-our .what-our-title {
  font-size: 46px;
  line-height: 50px;
  font-weight: 500;
  color: #FFFFFF;
  margin-top: auto;
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .what-our .what-our-title {
    font-size: 40px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .what-our .what-our-title {
    font-size: 34px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .what-our .what-our-title {
    font-size: 28px;
    line-height: 34px;
    color: #222222;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper-wrapper {
  width: calc(100% - 398px);
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper-wrapper {
    width: calc(100% - 340px);
  }
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper-wrapper {
    width: calc(100% - 300px);
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper-wrapper {
    width: 100%;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper {
  width: 100%;
  height: 100%;
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide {
  background-color: #F6F6F6;
  padding: 30px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide {
    padding: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide {
    padding: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header {
  font-size: 20px;
  line-height: 30px;
  color: #000000;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header {
    font-size: 16px;
    line-height: 26px;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header .quote-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header .quote-image {
    margin-bottom: 30px;
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header .quote-image {
    margin-bottom: 20px;
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .quote-header .quote-image img {
    width: 60%;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author {
    gap: 12px;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .t-card__avatar {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
@media only screen and (max-width: 1279px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .t-card__avatar {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .t-card__avatar {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .t-card__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .card__author-details {
  flex: 1;
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .card__author-details .t-card__name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #000;
}
@media only screen and (max-width: 991px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .card__author-details .t-card__name {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .card__author-details .t-card__name {
    font-size: 16px;
    line-height: 20px;
  }
}
.testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .card__author-details .t-card__role {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .testimonials-section .dtestimonials-inner .testimonials-swiper .swiper-slide .t-card__author .card__author-details .t-card__role {
    font-size: 14px;
    line-height: 18px;
  }
}

/* ========= Home Page Css End here  ============*/
/* ========= Business Page Css Start here  ============*/
.business-landing-section {
  background: url(../../images/business-landing-bg.png) no-repeat bottom -100px center, #E8F4ED;
}
.business-landing-section .business-landing-inner {
  max-width: 942px;
  width: 100%;
  margin: 0 auto;
}
.business-landing-section .business-landing-content {
  max-width: 812px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}
.business-landing-section .business-landing-content p {
  max-width: 526px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 30px;
}
.business-landing-section .business-landing-content p:last-child {
  padding-bottom: 0;
}
.business-landing-section .business-landing-title {
  font-size: 56px;
  line-height: 64px;
  color: #000000;
  font-weight: 500;
  padding-bottom: 16px;
}
@media only screen and (max-width: 1279px) {
  .business-landing-section .business-landing-title {
    font-size: 50px;
    line-height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .business-landing-section .business-landing-title {
    font-size: 40px;
    line-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .business-landing-section .business-landing-title {
    font-size: 30px;
    line-height: 40px;
  }
}
.business-landing-section .business-landing-image {
  position: relative;
  margin-bottom: -1px;
}

.logo-section {
  padding: 34px 0 0;
  background-color: #F4F2EA;
}
@media only screen and (max-width: 767px) {
  .logo-section {
    padding: 26px 0 0;
  }
}
.logo-section .logo-slider {
  overflow: hidden;
}
.logo-section .swiper-wrapper {
  transition-timing-function: linear !important;
}
.logo-section .swiper-slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-section .logo-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.logo-section .logo-item img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 36px;
  opacity: 0.72;
}
@media only screen and (max-width: 991px) {
  .logo-section .logo-item img {
    height: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .logo-section .logo-item img {
    height: 28px;
  }
}

.time-progress-section {
  background-color: #F4F2EA;
}
.time-progress-section .time-progress-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
@media only screen and (max-width: 767px) {
  .time-progress-section .time-progress-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.time-progress-section .time-progress-content {
  max-width: 505px;
  width: 100%;
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.6);
}
.time-progress-section .time-progress-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 260px;
  padding-left: 110px;
}
@media only screen and (max-width: 991px) {
  .time-progress-section .time-progress-visual {
    width: 100%;
    justify-content: center;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .time-progress-section .time-progress-visual {
    min-height: auto;
    flex-direction: column;
    gap: 18px;
  }
}
.time-progress-section .time-progress-team {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  padding: 10px 10px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.1019607843);
  z-index: 2;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .time-progress-team {
    left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .time-progress-section .time-progress-team {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: -10px;
  }
}
.time-progress-section .time-progress-team .member {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FFFFFF;
  margin-left: -8px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .time-progress-team .member {
    width: 45px;
    min-width: 45px;
    height: 45px;
    min-height: 45px;
    margin-left: -6px;
  }
}
.time-progress-section .time-progress-team .member:first-child {
  margin-left: 0;
}
.time-progress-section .time-progress-team .member img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.time-progress-section .time-progress-card {
  width: 428px;
  max-width: 100%;
  background: #FFFFFF;
  border-radius: 18px;
  padding: 20px;
  border: 1.24px solid #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .time-progress-section .time-progress-card {
    width: 390px;
  }
}
@media only screen and (max-width: 575px) {
  .time-progress-section .time-progress-card {
    max-width: 100%;
  }
}
.time-progress-section .progress-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #EEF7F1;
  color: #006E46;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .progress-badge {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .time-progress-section .progress-badge {
    margin-bottom: 16px;
  }
}
.time-progress-section .progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .progress-top {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .time-progress-section .progress-top {
    margin-bottom: 16px;
  }
}
.time-progress-section .progress-score {
  font-size: 44px;
  line-height: 110%;
  color: #222222;
  font-weight: 400;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .progress-score {
    font-size: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .time-progress-section .progress-score {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .time-progress-section .progress-score {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .time-progress-section .progress-score {
    font-size: 28px;
  }
}
.time-progress-section .progress-score span {
  font-size: 40px;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .progress-score span {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .time-progress-section .progress-score span {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .time-progress-section .progress-score span {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .time-progress-section .progress-score span {
    font-size: 24px;
  }
}
.time-progress-section .progress-arrow {
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  background-color: var(--secondary);
  flex-shrink: 0;
  padding: 8px;
  text-align: center;
}
.time-progress-section .progress-arrow img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(15deg) brightness(100%) contrast(98%);
}
.time-progress-section .activity-chart {
  height: 178px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 10px;
  padding: 0 2px 0 0;
}
.time-progress-section .activity-chart span {
  width: 4px;
  border-radius: 999px;
  background: #D8DDE1;
  position: relative;
}
.time-progress-section .activity-chart span.is-active {
  background-color: var(--secondary);
}
.time-progress-section .activity-chart span.is-active::before {
  content: " ";
  position: absolute;
  width: 6px;
  min-width: 6px;
  height: 6px;
  min-height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
}
.time-progress-section .activity-labels {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  padding: 0 4px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .activity-labels {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .time-progress-section .activity-labels {
    margin-bottom: 16px;
  }
}
.time-progress-section .activity-labels span {
  font-size: 9px;
  line-height: 12px;
  color: rgba(17, 17, 17, 0.34);
  text-align: center;
}
.time-progress-section .activity-title {
  font-size: 20px;
  line-height: 110%;
  color: #222222;
  text-align: center;
}
@media only screen and (max-width: 1279px) {
  .time-progress-section .activity-title {
    font-size: 18px;
  }
}

.training-needs-section {
  background-color: var(--secondary);
}
.training-needs-section .section-head {
  color: rgba(255, 255, 255, 0.6);
}
.training-needs-section .section-head .section-title {
  color: #FFFFFF;
  max-width: 558px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .training-needs-section .section-head .section-title {
    max-width: 100%;
  }
}
.training-needs-section .section-head p {
  max-width: 480px;
  width: 100%;
}
@media only screen and (max-width: 575px) {
  .training-needs-section .section-head p {
    max-width: 100%;
  }
}
.training-needs-section .training-needs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .training-needs-section .training-needs-grid {
    grid-template-columns: 1fr;
  }
}
.training-needs-section .training-need-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .training-needs-section .training-need-card {
    padding: 15px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .training-needs-section .training-need-card .box-number {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .training-needs-section .training-need-card .box-number {
    width: 45px;
    min-width: 45px;
    height: 45px;
    min-height: 45px;
  }
}
.training-needs-section .training-need-card .box-title {
  font-size: 18px;
  line-height: 125%;
  color: #FFFFFF;
  font-weight: 600;
  margin: 40px 0 6px;
}
@media only screen and (max-width: 1279px) {
  .training-needs-section .training-need-card .box-title {
    margin: 30px 0 6px;
  }
}
@media only screen and (max-width: 991px) {
  .training-needs-section .training-need-card .box-title {
    margin: 24px 0 6px;
  }
}
@media only screen and (max-width: 767px) {
  .training-needs-section .training-need-card .box-title {
    margin: 20px 0 6px;
  }
}

.structured-learning-section {
  background-color: #F4F2EA;
}
.structured-learning-section .structured-learning-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .structured-learning-section .structured-learning-inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 24px;
  }
}
.structured-learning-section .structured-learning-visual {
  max-width: 543px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .structured-learning-section .structured-learning-visual {
    max-width: 100%;
    text-align: center;
  }
}
.structured-learning-section .structured-learning-content {
  max-width: 543px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .structured-learning-section .structured-learning-content {
    max-width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .structured-learning-section .structured-learning-content {
    text-align: center;
  }
}
.structured-learning-section .structured-learning-content .section-title {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .structured-learning-section .structured-learning-content .section-title {
    margin-bottom: 16px;
  }
}
.structured-learning-section .structured-learning-content p {
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .structured-learning-section .structured-learning-content p {
    font-size: 16px;
  }
}

.how-it-works-section {
  background: #FFFFFF;
}
.how-it-works-section .how-it-works-head {
  text-align: center;
  margin-bottom: 36px;
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-head {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-head {
    margin-bottom: 24px;
  }
}
.how-it-works-section .how-it-works-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-layout {
    gap: 16px;
  }
}
.how-it-works-section .how-it-works-layout > div {
  width: calc(33.33% - 16px);
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-layout > div {
    width: calc(33.33% - 11px);
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-layout > div {
    width: calc(50% - 8px);
  }
}
@media only screen and (max-width: 575px) {
  .how-it-works-section .how-it-works-layout > div {
    width: 100%;
  }
}
.how-it-works-section .how-it-works-layout .how-it-works-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-layout .how-it-works-cta {
    order: 4;
  }
}
.how-it-works-section .how-it-works-layout .step-column {
  display: grid;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-layout .step-column {
    gap: 16px;
  }
}
.how-it-works-section .how-it-works-layout .work-step-card {
  background: #EEEEEE;
  border-radius: 20px;
  padding: 20px;
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-layout .work-step-card {
    border-radius: 15px;
    padding: 15px;
  }
}
.how-it-works-section .how-it-works-layout .work-step-card h3 {
  font-size: 20px;
  line-height: 125%;
  color: #000000;
  font-weight: 600;
  margin-bottom: 14px;
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-layout .work-step-card h3 {
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-layout .work-step-card h3 {
    margin-bottom: 8px;
  }
}
.how-it-works-section .how-it-works-layout .work-step-card p {
  font-size: 16px;
  line-height: 130%;
  color: rgba(0, 0, 0, 0.6);
}
.how-it-works-section .how-it-works-layout .step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 20px;
  background: #FFFFFF;
  color: var(--primary);
  font-size: 16px;
  line-height: 125%;
  font-weight: 600;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .how-it-works-section .how-it-works-layout .step-tag {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-layout .step-tag {
    margin-bottom: 16px;
  }
}
.how-it-works-section .how-it-works-layout .work-image-card {
  position: relative;
  height: 548px;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-layout .work-image-card {
    height: auto;
    width: 100%;
    order: 3;
  }
}
.how-it-works-section .how-it-works-layout .work-image-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
@media only screen and (max-width: 767px) {
  .how-it-works-section .how-it-works-layout .work-image-card img {
    border-radius: 15px;
  }
}

.business-faq-section {
  background-color: #F4F2EA;
}
.business-faq-section .business-faq-head {
  text-align: center;
  margin-bottom: 30px;
}
.business-faq-section .business-faq-head .section-title {
  margin-bottom: 10px;
}
.business-faq-section .business-faq-head p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.55);
}
.business-faq-section .business-faq-accordion {
  max-width: 894px;
  width: 100%;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 767px) {
  .business-faq-section .business-faq-accordion {
    margin-bottom: 20px;
  }
}
.business-faq-section .business-faq-accordion .faq-item {
  padding: 0 20px;
  background: #FFFFFF;
  border: none;
}
@media only screen and (max-width: 767px) {
  .business-faq-section .business-faq-accordion .faq-item {
    padding: 0 16px;
  }
}
.business-faq-section .business-faq-accordion .faq-item-header {
  color: #121212;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  padding: 20px 0;
  padding-right: 22px;
}
@media only screen and (max-width: 767px) {
  .business-faq-section .business-faq-accordion .faq-item-header {
    font-size: 18px;
    line-height: 22px;
    padding: 16px 0;
    padding-right: 22px;
  }
}
.business-faq-section .business-faq-accordion .faq-item-header:hover, .business-faq-section .business-faq-accordion .faq-item-header.active {
  background: transparent;
}
.business-faq-section .business-faq-accordion .faq-item-header .angle-icon {
  right: 0px;
}
.business-faq-section .business-faq-accordion .faq_body_inner {
  padding: 16px 0 20px;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 767px) {
  .business-faq-section .business-faq-accordion .faq_body_inner {
    padding: 16px 0 16px;
  }
}
.business-faq-section .business-faq-cta {
  max-width: 894px;
  width: 100%;
  margin: 0 auto;
  background: #0D4A4D;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media only screen and (max-width: 767px) {
  .business-faq-section .business-faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.business-faq-section .business-faq-cta h3 {
  font-size: 20px;
  line-height: 24px;
  color: #FFFFFF;
  margin-bottom: 6px;
}
@media only screen and (max-width: 767px) {
  .business-faq-section .business-faq-cta h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.business-faq-section .business-faq-cta p {
  font-size: 12px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-section .section-head {
  color: rgba(0, 0, 0, 0.6);
}
.testimonial-section .section-head .section-title {
  margin-bottom: 0;
}
.testimonial-section .section-head p {
  max-width: 480px;
  width: 100%;
}
.testimonial-section .business-testimonial-slider {
  overflow: hidden;
  margin-bottom: 22px;
}
.testimonial-section .swiper-slide {
  height: auto;
}
.testimonial-section .testimonial-card {
  min-height: 244px;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-card {
    min-height: auto;
    border-radius: 15px;
    padding: 15px;
  }
}
.testimonial-section .testimonial-card p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  color: #000000;
}
.testimonial-section .testimonial-user {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-user {
    gap: 16px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-user {
    margin-bottom: 20px;
  }
}
.testimonial-section .testimonial-user img {
  width: 60px;
  min-width: 60px;
  height: 60px;
  min-height: 60px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-user img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    min-height: 50px;
  }
}
.testimonial-section .testimonial-user-info h3 {
  font-size: 20px;
  line-height: 125%;
  color: #000000;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-user-info h3 {
    font-size: 18px;
    line-height: 22px;
  }
}
.testimonial-section .testimonial-user-info span {
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  color: #000000;
}
.testimonial-section .testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.testimonial-section .testimonial-nav > button {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  padding: 0;
  cursor: pointer;
}
.testimonial-section .testimonial-nav > button.business-testimonial-next img {
  transform: rotate(180deg);
}
.testimonial-section .testimonial-nav > button.swiper-button-disabled {
  background: transparent;
}
.testimonial-section .testimonial-nav > button.swiper-button-disabled img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(88%) saturate(3643%) hue-rotate(4deg) brightness(104%) contrast(109%);
}

.yourgoals-section.group-learning {
  background-color: rgba(0, 0, 0, 0.5);
  position: relative;
}
.yourgoals-section.group-learning::before {
  content: " ";
  position: absolute;
  inset: 0;
  background: url(../../images/group-learning-bg.png) no-repeat center center, #E8F4ED;
  background-size: cover;
  z-index: -1;
}
.yourgoals-section.group-learning .section-title {
  color: #FFFFFF;
}
.yourgoals-section.group-learning .section-head {
  color: #ffffff;
}
.yourgoals-section.group-learning .goal-boxes .goal-box .box-number {
  background-color: var(--primary);
}

/* ========= Business Page Css End here  ============*/
.course-hero__card {
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .course-hero__card {
    min-height: 350px;
  }
}
@media only screen and (max-width: 991px) {
  .course-hero__card {
    border-radius: 0px;
  }
}
@media only screen and (max-width: 767px) {
  .course-hero__card {
    min-height: 300px;
  }
}
.course-hero__media {
  width: 100%;
  height: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
}
@media only screen and (max-width: 991px) {
  .course-hero__media {
    position: relative;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
  }
}
.course-hero__media::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 71.59%);
}
.course-hero__media picture,
.course-hero__media img {
  width: 100%;
  height: 100%;
  display: block;
}
.course-hero__media img {
  -o-object-fit: cover;
     object-fit: cover;
}
.course-hero__content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .course-hero__content {
    color: #000;
    position: static;
    padding: 24px 0 0;
  }
}
.course-hero .section-title {
  margin-bottom: 12px;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .course-hero .section-title {
    color: #000;
  }
}
.course-hero__author {
  font-size: 12px;
  line-height: 120%;
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .course-hero__author {
    color: #000;
  }
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  margin-bottom: 24px;
}
.video-thumbnail > video {
  display: block;
  max-height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
  max-width: 100%;
  height: 100%;
  width: 100%;
  cursor: pointer;
  -o-object-fit: fill;
     object-fit: fill;
  border-radius: 20px;
}
.video-thumbnail .play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.video-thumbnail .play-button-wrapper .play-gif {
  transition: all 0.3s ease;
  max-width: 80px;
  width: 80px;
  max-height: 80px;
  height: 80px;
  border-radius: 100%;
  position: relative;
  cursor: pointer;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .video-thumbnail .play-button-wrapper .play-gif {
    max-width: 65px;
    width: 65px;
    max-height: 65px;
    height: 65px;
  }
}
@media screen and (max-width: 480px) {
  .video-thumbnail .play-button-wrapper .play-gif {
    max-width: 60px;
    width: 60px;
    max-height: 60px;
    height: 60px;
  }
}
.video-thumbnail .play-button-wrapper picture, .video-thumbnail .play-button-wrapper img {
  border-radius: 0;
  width: auto;
  max-width: 15px;
}
.video-thumbnail .play-button-wrapper .stop-icon {
  display: none;
}
.video-thumbnail .play-button-wrapper.pause .play-gif {
  opacity: 0;
}
.video-thumbnail .play-button-wrapper.pause .play-icon {
  display: none;
}
.video-thumbnail .play-button-wrapper.pause .stop-icon {
  display: block;
}
.video-thumbnail:hover .play-button-wrapper.pause .play-gif {
  opacity: 1;
}
.video-thumbnail iframe {
  border: none;
  vertical-align: middle;
  width: 100%;
}

.course-detail-section {
  padding-top: 24px;
}

.course-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.81fr);
  gap: 32px;
  align-items: start;
}
@media only screen and (max-width: 1279px) {
  .course-detail {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }
}
@media only screen and (max-width: 991px) {
  .course-detail {
    grid-template-columns: 100%;
    gap: 30px;
  }
}

.course-detail-description {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 125%;
  color: rgba(0, 0, 0, 0.6);
}
@media only screen and (max-width: 991px) {
  .course-detail-description {
    font-size: 16px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    font-size: 16px;
  }
}
.course-detail-description p {
  padding-top: 11px;
}
.course-detail-description span {
  display: block;
  font-size: 14px;
  line-height: 20px;
  color: var(--secondary);
}

.course-detail-title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
@media only screen and (max-width: 991px) {
  .course-detail-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .course-detail-title {
    font-size: 20px;
  }
}

.slide-info-button {
  pointer-events: none;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
@media only screen and (max-width: 767px) {
  .slide-info-button {
    flex-direction: row;
  }
}
.slide-info-button .info-data {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  color: var(--secondary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.slide-info-button .info-data:focus, .slide-info-button .info-data:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.slide-info-button .info-data {
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.slide-info-button .time-remaining {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #727376;
  font-size: 12px;
  line-height: 20px;
}
@media only screen and (max-width: 575px) {
  .slide-info-button .time-remaining {
    margin-left: 0;
  }
}
.slide-info-button .time-remaining picture {
  line-height: 0;
}
.slide-info-button .time-remaining picture img {
  filter: brightness(0) saturate(100%) invert(60%) sepia(58%) saturate(4880%) hue-rotate(360deg) brightness(101%) contrast(105%);
}

.course-section-title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .course-section-title {
    font-size: 22px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .course-section-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.checkmark-list {
  display: grid;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .checkmark-list {
    gap: 12px;
  }
}
.checkmark-list.flex-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 767px) {
  .checkmark-list.flex-2 {
    grid-template-columns: 1fr;
  }
}
.checkmark-list__item {
  font-size: 12px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
  padding-left: 26px;
}
.checkmark-list__item::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  background: url(../../images/round-checkmark-fill.svg) no-repeat center center;
  background-size: 18px;
}

.course-learn {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 991px) {
  .course-learn {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.course-learn:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.course-curriculum__accordion .faq-item {
  border: none;
  border-radius: 14px;
  background: #F3F6F6;
  margin-bottom: 14px;
}
.course-curriculum__accordion .faq-item-header {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  text-align: left;
  background: transparent !important;
  padding: 20px 14px 20px 44px;
  border: none;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .course-curriculum__accordion .faq-item-header {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    padding: 16px 14px 16px 44px;
  }
}
.course-curriculum__accordion .faq-item-header .angle-icon {
  right: inherit;
  left: 14px;
}
.course-curriculum__accordion .faq-item-header .angle-icon::before {
  background: url(../../images/dropdown-icon.svg) no-repeat center center;
}
@media only screen and (max-width: 767px) {
  .course-curriculum__accordion .faq-item-header .angle-icon {
    top: 28px;
  }
}
.course-curriculum__accordion .faq_body_inner {
  padding: 0 16px 16px;
}
.course-curriculum__heading {
  flex: 1;
  min-width: 0;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
}
.course-curriculum__summary {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.course-curriculum__lessons {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 16px;
}
.course-curriculum__lesson {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}
.course-curriculum__lesson:first-child {
  padding-top: 0;
}
.course-curriculum__lesson:last-child {
  padding-bottom: 0;
}
.course-curriculum__lesson-title {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .course-curriculum__lesson-title {
    font-size: 14px;
  }
}
.course-curriculum__lesson-icon {
  line-height: 0;
}
.course-curriculum__lesson-icon img {
  width: 14px;
  min-width: 14px;
  height: 14px;
  min-height: 14px;
}
.course-curriculum__lesson-duration {
  margin-left: auto;
  font-size: 15px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
}

.course-sidebar {
  position: sticky;
  top: 85px;
}
@media only screen and (max-width: 991px) {
  .course-sidebar {
    position: static;
    top: auto;
    display: flex;
    flex-direction: column;
  }
}
.course-sidebar__card {
  padding: 20px;
  border-radius: 10px;
  background: #F3F6F6;
}
.course-sidebar__title {
  font-size: 18px;
  line-height: 125%;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.course-sidebar .checkmark-list {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.course-sidebar .course-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.course-sidebar .course-price__value {
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  color: #000;
}
.course-sidebar .course-section-title {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 125%;
}
.course-sidebar .course-curriculum__heading {
  font-size: 14px;
  line-height: 20px;
}
.course-sidebar .course-curriculum__lesson-title {
  font-size: 12px;
}
.course-sidebar .course-curriculum__summary {
  font-size: 12px;
}
.course-sidebar .course-curriculum__lesson-duration {
  font-size: 12px;
}
.course-sidebar .button-full {
  padding-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .course-sidebar .button-full {
    padding-top: 16px;
    order: 2;
  }
}
.course-sidebar .enrolled-date {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  padding-bottom: 30px;
  display: block;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .course-sidebar .enrolled-date {
    padding-bottom: 20px;
  }
}
.course-sidebar .enrolled-date span {
  display: inline-block;
  color: var(--secondary);
  font-weight: 500;
}
.course-sidebar .medal-icon {
  display: block;
  text-align: center;
  padding-bottom: 16px;
}
.course-sidebar .enrolled-end {
  display: inline-block;
  padding: 5px 8px;
  background: color-mix(in srgb, var(--secondary) 10%, transparent);
  color: #000000;
  font-size: 14px;
  line-height: 16px;
  border-radius: 20px;
}
.course-sidebar .download-link {
  font-size: 14px;
  line-height: 20px;
  color: var(--secondary);
  font-weight: 400;
}

.coundown {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.coundown__item {
  min-width: 40px;
  padding: 10px 3px;
  border-radius: 5px;
  text-align: center;
  background: linear-gradient(180deg, color-mix(in srgb, var(--secondary) 80%, transparent) 0%, color-mix(in srgb, var(--primary) 80%, transparent) 100%);
}
.coundown__value {
  display: block;
  font-size: 26px;
  line-height: 100%;
  color: #FFFFFF;
  font-weight: 600;
}
@media only screen and (max-width: 991px) {
  .coundown__value {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .coundown__value {
    font-size: 20px;
  }
}
.coundown__label {
  display: block;
  font-size: 7px;
  line-height: 10px;
  color: #FFFFFF;
  font-weight: 500;
  text-transform: uppercase;
}

.page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .page-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0px;
  }
}
.page-head .subtitle {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .page-head .subtitle {
    font-size: 20px;
    line-height: 26px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    width: 100%;
  }
}
.page-head .coundown {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .page-head--quiz-mobile-sticky {
    display: contents;
  }
}
@media only screen and (max-width: 767px) {
  .page-head--quiz-mobile-sticky .subtitle {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .page-head--quiz-mobile-sticky .coundown {
    position: sticky;
    top: 67px;
    z-index: 9;
    width: 100%;
    justify-content: flex-start;
    padding: 12px 0;
    margin-bottom: 16px;
    background: #FFFFFF;
  }
}

.quiz-main {
  background-color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .quiz-main .course-detail.quiz-detail-wrap {
    padding-top: 110px;
    position: relative;
  }
  .quiz-main .course-detail.quiz-detail-wrap .course-sidebar .white-range {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
}
.quiz-main .course-detail.quiz-detail-wrap .video-thumbnail:first-child {
  margin-bottom: 0;
}
.quiz-main .course-detail.quiz-detail-wrap .tab-pane-title {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 16px;
}
.quiz-main .course-detail.quiz-detail-wrap ol {
  list-style-type: decimal;
  padding-left: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.quiz-main .course-detail.quiz-detail-wrap ol:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.quiz-main .course-detail.quiz-detail-wrap ol li {
  margin-bottom: 8px;
}
.quiz-main .course-detail.quiz-detail-wrap ol li:last-child {
  margin-bottom: 0;
}
.quiz-main .course-detail.quiz-detail-wrap .images-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail.quiz-detail-wrap .images-view {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .quiz-main .course-detail.quiz-detail-wrap .images-view {
    grid-template-columns: 1fr;
  }
}
.quiz-main .course-detail.quiz-detail-wrap .images-view picture {
  width: 100%;
  height: 100%;
  display: block;
}
.quiz-main .course-detail.quiz-detail-wrap .images-view picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
.quiz-main .course-detail__quiz {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail__quiz {
    padding: 0;
    border: 0;
  }
}
.quiz-main .course-detail .quiz-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.quiz-main .course-detail .quiz-head:last-child {
  margin-bottom: 0;
}
.quiz-main .course-detail .quiz-head > picture {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .quiz-head > picture {
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
  }
}
.quiz-main .course-detail .quiz-head > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.quiz-main .course-detail .quiz-head p {
  font-size: 16px;
  line-height: 130%;
  color: #000;
  font-weight: 400;
}
.quiz-main .course-detail .quiz-title {
  font-size: 24px;
  line-height: 130%;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width: 1279px) {
  .quiz-main .course-detail .quiz-title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .quiz-main .course-detail .quiz-title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .quiz-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .quiz-title {
    font-size: 16px;
  }
}
.quiz-main .course-detail .quiz-details {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.quiz-main .course-detail .quiz-details:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.quiz-main .course-detail .quiz-details .quiz-details-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
.quiz-main .course-detail .quiz-details .quiz-details-title:last-child {
  margin-bottom: 0;
}
.quiz-main .course-detail .quiz-details .marks-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 16px;
}
.quiz-main .course-detail .quiz-details p {
  padding-bottom: 16px;
}
.quiz-main .course-detail .quiz-details p:last-child {
  padding-bottom: 0;
}
.quiz-main .course-detail .quiz-details .custom-inputs {
  flex-wrap: wrap;
  gap: 16px;
}
.quiz-main .course-detail .quiz-details .custom-inputs .custom-input-btn {
  width: calc(50% - 8px);
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .quiz-details .custom-inputs .custom-input-btn {
    width: 100%;
  }
}
.quiz-main .course-detail .slide-info-button {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding-top: 0;
}
.quiz-main .course-detail .slide-info-button:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.quiz-main .course-detail .slide-info-button .info-data {
  font-size: 14px;
  line-height: 20px;
  padding: 7px 10px;
}
.quiz-main .course-detail .reodering-quiz {
  display: grid;
  gap: 12px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.quiz-main .course-detail .reodering-quiz:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.quiz-main .course-detail .reodering-quiz .reorder-row {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: opacity 0.2s ease;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .reodering-quiz .reorder-row {
    gap: 8px;
  }
}
.quiz-main .course-detail .reodering-quiz .reorder-row.is-dragging {
  opacity: 0.55;
}
.quiz-main .course-detail .reodering-quiz .reorder-count {
  flex: 0 0 16px;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .reodering-quiz .reorder-count {
    font-size: 14px;
  }
}
.quiz-main .course-detail .reodering-quiz .reorder-item {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 14px;
  border-radius: 14px;
  background: #F3F6F6;
  cursor: move;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .reodering-quiz .reorder-item {
    padding: 16px 12px;
  }
}
.quiz-main .course-detail .reodering-quiz .reorder-item:hover {
  background: #EEF2F2;
}
.quiz-main .course-detail .reodering-quiz .reorder-row.is-dragging .reorder-item {
  background: #E9EEEE;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.quiz-main .course-detail .reodering-quiz .reorder-row.is-drop-target .reorder-item {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}
.quiz-main .course-detail .reodering-quiz .drag-handle {
  flex: 0 0 12px;
  line-height: 0;
  opacity: 0.35;
}
.quiz-main .course-detail .reodering-quiz .drag-handle picture,
.quiz-main .course-detail .reodering-quiz .drag-handle img {
  display: block;
}
.quiz-main .course-detail .reodering-quiz .order-img {
  height: 80px;
  width: 80px;
  min-width: 80px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .reodering-quiz .order-img {
    height: 60px;
    width: 60px;
    min-width: 60px;
  }
}
.quiz-main .course-detail .reodering-quiz .order-img picture {
  height: 100%;
  width: 100%;
}
.quiz-main .course-detail .reodering-quiz .order-img picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.quiz-main .course-detail .reodering-quiz .item-text {
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .reodering-quiz .item-text {
    font-size: 15px;
  }
}
.quiz-main .course-detail .matching-quiz {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: 18px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .matching-quiz {
    gap: 10px;
  }
}
.quiz-main .course-detail .matching-quiz .reorder-row {
  min-width: 0;
  flex: 0 1 calc(25% - 9px);
  transition: opacity 0.2s ease;
}
@media only screen and (max-width: 991px) {
  .quiz-main .course-detail .matching-quiz .reorder-row {
    flex-basis: calc(50% - 6px);
  }
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .matching-quiz .reorder-row {
    flex-basis: 100%;
  }
}
.quiz-main .course-detail .matching-quiz .reorder-row.is-dragging {
  opacity: 0.55;
}
.quiz-main .course-detail .matching-quiz .reorder-item {
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 12.5px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: #F1F4F5;
  cursor: move;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.quiz-main .course-detail .matching-quiz .reorder-item:hover {
  background: #ECF1F2;
  border-color: rgba(0, 0, 0, 0.06);
}
.quiz-main .course-detail .matching-quiz .reorder-item.is-dragging {
  opacity: 0.7;
}
.quiz-main .course-detail .matching-quiz .reorder-row.is-dragging .reorder-item {
  background: #E9EEEE;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.quiz-main .course-detail .matching-quiz .reorder-row.is-drop-target .reorder-item {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}
.quiz-main .course-detail .matching-quiz .drag-handle {
  flex: 0 0 12px;
  line-height: 0;
  opacity: 0.35;
}
.quiz-main .course-detail .matching-quiz .drag-handle picture,
.quiz-main .course-detail .matching-quiz .drag-handle img {
  display: block;
}
.quiz-main .course-detail .matching-quiz .item-text {
  min-width: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .matching-quiz .item-text {
    font-size: 15px;
  }
}
.quiz-main .course-detail .matching-quiz-wrap {
  padding-bottom: 20px;
}
.quiz-main .course-detail .matching-quiz-wrap:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.quiz-main .course-detail .matching-answer-list {
  display: grid;
  gap: 12px;
  padding-top: 20px;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .matching-answer-list {
    max-width: 100%;
  }
}
.quiz-main .course-detail .matching-answer-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .matching-answer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
.quiz-main .course-detail .matching-answer-label {
  flex: 0 0 100px;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .quiz-main .course-detail .matching-answer-label {
    font-size: 15px;
    flex: 0 0 auto;
  }
}
.quiz-main .course-detail .matching-answer-dropzone {
  flex: 0 0 180px;
  width: 180px;
  min-height: 46px;
  padding: 7px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px dashed #C6D7E3;
  border-radius: 8px;
  background: #FFFFFF;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.quiz-main .course-detail .matching-answer-dropzone.is-over {
  border-color: #8CB4CD;
  background: #F7FBFD;
  box-shadow: 0 0 0 3px rgba(140, 180, 205, 0.18);
}
.quiz-main .course-detail .matching-answer-dropzone.has-value {
  border-style: solid;
  border-color: #D8E4EC;
  background: #FFFFFF;
  color: #000;
}
.quiz-main .course-detail .matching-answer-dropzone .placeholder-text {
  color: rgba(0, 0, 0, 0.42);
}
.quiz-main .course-detail .matching-answer-dropzone .reorder-item {
  background: #F1F4F5;
  border-radius: 8px;
  min-height: 30px;
  width: 100%;
  padding: 6px 10px;
  border: none;
  box-shadow: none;
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .matching-answer-dropzone {
    width: 100%;
    flex-basis: auto;
    justify-content: flex-start;
  }
}
.quiz-main .course-detail .img-quiz-wrap {
  display: grid;
  gap: 18px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.quiz-main .course-detail .img-quiz-card {
  display: grid;
  gap: 10px;
}
.quiz-main .course-detail .img-quiz-card__media {
  width: 240px;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #F3F6F6;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .img-quiz-card__media {
    width: 200px;
  }
}
.quiz-main .course-detail .img-quiz-card__media picture,
.quiz-main .course-detail .img-quiz-card__media img {
  display: block;
  width: 100%;
  height: 153px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .img-quiz-card__media picture,
  .quiz-main .course-detail .img-quiz-card__media img {
    height: 120px;
  }
}
.quiz-main .course-detail .img-quiz-card__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  margin: 0;
}
.quiz-main .course-detail .img-quiz-card__input {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid #F6F6F6;
  border-radius: 50px;
  background: #F6F6F6;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.quiz-main .course-detail .img-quiz-card__input::-moz-placeholder {
  color: rgba(0, 0, 0, 0.48);
}
.quiz-main .course-detail .img-quiz-card__input::placeholder {
  color: rgba(0, 0, 0, 0.48);
}
.quiz-main .course-detail .img-quiz-card__input:focus, .quiz-main .course-detail .img-quiz-card__input:hover {
  background: #FFFFFF;
  border-color: #000;
  box-shadow: none;
}
.quiz-main .course-detail .ture-false-wrap {
  padding-bottom: 20px;
}
.quiz-main .course-detail .ture-false-options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .ture-false-options {
    gap: 10px;
  }
}
.quiz-main .course-detail .ture-false-option {
  flex: 1;
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 13px 10px;
  border: 1px solid #E5E7EB;
  border-radius: 6px;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .ture-false-option {
    flex: 1 1 100%;
  }
}
.quiz-main .course-detail .ture-false-option input {
  cursor: pointer;
  position: absolute;
  inset: 0;
  opacity: 0;
}
.quiz-main .course-detail .ture-false-option input:checked ~ .ture-false-option__mark {
  border-color: var(--primary);
}
.quiz-main .course-detail .ture-false-option input:checked ~ .ture-false-option__mark::after {
  opacity: 1;
}
.quiz-main .course-detail .ture-false-option__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  background-color: #FFFFFF;
  border: 1px solid #727376;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.quiz-main .course-detail .ture-false-option__mark::after {
  content: "";
  width: 10px;
  min-width: 10px;
  height: 10px;
  min-height: 10px;
  background: var(--primary);
  margin: auto;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
  inset: 0;
}
.quiz-main .course-detail .ture-false-option__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
}
.quiz-main .course-detail .fill-blank-wrap {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}
.quiz-main .course-detail .fill-blank-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.quiz-main .course-detail .fill-blank-option {
  min-height: 54px;
  min-width: 120px;
  padding: 0 18px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border: 1px solid #D8DEE4;
  border-radius: 8px;
  background: #FFFFFF;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}
.quiz-main .course-detail .fill-blank-option input {
  cursor: pointer;
  position: absolute;
  inset: 0;
  opacity: 0;
}
.quiz-main .course-detail .fill-blank-option:hover {
  border-color: #C6D1DA;
}
.quiz-main .course-detail .fill-blank-option input:checked ~ .fill-blank-option__mark {
  background: var(--primary);
  border-color: var(--primary);
}
.quiz-main .course-detail .fill-blank-option input:checked ~ .fill-blank-option__mark::after {
  opacity: 1;
}
.quiz-main .course-detail .fill-blank-option__mark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  background-color: #FFFFFF;
  border: 1px solid #7D7F82;
  border-radius: 5px;
  transition: all 0.2s ease;
}
.quiz-main .course-detail .fill-blank-option__mark::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: url("../../images/check-right-icon.svg") no-repeat center center/11px;
  transition: opacity 0.2s ease;
}
.quiz-main .course-detail .fill-blank-option__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #000;
  white-space: nowrap;
}
.quiz-main .course-detail .quiz-footer {
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .quiz-footer {
    padding-top: 10px;
  }
}
.quiz-main .course-detail .quiz-footer .sn-btn {
  padding-left: 18px;
  padding-right: 18px;
}
.quiz-main .course-detail .quiz-footer .text-btn {
  margin-left: auto !important;
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .quiz-footer .text-btn {
    width: auto;
    flex: none !important;
  }
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .quiz-footer .sq-btn {
    width: auto;
    flex: none !important;
  }
}
@media only screen and (max-width: 575px) {
  .quiz-main .course-detail .quiz-footer .common-btn {
    flex: 1 1 100%;
    text-align: center;
    margin-left: 0;
  }
}
.quiz-main .courses-table-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}
.quiz-main .courses-table-wrapper:last-child {
  margin-bottom: 0;
}
.quiz-main .course-curriculum__accordion .faq-item {
  background: #F3F6F6;
}
.quiz-main .course-curriculum__lessons {
  background: #FFFFFF;
}
.quiz-main .tab-content {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
}
.quiz-main .tab-content p {
  margin-bottom: 16px;
}
.quiz-main .tab-content p:last-child {
  margin-bottom: 0;
}
.quiz-main .horizontal-line {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.quiz-main .assignment-attachments__section {
  margin-bottom: 30px;
}
.quiz-main .assignment-attachments__section:last-child {
  margin-bottom: 0;
}
.quiz-main .assignment-attachments__title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 16px;
}
.quiz-main .assignment-file-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--primary) 10%, transparent);
}
.quiz-main .assignment-file-card__left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.quiz-main .assignment-file-card__icon {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--primary);
  flex-shrink: 0;
  padding: 11px;
}
.quiz-main .assignment-file-card__icon img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.quiz-main .assignment-file-card__content {
  min-width: 0;
}
.quiz-main .assignment-file-card__name {
  display: block;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.quiz-main .assignment-file-card__meta {
  display: block;
  font-size: 14px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
}
.quiz-main .assignment-file-card__download {
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: #FFFFFF;
  flex-shrink: 0;
  padding: 0;
}
.quiz-main .assignment-file-card__download img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 767px) {
  .quiz-main .assignment-file-card {
    max-width: 100%;
  }
}
.quiz-main .assignment-editor {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
  margin-bottom: 30px;
}
.quiz-main .assignment-editor__toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.quiz-main .assignment-editor__tool {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 30px;
  height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(0, 0, 0, 0.75);
  font-size: 16px;
  line-height: 1;
  padding: 0 6px;
}
.quiz-main .assignment-editor__tool--select {
  min-width: auto;
  padding: 0 10px;
  font-size: 14px;
  line-height: 18px;
}
.quiz-main .assignment-editor__tool img {
  width: 10px;
  height: 6px;
  -o-object-fit: contain;
     object-fit: contain;
}
.quiz-main .assignment-editor__color {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 4px;
  background: #202020;
}
.quiz-main .assignment-editor__body {
  padding: 18px 16px;
  font-size: 16px;
  line-height: 28px;
  color: rgba(0, 0, 0, 0.85);
  min-height: 280px;
}
.quiz-main .assignment-editor__body p {
  margin-bottom: 12px;
}
.quiz-main .assignment-editor__body ol {
  margin: 0;
  padding-left: 24px;
}
.quiz-main .assignment-editor__body ol li {
  margin-bottom: 2px;
}
.quiz-main .assignment-editor__body ol li:last-child {
  margin-bottom: 0;
}
.quiz-main .assignment-upload {
  min-height: 140px;
  border: 1px dashed color-mix(in srgb, var(--secondary) 20%, transparent);
  border-radius: 10px;
  background: color-mix(in srgb, var(--secondary) 5%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 20px;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}
.quiz-main .assignment-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.quiz-main .assignment-upload__icon {
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #FFFFFF;
}
.quiz-main .assignment-upload__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.quiz-main .assignment-upload__text {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: var(--secondary);
}
.quiz-main .assignment-upload__note p {
  font-size: 14px;
  line-height: 16px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
}
.quiz-main .assignment-upload__note p:last-child {
  margin-bottom: 0;
}
.quiz-main .assignment-upload-wrap .custom-inputs {
  margin-top: 16px;
}
.quiz-main .assignment-upload-wrap .custom-inputs .custom-input-btn {
  color: #727376;
  font-size: 14px;
  line-height: 20px;
}

.white-range {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px 18px 18px;
  margin-bottom: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 991px) {
  .white-range {
    padding: 16px;
    margin-bottom: 20px;
  }
}
.white-range .white-range-head {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  padding-bottom: 8px;
  font-weight: 600;
  flex-wrap: wrap;
}
.white-range.secondarybg {
  background: #0D4A4D;
  margin-bottom: 16px;
}
.white-range.secondarybg .white-range-head {
  color: #FFFFFF;
}
.white-range.secondarybg .range-input {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) var(--range-progress, 0%), rgba(255, 255, 255, 0.2) var(--range-progress, 0%), rgba(255, 255, 255, 0.2) 100%);
}

.range-input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary) var(--range-progress, 0%), rgba(34, 34, 34, 0.2) var(--range-progress, 0%), rgba(34, 34, 34, 0.2) 100%);
  outline: none;
  pointer-events: none;
}
.range-input::-webkit-slider-runnable-track {
  height: 12px;
  border-radius: 999px;
}
.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #FFFFFF;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
  margin-top: -4px;
  cursor: pointer;
}
.range-input::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--primary), 0.18);
}
.range-input::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
}
.range-input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.range-input:focus {
  outline: none;
}
.range-input:active::-webkit-slider-thumb {
  transform: scale(1.04);
}
.range-input:active::-moz-range-thumb {
  transform: scale(1.04);
}

@media only screen and (max-width: 767px) {
  .course-hero {
    padding-top: 12px;
  }
  .course-hero__media {
    height: 280px;
    border-radius: 18px;
  }
  .course-hero__content {
    padding-top: 20px;
  }
  .course-detail {
    gap: 32px;
  }
}
.courses-section {
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.courses-section.learning-plan-section {
  padding: 40px 0 100px;
}
@media only screen and (max-width: 1199px) {
  .courses-section.learning-plan-section {
    padding: 40px 0 80px;
  }
}
@media only screen and (max-width: 991px) {
  .courses-section.learning-plan-section {
    padding: 40px 0 60px;
  }
}
@media only screen and (max-width: 767px) {
  .courses-section.learning-plan-section {
    padding: 40px 0 40px;
  }
}
.courses-section .section-head {
  margin-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .courses-section .section-head {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .courses-section {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .courses-section {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .courses-section {
    padding-bottom: 40px;
  }
}
.courses-section .courses-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .courses-section .courses-layout {
    gap: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .courses-section .courses-layout {
    display: block;
  }
}

.courses-filter-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  border: 1px solid color-mix(in srgb, var(--secondary) 16%, transparent);
  background: var(--primary);
  color: #FFFFFF;
  padding: 8px 15px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  flex-direction: row-reverse;
}
.courses-filter-toggle:hover {
  background: color-mix(in srgb, var(--secondary) 5%, transparent);
}
@media only screen and (max-width: 991px) {
  .courses-filter-toggle {
    display: inline-flex;
    margin-bottom: 10px;
  }
}
.courses-filter-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.courses-filter-toggle__icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses-sidebar-overlay {
  display: none;
}
@media only screen and (max-width: 991px) {
  .courses-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    z-index: 1090;
  }
}

.courses-sidebar {
  position: sticky;
  top: 82px;
  max-width: 260px;
  width: 100%;
  flex: 0 0 260px;
}
@media only screen and (max-width: 991px) {
  .courses-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 400px;
    width: 100%;
    height: 100vh;
    background: #FFFFFF;
    padding: 0;
    overflow-y: auto;
    z-index: 1100;
    box-shadow: 18px 0 44px rgba(0, 0, 0, 0.12);
    transform: translateX(-110%);
    -webkit-transform: translateX(-110%);
    -moz-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    -o-transform: translateX(-110%);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
}
@media only screen and (max-width: 575px) {
  .courses-sidebar {
    max-width: 100%;
  }
}
.courses-sidebar__header {
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
@media only screen and (max-width: 991px) {
  .courses-sidebar__header {
    margin-bottom: 0px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
}
.courses-sidebar__title {
  font-size: 20px;
  line-height: 125%;
  font-weight: 600;
  color: #000;
}
@media only screen and (max-width: 991px) {
  .courses-sidebar__title {
    font-size: 26px;
  }
}
.courses-sidebar__close {
  display: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  padding: 0;
  border: none;
  background: #f6f6f6;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .courses-sidebar__close {
    display: inline-flex;
  }
}
.courses-sidebar__close img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.courses-filter-accordion {
  height: calc(100vh - 152px);
  overflow: auto;
}
@media only screen and (max-width: 991px) {
  .courses-filter-accordion {
    height: calc(100vh - 90px);
    padding: 0 24px;
  }
}
.courses-filter-accordion::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.courses-filter-accordion::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}
.courses-filter-accordion::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}
.courses-filter-accordion .filtr-item {
  border: none;
  background: transparent;
}
@media only screen and (max-width: 991px) {
  .courses-filter-accordion .filtr-item:first-child .filtr-item-header {
    border-top: none;
  }
}
.courses-filter-accordion .filtr-item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.courses-filter-accordion .filtr-item-header {
  position: relative;
  background: transparent;
  padding: 12px 16px;
  font-size: 16px;
  line-height: 130%;
  font-weight: 500;
  color: #222222;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .courses-filter-accordion .filtr-item-header {
    padding: 12px 0px;
  }
}
.courses-filter-accordion .filtr-item-header:hover {
  background: transparent;
}
.courses-filter-accordion .filtr-item-header .angle-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.courses-filter-accordion .filtr-item-header .angle-icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(45%) sepia(7%) saturate(159%) hue-rotate(187deg) brightness(96%) contrast(83%);
}
.courses-filter-accordion .filtr-item-header.active .angle-icon img, .courses-filter-accordion .filtr-item-header[aria-expanded=true] .angle-icon img {
  transform: rotate(180deg);
}
.courses-filter-accordion .filtr-item-body {
  display: none;
  padding: 10px 16px 20px;
}
@media only screen and (max-width: 991px) {
  .courses-filter-accordion .filtr-item-body {
    padding: 10px 0 20px;
  }
}
.courses-filter-accordion .faq_body_inner {
  padding: 0;
}
.courses-filter-accordion .custom-inputs {
  display: flex;
  width: 100%;
}
.courses-filter-accordion .custom-inputs.mt-3 {
  margin-top: 20px !important;
}
@media only screen and (max-width: 991px) {
  .courses-filter-accordion .custom-inputs.mt-3 {
    margin-top: 16px !important;
  }
}
.courses-filter-accordion .custom-inputs:first-child {
  margin-top: 0 !important;
}
.courses-filter-accordion .custom-input-btn {
  width: 100%;
  justify-content: flex-start;
  gap: 12px;
  font-size: 12px;
  line-height: 20px;
  color: #111111;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.courses-content {
  min-width: 0;
  flex: 1;
}

.courses-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.courses-toolbar[hidden] {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .courses-toolbar {
    flex-direction: column;
    align-items: stretch;
  }
}

.courses-selected-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .courses-selected-filters {
    flex-direction: column;
    align-items: stretch;
  }
}
.courses-selected-filters__list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 44px;
  flex: 1;
}

.courses-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(102, 102, 102, 0.2);
  color: var(--secondary);
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  border-radius: 44px;
  -webkit-border-radius: 44px;
  -moz-border-radius: 44px;
  -ms-border-radius: 44px;
  -o-border-radius: 44px;
}
.courses-filter-chip__remove {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  min-width: 20px;
  height: 20px;
  border: none;
  background: transparent url("../../images/close-circle.svg") no-repeat center center;
  background-size: 20px;
  padding: 0;
  cursor: pointer;
}

.courses-clear-btn {
  border: none;
  background: transparent;
  color: var(--secondary);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  white-space: nowrap;
}
.courses-clear-btn:hover {
  color: var(--primary);
}
@media only screen and (max-width: 767px) {
  .courses-clear-btn {
    padding-top: 0;
  }
}

.course-grid {
  display: grid;
  gap: 24px;
}
@media only screen and (max-width: 1199px) {
  .course-grid {
    gap: 16px;
  }
}
.course-grid.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.course-grid.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.course-grid.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.course-grid.grid-4 .course-box {
  border-radius: 22px;
}
.course-grid.grid-4 .course-box__meta {
  gap: 8px;
}
.course-grid.grid-4 .course-box__meta span {
  font-size: 12px;
  line-height: 16px;
  padding: 7px 9px;
}
.course-grid.available-courses {
  gap: 16px;
}
.course-grid.available-courses .course-box {
  border-radius: 20px !important;
  background-color: #F4F2EA !important;
}
.course-grid.available-courses .course-box .course-box__media {
  border-radius: 16px !important;
  padding-top: 79.6%;
}
@media only screen and (max-width: 1199px) {
  .course-grid.grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 991px) {
  .course-grid.grid-3, .course-grid.grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 575px) {
  .course-grid.grid-2, .course-grid.grid-3, .course-grid.grid-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.courses-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 8px;
}
.courses-pagination[hidden] {
  display: none !important;
}
.courses-pagination__summary {
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.courses-pagination__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.courses-pagination__btn, .courses-pagination__page, .courses-pagination__dots {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}
.courses-pagination__btn, .courses-pagination__page {
  border: none;
  background: transparent;
  color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.courses-pagination__btn:hover, .courses-pagination__page:hover {
  color: var(--secondary);
}
.courses-pagination__btn {
  background: var(--light-gray);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  font-size: 18px;
}
.courses-pagination__btn img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.courses-pagination__btn--next img {
  transform: rotate(180deg);
}
.courses-pagination__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.courses-pagination__page {
  border-radius: 999px;
  -webkit-border-radius: 999px;
  -moz-border-radius: 999px;
  -ms-border-radius: 999px;
  -o-border-radius: 999px;
}
.courses-pagination__page.active {
  background: var(--secondary);
  color: #FFFFFF;
}
.courses-pagination__dots {
  color: rgba(0, 0, 0, 0.45);
}
@media only screen and (max-width: 767px) {
  .courses-pagination {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .courses-pagination__controls {
    width: 100%;
    justify-content: center;
  }
}

.course-box {
  padding: 16px;
  background: #f4f2ea;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  -o-border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
@media only screen and (max-width: 767px) {
  .course-box {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
  }
}
.course-box__media {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 54.63%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  overflow: hidden;
  background: color-mix(in srgb, var(--secondary) 8%, transparent);
}
@media only screen and (max-width: 767px) {
  .course-box__media {
    border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    -ms-border-radius: 16px;
    -o-border-radius: 16px;
    padding-top: 67.1%;
  }
}
.course-box__media img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.course-box__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.course-box__content {
  min-height: 72px;
}
.course-box__title {
  font-size: 20px;
  line-height: 125%;
  font-weight: 400;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2px;
}
.course-box__title a {
  color: inherit;
}
@media only screen and (max-width: 991px) {
  .course-box__title {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 390px) {
  .course-box__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.course-box__author {
  font-size: 12px;
  line-height: 20px;
  color: var(--secondary);
  font-weight: 400;
}
.course-box__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 38px;
}
@media only screen and (max-width: 991px) {
  .course-box__meta {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .course-box__meta {
    margin-top: 16px;
  }
}
.course-box__meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--secondary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  -o-border-radius: 42px;
}
@media only screen and (max-width: 1199px) {
  .course-box__meta span {
    font-size: 12px;
    line-height: 18px;
  }
}
.course-box__meta img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}

.course-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-right: 2px;
}
.course-rating__stars img {
  width: 12px !important;
  height: 12px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

.filter-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.filter-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.filter-rating__stars img {
  width: 16px !important;
  height: 16px !important;
  -o-object-fit: contain;
     object-fit: contain;
}

body.course-filters-open {
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  body.course-filters-open .courses-sidebar {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
  }
  body.course-filters-open .courses-sidebar-overlay {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}

.learning-banner-section {
  background: url(../../images/learning-plan-banner-bg.svg) var(--secondary) no-repeat center center;
  background-size: cover;
  padding: 60px 0;
}
@media only screen and (max-width: 1199px) {
  .learning-banner-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .learning-banner-section {
    padding: 40px 0;
  }
}
.learning-banner-section .learning-banner-box {
  display: flex;
  gap: 16px;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 20px;
}
@media only screen and (max-width: 1199px) {
  .learning-banner-section .learning-banner-box {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .learning-banner-section .learning-banner-box {
    position: relative;
    flex-direction: column-reverse;
    padding: 16px 16px 85px;
  }
}
.learning-banner-section .learning-banner-box .learning-body {
  flex: 1;
  position: relative;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .learning-banner-section .learning-banner-box .learning-body {
    padding-bottom: 0px;
  }
}
.learning-banner-section .learning-banner-box .learning-body .section-title {
  margin-bottom: 0px;
}
.learning-banner-section .learning-banner-box .learning-body .author {
  font-size: 14px;
  line-height: 18px;
  color: var(--secondary);
  margin-bottom: 24px;
}
.learning-banner-section .learning-banner-box .learning-body P {
  font-size: 18px;
  line-height: 120%;
  color: rgba(0, 0, 0, 0.6);
  margin-top: 24px;
}
@media only screen and (max-width: 1199px) {
  .learning-banner-section .learning-banner-box .learning-body P {
    font-size: 16px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .learning-banner-section .learning-banner-box .learning-body P {
    font-size: 14px;
    margin-top: 16px;
  }
}
.learning-banner-section .learning-banner-box .learning-body .learning-meta {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 38px;
}
@media only screen and (max-width: 1199px) {
  .learning-banner-section .learning-banner-box .learning-body .learning-meta {
    position: relative;
    margin-top: 20px;
  }
}
.learning-banner-section .learning-banner-box .learning-body .learning-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--secondary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 42px;
  -webkit-border-radius: 42px;
  -moz-border-radius: 42px;
  -ms-border-radius: 42px;
  -o-border-radius: 42px;
}
@media only screen and (max-width: 1199px) {
  .learning-banner-section .learning-banner-box .learning-body .learning-meta span {
    font-size: 12px;
    line-height: 18px;
  }
}
.learning-banner-section .learning-banner-box .learning-body .learning-meta img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.learning-banner-section .learning-banner-box .learning-wrap {
  max-width: 330px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .learning-banner-section .learning-banner-box .learning-wrap {
    max-width: 100%;
  }
}
.learning-banner-section .learning-banner-box .learning-wrap .learning-img {
  position: relative;
  padding-bottom: 69.7%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .learning-banner-section .learning-banner-box .learning-wrap .learning-img {
    margin-bottom: 0;
    padding-bottom: 79.7%;
  }
}
.learning-banner-section .learning-banner-box .learning-wrap .learning-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.learning-banner-section .learning-banner-box .learning-wrap .secondry-btn {
  justify-content: space-between;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .learning-banner-section .learning-banner-box .learning-wrap .secondry-btn {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    width: auto;
  }
}

.my-courses-page {
  background-color: #FFFFFF;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .my-courses-page {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 991px) {
  .my-courses-page {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .my-courses-page {
    padding-bottom: 40px;
  }
}
.my-courses-page .dashboard-main .dashboard-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .my-courses-page .dashboard-main .dashboard-layout {
    gap: 20px;
    flex-direction: column;
  }
}
.my-courses-page .dashboard-main .dashboard-sidebar {
  flex: 0 0 240px;
  max-width: 240px;
  width: 100%;
  background: #FFF2E6;
  padding: 16px;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  position: sticky;
  top: 80px;
}
@media only screen and (max-width: 991px) {
  .my-courses-page .dashboard-main .dashboard-sidebar {
    flex: 0 0 auto;
    position: static;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
}
.my-courses-page .dashboard-main .dashboard-menu {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media only screen and (max-width: 991px) {
  .my-courses-page .dashboard-main .dashboard-menu {
    gap: 30px;
    min-width: -moz-max-content;
    min-width: max-content;
    flex-direction: row;
  }
}
.my-courses-page .dashboard-main .dashboard-menu__link {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #222222;
  font-size: 14px;
  line-height: 120%;
  font-weight: 400;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.my-courses-page .dashboard-main .dashboard-menu__link:hover, .my-courses-page .dashboard-main .dashboard-menu__link.is-active {
  opacity: 1;
}
@media only screen and (max-width: 991px) {
  .my-courses-page .dashboard-main .dashboard-menu__link:first-child {
    border-left: none;
  }
}
.my-courses-page .dashboard-main .dashboard-menu__icon {
  width: 30px;
  min-width: 30px;
  height: 30px;
  min-height: 30px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  flex-shrink: 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.my-courses-page .dashboard-main .dashboard-menu__icon img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(51%) sepia(77%) saturate(2696%) hue-rotate(5deg) brightness(103%) contrast(104%);
}
.my-courses-page .dashboard-main .dashboard-menu__link.is-active .dashboard-menu__icon {
  background: var(--primary);
}
.my-courses-page .dashboard-main .dashboard-menu__link.is-active .dashboard-menu__icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(286deg) brightness(107%) contrast(103%);
}
.my-courses-page .dashboard-main .dashboard-content {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .my-courses-page .dashboard-main .dashboard-content {
    gap: 20px;
    flex: auto;
    width: 100%;
  }
}
.my-courses-page .dashboard-main .dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .my-courses-page .dashboard-main .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media only screen and (max-width: 359px) {
  .my-courses-page .dashboard-main .dashboard-stats {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
  }
}
.my-courses-page .dashboard-main .dashboard-stat {
  background: #F3F6F6;
  padding: 18px 16px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 100px;
}
@media only screen and (max-width: 1279px) {
  .my-courses-page .dashboard-main .dashboard-stat {
    padding: 18px 14px;
  }
}
@media only screen and (max-width: 1199px) {
  .my-courses-page .dashboard-main .dashboard-stat {
    flex-direction: column;
    align-items: flex-start;
  }
}
.my-courses-page .dashboard-main .dashboard-stat__icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  min-height: 48px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;
  flex-shrink: 0;
}
.my-courses-page .dashboard-main .dashboard-stat__icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(21%) sepia(51%) saturate(650%) hue-rotate(134deg) brightness(96%) contrast(95%);
}
.my-courses-page .dashboard-main .dashboard-stat__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.my-courses-page .dashboard-main .dashboard-stat__value {
  font-size: 24px;
  line-height: 125%;
  font-weight: 500;
  color: #000;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .my-courses-page .dashboard-main .dashboard-stat__value {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .my-courses-page .dashboard-main .dashboard-stat__value {
    font-size: 20px;
  }
}
.my-courses-page .dashboard-main .dashboard-stat__label {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  margin: 0;
}
.my-courses-page .dashboard-main .dashboard-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.my-courses-page .dashboard-main .dashboard-section-head .common-btn {
  width: 120px;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box {
  width: 100%;
  position: relative;
  max-width: 378px;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-control {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: 10px 20px;
  text-align: left;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  color: #222222;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-control::-moz-placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-control::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-control {
  padding-left: 40px;
  width: 100%;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-control:focus {
  border-color: var(--secondary);
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-btn {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  margin: auto 0;
  width: 36px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-btn:focus, .my-courses-page .dashboard-main .dashboard-section-head .search-box .search-btn:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-btn {
  pointer-events: none;
}
.my-courses-page .dashboard-main .dashboard-section-head .search-box .search-btn picture {
  height: 16px;
  width: 16px;
  opacity: 0.6;
}
.my-courses-page .dashboard-main .dashboard-section-head__title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 500;
  color: #000;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .my-courses-page .dashboard-main .dashboard-section-head__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .my-courses-page .dashboard-main .dashboard-section-head__title {
    font-size: 20px;
  }
}
.my-courses-page .dashboard-main .course-box {
  background: #FFFFFF;
}
.my-courses-page .dashboard-main .courses-pagination {
  margin: 0;
  padding: 0;
}
.my-courses-page .dashboard-main .courses-pagination .courses-pagination__btn {
  background-color: #ebe9e0;
}
.my-courses-page .dashboard-main .courses-pagination .courses-pagination__page {
  background-color: #FFFFFF;
}
.my-courses-page .dashboard-main .courses-pagination .courses-pagination__page.active {
  background-color: var(--secondary);
  color: #FFFFFF;
}
.my-courses-page .white-range {
  margin-bottom: 0;
  margin-top: 16px;
}

.dashboard-page {
  padding-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .dashboard-page {
    padding-bottom: 56px;
  }
}

.dashboard-announcements-page .dashboard-content {
  gap: 18px;
}
.dashboard-announcements-page .announcements-head p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
  margin: 6px 0 0;
}
.dashboard-announcements-page .announcements-tabs {
  margin-bottom: 0;
  gap: 0px;
}
.dashboard-announcements-page .announcements-tabs .nav-link {
  font-size: 16px;
  line-height: 125%;
  font-weight: 500;
  color: var(--secondary);
  padding: 8px 12px 10px;
  min-width: 110px;
}
.dashboard-announcements-page .announcements-tab-content .tab-pane > .announcements-block:first-child {
  margin-top: 0;
}
.dashboard-announcements-page .announcements-block {
  margin-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.dashboard-announcements-page .announcements-block:last-child {
  padding-bottom: 0px;
  border-bottom: none;
}
.dashboard-announcements-page .announcements-block__title {
  font-size: 20px;
  line-height: 125%;
  font-weight: 500;
  color: #000;
  margin: 0 0 24px;
}
.dashboard-announcements-page .announcement-course-list,
.dashboard-announcements-page .announcement-update-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dashboard-announcements-page .announcement-course-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4f2ea;
  border-radius: 16px;
  padding: 14px;
  min-width: 0;
}
.dashboard-announcements-page .announcement-course-card__media {
  flex: 0 0 144px;
  width: 144px;
  aspect-ratio: 1.32;
  border-radius: 10px;
  overflow: hidden;
  background: color-mix(in srgb, var(--secondary) 8%, transparent);
}
.dashboard-announcements-page .announcement-course-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.dashboard-announcements-page .announcement-course-card__body {
  min-width: 0;
  flex: 1;
}
.dashboard-announcements-page .announcement-course-card__body h3 {
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  color: #000;
  margin: 0 0 5px;
}
.dashboard-announcements-page .announcement-course-card__body h3 a {
  color: inherit;
}
.dashboard-announcements-page .announcement-course-card__body p {
  font-size: 12px;
  line-height: 20px;
  color: var(--secondary);
  margin: 0;
}
.dashboard-announcements-page .announcement-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.dashboard-announcements-page .announcement-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--secondary);
  font-size: 14px;
  line-height: 18px;
  padding: 7px 10px;
  white-space: nowrap;
}
.dashboard-announcements-page .announcement-meta img {
  width: 16px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(26%) sepia(79%) saturate(570%) hue-rotate(143deg) brightness(88%) contrast(93%);
}
.dashboard-announcements-page .announcement-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.dashboard-announcements-page .announcement-video-card {
  min-width: 0;
}
.dashboard-announcements-page .announcement-video-card h3 {
  font-size: 18px;
  line-height: 120%;
  font-weight: 400;
  color: #000;
  margin: 8px 0 0;
}
.dashboard-announcements-page .announcement-video-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.26;
  border-radius: 16px;
  overflow: hidden;
  background: color-mix(in srgb, var(--secondary) 8%, transparent);
}
.dashboard-announcements-page .announcement-video-card__media > img,
.dashboard-announcements-page .announcement-video-card__media > video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.dashboard-announcements-page .announcement-video-card__media > video {
  cursor: pointer;
}
.dashboard-announcements-page .announcement-video-card__media .play-button-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.dashboard-announcements-page .announcement-video-card__media .play-gif {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #FFFFFF !important;
  background: rgba(0, 0, 0, 0.12);
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}
.dashboard-announcements-page .announcement-video-card__media .play-gif:focus, .dashboard-announcements-page .announcement-video-card__media .play-gif:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.dashboard-announcements-page .announcement-video-card__media .play-gif {
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
  pointer-events: auto;
}
.dashboard-announcements-page .announcement-video-card__media .play-gif img {
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.dashboard-announcements-page .announcement-video-card__media .play-icon {
  width: 30px;
  height: 30px;
}
.dashboard-announcements-page .announcement-video-card__media .stop-icon {
  display: none;
  width: 18px;
  height: 24px;
}
.dashboard-announcements-page .announcement-video-card__media .play-button-wrapper.pause .play-icon {
  display: none;
}
.dashboard-announcements-page .announcement-video-card__media .play-button-wrapper.pause .stop-icon {
  display: block;
}
.dashboard-announcements-page .announcement-update-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #f1f6f7;
  border-radius: 14px;
  padding: 20px;
}
.dashboard-announcements-page .announcement-update-card h3 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  color: #000;
  margin: 0 0 3px;
}
.dashboard-announcements-page .announcement-update-card p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.72);
  margin: 10px 0 0;
}
.dashboard-announcements-page .announcement-update-card .announcement-update-card__meta {
  color: rgba(0, 0, 0, 0.48);
  margin: 0;
}
.dashboard-announcements-page .announcement-update-card__icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(13, 74, 77, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-announcements-page .announcement-update-card__icon img {
  width: 22px;
  height: 22px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) saturate(100%) invert(26%) sepia(79%) saturate(570%) hue-rotate(143deg) brightness(88%) contrast(93%);
}
@media only screen and (max-width: 1199px) {
  .dashboard-announcements-page .announcement-meta {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .dashboard-announcements-page .announcement-course-card,
  .dashboard-announcements-page .announcement-update-card {
    align-items: stretch;
    flex-direction: column;
  }
  .dashboard-announcements-page .announcement-course-card__media {
    flex-basis: auto;
    width: 100%;
    aspect-ratio: 1.8;
  }
  .dashboard-announcements-page .announcement-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media only screen and (max-width: 575px) {
  .dashboard-announcements-page .announcements-tabs {
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .dashboard-announcements-page .announcement-video-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .dashboard-announcements-page .announcement-meta span {
    white-space: normal;
  }
}

/* ========== Data Table Styles ============*/
.courses-table-wrapper {
  background: #FFFFFF;
  border: 1px solid rgba(221, 227, 228, 0.6);
  border-radius: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.courses-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 20px;
  color: #222222;
}
.courses-table thead {
  background: #DDE3E4;
}
.courses-table th {
  padding: 16px;
  text-align: left;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .courses-table th {
    padding: 12px;
    font-size: 12px;
  }
}
.courses-table th.is-sortable {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.courses-table th.is-sortable img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(1%) saturate(6634%) hue-rotate(272deg) brightness(102%) contrast(93%);
}
.courses-table .table-th-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 100px;
}
.courses-table .table-th-wrap.course-name-header {
  min-width: 280px;
}
.courses-table .table-th-label {
  display: block;
  min-width: 0;
}
.courses-table .table-sort-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.65);
  transform: translateY(-1px);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.courses-table .table-sort-icon img {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.65;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(47%) sepia(3%) saturate(430%) hue-rotate(187deg) brightness(93%) contrast(84%);
}
@media only screen and (max-width: 767px) {
  .courses-table .table-sort-icon img {
    width: 12px;
    height: 12px;
  }
}
.courses-table th.is-sortable.is-active .table-sort-icon img {
  opacity: 1;
}
.courses-table th.is-sortable.is-desc .table-sort-icon img {
  opacity: 1;
}
.courses-table tbody tr {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.courses-table tbody tr.course-summary-row:last-child, .courses-table tbody tr:last-child {
  border-bottom: none;
}
.courses-table td {
  padding: 16px;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .courses-table td {
    padding: 12px;
    font-size: 12px;
  }
}
.courses-table .course-name {
  max-width: 320px;
}
@media only screen and (max-width: 767px) {
  .courses-table .course-name {
    max-width: 150px;
  }
}
.courses-table .course-name__title {
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.courses-table .table-index,
.courses-table .table-progress {
  color: #000;
  font-weight: 500;
  white-space: nowrap;
}
.courses-table .table-result {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 82px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.courses-table .table-result.is-pass {
  color: #1db954;
  background: #e6f7ed;
}
.courses-table .table-result.is-inprogress {
  color: #f3972d;
  background: #fdfaec;
}
.courses-table .table-result.is-fail {
  color: #f04438;
  background: #fdeaea;
}
.courses-table .table-status {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 82px;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.courses-table .table-status.is-completed {
  color: #1db954;
  background: #e6f7ed;
}
.courses-table .table-status.is-pending {
  color: #f59e0b;
  background: #fff3d9;
}
.courses-table .table-status.is-in-progress {
  color: #0f766e;
  background: #def7f5;
}
.courses-table .table-action {
  width: 72px;
  text-align: center;
}
.courses-table .table-action-toggle {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: #eef3f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.25s ease;
}
.courses-table .table-action-toggle img {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
}
.courses-table .table-action-toggle.is-open img {
  transform: rotate(180deg);
}
.courses-table .course-detail-row {
  display: none;
  background: #FFFFFF;
}
.courses-table .course-detail-row.is-open {
  display: table-row;
}
.courses-table .course-summary-row.is-open {
  border-bottom-color: transparent;
}
.courses-table .course-summary-row:last-child {
  border-bottom: none;
}
.courses-table .course-detail-cell {
  padding: 0 16px 18px;
}
.courses-table .course-detail-box {
  background: #f4f6f6;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.courses-table .course-detail-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .courses-table .course-detail-group {
    gap: 10px;
  }
}
.courses-table .course-detail-label {
  min-width: 87px;
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--secondary);
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
}
.courses-table .course-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 767px) {
  .courses-table .course-detail-links {
    gap: 10px;
  }
}
.courses-table .course-detail-link {
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
}
.courses-table.learning-plans-table td {
  padding-top: 7px;
  padding-bottom: 7px;
}
.courses-table.learning-plans-table .table-action-toggle {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}
.courses-table.learning-plans-table .bundle-detail-cell {
  padding: 0 8px 8px;
}
.courses-table .bundle-detail-row {
  display: none;
  background: #FFFFFF;
}
.courses-table .bundle-detail-row.is-open {
  display: table-row;
}
.courses-table .bundle-detail-cell {
  padding: 0 16px 16px !important;
}
.courses-table .bundle-detail-box {
  background: #F3F6F6;
  border-radius: 6px;
  padding: 10px;
}
.courses-table .bundle-detail-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.courses-table .bundle-detail-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 18px;
  color: #727376;
}
.courses-table .bundle-detail-item img {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.courses-table .bundle-detail-item.is-completed {
  color: rgba(0, 0, 0, 0.48);
}
.courses-table .bundle-detail-item.is-pending {
  color: rgba(0, 0, 0, 0.48);
}
.courses-table .bundle-detail-item.is-pending img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(2172%) hue-rotate(1deg) brightness(104%) contrast(103%);
}
@media only screen and (max-width: 767px) {
  .courses-table .bundle-detail-item {
    font-size: 13px;
    line-height: 20px;
    align-items: flex-start;
  }
}

.my-profile-page {
  padding-bottom: 100px;
  background: #FFFFFF;
}
@media only screen and (max-width: 1279px) {
  .my-profile-page {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .my-profile-page {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 991px) {
  .my-profile-page {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .my-profile-page {
    padding-bottom: 40px;
  }
}
.my-profile-page .profile-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .my-profile-page .profile-layout {
    gap: 20px;
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .my-profile-page .custom-breadcrumb {
    display: none;
  }
}
.my-profile-page .profile-page-head {
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-page-head {
    margin-bottom: 16px;
    display: block;
  }
}
.my-profile-page .profile-page-head p {
  max-width: 100%;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 20px;
}
.my-profile-page .profile-sidebar {
  flex: 0 0 390px !important;
  max-width: 390px !important;
  padding: 20px !important;
  top: 120px;
  background: #F3F6F6 !important;
}
@media only screen and (max-width: 991px) {
  .my-profile-page .profile-sidebar {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 16px;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-sidebar {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
}
.my-profile-page .profile-sidebar__card {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.my-profile-page .profile-avatar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1490196078);
}
.my-profile-page .profile-avatar__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 3px solid #FFFFFF;
}
.my-profile-page .profile-avatar__upload {
  position: absolute;
  right: 0%;
  left: 0;
  bottom: -15px;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  border-radius: 50%;
  background: #FFFFFF;
  color: #FFFFFF;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.my-profile-page .profile-avatar__input {
  display: none;
}
.my-profile-page .profile-menu {
  gap: 0 !important;
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  .my-profile-page .profile-menu {
    display: flex;
    flex-direction: column;
    min-width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-menu {
    min-width: 100%;
  }
}
.my-profile-page .profile-menu__link {
  width: 100%;
  border: none;
  background: #FFFFFF;
  padding: 15px 20px;
  justify-content: flex-start;
  text-align: left;
  border-radius: 0;
  color: #000;
  font-size: 14px;
  line-height: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.my-profile-page .profile-menu__link:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 991px) {
  .my-profile-page .profile-menu__link {
    border-left: none;
  }
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-menu__link {
    min-width: 100%;
    padding: 12px 14px;
  }
}
.my-profile-page .profile-content {
  gap: 0;
  flex: 1 1 auto;
  min-width: 0;
}
@media only screen and (max-width: 991px) {
  .my-profile-page .profile-content {
    flex: auto;
    width: 100%;
  }
}
.my-profile-page .my-courses-section {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .my-courses-section {
    margin-top: 30px;
  }
}
.my-profile-page .my-courses-section .dashboard-section-head {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.my-profile-page .my-courses-section .course-grid {
  gap: 16px;
}
.my-profile-page .my-courses-section .course-grid .course-box {
  background: #F4F2EA;
}
.my-profile-page .my-courses-section .course-grid .course-box .course-box__title {
  font-size: 16px;
  line-height: 24px;
}
.my-profile-page .my-courses-section .course-grid .course-box .course-box__meta {
  margin-top: 16px;
}
.my-profile-page .profile-panel {
  display: none;
}
.my-profile-page .profile-panel.is-active {
  display: block;
  animation: profileFadeIn 0.25s ease;
}
.my-profile-page .profile-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-card__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.my-profile-page .profile-card__title {
  font-size: 24px;
  line-height: 125%;
  font-weight: 500;
  color: #000;
  margin: 0;
}
@media only screen and (max-width: 1199px) {
  .my-profile-page .profile-card__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  .my-profile-page .profile-card__title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-card__title {
    font-size: 18px;
  }
}
.my-profile-page .profile-action-btn {
  min-width: 100px;
  height: 46px;
  border-radius: 38px;
  padding: 0 18px;
  border: 1px solid var(--secondary);
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.my-profile-page .profile-action-btn--primary {
  background: var(--secondary);
  color: #FFFFFF;
}
.my-profile-page .profile-action-btn--primary:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.my-profile-page .profile-action-btn--ghost {
  background: transparent;
  color: var(--secondary);
}
.my-profile-page .profile-action-btn--ghost:hover {
  background: var(--secondary);
  color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-action-btn {
    width: 100%;
    justify-content: center;
  }
}
.my-profile-page .profile-info-grid,
.my-profile-page .profile-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-info-grid,
  .my-profile-page .profile-form__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.my-profile-page .profile-info-item {
  min-width: 0;
  padding: 12px 14px;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-info-item {
    padding: 0;
  }
}
.my-profile-page .profile-info-item:nth-child(2n) {
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-info-item:nth-child(2n) {
    border-left: none;
    padding-left: 0;
  }
}
.my-profile-page .profile-info-item__label,
.my-profile-page .profile-field__label {
  display: block;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
.my-profile-page .profile-field__label {
  color: #000;
}
.my-profile-page .profile-info-item__value {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000;
  font-size: 16px;
  line-height: 100%;
  min-width: 0;
}
.my-profile-page .profile-info-item__value img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  opacity: 0.8;
}
.my-profile-page .profile-info-item__value span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.my-profile-page .profile-field--full {
  grid-column: 1/-1;
}
.my-profile-page .profile-form__stack {
  display: grid;
  gap: 20px;
}
.my-profile-page .profile-field__control {
  width: 100%;
  height: 48px;
  border: 1px solid #F3F6F6;
  background: #F3F6F6;
  border-radius: 22px;
  padding: 0 16px;
  color: #222222;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
}
.my-profile-page .profile-field__control::-moz-placeholder {
  color: rgba(34, 34, 34, 0.35);
}
.my-profile-page .profile-field__control::placeholder {
  color: rgba(34, 34, 34, 0.35);
}
.my-profile-page .profile-field__control:focus {
  border-color: color-mix(in srgb, var(--secondary) 40%, transparent);
  background: #FFFFFF;
}
.my-profile-page .profile-phone {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 575px) {
  .my-profile-page .profile-phone {
    flex-direction: column;
  }
}
.my-profile-page .profile-select-wrap {
  position: relative;
  width: 91px;
  flex-shrink: 0;
}
.my-profile-page .profile-select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background: url("../../images/dropdown-icon.svg") no-repeat center center/10px;
  pointer-events: none;
}
.my-profile-page .profile-field__control--select {
  padding-right: 28px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.my-profile-page .profile-password-wrap {
  position: relative;
}
.my-profile-page .profile-password-toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  padding: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.my-profile-page .profile-password-toggle img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.my-profile-page .profile-field__message {
  margin: 8px 0 0;
  color: #d92d20;
  font-size: 12px;
  line-height: 18px;
  display: none;
}
.my-profile-page .profile-field__message.is-visible {
  display: block;
}
.my-profile-page .profile-form__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .my-profile-page .profile-form__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@keyframes profileFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.four-zero-four-page .container {
  min-height: calc(100vh - 376px);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .four-zero-four-page .container {
    min-height: calc(100vh - 336px);
  }
}
@media only screen and (max-width: 992px) {
  .four-zero-four-page .container {
    min-height: calc(100vh - 300px);
  }
}
@media only screen and (max-width: 575px) {
  .four-zero-four-page .container {
    min-height: calc(100vh - 348px);
  }
}
.four-zero-four-page .container .page-content {
  max-width: 602px;
  margin: 0 auto;
}
@media only screen and (max-width: 575px) {
  .four-zero-four-page .container .page-content {
    max-width: 340px;
  }
}
.four-zero-four-page .container .page-content img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.blank-input.form-control {
  border: none;
  border-bottom: 2px solid #555;
  border-radius: 0;
  outline: none;
  background: #f0f0f0; /* light grey background */
  padding: 2px 6px;
  width: 140px;
  margin: 0 4px;
  box-shadow: none;
  display: inline-block;
  vertical-align: bottom;
}

.blank-input.form-control:focus {
  outline: none;
  box-shadow: none;
  border-bottom-color: #222;
  background: #e8e8e8;
}

.learning-action-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.goal-preview-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.goal-preview-card {
  padding: 16px 14px;
  background: #f6f6f6;
  border-radius: 10px;
}

.goal-preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.goal-preview-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: #ffe8d1;
  border-radius: 999px;
  color: #ff7a00;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.goal-preview-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.goal-preview-title {
  margin-bottom: 6px;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.rewards-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.reward-image img {
  max-width: 220px;
  width: 100%;
  margin-bottom: 25px;
}

.reward-content h2 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  margin-bottom: 16px;
}

.reward-content p {
  max-width: 614px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}

.rewards-empty-state .reward-btn-wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.tenants-dashboard-page .my-courses-page {
  background: #ffffff;
}
.tenants-dashboard-page .dashboard-content #courseGrid,
.tenants-dashboard-page .dashboard-content #learningPlanGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.tenants-dashboard-page .dashboard-content #courseGrid .course-box,
.tenants-dashboard-page .dashboard-content #learningPlanGrid .course-box {
  background: #f5f1e8;
}
.tenants-dashboard-page .dashboard-course-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tenants-dashboard-page .dashboard-course-slider-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tenants-dashboard-page .dashboard-course-slider-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: #f1ede5;
  color: #2f2f2f;
  font-size: 24px;
  line-height: 1;
  transition: all 0.2s ease;
}
.tenants-dashboard-page .dashboard-course-slider-btn:hover,
.tenants-dashboard-page .dashboard-course-slider-btn:focus {
  background: var(--primary-color, #0f5c56);
  color: #ffffff;
}
.tenants-dashboard-page .dashboard-course-slider-btn.swiper-button-disabled {
  opacity: 0.45;
  pointer-events: none;
}
.tenants-dashboard-page .dashboard-course-slider {
  width: 100%;
  overflow: hidden;
}
.tenants-dashboard-page .dashboard-course-slider #courseGrid,
.tenants-dashboard-page .dashboard-course-slider #learningPlanGrid {
  display: flex;
  gap: 0;
}
.tenants-dashboard-page .dashboard-course-slider .course-box {
  height: auto;
  display: flex;
  flex-direction: column;
}
.tenants-dashboard-page .dashboard-course-slider .course-box__body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tenants-dashboard-page .dashboard-course-slider .course-box__content {
  flex: 1;
}
.tenants-dashboard-page .dashboard-pagination {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tenants-dashboard-page .dashboard-pagination__summary {
  margin: 0;
  color: #5f6470;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.tenants-dashboard-page .dashboard-pagination__summary strong {
  color: inherit;
  font-weight: 400;
}
.tenants-dashboard-page .dashboard-pagination__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}
.tenants-dashboard-page .dashboard-pagination__link {
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.tenants-dashboard-page .dashboard-pagination__link:hover {
  color: var(--primary-color, #0f5c56);
}
.tenants-dashboard-page .dashboard-pagination__link.is-active {
  background: var(--primary-color, #0f5c56);
  color: #ffffff;
}
.tenants-dashboard-page .dashboard-pagination__link.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.tenants-dashboard-page .dashboard-pagination__arrow {
  font-size: 18px;
  line-height: 1;
}
.tenants-dashboard-page .dashboard-pagination__link--arrow {
  background: #f1ede5;
  color: #666666;
}
.tenants-dashboard-page .dashboard-pagination__link--arrow:hover {
  background: #e8e1d6;
  color: #2f2f2f;
}
.tenants-dashboard-page .dashboard-pagination__dots {
  color: #98a2b3;
  font-weight: 700;
  padding: 0 2px;
}
@media (max-width: 991px) {
  .tenants-dashboard-page .dashboard-content #courseGrid,
  .tenants-dashboard-page .dashboard-content #learningPlanGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .tenants-dashboard-page .dashboard-pagination {
    align-items: flex-start;
  }
  .tenants-dashboard-page .dashboard-pagination__nav {
    width: 100%;
    justify-content: flex-start;
  }
  .tenants-dashboard-page .dashboard-course-actions {
    width: 100%;
    justify-content: space-between;
  }
}

.goal-preview-text {
  margin: 0;
  color: #3d3d3d;
  font-size: 16px;
  line-height: 1.5;
} /*# sourceMappingURL=style.css.map */