/* 

EEEEEE    GGGGG    OOOO      SSSSS   U    U   RRRRR    FFFFF    
EE       GG       OO  OO    S        U    U   R    R   F        
EEEE     GG  GGG  OO  OO     SSS     U    U   RRRRR    FFFFF    
EE       GG   GG  OO  OO        S    U    U   R   R    F        
EEEEEE    GGGGG    OOOO     SSSSS     UUUU    R    R   F     

Made with ❤️ by Saliya @ Egosurf

*/

:root {
  --header-height: 68px;
  --grid-gutter: 20px;
  --primary-color: #ef4737;
  --sidebar-width: 275px;
  --sidebar-width-actual: calc(var(--sidebar-width) + 2rem);

  /* 1rem responsive value */
  --rv-1: clamp(10px, 0.9vw, 1rem);
  --rv-2: clamp(20px, 1.675vw, 2rem);
  --rv-3: clamp(30px, 2.45vw, 3rem);

  --rv-1-new: clamp(14px, 0.9vw, 0.9rem);

  --rv-5: clamp(50px, 4.225vw, 5rem);
  --rv-6: clamp(60px, 4.9vw, 6rem);

  --rv-1-125: clamp(12px, 0.9vw, 18px);
  --rv-1-25: clamp(14px, 1.1vw, 20px);
  --rv-1-5: clamp(15px, 1.35vw, 1.5rem);
  --rv-2-5: clamp(25px, 2.225vw, 2.5rem);

  --rv-0-5: clamp(5px, 0.45vw, 0.5rem);
  --rv-0-75: clamp(7px, 0.675vw, 0.75rem);
  --rv-0-8: clamp(8px, 0.75vw, 0.8rem);
  --rv-0-9: clamp(9px, 0.85vw, 0.9rem);
}

/* font sizes */

.font-1 {
  font-size: var(--rv-1);
}

/* loader styles */

.white-loader {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  background-color: #000;
  /* top: -120%; */
}

/* utility classes */

.justify-content-center {
  justify-content: center !important;
}

::selection {
  background: var(--primary-color);
  color: #ffffff;
  -webkit-text-fill-color: initial;
}

::-moz-selection {
  background: var(--primary-color);
  color: #ffffff;
  -webkit-text-fill-color: initial;
}

