.logbg{
    height: 100vh !important; /* Use 100% of the viewport height */
    background-image: url('../assets/log-bg.png'); /* URL to your background image */
    background-size: cover; /* Cover the entire container with the background image */
    background-position: center bottom; /* Position the image at the center bottom of the container */
    background-repeat: no-repeat; /* Do not repeat the background image */
    position: relative; /* Establish positioning context */
}

.btn-login{
    background: #A4CE50;
    color: #fff;
    padding: 15px;
    border: 1px solid #A4CE50;
}

.btn-login:hover{
    background: #90bb38;
    color: #fff;
}

.btn-cancel{
    background: #fff;
    color: #A4CE50;
    padding: 15px;
    border: 1px solid #A4CE50;
}

.btn-cancel:hover{
    background: #90bb38;
    color: #fff;
    border: 1px solid #A4CE50;
}

.form-floating > label {
    color: #C6C6C6;
}

.form-floating.veri{
    position: relative;
    display: flex;
    flex-direction: column;
}

.verif {
    position: absolute;
    right: 15px;
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust to center precisely */
    color: #00A7F1;
}

.verification-type-container {
    display: flex;
    align-items: center; /* Align items vertically center */
}

.verification-label {
    margin-right: 10px; /* Adjust margin between label and radio buttons */
}

.radio-buttons {
    display: flex;
}

.logo{
    display: flex;
    justify-content: center; /* Horizontally center content */
    align-items: center;
    width: 280px;
    margin: 0 auto;
}

@media only screen and (max-width: 575px) {
  .verification-type-container {
    display: block;
  }
  .verif {
    position: relative !important;
    right: 0 !important;
    top: 26px !important;
    width: 200px;
    text-align: center;
  }
}

