@font-face {
  font-family: "Gilroy";
  src: url("../../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroysemibold";
  src: url("../../fonts/Gilroy-SemiBold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroymedium";
  src: url("../../fonts/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

:root {
  --primary-color: rgba(173, 224, 241, 1);
  --secondary-color: rgba(22, 68, 91, 1);
  --white: #fff;
  --gilroy: "Gilroy";
  --gilroySemiBold: "Gilroysemibold";
  --gilroyMedium: "Gilroymedium";
}

button {
  border: 0;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--gilroy);
  max-width: 1920px;
  margin: 0 auto;
}

.background-main {
  background: #FDFAF5;
}

.background-main.grey {
  background: rgb(255, 255, 255);
}

ul,
li {
  margin: 0;
  padding: 0;
  /* list-style: none; */
  font-family: 'Gilroymedium';
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.primary-title {
  font-size: clamp(26px, 5vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  color: #16445B;
  font-family: var(--primary-color);
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.primary-title.small {
  font-size: clamp(26px, 4vw, 52px);
}

@media screen and (max-width: 767px) {
  .primary-title img {
    width: 25px !important;
    height: 25px !important;
  }
}

.primary-title.white {
  color: var(--white);
}

.secondary-title {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.1;
  color: #16445B;
  font-family: var(--primary-color);
}

.secondary-title.white {
  color: var(--white);
}

.desc {
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 500;
  color: #16445B;
  line-height: 1.2;
}

.primary-btn {
  background: var(--primary-color);
  border-radius: 50px;
  padding: 6px 24px;
  color: var(--white);
  display: block;
  max-width: max-content;
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  transition: 0.3s linear;
  box-shadow: 0px 6px 0px -2px rgb(148, 202, 220);
}

.primary-btn.md {
  padding: 12px 20px;
}

.primary-btn.md img {
  width: 20px;
}

.primary-btn.lg {
  padding: 16px 24px;
}

.primary-btn.lg img {
  width: 20px;
}

.primary-btn.xl {
  padding: 7px 50px;
}

.primary-btn.xl img {
  width: 20px;
}

@media screen and (max-width: 767px) {
  .primary-btn {
    border-radius: 50px;
    padding: 4px 16px;
  }
}

.primary-btn img {
  width: 30px;
}

.primary-btn:hover {
  color: var(--white);
  box-shadow: 0 0 0 0 rgb(148, 202, 220);
}

.yellow-btn {
  background: rgb(255, 182, 54);
  border-radius: 50px;
  padding: 6px 24px;
  color: var(--white);
  display: block;
  max-width: max-content;
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  transition: 0.3s linear;
  box-shadow: 0px 6px 0px -2px rgb(228, 145, 8);
}

.yellow-btn.md {
  padding: 12px 20px;
}

.yellow-btn.md img {
  width: 20px;
}

.yellow-btn.lg {
  padding: 16px 24px;
}

.yellow-btn.lg img {
  width: 20px;
}

.yellow-btn.xl {
  padding: 7px 50px;
}

.yellow-btn.xl img {
  width: 20px;
}

@media screen and (max-width: 767px) {
  .yellow-btn {
    border-radius: 50px;
    padding: 4px 16px;
  }
}

.yellow-btn img {
  width: 35px;
  height: 35px;
  border-radius: 35px;
}

.header-username {
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  white-space: nowrap;
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 80px; */
}

.yellow-btn .header-username {
  white-space: normal;
}

.yellow-btn ul.dropdown-menu.show {
  width: 230px;
}

.yellow-btn:hover {
  color: var(--white);
  box-shadow: 0 0 0 0 rgb(228, 145, 8);
}

.yellow-btn a {
  color: var(--white);
  align-items: center;
  display: flex;
  gap: 10px;
}

.secondary-btn {
  font-family: var(--gilroySemiBold);
  background: var(--primary-color);
  border-radius: 10px;
  padding: 10px 24px;
  color: var(--white);
  display: block;
  max-width: max-content;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  transition: 0.3s linear;
}

.secondary-btn.md {
  padding: 12px 20px;
}

.secondary-btn.md img {
  width: 20px;
}

.secondary-btn.lg {
  padding: 16px 24px;
}

.secondary-btn.lg img {
  width: 20px;
}

.secondary-btn.xl {
  padding: 7px 50px;
}

.secondary-btn.xl img {
  width: 20px;
}

.secondary-btn img {
  width: 30px;
}

.secondary-btn:hover {
  color: var(--white);
}

.enroll-icon-main {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: inline-block;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .enroll-icon-main {
    bottom: 100px;
    left: 10px;
  }
}

.enroll-icon-main a {
  background: rgb(254, 203, 60);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80px;
  height: 80px;
  border: solid 1px rgb(0, 0, 0);
  /* Initial black border */
  border-radius: 100%;
  position: relative;
  text-decoration: none;
  animation: shadowPulse 6s infinite ease-in-out;
}

@media screen and (max-width: 992px) {
  .enroll-icon-main a {
    width: 60px;
    height: 60px;
  }

  .enroll-icon-main a img {
    max-width: 25px;
  }
}

.enroll-icon-main a span {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .enroll-icon-main a span {
    font-size: 12px;
  }
}

@keyframes shadowPulse {
  0% {
    border: solid 1px rgb(0, 0, 0);
    box-shadow: 0 0 0 0 rgb(222, 168, 25), 0 0 0 0 rgb(254, 203, 60);
  }

  50% {
    border: solid 1px rgb(209, 163, 50);
    box-shadow: 0 0 0 5px rgb(236, 182, 48), 0 0 0 10px rgb(209, 163, 50);
  }

  100% {
    border: solid 1px rgb(0, 0, 0);
    box-shadow: 0 0 0 0 rgb(222, 168, 25), 0 0 0 0 rgb(254, 203, 60);
  }
}

.whatsapp-icon-main {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: inline-block;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .whatsapp-icon-main {
    bottom: 100px;
    right: 10px;
  }

  .whatsapp-icon-main img {
    max-width: 60px;
  }
}

.toastify {
  font-family: var(--gilroySemiBold) !important;
  font-weight: 600 !important;
  color: #000 !important;
}

@media screen and (max-width:768px) {
  .toastify {
    max-width: calc(100% - 30px);
  }
}

.toast-close {
  color: #000000 !important;
}

.swiper-button:after {
  display: none;
}

.swiper-button {
  position: relative;
  left: 0;
  right: 0;
  border: 1.4px solid rgba(35, 35, 35, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 50px;
  opacity: 1 !important;
  background: rgb(173, 224, 241);
  border-color: rgb(173, 224, 241);
  transform: rotate(180deg);
  line-height: 50px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .swiper-button {
    width: 40px;
    height: 40px;
  }
}

.swiper-button img {
  filter: brightness(0) invert(1);
}

.swiper-button.swiper-button-disabled {
  background-color: unset;
  border: 1.4px solid rgba(35, 35, 35, 0.2);
}

.swiper-button.swiper-button-prev img {
  transform: rotate(180deg);
}

.swiper-button.meetPrev img {
  transform: rotate(180deg);
}

.swiper-button.swiper-button-disabled img {
  filter: grayscale(100%);
  opacity: 0.5;
}

.iti {
  width: 100%;
}

.iti .iti__flag-container {
  padding-inline-start: 20px;
}

.iti .iti__tel-input {
  padding-left: 100px !important;
}

.iti .iti__search-input {
  padding: 10px;
}

/* Select2 End */
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  color: #000;
  background-color: #F6F6F6;
}

.select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
  font-family: "ArchivoRegular", sans-serif;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-size: 14px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection,
.select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field,
.select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #ced4da;
}

.select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ced4da;
}

.input .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  font-family: var(--gilroy);
  font-size: 16px;
  font-weight: 400;
  color: rgb(107, 114, 128);
  padding: 0;
  line-height: 1.5;
}

.input .select2-container .select2-selection--single {
  height: unset;
  background-color: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1) !important;
  padding-block: 14px;
  border-radius: 10px;
  border: 0;
  font-size: 14px;
  font-family: "ArchivoRegular", sans-serif;
}

/* Select2 End */
header {
  padding: 20px 20px 20px 20px;
}

@media screen and (max-width: 992px) {
  header {
    padding: 10px 0 10px 0;
  }
}

header .logo-menu-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

header .logo-menu-main .logo-main a img {
  width: 100px;
  height: 100px;
}

header .logo-menu-main .cart-basket-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .logo-menu-main .cart-basket-menu .menu-main {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(204, 204, 204, 0.3098039216);
  background: var(--white);
  padding: 6px 20px;
  border-radius: 60px;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li {
  list-style: none;
}

header .logo-menu-main .cart-basket-menu .mobile-menu>li ul {
  list-style: none;
}

header .menu-main>ul>li>ul li svg {
  min-width: 20px;
}

header .mobile-menu>li>ul li svg {
  min-width: 20px;
}

header .menu-main>ul>li>ul li:nth-child(4n + 1) svg {
  fill: #ffbaba;
}

header .menu-main>ul>li>ul li:nth-child(4n + 2) svg {
  fill: #759bf8;
}

header .menu-main>ul>li>ul li:nth-child(4n + 3) svg {
  fill: #ffd37d;
}

header .menu-main>ul>li>ul li:nth-child(4n + 4) svg {
  fill: #77c6b3;
}

header .mobile-menu>li>ul li:nth-child(4n + 1) svg {
  fill: #ffbaba;
}

header .mobile-menu>li>ul li:nth-child(4n + 2) svg {
  fill: #759bf8;
}

header .mobile-menu>li>ul li:nth-child(4n + 3) svg {
  fill: #ffd37d;
}

header .mobile-menu>li>ul li:nth-child(4n + 4) svg {
  fill: #77c6b3;
}


header .logo-menu-main .cart-basket-menu .menu-main>ul li a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  color: var(--secondary-color);
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li a.active {
  color: rgb(255, 182, 54) !important;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li a.active path {
  stroke: rgb(255, 182, 54);
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul {
  position: absolute;
  flex-direction: column;
  z-index: 999;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(48, 48, 48, 0.1019607843);
  border: 1px solid #303030;
  border-radius: 12px;
  width: 290px;
  gap: 0px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul.show {
  visibility: visible;
  opacity: 1;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li {
  padding: 0;
  width: 100%;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li a {
  overflow: hidden;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.5s;
  /* text-wrap: nowrap; */
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li a>div {
  transition: 0.5s;
  gap: 15px;
  margin-left: 0;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li a>div>img {
  transition: 0.5s;
  margin-left: -45px;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li a:hover {
  text-decoration: none;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li a:hover>div>img {
  margin-left: 0;
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li:nth-child(1) a:hover {
  background: rgba(255, 186, 186, 0.2);
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li:nth-child(2) a:hover {
  background: rgba(117, 155, 248, 0.2);
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li:nth-child(3) a:hover {
  background: rgba(255, 211, 125, 0.2);
}

header .logo-menu-main .cart-basket-menu .menu-main>ul li.mainDropdown ul li:nth-child(4) a:hover {
  background: rgba(119, 198, 179, 0.2);
}

header .logo-menu-main .cart-basket-menu .menu-main .yellow-btn {
  margin-bottom: 4px;
}

header .mobile-menu-icon {
  cursor: pointer;
  width: 50px;
  opacity: 0.5;
}

header .sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: 350px;
  background-color: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.1215686275);
  background-color: #fff;
  z-index: 102;
  transform: translateX(400px);
  visibility: hidden;
  transition: 0.3s;
  padding: 30px;
  opacity: 0;
}

header .sidebar.active {
  transform: translateX(0px);
  visibility: visible;
  opacity: 1;
}

header .sidebar .closeSidebar {
  opacity: 0.3;
}

header .mobile-main .mobileLogo {
  width: 80px;
}

header .mobile-main .mobile-bar-cart {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .mobile-main .mobile-menu>li {
  border-bottom: 1px solid rgba(35, 35, 35, 0.2);
  padding: 5px 0px;
  list-style: none;
}

header .mobile-main .mobile-menu>li ul>li {
  list-style: none;
}

header .mobile-main .mobile-menu>li a {
  font-family: var(--gilroySemiBold);
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 400;
  color: var(--secondary-color);
  padding: 5px 0px;
  display: block;
  width: max-content;
}

header .mobile-main .mobile-menu>li a.active {
  color: rgb(255, 182, 54) !important;
}

header .mobile-main .mobile-menu>li a.active path {
  stroke: rgb(255, 182, 54);
}

header .mobile-main .mobile-menu>li.mainDropdown a {
  font-family: var(--gilroySemiBold);
  font-size: clamp(14px, 3vw, 17px);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

header .mobile-main .mobile-menu>li.mainDropdown ul {
  position: absolute;
  flex-direction: column;
  z-index: 999;
  background: white;
  box-shadow: 0px 1px 2px 0px rgba(48, 48, 48, 0.1019607843);
  border: 1px solid #303030;
  border-radius: 12px;
  width: 260px;
  gap: 0px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s all;
}

header .mobile-main .mobile-menu>li.mainDropdown ul.show {
  visibility: visible;
  opacity: 1;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li {
  padding: 0;
  width: 100%;
  border-bottom: 0;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li a {
  overflow: hidden;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  text-decoration: none;
  border-radius: 12px;
  transition: 0.5s;
  text-align: left;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li a>div {
  transition: 0.5s;
  gap: 15px;
  margin-left: 0;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li a>div>img {
  transition: 0.5s;
  margin-left: -45px;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li a:hover {
  text-decoration: none;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li a:hover>div>img {
  margin-left: 0;
}

header .mobile-main .mobile-menu>li.mainDropdown ul li:nth-child(1) a:hover {
  background: rgba(255, 186, 186, 0.2);
}

header .mobile-main .mobile-menu>li.mainDropdown ul li:nth-child(2) a:hover {
  background: rgba(117, 155, 248, 0.2);
}

header .mobile-main .mobile-menu>li.mainDropdown ul li:nth-child(3) a:hover {
  background: rgba(255, 211, 125, 0.2);
}

header .mobile-main .mobile-menu>li.mainDropdown ul li:nth-child(4) a:hover {
  background: rgba(119, 198, 179, 0.2);
}

header .dropdown button {
  background: transparent;
  padding: 0;
}

header .dropdown button::after {
  display: none;
}

header .dropdown .dropdown-menu {
  margin-top: 8px;
}

header .dropdown .dropdown-menu .dropdown-item {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: rgba(16, 16, 16, 0.6);
  transition: 0.3s all;
}

header .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: rgb(254, 196, 53);
}

.NotificationIcon {
  position: relative;
}

.NotificationIcon.dropdown-toggle::after {
  display: none;
}

.notification-panel-main {
  min-width: 350px;
  border: 0;
  background: transparent;
}

.notification-panel-main .notification-dropmenu-arrow {
  position: absolute;
  top: 0;
  right: 2%;
  margin-top: 22px;
}

@media screen and (max-width: 767px) {
  .notification-panel-main .notification-dropmenu-arrow {
    display: none;
  }
}

.notification-panel-main .notification-panel {
  background: #ffffff;
  margin: auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .notification-panel-main .notification-panel {
    margin: 30px 15px;
  }
}

.notification-panel-main .notification-panel .panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: solid 1px #e0e0e1;
  border-top: solid 6px rgb(255, 182, 54);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.notification-panel-main .notification-panel .panel-header h4 {
  margin: 0;
  font-size: 18px;
  font-family: var(--gilroySemiBold);
  color: #333333;
}

.notification-panel-main .notification-panel .panel-header .mark-read {
  background: none;
  border: none;
  color: rgb(255, 182, 54);
  font-size: 14px;
  font-family: var(--gilroySemiBold);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notification-panel-main .notification-panel .notification-list {
  list-style: none;
  margin: 0;
  max-height: 400px;
  overflow: auto;
}

.notification-panel-main .notification-panel .notification-list .notification-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  text-align: start;
}

.notification-panel-main .notification-panel .notification-list .notification-item .icon {
  width: 15%;
}

.notification-panel-main .notification-panel .notification-list .notification-item .icon img {
  width: 60px;
  height: 60px;
}

.notification-panel-main .notification-panel .notification-list .notification-item .content {
  width: 85%;
}

.notification-panel-main .notification-panel .notification-list .notification-item .content p {
  margin: 0;
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notification-panel-main .notification-panel .notification-list .notification-item .content .timestamp {
  font-size: 12px;
  font-family: var(--gilroySemiBold);
  color: #888888;
}

.notification-panel-main .notification-panel .view-all {
  text-align: center;
  padding: 15px 0;
}

.notification-panel-main .notification-panel .view-all a {
  text-decoration: none;
  color: rgb(255, 182, 54);
  font-size: 14px;
  font-family: var(--gilroySemiBold);
}

footer .container {
  background: rgb(98, 157, 95);
  padding: 12px;
  border-radius: 40px;
}

footer .footer-logo-main {
  background: rgb(254, 203, 60);
  padding: 13px 40px;
  border-radius: 40px;
  margin-bottom: 12px;
  text-align: center;
}

footer .footer-menu-main {
  background: rgb(255, 255, 255);
  padding: 40px;
  border-radius: 40px;
}

@media screen and (max-width: 992px) {
  footer .footer-menu-main {
    margin-bottom: 12px;
  }
}

footer .footer-menu-main .footer-menu {
  margin-bottom: 0;
  padding-left: 0;
}

footer .footer-menu-main .footer-menu li {
  list-style: none;
  padding-bottom: 3px;
}

footer .footer-menu-main .footer-menu li a {
  font-family: var(--gilroySemiBold);
  font-size: 15px;
  font-weight: 600;
  color: rgb(50, 40, 40);
  display: inline-block;
  position: relative;
}

footer .footer-menu-main .footer-menu li a::before {
  content: "";
  width: 0%;
  border-bottom: solid 1px #000;
  position: absolute;
  bottom: 0;
  transition: 0.3s all;
}

footer .footer-menu-main .footer-menu li a:hover::before {
  content: "";
  width: 100%;
}

footer .footer-menu-main .contact-text-social {
  max-width: 330px;
}

footer .footer-menu-main .contact-text-social h4 {
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-weight: 600;
  color: rgb(47, 48, 48);
  margin-bottom: 5px;
}

footer .footer-menu-main .contact-text-social p {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgba(50, 40, 40, 0.5);
  margin-bottom: 10px;
  text-transform: capitalize;
}

footer .footer-menu-main .contact-text-social .social-icon-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  footer .footer-menu-main .contact-text-social .social-icon-main {
    margin-bottom: 20px;
  }
}

footer .footer-menu-main .contact-text-social .social-icon-main a {
  background: rgb(246, 240, 229);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: solid 1px rgb(48, 48, 48);
  border-radius: 80px;
}

footer .watch-learn-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgb(255, 255, 255);
  padding: 28px;
  border-radius: 40px;
  text-align: center;
  height: 100%;
}

@media screen and (max-width: 992px) {
  footer .watch-learn-main {
    height: calc(100% - 12px);
    margin-bottom: 12px;
  }
}

footer .watch-learn-main h4 {
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-weight: 600;
  color: rgb(47, 48, 48);
  margin-bottom: 5px;
}

footer .watch-learn-main p {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgba(50, 40, 40, 0.5);
  margin-bottom: 10px;
  line-height: 1.1;
  margin-bottom: 20px;
}

footer .watch-learn-main .circle-triangle-main {
  position: relative;
  display: inline-block;
}

footer .watch-learn-main .circle-triangle-main .circle-triangle-img {
  max-width: 100%;
}

footer .watch-learn-main .circle-triangle-main .men-image-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer .watch-learn-main .circle-triangle-main .men-image-main .men-image {
  display: none;
  cursor: pointer;
}

footer .watch-learn-main .circle-triangle-main .men-image-main .men-image img {
  max-width: 210px;
}

@media screen and (max-width: 767px) {
  footer .watch-learn-main .circle-triangle-main .men-image-main .men-image img {
    max-width: 170px;
  }
}

footer .watch-learn-main .circle-triangle-main .men-image-main .men-image.active {
  display: block;
}

footer .copyright-text-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 20px;
  margin-top: 12px;
}

@media screen and (max-width: 992px) {
  footer .copyright-text-main {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  footer .copyright-text-main {
    justify-content: center;
  }
}

footer .copyright-text-main span {
  font-family: var(--gilroy);
  font-size: 14px;
  font-weight: 600;
  color: rgba(47, 48, 48, 0.7);
}

@media screen and (max-width: 767px) {
  footer .copyright-text-main span:first-child {
    margin-bottom: 15px;
  }
}

footer .copyright-text-main span a {
  color: rgb(47, 48, 48);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-lms .lms-section-main {
  border-top: solid 1px rgb(228, 228, 228);
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .footer-lms .lms-section-main {
    justify-content: center;
  }
}

.footer-lms .lms-section-main span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-lms .lms-section-main .lms-footer-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-lms .lms-section-main .lms-footer-menu a {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-lms .lms-section-main .lms-footer-menu a:hover {
  color: rgba(0, 0, 0, 0.5);
}

.home-banner-main {
  position: relative;
}

.home-banner-main .banner-slider-main .swiper-slide {
  position: relative;
  overflow: hidden;
  height: auto;
}

.home-banner-main .banner-slider-main .swiper-slide.swiper-slide-active .triangle-left-img {
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateX(0);
}

.home-banner-main .banner-slider-main .swiper-slide.swiper-slide-active .triangle-right-img {
  position: absolute;
  right: 0;
  bottom: 10%;
  transform: translateX(0);
}

.home-banner-main .banner-slider-main .swiper-slide.swiper-slide-active .smart-banner-main .banner-img-main {
  position: relative;
  height: 100%;
}

.home-banner-main .banner-slider-main .swiper-slide.swiper-slide-active .smart-banner-main .banner-img-main .top-img {
  position: absolute;
  top: 0;
  pointer-events: none;
  transform: translateY(0);
}

.home-banner-main .banner-slider-main .swiper-slide.swiper-slide-active .smart-banner-main .banner-img-main .cap-top-img {
  transform: translateY(0);
}

.home-banner-main .banner-slider-main .swiper-slide.swiper-slide-active .smart-banner-main .banner-img-main .bottom-img {
  transform: translateY(0);
}

.home-banner-main .banner-slider-main .swiper-slide .triangle-left-img,
.home-banner-main .banner-slider-main .swiper-slide .triangle-right-img,
.home-banner-main .banner-slider-main .swiper-slide .smart-banner-main .banner-img-main .top-img,
.home-banner-main .banner-slider-main .swiper-slide .smart-banner-main .banner-img-main .bottom-img,
.home-banner-main .banner-slider-main .swiper-slide .smart-banner-main .banner-img-main .cap-top-img {
  transition: all 1.5s ease;
}

.home-banner-main .banner-slider-main .swiper-slide:nth-child(1) .banner-img-main .bottom-img {
  /* padding-left: 60px; */
}

.home-banner-main .banner-slider-main .swiper-slide:nth-child(2) .banner-img-main .bottom-img {
  left: 19%;
}

.home-banner-main .banner-slider-main .swiper-slide .triangle-left-img {
  position: absolute;
  top: 10%;
  left: 0;
  transform: translateX(-200px);
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .swiper-slide .triangle-left-img {
    top: 70px !important;
    left: -19% !important;
  }

  .home-banner-main .banner-slider-main .swiper-slide .triangle-left-img img {
    max-width: 190px;
  }
}

.home-banner-main .banner-slider-main .swiper-slide .triangle-right-img {
  position: absolute;
  right: 0;
  bottom: 10%;
  transform: translateX(180px);
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .swiper-slide .triangle-right-img {
    right: -85px !important;
    top: 70px !important;
  }

  .home-banner-main .banner-slider-main .swiper-slide .triangle-right-img img {
    max-width: 190px;
    transform: rotate(28deg);
  }
}

.home-banner-main .banner-slider-main .smart-banner-main {
  position: relative;
  max-width: 1000px;
  margin: auto;
  height: 100%;
}

.home-banner-main .banner-slider-main .smart-banner-main .heading-main {
  padding: 50px 0 60px 0;
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .heading-main {
    text-align: center;
  }
}

.home-banner-main .banner-slider-main .smart-banner-main .heading-main h2 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.home-banner-main .banner-slider-main .smart-banner-main .heading-main p {
  font-weight: 700;
  margin-bottom: 20px;
}

.home-banner-main .banner-slider-main .smart-banner-main .heading-main a {
  background: rgb(255, 255, 255);
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  color: var(--secondary-color);
  border-radius: 25px;
  padding: 10px 20px;
  display: inline-block;
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main {
  position: relative;
  height: 100%;
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main.banner-cap-img .bottom-img {
  left: 38%;
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main.banner-cap-img .bottom-img {
    margin-top: -77px;
    padding-left: 8px;
  }
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main.banner-cap-img .cap-top-img {
  left: 23%;
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main.banner-cap-img .cap-top-img {
    margin-top: -54px;
  }
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main {
    overflow: hidden;
    border-bottom: solid 3px rgb(51, 149, 153);
    text-align: center;
    height: auto !important;
  }
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .top-img {
  position: absolute;
  top: 0;
  pointer-events: none;
  transform: translateY(-180px);
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .top-img {
    position: unset !important;
  }
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .cap-top-img {
  position: absolute;
  top: 12%;
  left: 13%;
  pointer-events: none;
  transform: translateY(-280px);
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .cap-top-img {
    position: unset !important;
  }
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .bottom-img {
  position: absolute;
  bottom: 0;
  left: 28%;
  pointer-events: none;
  transform: translateY(350px);
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .bottom-img {
    position: unset !important;
  }

  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .bottom-img .stairs {
    width: 127px;
    height: 298px;
  }
}

.home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .bottom-img img {
  max-width: 320px;
}

@media screen and (max-width: 992px) {
  .home-banner-main .banner-slider-main .smart-banner-main .banner-img-main .bottom-img img {
    width: auto;
    /* width: 350px; */
    /* height: 350px; */
  }
}

.home-banner-main .banner-slider-main .swiper-pagination {
  margin: 20px 0;
}

.home-banner-main .banner-slider-main .swiper-pagination .swiper-pagination-bullet {
  background: rgb(255, 255, 255);
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 33px;
  transition: 0.6s all;
}

.home-banner-main .banner-slider-main .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  width: 20px;
}

.learn-anywhere {
  border-bottom: 10px solid rgb(246, 209, 99);
  overflow: hidden;
  margin: 70px 0;
}

@media screen and (max-width: 768px) {
  .learn-anywhere {
    margin: 40px 0;
  }
}

.learn-anywhere .primary-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 25px;
}

@media screen and (max-width: 768px) {
  .learn-anywhere .primary-title {
    column-gap: 10px;
  }
}

.learn-anywhere .primary-title div {
  display: flex;
  align-items: baseline;
}

@media screen and (max-width: 768px) {
  .learn-anywhere .primary-title div img {
    width: 25px;
  }
}

.learn-anywhere .desc {
  font-weight: 600;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .learn-anywhere .desc {
    margin-top: 20px;
  }
}

.learn-anywhere .learn-anywhere__btn .primary-btn {
  margin: 0 auto;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .learn-anywhere .learn-anywhere__btn .primary-btn {
    margin-top: 20px;
  }
}

.learn-anywhere .learn-anywhere__img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 90px;
}

.learn-anywhere .learn-anywhere__img.active img {
  transform: translateY(5px);
  visibility: visible;
  opacity: 1;
  transition: all 1s ease;
}

@media screen and (max-width: 768px) {
  .learn-anywhere .learn-anywhere__img {
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.learn-anywhere .learn-anywhere__img img {
  transform: translateY(300px);
  visibility: hidden;
  opacity: 0;
}

@media screen and (max-width: 460px) {
  .learn-anywhere .learn-anywhere__img img {
    width: 50px;
  }
}

@media screen and (min-width: 460px) and (max-width: 992px) {
  .learn-anywhere .learn-anywhere__img img {
    width: 80px;
    height: 80px;
  }
}

.learn-anywhere .learn-anywhere__img.active img {
  top: 0;
}

.learn-anywhere .learn-anywhere__img.active .learn-anywhere-01 {
  transition: all 1.2s ease;
}

.learn-anywhere .learn-anywhere__img.active .learn-anywhere-02 {
  transition: all 1.5s ease;
}

.learn-anywhere .learn-anywhere__img.active .learn-anywhere-03 {
  transition: all 1s ease;
}

.learn-anywhere .learn-anywhere__img.active .learn-anywhere-04 {
  transition: all 1.8s ease;
}

.learn-anywhere .learn-anywhere__img.active .learn-anywhere-05 {
  transition: all 1.8s ease;
}

.what-we-offer {
  position: relative;
  padding-bottom: 130px;
}

@media screen and (max-width: 768px) {
  .what-we-offer {
    padding-bottom: 50px;
  }
}

.what-we-offer .leftOffer {
  position: absolute;
  left: 0;
  top: 30%;
  pointer-events: none;
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .what-we-offer .leftOffer {
    width: 100px;
  }
}

.what-we-offer .rightOffer {
  position: absolute;
  right: 0;
  top: 30%;
  pointer-events: none;
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  .what-we-offer .rightOffer {
    width: 100px;
  }
}

.what-we-offer .secondary-title {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .what-we-offer .secondary-title {
    gap: 10px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 600px) {
  .what-we-offer .secondary-title img {
    width: 30px;
  }
}

.what-we-offer .what-we-tab-img-main {
  position: relative;
}

.what-we-offer .what-we-tab-img-main .what-we-tab-left {
  position: absolute;
  top: -80px;
  left: -80px;
  z-index: 99;
}

.what-we-offer .what-we-tab-img-main .what-we-tab-right {
  position: absolute;
  bottom: -80px;
  right: -80px;
  z-index: 99;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main {
  position: relative;
  background-image: url("../../images/tab-bg-img.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  border: solid 30px rgb(0, 0, 0);
  border-radius: 50px;
  padding: 10px 10px 50px 10px;
}

@media screen and (max-width: 767px) {
  .what-we-offer .what-we-tab-img-main .what-we-box-main {
    border: solid 15px rgb(0, 0, 0);
    border-radius: 30px;
    padding: 10px 10px 30px 10px;
  }
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div {
  width: 33.33%;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div:nth-child(1) {
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 992px) {
  .what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div:nth-child(1) {
    text-align: left;
  }
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div:nth-child(2) {
  text-align: center;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div:nth-child(3) {
  text-align: right;
  margin-top: 10px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div span {
  font-family: var(--gilroy);
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: 700;
  position: relative;
  margin-top: 10px;
  display: block;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .wifi-bettery-img>div span::before {
  content: "";
  position: absolute;
  background: #000;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  top: -15px;
  left: 48.5%;
  transform: translateX(-49%);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .we-tutor-logo {
  margin-bottom: 60px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent {
  height: auto;
  cursor: pointer;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(1) .tab-box {
  background: rgb(245, 226, 158);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(1) .tab-box::after {
  background-color: #CEB457;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(2) .tab-box {
  background: rgb(173, 224, 241);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(2) .tab-box::after {
  background-color: #7CB0C1;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(3) .tab-box {
  background: rgb(180, 235, 212);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(3) .tab-box::after {
  background-color: #71D1A9;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(4) .tab-box {
  background: rgb(201, 236, 240);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(4) .tab-box::after {
  background-color: #84C9D1;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(5) .tab-box {
  background: rgb(193, 244, 237);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(5) .tab-box::after {
  background-color: #62BFB2;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(6) .tab-box {
  background: rgb(245, 226, 158);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(6) .tab-box::after {
  background-color: #CEB457;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(7) .tab-box {
  background: rgb(173, 224, 241);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(7) .tab-box::after {
  background-color: #7CB0C1;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(8) .tab-box {
  background: rgb(180, 235, 212);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent:nth-child(8) .tab-box::after {
  background-color: #71D1A9;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box {
  position: relative;
  padding: 12px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box::after {
  content: "";
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  border-radius: 16px;
  pointer-events: none;
  width: 267px;
  height: 267px;
  border-radius: 267px;
  transition: 0.5s;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box:hover::after {
  top: -30px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box:hover .tab-box-img {
  filter: brightness(0) invert(1);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box:hover .tab-text span {
  color: #fff;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box .tab-box-img {
  position: relative;
  margin-bottom: 10px;
  transition: filter 0.3s;
  z-index: 1;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box .tab-text {
  position: relative;
  z-index: 1;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-we-tutor-main .tab-box-parent .tab-box .tab-text span {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 500;
  color: rgb(50, 40, 40);
  text-align: center;
  line-height: 1.4;
  display: block;
  transition: color 0.2s;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main {
  max-width: 600px;
  margin: auto;
  display: none;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .return-text-main {
  cursor: pointer;
  margin-bottom: 10px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .return-text-main span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(50, 40, 40);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box {
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  text-align: left;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(2) {
  background: rgb(245, 226, 158);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(3) {
  background: rgb(173, 224, 241);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(4) {
  background: rgb(180, 235, 212);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(5) {
  background: rgb(201, 236, 240);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(6) {
  background: rgb(193, 244, 237);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(7) {
  background: rgb(245, 226, 158);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(8) {
  background: rgb(173, 224, 241);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box:nth-child(9) {
  background: rgb(180, 235, 212);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box .tab-box-img {
  margin-bottom: 10px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box .tab-text span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(50, 40, 40);
  display: block;
  margin-bottom: 5px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .tab-return-main .tab-return-box .tab-text p {
  font-family: var(--gilroy);
  font-size: 14px;
  font-weight: 400;
  color: rgba(50, 40, 40, 0.7);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  cursor: pointer;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span.active {
  outline: solid 1px rgb(50, 40, 40);
  outline-offset: 2px;
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(1) {
  background: rgb(245, 226, 158);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(2) {
  background: rgb(173, 224, 241);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(3) {
  background: rgb(180, 235, 212);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(4) {
  background: rgb(201, 236, 240);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(5) {
  background: rgb(193, 244, 237);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(6) {
  background: rgb(245, 226, 158);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(7) {
  background: rgb(173, 224, 241);
}

.what-we-offer .what-we-tab-img-main .what-we-box-main .circle-main span:nth-child(8) {
  background: rgb(180, 235, 212);
}

.bugs-leads-kids {
  margin-bottom: 70px;
}

@media screen and (max-width: 768px) {
  .bugs-leads-kids {
    margin-bottom: 40px;
  }
}

.bugs-leads-kids .primary-title img {
  margin-right: 10px;
  width: 60px;
  height: 60px;
}

.bugs-leads-kids .desc {
  font-weight: 600;
  max-width: 650px;
}

.bugs-leads-kids .video-main {
  position: relative;
}

.bugs-leads-kids .video-main video {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 300px;
}

.bugs-leads-kids .video-main .muted-phone-icon {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.bugs-leads-kids .video-main .video-batch-main {
  position: absolute;
  top: 25px;
  right: 16px;
}

.bugs-leads-kids .video-main .video-batch-main span {
  background: rgb(254, 196, 53);
  padding: 10px 20px;
  border-radius: 30px;
  border: solid 1px var(--primary-color);
  font-family: var(--gilroySemiBold);
  font-weight: 700;
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main {
  height: auto;
}

.bugs-leads-kids .kids-box-main:nth-child(1) .kids-learning-box:hover {
  background: var(--primary-color);
}

.bugs-leads-kids .kids-box-main:nth-child(1) .kids-learning-box:hover h3 {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(1) .kids-learning-box:hover .kids-heading-main span {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(1) .kids-learning-box:hover .kids-heading-main p {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(1) .kids-learning-box:hover .kids-learning-img {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.bugs-leads-kids .kids-box-main:nth-child(1) .kids-learning-box h3 {
  color: var(--primary-color);
}

.bugs-leads-kids .kids-box-main:nth-child(2) .kids-learning-box:hover {
  background: rgb(228, 80, 18);
}

.bugs-leads-kids .kids-box-main:nth-child(2) .kids-learning-box:hover h3 {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(2) .kids-learning-box:hover .kids-heading-main span {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(2) .kids-learning-box:hover .kids-heading-main p {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(2) .kids-learning-box:hover .kids-learning-img {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.bugs-leads-kids .kids-box-main:nth-child(2) .kids-learning-box h3 {
  color: rgb(228, 80, 18);
}

.bugs-leads-kids .kids-box-main:nth-child(3) .kids-learning-box:hover {
  background: rgb(98, 157, 95);
}

.bugs-leads-kids .kids-box-main:nth-child(3) .kids-learning-box:hover h3 {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(3) .kids-learning-box:hover .kids-heading-main span {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(3) .kids-learning-box:hover .kids-heading-main p {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(3) .kids-learning-box:hover .kids-learning-img {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.bugs-leads-kids .kids-box-main:nth-child(3) .kids-learning-box h3 {
  color: rgb(98, 157, 95);
}

.bugs-leads-kids .kids-box-main:nth-child(4) .kids-learning-box:hover {
  background: rgb(124, 176, 193);
}

.bugs-leads-kids .kids-box-main:nth-child(4) .kids-learning-box:hover h3 {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(4) .kids-learning-box:hover .kids-heading-main span {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(4) .kids-learning-box:hover .kids-heading-main p {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(4) .kids-learning-box:hover .kids-learning-img {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.bugs-leads-kids .kids-box-main:nth-child(4) .kids-learning-box h3 {
  color: rgb(124, 176, 193);
}

.bugs-leads-kids .kids-box-main:nth-child(5) .kids-learning-box:hover {
  background: rgb(206, 180, 87);
}

.bugs-leads-kids .kids-box-main:nth-child(5) .kids-learning-box:hover h3 {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(5) .kids-learning-box:hover .kids-heading-main span {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(5) .kids-learning-box:hover .kids-heading-main p {
  color: rgb(255, 255, 255);
}

.bugs-leads-kids .kids-box-main:nth-child(5) .kids-learning-box:hover .kids-learning-img {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.bugs-leads-kids .kids-box-main:nth-child(5) .kids-learning-box h3 {
  color: rgb(206, 180, 87);
}

.bugs-leads-kids .kids-box-main .kids-learning-box {
  border: solid 1px rgba(47, 48, 48, 0.2);
  padding: 27px 35px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 20px);
  transition: 0.6s all;
  margin-bottom: 20px;
  background: #fff;
}

.bugs-leads-kids .kids-box-main .kids-learning-box .kids-learning-img {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(60px);
  transition: 0.6s all;
  opacity: 0;
  visibility: hidden;
}

.bugs-leads-kids .kids-box-main .kids-learning-box h3 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 600;
  transition: 0.6s all;
}

@media screen and (max-width: 400px) {
  .bugs-leads-kids .kids-box-main .kids-learning-box .kids-heading-main {
    padding-inline-end: 25px;
  }
}

.bugs-leads-kids .kids-box-main .kids-learning-box .kids-heading-main span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(22, 68, 91);
  display: block;
  margin-bottom: 10px;
  /* display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  text-overflow: ellipsis;*/
  text-align: left;
  transition: 0.6s all;
}

.bugs-leads-kids .kids-box-main .kids-learning-box .kids-heading-main p {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  /* display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; */
  text-align: left;
  transition: 0.6s all;
}

.faq-main {
  padding: 0 0 70px 0;
}

@media screen and (max-width: 767px) {
  .faq-main {
    padding: 0 0 40px;
  }
}

.faq-main .heading-main {
  margin-bottom: 20px;
}

.faq-main .heading-main p {
  font-family: var(--gilroy);
  font-size: 15px;
  font-weight: 700;
  color: rgb(22, 68, 91);
  position: relative;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.faq-main .collapse-main {
  margin-bottom: 12px;
  position: relative;
  transition: all 0.6s;
}

.faq-main .collapse-main:not(.active)::before {
  content: "";
  transition: top 1s;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  background: rgb(255, 255, 255);
  border: solid 1px rgb(47, 48, 48);
  border-bottom: none;
  padding: 5px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  position: absolute;
  top: 0;
  left: 50%;
}

.faq-main .collapse-main:last-child {
  margin-bottom: 30px;
}

.faq-main .collapse-main:hover:not(.active) {
  margin-top: 20px;
}

.faq-main .collapse-main:hover:not(.active)::before {
  top: -10px;
}

.faq-main .collapse-main.active .collapse-head span {
  background: rgb(255, 255, 255);
}

.faq-main .collapse-main.active .collapse-head span::before {
  border: solid 1px rgb(47, 48, 48);
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-main .collapse-main.active .collapse-head span::after {
  border: solid 1px rgb(47, 48, 48);
}

.faq-main .collapse-main .collapse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgb(246, 240, 229);
  border: solid 1px rgb(47, 48, 48);
  padding: 20px 40px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 992px) {
  .faq-main .collapse-main .collapse-head {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 400px) {
  .faq-main .collapse-main .collapse-head {
    padding: 20px;
  }
}

.faq-main .collapse-main .collapse-head h3 {
  font-family: var(--gilroy);
  font-size: 20px;
  font-weight: 600;
  color: rgb(47, 48, 48);
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .faq-main .collapse-main .collapse-head h3 {
    font-size: 18px;
  }
}

.faq-main .collapse-main .collapse-head span {
  position: relative;
  min-width: 36px;
  min-height: 36px;
  background: rgb(47, 48, 48);
  border-radius: 80px;
  transition: 0.3s all;
}

.faq-main .collapse-main .collapse-head span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 12px;
  border: solid 1px rgb(255, 255, 255);
  transition: 0.3s all;
}

.faq-main .collapse-main .collapse-head span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  height: 12px;
  border: solid 1px rgb(255, 255, 255);
  transition: 0.3s all;
}

.faq-main .collapse-main .collapse-body {
  background: rgb(255, 255, 255);
  border: solid 1px rgb(47, 48, 48);
  border-bottom: none;
  padding: 24px 40px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  margin: 0 12px;
  display: none;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 992px) {
  .faq-main .collapse-main .collapse-body {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 400px) {
  .faq-main .collapse-main .collapse-body {
    padding: 20px;
  }
}

.faq-main .collapse-main .collapse-body p {
  font-family: var(--gilroy);
  font-size: 15px;
  font-weight: 600;
  color: rgb(47, 48, 48);
}

@media screen and (max-width: 992px) {
  .faq-main .collapse-main .collapse-body p {
    font-size: 14px;
  }
}

.faq-main .horizontal-marque {
  padding: 6px 0;
  font-size: 12px;
  z-index: 100;
  overflow: hidden;
  height: 100%;
  max-height: 500px;
}

.faq-main .horizontal-marque .bottom-marque {
  will-change: transform;
  transform: translateY(-100%);
  animation: marquee 40s linear infinite;
}

.faq-main .horizontal-marque .bottom-marque .review-box-main {
  padding: 12px;
  border-radius: 24px;
  margin-bottom: 12px;
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(1) {
  background: var(--primary-color);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(1) .review-profile .review-profile-text p {
  color: rgba(50, 40, 40, 0.7);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(2) {
  background: rgb(180, 235, 212);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(2) .review-profile .review-profile-text p {
  color: rgba(255, 255, 255, 0.7);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(3) {
  background: rgb(173, 224, 241);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(3) .review-profile .review-profile-text p {
  color: rgba(255, 255, 255, 0.7);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(4) {
  background: rgb(245, 226, 158);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main:nth-child(4) .review-profile .review-profile-text p {
  color: rgba(50, 40, 40, 0.7);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main .review-desc {
  background: rgb(255, 255, 255);
  padding: 28px;
  border-radius: 24px;
}

@media screen and (max-width: 767px) {
  .faq-main .horizontal-marque .bottom-marque .review-box-main .review-desc {
    padding: 20px;
  }
}

.faq-main .horizontal-marque .bottom-marque .review-box-main .review-desc p {
  font-family: var(--gilroy);
  font-size: 15px;
  font-weight: 700;
  color: rgba(50, 40, 40, 0.7);
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .faq-main .horizontal-marque .bottom-marque .review-box-main .review-desc p {
    font-size: 14px;
  }
}

.faq-main .horizontal-marque .bottom-marque .review-box-main .review-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.faq-main .horizontal-marque .bottom-marque .review-box-main .review-profile .review-profile-text span {
  font-family: var(--gilroy);
  font-size: 17px;
  font-weight: 600;
  color: rgb(47, 48, 48);
}

.faq-main .horizontal-marque .bottom-marque .review-box-main .review-profile .review-profile-text p {
  font-family: var(--gilroy);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
}

@keyframes marquee {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.subject-listing-banner {
  overflow: hidden;
}

.subject-listing-banner.banner-space-bottom {
  margin-bottom: 70px;
}

@media screen and (max-width: 767px) {
  .subject-listing-banner.banner-space-bottom {
    margin-bottom: 35px;
  }
}

.subject-wrapper {
  /* background-image: url("../../images/subject-listing-banner.png"); */
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 7%;
  min-height: 285px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .subject-wrapper {
    background-image: url("../../images/mobile-banner.png");
  }
}

.subject-listing-image img {
  position: absolute;
  bottom: 0;
  transform: translateY(300px);
  opacity: 0;
  visibility: hidden;
}

.subject-banner-image-left {
  left: 0;
  max-width: 180px;
}

.subject-banner-image-right {
  right: 0;
  max-width: 180px;
}

.subject-listing-image.active img {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 1s ease;
}

.subject-listing-image.active .subject-banner-image-left {
  transition-delay: 0.2s;
}

.subject-listing-image.active .subject-banner-image-right {
  transition-delay: 0.4s;
}

@media screen and (max-width: 768px) {
  .subject-banner-image-right {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .subject-banner-image-left {
    display: none;
  }
}

.banner-heading {
  text-align: center;
}

.banner-title h1 {
  font-weight: 600;
  font-size: clamp(26px, 5vw, 52px);
  color: rgb(22, 68, 91);
}

.banner-tag {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid black;
  border-radius: 30px;
  padding: 10px 20px;
  background-color: rgb(255, 255, 255);
}

.banner-tag .tag-one a {
  font-family: var(--gilroy);
  font-size: clamp(12px, 2vw, 15px);
  color: rgb(22, 68, 91);
  font-weight: 700;
}

.banner-tag .tag-two span {
  font-family: var(--gilroy);
  color: rgb(228, 80, 18);
  font-weight: 700;
  font-size: clamp(12px, 2vw, 15px);
}

@media screen and (max-width: 768px) {
  .banner-tag {
    padding: 5px 10px;
  }
}

.banner-subscription {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  text-decoration: underline;
  font-weight: 600;
  font-size: clamp(12px, 4vw, 24px);
}

.banner-subscription span {
  text-decoration: underline;
  font-weight: 600;
  font-size: clamp(12px, 4vw, 24px);
}

.our-courses {
  position: relative;
  padding: 70px 0;
}

@media screen and (max-width: 768px) {
  .our-courses {
    padding: 35px 0;
  }
}

.our-courses .subject-pagination-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.our-courses .subject-pagination-main a.active span {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
}

.our-courses .subject-pagination-main a span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(35, 35, 35);
  border: solid 1px rgb(35, 35, 35);
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-courses .course-card-wrapper {
  border: 1px solid black;
  border-radius: 30px;
  padding: 18px 19px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.our-courses .course-card-wrapper .card-img img {
  width: 100%;
  aspect-ratio: 266/156;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

.our-courses .course-card-wrapper .card-img .course-teacher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.our-courses .course-card-wrapper .card-img .course-teacher .subject {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(49, 62, 59);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-courses .course-card-wrapper .card-img .course-teacher .teacher {
  font-family: var(--gilroy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(130, 140, 138);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-courses .course-card-wrapper .card-img .course-teacher .dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 15px;
  background-color: rgb(130, 140, 138);
}

.our-courses .course-card-wrapper .card-img .course-title {
  font-family: var(--gilroyMedium);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-courses .course-card-wrapper .price-enroll .course-price {
  font-family: var(--gilroySemiBold);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(228, 80, 18);
  margin-bottom: 5px;
}

.our-courses .course-card-wrapper .price-enroll .enroll-now {
  font-family: var(--gilroySemiBold);
  border-radius: 10px;
  background-color: rgb(173, 224, 241);
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  display: block;
  color: rgb(255, 255, 255);
}

.our-courses .filter-bottom {
  /* position: absolute;
  bottom: 9%;
  left: 0; */
  pointer-events: none;
}

.our-courses .course-heading h2 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(26px, 4vw, 72px);
  font-weight: 600;
  color: rgb(22, 68, 91);
  line-height: 1.1;
}

.our-courses .course-desc p {
  font-family: var(--gilroy);
  font-size: 15px;
  font-weight: 700;
  color: rgb(22, 68, 91);
  margin-bottom: 0;
}

.our-courses .course-tag {
  border-radius: 10px;
  background-color: rgb(254, 203, 60);
  padding: 5px 20px;
  display: inline-flex;
  margin-bottom: 10px;
}

.our-courses .course-tag span {
  color: rgb(22, 68, 91);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
}

.our-courses .fliter-header {
  gap: 23px;
  text-align: center;
  justify-content: space-between;
  margin-bottom: 10px;
  line-height: 1;
}

.our-courses .fliter-header .ResetFilter {
  cursor: pointer;
}

.our-courses .filter-wrapper {
  border: 1px solid black;
  border-radius: 20px;
  padding: 25px 20px;
  max-width: 250px;
  background: rgb(255, 255, 255);
  margin-bottom: 50px;
}

@media screen and (max-width: 992px) {
  .our-courses .filter-wrapper {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }
}

.our-courses .filter-wrapper .checkbox {
  margin-bottom: 20px;
}

.our-courses .filter-wrapper .checkbox:last-child {
  margin-bottom: 0;
}

.our-courses .age {
  margin-bottom: 10px;
}

.our-courses .filter-heading h5 {
  font-family: var(--gilroySemiBold);
  font-size: 18px;
  font-weight: 600;
  color: rgb(49, 62, 59);
  margin: 0;
}

.our-courses .category-option-body label:last-child {
  margin-bottom: 0;
}

.our-courses .checkbox label {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(89, 90, 92);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  cursor: pointer;
}

.our-courses .checkbox label .checkbox-input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: rgb(245, 226, 158);
  width: 1.15em;
  height: 1.15em;
  border: 1px solid rgb(245, 226, 158);
  border-radius: 0.15em;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.our-courses .checkbox label .checkbox-input[type=checkbox].partial-selected:checked::after {
  content: "";
  background: white;
  width: 10px;
  border-top: 3px solid #fff;
}

.our-courses .checkbox label .checkbox-input[type=checkbox].partial-selected::before {
  display: none;
}

.our-courses .checkbox label .checkbox-input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  background: white;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.our-courses .checkbox label .checkbox-input[type=checkbox]:checked {
  background-color: rgb(245, 226, 158);
}

.our-courses .checkbox label .checkbox-input[type=checkbox]:checked::before {
  transform: scale(1);
}

@media screen and (max-width: 992px) {
  .our-courses .filter-bottom {
    display: none;
  }
}

.contact-main {
  padding: 70px 0;
}

.contact-main .contact-box-parent {
  height: auto;
}

.contact-main .contact-box-parent:nth-child(1) .contact-box {
  background: rgb(173, 224, 241);
}

.contact-main .contact-box-parent:nth-child(2) .contact-box {
  background: rgba(254, 203, 60, 0.3);
}

.contact-main .contact-box-parent:nth-child(3) .contact-box {
  background: rgba(253, 126, 64, 0.3);
}

.contact-main .contact-box-parent .contact-box {
  border: solid 1px rgb(0, 0, 0);
  padding: 24px 37px;
  border-radius: 30px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-main .contact-box-parent .contact-box .contact-img {
  margin-bottom: 48px;
}

.contact-main .contact-box-parent .contact-box .contact-text span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(35, 35, 35);
  margin-bottom: 12px;
  display: block;
}

.contact-main .contact-box-parent .contact-box .contact-text p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6);
  margin-bottom: 12px;
}

.contact-main .contact-box-parent .contact-box .contact-text a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  text-decoration: underline;
}

.contact-main .learn-more-main img {
  width: 100%;
  margin-bottom: 20px;
}

.contact-main .learn-more-main .learn-more {
  background: rgb(255, 255, 255);
  border: solid 1px rgba(21, 87, 139, 0.2);
  border-radius: 20px;
  padding: 20px 60px;
}

@media screen and (max-width: 767px) {
  .contact-main .learn-more-main .learn-more {
    padding: 20px;
  }
}

.contact-main .learn-more-main .learn-more span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(35, 35, 35);
}

.contact-main .learn-more-main .learn-more span img {
  width: auto;
  margin-bottom: 0;
}

.contact-main .contact-form-main .input {
  position: relative;
  margin-bottom: 20px;
}

.contact-main .contact-form-main .input label {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(18, 17, 19);
  margin-bottom: 10px;
}

.contact-main .contact-form-main .input.error input,
.contact-main .contact-form-main .input.error textarea {
  border: 1px solid #EA0F1F !important;
}

.contact-main .contact-form-main .input textarea,
.contact-main .contact-form-main .input input {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--gilroy);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
}

.contact-main .contact-form-main .input textarea::placeholder,
.contact-main .contact-form-main .input input::placeholder {
  color: rgb(91, 91, 91);
}

.contact-main .contact-form-main .input .error-txt {
  font-family: var(--gilroySemiBold);
  font-size: 12px;
  font-weight: 600;
  color: #EA0F1F;
  display: block;
  width: 100%;
}

.contact-main .contact-form-main .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.contact-main .contact-form-main button {
  padding: 9px 40px;
}

.privacy-policy-main {
  padding: 70px 0 100px 0;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main {
    padding: 40px 0;
  }
}

.privacy-policy-main .privacy-border-main {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.privacy-policy-main .privacy-border-main .button-main {
  width: 25%;
  border-inline-end: solid 1px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
  .privacy-policy-main .privacy-border-main .button-main {
    width: 100%;
    border-inline-end: 0;
    margin-bottom: 30px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main {
  width: 75%;
}

@media screen and (max-width: 992px) {
  .privacy-policy-main .privacy-border-main .policy-content-main {
    width: 100%;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content {
  padding: 40px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  border-right: solid 1px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 992px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content {
    border: solid 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    padding: 20px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content span {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  color: rgb(49, 62, 59);
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content span {
    font-size: 18px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content span::before {
  content: "";
  display: inline-block;
  background: rgb(205, 32, 39);
  min-width: 10px;
  min-height: 10px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  box-shadow: 0 0 0 3px rgba(205, 32, 39, 0.05);
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content span::before {
    min-width: 8px;
    min-height: 8px;
    width: 8px;
    height: 8px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content h3 {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(35, 35, 35);
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content h3 {
    font-size: 18px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6);
  line-height: 1.4;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-card-content p {
    font-size: 14px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before {
  height: auto;
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before:nth-child(1) .policy-card span::before {
  background: rgba(65, 219, 135, 0.3);
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before:nth-child(2) .policy-card span::before {
  background: rgba(57, 120, 239, 0.3);
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before:nth-child(3) .policy-card span::before {
  background: rgb(173, 224, 241);
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before:nth-child(4) .policy-card span::before {
  background: rgba(253, 126, 64, 0.3);
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card {
  padding: 40px;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  border-right: solid 1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

@media screen and (max-width: 992px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card {
    border: solid 1px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    height: calc(100% - 25px);
    padding: 20px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card span {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  color: rgb(49, 62, 59);
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card span {
    font-size: 18px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card span::before {
  content: "";
  display: inline-block;
  min-width: 15px;
  min-height: 15px;
  width: 15px;
  height: 15px;
  border: solid 1px rgb(0, 0, 0);
  border-radius: 10px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card span::before {
    min-width: 13px;
    min-height: 13px;
    width: 13px;
    height: 13px;
    margin-top: 5px;
  }
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 35, 35);
  margin-bottom: 15px;
}

.privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6);
  line-height: 1.4;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .policy-content-main .policy-before .policy-card p {
    font-size: 14px;
  }
}

.privacy-policy-main .privacy-border-main .protect-privacy-main {
  margin-top: 80px;
}

@media screen and (max-width: 992px) {
  .privacy-policy-main .privacy-border-main .protect-privacy-main {
    margin-top: 20px;
  }
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy {
  margin-bottom: 25px;
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy:last-child {
  margin-bottom: 0;
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy:nth-child(1) span::before {
  background: rgb(173, 224, 241);
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy:nth-child(2) span::before {
  background: rgba(254, 203, 60, 0.3);
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy:nth-child(3) span::before {
  background: rgba(65, 219, 135, 0.3);
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy:nth-child(4) span::before {
  background: rgba(57, 120, 239, 0.3);
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy:nth-child(5) span::before {
  background: rgba(253, 126, 64, 0.3);
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy span {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  color: rgb(49, 62, 59);
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy span {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy span::before {
  content: "";
  display: inline-block;
  min-width: 15px;
  min-height: 15px;
  width: 15px;
  height: 15px;
  border: solid 1px rgb(0, 0, 0);
  border-radius: 10px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy span::before {
    min-width: 13px;
    min-height: 13px;
    width: 13px;
    height: 13px;
    margin-top: 5px;
  }
}

.privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6);
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .privacy-policy-main .privacy-border-main .protect-privacy-main .protect-privacy p {
    font-size: 14px;
  }
}

.terms-condition-main {
  padding: 70px 0;
}

@media screen and (max-width: 992px) {
  .terms-condition-main {
    padding: 40px 0;
  }
}

.terms-condition-main .terms-condition-text {
  margin-bottom: 25px;
}

.terms-condition-main .terms-condition-text:last-child {
  margin-bottom: 0;
}

.terms-condition-main .terms-condition-text:nth-child(8n+2) span::before {
  background: rgba(57, 120, 239, 0.3);
}

.terms-condition-main .terms-condition-text:nth-child(8n+3) span::before {
  background: rgba(253, 126, 64, 0.3);
}

.terms-condition-main .terms-condition-text:nth-child(8n+4) span::before {
  background: rgb(173, 224, 241);
}

.terms-condition-main .terms-condition-text:nth-child(8n+5) span::before {
  background: rgba(254, 203, 60, 0.3);
}

.terms-condition-main .terms-condition-text:nth-child(8n+6) span::before {
  background: rgba(57, 120, 239, 0.3);
}

.terms-condition-main .terms-condition-text:nth-child(8n+7) span::before {
  background: rgba(65, 219, 135, 0.3);
}

.terms-condition-main .terms-condition-text:nth-child(8n+8) span::before {
  background: rgba(254, 203, 60, 0.3);
}

.terms-condition-main .terms-condition-text:nth-child(8n+9) span::before {
  background: rgba(57, 120, 239, 0.3);
}

/* .terms-condition-main .terms-condition-text:nth-child(2) span::before {
  background: rgba(57, 120, 239, 0.3);
}
.terms-condition-main .terms-condition-text:nth-child(3) span::before {
  background: rgba(253, 126, 64, 0.3);
}
.terms-condition-main .terms-condition-text:nth-child(4) span::before {
  background: rgb(173, 224, 241);
}
.terms-condition-main .terms-condition-text:nth-child(5) span::before {
  background: rgba(65, 219, 135, 0.3);
}
.terms-condition-main .terms-condition-text:nth-child(6) span::before {
  background: rgba(254, 203, 60, 0.3);
}
.terms-condition-main .terms-condition-text:nth-child(7) span::before {
  background: rgba(57, 120, 239, 0.3);
}
.terms-condition-main .terms-condition-text:nth-child(8) span::before {
  background: rgba(65, 219, 135, 0.3);
}
.terms-condition-main .terms-condition-text:nth-child(9) span::before {
  background: rgba(254, 203, 60, 0.3);
} */
.terms-condition-main .terms-condition-text span {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  color: rgb(49, 62, 59);
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .terms-condition-main .terms-condition-text span {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.terms-condition-main .terms-condition-text span::before {
  content: "";
  display: inline-block;
  min-width: 15px;
  min-height: 15px;
  width: 15px;
  height: 15px;
  border: solid 1px rgb(0, 0, 0);
  border-radius: 10px;
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .terms-condition-main .terms-condition-text span::before {
    min-width: 13px;
    min-height: 13px;
    width: 13px;
    height: 13px;
    margin-top: 5px;
  }
}

.terms-condition-main .terms-condition-text h3 {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  color: rgb(49, 62, 59);
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .terms-condition-main .terms-condition-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
}

.terms-condition-main .terms-condition-text h3.orange {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: rgb(228, 80, 18);
}

.terms-condition-main .terms-condition-text p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6);
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .terms-condition-main .terms-condition-text p {
    font-size: 14px;
  }
}

.time-table-main {
  padding: 70px 0;
}

@media screen and (max-width: 767px) {
  .time-table-main {
    padding: 40px 0;
  }
}

.time-table-main .time-table-card:nth-child(3n+1) .time-heading {
  background: rgb(173, 224, 241);
}

.time-table-main .time-table-card:nth-child(3n+1) .time-heading h2 {
  color: rgb(55, 140, 182);
}

.time-table-main .time-table-card:nth-child(3n+1) .time-subject-main .time-subject-card span:first-child {
  background: rgb(173, 224, 241);
}

.time-table-main .time-table-card:nth-child(3n+2) .time-heading {
  background: rgba(254, 203, 60, 0.3);
}

.time-table-main .time-table-card:nth-child(3n+2) .time-heading h2 {
  color: rgb(254, 196, 53);
}

.time-table-main .time-table-card:nth-child(3n+2) .time-subject-main .time-subject-card span:first-child {
  background: rgb(245, 226, 158);
}

.time-table-main .time-table-card:nth-child(3n+3) .time-heading {
  background: rgba(98, 157, 95, 0.3);
}

.time-table-main .time-table-card:nth-child(3n+3) .time-heading h2 {
  color: rgb(98, 157, 95);
}

.time-table-main .time-table-card:nth-child(3n+3) .time-subject-main .time-subject-card span:first-child {
  background: rgb(180, 235, 212);
}

.time-table-main .time-table-card .time-heading {
  padding: 24px 37px;
  border-radius: 20px;
  border: solid 1px rgb(0, 0, 0);
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .time-table-main .time-table-card .time-heading {
    padding: 24px;
  }
}

.time-table-main .time-table-card .time-heading h2 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 600;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.time-table-main .time-table-card .time-heading h2 span {
  font-family: var(--gilroySemiBold);
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 600;
  color: rgb(22, 68, 91);
}

.time-table-main .time-table-card .time-subject-table {
  margin-bottom: 60px;
  overflow-x: auto;
}

.time-table-main .time-table-card .time-subject-table::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.time-table-main .time-table-card .time-subject-table::-webkit-scrollbar-thumb {
  background: #fec435;
  border-radius: 4px;
}

.time-table-main .time-table-card .time-subject-table::-webkit-scrollbar-thumb:hover {
  background: #555;
}


.time-table-main .time-table-card .time-subject-main {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .time-table-main .time-table-card .time-subject-main {
    gap: 20px 10px;
  }
}

.time-table-main .time-table-card .time-subject-main .time-subject-card {
  border: solid 1px rgba(21, 87, 139, 0.1);
  border-radius: 30px;
  width: calc(20% - 10px);
  min-width: 200px;
}

@media screen and (max-width: 992px) {
  .time-table-main .time-table-card .time-subject-main .time-subject-card {
    width: calc(33.33% - 10px);
    min-width: 180px;
  }
}

@media screen and (max-width: 767px) {
  .time-table-main .time-table-card .time-subject-main .time-subject-card {
    width: calc(50% - 10px);
    min-width: 150px;
  }
}

.time-table-main .time-table-card .time-subject-main .time-subject-card:first-child span {
  color: rgb(0, 0, 0);
}

.time-table-main .time-table-card .time-subject-main .time-subject-card span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.7);
  display: block;
  text-align: center;
  padding: 25px 0;
  border-bottom: solid 1px rgba(21, 87, 139, 0.1);
}

@media screen and (max-width: 767px) {
  .time-table-main .time-table-card .time-subject-main .time-subject-card span {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .time-table-main .time-table-card .time-subject-main .time-subject-card span {
    font-size: 14px;
  }
}

.time-table-main .time-table-card .time-subject-main .time-subject-card span:first-child {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  color: rgb(255, 255, 255);
  padding: 10px 0;
}

.time-table-main .time-table-card .time-subject-main .time-subject-card span:last-child {
  border-bottom: 0;
}

.time-table-main .note-text-main {
  text-align: center;
}

.time-table-main .note-text-main span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  background: rgb(228, 80, 18);
  padding: 5px 30px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
}

@media screen and (max-width: 767px) {
  .time-table-main .note-text-main span {
    font-size: 16px;
    padding: 4px 25px;
  }
}

.time-table-main .note-text-main p {
  font-family: var(--gilroyMedium);
  font-size: 20px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.7);
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .time-table-main .note-text-main p {
    font-size: 16px;
  }
}

.sign-in-main {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .sign-in-main {
    padding: 50px 0;
  }
}

.sign-in-main .sign-form-main .heading-main {
  margin-bottom: 40px;
}

.sign-in-main .sign-form-main .heading-main h2 {
  margin-bottom: 20px;
}

.sign-in-main .sign-form-main .heading-main p {
  font-family: var(--gilroySemiBold);
  font-weight: 700;
}

.sign-in-main .sign-form-main form .input {
  position: relative;
  margin-bottom: 20px;
}

.sign-in-main .sign-form-main form .input.icon-right .icon {
  position: absolute;
  top: 49px;
  right: 20px;
  cursor: pointer;
}

.sign-in-main .sign-form-main form .input.icon-right input {
  padding: 14px 50px 14px 20px;
}

.sign-in-main .sign-form-main form .input label {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(18, 17, 19);
  margin-bottom: 10px;
}

.sign-in-main .sign-form-main form .input label span {
  color: #EA0F1F;
}

.sign-in-main .sign-form-main form .input.error input {
  border: 1px solid #EA0F1F !important;
}

.sign-in-main .sign-form-main form .input input {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--gilroy);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
  outline: none;
}

.sign-in-main .sign-form-main form .input input::placeholder {
  color: rgb(91, 91, 91);
}

.sign-in-main .sign-form-main form .input .error-txt {
  display: block;
  width: 100%;
  color: #EA0F1F;
  font-size: 12px;
  font-family: var(--gilroySemiBold);
  font-weight: 600;
}

.sign-in-main .sign-form-main form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(107, 114, 128);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px 10px;
  user-select: none;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input.error input {
  border: 1px solid #EA0F1F !important;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input .error-txt {
  font-family: var(--gilroySemiBold);
  font-size: 12px;
  color: #EA0F1F;
  font-weight: 600;
  display: block;
  width: 100%;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background: rgb(255, 255, 255);
  margin: 0;
  font: inherit;
  color: rgb(156, 163, 175);
  width: 1.15em;
  height: 1.15em;
  border: 1px solid rgb(156, 163, 175);
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input input[type=checkbox]:focus {
  outline: none;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background: var(--primary-color);
}

.sign-in-main .sign-form-main form .checkbox-forgot-main .checkbox-input input[type=checkbox]:checked::before {
  transform: scale(1);
}

.sign-in-main .sign-form-main form .checkbox-forgot-main a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sign-in-main .sign-form-main form .checkbox-forgot-main a.yellow {
  color: rgb(255, 182, 54);
  text-decoration: none;
}

.sign-in-main .sign-form-main .platform-btn-main {
  margin-top: 25px;
}

.sign-in-main .sign-form-main .platform-btn-main span {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(75, 85, 99);
  text-transform: capitalize;
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .sign-in-main .sign-form-main .platform-btn-main span {
    font-size: 14px;
  }
}

.sign-in-main .sign-form-main .platform-btn-main .platform-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.sign-in-main .sign-form-main .platform-btn-main .platform-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(17, 24, 39);
  border: solid 1px rgb(209, 213, 219);
  border-radius: 50px;
  padding: 6px 36px;
}

.sign-in-main .sign-form-main .platform-btn-main .platform-btn span {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(17, 24, 39);
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 5px;
}

@media screen and (max-width: 767px) {
  .sign-in-main .sign-form-main .platform-btn-main .platform-btn span {
    font-size: 14px;
  }
}

.sign-in-main .sign-form-main .platform-btn-main .platform-btn .create-btn {
  font-family: var(--gilroySemiBold);
  font-weight: 700;
  font-size: 16px;
  color: rgb(228, 80, 18);
  border: none;
  border-radius: none;
  padding: 0;
  max-width: max-content;
}

.sign-in-main .course-coupon-main .course-card-wrapper {
  border: 1px solid black;
  border-radius: 30px;
  padding: 18px 19px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sign-in-main .course-coupon-main .course-card-wrapper .card-img img {
  width: 100%;
  aspect-ratio: 376/220;
  border-radius: 30px;
  object-fit: cover;
}

.sign-in-main .course-coupon-main .course-card-wrapper .card-img .course-teacher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}

.sign-in-main .course-coupon-main .course-card-wrapper .card-img .course-teacher .subject {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(49, 62, 59);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sign-in-main .course-coupon-main .course-card-wrapper .card-img .course-teacher .teacher {
  font-family: var(--gilroy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(130, 140, 138);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sign-in-main .course-coupon-main .course-card-wrapper .card-img .course-teacher .dot {
  width: 6px;
  height: 6px;
  border-radius: 15px;
  background-color: rgb(130, 140, 138);
}

.sign-in-main .course-coupon-main .course-card-wrapper .card-img .course-title {
  font-family: var(--gilroyMedium);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sign-in-main .course-coupon-main .course-card-wrapper .price-enroll .course-price {
  font-family: var(--gilroySemiBold);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(228, 80, 18);
  margin-bottom: 5px;
}

.sign-in-main .course-coupon-main .course-card-wrapper .price-enroll .enroll-now {
  font-family: var(--gilroySemiBold);
  border-radius: 10px;
  background-color: rgb(254, 196, 53);
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  display: block;
  color: rgb(255, 255, 255);
}

.sign-in-main .course-coupon-main .coupon-card-main {
  margin-top: 40px;
  text-align: center;
}

.sign-in-main .course-coupon-main .coupon-card-main h5 {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(17, 24, 39);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.sign-in-main .course-coupon-main .coupon-card-main h5 span {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: var(--primary-color);
}

.sign-in-main .course-coupon-main .coupon-card-main .coupon-input {
  position: relative;
  margin-bottom: 30px;
}

.sign-in-main .course-coupon-main .coupon-card-main .coupon-input input {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 20px 120px 20px 24px;
  border-radius: 10px;
  font-family: var(--gilroy);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
  outline: none;
}

.sign-in-main .course-coupon-main .coupon-card-main .coupon-input input::placeholder {
  color: rgb(91, 91, 91);
}

.sign-in-main .course-coupon-main .coupon-card-main .coupon-input a {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 6px 20px;
  background: rgb(173, 224, 241);
  color: rgb(255, 255, 255);
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  border-radius: 10px;
}

.sign-in-main .course-coupon-main .coupon-card-main p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  color: rgb(75, 85, 99);
  font-weight: 500;
}

.sign-in-main .course-coupon-main .coupon-card-main p a {
  text-decoration: underline;
  color: rgb(75, 85, 99);
}

.sign-in-main .order-cart-heading span {
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  display: block;
  margin: 40px 0 10px 0;
}

@media screen and (max-width: 992px) {
  .sign-in-main .order-cart-heading span {
    font-size: 18px;
  }
}

.sign-in-main .enrollment-wrapper {
  display: flex;
  border: 1px solid rgb(0, 0, 0);
  gap: 20px;
  border-radius: 30px;
  align-items: center;
  padding: 20px 26px;
  margin-bottom: 20px;
}

.sign-in-main .enrollment-wrapper:last-child {
  margin-bottom: 0;
}

.sign-in-main .enrollment-wrapper .course {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.sign-in-main .enrollment-wrapper .dot {
  height: 4px;
  width: 4px;
  border-radius: 15px;
  background-color: rgb(130, 140, 138);
}

.sign-in-main .enrollment-wrapper .courseteacher {
  font-weight: 400;
  font-size: 16px;
  color: rgb(130, 140, 138);
  font-family: var(--gilroyMedium);
}

.sign-in-main .enrollment-wrapper .subject {
  font-weight: 600;
  font-size: 14px;
  font-family: var(--gilroyMedium);
}

.sign-in-main .enrollment-wrapper .course-heading h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(35, 35, 35);
  line-height: 1.2;
  font-family: var(--gilroyMedium);
}

.sign-in-main .enrollment-wrapper .course-price {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 30px);
  font-family: var(--gilroySemiBold);
  line-height: 1.2;
  color: rgb(228, 80, 18);
}

@media screen and (max-width: 768px) {
  .sign-in-main .enrollment-wrapper {
    flex-wrap: wrap;
  }
}

.course-detail {
  padding: 50px 0;
}

.course-detail .breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
}

.course-detail .breadcrumb .arrow {
  border: 1px solid black;
  border-radius: 60px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  justify-content: center;
}

.course-detail .breadcrumb .arrow img {
  width: 15px;
}

.course-detail .breadcrumb .back-to-listing span {
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(35, 35, 35, 0.7);
}

.course-detail .course-detail-image {
  height: 100%;
}

.course-detail .course-detail-image img {
  height: 100%;
}

.detail-subject {
  background: rgb(246, 240, 229);
  display: inline-flex;
  gap: 12px;
  border: 1px solid rgb(47, 48, 48);
  border-radius: 30px;
  padding: 7px 20px;
  align-items: center;
  margin-top: 20px;
}

.detail-subject .course-dot {
  width: 6px;
  height: 6px;
  border-radius: 15px;
  background-color: rgba(47, 48, 48, 0.9);
}

.detail-subject .course-subject {
  font-family: var(--gilroySemiBold);
  font-size: clamp(12px, 2vw, 14px);
  color: rgb(47, 48, 48);
  font-weight: 600;
  line-height: 1.2;
}

.detail-subject .detail-teacher {
  font-family: var(--gilroyMedium);
  font-weight: 400;
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1.2;
  color: rgba(47, 48, 48, 0.7);
}

.course-detail-heading {
  margin-top: 20px;
}

.course-detail-heading h1 {
  font-family: var(--gilroyMedium);
  font-size: clamp(28px, 3vw, 35px);
  font-weight: 400;
  color: rgb(35, 35, 35);
}

.course-detail-desc {
  margin-top: 20px;
}

.course-detail-desc p {
  font-family: var(--gilroyMedium);
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  color: rgba(35, 35, 35, 0.7);
}

.course-level {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 25px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .course-level {
    margin-bottom: 15px;
  }
}

.course-level .level span {
  font-family: var(--gilroyMedium);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.2;
  color: rgb(49, 62, 59);
}

.course-button {
  margin-top: 20px;
  border-radius: 10px;
  background-color: rgb(254, 196, 53);
  font-family: var(--gilroyMedium);
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: clamp(14px, 2vw, 14px);
  padding: 10px 15px;
  text-align: center;
  display: block;
}

.course-button:hover {
  color: rgb(255, 255, 255);
}

.about-course-heading {
  margin-top: 20px;
}

.about-course-heading h4 {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.about-course-desc {
  margin-top: 20px;
}

.about-course-desc p {
  font-family: var(--gilroyMedium);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  margin-bottom: 30px;
  color: rgba(35, 35, 35, 0.7);
}

.course-achievment {
  display: flex;
  max-width: 690px;
  justify-content: space-between;
}

.course-achievment .achievments {
  max-width: 50%;
}

.course-achievment .list {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-family: var(--gilroyMedium);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  line-height: 1.2;
  color: rgba(35, 35, 35, 0.7);
}

.course-achievment-heading {
  margin-bottom: 20px;
}

.course-achievment-heading h3 {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.class-timing-heading h3 {
  font-family: var(--gilroyMedium);
  font-size: 22px;
  font-weight: 500;
}

.stage-timing-wrapper {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.stage-timing-wrapper .stage-timing {
  width: calc(33.33% - 10px);
}

.stage-timing-wrapper .key-stage-one {
  border-radius: 20px;
  padding: 10px 35px;
  background-color: rgb(173, 224, 241);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .stage-timing-wrapper .key-stage-one {
    padding: 10px 25px;
  }
}

.stage-timing-wrapper .key-stage-one span {
  font-family: var(--gilroySemiBold);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.stage-timing-wrapper .key-stage-two {
  border-radius: 20px;
  padding: 10px 35px;
  background-color: rgba(65, 219, 135, 0.3);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .stage-timing-wrapper .key-stage-two {
    padding: 10px 25px;
  }
}

.stage-timing-wrapper .key-stage-two span {
  font-family: var(--gilroySemiBold);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.stage-timing-wrapper .key-stage-three {
  border-radius: 20px;
  padding: 10px 35px;
  background-color: rgb(255, 211, 125);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .stage-timing-wrapper .key-stage-three {
    padding: 10px 25px;
  }
}

.stage-timing-wrapper .key-stage-three span {
  font-family: var(--gilroySemiBold);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.stage-timing-wrapper .timing {
  border-radius: 20px;
  padding: 10px 35px;
  background-color: #FFF;
  margin-top: 20px;
  text-align: center;
  border: 1px solid rgba(21, 87, 139, 0.1);
}

@media screen and (max-width: 767px) {
  .stage-timing-wrapper .timing {
    padding: 10px 25px;
  }
}

.stage-timing-wrapper .timing span {
  font-family: var(--gilroyMedium);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 500;
  color: rgba(35, 35, 35, 0.7);
}

@media screen and (max-width: 768px) {
  .stage-timing-wrapper .stage-timing {
    width: calc(50% - 10px);
  }
}

.class-timing {
  max-width: 715px;
  margin-top: 20px;
}

.about-us {
  margin: 100px 0px;
}

@media screen and (max-width: 767px) {
  .about-us {
    margin: 40px 0;
  }
}

.about-us .detail-subject {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  gap: 12px;
  border: 1px solid rgb(47, 48, 48);
  border-radius: 30px;
  padding: 5px 20px;
  align-items: center;
  background: #F6F0E5;
  margin-top: 20px;
}

.about-us h2 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  margin: 15px 0px;
  line-height: 1;
}

.about-us p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6);
  /* text-transform: capitalize; */
  line-height: 1.3;
  padding-top: 10px;
}

@media screen and (max-width: 767px) {
  .about-us p {
    font-size: 14px;
  }
}

.about-us .percentage-box {
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}

.about-us .percentage-box .border-right {
  width: 0.5px;
  height: 100%;
  background: rgba(0, 0, 0, 0.1019607843);
  margin: 0 auto;
}

@media screen and (max-width: 992px) {
  .about-us .percentage-box .border-right {
    width: 100%;
    height: 0.5px;
    margin-top: 30px;
  }
}

.about-us .percentage-box span {
  font-family: var(--gilroyMedium);
  color: rgb(254, 203, 60);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 52px);
  padding-top: 10px;
  display: block;
}

.our-core-values {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .our-core-values {
    margin-bottom: 20px;
  }
}

.our-core-values .our-images {
  margin-top: 30px;
}

.our-core-values h2 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  margin: 15px 0px;
  line-height: 1;
}

.our-core-values p {
  font-family: var(--gilroyMedium);
  color: rgba(35, 35, 35, 0.6);
  font-weight: 500;
  font-size: 16px;
  /* text-transform: capitalize; */
  line-height: 1.3;
}

.our-core-values .our-images .our-value-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(21, 87, 139, 0.2);
  border-radius: 30px;
  padding-top: 24px;
  padding-right: 37px;
  padding-bottom: 24px;
  padding-left: 37px;
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .our-core-values .our-images .our-value-box {
    padding: 20px 10px;
  }
}

.our-core-values .our-images .our-value-box img {
  min-width: 85px;
  max-width: 85px;
}

.our-core-values .our-images .our-value-box h4 {
  font-family: var(--gilroyMedium);
  font-size: clamp(16px, 4vw, 20px);
  color: #232323;
  font-weight: 600;
}

.our-core-values .our-images .our-value-box p {
  font-size: clamp(14px, 4vw, 16px);
}

.our-vision {
  position: relative;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .our-vision {
    margin-bottom: 20px;
  }
}

.our-vision h2 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  margin: 15px 0px;
  line-height: 1;
}

.our-vision .our-vision-box {
  border-radius: 30px;
  padding-top: 50px;
  padding-right: 85px;
  padding-bottom: 43px;
  padding-left: 85px;
  border: 1px solid rgba(21, 87, 139, 0.2);
  height: 100%;
}

@media screen and (max-width: 767px) {
  .our-vision .our-vision-box {
    padding: 30px 15px;
  }
}

.our-vision .our-vision-box>img {
  opacity: 0.3;
}

@media screen and (max-width: 767px) {
  .our-vision .our-vision-box>img {
    width: 50px;
  }
}

.our-vision .our-vision-box p {
  font-family: var(--gilroyMedium);
  font-size: clamp(16px, 4vw, 24px);
  color: rgba(35, 35, 35, 0.6980392157);
  font-weight: 500;
  line-height: 1.3;
  margin-top: 30px;
}

.our-vision .our-vision-btn {
  display: flex;
  gap: 10px;
  justify-content: end;
}

.meet-our-instructor {
  position: relative;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .meet-our-instructor {
    margin-bottom: 40px;
  }
}

.meet-our-instructor .heading-main h2 {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: clamp(30px, 4vw, 52px);
  margin: 15px 0px;
  line-height: 1;
  margin-bottom: 0;
}

.meet-our-instructor .heading-main span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  color: rgba(35, 35, 35, 0.8);
  gap: 12px;
  border: 1px solid rgba(35, 35, 35, 0.1);
  border-radius: 30px;
  padding: 5px 20px;
  align-items: center;
  background: rgb(235, 235, 235);
  margin-top: 20px;
}

.meet-our-instructor .our-vision-btn {
  display: flex;
  gap: 10px;
  justify-content: end;
}

@media screen and (max-width: 767px) {
  .meet-our-instructor .our-vision-btn .swiper-button {
    line-height: 36px;
    margin-top: 20px;
  }
}

.meet-our-instructor .ourMeet .swiper-slide:nth-child(4n+1) .meet-box {
  background: #ADE0F1;
}

.meet-our-instructor .ourMeet .swiper-slide:nth-child(4n+2) .meet-box {
  background: #F5E29E;
}

.meet-our-instructor .ourMeet .swiper-slide:nth-child(4n+3) .meet-box {
  background: rgba(98, 157, 95, 0.3019607843);
}

.meet-our-instructor .ourMeet .swiper-slide:nth-child(4n+4) .meet-box {
  background: rgba(253, 126, 64, 0.3019607843);
}

.meet-our-instructor .ourMeet .swiper-slide {
  height: auto;
}

.meet-our-instructor .ourMeet .meet-box {
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 17px 25px 17px 25px;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.meet-our-instructor .ourMeet .meet-box img {
  aspect-ratio: 257/336;
}

.meet-our-instructor .ourMeet .meet-box .meet-bottom {
  position: relative;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  padding: 7px;
}

.meet-our-instructor .ourMeet .meet-box .meet-bottom h5 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 600;
  color: #232323;
  margin: 0;
  text-align: center;
}

.meet-our-instructor .ourMeet .meet-box .meet-bottom .subject-text {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgba(35, 35, 35, 0.6980392157);
  text-align: center;
  margin-top: 4px;
  display: block;
}

.meet-our-instructor .ourMeet .meet-box .meet-bottom p {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(35, 35, 35, 0.6980392157);
  margin-top: 4px;
  text-align: center;
}

.subject-enrollment {
  padding: 50px 0;
}

.subject-enrollment .enrollment-wrapper {
  display: flex;
  border: 1px solid rgb(0, 0, 0);
  gap: 20px;
  border-radius: 30px;
  align-items: center;
  padding: 20px 26px;
}

.subject-enrollment .enrollment-wrapper .course {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.subject-enrollment .enrollment-wrapper .dot {
  height: 4px;
  width: 4px;
  border-radius: 15px;
  background-color: rgb(130, 140, 138);
}

.subject-enrollment .enrollment-wrapper .courseteacher {
  font-weight: 400;
  font-size: 16px;
  color: rgb(130, 140, 138);
  font-family: var(--gilroyMedium);
}

.subject-enrollment .enrollment-wrapper .subject {
  font-weight: 600;
  font-size: 14px;
  font-family: var(--gilroyMedium);
}

.subject-enrollment .enrollment-wrapper .course-heading h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(35, 35, 35);
  line-height: 1.2;
  font-family: var(--gilroyMedium);
}

.subject-enrollment .enrollment-wrapper .course-price {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 30px);
  font-family: var(--gilroySemiBold);
  line-height: 1.2;
  color: rgb(228, 80, 18);
}

@media screen and (max-width: 768px) {
  .subject-enrollment .enrollment-wrapper {
    flex-wrap: wrap;
  }
}

.subject-enrollment .coupon-card-main {
  margin: 40px auto 40px auto;
  max-width: 400px;
  text-align: center;
}

.subject-enrollment .coupon-card-main h5 {
  font-family: var(--gilroyMedium);
  font-size: 18px;
  font-weight: 500;
  color: rgb(17, 24, 39);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.subject-enrollment .coupon-card-main h5 span {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: var(--primary-color);
}

.subject-enrollment .coupon-card-main .coupon-input {
  position: relative;
  margin-bottom: 30px;
}

.subject-enrollment .coupon-card-main .coupon-input input {
  background: #fff;
  border: solid 1px rgb(0, 0, 0);
  width: 100%;
  padding: 20px 120px 20px 24px;
  border-radius: 10px;
  font-family: var(--gilroyMedium);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
  outline: none;
}

.subject-enrollment .coupon-card-main .coupon-input input::placeholder {
  color: rgb(91, 91, 91);
}

.subject-enrollment .coupon-card-main .coupon-input a {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 6px 20px;
  background: rgb(173, 224, 241);
  color: rgb(255, 255, 255);
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  border-radius: 10px;
}

.subject-enrollment .coupon-card-main p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  color: rgb(75, 85, 99);
  font-weight: 500;
}

.subject-enrollment .coupon-card-main p a {
  text-decoration: underline;
  color: rgb(75, 85, 99);
}

.order-summary-wrapper {
  border: 1px solid rgb(47, 48, 48);
  border-radius: 20px;
  overflow: hidden;
}

.order-summary-wrapper .order-heading h3 {
  padding: 20px;
  border-bottom: 1px solid rgb(246, 240, 229);
  font-weight: 700;
  font-size: clamp(18px, 4vw, 22px);
  color: rgb(17, 24, 39);
  background-color: rgb(246, 240, 229);
  font-family: var(--gilroySemiBold);
}

.order-summary-wrapper .order-body {
  padding: 24px;
}

.order-summary-wrapper .order-body .order-subject-heading h2 {
  /* font-weight: 500; */
  font-size: 18px;
  /* font-size:  clamp(16px, 4vw, 20px); */
  /* color: rgb(75, 85, 99); */
  line-height: 1.2;
  max-width: 352px;
  /* font-family: var(--gilroyMedium); */
}

.order-summary-wrapper .order-body .subject-ordered {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.order-summary-wrapper .order-body .order-price {
  font-weight: 700;
  font-size: 20px;
  color: rgb(0, 0, 0);
  line-height: 1.2;
  font-family: var(--gilroySemiBold);
}

.order-summary-wrapper .order-body .ordered-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.order-summary-wrapper h3 {
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .order-summary-wrapper .order-body .ordered-price {
    margin-bottom: 15px;
  }

  .order-summary-wrapper .order-body .order-subject-heading h2 {
    max-width: 240px;
  }
}

.order-summary-wrapper .order-body .vat-heading h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  color: rgb(0, 0, 0);
  font-family: var(--gilroySemiBold);
}

.order-summary-wrapper .order-body .vat-price {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  color: rgb(228, 80, 18);
  font-family: var(--gilroySemiBold);
}

.order-summary-wrapper .order-body .separater {
  border-top: 1px solid rgb(229, 231, 235);
  margin: 20px 0;
}

.order-summary-wrapper .order-body .discount-rule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.order-summary-wrapper .order-body .discount-rule h6 {
  font-family: var(--gilroySemiBold);
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.order-summary-wrapper .order-body .input {
  position: relative;
  margin-bottom: 20px;
}

.order-summary-wrapper .order-body .input input {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--gilroy);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
}

.order-summary-wrapper .order-body .input input::placeholder {
  color: rgb(91, 91, 91);
}

.order-summary-wrapper .order-body .apply-discount .primary-outline-black-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 10px 25px;
  border: 1px solid #000;
  color: #000 !important;
  text-transform: capitalize;
  font-family: var(--gilroyMedium);
  border-radius: 10px;
  font-weight: 500;
}

.order-summary-wrapper .primary-btn {
  max-width: unset;
  justify-content: center;
}

.billing-main {
  padding: 100px 0;
}

@media screen and (max-width: 767px) {
  .billing-main {
    padding: 50px 0;
  }
}

.billing-main .heading-main {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .billing-main .heading-main {
    margin-bottom: 15px;
  }
}

.billing-main .billing-form-main {
  border: solid 1px rgb(0, 0, 0);
  background: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 24px;
}

.billing-main .billing-form-main .input {
  position: relative;
  margin-bottom: 20px;
}

.billing-main .billing-form-main .input.icon-right .icon {
  position: absolute;
  top: 49px;
  right: 20px;
  cursor: pointer;
}

.billing-main .billing-form-main .input.icon-right input {
  padding: 14px 50px 14px 20px;
}

.billing-main .billing-form-main .input label {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(18, 17, 19);
  margin-bottom: 10px;
}

.billing-main .billing-form-main .input label span {
  color: #EA0F1F;
}

.billing-main .billing-form-main .input.error input {
  border: 1px solid #EA0F1F !important;
}

.billing-main .billing-form-main .input input,
.billing-main .billing-form-main .input textarea {
  background: rgb(250, 250, 250);
  border: solid 1px rgba(18, 17, 19, 0.1);
  width: 100%;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--gilroy);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
  outline: none;
}

.billing-main .billing-form-main .input input::placeholder,
.billing-main .billing-form-main .input textarea::placeholder {
  color: rgb(91, 91, 91);
}

.billing-main .billing-form-main .input .error-txt {
  display: block;
  width: 100%;
  color: #EA0F1F;
  font-size: 12px;
  font-family: var(--gilroySemiBold);
  font-weight: 600;
}

.billing-main .billing-form-main .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.billing-main .billing-form-main .checkbox-forgot-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(17, 24, 39);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px 10px;
  user-select: none;
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input.error input {
  border: 1px solid #EA0F1F !important;
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input .error-txt {
  font-family: var(--gilroySemiBold);
  font-size: 12px;
  color: #EA0F1F;
  font-weight: 600;
  display: block;
  width: 100%;
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background: rgb(255, 255, 255);
  margin: 0;
  font: inherit;
  color: rgb(156, 163, 175);
  width: 1.15em;
  height: 1.15em;
  border: 1px solid rgb(156, 163, 175);
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input input[type=checkbox]:focus {
  outline: none;
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background: var(--primary-color);
}

.billing-main .billing-form-main .checkbox-forgot-main .checkbox-input input[type=checkbox]:checked::before {
  transform: scale(1);
}

.billing-main .billing-form-main .checkbox-forgot-main a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
}

.billing-main .enrollment-wrapper {
  display: flex;
  border: 1px solid rgb(0, 0, 0);
  gap: 20px;
  border-radius: 30px;
  align-items: center;
  padding: 20px 26px;
  margin-bottom: 25px;
}

.billing-main .enrollment-wrapper .course {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.billing-main .enrollment-wrapper .dot {
  height: 4px;
  width: 4px;
  border-radius: 15px;
  background-color: rgb(130, 140, 138);
}

.billing-main .enrollment-wrapper .courseteacher {
  font-size: 16px;
  font-weight: 400;
  color: rgb(130, 140, 138);
}

.billing-main .enrollment-wrapper .subject {
  font-weight: 600;
  font-size: 14px;
}

.billing-main .enrollment-wrapper .course-heading h4 {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 10px;
  color: rgb(35, 35, 35);
  line-height: 1.2;
}

.billing-main .enrollment-wrapper .course-price {
  font-weight: 600;
  font-size: clamp(20px, 4vw, 30px);
  font-family: var(--gilroySemiBold);
  line-height: 1.2;
  color: rgb(228, 80, 18);
}

@media screen and (max-width: 768px) {
  .billing-main .enrollment-wrapper {
    flex-wrap: wrap;
  }
}

.billing-main .already-sign-main {
  background-color: rgb(246, 240, 229);
  border: solid 1px rgb(47, 48, 48);
  padding: 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .billing-main .already-sign-main {
    justify-content: center;
  }
}

.billing-main .already-sign-main h6 {
  font-family: var(--gilroySemiBold);
  font-weight: 700;
  font-size: 22px;
  color: rgb(17, 24, 39);
  margin-bottom: 0;
}

@media screen and (max-width: 992px) {
  .billing-main .already-sign-main h6 {
    font-size: 18px;
  }
}

.billing-main .already-sign-main a {
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-weight: 700;
  color: rgb(228, 80, 18);
  text-decoration: underline;
  text-underline-offset: 5px;
}

@media screen and (max-width: 992px) {
  .billing-main .already-sign-main a {
    font-size: 18px;
  }
}

.billing-main .already-sign-main a span {
  color: rgb(228, 80, 18);
}

.billing-main .order-cart-heading span {
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  display: block;
  margin: 40px 0 10px 0;
}

@media screen and (max-width: 992px) {
  .billing-main .order-cart-heading span {
    font-size: 18px;
  }
}

.billing-main .coupon-card-main {
  margin: 40px auto 40px auto;
  max-width: 400px;
  text-align: center;
}

.billing-main .coupon-card-main h5 {
  font-family: var(--gilroyMedium);
  font-size: 18px;
  font-weight: 500;
  color: rgb(17, 24, 39);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.billing-main .coupon-card-main h5 span {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  color: var(--primary-color);
}

.billing-main .coupon-card-main .coupon-input {
  position: relative;
  margin-bottom: 30px;
}

.billing-main .coupon-card-main .coupon-input input {
  background: #fff;
  border: solid 1px rgb(0, 0, 0);
  width: 100%;
  padding: 20px 120px 20px 24px;
  border-radius: 10px;
  font-family: var(--gilroyMedium);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
  outline: none;
}

.billing-main .coupon-card-main .coupon-input input::placeholder {
  color: rgb(91, 91, 91);
}

.billing-main .coupon-card-main .coupon-input a {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 6px 20px;
  background: rgb(173, 224, 241);
  color: rgb(255, 255, 255);
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  border-radius: 10px;
}

.billing-main .coupon-card-main p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  color: rgb(75, 85, 99);
  font-weight: 500;
}

.billing-main .coupon-card-main p a {
  text-decoration: underline;
  color: rgb(75, 85, 99);
}

.resume-subject-main {
  padding: 70px 0 120px 0;
}

@media screen and (max-width: 767px) {
  .resume-subject-main {
    padding: 40px 0;
  }
}

.resume-subject-main .resume-subject-height {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.resume-subject-main .school-card-main {
  background: rgb(254, 216, 198);
  border-radius: 16px;
  padding: 32px 35px;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .resume-subject-main .school-card-main {
    padding: 25px;
  }
}

.resume-subject-main .school-card-main a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 14px;
  color: rgba(16, 16, 16, 0.5);
  margin-bottom: 30px;
}

.resume-subject-main .school-card-main h2 {
  font-family: var(--gilroySemiBold);
  font-size: 36px;
  font-weight: 600;
  color: rgb(22, 68, 91);
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .resume-subject-main .school-card-main h2 {
    font-size: 28px;
  }
}

.resume-subject-main .school-card-main .progress-text-main {
  max-width: 250px;
}

.resume-subject-main .school-card-main .progress-text-main span {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgb(228, 80, 18);
  display: block;
  margin-bottom: 10px;
}

.resume-subject-main .school-card-main .progress-text-main .progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgb(238, 238, 238);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}

.resume-subject-main .school-card-main .progress-text-main .progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background-color: rgb(98, 157, 95);
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}

.resume-subject-main .school-card-main .progress-text-main .inprogress-text {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.5);
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.resume-subject-main .module-card-main .search-main {
  position: relative;
  margin-bottom: 30px;
}

.resume-subject-main .module-card-main .search-main input {
  border: solid 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 14px 16px 14px 50px;
  border-radius: 80px;
  background: transparent;
  outline: none;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 14px;
  color: rgba(84, 83, 83, 0.5);
}

.resume-subject-main .module-card-main .search-main input::placeholder {
  color: rgba(84, 83, 83, 0.5);
}

.resume-subject-main .module-card-main .search-main .search-icon {
  position: absolute;
  top: 12px;
  left: 16px;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main {
  position: relative;
  transition: all 0.6s;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main>div {
  width: 96%;
}

@media screen and (max-width: 767px) {
  .resume-subject-main .module-card-main .module-main .module-collapse-main>div {
    width: 94%;
  }
}

.resume-subject-main .module-card-main .module-main .module-collapse-main>div:first-child {
  width: 4%;
}

@media screen and (max-width: 767px) {
  .resume-subject-main .module-card-main .module-main .module-collapse-main>div:first-child {
    width: 6%;
  }
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .progress-circle {
  --percentage: 60;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: conic-gradient(black calc(var(--percentage) * 0%), #e0e0e0 0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  opacity: 0;
  visibility: hidden;
  margin-top: 5px;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .progress-circle::after {
  content: "";
  width: 13px;
  height: 13px;
  background: rgb(253, 250, 245);
  border-radius: 50%;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main:last-child {
  margin-bottom: 30px;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main.active-plus .module-collapse-head span img {
  transform: rotate(0);
}

.resume-subject-main .module-card-main .module-main .module-collapse-main.active-plus .progress-circle {
  background: conic-gradient(black calc(var(--percentage) * 1%), #e0e0e0 0);
  opacity: 1;
  visibility: visible;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main>div {
  width: 100%;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: solid 1px rgb(228, 228, 228);
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding: 0 0 10px 0;
  margin-bottom: 10px;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-head .progress-circle-main h3 {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(49, 62, 59);
  margin-bottom: 0;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-head .progress-circle-main .progress-bar {
  width: 18px;
  height: 18px;
  border: solid 2px rgb(224, 221, 220);
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-head span img {
  transform: rotate(180deg);
  transition: all 0.6s;
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-body {
  display: none;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 992px) {
  .resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-body {
    padding: 20px 30px;
  }
}

@media screen and (max-width: 500px) {
  .resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-body {
    padding: 10px;
  }
}

.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-body .collapse-descripition-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}


.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-body .collapse-descripition-main p {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.5);
  position: relative;
}
.resume-subject-main .module-card-main .module-main .module-collapse-main .module-collapse-body .collapse-descripition-main p svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -25px;
  color: rgba(16, 16, 16);
}
.resume-subject-main .recent-card-main {
  background: rgb(255, 255, 255);
  border: solid 1px rgb(0, 0, 0);
  border-radius: 20px;
  padding: 19px 23px;
  margin-bottom: 25px;
}

.resume-subject-main .recent-card-main .heading-date-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px;
}

.resume-subject-main .recent-card-main .heading-date-main h3 {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(228, 80, 18);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}

.resume-subject-main .recent-card-main .heading-date-main span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgb(68, 127, 65);
}

.resume-subject-main .recent-card-main .recent-desc span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.5);
  display: block;
  margin-bottom: 10px;
}

.resume-subject-main .recent-card-main .recent-desc p {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.5);
  display: block;
  margin-bottom: 0;
}

.resume-subject-main .resume-video-main {
  position: relative;
}

.resume-subject-main .resume-video-main img {
  width: 100%;
}

.resume-subject-main .resume-video-main .resume-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.resume-subject-main .resume-video-main .resume-play-icon img {
  width: 100px;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .resume-subject-main .resume-video-main .resume-play-icon img {
    width: 80px;
    height: 80px;
  }
}

.live-class-main {
  padding: 70px 0 120px 0;
}

@media screen and (max-width: 767px) {
  .live-class-main {
    padding: 40px 0;
  }
}

.live-class-main .back-listing {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 14px;
  color: rgba(16, 16, 16, 0.5);
  margin-bottom: 30px;
}

.live-class-main .live-class-video-main {
  position: relative;
}

.live-class-main .live-class-video-main img {
  width: 100%;
  border-radius: 20px;
}

.live-class-main .live-class-video-main .call-icon-main {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .live-class-main .live-class-video-main .call-icon-main {
    bottom: 15px;
  }
}

.live-class-main .live-class-video-main .call-icon-main img {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .live-class-main .live-class-video-main .call-icon-main img {
    width: 50px;
    height: 50px;
  }
}

.live-class-main .live-class-video-main .call-icon-main a img {
  width: 60px;
  height: 60px;
}

@media screen and (max-width: 767px) {
  .live-class-main .live-class-video-main .call-icon-main a img {
    width: 50px;
    height: 50px;
  }
}

.our-subject-main {
  padding: 70px 0 120px 0;
}

.our-subject-main .tab-title-main.title-border {
  border-bottom: solid 1px rgb(214, 214, 214);
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .our-subject-main .tab-title-main.title-border {
    border-bottom: 0;
  }
}

.our-subject-main .tab-title-main h2 {
  font-family: var(--gilroySemiBold);
  font-size: 36px;
  font-weight: 600;
  color: rgb(22, 68, 91);
}

.our-subject-main .tab-card-main .tab-card ul {
  background: rgb(255, 255, 255);
  border: solid 1px rgb(47, 48, 48);
  border-radius: 20px;
  padding-left: 0;
  margin-bottom: 0;
}

.our-subject-main .tab-card-main .tab-card ul li {
  list-style: none;
}

.our-subject-main .tab-card-main .tab-card ul li:first-child a {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.our-subject-main .tab-card-main .tab-card ul li.active a {
  background-color: rgb(246, 240, 229);
}

.our-subject-main .tab-card-main .tab-card ul li.active a img:first-child {
  opacity: 1 !important;
}

.our-subject-main .tab-card-main .tab-card ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  padding: 16px 20px;
  border-bottom: solid 1px rgb(0, 0, 0);
}

.our-subject-main .tab-card-main .tab-card ul li a img:first-child {
  opacity: 0.7;
}

.our-subject-main .tab-card-main .tab-card ul li:last-child a {
  border-bottom: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.our-subject-main .subject-search-dropdown {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 20px;
}

.our-subject-main .subject-search-dropdown .tab-title-main h2 {
  font-family: var(--gilroySemiBold);
  font-size: 36px;
  font-weight: 600;
  color: rgb(22, 68, 91);
}

.our-subject-main .subject-search-dropdown .tab-title-main p {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.6);
}

.our-subject-main .subject-search-dropdown .search-select-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.our-subject-main .subject-search-dropdown .search-select-main .search-main {
  position: relative;
  width: 300px;
}

.our-subject-main .subject-search-dropdown .search-select-main .search-main input {
  border: solid 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 14px 16px 14px 50px;
  border-radius: 80px;
  background: transparent;
  outline: none;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 14px;
  color: rgba(84, 83, 83, 0.5);
}

.our-subject-main .subject-search-dropdown .search-select-main .search-main input::placeholder {
  color: rgba(84, 83, 83, 0.5);
}

.our-subject-main .subject-search-dropdown .search-select-main .search-main .search-icon {
  position: absolute;
  top: 12px;
  left: 16px;
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select {
  width: 150px;
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  font-family: var(--gilroySemiBold);
  color: rgb(254, 196, 53);
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted,
.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  color: rgb(254, 196, 53);
  background-color: transparent;
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
  font-family: var(--gilroySemiBold);
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  color: rgba(16, 16, 16, 0.6);
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-selection {
  border: 0;
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field,
.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #ced4da;
}

.our-subject-main .subject-search-dropdown .search-select-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ced4da;
}

.our-subject-main .course-card-wrapper {
  background: #fff;
  border: 1px solid black;
  border-radius: 30px;
  padding: 18px 19px;
  height: calc(100% - 20px);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.our-subject-main .course-card-wrapper .card-img img {
  width: 100%;
  aspect-ratio: 266/156;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

.our-subject-main .course-card-wrapper .card-img .course-teacher {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 15px 0;
}

.our-subject-main .course-card-wrapper .card-img .course-teacher .subject {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(49, 62, 59);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-subject-main .course-card-wrapper .card-img .course-teacher .teacher {
  font-family: var(--gilroy);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: rgb(130, 140, 138);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-subject-main .course-card-wrapper .card-img .course-teacher .dot {
  width: 6px;
  height: 6px;
  border-radius: 15px;
  background-color: rgb(130, 140, 138);
}

.our-subject-main .course-card-wrapper .card-img .course-title {
  font-family: var(--gilroyMedium);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(35, 35, 35);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.our-subject-main .course-card-wrapper .price-enroll .progress-text-main {
  --percentage: 60;
  margin-bottom: 10px;
}

.our-subject-main .course-card-wrapper .price-enroll .progress-text-main span {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgb(228, 80, 18);
  display: block;
  margin-bottom: 10px;
}

.our-subject-main .course-card-wrapper .price-enroll .progress-text-main .progress-bar {
  width: 100%;
  height: 8px;
  background-color: rgb(238, 238, 238);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 5px;
}

.our-subject-main .course-card-wrapper .price-enroll .progress-text-main .progress-bar .progress-fill {
  height: 100%;
  width: 0%;
  background-color: rgb(98, 157, 95);
  border-radius: 5px;
  transition: width 0.5s ease-in-out;
}

.our-subject-main .course-card-wrapper .price-enroll .progress-text-main .inprogress-text {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.5);
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.our-subject-main .course-card-wrapper .price-enroll .course-price {
  font-family: var(--gilroySemiBold);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: rgb(228, 80, 18);
  margin-bottom: 5px;
}

.our-subject-main .course-card-wrapper .price-enroll .enroll-now {
  font-family: var(--gilroySemiBold);
  border-radius: 10px;
  background-color: var(--primary-color);
  padding: 10px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  display: block;
  color: rgb(255, 255, 255);
}

.our-subject-main .subject-pagination-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.our-subject-main .subject-pagination-main a:first-child img {
  opacity: 0.5;
}

.our-subject-main .subject-pagination-main a.active span {
  background: var(--primary-color);
  color: rgb(255, 255, 255);
}

.our-subject-main .subject-pagination-main a span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: rgb(35, 35, 35);
  border: solid 1px rgb(35, 35, 35);
  width: 48px;
  height: 48px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-subject-main .edit-profile-form {
  padding: 20px 30px;
  border-left: solid 1px rgb(214, 214, 214);
}

@media screen and (max-width: 767px) {
  .our-subject-main .edit-profile-form {
    border-left: 0;
    padding: 20px 0;
  }
}

.our-subject-main .edit-profile-form h4 {
  font-family: var(--gilroySemiBold);
  font-size: 24px;
  font-weight: 600;
  color: rgb(89, 90, 92);
  margin-bottom: 10px;
}

.our-subject-main .edit-profile-form h4.yellow {
  color: var(--primary-color);
}

.our-subject-main .edit-profile-form .profile-text-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle {
  box-shadow: 0 0 0 1px rgb(0, 0, 0);
  padding: 10px;
  border-radius: 100%;
  display: inline-block;
  position: relative;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle .profile-circle-img img {
  border-radius: 100%;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle .profile-name-email span {
  font-family: "ArchivoBold";
  font-size: 22px;
  color: #000;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle .profile-name-email p {
  font-family: "ArchivoMedium";
  color: #4B5563;
  font-size: 16px;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle .profile-name-email {
  padding: 10px 0;
  text-align: center;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle .edit-profile-main {
  position: absolute;
  right: 0;
  top: 70px;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-main-circle .edit-profile-main label {
  cursor: pointer;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-text span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
  margin-bottom: 5px;
  line-height: 1;
}

.our-subject-main .edit-profile-form .profile-text-main .profile-text p {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgb(89, 90, 92);
  margin-bottom: 0;
}

.our-subject-main .edit-profile-form form .input {
  position: relative;
  margin-bottom: 20px;
}

.our-subject-main .edit-profile-form form .input.icon-right .icon {
  position: absolute;
  top: 49px;
  right: 20px;
  cursor: pointer;
}

.our-subject-main .edit-profile-form form .input.icon-right input {
  padding: 14px 50px 14px 20px;
}

.our-subject-main .edit-profile-form form .input label {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(89, 90, 92);
  margin-bottom: 10px;
}

.our-subject-main .edit-profile-form form .input label span {
  color: #EA0F1F;
}

.our-subject-main .edit-profile-form form .input.error input {
  border: 1px solid #EA0F1F !important;
}

.our-subject-main .edit-profile-form form .input input,
.our-subject-main .edit-profile-form form .input textarea {
  background: rgb(255, 255, 255);
  border: solid 1px rgb(214, 214, 214);
  width: 100%;
  padding: 14px 20px;
  border-radius: 5px;
  font-family: var(--gilroy);
  font-weight: 400;
  font-size: 16px;
  color: rgb(91, 91, 91);
  outline: none;
}

.our-subject-main .edit-profile-form form .input input::placeholder,
.our-subject-main .edit-profile-form form .input textarea::placeholder {
  color: rgb(91, 91, 91);
  font-family: var(--gilroy);
  font-weight: 400;
}

.our-subject-main .edit-profile-form form .input .error-txt {
  display: block;
  width: 100%;
  color: #EA0F1F;
  font-size: 12px;
  font-family: var(--gilroySemiBold);
  font-weight: 600;
}

.our-subject-main .edit-profile-form form .input .img-main {
  position: absolute;
  top: 20px;
  left: 20px;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(107, 114, 128);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0px 10px;
  user-select: none;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input.error input {
  border: 1px solid #EA0F1F !important;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input .error-txt {
  font-family: var(--gilroySemiBold);
  font-size: 12px;
  color: #EA0F1F;
  font-weight: 600;
  display: block;
  width: 100%;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  background: rgb(255, 255, 255);
  margin: 0;
  font: inherit;
  color: rgb(156, 163, 175);
  width: 1.15em;
  height: 1.15em;
  border: 1px solid rgb(156, 163, 175);
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input input[type=checkbox]:focus {
  outline: none;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  background: var(--primary-color);
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main .checkbox-input input[type=checkbox]:checked::before {
  transform: scale(1);
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main a {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 700;
  color: rgb(17, 24, 39);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.our-subject-main .edit-profile-form form .checkbox-forgot-main a.yellow {
  color: var(--primary-color);
  text-decoration: none;
}

.our-subject-main .edit-profile-form form .edit-profile-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}

.our-subject-main .edit-profile-form form .edit-profile-btn .black-outline-btn {
  font-family: var(--gilroySemiBold);
  border: solid 1px rgb(0, 0, 0);
  border-radius: 10px;
  padding: 10px 24px;
  color: rgb(0, 0, 0);
  display: block;
  max-width: max-content;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
}

.our-subject-main .edit-profile-form .table-container {
  background: white;
  border-radius: 20px;
  border: 2px solid rgb(47, 48, 48);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: auto;
  /* Scrollbar ka thumb (jo move hota hai) */
  /* Scrollbar background */
}

.our-subject-main .edit-profile-form .table-container::-webkit-scrollbar {
  height: 6px;
  /* jitni chhoti height chahiye set karlo */
}

.our-subject-main .edit-profile-form .table-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 20px;
}

.our-subject-main .edit-profile-form .table-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 20px;
  width: calc(100% - 40px);
}

.our-subject-main .edit-profile-form .table-container table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  border-radius: 20px;
  min-width: 810px;
  overflow: hidden;
}

.our-subject-main .edit-profile-form .table-container th {
  background-color: rgb(246, 240, 229);
  border-bottom: 2px solid rgb(47, 48, 48);
  border-right: 2px solid rgb(47, 48, 48);
  padding: 16px 20px;
  text-align: left;
  font-family: var(--gilroySemiBold);
  font-size: 17px;
  font-weight: 600;
  color: rgb(17, 24, 39);
}

@media screen and (max-width: 767px) {
  .our-subject-main .edit-profile-form .table-container th {
    font-size: 16px;
  }
}

.our-subject-main .edit-profile-form .table-container th:last-child {
  border-right: none;
}

.our-subject-main .edit-profile-form .table-container td {
  border-bottom: 1px solid rgb(47, 48, 48);
  border-right: 2px solid rgb(47, 48, 48);
  padding: 16px 20px;
  color: #374151;
  vertical-align: middle;
}

.our-subject-main .edit-profile-form .table-container td .secondary-btn {
  padding: 7px 18px;
}

.our-subject-main .edit-profile-form .table-container td:last-child {
  border-right: none;
}

.our-subject-main .edit-profile-form .table-container tr:last-child td {
  border-bottom: none;
}

.our-subject-main .edit-profile-form .table-container .order-number {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(89, 90, 92);
}

@media screen and (max-width: 767px) {
  .our-subject-main .edit-profile-form .table-container .order-number {
    font-size: 14px;
  }
}

.our-subject-main .edit-profile-form .table-container .product-name {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(89, 90, 92);
}

@media screen and (max-width: 767px) {
  .our-subject-main .edit-profile-form .table-container .product-name {
    font-size: 14px;
  }
}

.our-subject-main .edit-profile-form .table-container .cancel-btn {
  background-color: #7dd3fc;
  color: #0369a1;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.our-subject-main .edit-profile-form .table-container .cancel-btn:hover {
  background-color: #38bdf8;
}

.our-subject-main .edit-profile-form .table-container .date-text {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(89, 90, 92);
}

@media screen and (max-width: 767px) {
  .our-subject-main .edit-profile-form .table-container .date-text {
    font-size: 14px;
  }
}

.our-subject-main .edit-profile-form .table-container .price-text {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: rgb(228, 80, 18);
  text-wrap: nowrap;
}

@media screen and (max-width: 767px) {
  .our-subject-main .edit-profile-form .table-container .price-text {
    font-size: 14px;
  }
}

.thank-you-main {
  padding: 50px 0 100px 0;
}

@media screen and (max-width: 767px) {
  .thank-you-main {
    padding: 40px 0;
  }
}

.thank-you-main .back-listing {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 14px;
  color: rgba(16, 16, 16, 0.5);
  margin-bottom: 50px;
}

.thank-you-main .title-order-total-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: solid 1px rgb(209, 213, 219);
  margin-bottom: 50px;
}

.thank-you-main .title-order-total-main .title-date {
  width: 100%;
}

.thank-you-main .title-order-total-main .title-date .order-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* .thank-you-main .title-order-total-main .title-date {
  padding-bottom: 28px;
} */
.thank-you-main .title-order-total-main .title-date h6 {
  font-family: var(--gilroyMedium);
  font-size: 20px;
  font-weight: 500;
  color: rgb(35, 35, 35);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .thank-you-main .title-order-total-main .title-date h6 {
    font-size: 18px;
  }
}

.thank-you-main .title-order-total-main .title-date span {
  font-family: var(--gilroyMedium);
  font-size: 20px;
  font-weight: 500;
  color: rgb(75, 85, 99);
  display: flex;
  align-items: center;
  /* gap: 5px; */
}

.thank-you-main .title-order-total-main .title-date span>div {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .thank-you-main .title-order-total-main .title-date span {
    font-size: 18px;
  }
}

.thank-you-main .title-order-total-main .order-price {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
}

.thank-you-main .title-order-total-main .order-price h6 {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin-bottom: 10px;
  /* text-align: right; */
  text-transform: capitalize;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .thank-you-main .title-order-total-main .order-price h6 {
    font-size: 18px;
  }
}

.thank-you-main .title-order-total-main .order-price span {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 800;
  color: rgb(228, 80, 18);
  text-align: right;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: start;
}

@media screen and (max-width: 767px) {
  .thank-you-main .title-order-total-main .order-price span {
    font-size: 18px;
    text-align: left;
  }
}

.thank-you-main .thank-you-subscription {
  max-width: 650px;
  margin: auto;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .thank-you-main .thank-you-subscription>img {
    width: 80px;
    height: 80px;
  }
}

.thank-you-main .thank-you-subscription h2 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 700;
  color: rgb(22, 68, 91);
  margin-bottom: 20px;
}

.thank-you-main .thank-you-subscription span {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(107, 114, 128);
  display: block;
  margin-bottom: 24px;
}

.thank-you-main .thank-you-subscription a {
  background: var(--primary-color);
  border-radius: 50px;
  padding: 12px 24px;
  color: var(--white);
  display: block;
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: capitalize;
  transition: 0.3s linear;
  box-shadow: 0px 6px 0px -2px rgb(148, 202, 220);
  max-width: 450px;
  margin: auto;
}

.thank-you-main .thank-you-subscription a:hover {
  color: var(--white);
  box-shadow: 0 0 0 0 rgb(148, 202, 220);
}

.invoice-main .invoice-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 30px 30px 0 30px;
  position: relative;
  height: 100%;
  max-height: 400px;
  overflow: auto;
}

@media screen and (max-width: 500px) {
  .invoice-main .invoice-container {
    padding: 30px 10px 0 10px;
  }
}

.invoice-main .header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 30px;
}

@media screen and (max-width: 500px) {
  .invoice-main .header {
    margin-bottom: 0;
    padding: 10px;
  }
}

.invoice-main .header .header-left h1 {
  font-family: var(--gilroySemiBold);
  font-size: 20px;
  font-weight: 700;
  color: rgb(35, 33, 34);
  margin-bottom: 5px;
}

.invoice-main .header .header-left p {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgb(35, 33, 34);
  display: flex;
  align-items: center;
  gap: 10px;
}

.invoice-main .header .header-left span {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgb(35, 33, 34);
  display: block;
}

.invoice-main .header .logo img {
  width: 50px;
  height: 50px;
}

.invoice-main .billing-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.invoice-main .billing-info .billing-section h3 {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: rgb(35, 33, 34);
}

.invoice-main .billing-info .billing-section p {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgb(35, 33, 34);
  margin-bottom: 3px;
}

.invoice-main .invoice-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  overflow: hidden;
  min-width: 700px;
  border-top: solid 1px #000;
  border-bottom: solid 1px rgba(35, 33, 34, 0.15);
}

@media screen and (max-width: 500px) {
  .invoice-main .invoice-table {
    margin-bottom: 10px;
  }
}

.invoice-main .invoice-table th {
  background-color: transparent;
  font-family: var(--gilroySemiBold);
  padding: 12px;
  font-weight: 600;
  text-align: left;
  border-bottom: 2px solid #e9ecef;
  color: rgb(35, 33, 34);
  font-size: 14px;
}

.invoice-main .invoice-table th:last-child {
  text-align: right;
}

.invoice-main .invoice-table td {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 12px;
  border-bottom: 1px solid #e9ecef;
  color: rgb(35, 33, 34);
}

.invoice-main .invoice-table td:last-child {
  text-align: right;
}

.invoice-main .totals {
  text-align: right;
  margin-bottom: 30px;
  border-bottom: solid 1px rgba(35, 33, 34, 0.15);
  padding-bottom: 19px;
}

.invoice-main .total-line {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
  font-size: 14px;
}

.invoice-main .total-label {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgb(35, 33, 34);
  width: 120px;
  text-align: left;
  margin-right: 20px;
}

.invoice-main .total-amount {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 700;
  width: 100px;
  text-align: right;
  color: rgb(35, 33, 34);
}

.invoice-main .final-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.invoice-main .final-total-label {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  font-weight: 600;
  color: rgb(35, 33, 34);
}

.invoice-main .final-total-amount {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 700;
  color: rgb(228, 80, 18);
}

.invoice-main .amount-words {
  font-family: var(--gilroyMedium);
  font-size: 14px;
  font-weight: 500;
  color: rgb(35, 33, 34);
  border-bottom: solid 1px rgba(35, 33, 34, 0.15);
  padding-bottom: 14px;
}

.invoice-main .buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  border-top: 0;
}

.invoice-main .print-btn {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 700;
  background-color: var(--primary-color);
  border: none;
  padding: 8px 30px;
  border-radius: 6px;
  cursor: pointer;
  color: white;
}

.invoice-main .close-btn {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  background: none;
  color: rgb(35, 33, 34);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

/*# sourceMappingURL=style.css.map */
.minHeight {
  min-height: 460px;
}

.dirham-sign {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dirham-img {
  display: inline-block;
  background-image: url("../../../assets/images/DirhamSign.svg");
  background-size: contain;
  width: 20px;
  height: 20px;
}

.otp-modal {
  text-align: center;
}

.otp-modal .modal-dialog {
  max-width: 470px;
}

.otp-modal .close-otp-modal {
  position: absolute;
  top: -50px;
  right: 0;
  width: 35px;
  height: 35px;
  border: 1px solid #fff;
  border-radius: 100%;
}

.otp-modal .close-otp-modal::before {
  content: "";
  position: absolute;
  top: 6px;
  width: 1px;
  height: 20px;
  background: #fff;
  transform: rotate(45deg);
}

.otp-modal .close-otp-modal::after {
  content: "";
  position: absolute;
  top: 6px;
  width: 1px;
  height: 20px;
  background: #fff;
  transform: rotate(-45deg);
}

.otp-modal .modal-content {
  border-radius: 20px;
  margin: 30px 0;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background-color: #090909;
}

.otp-modal .modal-content .modal-body {
  background-color: #fff;
  padding: 40px 50px;
}

.otp-modal .otp-modal-title {
  font-size: 28px;
  font-weight: 600;
  color: #FFB636;
}

.otp-modal .otp-modal-desc,
.otp-modal .otp-modal-desc span {
  font-size: 14px;
  color: #000;
}

.otp-modal .otp-modal-desc a {
  color: #2c6e59;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.otp-modal .otp-modal-subtitle {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #595a5c;
  text-transform: capitalize;
}

.otp-modal .didnotreceive-text {
  margin-top: 20px;
}

.otp-modal .didnotreceive-text span {
  font-size: 14px;
  color: #6e6f72;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 500;
}

.otp-modal .didnotreceive-text p {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

.otp-modal .didnotreceive-text p a {
  color: #2c6e59;
}

.otp-modal .otp-input {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
  margin-bottom: 20px;
}

.otp-modal .opt-error-text {
  font-size: 14px;
  color: #ff3939;
  display: none;
}

.otp-modal .opt-error-text span {
  font-size: 14px;
  font-weight: 600;
  color: #ff3939;
}

.otp-modal .otp-input .input {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  overflow: hidden;
  border-radius: 50px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: #fff;
}

.otp-modal .otp-input .input input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-align: center;
  border: 0;
  outline: 0;
  padding: 8px;
  background-color: #f8fafa;
}

.otp-modal .otp-input .input input::placeholder {
  color: #b4b5b6;
}

.otp-modal .otp-input input[type="number"]::-webkit-inner-spin-button,
.otp-modal .otp-input input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.otp-modal.payment-proof-modal .modal-content .modal-body {
  padding: 30px 20px;
}

.otp-modal.payment-proof-modal .modal-content .modal-body h3 {
  font-size: 24px;
  font-family: "URW DIN Arabic Demi";
  margin: 30px 0;
  color: #2C6E59;
}

.otp-modal.payment-proof-modal .modal-content .modal-body .tracking-no-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px dashed #2C6E59;
  background-color: #2D6D5A0D;
  height: 50px;
  margin-bottom: 30px;
  border-radius: 5px;
  padding: 0 20px;
}

.otp-modal.payment-proof-modal .modal-content .modal-body .tracking-no-copy span {
  font-weight: 500;
  color: #161625;
}

.otp-modal.payment-proof-modal .modal-content .modal-body .tracking-no-copy.input {
  padding: 0;
}

.otp-modal.payment-proof-modal .modal-content .modal-body .tracking-no-copy.input input {
  width: 100%;
  height: 100%;
  padding: 0 15px;
  border: 0;
  outline: 0;
  border-radius: 5px;
  background-color: transparent;
}

.collapse-toggle :hover {
  cursor: pointer;
}

.about-course-desc ol,
ul {
  padding: 0;
}

.subject-image {
  width: 30%;
  max-width: 30%;
}



.notification-main {
  padding: 70px 0;
  min-height: calc(100vh - 222px);
}

.notification-main .heading-main {
  padding-bottom: 30px;
  border-bottom: solid 1px #ccc;
}

.notification-main .heading-main h2 {
  font-family: var(--gilroySemiBold);
  font-size: 36px;
  font-weight: 600;
  color: rgb(22, 68, 91);
}

.notification-main .tab-main .tab-list-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  border-bottom: solid 1px #ccc;
}

.notification-main .tab-main .tab-list-main ul {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
  padding: 10px 0;
}

.notification-main .tab-main .tab-list-main ul li {
  cursor: pointer;
  list-style: none;
}

.notification-main .tab-main .tab-list-main ul li.active span {
  color: rgb(255, 182, 54);
}

.notification-main .tab-main .tab-list-main ul li span {
  font-family: var(--gilroySemiBold);
  font-size: 18px;
  font-weight: 600;
  color: #C1C1C3;
}

.notification-main .tab-content-main {
  overflow: auto;
  max-height: 400px;
  padding-inline-end: 10px;

  /* scrollbar-width: thin; */
  /* scrollbar-color: #ffd37d #eee; */
}

.notification-main .tab-content-main::-webkit-scrollbar {
  width: 8px;
}

.notification-main .tab-content-main::-webkit-scrollbar-track {
  background: #eee;
  border-radius: 8px;
}

.notification-main .tab-content-main::-webkit-scrollbar-thumb {
  background-color: rgba(255, 211, 125, 1);
  border-radius: 8px;
  border: 1px solid #f1f1f1;
}

.notification-main .tab-content-main::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 211, 125, 1);
}


/* .notification-main .tab-main .tab-list-main .mark-read {
  margin-bottom: 10px;
} */

.notification-main .tab-main .tab-list-main .mark-read span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  font-size: 16px;
  color: rgb(255, 182, 54);
}

@media screen and (max-width: 992px) {
  .notification-main .tab-main .tab-content-main {
    margin-top: 20px;
  }
}

.notification-main .tab-main .tab-content-main .tabs-text-main {
  display: none;
}

.notification-main .tab-main .tab-content-main .tabs-text-main:first-child {
  display: block;
}

.notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card {
  display: flex;
  align-items: center;
  gap: 20px;
  border: solid 1px #ccc;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card .bill-ico-img {
    width: 15%;
  }

  .notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card .bill-ico-img img {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
}

.notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card .text-main {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card {
    flex-wrap: wrap;
  }

  .notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card .text-main .text-date {
    max-width: 350px;
  }
}


.notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card .text-main span {
  font-family: var(--gilroySemiBold);
  font-size: 16px;
  font-weight: 600;
  color: #595a5c;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notification-main .tab-main .tab-content-main .tabs-text-main .tabs-card .text-main p {
  font-family: var(--gilroySemiBold);
  font-weight: 600;
  font-size: 14px;
  color: #b4b5b6;
}

.notification-main .tab-main .search-date-sort-main {
  margin-top: 20px;
}

.notification-main .tab-main .search-date-sort-main .search-main {
  position: relative;
  margin-bottom: 20px;
}

.notification-main .tab-main .search-date-sort-main .search-main input {
  border: solid 1px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 10px 16px 10px 50px;
  border-radius: 20px;
  background: transparent;
  outline: none;
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 14px;
  color: rgba(84, 83, 83, 0.5);
}

.notification-main .tab-main .search-date-sort-main .search-main input::placeholder {
  color: rgba(84, 83, 83, 0.5);
}

.notification-main .tab-main .search-date-sort-main .search-main .search-icon {
  position: absolute;
  top: 8px;
  left: 16px;
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .notification-main .tab-main .search-date-sort-main .resume-custom-select {
    margin-bottom: 20px;
  }
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
  font-family: var(--gilroySemiBold);
  color: rgb(254, 196, 53);
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--highlighted,
.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option.select2-results__option--selected,
.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option[aria-selected=true]:not(.select2-results__option--highlighted) {
  color: rgb(254, 196, 53);
  background-color: transparent;
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown.select2-dropdown--below {
  font-family: var(--gilroySemiBold);
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
  font-family: var(--gilroySemiBold);
  font-size: 14px;
  color: rgba(16, 16, 16, 0.6);
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-selection {
  border: 0;
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus,
.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5.select2-container--open .select2-selection {
  box-shadow: none;
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field,
.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown .select2-search .select2-search__field:focus {
  border-color: #ced4da;
}

.notification-main .tab-main .search-date-sort-main .resume-custom-select .select2-container--bootstrap-5 .select2-dropdown {
  border-color: #ced4da;
}

@media screen and (max-width: 767px) {
  .notification-main .tab-main .search-date-sort-main .date-input {
    margin-bottom: 20px;
  }
}

.notification-main .tab-main .search-date-sort-main .date-input input {
  width: 100%;
  padding: 10px 8px 10px 8px;
  border-radius: 20px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  outline: none;
  background: transparent;
  color: rgba(84, 83, 83, 0.5);
  font-size: 14px;
  font-family: var(--gilroyMedium);
}

.notification-main .tab-main .search-date-sort-main .date-input input::placeholder {
  color: rgba(84, 83, 83, 0.5);
}

.unread {
  background: rgb(255, 182, 54, 0.1);
}

.notification-count {
  position: absolute;
  bottom: 6px;
  right: -7px;
  color: #fff;
  background: rgb(228, 80, 18);
  padding: 0px 5px;
  border-radius: 20px;
  font-size: 12px;
  /* border: solid 1px #000; */
  font-weight: 700;
}

.subject-enrollment .bank-detail-card {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 30px;
  overflow: hidden;
}

.subject-enrollment .bank-detail-card .head-main {
  background-color: rgb(246, 240, 229);
  border-bottom: 1px solid rgb(246, 240, 229);
  padding: 20px;
}

.subject-enrollment .bank-detail-card .head-main h5 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0;
}

.subject-enrollment .bank-detail-card .body-main {
  padding: 20px;
}

.subject-enrollment .bank-detail-card .body-main .text-main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.subject-enrollment .bank-detail-card .body-main .text-main:last-child {
  margin-bottom: 0;
}

.subject-enrollment .bank-detail-card .body-main .text-main span {
  font-family: var(--gilroyMedium);
  font-size: 18px;
  color: #767677;
  display: block;
}

.subject-enrollment .bank-detail-card .body-main .text-main span strong {
  color: #000;
  font-family: var(--gilroySemiBold);
}

.subject-enrollment .enrollment-wrapper {
  margin-bottom: 20px;
}


.order-summary-wrapper .order-body .payment-option-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.order-summary-wrapper .order-body .payment-option-main h3 {
  /* font-family: var(--gilroySemiBold);
  font-size: clamp(16px, 4vw, 18px); */
  /* font-weight: 600; */
  /* color: rgb(0, 0, 0); */
  /* max-width: 140px; */
  font-size: 18px;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option label {
  font-family: var(--gilroyMedium);
  font-size: 16px;
  font-weight: 500;
  color: rgb(89, 90, 92);
  user-select: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option label .checkbox-input[type=radio] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: rgb(245, 226, 158);
  width: 1em;
  height: 1em;
  border: 1px solid rgb(245, 226, 158);
  border-radius: 1.15em;
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option label .checkbox-input[type=radio].partial-selected:checked::after {
  content: "";
  background: white;
  width: 10px;
  border-top: 3px solid #fff;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option label .checkbox-input[type=radio].partial-selected::before {
  display: none;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option label .checkbox-input[type=radio]::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: rgb(245, 226, 158);
  border-radius: 100%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  transform-origin: bottom left;
}

.order-summary-wrapper .order-body .payment-option-main .payment-option label .checkbox-input[type=radio]:checked::before {
  transform: scale(1);
}

.thank-you-main .bank-detail-card-main {
  display: flex;
  justify-content: end;
  max-width: 700px;
  width: 100%;
  margin: auto;
}

.thank-you-main .bank-detail-card-main .bank-detail-card {
  border: 1px solid rgb(0, 0, 0);
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .head-main {
  background-color: rgb(246, 240, 229);
  border-bottom: 1px solid rgb(246, 240, 229);
  padding: 20px;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .head-main h5 {
  font-family: var(--gilroySemiBold);
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  color: rgb(17, 24, 39);
  margin-bottom: 0;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .body-main {
  padding: 20px;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .body-main .text-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .body-main .text-main:last-child {
  margin-bottom: 0;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .body-main .text-main span {
  font-family: var(--gilroyMedium);
  font-size: 18px;
  color: #767677;
  display: block;
}

.thank-you-main .bank-detail-card-main .bank-detail-card .body-main .text-main span strong {
  color: #000;
  font-family: var(--gilroySemiBold);
}

#classSession.show .class-modal-main .left-men-img,
#classSessionOne.show .class-modal-main .left-men-img {
  transform: translateX(0);
}

#classSession.show .class-modal-main .right-men-img,
#classSessionOne.show .class-modal-main .right-men-img {
  transform: translateX(0);
}

#classSession .btn-close,
#classSessionOne .btn-close {
  position: absolute;
  right: -10px;
  top: -10px;
  background-color: #e45012 !important;
  border-radius: 100%;
  background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>") center/1em auto no-repeat;
  opacity: 1;
  padding: 5px;
  width: 20px;
  height: 20px;
  z-index: 1;
}

#classSession .class-modal-main,
#classSessionOne .class-modal-main {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
}

#classSession .class-modal-main .left-men-img,
#classSessionOne .class-modal-main .left-men-img {
  position: absolute;
  left: 0;
  top: 20px;
  transform: translateX(-105px);
  transition: 0.8s all;
}

#classSession .class-modal-main .left-men-img .men-img,
#classSessionOne .class-modal-main .left-men-img .men-img {
  width: 130px;
}

#classSession .class-modal-main .right-men-img,
#classSessionOne .class-modal-main .right-men-img {
  position: absolute;
  right: 0;
  top: 20px;
  transform: translateX(105px);
  transition: 0.8s all;
}

#classSession .class-modal-main .right-men-img .men-img,
#classSessionOne .class-modal-main .right-men-img .men-img {
  width: 120px;
}

#classSession .class-modal-main .session-missed-main,
#classSessionOne .class-modal-main .session-missed-main {
  padding: 40px 30px;
  max-width: 460px;
  margin: auto;
  text-align: center;
}

#classSession .class-modal-main .session-missed-main img,
#classSessionOne .class-modal-main .session-missed-main img {
  margin-bottom: 30px;
  width: 110px;
}

#classSession .class-modal-main .session-missed-main h4,
#classSessionOne .class-modal-main .session-missed-main h4 {
  font-family: var(--gilroyMedium);
  font-weight: 500;
  font-size: 42px;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
}

@media screen and (max-width: 992px) {

  #classSession .class-modal-main .session-missed-main h4,
  #classSessionOne .class-modal-main .session-missed-main h4 {
    font-size: 32px;
  }
}

@media screen and (max-width: 767px) {

  #classSession .class-modal-main .session-missed-main h4,
  #classSessionOne .class-modal-main .session-missed-main h4 {
    font-size: 26px;
  }
}

#classSession .class-modal-main .session-missed-main p,
#classSessionOne .class-modal-main .session-missed-main p {
  font-family: var(--gilroyMedium);
  font-size: 18px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  margin-bottom: 20px;
  line-height: 1.1;
}

#classSession .class-modal-main .session-missed-main a img,
#classSessionOne .class-modal-main .session-missed-main a img {
  margin-bottom: 0;
  width: 25px;
  height: 25px;
}

.table-time-table {
  border-collapse: unset;
}

.input-group-append .input-group-text {
  border-left: none !important;
}

.datepicker .form-control {
  border-right: 1px solid var(--background-color-2);
}


.input-group-append .input-group-text {
  position: absolute;
  border-left: none !important;
  /* height: 48px; */
  margin-right: 100px;
  display: contents;
  z-index: 0;
}

.datepicker .input-group-append {
  width: 48px;
  background-color: var(--background-color-2);
  border: 1px solid var(--border-color-6);
  border-left: none !important;
}

.datepicker .form-control {
  border-right: none !important;
}

/* notification delete modal css start */
.delete-modal-wrapper {
  text-align: center;
}

.delete-modal-wrapper div {
  color: var(--text-color-1);
  font-family: var(--gilroySemiBold);
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-top: 47px;
}

.delete-modal-wrapper p {
  color: var(--text-color-3);
  text-align: center;
  font-family: "URW DIN Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-top: 10px;
  margin-bottom: 30px;
}

.delete-modal-wrapper .form-buttons {
  justify-content: center !important;
}

.delete-modal-wrapper .form-buttons a,
.delete-modal-wrapper .form-buttons button {
  padding: 10px 20px;
}

.modules-modal .modal-content {
  background: none;
  border: none;
}

.modules-modal .modal-dialog {
  max-width: 710px;
}

.modules-modal .modal-content-form {
  background: #fff;
  padding: 33px;
  border-radius: 0.5rem;
}

.modules-modal .modal-content .close-modal {
  background: none;
  border: none;
  text-align: end;
  margin-bottom: 30px;
  width: 36px;
  height: 36px;
  margin-left: auto;
}

.modules-modal .modal-content h5 {
  color: var(--text-color-2);
  border-bottom: 1px solid var(--border-color-1);
  font-family: var(--gilroySemiBold);
  font-size: 26px;
  font-weight: 700;
  line-height: normal;
  padding-bottom: 12px;
  text-transform: capitalize;
  margin-bottom: 33px;
}

.modules-modal .modal-content .form-buttons {
  margin-top: 21px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modules-modal .modal-content .form-buttons button {
  margin-bottom: 0px;
  width: auto;
  height: auto;
}

.modules-modal .modal-content {
  background: none;
  border: none;
}

.primary-link-bg-sm,
.primary-link-bg-sm:hover {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  border: 1px solid var(--background-color-1);
  background-color: var(--background-color-1);
  color: #fff;
  padding: 4px 14px 4px 14px;
  gap: 5px;
}

.modules-modal .modal-content .close-modal {
  background: none;
  border: none;
  text-align: end;
  margin-bottom: 30px;
  width: 36px;
  height: 36px;
  margin-left: auto;
}

.modules-modal .modal-dialog.small-modal {
  max-width: 406px !important;
}
/* notification delete modal css end */