.text-justify {
  text-align: justify;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-muted {
  color: #8e8e8e !important;
}

.text-danger {
  color: #fa5c7c !important;
}

/* margins in bootstrap style */

.w-100 {
  width: 100%;
}

.mb-0-5 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-1-5 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-0-5 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-1-5 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.text--primary {
  color: var(--primary-color) !important;
}

.text--danger {
  color: #fa5c7c !important;
}

.text--black {
  color: #000000 !important;
}

.text--success {
  color: #4bb543 !important;
}

.text--grey {
  color: #8e8e8e !important;
}

.input--primary {
  border: 1px solid transparent;
  background-color: hsl(0, 0%, 10%);
  border: 1px solid transparent;
  color: #ffffff;
  min-height: 3rem;
  padding: 0.5rem 0.75rem;
  /* font-size: 0.875rem; */
  width: 70%;
  border-radius: 0px;
  transition: background-color 0.3s ease-in-out 0s;
  outline: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

/* flex styles */

.flex-end {
  display: flex;
  justify-content: flex-end !important;
}

/* button styles */

.btn {
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  padding: 0.5rem 1rem;
  background: transparent;
  color: #000000;
  text-decoration: inherit;
  border: none;
  font-size: var(--rv-1-25);

  transition: all 0.4s ease;
}

.btn:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.btn--primary {
  border: 2px solid var(--primary-color);
  color: #000000;
}

.btn--primary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.btn--secondary {
  font-weight: 500;
  font-size: 18px;

  background: var(--primary-color);
  color: #ffffff;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  padding: 1.25rem 2rem;
}

.btn--secondary:hover {
  background: #ffffff;
  color: var(--primary-color);

  border: 2px solid var(--primary-color);
}

body.open {
  overflow: hidden;
}

/* header */

header {
  padding: 20px 5vw;
  position: relative;
  z-index: 999;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header__logo img {
  width: clamp(100px, 10vw, 120px);
  width: clamp(100px, 10vw, 100px);
}

header .header__list ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .header__list ul li a {
  padding: 10px 15px;

  color: #000000;
  text-decoration: none;
  font-weight: 400;
  font-size: 18px;
  font-size: var(--rv-1-25);
  font-size: min(var(--rv-1-25), 16px);

  transition: all 0.3s ease;
}

body.dark__header header .header__list ul li a,
body.dark__header header .btn--primary {
  color: #ffffff;
}

header .header__list ul li:not(.active) a:hover {
  color: var(--primary-color);
}

header .header__list ul li.active a {
  font-weight: 600;
  font-size: 20px;
  font-size: var(--rv-1-5);
  font-size: min(var(--rv-1-5), 18px);
  /* font-size: clamp(14px, 1.1vw, 20px); */
}

/* ************ */
/* Desktop Header Profile Pic Pill */

header.m--none .header__logo {
  width: 17%;
}

header.m--none .header__login {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__login .btn--secondary {
  padding: 0.7rem 1.4rem;
  font-size: var(--rv-1-25);
  border: 2px solid var(--primary-color);
  margin-right: 0.5rem;
}

.profile__pill {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;

  border-radius: 50px;
  font-weight: 500;
  font-size: 18px;

  padding: 0.5rem 1.4rem;
  padding-right: 1.25rem;

  background: transparent;
  color: #000000;
  text-decoration: inherit;
  border: 2px solid var(--primary-color);
  font-size: var(--rv-1-25);

  transition: all 0.4s ease;
}

.profile__pill:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.profile__pill .profile__img {
  margin-left: var(--rv-0-5);
  width: 30px;
  height: 30px;
  border-radius: 100%;
  /* border: 0.5px solid black; */
}

.profile__pill .profile__img img {
  border-radius: 100%;
  object-fit: cover;
}

.profile__pill .list__wrapper {
  padding: 0;
  margin: 0;
  z-index: 1000;
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  display: none;
}

.profile__pill ul {
  width: 100%;
  list-style: none;
  background: #ffffff;
  border-radius: 5px;
  margin: 1rem 0;
  padding: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.profile__pill:hover .list__wrapper {
  display: block;
}

.profile__pill ul li a {
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
}

.profile__pill ul li a:hover {
  background: #f5f5f5;
}

.profile__pill ul li a {
  display: block;
  width: 100%;
  color: #000000;
  text-decoration: none;
}

.profile__pill ul li a:hover {
  color: #000000;
  text-decoration: none;
}

/* ************ */
/* Mobile Header */

.header__spacer {
  position: relative;
  height: calc(var(--header-height) + 0px);
  z-index: -1;
}

.sidebar__mask {
  position: fixed;
  inset: 0;

  top: var(--header-height);
  width: 100vw;
  height: calc(100vh - var(--header-height));

  background: rgba(0, 0, 0, 0.5);
  z-index: 998;

  display: none;
}

header.m--only {
  background: #ffffff;
  position: fixed;
  width: 100vw;
  z-index: 999;

  /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

header.m--only .hamburger {
  transform: scale(0.6);
}

header.m--only label.checkboxLabel {
  display: flex;
  flex-direction: column;
  width: 50px;
  cursor: pointer;
  box-sizing: content-box;
}

header.m--only label.checkboxLabel span {
  background: #19191b;
  border-radius: 10px;
  height: 4px;
  margin: 6px 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

header.m--only .checkboxLabel input[type="checkbox"] {
  display: none;
}

header.m--only .checkboxLabel span:nth-of-type(1) {
  width: 50%;
}

header.m--only .checkboxLabel span:nth-of-type(2) {
  width: 100%;
}

header.m--only .checkboxLabel span:nth-of-type(3) {
  width: 75%;
}

header.m--only .checkboxLabel input[type="checkbox"] {
  display: none;
}

header.m--only
  .checkboxLabel
  input[type="checkbox"]:checked
  ~ span:nth-of-type(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(8px, 0px);
}

header.m--only
  .checkboxLabel
  input[type="checkbox"]:checked
  ~ span:nth-of-type(2) {
  transform-origin: top;
  width: 93%;
  transform: translate(3px, -1px) rotatez(-45deg);
}

header.m--only
  .checkboxLabel
  input[type="checkbox"]:checked
  ~ span:nth-of-type(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(21px, -11px) rotatez(45deg);
}

header.m--only .mobile__menu {
  position: fixed;

  top: 0;
  right: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-end;

  background: #ffffff;
  border-top: 1px solid #e5e5e5;

  margin-top: var(--header-height);
  width: 60vw;
  height: calc(100vh - var(--header-height));

  -webkit-font-smoothing: antialiased;
  transform-origin: 0% 0%;
  transform: translate(+100%, 0);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);

  /* transform: translate(+100%, 0) !important; */
}

header.m--only .mobile__menu a {
  text-align: right;
  text-decoration: inherit;

  color: #19191b;
  font-size: var(--rv-1-5);
  font-weight: 500;

  padding: 1rem 5vw;
  padding-left: 0.5rem;

  width: 50vw;
  border-bottom: 0.8px solid #e5e5e5;
  /* border-width: 60vw; */
}

header.m--only .mobile__menu a.active {
  font-weight: 600;
}

/* ************ */

section {
  max-width: 100vw;
  overflow-x: hidden;
}

/* ************ */
/* Hero section */

section.default__section {
  padding: 3vh 5vw;
}

section.section__relative {
  position: relative;
}

.hero_section {
  /* min-height: 100vh; */
  width: 100vw;

  padding: 3vh 5vw;

  /* background: url(../img/hero-bg.jpg) no-repeat center center;
    background-size: cover;
     */
}

.hero_section .flex__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero_section .cont__left {
  /* background-color: wheat; */
  width: 60%;
}

.hero_section .cont__right {
  width: 40%;
  pointer-events: none;
}

/* title */
.hero_section .hero__title {
  font-weight: 700; /* was 600 */
  /* font-size: 50px; */

  /* clamp for 50px */
  font-size: clamp(30px, 2.7vw, 48px);
  /* font-size: 2.7vw; */
  /* font-size: 40px; */

  line-height: 168%;

  /* font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.5; */
}

.default__section .img__block {
  display: inline-block;
  margin: 0 1%;
  width: 12%;
}

.hero_section .hero__desc {
  font-weight: 400;
  font-size: 21px;
  line-height: 186%;
  font-size: clamp(15px, 1.1vw, 21px);
}

.hero_section .hero__trustpilot {
  display: flex;
  align-items: center;
  text-decoration: inherit;
  color: inherit;
}

.hero_section .hero__trustpilot img {
  width: 28px;
  margin: 0 1%;
}

.hero_section .hero__btns {
  padding: 1rem 0;
}

.hero_section .hero__btns .btn--primary {
  padding: 1rem 2rem;
}

.hero_section .bg__layer {
  /* bg image */
  background: url(../img/components/Untitled-min.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* background: var(--primary-color); */

  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);

  z-index: -1;
}

/* tagline */

.tagline__large {
  width: 50%;
  width: clamp(560px, 50%, 900px);
  margin: 0 auto;

  font-weight: 700; /* was 600 */
  font-size: 50px;

  font-size: clamp(35px, 2.7vw, 48px);

  /* line-height: 75px; */
  line-height: 168%;
  text-align: center;
  letter-spacing: -0.500211px;
}

/* ************ */
/* Apple Grid Section */

.apple__grid {
  width: 980px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-columns: repeat(9, 1fr);
  grid-gap: 1.5rem;

  /* grid-auto-rows: 18.8rem;
    grid-auto-rows: 400px; */

  grid-auto-rows: clamp(365px, 38vh, 500px);
  grid-auto-rows: clamp(365px, 34vh, 500px);
  /* grid-auto-rows: 40vh; */
}

@media only screen and (min-width: 1441px) {
  .apple__grid {
    width: 980px;
  }
}

@media only screen and (max-width: 1068px) {
  .apple__grid {
    width: 692px;
  }
}

@media only screen and (max-width: 734px) {
  .apple__grid {
    width: 95%;
  }
}

.apple__grid .grid__item {
  position: relative;
  background-color: violet;
  border-radius: 50px;
  overflow: hidden;

  /* background-color: red; */
  background-image: radial-gradient(circle at top left, #2c2c7a, #1a1a1d 100%);

  /* background-image: linear-gradient(180deg, #ffb6ff, #b344ff); */
  /* background: #1A1A1D;

    background:
        linear-gradient(288deg, #1A1A1D, #5454D4); */
  /* background-image: url(../img/components/Untitled-min.png);
    background-size: cover; */
}

.apple__grid .grid__item.tile-4-col-1-row {
  grid-column: span 4;
  grid-row: span 1;
}

.apple__grid .grid__item.tile-5-col-2-row {
  grid-column: span 5;
  grid-row: span 2;
}

.apple__grid .grid__item.tile-3-col-1-row {
  grid-column: span 3;
  grid-row: span 1;
}

.apple__grid .grid__item.tile-6-col-1-row {
  grid-column: span 6;
  grid-row: span 1;
}

.apple__grid .grid__item.tile-9-col-1-row {
  grid-column: span 9;
  grid-row: span 1;
}

.apple__grid .gradient__title {
  font-weight: 600;
  font-size: 48px;
  /* font-size: clamp(42px, 3vw, 48px); */
  /* font-size: clamp(44px, 3vw, 48px); */
  /* font-size: 3vw; */

  text-align: center;
  letter-spacing: -0.5px;

  color: #5454d4;

  background: linear-gradient(180deg, #5454d4 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.apple__grid .bottom__image {
  position: absolute;
  bottom: -5px;

  /* center */
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  /* height: 80%; */
}

.apple__grid .grid__item.bg__student {
  background: url(../img/components/student_default.jpg) no-repeat center center;
  background-size: cover;
}

.apple__grid .grid__item.bg__aurora {
  background: url(../img/components/northern-lights-cropped.gif) no-repeat
    center center;
  background: url(../img/components/northern-lights_3.gif) no-repeat center
    right;
  background-size: cover;
}

.apple__grid .grid__item.bg__aurora .text__aurora {
  font-weight: 600;
  font-size: 35px;
  line-height: 1.325;
  letter-spacing: -0.500211px;

  background: linear-gradient(180deg, #5454d4 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  padding: 2rem 2.1rem;
}

.apple__grid .grid__item.bg__student .bottom__text {
  position: absolute;
  bottom: 0;
  left: 0;

  font-weight: 500;
  font-size: 25px;
  letter-spacing: -0.500211px;
  color: #ffffff;

  padding: 1.5rem 2.1rem;
}

/* cont__lecs */
.apple__grid .grid__item.cont__lecs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: unset;
  background-color: #19191b;
}

.apple__grid .grid__item.cont__lecs .gradient__title {
  /* break line word by word */
  white-space: break-spaces;
  text-align: left;
  font-size: 48px;
  line-height: 1.3;

  padding: 2rem;
}

.apple__grid .grid__item.cont__lecs .play-btn {
  width: 20%;
  height: 20%;

  background: url(../img/components/play-btn.png) no-repeat center center;
  background-size: contain;

  /* position absolute bottom right */
  position: absolute;
  bottom: 0;
  right: 0;

  margin: 0 1.5rem 1.5rem 0;
}

.apple__grid .grid__item.cont__portal {
  background-image: unset;
  background: unset;

  background: #231e1d;

  padding: 2rem 1.5rem;
}

/* create after element with same size as cont__portal */
.apple__grid .grid__item.cont__portal::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(54.37deg);

  /* background: linear-gradient(180deg, rgba(84, 84, 212, 0.27) 37.17%, rgba(84, 84, 212, 0.1134) 100%, rgba(84, 84, 212, 0) 100%);
    background: linear-gradient(180deg, rgba(84, 84, 212, 1) 37.17%, rgba(84, 84, 212, 1) 100%, rgba(84, 84, 212, 0) 100%);
    background: linear-gradient(180deg, #5454d4 37.17%, #5454d4 100%, rgba(84, 84, 212, 0) 100%); */

  background: rgb(84, 84, 212);
  background: radial-gradient(
    circle,
    rgba(84, 84, 212, 1) 0%,
    rgba(35, 30, 29, 1) 73%
  );

  filter: blur(110px);
  border-radius: 233.5px;
}

.apple__grid .grid__item.cont__portal .cell__title {
  font-weight: 600;
  font-size: 35px;
  /* line-height: 1.325; */
  text-align: center;
  color: #ffffff;

  position: relative;
  z-index: 1;

  /* padding-bottom: 1rem; */
}

.apple__grid .grid__item.cont__portal .cell__title span {
  font-weight: 500;
  font-size: 25px;
}

.apple__grid .grid__item.cont__portal .cell__image {
  width: 60%;
  margin: 0 auto;

  position: relative;
  z-index: 1;
}

.apple__grid .grid__item.cont__panel {
  background-image: unset;
  background: unset;

  background: #19191b;
  padding: 2rem 1.5rem;
}

.apple__grid .grid__item.cont__panel > div {
  position: relative;
  z-index: 1;
}

.apple__grid .grid__item.cont__panel .cell__title {
  font-weight: 600;
  font-size: 35px;
  text-align: center;
}

.apple__grid .grid__item.cont__panel iframe {
  pointer-events: none;
  position: absolute;
  top: -26%;
  left: -25%;

  width: 150%;
  height: 152%;
}

/* ********** */
/* Take control section */

.container__take__control {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container__take__control .tagline__large {
  line-height: initial;
}

.decor {
  position: absolute;
  width: 65px;
  height: 65px;
}

.decor__piece__1 {
  background: url("../img/components/deco__1.png") no-repeat center center;
  background-size: contain;
}

.decor__piece__2 {
  background: url("../img/components/deco__2.png") no-repeat center center;
  background-size: contain;
}

.decor__piece__3 {
  background: url("../img/components/deco__3.png") no-repeat center center;
  background-size: contain;
}

.decor.top__left {
  top: 0;
  left: 18vw;
}

.decor.bottom__left {
  bottom: 0;
  left: 15vw;
}

.decor.center__right {
  top: 50%;
  right: 18vw;
  transform: translateY(-50%);
}

/* ********** */
/* Blog Section */

.section__dark {
  /* background: #19191B; */
}

section.blog__section {
  padding: 5vh 0;
  position: relative;
  max-width: 100vw;
  overflow: hidden;
}

.blog__section .bg__layer__1 {
  /* outline: 1px solid red; */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #19191b;
  z-index: -1;
}

.blog__section .bg__layer__1 .bg__elem {
  width: 50%;
  height: 80%;

  background: linear-gradient(
    180deg,
    rgba(84, 84, 212, 0.2) 0%,
    rgba(84, 84, 212, 0.084) 100%
  );
  filter: blur(150px);
  border-radius: 233.5px;

  position: absolute;
  top: 50%;
}

.blog__section .bg__layer__1 .elem__1 {
  transform: translate(-50%, -50%) matrix(-0.58, -0.81, -0.81, 0.58, 0, 0);
}

.blog__section .bg__layer__1 .elem__2 {
  transform: translate(150%, -50%) matrix(-0.58, -0.81, -0.81, 0.58, 0, 0);
}

.blog__section .section__title {
  font-weight: 600;
  font-size: 35px;
  padding: 0.1rem 0;

  text-align: center;
  letter-spacing: -0.500211px;
}

.gradient__text {
  background: linear-gradient(180deg, #ffffff 0%, #5454d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* * {
    outline: 1px solid red !important;
} */

/* horizontal scrolling section for blog items*/
.blog__cards:not(.blog__cards__flex) {
  margin: 1rem 0;
  /* webkit mask image from 60% to 100% */
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, black 80%, transparent 100%);

  overflow: visible !important;
  padding: 1.5rem 0.5rem;
}

.blog__cards__flex {
  padding: 1.5rem 1.5rem;
  /* flex wrap */
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  align-items: center;
}

.blog__cards .flickity-viewport {
  overflow: visible !important;
}

.blog__cards::-webkit-scrollbar {
  display: none;
}

.blog__cards .blog__item {
  position: relative;
  flex: 0 0 auto;
  width: 20%;
  min-width: 300px;
  margin-right: 2rem;
  overflow: hidden;

  background: #1e1e20;
  border-radius: 14px;
  padding: 1.2rem;

  /* animate box shadow */
  transition: box-shadow 0.3s ease-in-out;
}

.blog__cards__flex .blog__item {
  margin-right: 0;
  margin: var(--rv-1);
  width: calc(24% - (var(--rv-1) * 1));
  min-width: unset;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 1068px) {
  .blog__cards__flex .blog__item {
    width: calc(31% - (var(--rv-1) * 0.3));
  }
}

@media only screen and (max-width: 734px) {
  .blog__cards__flex .blog__item {
    margin: 0;
    margin-bottom: 1rem;
    width: calc(100%);
  }
}

/* width: 23%; */

/* on hover neon outline */
.blog__cards .blog__item:hover,
.blog__cards .blog__item:focus {
  /* box-shadow: 0px 0px 20px rgba(84, 84, 212, 0.5); */
  box-shadow: 7px 9px 20px rgba(84, 84, 212, 0.5);
}

.blog__cards .blog__item a {
  text-decoration: none;
  color: #ffffff;
}

/* first child */
.blog__cards:not(.blog__cards__flex) .blog__item:first-child {
  margin-left: 10vw;
}

/* not blog__cards__flex */
/* :not(.blog__cards__flex) .blog__cards .blog__item {
  width: 25%;
  min-width: 250px;
  margin-right: 1rem;
} */

.blog__cards .blog__item:last-child {
  margin-right: 0;
}

.blog__cards .blog__item .item__image {
  width: 100%;
  height: 25vh;
  /* clamp height to 25vh */
  height: clamp(220px, 25vh, 300px);

  overflow: hidden;

  /* background gradient with using 494B56 from top left to bottom right */
  background: linear-gradient(180deg, #494b56 0%, rgb(55, 55, 63) 100%);

  border-radius: 12px;
  padding: 0.8rem;
}

.blog__cards .blog__item .item__image img {
  border-radius: 8px;
  object-fit: cover;
}

.blog__cards .blog__item .item__category {
  text-align: right;

  font-weight: 500;
  font-size: 15px;

  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.blog__cards .blog__item h3 {
  /* font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin: 0.5rem 0; */

  font-size: 20px;
  font-size: clamp(18px, 1.4vw, 19px);
}

.blog__cards .blog__item p {
  font-size: 15px;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 150%;

  margin-bottom: 2rem;
  /* min-height: 120px; */

  display: block;
  display: -webkit-box;
  line-clamp: 5;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* ********** */
/* Review Section */

.review__section {
  max-width: 100vw;
  overflow: hidden;
  padding: 5rem 0;
  /* background: #19191B; */
}

.review__section .section_title {
  font-weight: 700; /* was 600 */
  font-size: 50px;
  text-align: center;
  letter-spacing: -0.5px;
}

.review__section .review__trustpilot {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: inherit;
  color: inherit;

  font-weight: 400;
  font-size: 21px;
}

.review__section .review__trustpilot img {
  width: 28px;
  margin: 0 8px;
}

.review__section .review__slider {
  position: relative;
  min-height: 150px;

  /* display: flex;
    align-items: center;
    justify-content: center; */
  margin-bottom: 4rem;
  padding-top: 0;
  padding: 2rem 0;

  -webkit-mask-image: linear-gradient(to left, black 95%, transparent 100%);
  mask-image: linear-gradient(to left, black 95%, transparent 100%);

  /* margin-bottom: -10%; */
  z-index: 2;

  overflow: visible !important;
}

.review__section .flickity-viewport {
  overflow: visible !important;
}

.review__section .review__item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 30%;
  min-width: 250px;
  max-width: 300px;
  padding: 1rem;

  background: rgba(255, 255, 255, 0.01);
  border-radius: 15px;

  margin: 0 1rem;

  cursor: pointer;
  transition: box-shadow 0.5s ease-in-out;
}

.review__section .review__item.active,
.review__section .review__item:hover {
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.review__section .review__item .review__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 1rem;
}

.review__section .review__item img {
  object-fit: cover;
}

.review__section .review__item .review__content {
  font-weight: 500;
  font-size: 16px;
  color: #202020;
}

.review__section .review__item .review__content small {
  font-weight: 400;
  font-size: 14px;
  color: #808080;
  padding-right: 0.5rem;
}

.review__section .review__item .review__content .review__desc {
  display: none;
}

/* large review */
.review__section .review__large {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  /* min-height: 80vh; */
}

.review__section .review__large .img__large {
  position: relative;
  width: 26%;
  width: 36%;
  height: 70vh;
  height: clamp(500px, 70vh, 600px);
  /* height: 70vmin; */
}

.review__section .review__large .review__wrapper {
  position: relative;

  width: 58%;
  padding: 2rem 2rem;
  /* clamp padding */
  margin: 5rem;
  margin: 0 5rem;

  margin: 0 0;
  padding: 2rem 0;
  /* margin-left: 2rem; */
  /* margin: clamp(5rem, 6%, 7rem);
    margin-left: 2rem;
    margin-bottom: 3%; */
}

.review__section .review__large .review__text__wrapper {
  min-height: 250px;
  min-height: 37vh;

  /* margin-right: 5rem;
    padding-right: 2rem; */

  padding: 2rem 2rem;
  margin: 0;
  margin-right: 5rem;
}

.review__section .review__large .review__text {
  position: relative;

  /* width: 52%;
    padding: 2rem 2rem;
    
    margin: 5rem;
    margin: clamp(5rem, 6%, 7rem);
    margin-left: 2rem;
    margin-bottom: 3%; */
  padding: 2rem;
  /* margin: 2rem 0; */

  font-weight: 400;
  font-size: 20px;
  font-size: clamp(14px, 1.1vw, 20px);
  line-height: 180%;

  letter-spacing: 0.01em;
  color: #202020;
}

/* floating quotes */

.review__section .review__large .review__text::before,
.review__section .review__large .review__text::after {
  font-family: sans-serif;
  position: absolute;
  font-size: 7vw;

  font-weight: 700; /* was 600 */
  color: #202020;
  opacity: 0.1;
}

.review__section .review__large .review__text::before {
  content: open-quote;
  top: 0;
  left: 0;
}

.review__section .review__large .review__text::after {
  content: close-quote;
  bottom: -1rem;
  right: 0;
}

/* controls */
.review__section .slide__controls {
  position: absolute;
  bottom: 2rem;
  right: -160px;

  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.review__section .slide__controls .slide__control {
  position: relative;
  /* margin: 0 0.5rem; */
  cursor: pointer;

  width: 80px;
  height: 80px;
  background-size: 50%;
  /* background-color: #fff; */
}

/* slide__prev */
.review__section .slide__prev {
  background: url(../img/components/arrowleft.png) no-repeat center center;
}

/* slide__next */
.review__section .slide__next {
  background: url(../img/components/arrowright.png) no-repeat center center;
  margin-left: -1rem;
}

.review__section .bg__layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  z-index: -1;
}

.review__section .bg__layer .bg__elem {
  /* display: none; */

  width: 60%;
  height: 80%;

  background: linear-gradient(
    180deg,
    rgba(84, 84, 212, 0.1) 0%,
    rgba(84, 84, 212, 0.042) 100%
  );
  background: linear-gradient(
    180deg,
    rgba(84, 84, 212, 0.27) 0%,
    rgba(84, 84, 212, 0.1134) 100%
  );

  filter: blur(150px);
  border-radius: 233.5px;
  /* transform: rotate(-76.33deg);

    background: linear-gradient(180deg, rgba(84, 84, 212, 0.2) 0%, rgba(84, 84, 212, 0.084) 100%);
    filter: blur(150px);
    border-radius: 233.5px; */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-80%, -30%);
}

/* ********** */
/* Halfimg section */

.halfimg__section {
  padding-bottom: 5rem;
  padding-right: 5vw;
}

.halfimg__section .container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.halfimg__section .text {
  width: 40%;
  height: 100%;
  text-align: center;
  padding: 0 3%;

  /* bg image */
  /* background: url(../img/components/b_gradient_3.png) no-repeat center center;
    background-size: cover; */
}

.halfimg__section .text .title {
  font-weight: 700; /* was 600 */
  font-size: 48px;
  font-size: clamp(35px, 2.7vw, 46px);
}

.halfimg__section .text p {
  font-weight: 500;
  font-size: 22px;
  line-height: 38px;
  margin-bottom: 3rem;
}

.halfimg__section .text .btn {
  font-weight: 500;
  font-size: clamp(14px, 0.9vw, 18px);

  padding: 1rem 1.5rem;
  letter-spacing: -0.500211px;
}

.halfimg__section .img_section {
  width: 70%;
}

/* ********** */
/* Contact section */

.contact__section {
  padding: 0 6vw 2rem 6vw;
  margin-bottom: 0;

  /* bg img */
  background: url(../img/components/bg__deco.jpg) no-repeat bottom center;
  background-size: contain;
}

.contact__section .img_section {
  width: 27%;
}

.contact__section .text {
  width: 62%;
  padding: 0 5vw;
}

.contact__section .text .title {
  margin-bottom: 2.5rem;
  line-height: 130%;
  font-size: clamp(32px, 2.7vw, 46px);
}

.contact__section .text .btn {
  padding: 1rem 4rem;
}

/* ********** */
/* Footer */

footer {
  padding: 4rem 5vw;
  padding-bottom: 2rem;
  background: #19191b;
  color: #ffffff;

  background: url(../img/components/eclipses.png) no-repeat right center,
    #19191b;
  background-size: contain;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

footer .flex__div {
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
  font-weight: 500;
  font-size: 25px;

  width: 100%;
}

footer .flex__div.logo_cont {
  font-weight: 600;
  font-size: 36px;
}

footer .flex__div .logo {
  width: calc(125px + 2rem);
  margin-right: 2rem;
  padding-right: 2rem;

  border-right: 1px solid #ffffff;
}

footer .flex__div form {
  width: 100%;
  /* background: red; */
}

footer input.input--primary {
  border: 1px solid #ffffff;
  border-radius: 80px;
  padding: 1rem 2vw;
  text-align: center;

  width: 25%;
  width: clamp(250px, 25%, 350px);

  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  margin-right: 1rem;
}

footer button.btn--secondary {
  padding: 1rem 2vw;
  font-weight: 500;
  font-size: 16px;
}

footer .flex__div.links a {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  /* margin: 0 1rem; */

  text-decoration: inherit;
  transition: color 0.4s ease-in-out;
}

/* vartical white bar between links */
footer .flex__div.links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.8rem;
  background: #626381;
  margin: 0 1rem;
  /* margin-left: 1rem; */
}

footer .flex__div.links a:hover {
  color: var(--primary-color);
}

footer .flex__div.copyright {
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
}

/* ********** */
/* Courses Page */

/* ********** */
/* Courses tagline */
.tagline__courses.tagline__large {
  width: clamp(560px, 70%, 1250px);
}

/* ********** */
/* Courses Hero section */

/* root */
:root {
  --video-width: 680px;
  --video-width: clamp(550px, 38%, 700px);
  --video-height: calc(var(--video-width) * 0.5625);
}

.video-container {
  width: 640px;
  width: 38%;
  width: clamp(550px, 38%, 700px);

  width: var(--video-width);
  height: var(--video-height);

  border-radius: 10px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
}

.video-container .video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.video-container .bg_deco {
  z-index: -1;
  position: absolute;

  width: 100px;
  height: 100px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.video-container .bg_deco_1 {
  top: -12px;
  left: -12px;
  background: #23bdee;
}

.video-container .bg_deco_2 {
  bottom: -12px;
  right: -12px;
  background: #33efa0;
}

.play-button-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.play-button-wrapper #circle-play-b {
  cursor: pointer;
  pointer-events: auto;
}

.play-button-wrapper #circle-play-b img {
  width: 80px;
  height: 80px;
}

.courses__hero .video__hint {
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -200px;
  padding: 0;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  white-space: nowrap;

  color: #000000;
}

.courses__hero .video__hint .arrow {
  width: 80px;
  margin-bottom: 0.25rem;
  margin-left: 50%;

  /* mirror arrow */
  transform: scaleX(-1);
}

.courses__hero .courses__desc {
  padding: 3rem 0;
  font-weight: 400;
  font-size: clamp(17px, 1.3vw, 25px);
  width: 60%;
  margin: 0 auto;
  text-align: center;
}

.gradient__layer {
  background: url(../img/components/Untitled-min.png) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);

  z-index: -1;
}

/* ********** */
/* Courses Card Flex section */
.course__cards.default__section {
  padding: 2rem;
  padding-top: 0;
}

.course__cards .cards__flex:not(#course__isotope) {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* justify-content: space-between; */
}

#course__isotope {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; */
  /* justify-content: space-between; */

  overflow: hidden;
}

.course__cards .card__item {
  position: relative;
  display: block;
  text-decoration: none;

  width: 23%;
  margin: 1rem 0.5rem;
  width: calc(25% - (0.5rem * 2));
  padding: 1.5rem;
  padding: 1.2vw;

  /* margin-bottom: 2rem; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 18.83px 47.08px rgba(47, 50, 125, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;

  font-size: clamp(12px, 0.9vw, 18px);
  color: #19191b;
}

.course__cards .card__item:hover {
  transform: translateY(-10px);
}

.course__cards .card__item .img {
  height: 230px;
  height: clamp(170px, 24vh, 240px);
  margin-bottom: 1rem;
}

.course__cards .card__item .img img {
  object-fit: cover;
  border-radius: 15px;
}

.course__cards .card__item .meta {
  padding: 0.5rem 0;

  display: flex;
  justify-content: space-between;

  font-size: clamp(11px, 0.8vw, 14px);
  font-weight: 500;
}

.course__cards .card__item .meta div {
  display: flex;
  align-items: center;
}

.course__cards .card__item .meta div i {
  margin-right: 0.5rem;
}

.course__cards .card__item .title {
  padding: 0.5rem 0;
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 600;
}

.course__cards .card__item .desc {
  margin: 0.5rem 0;

  /* limit to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course__cards .card__item .institute {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #000000;

  padding-bottom: 2.5rem;
}

.course__cards .card__item .institute .logo {
  width: 50px;
}

.course__cards .card__item .institute .name {
  margin-left: 1rem;
}

.course__cards .card__item .price {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;

  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 1.2vw;
  font-size: 14px;
  padding-top: 1rem;
}

.course__cards .card__item .price .reg {
  font-size: clamp(12px, 0.9vw, 18px);
}

.course__cards .card__item .price .reg.free {
  font-weight: 300;
  font-style: italic;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.5);
}

.course__cards .card__item .price .course {
  font-size: clamp(17px, 1.3vw, 24px);
  font-weight: 700; /* was 600 */
  color: #49bbbd;
}

/* ********** */
/* Course Details */

.default__section.course__details {
  padding-top: 0;
}

.course__details .cover__img {
  position: relative;
  overflow: hidden;

  height: clamp(340px, 48vh, 460px);
}

.course__details .cover__img img.cover {
  object-fit: cover;
  border-radius: 20px;
}

.course__details .institute__fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  width: 20%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 1vw;

  background: #ffffff;
  border-radius: 0px 20px;
  font-weight: 500;
  font-size: 15px;
  font-size: clamp(10px, 0.9vw, 15px);

  color: #19191b;
}

.course__details .institute__fixed .logo {
  width: 50px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.course__details .flex__cont {
  display: flex;
  justify-content: space-between;

  padding: 2rem 0;
}

.course__details .flex__cont .title {
  font-weight: 600;
  font-size: clamp(32px, 2.5vw, 50px);
  color: #19191b;
}

.course__details .flex__cont .left {
  width: 70%;
  padding-right: 1rem;
  /* background: yellowgreen; */
}

.course__details .flex__cont .right {
  position: relative;
  width: 30%;
}

.course__details .inner__flex .left {
  /* background: violet; */
  width: 55%;
  padding-right: 1rem;
}

.course__details .inner__flex .spacer {
  height: 150px;
}

.course__details .inner__flex .right {
  width: 45%;
}

.course__details .info__card {
  /* width: 23%; */
  /* margin: 1rem 0.5rem; */
  padding: 1.5rem;
  padding: 1.4vw;

  /* margin-bottom: 2rem; */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 18.83px 47.08px rgba(47, 50, 125, 0.1);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;

  font-size: clamp(12px, 0.9vw, 18px);
  color: #19191b;
  background: #ffffff;
}

.course__details .info__card ul {
  padding-left: 2rem;
}

.course__details .info__card:not(:last-child) {
  margin-bottom: clamp(10px, 0.9vw, 1rem);
}

.course__details .info__card > div {
  margin-bottom: clamp(10px, 0.9vw, 1rem);
}

.course__details .info__card > div:last-child {
  margin-bottom: 0 !important;
}

.course__details .info__card .card__title {
  font-weight: 600;
  font-size: clamp(17px, 1.3vw, 24px);
  color: var(--primary-color);
}

.course__details .info__card .card__desc {
  margin-bottom: clamp(20px, 1.675vw, 2rem);

  font-weight: 400;
  font-size: clamp(12px, 0.9vw, 18px);
  line-height: 130%;
  color: #808080;
}

.course__details .info__card .card__desc.who_is_it_for {
  white-space: break-spaces;
}

/* course cards filter */

.filter__wrapper {
  padding: 2rem 0;
}

.course-filter ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.course-filter ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  padding: 10px 0;
  cursor: pointer;

  width: calc(25% - 2rem);

  border-radius: 20px;
  background: #fff;

  filter: grayscale(100%) contrast(1) brightness(100%);
  box-shadow: 0px 18.83px 47.08px 0px rgba(84, 84, 212, 0.42);

  transition: all 0.3s ease;

  /* disable select */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.course-filter ul li .cat__img {
  width: 16%;
  margin-right: 1rem;
  scale: 2;
}

.course-filter ul li.active {
  filter: grayscale(0%) contrast(1) brightness(100%);
}

.course-filter ul li:hover {
  filter: grayscale(0%) contrast(1) brightness(100%);
  transform: scale(1.05);
}

.course-filter ul li:active {
  transform: scale(0.95);
  transition: all 0.1s ease;
}

.course-filter ul li .text {
  width: 40%;
  margin-left: 1rem;
  text-align: center;
  font-size: var(--rv-1-125);

  font-weight: 500;
  letter-spacing: -0.657px;
}

/* info__flex */
.course__details .info__card .info__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #808080;
}

.course__details .info__card .text-center {
  text-align: center;
  color: #808080;
}

.course__details .info__card .info__flex span:nth-child(2) {
  color: #19191b;
}

.course__details .info__card .info__flex span.price {
  font-size: var(--rv-2-5);
  font-weight: 600;
}

.course__details .info__card .info__flex span.reg {
  color: rgba(0, 0, 0, 0.5);
}

.course__details .info__card .info__flex span.reg.free {
  text-decoration: line-through;
  font-style: italic;
}

/* input */
.course__details .info__card input.input--primary {
  background: #ffffff;
  border: 1px solid #ef4737;
  border-radius: 40px;

  min-height: auto;
  padding: var(--rv-1) var(--rv-2);
  text-align: center;

  width: clamp(250px, 25%, 350px);
  width: 100%;

  margin: 0;
  margin-bottom: clamp(10px, 0.9vw, 1rem);

  font-weight: 500;
  color: #202020;
}

.course__details .info__card hr {
  margin: var(--rv-2) 0;
  border-top: 1px solid #696984;
}

.course__details .info__card .btn.btn--secondary {
  width: 100%;
  padding: var(--rv-1) var(--rv-2);
  border-radius: 40px;
  font-size: clamp(12px, 0.9vw, 18px);
  display: block;
  text-align: center;
}

.course__details .info__card .card__title__l {
  font-size: var(--rv-2);
  font-weight: 600;
  margin-bottom: var(--rv-2);
}

.course__details .info__card .social__flex {
  display: flex;
}

.course__details .info__card .social__link {
  display: flex;
  justify-content: center;
  align-items: center;

  width: var(--rv-2-5);
  height: var(--rv-2-5);

  border-radius: 50%;
  background: #19191b;
  cursor: pointer;
}

.course__details .info__card .social__link:not(:last-child) {
  margin-right: var(--rv-0-5);
}

.course__details .info__card .social__link i {
  font-size: var(--rv-1-5);
  color: #ffffff;
}

/* ********** */
/* Course Info Cards flex */
.course__info__cards {
  background: #ef4737;

  /* background gradient from top to bottom to white */
  background: linear-gradient(180deg, #ef46372a 0%, rgba(239, 71, 55, 0) 100%),
    #ffffff;
  background: linear-gradient(180deg, #ef46372a 0%, rgba(239, 71, 55, 0) 100%),
    #ef46370a;

  mix-blend-mode: normal;
  /* opacity: 0.1; */
}
.course__info__cards .card__item {
  background: #ffffff;
}

.course__info__cards .section__info {
  font-size: var(--rv-1-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;

  padding: 2rem 0.75rem;
  padding-bottom: 0.5rem;
}

.course__info__cards .section__info a {
  text-decoration: none;
  font-weight: 700; /* was 600 */
}

/* ********** */
/* About Us Lecturers Page */

/* About us / Lecturers hero */

:root {
  --clip-height: clamp(500px, 62vmin, 1000px);
}

.default__section.hero__dark {
  overflow: hidden;

  clip-path: ellipse(130px 140px at 10% 20%);
  clip-path: ellipse(100vw 100% at 50% 20%);
  clip-path: ellipse(90vw 82% at 50% 20%);
  clip-path: ellipse(90vw 62vmin at 50% 20%);
  clip-path: ellipse(90vw at 50% 20%);
  clip-path: ellipse(90vw 62vmin at 50% 20%);
  clip-path: ellipse(90vw 63vmin at 50% 20%);
  clip-path: ellipse(90vw clamp(400px, 63vmin, 650px) at 50% 20%);

  color: #ffffff !important;

  min-height: 90vh;
}

/* divices with aspect ratio 1.25 */
@media (max-aspect-ratio: 1.25/1) {
  .default__section.hero__dark {
    clip-path: ellipse(90vw clamp(400px, 63vmin, 450px) at 50% 20%);
    min-height: auto;
  }
}

.hero__dark .flex__container {
  align-items: flex-start;
}

.hero__dark .cont__left {
  padding-top: 8%;
  width: 50%;
}

.hero__dark .cont__right {
  width: 47%;
}

.hero__dark .hero__title {
  font-size: clamp(35px, 2.8vw, 54px);
  line-height: 150%;
}

.hero_section.hero__dark .bg__layer {
  background: url(../img/components/home-min-1.jpg) no-repeat center center;
  background-size: cover;

  -webkit-mask-image: unset;
  mask-image: unset;
}

/* scroll__down */
.scroll__down {
  position: absolute;
  bottom: 12.9%;
  left: 50%;
  transform: translateX(-50%);

  color: #ffffff;
  cursor: pointer;

  display: flex;
  flex-direction: column;
  align-items: center;

  font-weight: 500;
  font-size: var(--rv-0-5);
  font-size: 0.7vw;
  font-size: clamp(9px, 0.7vw, 12.99px);
  letter-spacing: 0.125em;
  text-transform: uppercase;

  /* animation */
  animation: scroll__down 1.5s ease-in-out infinite;
  -webkit-animation: scroll__down 1.5s ease-in-out infinite;
}

.scroll__down .img {
  width: 34px;
  padding-bottom: 1rem;
}

.scroll__down:hover {
  color: #ffffff;
}

@keyframes scroll__down {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }

  100% {
    transform: translateX(-50%) translateY(0);
  }
}

/* ********** */
/* Our Success Section */
.our__success {
  color: #1e1e20;
  text-align: center;
}

.our__success .title {
  font-weight: 700; /* was 600 */
  font-size: var(--rv-3);
}

.our__success .desc {
  font-weight: 500;
  font-size: 25px;
  font-size: var(--rv-1-5);
  line-height: 130%;
  width: 66%;
  margin: 0 auto;
}

.our__success .box__wrapper {
  /* height: auto; */
  position: relative;
  margin-top: 5%;
  width: 65%;
  min-width: 700px;
  margin: 4rem auto;
}

.our__success .max__wrapper {
  position: relative;

  width: 45%;
  min-width: 400px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  /* position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;

            display: flex;
            justify-content: center;
            align-items: center; */
}

.our__success .max_mayfield {
  width: 55%;
  margin-top: -60%;
  /* margin-bottom: -50%; */
  /* max-width: 500px; */

  animation: floating 3s ease-in-out infinite;
  -webkit-animation: floating 3s ease-in-out infinite;
}

.our__success .stat_item {
  font-weight: 500;
  font-size: 25px;
  font-size: var(--rv-1-5);

  text-align: center;
  color: #19191b;

  position: absolute;
}

.our__success .stat_item .num {
  background: linear-gradient(90deg, #5454d4 0%, #ef4737 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;

  font-weight: 600;
  font-size: var(--rv-6);
}

.our__success .stat_item.item__1 {
  top: 0;
  left: 0;
}

.our__success .stat_item.item__2 {
  top: 0;
  right: 0;
}

.our__success .stat_item.item__3 {
  bottom: 30%;
  left: 0;
}

.our__success .stat_item.item__4 {
  bottom: 30%;
  right: 0;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

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

/* ********** */
/* Our lecturers section */

section.default__section.our__lecturers {
  padding: 3vh 0;
  position: relative;
}

.our__lecturers .title {
  font-weight: 700; /* was 600 */
  font-size: 50px;
  font-size: var(--rv-3);
  text-align: center;
  color: #e7e7e7;
}

.our__lecturers .title span {
  background: linear-gradient(180deg, #5454d4 0%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.our__lecturers .lecturers_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.our__lecturers .lecturers_flex .lecturer {
  width: 24%;
  min-width: 300px;
  background-color: #1e1e20;
  border-radius: 14px;

  margin: var(--rv-1-5);
  padding: var(--rv-1-5);
  margin-top: 0;

  font-weight: 500;
  font-size: var(--rv-1-125);
  line-height: 130%;
  text-align: center;
  color: #ffffff;

  transition: box-shadow 0.4s ease-in-out;
}

/* on hover neon outline */
.our__lecturers .lecturers_flex .lecturer:hover {
  box-shadow: 0px 0px 35px rgba(84, 84, 212, 0.5);
}

.our__lecturers .lecturers_flex .lecturer > div:not(:last-child) {
  margin-bottom: var(--rv-1);
}

.our__lecturers .lecturers_flex .lecturer .img {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.our__lecturers .lecturers_flex .lecturer .img img {
  object-fit: cover;
}

.our__lecturers .lecturers_flex .lecturer .name {
  font-weight: 600;
  font-size: var(--rv-1-5);
}

.our__lecturers .lecturers_flex .lecturer .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--rv-1);
}

.our__lecturers .lecturers_flex .lecturer .logos .logo_item {
  width: 40px;
  height: 40px;
  margin: 0 var(--rv-0-5);
}

.our__lecturers .bg__layer__1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #19191b;
  z-index: -1;
}

.our__lecturers .bg__layer__1 .bg__elem {
  width: 50%;
  height: 80%;

  background: linear-gradient(
    180deg,
    rgba(84, 84, 212, 0.2) 0%,
    rgba(84, 84, 212, 0.084) 100%
  );
  filter: blur(150px);
  border-radius: 233.5px;

  position: absolute;
  top: 50%;
}

.our__lecturers .bg__layer__1 .elem__1 {
  transform: translate(-50%, -50%) matrix(-0.58, -0.81, -0.81, 0.58, 0, 0);
}

.our__lecturers .bg__layer__1 .elem__2 {
  transform: translate(150%, -50%) matrix(-0.58, -0.81, -0.81, 0.58, 0, 0);
}

/* ********** */
/* Login Register Auth Page */

.main.auth__section {
  background: linear-gradient(
      117.86deg,
      #fb9600 -3.22%,
      rgba(188, 21, 27, 0.25) 38.4%,
      rgba(255, 255, 255, 0) 71.22%
    ),
    #ffffff;
}

section.default__section.auth__section {
  padding: 0 5vw;
}

.auth__section .flex__container {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;

  min-height: 100vh;
  min-height: calc(100vh - 110px);
  margin: 0;
}

.auth__section .flex__container .right {
  width: 42%;
  width: 37%;
  margin-right: 5vw;
  margin-left: 3vw;
}

.auth__section .flex__container .left {
  width: 54%;
  padding: 0 4vw;
  padding-right: 4vw;
}

.auth__section .bg_ribbon {
  width: 50%;
  height: 100%;
  /* height: calc(100vh - 110px); */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  /* background bottom */
  background: url("../img/components/bottom_ribbon.png") no-repeat center bottom;
  background-size: contain;
}

.auth__section .flex__container .lucky-cat-stars {
  width: 100%;
}

.auth__section .bg-cat-img {
  position: fixed;
  width: 100%;
  height: 90vh;
  margin-top: 5vh;
  background: url(../img/misc/lucky-cat.png) no-repeat center right;
  background-size: cover;
  left: 0;
}

/* form styles */

.auth__section .right {
  width: 42%;

  padding: 2vw;
  margin: 1rem 0;
  /* margin: 1rem 8vw 1rem 0; */
  background: #f7fafc;
  box-shadow: 10px 45px 68px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  text-align: center;
  /* margin-right: 8vw; */
}

.auth__section .form-title {
  font-weight: 700; /* was 600 */
  font-size: 40px;
  font-size: 2.1vmax;
  font-size: var(--rv-1-5);
}

.auth__section .form-selector {
  position: relative;
  border-radius: 33px;
  background: rgba(239, 71, 55, 0.5);

  width: 50%;
  margin: 1.5rem auto;
  display: flex;
  justify-content: space-between;
  font-size: var(--rv-1);
  color: #fff;
  text-align: center;
  font-weight: 500;

  padding: var(--rv-0-5);
  -webkit-tap-highlight-color: transparent;
  /* padding: var(--rv-0-75); */
}

.auth__section .form-selector .selection {
  width: 50%;
  padding: var(--rv-0-75);
  border-radius: 20px;
  cursor: pointer;
  z-index: 6;
}

.auth__section .form-selector .indicator {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;

  /* background: #EF4737; */
  /* padding: var(--rv-0-5) calc(var(--rv-0-75) + var(--rv-0-5)); */
  /* padding: var(--rv-0-5) var(--rv-0-75); */
  padding: var(--rv-0-5);
  cursor: pointer;
  z-index: 4;
}

.auth__section .form-selector .indicator .inner {
  border-radius: 20px;
  height: 100%;
  width: 50%;
  padding: var(--rv-0-75);
  background: #ef4737;
  color: #ef4737;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.auth__section form.form {
  display: block;
  width: 100%;

  /* padding: 1rem;
  padding: 2vw;
  margin: 1rem 8vw 1rem 0; */
  text-align: center;
}

.auth__section .form > div {
  margin-bottom: 1rem;
}

/* last child */
.auth__section .form > div:last-child {
  margin-bottom: 0;
}

.auth__section .form .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.auth__section .form .form-logo {
  width: 50%;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.auth__section .form .form-desc {
  font-weight: 400;
  font-size: var(--rv-1);
  color: rgba(48, 48, 48, 0.431);
}

.auth__section .form-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.auth__section .form-row .form-group {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

/* second child */
.auth__section .form-row .form-group:nth-child(2) {
  margin-left: 0.5rem;
}

.auth__section .form-group {
  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
}

.auth__section .form-group label {
  position: relative;
  width: 100%;
}

.auth__section .form-group label input {
  font-size: var(--rv-1);
  background: transparent;
  padding: 1rem 1.2rem;
  padding: var(--rv-1) var(--rv-1-25);
  width: 100%;

  border: 2px solid rgba(0, 0, 0, 0.21);
  border: 2px solid rgba(239, 70, 55, 0.21);
  border-radius: 40px;

  transition: border-color 0.2s;
}

/* type password */
.auth__section .form-group label input[type="password"],
.auth__section .form-password.form-group label input {
  padding: 1rem 3.2rem 1rem 1.2rem;
  padding: var(--rv-1) var(--rv-1-25);
  padding-right: 3.2rem;
}

.auth__section .form-group label input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.auth__section .form-group label p {
  margin: 0;
  /* color: #f9f9f9; */
  font-size: 1rem;
  font-size: var(--rv-1);
  user-select: none;

  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  margin-left: 0.8rem;
  margin-left: 1rem;
  padding: 0 0.4rem;

  background: #f7fafc;

  transition: top 0.2s, font-size 0.2s, color 0.2s;
}

.auth__section .form-group label .password-icon {
  display: flex;
  align-items: center;

  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  width: 1.2rem;

  /* color: #f9f9f9; */
  transition: color 0.2s;
}

.auth__section .form-group label .password-icon .feather-eye-off {
  display: none;
}

.auth__section .form-group label .password-icon:hover {
  cursor: pointer;
  color: var(--primary-color);
}

.auth__section .form-group label input:focus + p,
.auth__section .form-group label input:not(:placeholder-shown) + p {
  top: 0;
  font-size: 0.9rem;
  font-size: var(--rv-0-75);
  color: #000000;
}

.auth__section .form-group label input:not(:focus) + p {
  color: #7a7a7a56;
}

.auth__section .form-group .btn {
  padding: var(--rv-1);
  font-size: var(--rv-1);
}

/* auth section country code select */

.form-group-alt label {
  display: block;
  font-size: var(--rv-1);
  padding-left: 0.25rem;
  color: rgba(48, 48, 48, 0.431);
  padding-bottom: 0.25rem;
}

.formInput.twoFlex {
  width: 100%;
  display: flex;
  align-items: center;
  transition: background-color 0.3s ease-in-out 0s;
  padding: 0.5rem 0.75rem;
  /* background-color: hsl(0, 0%, 10%);
  background-color: #FFFFFF; */
  min-height: 3rem;
  font-size: var(--rv-1);
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;

  border: 2px solid rgba(0, 0, 0, 0.21);
  border: 2px solid rgba(239, 70, 55, 0.21);
  border-radius: 40px;
}

.formInput.twoFlex input {
  padding: 0 !important;
  min-height: auto !important;
  width: 100% !important;

  font-size: var(--rv-1);
  background: transparent;
  padding: 1rem 1.2rem;
  padding: var(--rv-1) var(--rv-1-25);
  width: 100%;
  border: none;
  outline: none;
  /* border: 2px solid rgba(0, 0, 0, 0.21);
  border: 2px solid rgba(239, 70, 55, 0.21);
  border-radius: 40px; */
}

.formInput.twoFlex select {
  height: 100%;
  opacity: 0;
  width: 74px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  border: 1px solid transparent;
  border: 1px solid transparent;
  font-size: 0.875rem;
  border-radius: 0px;
  appearance: none;
  padding: 5px;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  outline: none;
  -webkit-appearance: none;
}

.formInput.twoFlex .telPrefix {
  pointer-events: none;
  position: absolute;
  width: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ********** */
/* Payment Confirm */

.default__section.payment__confirm {
  /* max-width: 800px; */
  width: 40vw;
  min-width: 500px;
  margin: 0 auto;
  padding-top: 5rem;
}

.default__section.payment__confirm .container {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem 0;
  padding-top: 0;

  position: relative;
  text-align: center;
}

.default__section.payment__confirm .container .inner {
  padding: 0 2rem;
}

.payment__confirm .success-icon {
  text-align: center;
  font-size: var(--rv-3);
  /* margin-top: calc(var(--rv-6) * -0.5); */
  margin-top: calc(var(--rv-3) * -0.75);
  padding-bottom: 1rem;
}

.payment__confirm .success-icon i {
  padding: 1rem;
  background-color: #4bb543;
  border-radius: 50%;
  color: #fff;
}
.payment__confirm .success-icon.bg-danger i {
  background-color: #ef4737;
}

.payment__confirm .title {
  font-size: var(--rv-1-5);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.payment__confirm hr {
  margin-top: 2rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 0;
}

.payment__confirm p {
  font-size: var(--rv-1);
  font-weight: 400;
  margin: 0;
  margin-bottom: 1rem;
  padding: 0 3rem;
}

.payment__confirm .highlight-text {
  margin-top: -1rem;
  margin-bottom: 1.5rem;
}

.payment__confirm .highlight-text span {
  font-size: var(--rv-0-8);
  background: #f5f5f5;
  /* background: #ef4737; */
  padding: 0.5rem 1rem;
  border-radius: 15px;
}

.payment__confirm .dropdown {
  margin-bottom: 0.75rem;
}

.payment__confirm select {
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  /* padding: 0.5rem; */
  font-size: var(--rv-0-8);
  /* text-align: center; */

  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='grey' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 98%;
  background-position-y: 0.4rem;

  /* border: 2px solid rgba(239, 70, 55, 0.21); */
  border: 2px solid #f5f5f5;
  border: 1px solid #d1d1d1;
  border-radius: 10px;

  width: 60%;
  appearance: none;

  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;

  outline: none;
  -webkit-appearance: none;
}

.payment__confirm .btn--secondary,
.payment__confirm .btn--primary {
  font-size: var(--rv-0-8);
  border-width: 1.5px;
  font-weight: 400;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  width: 60%;
}

/* ********** */
/* Contact Us Page */

section.contact__form {
  padding: 5vh 5vw;
  background: #19191b;
  color: #ffffff;
}

.contact__form .title {
  font-weight: 700;
  font-size: 50px;
  font-size: var(--rv-3);
  text-align: center;
  color: #e7e7e7;
}

.contact__form .title span {
  background: linear-gradient(180deg, #ef4737 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__form .flex__div {
  /* width: 60vw; */
  margin: 0 auto;
  width: clamp(650px, 60vw, 1000px);
  display: flex;
  justify-content: center;
}

.contact__form .flex__div .flew__row {
  width: 50%;
  padding: 0 1rem;
}

.contact__form .form-group {
  margin-bottom: var(--rv-1-5);
}

.contact__form .form-group label {
  display: block;
  padding-bottom: var(--rv-0-75);
  font-size: var(--rv-0-8);
  padding-left: var(--rv-0-75);
}

.contact__form .form-group input::-webkit-outer-spin-button,
.contact__form .form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.contact__form .form-group .btn {
  padding: var(--rv-1);
  font-size: var(--rv-1);
}

.contact__form .form-group input,
.contact__form .form-group textarea {
  font-size: var(--rv-1);
  background: transparent;
  padding: 1rem 1.2rem;
  padding: var(--rv-1) var(--rv-1-25);
  width: 100%;

  border: 2px solid rgba(0, 0, 0, 0.21);
  border: 2px solid rgba(239, 70, 55, 0.21);
  border-radius: 40px;
  color: #ffffff;

  transition: border-color 0.2s;
}

.contact__form .form-group textarea {
  padding: var(--rv-1-5) var(--rv-1-25);
  resize: vertical;
}

.contact__form .form-group input:focus,
.contact__form .form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

section.contact__methods {
  padding: 5vh 5vw;
  padding-top: calc(5vh + var(--rv-1-5));
}

.contact__methods .flex__div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contact__methods .flex__row {
  width: 20%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--rv-1-5);
}

.contact__methods .flex__row .icon {
  font-size: var(--rv-2-5);
  padding: var(--rv-1);
  background-color: #eee;
  border: 1px solid #eee;
  border-radius: 50%;
  color: var(--primary-color);

  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--rv-1);
}

.contact__methods .flex__row .content {
  font-size: var(--rv-0-8);
}

.contact__methods .flex__row .content .title {
  font-size: var(--rv-1);
  font-weight: 700;
  padding-bottom: var(--rv-0-5);
}

.contact__methods .flex__row .content a {
  color: #5b5b5b;
  text-decoration: none;
  display: block;
  padding-bottom: var(--rv-0-5);
}

.contact__methods .flex__row .content a:hover {
  color: var(--primary-color);
}

/* ********** */
/* Blog Page */

.blog__details .cover__img {
  position: relative;
}

.blog__details .cover__img .overlay {
  /* grey overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  backdrop-filter: blur(4px);
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 5vh 30%;
  text-align: center;

  color: #fff;
}

.blog__details .cover__img .overlay .title {
  font-size: var(--rv-2);
  font-weight: 600;
  margin-bottom: 1rem;
}

.blog__details .cover__img .overlay .desc {
  font-size: var(--rv-1);
  margin-bottom: 1rem;

  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog__content {
  width: clamp(800px, 80vw, 1200px);
  margin: 0 auto;
}

.blog__content a {
  transition: all 0.2s ease-in-out;
}
.blog__content a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ********** */
/* course details bank transfer model modal */

.bank-transfer-model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;
}

.bank-transfer-model .container .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem;
  cursor: pointer;
  font-size: var(--rv-1-5);
}

.bank-transfer-model .container .close-btn:hover {
  color: var(--primary-color);
}

.bank-transfer-model .title {
  text-align: center;
  font-size: var(--rv-1-5);
  font-weight: 600;
  margin-bottom: 1rem;
}

.bank-transfer-model .flex__div {
  display: flex;
  flex-direction: column;
}

.bank-transfer-model .flex__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--rv-0-5);
}

/* secdon child */
.bank-transfer-model .flex__row div:nth-child(2) {
  text-align: end;
  font-weight: bold;
}

.bank-transfer-model .container {
  position: relative;
  width: 40vw;
  width: clamp(400px, 40vw, 500px);
  max-width: 92vw;
  background-color: #fff;
  padding: 2rem;
  border-radius: 15px;
  font-size: var(--rv-1-new);

  max-height: calc(100vh - 2rem);
  margin: 1rem 0;
  overflow: auto;
}

.bank-transfer-model .btn--secondary {
  padding: var(--rv-1) var(--rv-2);
  border-radius: 40px;
  font-size: clamp(12px, 0.9vw, 18px);
}

.bank-transfer-model .bg {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  cursor: pointer;
}

.btn.payment-method {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  /* justify-content: center; */
}

.course__details .info__card .btn.place-order-reveal-inner {
  width: 100%;
  padding: var(--rv-0-75) var(--rv-2);
  border-radius: 20px;
  font-size: var(--rv-1);
  display: block;
  text-align: center;
}

.btn.payment-method {
  font-size: var(--rv-1);

  border-color: black;
  border-color: gray;
}

.btn.payment-method:hover {
  color: #fff;
  background-color: gray;
  border-color: gray;
}

.btn .inline_img {
  display: inline-block;
  width: 100px;
  margin-left: 10px;
}
.custom-table {
  border-collapse: separate !important;
  border-spacing: 0 0.5rem !important;
  font-size: var(--rv-1-new);
}

.custom-action-btn {
  cursor: pointer;
}

.custom-table tr td {
  text-align: center;
  /* padding: 0.75rem 0; */
  vertical-align: middle;

  background: #e9ecef;
}

.custom-table tr td:first-child {
  border-radius: 10px 0 0 10px;
}

.custom-table tr td:last-child {
  border-radius: 0 10px 10px 0;
}

.custom-table tbody tr {
  background: #e9ecef;
  border-radius: 10px;
  margin: 1rem 0;

  background: #e9ecef;
  border-radius: 10px;
}

.custom-table tbody tr.ui-sortable-helper {
  background: #babcbe;
}

.custom-table tr.ui-sortable-helper td {
  background: #babcbe;
}

.custom-table tr td .fa-bars {
  cursor: move;
}

.custom-table th {
  font-weight: 500;
}

.custom-table th.noSort::after,
.custom-table th.noSort::before {
  display: none !important;
}

.custom-table td .preview-img {
  cursor: pointer;
  height: 130px;
  width: 200px;
  border-radius: 20px !important;
  margin: 0.75rem auto;
}

.custom-table td .promotion-link {
  text-align: center;
  display: block;
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 auto;
}

.custom-table td .preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px !important;
}

.custom-table td .preview-img.preview-img-small {
  height: 50px;
  width: 100px;
  display: block;
}

.custom-table td .preview-img.preview-img-small img {
  object-fit: contain;
  border-radius: 0 !important;
  /* border-radius: 10px !important; */
}

/* ********** */

/* student dashboard sidebar */
#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  margin: 1rem;
  height: calc(100vh - 2rem);
  border-radius: 10px;
}

#sidebar .sidebar__logo {
  padding: 0 1rem;
  /* margin-top: 60px; */
  margin-bottom: 1.5rem;
}

#sidebar .sidebar__logo img {
  width: 100%;
}

#sidebar .sidebar__list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#sidebar .sidebar__list ul li {
  margin-bottom: 10px;
}

#sidebar .sidebar__list ul li a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: var(--rv-1);
  font-weight: 500;
  padding: 0.75rem 1.25rem;

  border-radius: 10px;
  transition: all 0.3s ease-in-out;

  /* display: flex;
      align-items: center; */
}

#sidebar .sidebar__list ul li i {
  margin-right: 0.5rem;
}

#sidebar .sidebar__list ul li.active a,
#sidebar .sidebar__list ul li a:hover {
  color: #fff;
  background-color: yellowgreen;
  /* background-color: #C381FF; */
  background-color: #ef4637da;

  /* shadow bottom right */
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

#sidebar .fixed__bottom {
  font-size: 0.8rem;
  color: #000;
  text-align: center;
}