/* <!------------------------------------------------------------------ header ------------------------------------------------------------> */

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 8;
  }
  
  .header-top {
    background-color: #031f42;
    padding: 5px 0;
  }
  
  .header-top-02 {
    background-color: #EBEEF6;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
  }
  
  .header-top-03 {
    background-color: #FFFFFF;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
  }
  
  .header-top-04 {
    background-color: #FFFFFF;
    padding: 20px 0;
  }
  
  .header-top-05 {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 0;
  }
  
  .header-main {
    background-color: transparent;
    box-shadow: none;
    padding: 10px 0;
  }

  @media only screen and (max-width: 767px) {
    .header-main {
      padding: 20px 0;
    }
  }
  
  .header-main-02 {
    padding: 0;
    background-color: #FFFFFF;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .header-main-02 {
      padding: 10px 0;
    }
  }

  @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-main-02 {
      padding: 20px 0;
    }
  }
  
  .header-main-03 {
    background-color: #a4ce51;
    padding: 0;
  }
  
  .header-main-04 {
    padding: 10px 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-main-04 {
      padding: 20px 0;
    }
  }

  @media only screen and (max-width: 575px) {
    .header-main-04 .header-mini-cart {
      right: -45px;
    }
  }
  
  .header-main-05 {
    padding: 10px 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-main-05 {
      padding: 22px 0;
    }
  }

  @media only screen and (max-width: 575px) {
    .header-main-05 .header-mini-cart {
      right: -45px;
    }
  }
  
  .header-main-06 {
    background: #FFFFFF;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-main-06 {
      padding: 20px 0;
    }
  }

  @media only screen and (max-width: 575px) {
    .header-main-06 .header-mini-cart {
      right: -45px;
    }
  }
  
  .header-transparent {
    background-color: transparent;
    box-shadow: none;
  }

  @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-transparent {
      background-color: #FFFFFF;
    }
  }
  
  .sticky .header-main-06, .sticky .header-main-05, .sticky .header-main-04, .sticky .header-main-02, .sticky .header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    animation: sticky 1s;
    background-color: #FFFFFF;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  }

  .sticky .header-main-03 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    animation: sticky 1s;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  }

  .sticky .header-main-04, .sticky .header-main-06 {
    padding: 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sticky .header-main-04, .sticky .header-main-06 {
      padding: 20px 0;
    }
  }

  .sticky .header-main-05 {
    padding: 0;
  }

  @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .sticky .header-main-05 {
      padding: 22px 0;
    }
  }
  @keyframes sticky {
    0% {
      transform: translateY(-100%);
    }
    100% {
      transform: translateY(0%);
    }
  }

  .header-top-bar-wrap__text {
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.74;
    padding: 12px 0;
  }

  @media only screen and (max-width: 767px) {
    .header-top-bar-wrap__text {
      font-size: 14px;
    }
  }

  .header-top-bar-wrap__text strong {
    font-weight: 500;
  }

  .header-top-bar-wrap__text a {
    font-weight: 500;
    color: #ffc221;
    position: relative;
  }

  .header-top-bar-wrap__text a::before {
    position: absolute;
    content: "";
    height: 1px;
    right: 0;
    bottom: 0;
    width: 0;
    background-color: #ffc221;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .header-top-bar-wrap__text a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
  }

  .header-top-bar-wrap__info {
    padding: 7px 0;
  }

  .header-top-bar-wrap__info > * {
    margin-right: 30px !important;
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__info > * {
      margin-right: 0;
      margin-top: 5px;
    }
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__info > *:first-child {
      margin-top: 0;
    }
  }

  .header-top-bar-wrap__info > *:last-child {
    margin-right: 0 !important;
  }

  .header-top-bar-wrap__info-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__info-list {
      flex-direction: column;
      text-align: center;
    }
  }

  .header-top-bar-wrap__info-list li {
    position: relative;
    margin-right: 30px;
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__info-list li {
      margin-right: 10px;
    }
  }

  .header-top-bar-wrap__info-list li:last-child {
    margin-right: 0;
  }

  .header-top-bar-wrap__info-list li::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    left: -15px;
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__info-list li::before {
      display: none;
    }
  }

  .header-top-bar-wrap__info-list li:first-child::before {
    display: none;
  }

  .header-top-bar-wrap__info-list li a, .header-top-bar-wrap__info-list li button {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding: 0;
    background: none;
    border: 0;
  }

  .header-top-bar-wrap__info-list li a i, .header-top-bar-wrap__info-list li button i {
    margin-right: 3px;
    color: #ffc221;
    font-size: 14px;
  }

  .header-top-bar-wrap__info-list li:hover a, .header-top-bar-wrap__info-list li:hover button {
    color: #ffc221;
  }

  .header-top-bar-wrap__info-list-02 li::before {
    background-color: #AAACB2;
  }

  .header-top-bar-wrap__info-list-02 li a, .header-top-bar-wrap__info-list-02 li button {
    color: #333;
  }

  .header-top-bar-wrap__info-list-02 li a i, .header-top-bar-wrap__info-list-02 li button i {
    color: #a4ce51;
  }

  .header-top-bar-wrap__info-list-02 li:hover a, .header-top-bar-wrap__info-list-02 li:hover button {
    color: #a4ce51;
  }

  .header-top-bar-wrap__info-list-03 li::before {
    content: "/";
    color: #AAACB2;
    width: auto;
    height: auto;
    background-color: transparent;
    font-size: 15px;
    left: -18px;
  }

  .header-top-bar-wrap__info-list-03 li a, .header-top-bar-wrap__info-list-03 li button {
    color: #333;
  }

  .header-top-bar-wrap__info-list-03 li a i, .header-top-bar-wrap__info-list-03 li button i {
    color: #a4ce51;
  }

  .header-top-bar-wrap__info-list-03 li:hover a, .header-top-bar-wrap__info-list-03 li:hover button {
    color: #a4ce51;
  }

  .header-top-bar-wrap__info-list-04 li::before {
    background-color: rgba(255, 255, 255, 0.35);
    font-size: 15px;
    left: -18px;
  }

  .header-top-bar-wrap__info-list-04 li a, .header-top-bar-wrap__info-list-04 li button {
    color: #FFFFFF;
  }

  .header-top-bar-wrap__info-list-04 li a i, .header-top-bar-wrap__info-list-04 li button i {
    color: #FFFFFF;
  }

  .header-top-bar-wrap__info-list-04 li:hover a, .header-top-bar-wrap__info-list-04 li:hover button {
    color: #ffc221;
  }

  .header-top-bar-wrap__info-social {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__info-social {
      justify-content: center;
    }
  }

  .header-top-bar-wrap__info-social li {
    margin-right: 24px;
  }

  .header-top-bar-wrap__info-social li:last-child {
    margin-right: 0;
  }

  .header-top-bar-wrap__info-social li a {
    font-size: 15px;
    display: block;
    color: #FFFFFF;
  }

  .header-top-bar-wrap__info-social li:hover a {
    color: #ffc221;
  }

  .header-top-bar-wrap__info-social-02 li a {
    color: #252525;
  }

  .header-top-bar-wrap__info-social-02 li:hover a {
    color: #a4ce51;
  }

  .header-top-bar-wrap__language {
    position: relative;
    padding-left: 15px;
    text-align: center;
  }

  .header-top-bar-wrap__language::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: #AAACB2;
    right: -15px;
  }

  @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-top-bar-wrap__language::before {
      display: none;
    }
  }

  .header-top-bar-wrap__language .language-toggle {
    font-size: 13px;
    font-weight: 500;
    color: #252525;
    position: relative;
    padding: 0 15px 0 10px;
    border: 0;
    background: none;
  }

  .header-top-bar-wrap__language .language-toggle::after {
    content: "\f107";
    font-size: 12px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    border: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .header-top-bar-wrap__language .language-dropdown {
    min-width: 200px;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 13px 0 16px;
    margin: 0;
    list-style-type: none;
    z-index: 8;
    background: #FFFFFF;
    box-shadow: 0 0 37px rgba(0, 0, 0, 0.07);
    border: 1px solid #ededed;
    border-radius: 5px;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
  }

  @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-top-bar-wrap__language .language-dropdown {
      left: auto;
    }
  }

  .header-top-bar-wrap__language .language-dropdown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 42px;
    width: 0;
    height: 0;
    transform: translateX(-1px);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 11px solid #FFFFFF;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
  }

  @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-top-bar-wrap__language .language-dropdown::before {
      left: auto;
      right: 42px;
    }
  }

  .header-top-bar-wrap__language .language-dropdown li a {
    display: block;
    text-decoration: none;
    padding: 6px 30px;
    border: 0;
    background: none !important;
    color: #333;
    line-height: 1;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.85;
    text-align: left;
  }

  .header-top-bar-wrap__language .language-dropdown li:hover > a {
    color: #a4ce51;
  }

  .header-top-bar-wrap__language:hover .language-dropdown {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
  }

  .header-top-bar-wrap__language-02::before {
    background: #d9dee3;
    height: 40px;
  }

  @media only screen and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 767px) {
    .header-top-bar-wrap__language-02::before {
      display: block;
      right: -30px;
    }
  }

  @media only screen and (max-width: 575px) {
    .header-top-bar-wrap__language-02::before {
      height: 24px;
      right: -11px;
    }
  }

  .header-top-bar-wrap__language-02 .language-toggle {
    color: #333;
  }

  .header-top-bar-wrap__language-02 .language-toggle::after {
    color: #333;
  }

  .header-top-bar-wrap__language-02 .language-toggle:hover {
    color: #a4ce51;
  }

  .header-top-bar-wrap__language-02 .language-toggle:hover::after {
    color: #a4ce51;
  }
  
  .header-main-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }
  
  .header-contact__box {
    display: flex;
    align-items: center;
  }

  @media only screen and (max-width: 575px) {
    .header-contact__box {
      justify-content: center;
    }
  }

  .header-contact__icon {
    font-size: 34px;
    line-height: 1;
    color: #a4ce51;
  }

  @media only screen and (max-width: 767px) {
    .header-contact__icon {
      font-size: 28px;
    }
  }

  .header-contact__info {
    padding-left: 12px;
  }

  .header-contact__phone {
    font-size: 13px;
    display: block;
    font-weight: 700;
    color: #252525;
  }

  @media only screen and (max-width: 767px) {
    .header-contact__phone {
      font-size: 12px;
    }
  }

  .header-contact__email {
    font-size: 13px;
    display: block;
    color: #333;
  }

  @media only screen and (max-width: 767px) {
    .header-contact__email {
      font-size: 12px;
    }
  }
  
  .header-logo {
    margin-right: 28px;
    position: relative;
  }

  .header-logo__logo {
    width: 120px;
    display: block;
  }

  @media only screen and (max-width: 767px) {
    .header-logo__logo {
      width: 132px;
    }
  }
  
  .header-category-menu {
    position: relative;
    padding: 10px 0 10px 28px;
  }

  .header-logo::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    width: 1px;
    height: 40px;
    background: #d9dee3;
    transform: translateY(-50%);
  }

  .header-category-menu:hover .header-category-dropdown-wrap {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  
  .header-category-toggle {
    color: #1e3050;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 20px;
    position: relative;
    text-decoration: none;
  }

  .header-category-toggle__icon {
    margin-right: 15px;
  }

  .header-category-toggle__icon svg {
    fill: #031f42;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .header-category-toggle:hover {
    color: #a4ce51;
  }

  .header-category-toggle:hover .header-category-toggle__icon {
    margin-right: 15px;
  }

  .header-category-toggle:hover .header-category-toggle__icon svg {
    fill: #a4ce51;
  }
  
  .header-category-dropdown-wrap {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 4;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .header-category-dropdown {
    margin: 0;
    list-style-type: none;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #f8f8f8;
    border-radius: 5px;
    width: 250px;
    position: relative;
    padding: 14px 0 22px;
    height: auto; /*540px; */
  }
  .header-category-dropdown::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 29px;
    width: 0;
    height: 0;
    transform: translateX(-1px);
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 11px solid #FFFFFF;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
    z-index: 5;
  }

  .header-category-dropdown li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    position: static;
  }
  .header-category-dropdown li a {
    position: relative;
    display: block;
    padding: 9px 30px 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.31;
    color: #7e7e7e;
    text-decoration: none;
  }

  .header-category-dropdown li .toggle-sub-menu {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }

  .header-category-dropdown li:hover > a {
    color: #272d44;
    background: #f7ffe8;
  }

  .header-category-dropdown li:hover > .children {
    display: block;
  }

  .header-category-dropdown .course-list, .header-category-dropdown .sub-categories {
    position: absolute;
    left: 100%;
    top: 0px;
    margin-top: 0;
    width: 255px;
    height: 100%;
    border-radius: 0 5px 5px 0;
    padding-left: 5px;
    background: #FFFFFF;
    list-style-type: none;
    padding: 14px 0 22px;
    border: 1px solid #f8f8f8;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    display: none;
    z-index: -1;
  }

  .header-category-dropdown .course-list {
    width: 405px;
    z-index: -2;
  }

  .header-category-dropdown .course-list li + li .categories-course::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
    opacity: 1;
  }

  .header-category-dropdown .course-list li:hover > .categories-course::before {
    opacity: 0;
  }
  
  .categories-course {
    display: flex !important;
    padding: 16px 11px !important;
    margin: 0 20px;
    background: #FFFFFF;
    position: relative;
  }

  .categories-course__thumbnail {
    flex-shrink: 0;
  }

  .categories-course__caption {
    flex-grow: 1;
    padding-left: 12px;
    margin-top: -4px;
  }

  .categories-course__title {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
  }

  .categories-course__price {
    margin-top: 8px;
  }

  .categories-course__sale-price {
    font-size: 18px;
    line-height: 1.2;
    color: #031f42;
    font-weight: 700;
  }

  .categories-course__regular-price {
    font-size: 15px;
    font-weight: 500;
    color: #666666;
    text-decoration: line-through;
    margin-left: 8px;
  }
  
  .header-inner {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    align-items: center;
  }
  
  .header-serach {
    max-width: 400px;
    position: relative;
    width: 100%;
    padding: 0 10px;
  }

  @media only screen and (max-width: 767px) {
    .header-serach {
      position: absolute;
      top: 50px;
      left: 0;
      max-width: 100%;
      background-color: #FFFFFF;
      border: 1px solid #eee;
      box-shadow: 0 0 26px rgba(0, 0, 0, 0.05);
      padding: 15px;
      border-radius: 5px;
      transform: translateY(30px);
      transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
      opacity: 0;
      visibility: hidden;
    }
  }

  .header-serach.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header-serach__input {
    color: #A4CE50;
    background: #fff;
    font-weight: 500;
    height: 45px;
    padding: 3px 10px 3px 45px;
    font-size: 14px;
    width: 100%;
    border-radius: 6px;
    border: 0;
    -webkit-box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.06);
  }

  .header-serach__input:focus {
    border-color: #a4ce51;
    background-color: #FFFFFF;
  }

  .header-serach__input::-webkit-input-placeholder {
    opacity: 1;
    color: #666666;
  }

  .header-serach__input:-moz-placeholder {
    opacity: 1;
    color: #666666;
  }

  .header-serach__input::-moz-placeholder {
    opacity: 1;
    color: #666666;
  }

  .header-serach__input:-ms-input-placeholder {
    opacity: 1;
    color: #666666;
  }

  .header-serach__btn {
    position: absolute;
    top: 0;
    left: 10px;
    width: 45px;
    height: 45px;
    border: 0;
    background-color: transparent;
    color: #a4ce51;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 20px;
  }

  .mobsearch{
    margin-top: 10px;
  }
   .mob-header-serach__btn {
    position: absolute;
    left: 10px;
    width: 45px;
    height: 45px;
    border: 0;
    background-color: transparent;
    color: #a4ce51;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 20px;
  }

  @media only screen and (max-width: 767px) {
    .header-serach__btn {
      top: 15px;
    }
  }
  
  .header-serach-02 {
    max-width: 260px;
  }

  @media only screen and (max-width: 767px) {
    .header-serach-02 {
      max-width: 100%;
    }
  }

  .header-serach-02__input {
    height: 52px;
  }

  .header-serach-02__btn {
    width: 52px;
    height: 52px;
  }
  
  .menu-primary__container {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .menu-primary__container > li {
    position: relative;
    white-space: nowrap;
  }

  .menu-primary__container > li > a {
    padding: 29px 17px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #031f42;
    display: block;
    position: relative;
  }

  .menu-primary__container > li > a span {
    position: relative;
    padding: 4px 0;
  }

  .menu-primary__container > li > a span::before {
    content: "";
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: currentColor;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .menu-primary__container > li > a.active {
    color: #a4ce51;
  }

  .menu-primary__container > li > a.active span::before {
    width: 100%;
    background-color: #a4ce51;
    left: 0;
    right: auto;
  }

  .menu-primary__container > li.menu-item-has-children > a span::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    font-weight: 700;
    margin-left: 8px;
  }

  .menu-primary__container > li.mega-menu-children {
    position: static;
  }

  .menu-primary__container > li.mega-menu-children > a::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #FFFFFF;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
    transition: 0;
  }

  .menu-primary__container > li.mega-menu-children > a span::after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-size: 8px;
    font-weight: 700;
    margin-left: 8px;
  }

  .menu-primary__container > li:hover > a {
    color: #a4ce51;
  }

  .menu-primary__container > li:hover > a::before {
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .menu-primary__container > li:hover > a span::before {
    width: 100%;
    background-color: #a4ce51;
    left: 0;
    right: auto;
  }

  .menu-primary__container > li:hover .sub-menu, .menu-primary__container > li:hover .mega-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .menu-primary__container-02 > li > a {
    padding: 15px 21px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
  }
  
  .menu-primary__container-02 > li > a span::before {
    display: none;
  }

  .menu-primary__container-02 > li > a.active {
    color: #FFFFFF;
  }

  .menu-primary__container-02 > li:hover > a {
    color: #FFFFFF;
  }

  .menu-primary__container-03 > li > a {
    color: #FFFFFF;
    font-weight: 500;
  }

  .menu-primary__container-03 > li > a span::before {
    background: #ffc221;
  }

  .menu-primary__container-03 > li > a.active {
    color: #FFFFFF;
  }

  .menu-primary__container-03 > li > a.active span::before {
    background: #ffc221;
  }

  .menu-primary__container-03 > li:hover > a {
    color: #FFFFFF;
  }

  .menu-primary__container-03 > li:hover > a span::before {
    background: #ffc221;
  }

  .menu-primary .sub-menu {
    margin: 0;
    padding: 13px 0 16px;
    min-width: 250px;
    border: 1px solid #ededed;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 8;
    transform: translateY(20px);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    visibility: hidden;
  }

  .menu-primary .sub-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 40px;
    width: 0;
    height: 0;
    z-index: 100;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #FFFFFF;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.12));
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .menu-primary .sub-menu.left {
    left: auto;
    right: 0;
  }

  .menu-primary .sub-menu li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
  }

  .menu-primary .sub-menu li a {
    padding: 9px 30px;
    font-size: 13px;
    font-weight: 500;
    color: #7e7e7e;
    line-height: 1.39;
    display: block;
    white-space: nowrap;
  }

  .menu-primary .sub-menu li a span {
    display: block;
  }

  .menu-primary .sub-menu li a.active {
    color: #a4ce51;
  }

  .menu-primary .sub-menu li.menu-item-has-children > a span::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: 600;
    float: right;
    margin-left: 5px;
    margin-top: 2px;
  }

  .menu-primary .sub-menu li:hover > a {
    color: #a4ce51;
  }

  .menu-primary .sub-menu li:hover > .sub-menu {
    transform: none;
    opacity: 1;
    visibility: visible;
  }
  .menu-primary .sub-menu li .sub-menu {
    left: 100%;
    top: -13px;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
  }

  .menu-primary .sub-menu li .sub-menu::before {
    display: none;
  }

  .menu-primary .sub-menu li .sub-menu.left {
    left: auto;
    right: 100%;
  }

  .menu-primary .mega-menu {
    border: 1px solid #f8f8f8;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 8;
    width: 100%;
    padding: 30px 0;
    margin: 0;
    list-style: none;
    transform: translateY(20px);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    visibility: hidden;
  }

  .menu-primary .mega-menu-content {
    max-width: 980px;
    margin: 0 auto;
  }
  
  .menu-content-list__link {
    font-size: 13px;
    line-height: 26px;
    color: #c7c7c7;
    font-weight: 500;
    display: block;
  }

  @media only screen and (min-width: 1500px), only screen and (min-width: 1200px) and (max-width: 1499px) {
    .menu-content-list__link {
      color: #7e7e7e;
    }
  }

  .menu-content-list__link .badge {
    padding: 4px 8px;
    font-size: 11px;
    text-transform: uppercase;
    margin-left: 8px;
  }

  .menu-content-list__link .hot {
    background-image: linear-gradient(45deg, #FE378C 0%, #FE5B34 100%);
  }

  .menu-content-list__link .new {
    background: #39CABD;
  }

  .menu-content-list__link + .menu-content-list__link {
    margin-top: 10px;
  }
  
  .menu-content-banner {
    background-color: #F2F2F2;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 21px 30px 25px 30px;
    border-radius: 5px;
  }
  .menu-content-banner__title {
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
    max-width: 200px;
  }
  .menu-content-banner__btn {
    padding: 0 19px;
    height: 40px;
    line-height: 40px;
    margin-top: 14px;
    font-weight: 500;
  }
  
  .header-action {
    position: relative;
    margin-left: 20px;
  }

  .header-action a:hover {
    color: #272d45;
  }

  @media only screen and (max-width: 767px) {
    .header-action {
      margin-left: 0;
    }
  }

  .header-action__btn {
    position: relative;
    display: block;
    width: 33px;
    height: 30px;
    font-size: 18px;
    line-height: 30px;
    cursor: pointer;
    color: #B5B5B5;
  }

  .header-action__number {
    position: absolute;
    top: -4px;
    right: 0;
    padding: 0 4px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 20px;
    color: #FFFFFF;
    background: #a4ce51;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
  }

  .header-action__btn-02 {
    color: #FFFFFF;
  }

  .header-action__btn-02:focus, .header-action__btn-02:hover {
    color: #FFFFFF;
  }

  .header-action__number-02 {
    color: #031f42;
    background: #ffc221;
  }

  .header-action:hover .header-mini-cart {
    top: 100%;
    opacity: 1;
    visibility: visible;
    z-index: 99;
  }
  
  .header-action-02 {
    margin-left: auto;
    margin-right: 10px;
  }

  @media only screen and (max-width: 575px) {
    .header-action-02 {
      margin-right: 0;
    }
  }

  .header-action-02::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -25px;
    width: 1px;
    height: 40px;
    background: #d9dee3;
    transform: translateY(-50%);
  }

  @media only screen and (max-width: 575px) {
    .header-action-02::before {
      left: -15px;
      height: 28px;
    }
  }
  
  .header-mini-cart {
    position: absolute;
    top: calc(100% + 20px);
    right: 0;
    z-index: 99;
    overflow: auto;
    padding: 30px 20px 27px;
    max-height: 80vh;
    width: 360px;
    border: 0;
    border-radius: 5px;
    background-color: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.12);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    visibility: hidden;
    opacity: 0;
  }

  @media only screen and (max-width: 575px) {
    .header-mini-cart {
      right: -86px;
      width: 290px;
    }
  }

  .header-mini-cart__empty {
    text-align: center;
  }

  .header-mini-cart__icon {
    font-size: 70px;
    color: #a4ce51;
  }

  .header-mini-cart__text {
    font-size: 14px;
    font-weight: 500;
  }

  .header-mini-cart__btn {
    display: flex;
    justify-content: space-between;
  }

  .header-mini-cart__btn .btn {
    width: 48%;
    margin-top: 10px;
  }

  .header-mini-cart__product-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .header-mini-cart__item {
    position: relative;
    display: flex;
    align-items: flex-start;
    list-style-type: none;
    padding: 0 20px 0 0;
  }

  .header-mini-cart__item + .header-mini-cart__item {
    margin-top: 20px;
  }

  .header-mini-cart__close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    font-size: 0;
    line-height: 1.5;
  }

  .header-mini-cart__close::before {
    content: "\f00d";
    font-size: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    top: -3px;
    left: 4px;
  }

  .header-mini-cart__thumbnail {
    flex-shrink: 0;
    width: 80px;
  }

  .header-mini-cart__caption {
    flex-grow: 1;
    padding-left: 10px;
  }

  .header-mini-cart__name {
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 5px;
  }

  .header-mini-cart__quantity {
    display: block;
    position: relative;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.86;
  }

  .header-mini-cart__quantity .amount {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #031f42;
  }

  .header-mini-cart__quantity .separator {
    color: #031f42;
  }

  .header-mini-cart__footer {
    margin-top: 15px;
    padding-top: 16px;
    border-top: 2px solid #f3f3f3;
  }

  .header-mini-cart__total {
    display: flex;
    justify-content: space-between;
  }

  .header-mini-cart__label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #333;
  }

  .header-mini-cart__value {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    color: #031f42;
  }

  .header-mini-cart__value .separator {
    font-size: 66.666667%;
  }
  
  .header-user {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 30px;
    padding-left: 31px;
  }

  @media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .header-user {
      margin-left: 20px;
      padding-left: 21px;
    }
  }

  .header-user::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 40px;
    background: #d9dee3;
    transform: translateY(-50%);
  }

  .header-user > *:last-child {
    padding-right: 0;
  }

  .header-user__button {
    padding: 0 10px;
  }

  .header-user__login {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    position: relative;
    border: 0;
    padding: 0;
    background: none;
    white-space: nowrap;
    text-decoration: none;
  }
  .header-user__login:hover {
    color: #a4ce51;
  }

  .header-user__login:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }
  
  .header-user__signup {
    padding: 0 28px;
    height: 45px;
    line-height: 45px;
    font-weight: 500;
    background-color: #fff;
    color: #a4ce51;
    border: 0;
    -webkit-box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.06);
    border-radius: 6px;
  }

  .header-user__login-02 {
    font-size: 14px;
    font-weight: 300;
    color: #FFFFFF;
    position: relative;
    border: 0;
    padding: 0;
    background: none;
    white-space: nowrap;
  }

  .header-user__login-02::before {
    content: "";
    position: absolute;
    right: 0;
    height: 1px;
    background: #ffc221;
    bottom: 0;
    width: 0;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }

  .header-user__login-02:hover::before {
    width: 100%;
    left: 0;
    right: auto;
  }

  .header-user__signup-02 {
    padding: 0 28px;
    height: 48px;
    line-height: 48px;
    font-weight: 500;
  }
  
  .header-user-02__box {
    display: flex;
    align-items: center;
    position: relative;
  }

  .header-user-02__icon {
    font-size: 34px;
    line-height: 1;
    color: #a4ce51;
  }

  .header-user-02__info {
    padding-left: 12px;
  }

  .header-user-02__link {
    font-size: 13px;
    font-weight: 500;
    display: block;
    color: #666666;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
  }

  .header-user-02__link:hover {
    color: #252525;
  }
  
  .header-toggle {
    display: flex;
    align-items: center;
  }

  .header-toggle__btn {
    padding: 0 3px;
    border: 0;
    background-color: transparent;
    margin-left: 20px;
  }

  @media only screen and (max-width: 767px) {
    .header-toggle__btn {
      margin-left: 15px;
    }
  }

  .header-toggle__btn .line {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: #031f42;
    margin: 6px 0;
  }
  .header-toggle__btn .dots {
    height: 5px;
    width: 5px;
    border-radius: 100%;
    margin: 10px 2px;
    background-color: #031f42;
    display: inline-block;
  }

  .header-toggle__btn .dots:first-child {
    margin-left: 0;
  }

  .header-toggle__btn .dots:last-child {
    margin-right: 0;
  }

  .header-toggle__btn-02 .line {
    background-color: #FFFFFF;
  }

  .header-toggle__btn-02 .dots {
    background-color: #FFFFFF;
  }
  
  .sticky .menu-primary__container-03 > li > a {
    color: #111;
  }

  .sticky .menu-primary__container-03 > li > a span::before {
    background: #a4ce51;
  }

  .sticky .menu-primary__container-03 > li > a.active {
    color: #a4ce51;
  }

  .sticky .menu-primary__container-03 > li > a.active span::before {
    background: #a4ce51;
  }

  .sticky .menu-primary__container-03 > li:hover > a {
    color: #a4ce51;
  }

  .sticky .menu-primary__container-03 > li:hover > a span::before {
    background: #a4ce51;
  }

  .sticky .header-action__btn-02 {
    position: relative;
    display: block;
    width: 33px;
    height: 30px;
    color: #031f42;
  }

  .sticky .header-user__login-02 {
    color: #333;
  }

  .sticky .header-user__login-02::before {
    background-color: #a4ce51;
  }

  .sticky .header-toggle__btn-02 .line {
    background-color: #031f42;
  }

  .sticky .header-toggle__btn-02 .dots {
    background-color: #031f42;
  }

  .profi .header-mini-cart__item + .header-mini-cart__item {
    margin-top: 5px;
  }

  .profi .header-mini-cart__item:hover{
    background: #f7ffe8;
  }

  .avat{
    width: 40px;
    height: 40px;
  }

  .avat img {
    width: 100%;
    border-radius: 100%;
}

  .offcanvas-mobile {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 360px;
  }

  .offcanvas-mobile::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8;
    z-index: -1;
  }

  .offcanvas-mobile .offcanvas-body {
    position: relative;
  }
  
  .offcanvas-logo__logo {
    width: 148px;
  }
  
  .offcanvas-close {
    font-size: 36px;
    color: #111;
    line-height: 1;
    padding: 0;
    border: 0;
    background: none;
  }
  
  .offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .offcanvas-menu li {
    position: relative !important;
  }

  .offcanvas-menu li > a {
    padding: 19px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    color: #FFFFFF;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-decoration: none;
  }

  .menu-content-list a{
    text-decoration: none;
  }

  .menu-content-list a:hover{
    color: #fff;
    text-decoration: none;
  }

  .offcanvas-menu li:last-child a {
    border-bottom: 0;
  }

  /* .offcanvas-menu li .mobile-menu-expand {
    position: absolute;
    top: 8px;
    right: 0;
    width: 40px;
    height: 40px;
    color: #FFFFFF;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
  } 
  /* .offcanvas-menu li .mobile-menu-expand::before {
    content: "\f0d7";
    font-size: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Font Awesome Pro 6.5.1";
    font-weight: 600;
  } */
  /* .offcanvas-menu li .mobile-menu-expand:focus, .offcanvas-menu li .mobile-menu-expand:hover {
    background: rgba(255, 255, 255, 0.1);
  } */
  /* .offcanvas-menu li.active-expand > .mobile-menu-expand::before {
    content: "\f106";
  } */

  .offcanvas-menu .sub-menu {
    padding: 14px 0;
  }

  .offcanvas-menu .sub-menu li a {
    border-bottom: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .offcanvas-menu .sub-menu li a:hover {
    color: #FFFFFF;
  }

  .offcanvas-menu .sub-menu li .sub-menu {
    padding: 14px 10px;
  }

  /* .offcanvas-menu .sub-menu li .mobile-menu-expand {
    top: 0;
  } */

  .offcanvas-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .offcanvas-menu .menu-content-banner, .offcanvas-menu .menu-content-list {
    margin-top: 30px;
  }
  
  .offcanvas-user {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 30px;
    margin-left: -15px;
    margin-right: -15px;
  }

  .offcanvas-user > * {
    margin: 0 15px;
  }

  .offcanvas-user__button .btn {
    width: 130px;
    height: 50px;
    line-height: 20px;
    font-size: 16px;
  }

  @media screen and (max-width: 479px) {
    /* .edu-banner-content h1 {
      font-size: 45px !important;
      line-height: 50px !important;
    } */
    .edu-banner-content h1 {
      font-size: 30px !important;
      line-height: 40px !important;
  }
    .edu-banner-content p {
      font-size: 14px;
      color: #272d45;
    }
    .subscribe-inner-area {
      width: 100%;
    }
  }

  



/* <!------------------------------------------------------------------ header ------------------------------------------------------------> */

.hombg-top{
    background-image: url('../../images/frontend/homebg-top.png'); /* URL to your background image */
    background-size: cover; /* Cover the entire container with the background image */
    background-position: center top; /* Position the image at the center bottom of the container */
    background-repeat: no-repeat; /* Do not repeat the background image */
    position: relative; /* Establish positioning context */
    padding-top: 60px;
    padding-bottom: 20px;
}

.hombg-middle{
  background-image: url('../../images/frontend/homebg-middle.jpg'); /* URL to your background image */
  background-size: cover; /* Cover the entire container with the background image */
  background-position: center top; /* Position the image at the center bottom of the container */
  background-repeat: no-repeat; /* Do not repeat the background image */
  position: relative; /* Establish positioning context */
  padding-top: 60px;
}

.hombg-app{
  background-image: url('../../images/frontend/homebg-app.jpg'); /* URL to your background image */
  background-size: cover; /* Cover the entire container with the background image */
  background-position: center top; /* Position the image at the center bottom of the container */
  background-repeat: no-repeat; /* Do not repeat the background image */
  position: relative; /* Establish positioning context */
  padding-top: 30px;
}

.hombg-bottom{
  background-image: url('../../images/frontend/homebg-bottom.jpg'); /* URL to your background image */
  background-size: cover; /* Cover the entire container with the background image */
  background-position: center top; /* Position the image at the center bottom of the container */
  background-repeat: no-repeat; /* Do not repeat the background image */
  position: relative; /* Establish positioning context */
  padding-top: 60px;
}

.slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media only screen and (min-width: 1400px) and (max-width:1599px) {
    .slider-section {
        height:900px
    }
}

@media only screen and (min-width: 1200px) and (max-width:1400px) {
    .slider-section {
        height: 768px;
    }
    .slider-images {
        top: 130px;
    }
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .slider-section {
        height:840px
    }
}

@media only screen and (max-width: 767px),only screen and (min-width:768px) and (max-width:991px) {
    .slider-section {
        height:auto;
        padding-top: 100px;
        display: block
    }
}

.slider-images {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

@media only screen and (min-width: 992px) and (max-width:1199px) {
    .slider-images {
        width:55%
    }
}

@media only screen and (max-width: 767px),only screen and (min-width:768px) and (max-width:991px) {
    .slider-images {
        position:relative;
        width: 55%;
        margin-left: auto;
        display: none;
    }
    .padlog{
        justify-content: center !important;
    }

}

.slider-content {
    max-width: 410px
}

.slider-content .sub-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 0;
    color: #309255
}

@media only screen and (max-width: 767px),only screen and (min-width:768px) and (max-width:991px),only screen and (min-width:992px) and (max-width:1199px) {
    .slider-content .sub-title {
        font-size:16px
    }
}

@media only screen and (max-width: 575px) {
    .slider-content .sub-title {
        font-size:14px
    }
}

.slider-content .main-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0;
    margin-top: 25px
}

@media only screen and (max-width: 575px) {
    .slider-content .main-title {
        font-size:24px
    }
}

.slider-content .main-title span {
    color: #309255;
    position: relative
}

.slider-content .main-title span:before {
    position: absolute;
    content: "";
    background-image: url(../images/shape/shape-4.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 214px;
    height: 21px;
    left: 50%;
    bottom: -26px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

@media only screen and (max-width: 575px) {
    .slider-content .main-title span:before {
        display:none
    }
}

.slider-content p {
    font-size: 18px;
    margin-top: 55px;
    margin-bottom: 0
}

@media only screen and (max-width: 575px) {
    .slider-content p {
        margin-top:35px
    }
}

.regis{
    /* display: flex;
    justify-content: center;
    align-items: center; */
    height: 100%;
}

.succ-heading{
    color: #A4CE50;
    text-align: center;
}

.succ-txt{
    font-size: 20px;
    color: #5C5C5C;
    text-align: center;
}

.edu-banner-content h1 {
    font-size: 75px;
    margin-bottom: 18px;
    line-height: 90px;
    font-weight: 800;
    color: #272d45;
}

@media only screen and (max-width: 767px) {
    .edu-banner-content h1 {
        font-size: 44px;
        line-height: 50px;
    }
}

.edu-banner-content p {
    font-size: 18px;
    color: #272d45;
}

@media only screen and (max-width: 767px) {
    .edu-banner-image {
        margin-top: 30px;
    }
    .edu-banner-image img {
        max-width: 350px;
    }
}

.subscribe-inner-area{
    width: 80%;
}

.subscribe-inner-area i{
    color: #a4ce50;
}

.subscribe-inner-area .newsletter-form {
    position: relative;
    margin-top: 30px;
    padding: 15px;
    border-radius: 6px;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    background: #fff;
}

.subscribe-inner-area .newsletter-form label {
    position: absolute;
    margin-bottom: 0;
    left: 15px;
    top: 22px;
    font-size: 25px;
}

.subscribe-inner-area .newsletter-form .input-newsletter {
    height: 50px;
    display: block;
    width: 100%;
    border-radius: 5px;
    border: none;
    padding-left: 40px;
    font-size: 18px;
}

.edu-section-title {
    max-width: 750px;
    position: relative;
    text-align: center;
    margin-bottom: 55px;
    margin-right: auto;
    margin-top: -7px;
    margin-left: auto;
}

.edu-section-title .sub-title {
    display: block;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 5px;
    color: #00aaf1;
}

.edu-section-title p {
    margin-top: 12px;
    margin-bottom: 0;
}

.edu-section-title h2 {
    margin-bottom: 0;
    font-size: 44px;
    font-weight: 800;
    color: #272d45;
}

.it-course-item {
    padding: 15px;
    border-radius: 12px;
    position: relative;
    z-index: 1;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
    transition: transform 0.3s ease;
}

.it-course-item:hover {
    transform: scale(1.02);
}

.it-course-item:hover .it-course-title a {
    color: #16adf1; 
}

.it-course-item:hover{
    filter: drop-shadow(10px 10px 0px #f7fffa);
}

.it-course-thumb {
    overflow: hidden;
    border-radius: 5px;
}

.p-relative {
    position: relative;
}

.it-course-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 5px;
    transition: 1s;
}

.it-course-thumb-text {
    position: absolute;
    bottom: 10px;
    left: 10px;

    white-space: nowrap !important;
    overflow: hidden !important;
    width: 50%;
    text-overflow: ellipsis;
}

.it-course-thumb-text span {
    display: inline-block;
    padding: 2px 10px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 5px;
    color: #a4ce50;
    background-color: #f7fffa;
    font-family: 'Inter';
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.it-course-thumb-text.cours-btm{
    position: relative;
    bottom: auto;
    left: auto;
    flex:1;
    padding-right: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.it-course-thumb-text-rgt {
    position: absolute;
    bottom: 15px;
    right: 10px;
}

.it-course-thumb-text-rgt span {
    display: inline-block;
    padding: 2px 10px;
    font-size: 15px;
    font-weight: 300;
    border-radius: 5px;
    color: #26b3f2;
    background-color: #fff;
    font-family: 'Inter';
}

.it-course-thumb-text-rgt.bundl-rate{
  position: relative;
  bottom: auto;
  left: 0;
  flex:1;
  padding-right: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.it-course-thumb-text-rgt.bundl-rate span {
  background-color: #26b3f2;
  right: 0;
  position: absolute;
  color: #fff;
}

.it-course-title {
    font-size: 21px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.5;
    transition: 0.3s;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.it-course-title a {
    color: #272d45;
    text-decoration: none;
}

.it-course-info {
    border-bottom: 1px solid #d2d2d2;
}

.it-course-info > span {
    font-size: 14px;
    font-weight: 300;
    text-transform: capitalize;
    color: #272d45;
    font-family: 'Inter';
    flex: 1; /* Each span element will grow to fill available space equally */
    overflow: hidden; /* Hide any content that overflows */
    white-space: nowrap; /* Prevent text from wrapping */
    text-overflow: ellipsis; /* Display an ellipsis (...) for truncated text */
    margin-right: 10px; /* Add right margin to separate span elements */
}

.it-course-info > span i {
    color: #a4ce50;
    margin-right: 7px;
}

.it-course-info span:last-child {
    margin-right: 0; /* Remove right margin from the last span element */
}

.it-course-price-box span {
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    color: #4d5756;
}

.it-course-price-box a {
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    transition: 0.3s;
    color: #4d5756;
}

.cours-pric{
    font-size: 16px;
    font-weight: 600;
    color: #26b3f2;
    font-family: 'Inter';
    flex:1;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cours-pric span{
    font-size: 15px;
    font-weight: 500;
    color: #d2d2d2;
    text-decoration: line-through;
}

.breadcrumbarea {
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative;
    background-image: url('../../images/frontend/inner-header.png'); /* URL to your background image */
    background-size: cover; /* Cover the entire container with the background image */
    background-position: center top; /* Position the image at the center bottom of the container */
    background-repeat: no-repeat; /* Do not repeat the background image */
    position: relative; /* Establish positioning context */
}

.breadcrumb__content__wraper .breadcrumb__title h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    color: #272D45;
    margin: 0;
    font-family: 'Urbanist';
}

.breadcrumb__inner ul{
    padding-left: 0;
}

@media only screen and (max-width: 767px){
    .breadcrumbarea {
        padding-top: 55px;
        padding-bottom: 55px;
    }
    .breadcrumb__content__wraper .breadcrumb__title h2 {
        font-size: 30px;
    }
    .breadcrumb__inner ul li {
        font-size: 18px !important;
    }
    .breadcrumb__inner ul li a {
        font-size: 18px !important;
    }
}

.breadcrumb__content__wraper {
    text-align: center;
    position: relative;
/*    z-index: 9;*/
}

.breadcrumb__inner ul li {
    font-size: 20px;
    line-height: 22px;
    color: #000;
    font-weight: 300;
    list-style: none;
    display: inline-block;
    color: #00aaf1;
}

.breadcrumb__inner ul li a {
    position: relative;
    font-weight: 300;
    font-size: 20px;
    line-height: 22px;
    color: #000;
    text-decoration: none;
    font-family: 'Inter';
}

.course__text__wraper {
    border: 1px solid #E5E5E5;
    display: flex;
    justify-content: space-between;
    padding: 10px 13px;
    align-items: center;
    margin-bottom: 30px;
    border-radius: 12px;
}

.course__text__wraper .form-select {
    background-color: #F5F5F5;
    border: 0;
}

.course__text__wraper .nav-pills .nav-link {
    background: #f5f5f5;
    color: #272D45;
    margin-right: 10px;
}

.course__text__wraper .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #A4CE50;
    color: #fff;
}

.course__sidebar__wraper {
    border: 1px solid #E5E5E5;
    padding: 30px 20px 30px 20px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.course__sidebar__wraper.unlock{
  border: 0;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.coursearea{
    padding-top: 60px;
}

.searchin{
    background: #F5F5F5;
    border: 0;
    padding: 8px;
    border-radius: 6px;
    outline: 0;
}

.search-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
}

.course__heading h5{
    font-size: 18px;
    font-family: 'Urbanist';
    font-weight: 500;
}

.course__career__list ul{
    padding-left: 0;
}

.course__career__list ul{
    padding-left: 0;
}

.course__categories__list ul{
    padding-left: 0;
}

.course__career__list ul li {
    display: block;
    list-style: none;
}

.course__categories__list ul li{
    display: flex;
    list-style: none;
    font-weight: 300;
    font-size: 16px;
    font-family: 'Inter';
    line-height: 30px;
    color: #272D45;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.course__career__list ul li a {
    font-weight: 300;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    padding: 8px 13px;
    display: block;
    margin-bottom: 15px;
    background: #F7FFFA;
    color: #a4ce51;
    text-decoration: none;
    font-family: 'Inter';
}

.topic-lst{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Styles for the price input container */
.price-input-container { 
    width: 100%; 
} 
  
.price-input .price-field { 
    display: flex; 
    margin-bottom: 22px; 
} 
  
.price-field span { 
    margin-right: 10px; 
    margin-top: 6px; 
    font-size: 17px; 
} 
  
.price-field input { 
    flex: 1;
    height: 35px;
    font-size: 15px;
    border-radius: 6px;
    text-align: left;
    border: 0px;
    background: #F5F5F5;
    width: 100%;
    padding: 8px;
    margin-right: 6px;
    color: #272D45; 
} 
  
.price-input { 
    width: 100%; 
    font-size: 19px; 
    color: #555; 
} 
  
/* Remove Arrows/Spinners */
input::-webkit-outer-spin-button, 
input::-webkit-inner-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
} 
  
.slider-container { 
    width: 100%; 
} 
  
.slider-container { 
    height: 6px; 
    position: relative; 
    background: #e4e4e4; 
    border-radius: 5px; 
} 
  
.slider-container .price-slider { 
    height: 100%; 
    left: 0%; 
    right: 1%; 
    position: absolute; 
    border-radius: 5px; 
    background: #A4CE50; 
} 
  
.range-input { 
    position: relative; 
} 
  
.range-input input { 
    position: absolute; 
    width: 100%; 
    height: 5px; 
    background: none; 
    top: -5px; 
    pointer-events: none; 
    cursor: pointer; 
    -webkit-appearance: none; 
} 
  
/* Styles for the range thumb in WebKit browsers */
input[type="range"]::-webkit-slider-thumb { 
    height: 18px; 
    width: 18px; 
    border-radius: 70%; 
    background: #555; 
    pointer-events: auto; 
    -webkit-appearance: none; 
} 

.checkbox-list {
    list-style: none; /* Remove default list styles */
    max-height: 200px; /* Set maximum height for the list */
    overflow-y: auto; /* Enable vertical scrolling */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
}

@media only screen and (min-width: 1200px) and (max-width: 1400px){
    .course__sidebar__wraper .course__career__list ul li a {
        font-size: 14px;
    }
    .course__sidebar__wraper .course__categories__list ul li {
        font-size: 14px;
    }
    .edu-courses-area-inner .it-course-thumb img {
        height: 200px;
    }
    .edu-courses-area-inner .it-course-thumb-text span {
        font-size: 13px;
    }
    .edu-courses-area-inner .it-course-thumb-text-rgt span {
        font-size: 12px;
    }
    .edu-courses-area-inner .it-course-title {
        font-size: 19px;
        line-height: 1.3;
    }
    .edu-courses-area-inner .it-course-info > span {
        font-size: 12px;
    }
    .edu-courses-area-inner .cours-pric span {
        font-size: 13px !important;
    }
    .edu-courses-area-inner .cours-pric {
        font-size: 15px !important;
    }
    .edu-courses-area-inner .it-course-info > span i {
        margin-right: 2px;
    }
    .edu-courses-area-inner .it-course-thumb-text span {
        font-size: 12px;
    }
    .bundle.bundlist .single-courses-list-box .box-item .courses-desc .courses-content {
      padding: 15px !important;
    }
}

.main__pagination__wrapper {
    text-align: center;
    margin-top: 0px;
    margin-bottom: 30px;
}

.main__pagination__wrapper ul li {
    margin-right: 10px;
    list-style: none;
    display: inline-block;
}

.main__pagination__wrapper ul li a.disable {
    cursor: not-allowed;
}

.main__pagination__wrapper ul li a {
    height: 50px;
    width: 50px;
    background: #EDEDED;
    color: #000;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
}

.main__pagination__wrapper ul li a.active {
    background: #A4CE50;
    color: #fff;
}

/* /* Remove default checkbox styles */
.custom-checkbox {
    appearance: none; /* Remove default OS styling */
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 0px solid #ccc;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    background: #f5f5f5;
    margin-right: 8px;
    padding-right: 20px;
}

/* Custom checkbox checked state */
.custom-checkbox:checked {
    background-color: #A4CE50;
    border-color: #A4CE50;
}

/* Custom checkbox indicator (inner part) */
.custom-checkbox::before {
    content: ""; /* Content is required for pseudo-elements */
    display: block;
    width: 10px;
    height: 5px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    position: absolute;
    top: 6px;
    left: 5px;
    opacity: 0; /* Hide tick by default */
    transition: opacity 0.2s ease;
}

/* Custom checkbox indicator for checked state */
.custom-checkbox:checked::before {
    opacity: 1; /* Show tick when checked */
}

.gridarea__img{
    width: 40%;
}

.gridarea__content{
    width: 60%;
}

.voucher-appl{
    display: flex; /* Use flexbox layout */
    align-items: center; /* Align items vertically */
}

.voucher-appl .vouch{
    flex: 1 0 60%; /* Grow to fill 60% of available space, don't shrink, basis of 60% */
    padding: 10px; /* Add padding for spacing */
    border: 1px solid #ccc; /* Add border for visual appearance */
    border-radius: 4px; /* Add border radius */
    box-sizing: border-box; /* Include padding and border in width calculation */
    margin-right: 10px; /* Add right margin to separate from buttons */
}

.voucher-appl .vouch-btn{
    flex: 1 0 auto; /* Allow buttons to grow and shrink based on content */
    padding: 10px 20px; /* Add padding inside buttons */
    color: #fff; /* Button text color */
    border: none; /* Remove button border */
    border-radius: 4px; /* Add border radius */
    cursor: pointer; /* Show pointer cursor on hover */
}

@media only screen and (max-width: 575px) {
    .gridarea__img {
        width: 100%;
    }
    .gridarea__content {
        width: 100%;
    }
}

.it-course-content .progress{
    background-color: #8ddaf8;
}

.it-course-content .progress-bar{
    background-color: #00a5ef;
}

.it-course-content .btn-login{
    padding: 10px 15px;
}

.single-courses-list-box {
  background-color: #fff;
  border-radius: 12px;
  transition: .5s;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  transition: transform 0.3s ease;
}

.single-courses-list-box:hover {
    transform: scale(1.02);
}

.single-courses-list-box:hover .it-course-title a {
    color: #26b3f2; 
}

.single-courses-list-box .box-item, .single-events-box .events-box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 12px;
}

.single-courses-list-box .box-item .courses-image {
  flex: 0 0 25%;
  max-width: 25%;
  border-radius: 12px 0 0 12px;
}

.single-courses-list-box .box-item .courses-image .image {
  position: relative;
  height: 100%;
}

.single-courses-list-box .box-item .courses-image .image img {
  height: 100%;
  width: 100%;
  position: relative;
  border-radius: 12px 0 0 12px;
  display: block;
  object-fit: cover;
  object-position: top;
}

.single-courses-list-box .box-item .courses-desc {
  flex: 0 0 55%;
  max-width: 55%;
}

.single-courses-box .courses-content, .single-courses-list-box .box-item .courses-desc .courses-content {
  padding: 25px 20px 20px;
}

.bundle.bundlist .single-courses-list-box .box-item .courses-desc .courses-content {
  padding: 20px;
}

.single-courses-list-box .box-item .courses-price {
  flex: 0 0 20%;
  max-width: 20%;
}

@media only screen and (max-width: 767px) {
  .single-courses-list-box .box-item .courses-image {
      flex: 0 0 100%;
      max-width: 100%;
      border-radius: 5px 5px 0 0;
  }
  .single-courses-list-box .box-item .courses-desc {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .single-courses-list-box .box-item .courses-price {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.modal-body .course__heading h4{
  font-size: 20px;
  font-weight: 600;
  font-family: 'Inter';
}

.profile-pic {
  width: 200px;
  max-height: 200px;
  display: inline-block;
}

.file-upload {
  display: none;
}
.circle {
  border-radius: 100% !important;
  overflow: hidden;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  top: 0px;
}
img {
  max-width: 100%;
  height: auto;
}
.p-image {
  position: relative;
  top: -60px;
  right: -130px;
  color: #666666;
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  background: #00ABF2;
  width: 40px;
  border-radius: 100%;
  height: 40px;
}
.p-image:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
}
.upload-button {
  font-size: 1.4em;
  text-align: center;
  color: #fff;
  position: relative;
  display: block;
  line-height: 40px;
}

.upload-button:hover {
  transition: all .3s cubic-bezier(.175, .885, .32, 1.275);
  color: #999;
}

.instit{
  width: 300px;
  height: 90px;
  border: 1px solid #E5E5E5;
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 10px;
}

.instit img{
  height: 70px;
}

.achievement__top p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #272d45;
  margin-bottom: 25px;
}

.achievement__item {
  padding: 20px 10px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  background: #fff;
}

@media (max-width: 991px) {
  .achievement__item {
      margin-bottom: 20px;
  }
}

.achievement__img {
  width: 80px;
  height: 80px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 100%;
  -ms-flex-preferred-size: 80px;
  flex-basis: 80px;
}

.achievement__number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.3;
  color: #a4ce50;
  letter-spacing: 0.96px;
}

.achievement__info p {
  font-weight: 500;
  line-height: 24px;
  color: #272d45;
  font-size: 16px;
}

.about__inner {
  display: -ms-grid;
  display: grid;
  grid-gap: 50px;
  -ms-grid-columns: 1fr 50px 1.1fr;
  grid-template-columns: 1fr 1.1fr;
}

.about__img {
  position: relative;
}

.about__img .image {
  z-index: 3;
  width: 100%;
  position: relative;
}

.about__content {
  padding-top: 80px;
}

.about__content p {
  font-size: 16px;
  font-family: 'Inter';
}

.sec-subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #00aaf1;
  text-transform: capitalize;
  padding-bottom: 10px;
}

.sec-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #272d45;
}

.about__content ul {
  padding-bottom: 30px;
  padding-left: 20px;
  font-family: 'Inter';
  font-weight: 500;
  color: #272d45;
}

.about__content ul li::marker{
  color: #a4ce51;
  font-size: 22px;
}

@media (max-width: 991px) {
  .about__inner {
      -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  }
}

.service-wrapper {
  position: relative;
  z-index: 1;
}

.service-wrapper .service-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 45px;
  margin-bottom: 45px;
}

.service-wrapper .service-content .section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-wrapper .service-content .section-head h2 {
  margin-bottom: 40px;
  font-size: 44px;
  font-weight: 800;
  color: #272d45;
}

.service-wrapper .service-content .course-type {
  border: 2px dashed #d9d9d9;
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  background: #fff;
  transition: transform 0.3s ease;
}

.service-wrapper .service-content .course-type:hover {
  transform: scale(1.02);
}

.service-wrapper .service-content .course-type:hover .course-title a {
  color: #a4ce51;
}

.service-wrapper .service-content .course-type .course-icon {
  margin-bottom: 25px;
}

.service-wrapper .service-content .course-type .course-icon i {
  font-size: 50px;
  padding: 45px;
  display: inline-block;
  border-radius: 100%;
  background-color: #eefbf3;
  color: #a4ce50;
}

.service-wrapper .service-content .course-type .course-title a {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #272d45;
  text-decoration: none;
}

.service-wrapper .service-content .course-type .course-durations {
  margin-bottom: 0;
  color: #00adf1;
  font-family: 'Inter';
  font-size: 16px;
}

.service-wrapper .service-content .course-form {
  grid-column: 3 / span 2;
  padding: 20px;
  background-color: #a4ce50;
  border-radius: 25px;
}

@media screen and (max-width: 991px) {
  .service-wrapper .service-content {
      grid-column-gap: 30px;
      grid-row-gap: 45px;
      grid-template-columns: repeat(2, 1fr);
  }
  .service-wrapper .service-content .course-form {
    grid-column: 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  .service-wrapper .service-content {
      grid-template-columns: repeat(1, 1fr);
  }
  .service-wrapper .service-content .course-form {
    grid-column: 1;
    padding: 25px 20px !important;
  }
  .join-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr !important;
  }
  .join-img{
    display: none;
  }
}

.join-inner {
  display: -ms-grid;
  display: grid;
  grid-gap: 40px;
  -ms-grid-columns: 1fr 50px .6fr;
  grid-template-columns: 1fr .6fr;
}

.join-content h3{
  color: #fff;
  font-size: 34px;
  font-weight: 700;
  line-height: 38px;
}

.join-img {
  position: relative;
}

.join-img img{
  height: 290px;
}

.btn-join{
  background: #fff;
  color: #A4CE50;
  padding: 10px 15px;
  border: 1px solid #fff;
  display: block;
  width: 130px;
}

.bundle .single-courses-list-box .box-item .courses-image {
  flex: 0 0 35%;
  max-width: 35%;
  border-radius: 12px 0 0 12px;
}

.bundle .single-courses-list-box .box-item .courses-desc {
  flex: 0 0 65%;
  max-width: 65%;
}

@media only screen and (max-width: 767px) {
  .bundle .single-courses-list-box .box-item .courses-image {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 5px 5px 0 0;
  }
  .bundle .single-courses-list-box .box-item .courses-desc {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.app-inner{
  display: -ms-grid;
  display: grid;
  grid-gap: 40px;
  -ms-grid-columns: 1fr 50px .6fr;
  grid-template-columns: 1fr .6fr;
}

.app-content h3{
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 800;
  color: #272d45;
}

.app-content p{
  display: block;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 5px;
  color: #272d45;
}

.footerarea {
  background: #0a122c;
  color: #a2a5d1;
  font-family: 'Inter';
}

.dwnld-btn div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}

.dwnlds a {
  display: inline-block;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-weight: 300;
  color: #fdfdfd;
  margin-right: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 0 20px;
  position: relative;
  -webkit-box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 18px 0 rgba(0, 0, 0, 0.06);
  background: #fff;
}


@media (max-width: 991px) {
  .app-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .app-img{
    display: none;
  }
  .dwnlds a {
    margin-bottom: 0;
  }
  .edu-banner-content h1 {
    font-size: 65px;
    margin-bottom: 18px;
    line-height: 70px;
    padding-top: 50px;
  }
}

@media screen and (max-width: 479px) {
  .app-content h3 {
  font-size: 26px;
  font-weight: 800;
  color: #272d45;
  }
  .dwnlds a {
    margin-right: 10px;
    height: 50px;
    line-height: 50px;
    width: 140px;
  }
  .hombg-app{
    background-image: url('../../images/frontend/homebg-mbl-app.jpg');
  }
}

.header-mini-cart__name a{
  color: #272d45;
  text-decoration: none;
  font-size: 16px;
}

input, button, select, optgroup, textarea {
  outline: none;
}

.bundle.bundlist .it-course-thumb-text span {
  font-size: 13px;
}

.bundle.bundlist .it-course-thumb-text-rgt span {
  font-size: 13px;
}

.bundle.bundlist .it-course-info > span {
  font-size: 13px;
}

.bundle.bundlist .cours-pric {
  font-size: 16px;
}

.bundle.bundlist .cours-pric span {
  font-size: 14px;
}

.bund-inner .it-course-title {
    font-size: 40px;
}

.bund-inner .it-course-thumb-text span {
  font-size: 16px !important;
}

.bund-inner .it-course-info > span {
  font-size: 16px !important;
}

.bund-inner p{
  font-size: 20px;
  font-family: 'Inter';
  font-weight: 300;
}

.bund-inner-list .it-course-thumb-text span {
  font-size: 16px !important;
}

.bund-inner-list .it-course-info > span {
  font-size: 16px !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .bund-inner .it-course-title {
    font-size: 36px !important;
  }
  .bund-inner-list .it-course-thumb-text span {
    font-size: 13px !important;
  } 
  .bund-inner-list .it-course-info > span {
    font-size: 13px !important; 
  }  
  .bund-inner p{
    font-size: 16px !important;
  }
  .course__sidebar__wraper.unlock ul li {
    font-size: 14px !important;
  }
}

.course__sidebar__wraper.unlock{
  padding: 20px;
}

.course__sidebar__wraper.unlock ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.course__sidebar__wraper.unlock ul li{
  display: flex;
  align-items: start;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  text-transform: capitalize;
  padding: 0;
  margin: 14px 0 0;
  color: #5C5C5C;
  font-family: 'Inter';
}

.course__sidebar__wraper.unlock ul li i {
  color: #A4CE50;
  display: inline-block;
  margin-right: 11px;
  margin-top: 1px;
  font-size: 18px;
}

.course__sidebar__wraper.unlock .cours-pric {
  font-size: 26px;
}

.course__sidebar__wraper.unlock .cours-pric span {
  font-size: 20px;
}

.course__sidebar__wraper.unlock h5 {
  font-size: 18px;
}

.review__box {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  min-width: 200px;
  padding: 29px 10px;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
}

.review__box .review__number {
  font-weight: 600;
  font-size: 64px;
  line-height: 90px;
  color: #00ADF1;
}

.review__box .review__icon i {
  color: #00ADF1;
}

.review__box span {
  font-weight: 500;
  font-size: 16px;
  line-height: 36px;
  color: #5C5C5C;
}

.review__wrapper .single__progress__bar {
  position: relative;
}

.review__wrapper .single__progress__bar .rating__text {
  display: inline-block;
  position: relative;
  top: 15px;
  color: #5C5C5C;
}

.review__wrapper .single__progress__bar .rating__text i {
  color: #00ADF1;
  font-size: 15px;
  padding: 0 3px;
}

.review__wrapper .single__progress__bar span {
  position: absolute;
  right: 0;
  top: 50%;
}

.review__wrapper .single__progress__bar .progress {
  max-width: 90%;
  margin-left: 38px;
  height: 6px;
  background: #8ddaf8;
}

.review__wrapper .single__progress__bar .progress .progress-bar {
  background-color: #00a5ef;
}

.revie h5{
  font-size: 18px;
}

.col--30 {
  padding-left: 30px;
  padding-right: 30px;
}

.property__facts__feature {
  margin-top: 60px;
  margin-bottom: 40px;
}

.property__comment .property__comment__list:first-child {
  margin-top: 0;
}

.property__comment .property__comment__list {
  list-style: none;
  padding-top: 15px;
  position: relative;
  margin-top: 15px;
}

.property__comment .property__comment__list .property__comment__img {
  max-width: 100px;
  margin-right: 30px;
  float: left;
}

.property__comment .property__comment__list .property__comment__img img {
  width: 100%;
  border-radius: 100%;
}

.property__comment .property__comment__list .property__comment__comment h6 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.property__comment .property__comment__list .property__comment__comment .property__sidebar__icon ul li i {
  color: #00ADF1;
  font-size: 14px;
}

.property__comment .property__comment__list .property__comment__comment p {
  font-size: 14px;
  margin: 0;
}

.property__sidebar__icon ul li{
  list-style: none;
  display: inline-block;
}

.property__comment__reply__btn{
  font-size: 14px;
  font-family: 'Inter';
  font-weight: 300;
}

.property__comment__list p{
  font-size: 16px;
  font-family: 'Inter';
  font-weight: 300;
}

@media screen and (max-width: 479px) {
  .review__wrapper .single__progress__bar .progress {
    max-width: 84%;
  } 
  .bund-inner .it-course-title {
    font-size: 26px;
  }
  .bund-inner .it-course-thumb-text span {
    font-size: 13px !important;
  }
  .bund-inner .it-course-info > span {
    font-size: 13px !important;
  }
}

.it-course-info-rev{
  display: inline-block;
  padding: 2px 10px;
  font-size: 16px;
  font-weight: 300;
  border-radius: 5px;
  color: #26b3f2;
  background-color: #fff;
  font-family: 'Inter';
}

.course__sidebar__wraper_detai{
  border: 1px solid #E5E5E5;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 12px;
}

.course__sidebar__wraper_detai ul{
  padding-left: 15px;
  margin-bottom: 0;
}

.course__sidebar__wraper_detai ul li{
  color: #5C5C5C;
  font-size: 16px;
  font-family: 'Inter';
  font-weight: 300;
  line-height: 30px;
}

.accordion-item {
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  margin-bottom: 15px;
  border-radius: 12px;
  border: 0;
}

.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #a4ce51;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-top-left-radius: 12px !important;
  border-top-right-radius: 12px !important;
}

.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-button:after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-button {
  border-radius: 12px;
}

#syllabus-list .list-group-item{
  border: 0;
  padding: 0;
  margin: 4px 0px 3px 0px; /* New changes */
}

#syllabus-list .align-items-start
{
  min-width: 12px; /* New changes */
}

.syl-name a{
  font-size: 16px;
  color: #5C5C5C;
  text-decoration: none;
}

.syl-name span{
  font-size: 13px;
  color: #A2A2A2;
}

.course__sidebar__wraper_detai p{
  color: #5C5C5C;
  font-size: 16px;
  font-family: 'Inter';
  font-weight: 300;
  line-height: 30px;
}

.it-course-thumb button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background: #aad15d;
  border: 0;
  border-radius: 8px;
  padding: 8px 22px;
}