#sidebar .fixed__bottom a {
  width: 50%;
  margin: 0 auto;
  color: #000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  font-size: var(--rv-1-new);
  opacity: 0.6;
}

#sidebar .fixed__bottom a:hover {
  color: #000;
}

#sidebar .spacer {
  flex-grow: 1;
}

/* dashboard content */
.dashboard .content {
  margin: 1rem 1rem 1rem calc(var(--sidebar-width-actual) + 0.75rem);
  /* background-color: yellowgreen; */
  width: (100vw - var(--sidebar-width-actual));
  /* height: 50vh; */
  /* border: 2px solid red; */

  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); */
  border-radius: 10px;
  overflow: hidden;
}

.dashboard .content-inner {
  width: 100%;
  height: 100%;
  margin: 1rem;
  /* border: 2px solid red; */
}

/* student dashboard */
.dashboard .course-item {
  display: block;
  text-decoration: none;
  color: #000;
  margin-bottom: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  max-width: 600px;
}

.dashboard .course-item .flex-cont {
  display: flex;
  align-items: center;
  padding: 1rem;
  position: relative;
}

.dashboard .course-item .flex-cont .course-img {
  position: absolute;
  inset: 1rem;
  width: 150px;
  border-radius: 10px;
  overflow: hidden;
}

.dashboard .course-item .flex-cont .course-img img {
  object-fit: cover;
}

.dashboard .course-item .flex-cont .course-details {
  width: calc(100% - 150px);
  margin-left: 150px;
  flex-grow: 1;
  font-size: var(--rv-1);
  padding-left: 1rem;
}

.dashboard .course-item .flex-cont .course-details .course-title {
  font-weight: 600;
}

/* .dashboard .course-item .flex-cont .course-details .course-accordion {
display: flex;
flex-direction: column;
font-size: var(--rv-1);
margin-top: 0.5rem;
} */

.dashboard .course-item .flex-cont .course-details .course-accordion > div {
  /* width: 80%; */
  font-size: var(--rv-1-new);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
  border-radius: 5px;
  /* border: 1px solid #ccc; */
  padding: 0.2rem 0.5rem;
  /* background: #ffeaa7; */
}

.dashboard .course-item .flex-cont .course-details .course-accordion div span {
  font-weight: 600;
}

.dashboard .course-item .course-details .status {
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
}

.dashboard .course-item .course-accordion > div.pending {
  background: #ffeaa7;
}

.dashboard .course-item .course-accordion > div.completed {
  background: #5cb85c;
  color: #fff;
}

.dashboard .course-item .course-accordion > div.rejected {
  background: #ff7675;
  color: #fff;
}