.it-course-thumb button i{
  font-size: 35px;
}

.it-course-thumb button:hover {
  background-color: #90bb38;
  border-color: #90bb38;
}

.it-course-thumb button:first-child:active {
  background-color: #90bb38;
  border-color: #90bb38;
}

@media only screen and (min-width: 1200px) and (max-width: 1400px) {
  .course__sidebar__wraper_detai ul li {
    font-size: 14px;
  }
  .course__sidebar__wraper_detai p {
    font-size: 14px;
    line-height: 24px;
  }
  .property__comment__list p {
    font-size: 14px;
  } 
}

@media screen and (max-width: 479px) {
  .bund-inner p {
    font-size: 14px;
  }
  .it-course-info-rev {
    font-size: 14px;
  }
  .course__sidebar__wraper_detai ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .course__sidebar__wraper_detai p {
    font-size: 14px;
    line-height: 24px;
  }
  .property__comment__list p {
    font-size: 14px;
  }
  .course__sidebar__wraper.unlock ul li {
    font-size: 14px;
  }
}

.footerarea__wrapper {
  padding-top: 110px;
  padding-bottom: 40px;
}

.footerarea__wrapper .footerarea__inner .footerarea__heading h3 {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 15px;
}

.footerarea__wrapper .footerarea__inner .footerarea__content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul {
  margin: 0px;
  padding: 0px;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul li {
  display: block;
  margin-bottom: 18px;
  list-style: none;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul li a {
  font-size: 16px;
  font-weight: 300;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
  color: #a2a5d1;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul li a:hover {
  color: #26b3f2;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul li a:hover::after {
  opacity: 1;
  visibility: visible;
  width: 100%;
}

.footerarea__wrapper .footerarea__inner .footerarea__list ul li a:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background: #26b3f2;
  left: 0;
  bottom: -5px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.footerarea__icon ul li {
  margin-right: 5px;
  list-style: none;
  display: inline-block;
}

.footerarea__icon ul li a {
  height: 44px;
  width: 44px;
  line-height: 44px;
  background: #2b3046;
  font-size: 16px;
  border-radius: 3px;
  display: inline-block;
  text-align: center;
  color: #fff;
}

.footerarea__icon ul li a:hover{
  background: #a4ce51;
}

.footerarea__copyright__content{
  color: #fff;
}
/*
 .range-slider {
  width: 250px;
  margin: auto;
  text-align: center;
  position: relative;
  height: 6em;
}

.range-slider svg,
.range-slider input[type=range] {
  position: absolute;
  left: 0;
  bottom: 0;
}*/

/*input[type=number] {
  border: 1px solid #ddd;
  text-align: center;
  font-size: 1.6em;
  -moz-appearance: textfield;
}*/
/*
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number]:invalid,
input[type=number]:out-of-range {
  border: 2px solid #ff6347;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #2497e3;
}

input[type=range]:focus::-ms-fill-lower {
  background: #2497e3;
}

input[type=range]:focus::-ms-fill-upper {
  background: #2497e3;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #2497e3;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-webkit-slider-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: #2497e3;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-moz-range-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  animate: 0.2s;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper {
  background: #2497e3;
  border-radius: 1px;
  box-shadow: none;
  border: 0;
}

input[type=range]::-ms-thumb {
  z-index: 2;
  position: relative;
  box-shadow: 0px 0px 0px #000;
  border: 1px solid #2497e3;
  height: 18px;
  width: 18px;
  border-radius: 25px;
  background: #a1d0ff;
  cursor: pointer;
}*/
.no_course_found{
      text-align: center;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}

.it-course-item .it-course-thumb-text.cours-btm
{
  min-height: 35px;
}

.input-icons .form-control:not(:last-child), .input-icons .form-control:not(:first-child)
{
  padding-left: 80px;
}

.input-icon {
    position: absolute;
    /* top: 15px; */
    /* left: 10px; */
    background: #d6d4d4;
    padding: 17px;
}

.clear-filters{
      text-align: right;
    margin-top: 15px;
}
.clear-filters a{
   cursor: pointer;
}

/* Custom scrollbar style */


/* Custom close button style */
.custom-modal .close {
  color: #fff;
  background-color: red; 
  border: none;
  font-size: 1.8rem; 
  width: 30px; 
  height: 30px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}


.custom-modal .close:hover {
  opacity: 1; /* Hover effect */
}

.custom-modal-footer {
  background-color: #f1f1f1; /* Example footer background color */
}

.custom-modal-body::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

.custom-modal-body::-webkit-scrollbar-track {
  background-color: #f1f1f1; /* Track color */
}

.custom-modal-body::-webkit-scrollbar-thumb {
  background-color: #888; /* Thumb color */
  border-radius: 6px; /* Rounded corners */
}

/* Custom scrollbar for Firefox */
.custom-modal-body {
  scrollbar-width: thin; /* Width of the scrollbar */
  scrollbar-color: #888 #f1f1f1; /* Thumb color and track color */
}

/* Adjust scrollbar height and behavior */
.custom-modal-body {
  max-height: 400px; /* Example height; adjust as needed */
  overflow-y: auto; /* Enable vertical scrollbar */
}


.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
  height: 70px;
  object-fit: cover;
}
.carousel-inner {
  padding: 1em;
}

.quotes.display-2{
  font-size: 2.5rem;
  color: #a4ce51;
  padding-left: 7px;
}

#testimonialCarousel .card-text{
  font-size: 15px;
}

#testimonialCarousel .text-secondary{
  font-size: 14px;
  color: #16adf1 !important;
}

#testimonialCarousel .carousel-control-prev-icon, #testimonialCarousel .carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
}

#testimonialCarousel .carousel-control-prev, #testimonialCarousel .carousel-control-next {
  width: 2rem;
  height: 2rem;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 94%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 991px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: #0b122c;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}


/* ------------------------------testimonials------------------------------- */