/* 

EEEEEE    GGGGG    OOOO      SSSSS   U    U   RRRRR    FFFFF    
EE       GG       OO  OO    S        U    U   R    R   F        
EEEE     GG  GGG  OO  OO     SSS     U    U   RRRRR    FFFFF    
EE       GG   GG  OO  OO        S    U    U   R   R    F        
EEEEEE    GGGGG    OOOO     SSSSS     UUUU    R    R   F        

*/

/* ********** */
/* Responsive */

/* larger than 734px */
@media only screen and (min-width: 734px) {
  .m--only {
    display: none !important;
  }
}

/* IPads and tablets */
@media only screen and (max-width: 1068px) {
  /* header .header__list {
    display: none;
  } */

  .hero_section .hero__title {
    font-size: clamp(20px, 2.7vw, 48px);
  }

  .hero_section .hero__desc {
    font-size: 16px;
  }

  /* ********** */
  /* course details */

  .course__cards .card__item {
    width: 31%;
  }

  .course__cards .card__item .img {
    height: clamp(170px, 15vh, 240px);
  }

  .course__details .cover__img {
    height: clamp(160px, 20vh, 240px);
  }

  .course__details .institute__fixed {
    color: #19191b;
    padding: 0.5rem 0.75rem;
    width: 30%;
  }

  .course__details .institute__fixed .logo {
    width: 20px;
    margin-right: 0.5rem;
  }

  /* about us lecturers page */
  .hero_section .hero__desc {
    line-height: 150%;
  }

  .our__lecturers .lecturers_flex .lecturer {
    width: 28.5%;
    min-width: auto;
  }

  .default__section.hero__dark {
    clip-path: ellipse(90vw 38vmin at 50% 20%);
    clip-path: ellipse(90vw clamp(300px, 38vmin, 450px) at 50% 20%);
    min-height: auto;
  }
}

/* Mobile */
@media only screen and (max-width: 734px) {
  :root {
    --rv-1: clamp(11px, 0.9vw, 1rem);
    --rv-2: clamp(20px, 1.675vw, 2rem);
    --rv-3: clamp(30px, 2.45vw, 3rem);

    --rv-5: clamp(50px, 4.225vw, 5rem);
    --rv-6: clamp(60px, 4.9vw, 6rem);

    --rv-1-125: clamp(12px, 0.9vw, 18px);
    --rv-1-25: clamp(14px, 1.1vw, 20px);
    --rv-1-5: clamp(17px, 1.35vw, 1.5rem);
    --rv-2-5: clamp(25px, 2.225vw, 2.5rem);

    --rv-0-5: clamp(5px, 0.45vw, 0.5rem);
    --rv-0-75: clamp(7px, 0.675vw, 0.75rem);
    --rv-0-8: clamp(10px, 0.75vw, 0.8rem);
  }

  /* .m--only {
    display: initial;
  } */

  .m--none {
    display: none;
  }

  .btn--primary {
    background: var(--primary-color);
    color: #ffffff;
  }

  .btn--primary:hover {
    background: #ffffff;
    color: var(--primary-color);
  }

  /* hero section */

  .hero_section .flex__container {
    flex-direction: column;
  }

  .hero_section .cont__left {
    width: 100%;
    text-align: center;
  }

  .hero_section .hero__title {
    width: 90%;
    margin: 0 auto;
    padding-top: 20px;
  }

  .hero_section .hero__img.m--only {
    margin: 1rem 0;
  }

  .hero_section .hero__trustpilot {
    justify-content: center;
  }

  /* tagline */
  .tagline__large,
  .tagline__courses.tagline__large {
    width: 90%;
    font-size: 5vw;
  }

  .tagline__large .img__block {
    width: 15%;
  }

  /* apple grid */

  .apple__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(365px, 34vh, 500px);
    grid-auto-rows: 170px;

    grid-gap: 0.7rem;
    grid-column-gap: 0.5rem;
  }

  .apple__grid .grid__item {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
    border-radius: 20px;
  }

  .apple__grid .grid__item.m-2-rows {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .apple__grid .grid__item.m-1-row {
    grid-row: span 1 !important;
  }

  .apple__grid .gradient__title {
    margin-top: 1.5rem !important;
    font-size: clamp(22px, 6vw, 30px);
    font-size: 25px;
  }

  .apple__grid .bottom__image {
    width: 56%;
  }

  .apple__grid .grid__item.bg__student .bottom__text {
    font-size: 18px;
  }

  .apple__grid .grid__item.bg__aurora .text__aurora {
    font-size: 5vw;
    padding: 1rem 0.5rem;
    line-height: 1.5;
  }

  .apple__grid .grid__item.cont__lecs .gradient__title {
    font-size: 5vw;
    line-height: 1.5;
    padding: 1rem 1.25rem;
    margin-top: 0 !important;
  }

  .apple__grid .grid__item.cont__lecs .play-btn {
    margin: 0 0.6rem 0.6rem 0;
  }

  .apple__grid .grid__item.cont__portal,
  .apple__grid .grid__item.cont__panel {
    padding: 1rem;
  }

  .apple__grid .grid__item.cont__portal .cell__title {
    font-size: 5vw;
    /* margin-bottom: 0.5rem; */
  }

  .apple__grid .grid__item.cont__portal .cell__title span {
    font-weight: 400;
    font-size: 3vw;
  }

  .apple__grid .grid__item.cont__panel .cell__title {
    margin-top: 1rem !important;
    font-size: 5.5vw;
  }

  /* section take control */

  /* .default__section.section__take__control {
    margin: 0;
    padding: 5rem 5vw;
  } */

  .container__take__control {
    padding-bottom: 2rem;
  }

  .container__take__control .btn--secondary {
    font-size: 2.5vw;
    padding: 0.5rem 0.5rem;
  }

  .decor {
    z-index: -1;
  }
  .decor.top__left {
    top: -2rem;
    top: 0rem;
    left: 1rem;
  }

  .decor.bottom__left {
    bottom: -1rem;
    bottom: 0rem;
    left: 5rem;
  }

  .decor.center__right {
    top: -4rem;
    top: 0rem;
    left: 50%;
    transform: translate(-50%, 0%);
  }

  /* review section */

  .review__section {
    padding-bottom: 0;
    margin-bottom: 2rem;
  }

  .review__section .section_title {
    font-size: 6vw;
    padding: 0 1.5rem;
    margin-bottom: 0.5rem;
  }

  .review__section .review__trustpilot {
    font-weight: 400;
    font-size: 15px;
  }

  .review__section .review__large .review__wrapper {
    width: 100%;
    padding: 1rem 0;
    padding-top: 0;
  }

  .review__section .review__large .review__text__wrapper {
    margin: 0;
    padding: 1rem;
    min-height: auto;
  }

  .review__section .review__large .review__text {
    font-size: 12px;
    line-height: 1.6;
  }

  .review__section .review__large .review__text::before,
  .review__section .review__large .review__text::after {
    font-size: 25vw;
  }

  .review__section .review__large .review__text::before {
    top: -3rem;
  }

  .review__section .review__large .review__text::after {
    bottom: -5rem;
  }

  .review__section .review__slider {
    margin-bottom: 0;
  }

  .review__section .review__item .review__img {
    width: 50px;
    height: 50px;
    margin-right: 0.5rem;
  }

  .review__section .review__item {
    min-width: 210px;
    padding: 1rem 0.5rem;
  }

  .review__section .review__item .review__content {
    padding-right: 0.25rem;
  }
  .review__section .review__item .review__content .review__title {
    font-size: 14px;
    margin-bottom: 0.25rem;
  }

  .review__section .review__item .review__content small {
    width: 100%;
    display: block;
    font-size: 10px;
    padding-right: 0.25rem;
  }

  .halfimg__section {
    padding: 0;
    padding-bottom: 5rem;
  }

  .halfimg__section .container {
    flex-direction: column;
  }

  .halfimg__section .text {
    width: 100%;
    padding: 0 1rem;
  }

  .halfimg__section .text .title {
    font-size: 7vw;
  }

  .halfimg__section .text p {
    font-size: 4.5vw;
    margin: 0.25rem 0;
    margin-bottom: 1rem;
  }

  .halfimg__section .text .btn {
    font-size: clamp(14px, 0.9vw, 18px);
    padding: 0.5rem 1rem;
  }

  .halfimg__section .img_section {
    margin-top: 2rem;
    width: 100%;
    padding: 0 1rem;
  }

  .halfimg__section .img_section img {
    border-radius: 20px;
  }

  /* contact section */
  .contact__section {
    padding: 0 6vw 2rem 6vw;
    margin-bottom: 0;

    background: url(../img/components/bg__deco_2.jpg) no-repeat bottom center;
    background-size: contain;
    padding-bottom: 1.5rem;
  }

  .contact__section .text {
    width: 100%;
    padding: 0 2rem;
  }

  .contact__section .text .title {
    margin-bottom: 1.75rem;
    font-size: 5.7vw;
  }

  .contact__section .img__flex {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact__section .img__flex a.img {
    position: relative;
    width: 45%;
    margin-left: -45%;
  }

  .contact__section .img__flex .text {
    height: auto;
    position: absolute;

    top: 50%;
    transform: translateY(-50%);
    right: -110%;

    padding: 0;
    font-weight: 600;
    font-size: 15px;
    text-align: left;

    white-space: nowrap;
    color: #000000;
  }

  .contact__section .img__flex .text .arrow {
    width: 50%;
    margin-bottom: 0.25rem;
    margin-left: -1.5rem;
  }

  /* footer */
  footer {
    padding: 2rem 5vw;
  }

  footer .flex__div {
    font-size: 15px;
  }

  footer .flex__div .logo {
    width: calc(50px + 2rem);
    padding-right: 1rem;
    margin: 0 1rem;

    border-right: 1px solid #ffffff;
  }

  footer .flex__div.newsletter {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
  }

  footer .flex__div.form {
    /* margin-top: 1.5rem; */
    margin-bottom: 1.75rem;
  }

  footer .flex__div.logo_cont {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 0;
  }

  footer input.input--primary {
    margin-right: 0.5rem;

    width: 60%;
    font-size: 12px;
    padding: 0.5rem 1rem;
    min-height: auto;
  }

  footer button.btn--secondary {
    padding: 0.5rem 1rem;
    min-height: auto;
    font-size: 12px;
  }

  footer .flex__div.links {
    margin-bottom: 1rem;
  }
  footer .flex__div.links a {
    font-size: 12px;
  }

  footer .flex__div.copyright {
    font-size: 14px;
  }

  footer .flex__div.links a:not(:last-child)::after {
    height: 0.5rem;
  }

  /* ****************** */
  /* courses page */

  :root {
    --video-width: 95%;
  }

  .video-container {
    margin-bottom: 5rem;
  }

  .courses__hero .video__hint {
    display: flex;
    flex-direction: column;

    left: 50%;
    bottom: 0;
    font-size: var(--rv-1-5);

    transform: translateX(-50%);
    margin-top: 37%;
  }

  .courses__hero .video__hint .arrow:not(.m--only) {
    display: none;
  }

  .courses__hero .video__hint .arrow.m--only {
    transform: rotate(140deg);

    margin: 0;
    margin-left: 74%;
    margin-top: -1rem;
  }

  .courses__hero .courses__desc {
    width: 98%;
    font-size: var(--rv-1-5);
    padding: 1rem 0;
  }

  .course__cards.default__section {
    padding: 1rem;
    padding-top: 0;
  }

  .course__cards .card__item {
    width: 100%;
    padding: 0.75rem;
  }

  .course__cards .card__item .price {
    padding: 0.75rem;
  }

  /* ****************** */
  /* Course Details Page */
  .default__section.course__details,
  .tagline__large.tagline__courses {
    padding-top: 20px;
  }

  .course__details .cover__img {
    height: clamp(160px, 20vh, 240px);
  }

  .course__details .institute__fixed {
    color: #19191b;
    padding: 0.5rem 0.75rem;
    width: 60%;
  }

  .course__details .institute__fixed .logo {
    width: 20px;
    margin-right: 0.5rem;
  }

  .course__details .flex__cont {
    flex-direction: column;
    padding: 1.5rem 0 0 0;
  }

  .course__details .flex__cont .left {
    width: 100%;
    padding-right: 0;
  }

  .course__details .flex__cont .right {
    width: 100%;
  }

  .course__details .inner__flex .left {
    width: 100%;
    padding-right: 0;
  }

  .course__details .info__card:not(:last-child),
  .course__details .info__card {
    margin-bottom: 1.5rem;
  }

  .course__details .info__card {
    padding: 1.25rem;
  }

  .course__details .flex__cont .title {
    font-size: var(--rv-2);
  }

  header .header__logo img {
    width: clamp(60px, 10vw, 120px);
  }

  header {
    padding: 10px 5vw;
  }

  /* about us lecturers page */

  .hero_section.hero__dark .hero__img.m--only {
    margin: 1rem 0;
    width: 80%;
    margin: 1rem auto;
  }

  .default__section.hero__dark {
    position: relative;
    min-height: auto;

    /* clip-path: ellipse(90vw clamp(400px, 63vmin, 450px) at 50% 20%);
    clip-path: ellipse(120vw 60vh at 50% 20%);
    clip-path: ellipse(120vw 700px at 50% 20%); */
    clip-path: none;
    margin-bottom: 0;
  }

  .scroll__down {
    display: none;
  }

  .our__success .desc {
    width: 95%;
  }

  .our__success .box__wrapper {
    width: 100%;
    min-width: auto;
    margin-top: 110px;
  }

  .our__success .max__wrapper {
    position: relative;

    width: 90%;
    min-width: auto;
  }

  .our__success .stat_item.item__1,
  .our__success .stat_item.item__2 {
    top: -80px;
  }

  .our__success .stat_item.item__3,
  .our__success .stat_item.item__4 {
    bottom: 0;
  }

  .our__success .stat_item {
    font-size: var(--rv-1-125);
  }

  .our__success .stat_item .num {
    font-size: 12vw;
  }

  .our__lecturers .title {
    padding: 0 1rem;
  }

  .our__lecturers .lecturers_flex .lecturer {
    width: 85%;
    min-width: auto;
  }

  /* ****************** */
  /* Login Register Auth Page */

  .auth__section .flex__container .right {
    width: 100%;
    margin: 1rem var(--rv-3);
    padding: 1.5rem;
  }

  section.default__section.auth__section {
    /* min-height: calc(100vh - var(--header-height) - 12rem); */
    /* min-height: calc(100vh - var(--header-height) - 5rem); */
    min-height: auto;
    position: relative;
  }

  .auth__section .flex__container {
    min-height: auto;
    min-height: calc(100vh - var(--header-height) - 5rem);
  }

  .auth__section .bg_ribbon {
    position: fixed;
    width: 100%;
  }

  .auth__section .form-selector {
    width: 70%;
    /* font-size: var(--rv-1-25); */
  }
  .auth__section .bg-robot-img {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    z-index: -1;
    background: url(../img/components/liverobot_3.png) no-repeat center center;
    background-size: cover;
    opacity: 0.2;
  }

  /* ****************** */
  /* Payment Confirm */
  .default__section.payment__confirm {
    /* max-width: 800px; */
    width: 40vw;
    min-width: 500px;
    margin: 0 auto;
    padding-top: 5rem;

    min-width: auto;
    width: 100%;
  }

  .payment__confirm p {
    padding: 0 1rem;
  }

  .payment__confirm select,
  .payment__confirm .btn--secondary,
  .payment__confirm .btn--primary {
    width: 80%;
  }

  /* ********** */
  /* Contact Us Page */

  .contact__form .flex__div {
    width: 100%;
    flex-direction: column;
  }

  .contact__form .flex__div .flew__row {
    width: 100%;
    padding: 0 1rem;
  }

  .contact__methods .flex__row {
    width: 80%;
    justify-content: flex-start;
    margin-bottom: var(--rv-2);
  }

  /* ********** */
  /* Blog Page */
  .default__section.blog__details {
    padding-bottom: 0;
  }

  .blog__details .cover__img {
    height: clamp(300px, 30vh, 400px);
    /* height: 30vh; */
  }

  .blog__details .cover__img .overlay {
    backdrop-filter: blur(3px);
    padding: 5vh 5%;
  }

  .blog__details .cover__img .overlay .title {
    font-size: var(--rv-2-5);
  }

  .blog__details .cover__img .overlay .desc {
    display: -webkit-box;
    font-size: var(--rv-1-25);
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
  }

  /* course cards filter */

  .filter__wrapper {
    padding: 1rem 0;
  }

  .course-filter ul li {
    margin: 0;
    margin-bottom: 1rem;
    width: calc(50% - 2rem);
  }

  .course-filter ul li:nth-child(odd) {
    margin-right: 1rem;
  }

  .course-filter ul li:nth-child(even) {
    margin-left: 1rem;
  }

  .course-filter ul li .cat__img {
    width: 14%;
    min-width: 20px;
    margin-right: 1rem;
    scale: 2.5;
  }

  .course-filter ul li .text {
    width: 50%;
    margin: 0 1rem;
    font-size: var(--rv-1);
  }

  /* ********** */
  /* student dashboard */
  #sidebar {
    display: none;
  }

  .dashboard .content {
    margin: 0;
    width: (100vw);
  }

  .dashboard .content-inner {
    width: auto;
    margin: 1rem;
  }

  .dashboard .course-item {
    max-width: unset;
    width: 100%;
  }

  .dashboard .course-item .flex-cont .course-img {
    display: none;
  }

  .dashboard .course-item .flex-cont .course-details {
    width: 100%;
    margin-left: 0;
    font-size: var(--rv-1-new);
    padding-left: 0;
  }

  .dashboard .course-item .flex-cont .course-details .course-accordion > div {
    font-size: var(--rv-1-new);
  }
}
