@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
 --white-100: white;
  --white-200: #e4e6e7;
  --white-300: #c9cccf;
  --white-400: #a1a6aa;
  --white-500: #6d7478;
  --black-100: #181f25;
  --black-200: #12171c;
  --black-300: #0c0f13;
  --black-400: #060809;
  --black-500: #020303;
  --night-100: #253041;
  --night-200: #1e2634;
  --night-300: #161d27;
  --night-400: #0f131a;
  --night-500: #070a0d;
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --primary-color: #8697c3;
    --secondary-color: #000;
    --blue-color: #242c50;
    --blue-color-2: #131d3d;
    --dark-color: #101a37;
    --common-color: #666666;
    --gray-color: #bebebe;
    --gray-color-2: #c4c4c4;
    --bg-color: #f5f5f5;
    --white-color: #ffffff;
    --light-white-color: #f3f4f8;
    --black-color: #000000;
    --pink-color-1: #e8cafe;
   --pink-color-2: #3a54a6;
    --yellow-color: #ffc107;
    --gradient-color: linear-gradient(-90deg, rgb(61 82 173) 0%, rgb(61 82 173) 100%);
/* --gradient-color: linear-gradient(-90deg, rgb(63 81 166) 0%, rgb(113 145 222) 100%);  */
--gradient-color-2: linear-gradient(90deg, rgb(61 82 173) 0%, rgb(112 145 220) 100%);
/*   --gradient-color-2: linear-gradient(90deg, rgb(62 82 166) 0%, rgb(112 145 220) 100%);*/
    --gradient-white-color: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    --border-radius-10: 10px;
    --box-shadow-1: 0 4px 60px -1px rgb(0 0 0 / 10%);
    --top-header-height: 45px;
    --sec-space-120: 80px;
    --title-font: "League Spartan", sans-serif;
    --body-font: "Rubik", sans-serif;
    --transition: 0.3s;
    --transition-2: cubic-bezier(0.64, 0.57, 0.67, 1.53);
}
html, body{
  overflow-x: hidden;
}
ol, ul {
     padding-left: 0rem !important; 
}
dl, ol, ul {
   
    margin-bottom: 0 !important;
}
a {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: none !important;
}
*, *::before, *::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}
body {
  font-family: "Mulish";
  font-size: clamp(1rem, calc(0.97rem + 0.14vw), 1.09rem);
  font-weight: normal;
  line-height: 1.5;
  color: var(--black-300);
  background-color: var(--white-100);
      font-size: 16px;
}
/*body.darkmode1 {
  color: var(--white-100);
  background-color: var(--night-400);
}*/
main {
  overflow: hidden;
}
a, button {
  cursor: pointer;
  user-select: none;
  border: none;
  outline: none;
  background: none;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: crisp-edges;
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideRight {
  0% {
    opacity: 1;
    transform: translateX(0%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.section {
  margin: 0 auto;
  padding: 6rem 0 2rem;
}
.container {
  max-width: 85rem;
  height: auto;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.centered {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1rem;
}
.btn {
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
  user-select: none;
  border-radius: 0.25rem;
  text-transform: capitalize;
  transition: all 0.3s ease;
}
.btn-primary {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--pink-500);
  box-shadow: var(--shadow-medium);
}
.btn-darken {
  padding: 0.75rem 1.5rem;
  color: var(--white-100);
  background-color: var(--night-300);
  box-shadow: var(--shadow-medium);
}
.header {
 position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 100;
    margin: 0 auto;
    background-color: var(--white-100);
    /* box-shadow: var(--shadow-medium); */
    background-color: #fbfbfe;
    border-bottom: 1px solid #ddd;
}
/*.darkmode1 .header {
  background-color: var(--night-300);
}*/
.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--pink-500);
  text-transform: uppercase;
  order: 1;
}
.darkmode1 .brand {
  color: var(--pink-300);
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 4rem;
  margin: 0 auto;
}

/*.navbar-center {
  display: flex;
}
.navbar-right {
  display: flex;
  flex: 0 0 17%;
  align-items: center;
  justify-content: flex-end;
  column-gap: 1.5rem;
}*/
@media only screen and (max-width: 992px) {
  .navbar-left, .navbar-right {
    flex: 0 0 auto;
  }
  .navbar-right {
    align-items: center;
  }
  .navbar-center {
    flex: 0 0 100%;
    order: 3;
    align-items: center;
/*    display: none;*/
  }
  .search-container{
    display: none !important;
  }
  .navbar-left img{
        max-width: 120px;
  }
  .switch a {
    padding: 10px;
    font-size: 12px !important;
        padding: 8px 13px 8px !important;
}
}
@media only screen and (max-width: 992px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    z-index: 100;
    overflow: hidden;
    transform: translate(-100%);
    background-color: var(--white-100);
    transition: all 0.4s ease-in-out;
  }
  .menu.is-active {
    transform: translate(0%);
  }
  .darkmode1 .menu {
    background-color: var(--night-300);
  }
}
.menu-header {
  display: none;
  box-shadow: var(--shadow-medium);
}
.menu-item {
  display: inline-block;
  line-height: 1.5;
  padding-right: 1.25rem;
}
.menu-inner{
      padding-left: 2rem !important;
}
.menu-link {
font-size: 14px;
    font-weight: 500;
    line-height: inherit;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--black-300);
    text-transform: capitalize;
    transition: all 0.25s ease;
    text-decoration: none;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
}
.menu-link:hover{
  color: #b3adad;
}
.menu-link > i.fa {
    font-size: 14px;
    margin-left: 0.25rem;
}
.menu-link:hover > i.fa {
    font-size: 14px;
    margin-left: 0.25rem;
    transform: rotate(178deg);
    margin-top: 3px;
}
/*.darkmode1 .menu-link {
  color: var(--white-100);
}*/
.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  font-size: 1.45rem;
  color: var(--black-300);
  transition: all 0.25s ease;
}
.darkmode1 .menu-icon {
  color: var(--white-100);
}
@media only screen and (min-width: 993px) {
  .menu-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
/*    margin-top: 21px;*/
  }
}
@media only screen and (max-width: 992px) {
  .menu-header {
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 4rem;
    z-index: 110;
    visibility: hidden;
    background: transparent;
  }
  .menu-header.is-active {
    visibility: visible;
    background-color: var(--white-100);
  }
  .menu-header.is-active > .menu-arrow {
    display: block;
  }
  .darkmode1 .menu-header.is-active {
    background-color: var(--night-100);
  }
  .menu-arrow {
    display: none;
    cursor: pointer;
    width: 3rem;
/*    height: 4rem;*/
    text-align: center;
  }
  .menu-arrow > i.bx {
    font-size: 1.5rem;
    line-height: 4rem;
    color: var(--black-300);
    transition: all 0.25s ease;
  }
  .darkmode1 .menu-arrow > i.bx {
    color: var(--white-100);
  }
  .menu-title {
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    line-height: inherit;
    text-transform: capitalize;
    color: var(--black-300);
  }
  .darkmode1 .menu-title {
    color: var(--white-100);
  }
  .menu-inner {
    height: 100%;
    margin-top: -3rem;
    overflow-y: auto;
    overflow-x: hidden;
        padding-left: 0;
  }
  .submenu-list{
     padding-left: 0 !important;
     max-width: 300px;
  }
  .submenu-item {
    display: block;
    line-height: 1;
    margin: 0px auto;
}
  .menu-item {
    display: block;
    line-height: 1;
    padding-inline: 0;
  }
  .menu-link {
    justify-content: space-between;
    height: 2.5rem;
    line-height: 2.5rem;
    padding-inline: 1.25rem;
  }
  .menu-link > i.bx {
    margin-left: 0.5rem;
    transform: rotate(0deg);
  }
}
.submenu {
  position: absolute;
  width: 100%;
  height: auto;
  margin-top: 1.75rem;
  padding: 10px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
/*  border-radius: 0.25rem;*/
  border-top: 2px solid var(--pink-400);
  background-color: #fff;
  box-shadow: var(--shadow-medium);
  transition: all 0.25s ease-in-out;
      padding: 18px 15px;
          top: 101%;
}
/*.darkmode1 .submenu {
  border-top: 2px solid var(--pink-300);
  background-color: var(--night-300);
}*/
.submenu-inner {
  flex: 0 0 50%;
  padding: 0 8px;
}
.submenu-title {
       font-family: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    padding: 0.75rem 0;
    color: #7b7979;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.3px;
    font-weight: 700;
        position: relative;
    margin-inline: auto;
    text-align: center;
    color: var(--color-grey-400);
    width: 100%;
}
.submenu-title::before{
  content: "";
    display: block;
    height: 1px;
    width: 25%;
    position: absolute;
    top: 50%;
    left: 0;
    background: -webkit-gradient(linear, right top, left top, from(#d4d4d4), color-stop(106.03%, hsla(0, 0%, 83%, 0)));
    background: -webkit-linear-gradient(right, #d4d4d4, hsla(0, 0%, 83%, 0) 106.03%);
    background: -moz-linear-gradient(right, #d4d4d4 0, hsla(0, 0%, 83%, 0) 106.03%);
    background: linear-gradient(270deg, #d4d4d4, hsla(0, 0%, 83%, 0) 106.03%);
}
.submenu-title::after{
content: "";
    height: 1px;
    width: 25%;
    background: -webkit-gradient(linear, right top, left top, from(#d4d4d4), color-stop(106.03%, hsla(0, 0%, 83%, 0)));
    background: -webkit-linear-gradient(right, #d4d4d4, hsla(0, 0%, 83%, 0) 106.03%);
    background: -moz-linear-gradient(right, #d4d4d4 0, hsla(0, 0%, 83%, 0) 106.03%);
    background: linear-gradient(270deg, #d4d4d4, hsla(0, 0%, 83%, 0) 106.03%);
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.darkmode1 .submenu-title {
  color: var(--pink-300);
}
.submenu-item {
  display: block;
  line-height: 1;
  margin: 0 auto;
    transition: 0.3s;
    padding: 5px 5px;
        display: flex;
        align-items: center;
    justify-content: space-between;
}
.submenu-item i{
  opacity: 0;
  visibility: hidden;
      margin-right: 5px;
          font-size: 14px;
}
.submenu-link {
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: inherit;
 padding: 10px 5px;
/*  white-space: nowrap;*/
  text-transform: capitalize;
  color: var(--black-300);
  transition: all 0.25s ease-in-out;
  line-height: 25px;
}
.submenu-link{
    padding: 5px 10px;
    font-weight: 600;
    font-size: 13px;
    font-family: Mulish, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    letter-spacing: 0.3px;
}
.submenu-item:hover{
     padding: 5px 5px;
    background: #ececec;
    border-radius: 10px;
    transition: 0.3s;
}
.submenu-item:hover i{
  opacity: 1;
  visibility: visible;
}
.darkmode1 .submenu-link {
  color: var(--white-100);
}
.submenu-image {
  display: block;
  width: 100%;
  height: auto;
  margin-block: 0.5rem;
  object-fit: cover;
}
@media only screen and (max-width: 992px) {
  .submenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    box-shadow: none;
    transform: translateX(0%);
  }
  .submenu.is-active {
    display: block;
  }
  .submenu-inner {
    flex: 0 0 100%;
    padding: 0rem;
  }
  .submenu-list {
    margin-bottom: 1rem;
  }
  .submenu-link {
    display: block;
  }
  .submenu-image {
    margin-top: 0;
  }
}
.megamenu {
  left: 50%;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transform: translateX(-50%);
}
.megamenu-column-1 {
  left: 65%;
/*  max-width: 15rem;*/
  width: 100%;
  height: auto;
      
}
.megamenu-column-2 {
     border-radius: 20px;
      max-width: 67rem;
}
.megamenu-column-4 {
  display: flex;
  flex-wrap: wrap;
     max-width: 100%;
  height: auto;
  margin: 0 auto;
      border-radius: 20px;
          padding: 18px 15px;
            /*  height: 600px;
    overflow-y: scroll;*/
}
@media only screen and (max-width: 992px) {
  .megamenu {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    min-width: auto;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    transform: translateX(0%);
    box-shadow: none;
  }
}
.switch {
    position: relative;
    display: flex;
    cursor: pointer;
    user-select: none;
    /* margin-right: 1rem; */
    gap: 10px;
    align-items: center;
}
.switch-light, .switch-dark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in;
}
.switch-light {
  font-size: 1.3rem;
  visibility: visible;
  color: var(--black-300);
}
.darkmode1 .switch-light {
  font-size: 0rem;
  visibility: hidden;
}
.switch-dark {
  font-size: 0rem;
  visibility: hidden;
  color: var(--white-100);
}
.darkmode1 .switch-dark {
  font-size: 1.3rem;
  visibility: visible;
}
.overlay {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 0.45s ease-in-out;
}
@media only screen and (max-width: 992px) {
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
  .burger {

  display: block !important;
}
  .navbar-left {
  display: flex;
  align-items: center;
/*  flex: 0 0 17%;*/
}
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  width: 1.6rem;
  height: 1rem;
  margin-right: 1rem;
  opacity: 0;
  visibility: hidden;
  background: transparent;
  display: none;
}
@media only screen and (max-width: 992px) {
  .burger {
    opacity: 1;
    visibility: visible;
  }
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 1;
  border-radius: 1rem;
  background: var(--black-400);
}
.darkmode1 .burger-line {
  background: var(--white-100);
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.submenu-box{

    border-radius: 10px;
    padding: 10px;
        border: 1px solid #ecedfa;
    background: rgba(240, 241, 245, .12);
}
.new{
      display: flex
;
    padding: 2px 4px;
    -moz-box-pack: center;
    justify-content: center;
    -moz-box-align: center;
    align-items: center;
    -webkit-border-radius: var(--space-3xs);
    border-radius: 5px;
    background: #fae3ea;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    z-index: 2;
    color: #df4271;
}
.crypto{
      max-width: 13em;
}
.crypto h6{
        font-size: 14px;
    line-height: 1.4285714286;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.crypto p{
  font-size: 12px;
    line-height: 1.6666666667;
    letter-spacing: 0.3px;
    color: #868686;
    margin-bottom: 5px;
}
.new-btn{
      font-size: 14px;
    line-height: 1.4285714286;
    font-weight: 600 !important;
    color: #3e48ce;
      letter-spacing: 0.3px;
}
.h_tms_background__zHz9m {
       position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
   overflow-clip-margin: content-box;
    overflow: hidden;}
    .liveclass-inner {
         background: #fff;
    padding: 19px;
    border-radius: 10px;
transition: 0.3s;
margin-bottom: 7px;
    }
     .liveclass-inner:hover{
        background: #f0f1f5;
    padding: 19px;
    border-radius: 10px;
     }
.active1::after{
         content: "";
    position: absolute;
    top: auto;
    left: auto;
    margin-left: -5px;
    border-width: 12px;
    border-style: solid;
    border-color: #f0f1f5 transparent transparent transparent;
    /* right: 0; */
    margin-left: 29%;
    margin-top: -44px;
    transform: rotate(-90deg);
}
 .liveclass-inner:hover:after{
    content: "";
    position: absolute;
    top: auto;
    left: auto;
    margin-left: -5px;
    border-width: 12px;
    border-style: solid;
    border-color: #f0f1f5 transparent transparent transparent;
    /* right: 0; */
    margin-left: 29%;
    margin-top: -44px;
    transform: rotate(-90deg);
 }

    .active1{
         background: #f0f1f5;
    padding: 19px;
    border-radius: 10px;

    }
    .liveclass-right h2{
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
    }
    .liveclass-right p{
font-size: 14px;
    line-height: 1.4285714286;
        font-weight: 500;
        letter-spacing: 0.3px;
        color: #868686;
        margin-bottom: 0;
    }
    .liveclass-inner-r p{
          color: #717171 ;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3333333333;
     letter-spacing: 0.3px;
    }
    .liveclass-inner-r{
          border: 1px solid #ecedfa;
    border-radius: 10px;
    padding: 20px;
    }

    .p-listbox{
      border-radius: 10px;
    border: 1px solid #d6d6d6;
    position: relative;
    box-shadow: 0 4px 16px 0 rgba(57, 63, 195, .12);
    -webkit-box-shadow: 0 4px 16px 0 rgba(57, 63, 195, .12);
        padding: 10px;
            min-height: 215px;
    }
    .p-listbox img{
          border-radius: .6rem;
    }
    .p-listbox p{
          color: #717171 ;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.3333333333;
    padding-top: 5px;
    margin-bottom: 0;
    }
    .text-black{
      color: #000 ;
    }
     .p-listbox .head{
      font-size: 14px;
    line-height: 1.4285714286;
    font-weight: 600;
    color: #2f2f2f;
    }


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

.heading {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.searchInputWrapper {
  position: relative;
}

.searchInput {
   width: 24rem;
    padding: 7px 19px;
    border-radius: 2rem;
    border: none;
    transition: transform 0.1s ease-in-out;
    background: #f0f1f5;
        font-size: 14px;
}

::placeholder {
  color: #a1a1a1;
  font-size: 14px;
}

/* hide the placeholder text on focus */
:focus::placeholder {
  text-indent: -999px
}

.searchInput:focus {
  outline: none;
/*  transform: scale(1.1);*/
  transition: all 0.1s ease-in-out;
}

.searchInputIcon {
    position: absolute;
    right: 6px;
    top: 4px;
    color: #fff;
    transition: all 0.1s ease-in-out;
    background: #8697c3;
    padding: 6px;
    border-radius: 50px;
    font-size: 14px;
}

.search-container:focus-within > 
.searchInputWrapper > .searchInputIcon {
 right: 6px;
}
.float-right{
      float: right;
}
.signup{
      font-size: 13px;
    background: #8697c3;
    padding: 10px;
    color: #fff;
    border-radius: 5px;
}
.switch a{
   padding: 8px 20px 8px;
    border: 1px solid #758fe1;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
}
.main-banner {
    position: relative;
    padding: 80px 0 80px;
    background-color: var(--light-white-color);
    overflow: hidden;
}

.main-banner-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-banner-bg-shape div[class^="shape-"] {
    position: absolute;
    display: inline-block;
    border-radius: 50%;
}

.main-banner-bg-shape .shape-1 {
    --size: 428px;
    width: var(--size);
    height: var(--size);
    left: 39.8%;
    transform: translate(-50%, 0);
    bottom: 133px;
    background-color: rgb(254 129 2 / 30%);
    filter: blur(220px);
}

.main-banner-bg-shape .shape-2 {
    --size: 428px;
    width: var(--size);
    height: var(--size);
    top: 216px;
    right: 4%;
    transform: translate(-50%, 0);
    background: var(--gradient-color-2);
    filter: blur(220px);
    opacity: 0.3;
}

.main-banner-bg-aliment-wp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-banner-bg-aliment-wp div[class^="bg-aliment-"] {
    position: absolute;
    display: inline-block;
}

.main-banner-bg-aliment-wp .bg-aliment-1 {
    left: 138px;
    top: 275px;
}

.main-banner-bg-aliment-wp .bg-aliment-2 {
    left: 395px;
    top: 219px;
}

.main-banner-bg-aliment-wp .bg-aliment-3 {
    left: 575px;
    top: 242px;
}

.main-banner-bg-aliment-wp .bg-aliment-4 {
    left: 818px;
    top: 200px;
}

.main-banner-bg-aliment-wp .bg-aliment-5 {
    right: 548px;
    top: 234px;
}

.main-banner-bg-aliment-wp .bg-aliment-6 {
    right: 401px;
    top: 310px;
}

.main-banner-bg-aliment-wp .bg-aliment-7 {
    right: 119px;
    top: 289px;
}

.main-banner-bg-aliment-wp .bg-aliment-8 {
    left: 217px;
    top: 530px;
}

.main-banner-bg-aliment-wp .bg-aliment-9 {
    right: 122px;
    top: 414px;
}

.main-banner-bg-aliment-wp .bg-aliment-10 {
    left: 167px;
    bottom: 359px;
}

.main-banner-bg-aliment-wp .bg-aliment-10 img {
    width: 19px;
    transform: rotate(30deg);
}

.main-banner-bg-aliment-wp .bg-aliment-11 {
    right: 266px;
    bottom: 357px;
}

.main-banner-bg-aliment-wp .bg-aliment-11 img {
    width: 19px;
    transform: rotate(30deg);
}

.main-banner-bg-aliment-wp .bg-aliment-12 {
    left: 162px;
    bottom: 138px;
}

.main-banner-bg-aliment-wp .bg-aliment-13 {
    left: 445px;
    bottom: 106px;
}

.main-banner-bg-aliment-wp .bg-aliment-14 {
    left: 664px;
    bottom: 73px;
}

.main-banner-bg-aliment-wp .bg-aliment-15 {
    left: 750px;
    bottom: 181px;
}

.main-banner-bg-aliment-wp .bg-aliment-16 {
    right: 475px;
    bottom: 110px;
}

.main-banner-bg-aliment-wp .bg-aliment-17 {
    right: 212px;
    bottom: 141px;
}

/*.main-banner .banner-content {
    padding-top: 130px;
}
*/
.banner-description-wp {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 20px;
}

.banner-description-text {
    max-width: 415px;
}

.banner-description-text p {
    font-size: 18px;
    line-height: 28px;
}

.students-list ul {
    display: flex;
    line-height: 1;
    font-size: 0;
    margin: 0 0 5px 20px;
}

.students-list ul li {
    margin-left: -20px;
}

.students-image {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}

.students-image img {
    border-radius: 100%;
}

.students-counter-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background: linear-gradient(-90deg, rgba(255, 255, 255, 1) 0%, rgba(223, 223, 223, 1) 100%);
    border-inline: 2px solid var(--white-color);
    box-shadow: 0 4px 40px -1px rgb(0 0 0 / 15%);
}

.students-list-text p {
    font-size: 18px;
    line-height: 28px;
}

.banner-image-content {
    position: relative;
}

.banner-image-shape {
    position: absolute;
    top: 47px;
    left: -84px;
    transform: rotate(26deg);
}

.banner-image-box {
/*    clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100.4%);*/
    margin-right: 25px;
    margin-left: 41px;
}

.banner-image {
   position: relative;
    background: #7f838b;
    min-height: 400px;
    padding: 50px;
    margin-top: 30px;
    border-radius: 25px;
/*    box-shadow: 10px 14px 60px -1px rgb(0 0 0 / 42%);*/

box-shadow: 0 0px 3px 1px #000;
}
.list-course li{
  color: #fff;
}
.banner-image::after {
   /* content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.85438596491;
    background: var(--gradient-color);
    --mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1NzAiIGhlaWdodD0iNDkwIiB2aWV3Qm94PSIwIDAgNTcwIDQ5MCIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik0wIDEwMEMwIDQ0Ljc3MTUgNDQuNzcxNSAwIDEwMCAwSDQ3MEM1MjUuMjI4IDAgNTcwIDQ0Ljc3MTUgNTcwIDEwMFY0MjIuOTgyQzU3MCA0MjguMTA2IDU2Ni4xMjcgNDMyLjQwMSA1NjEuMDMgNDMyLjkyOUwxMS4wMjk2IDQ4OS44NThDNS4xMzEwMyA0OTAuNDY5IDAgNDg1Ljg0MiAwIDQ3OS45MTFWMTAwWiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzFfNzMzOSkiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xXzczMzkiIHgxPSI1NzAiIHkxPSIyNDUuNSIgeDI9IjAiIHkyPSIyNDUuNSIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiPgo8c3RvcCBzdG9wLWNvbG9yPSIjQTQ0NEZEIi8+CjxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iI0QwNUVGQyIvPgo8L2xpbmVhckdyYWRpZW50Pgo8L2RlZnM+Cjwvc3ZnPg==");
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: var(--transition);
    z-index: -1;*/
}

.banner-image img {
    margin-left: -13px;
    max-width: 510px;
    width: 100%;
    aspect-ratio: 1 / 1.36666666667;
}

.congra-box {
    position: absolute;
    top: 347px;
    right: -23px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: var(--border-radius-10);
    padding: 18px 14px 18px 20px;
    background: linear-gradient(-120deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 10px 14px 60px -1px rgb(0 0 0 / 20%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.congra-icon {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
}

.congra-text p {
    color: rgb(25 37 75 / 70%);
}

.certification-box-wp {
    position: absolute;
    left: 0;
    bottom: -37px;
    --size: 140px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(-120deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 10px 14px 60px -1px rgb(0 0 0 / 10%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid var(--white-color);
}

.certification-box {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    --size: 119px;
    width: var(--size);
    height: var(--size);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.certification-text {
    width: 100%;
    height: 100%;
    color: var(--secondary-color);
    text-transform: uppercase;
    animation: textRotation 8s linear infinite;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

.certification-text span {
    position: absolute;
    left: 50%;
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.1em;
    display: inline-block;
    transform-origin: 0 60px;
}

.certification-icon {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255 255 255 / 30%);
}

.certification-icon img {
    transform: rotate(-45deg);
    transition: var(--transition);
}

.certification-box-wp:hover .certification-icon img {
    transform: rotate(0deg);
}

/*==========Banner CSS End==========*/

/*==========Main Partners CSS Start==========*/

.main-partners {
    padding: 52px 0;
    background-color: var(--blue-color);
}

.main-partners .container-fluid {
    padding-inline: 65px;
}

.partners-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
}

.partners-slide img {
    margin-left: auto;
    margin-right: auto;
    max-width: 150px;
    max-height: 51px;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition);
}

.partners-slide:hover img {
    opacity: 1;
}
@media screen and (max-width: 1399px) {
    .h1-title {
        font-size: 65px;
        line-height: 75px;
    }
}
.h1-title {
   
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.sec-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-color);
    border-radius: var(--border-radius-10);
    font-size: 13px;
    line-height: 1.2;
    color: var(--white-color);
    font-weight: 600;
    font-family: var(--body-font);
    /*text-transform: uppercase;*/
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 13px 19px;
    outline: none;
    border: none;
    transition: var(--transition);
    background-size: 100% 100%;
    background-position: left center;
    z-index: 1;
}

.sec-btn:hover {
    background-position: right center;
    background-size: 200% 100%;
    color: var(--white-color);
}

/*.sec-btn::after {
    --size: 122px;
    content: "";
    position: absolute;
    top: -65px;
    right: -48px;
    width: var(--size);
    height: var(--size);
    opacity: 0.2;
    background: var(--white-color);
    --mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5OCIgaGVpZ2h0PSIxMDIiIHZpZXdCb3g9IjAgMCA5OCAxMDIiPgo8cGF0aCBkPSJNNDAuNzcyIDQuODk3OTFDNDQuMzQ3MyAtMS41NzU3MiA1My42NTI3IC0xLjU3NTcyIDU3LjIyOCA0Ljg5NzkxVjQuODk3OTFDNTkuNjIwMSA5LjIyOTE2IDY0Ljk2MDQgMTAuOTY0MyA2OS40NDE1IDguODY2MzNWOC44NjYzM0M3Ni4xMzkxIDUuNzMwNTggODMuNjY3MyAxMS4yMDAxIDgyLjc1NDcgMTguNTM4OVYxOC41Mzg5QzgyLjE0NDEgMjMuNDQ5IDg1LjQ0NDYgMjcuOTkxOCA5MC4zMDMxIDI4LjkyODRWMjguOTI4NEM5Ny41NjQ3IDMwLjMyODMgMTAwLjQ0IDM5LjE3ODIgOTUuMzg4MyA0NC41NzlWNDQuNTc5QzkyLjAwODIgNDguMTkyNCA5Mi4wMDgyIDUzLjgwNzYgOTUuMzg4MyA1Ny40MjFWNTcuNDIxQzEwMC40NCA2Mi44MjE4IDk3LjU2NDcgNzEuNjcxNyA5MC4zMDMxIDczLjA3MTZWNzMuMDcxNkM4NS40NDQ2IDc0LjAwODIgODIuMTQ0MSA3OC41NTEgODIuNzU0NyA4My40NjExVjgzLjQ2MTFDODMuNjY3MyA5MC43OTk5IDc2LjEzOTEgOTYuMjY5NCA2OS40NDE1IDkzLjEzMzdWOTMuMTMzN0M2NC45NjA0IDkxLjAzNTcgNTkuNjIwMSA5Mi43NzA4IDU3LjIyOCA5Ny4xMDIxVjk3LjEwMjFDNTMuNjUyNyAxMDMuNTc2IDQ0LjM0NzMgMTAzLjU3NiA0MC43NzIgOTcuMTAyMVY5Ny4xMDIxQzM4LjM3OTkgOTIuNzcwOCAzMy4wMzk2IDkxLjAzNTcgMjguNTU4NSA5My4xMzM3VjkzLjEzMzdDMjEuODYwOSA5Ni4yNjk0IDE0LjMzMjcgOTAuNzk5OSAxNS4yNDUzIDgzLjQ2MTFWODMuNDYxMUMxNS44NTU5IDc4LjU1MSAxMi41NTU0IDc0LjAwODIgNy42OTY5IDczLjA3MTZWNzMuMDcxNkMwLjQzNTI3MyA3MS42NzE3IC0yLjQ0MDIzIDYyLjgyMTggMi42MTE3MiA1Ny40MjFWNTcuNDIxQzUuOTkxNzggNTMuODA3NiA1Ljk5MTc4IDQ4LjE5MjQgMi42MTE3MiA0NC41NzlWNDQuNTc5Qy0yLjQ0MDIzIDM5LjE3ODIgMC40MzUyNzIgMzAuMzI4MyA3LjY5NjkgMjguOTI4NFYyOC45Mjg0QzEyLjU1NTQgMjcuOTkxOCAxNS44NTU5IDIzLjQ0OSAxNS4yNDUzIDE4LjUzODlWMTguNTM4OUMxNC4zMzI3IDExLjIwMDEgMjEuODYwOSA1LjczMDU4IDI4LjU1ODUgOC44NjYzM1Y4Ljg2NjMzQzMzLjAzOTYgMTAuOTY0MyAzOC4zNzk5IDkuMjI5MTYgNDAuNzcyIDQuODk3OTFWNC44OTc5MVoiLz4KPC9zdmc+");
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: var(--transition);
    z-index: -1;
}

.sec-btn:hover::after {
    animation: spin 6000ms infinite linear;
    transition: var(--transition);
}*/

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
@keyframes blink-animation {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0
    }
}@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sec-btn span {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 2;
    gap: 10px;
}

.sec-btn span::after {
    content: "";
    position: relative;
    left: 0;
    display: block;
    width: 18px;
    height: 13px;
    background: var(--gradient-white-color);
    --mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDIwIDE0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTE4LjkyMzIgNi4wODQ4NEwxMy4wODk4IDAuMjUxNTA1QzEyLjkzMjcgMC4wOTk3MDY2IDEyLjcyMjEgMC4wMTU3MTA5IDEyLjUwMzcgMC4wMTc2MDk2QzEyLjI4NTIgMC4wMTk1MDgzIDEyLjA3NjEgMC4xMDcxNDkgMTEuOTIxNiAwLjI2MTY1NkMxMS43NjcxIDAuNDE2MTYzIDExLjY3OTUgMC42MjUxNzMgMTEuNjc3NiAwLjg0MzY3QzExLjY3NTcgMS4wNjIxNyAxMS43NTk3IDEuMjcyNjcgMTEuOTExNSAxLjQyOTg0TDE2LjMyMjMgNS44NDA2N0gxLjY2NzMyQzEuNDQ2MyA1Ljg0MDY3IDEuMjM0MzQgNS45Mjg0NyAxLjA3ODA2IDYuMDg0NzVDMC45MjE3ODIgNi4yNDEwMyAwLjgzMzk4NCA2LjQ1Mjk5IDAuODMzOTg0IDYuNjc0MDFDMC44MzM5ODQgNi44OTUwMiAwLjkyMTc4MiA3LjEwNjk4IDEuMDc4MDYgNy4yNjMyNkMxLjIzNDM0IDcuNDE5NTQgMS40NDYzIDcuNTA3MzQgMS42NjczMiA3LjUwNzM0SDE2LjMyMjNMMTEuOTExNSAxMS45MTgyQzExLjgzMTkgMTEuOTk1IDExLjc2ODQgMTIuMDg3IDExLjcyNDcgMTIuMTg4N0MxMS42ODExIDEyLjI5MDMgMTEuNjU4MSAxMi4zOTk3IDExLjY1NzEgMTIuNTEwM0MxMS42NTYxIDEyLjYyMSAxMS42NzcyIDEyLjczMDcgMTEuNzE5MSAxMi44MzMxQzExLjc2MSAxMi45MzU1IDExLjgyMjkgMTMuMDI4NiAxMS45MDEyIDEzLjEwNjhDMTEuOTc5NCAxMy4xODUxIDEyLjA3MjQgMTMuMjQ3IDEyLjE3NDkgMTMuMjg4OUMxMi4yNzczIDEzLjMzMDggMTIuMzg3IDEzLjM1MTggMTIuNDk3NyAxMy4zNTA5QzEyLjYwODMgMTMuMzQ5OSAxMi43MTc3IDEzLjMyNjkgMTIuODE5MyAxMy4yODMzQzEyLjkyMSAxMy4yMzk2IDEzLjAxMjkgMTMuMTc2MSAxMy4wODk4IDEzLjA5NjVMMTguOTIzMiA3LjI2MzE3QzE5LjA3OTQgNy4xMDY5IDE5LjE2NzEgNi44OTQ5OCAxOS4xNjcxIDYuNjc0MDFDMTkuMTY3MSA2LjQ1MzA0IDE5LjA3OTQgNi4yNDExMSAxOC45MjMyIDYuMDg0ODRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=");
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: var(--transition);
}

.sec-btn:hover span::after {
    left: 5px;
}
@media screen and (max-width: 1399px) {
    .sub-title {
        font-size: 20px;
        line-height: 20px;
    }
}

.sub-title {
    display: block;
    font-size: 22px;
    line-height: 22px;
    color: #3d51a1;
    font-family: var(--title-font);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.sec-space {
       padding: 50px;
}
.row.top-category-list-row {
    --bs-gutter-y: 24px;
}

.category-list-box {
       position: relative;
    display: flex
;
    align-items: center;
    height: 100%;
    gap: 19px;
    padding: 20px 15px;
    border-radius: var(--border-radius-10);
    box-shadow: var(--box-shadow-1);
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 1;
}
/*
.category-list-box:hover {
    box-shadow: 0 4px 60px -1px rgb(178 76 252 / 50%);
}
*/
.category-list-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color-2);
    opacity: 0;
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.category-list-box:hover:before {
    opacity: 1;
}

.category-list-icon {
    position: relative;
    max-width: 50px;
    max-height: 55px;
    width: 100%;
    height: 100%;
}

.category-list-icon .category-icon {
    position: absolute;
    top: 0;
    left: 0;
}

.category-list-icon img {
    width: 100%;
    object-fit: cover;
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.category-list-icon .category-icon.hover-icon {
    opacity: 0;
}

.category-list-box:hover .category-list-icon .category-icon {
    animation: hvr-buzz-out 0.75s linear 1;
    opacity: 0;
}

.category-list-box:hover .category-list-icon .category-icon.hover-icon {
    top: 0;
    opacity: 1;
}

@keyframes hvr-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }

    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }

    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }

    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }

    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.category-list-text a {
    display: inline-block;
}

.category-list-text .h4-title {
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
        margin-bottom: 0;
}

.category-list-box:hover .category-list-text .h4-title {
    color: var(--white-color);
}

.category-list-text p {
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    margin-bottom: 0;
}

.category-list-box:hover .category-list-text p {
    color: var(--pink-color-1);
}


    .h1-title {
        font-size: 65px;
        line-height: 75px;
    }

    .h2-title {
        font-size: 50px;
        line-height: 60px;
    }

    .h3-title {
        font-size: 40px;
        line-height: 50px;
    }

    .h4-title {
           font-size: 20px;
    line-height: 25px;
    font-weight: 800;
    }

    .underline-title {
        font-size: 22px;
        line-height: 32px;
    }
.our-skills-feature-text p{
  margin-bottom: 0;
}
.category-list-text .h4-title{
  font-size: 17px;
}
.instructor-text .h4-title{
   font-size: 17px;
       line-height: 20px;

}
.instructor-profession  {
  font-size: 15px;
}
    .sub-title {
       font-size: 17px;
    line-height: 12px;
    }
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--secondary-color);
    
}
.h2-title {
   font-size: 29px;
    line-height: 50px;
    color: var(--secondary-color);
    margin-bottom: 13px;
}


.top-course-sec {
    padding-bottom: 98px;
}

.top-course-sec .top-course-title {
    margin-bottom: 28px;
}

.top-course-sec .sec-title .h2-title {
    margin-bottom: 0;
}

.top-course-list-wp {
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.top-course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 61px;
}

.top-course-list .list-btn {
    border: none;
    padding: 0;
    background: transparent;
    outline: none;
    font-size: 16px;
    line-height: 28px;
    color: var(--common-color);
    text-transform: capitalize;
    font-weight: 500;
    transition: var(--transition);
}

.top-course-list .list-btn.active,
.top-course-list .list-btn:hover {
    color: var(--pink-color-2);
}

.top-course-sec .grid {
    margin-left: -12px;
    margin-right: -12px;
}

.top-course-sec .grid .grid-item {
    width: 33.33333333%;
    padding: 0 12px;
    margin-bottom: 24px;
}

.common-post-card {
    height: 100%;
    padding: 12px 12px 5px;
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
    transition: var(--transition);
}

.common-post-card:hover {
    box-shadow: 0 4px 60px -1px rgb(0 0 0 / 15%);
}

.post-image-box-wp {
    position: relative;
    margin-bottom: 15px;
}

.post-image {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 0.64606741573;
    border-radius: var(--border-radius-10);
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: var(--transition);
}

.common-post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-image-box-wp .post-tag {
    position: absolute;
    top: 10px;
    left: 10px;
}

.post-tag span {
    font-size: 14px;
    line-height: 25px;
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 3px 20px 2px;
    border-radius: 30px;
    display: inline-block;
}

.common-post-content .post-lessons-info {
    margin-bottom: 8px;
}

.post-lessons-info ul {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.post-lessons-info ul li {
    display: flex;
    gap: 9px;
    align-items: center;
}

.post-lessons-info ul li span {
    display: inline-block;
}

.post-lessons-info ul li .post-info-icon img {
    max-width: 26px;
    max-height: 20px;
}

.post-lessons-info ul li .post-info-text {
    margin-top: 2px;
        font-size: 14px;
        color: #666666;
}

.post-lessons-info ul li .post-info-text a {
    color: var(--common-color);
}

/*.common-post-content .post-content-title {
    margin-bottom: 8px;
}*/

.post-content-title a {
    display: inline-block;
}

.post-content-title .h4-title {
   
     line-height: 27px;
    transition: var(--transition);
    font-size: 20px;
    margin-bottom: 8px;
}

.post-content-title a:hover .h4-title {
    color: var(--primary-color);
}

.common-post-content .course-price {
    margin-bottom: 21px;
}

.course-price .h4-title {
    color: #3d539f;
        font-size: 17px;
            margin-bottom: 0;
}

.post-author-review-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgb(25 37 75 / 10%);
}

.post-author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-author-image {
    --size: 35px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    overflow: hidden;
    flex: 0 0 auto;
}

.post-author-name a {
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    font-family: var(--title-font);
    color: var(--secondary-color);
    display: inline-block;
}

.post-author-name a:hover {
    color: var(--primary-color);
}

.post-review-info {
    display: flex;
    align-items: center;
    gap: 9px;
}

.star-group {
    display: flex;
    gap: 3px;
}

.post-review-info .star-group i {
    color: var(--yellow-color);
}

.post-review-text span {
    display: inline-block;
}
.tab-pane .grid-item {
margin-bottom: 24px;
}

.top-course-sec{
      background: #ececec;
    padding: 50px;
}
 .nav-link{
      background-color: #fff;
    padding: 10px 30px;
    border-radius: 100px;
}
.nav-tabs .nav-link{
  background-color: #f0f1f5;
    padding: 10px 30px;
    border-radius: 100px;
    color: #000;
}
.nav-tabs .nav-link1 {
    background-color: #efe9f5 !important;
    
}
  .nav-link.active {
    
    color: #fff !important;
    border: none;
    background-color: #8697c3 !important;
    padding: 10px 30px;
    border-radius: 100px;
}
.nav-item{
  margin-right: 20px;
}
.nav-tabs{
      justify-content: center;
      border: none;
}
.about-sec {
    padding: 50px
}

.about-image-box-wp {
    position: relative;
    max-width: 520px;
    margin-left: auto;
}

.about-image-box-bg {
    width: 487px;
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    left: 0;
    bottom: 1px;
    background: #8697c3;
    border-radius: 30px;
    overflow: hidden;
    z-index: -1;
}

.about-image-bg-shape {
    position: relative;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}

.about-image-bg-shape::before,
.about-image-bg-shape::after {
    content: "";
    position: absolute;
    top: 105px;
    left: 0;
    width: 100%;
    height: 90px;
    transform: skewY(-15deg);
/*    background-color: rgb(25 37 75 / 60%);*/
background-color: #Adbbda;
}

.about-image-bg-shape::after {
    top: 245px;
}

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

.about-image img {
    max-width: 444px;
    max-height: 557px;
}

.about-image-icon {
    --size: 66px;
    height: var(--size);
    width: var(--size);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: var(--border-radius-10);
    box-shadow: 0px 4px 40px -1px rgb(0 0 0 / 20%);
    transition: var(--transition);
    /* -webkit-animation: movedelement 5s linear infinite; */
    /* animation: movedelement 5s linear infinite; */
}

@keyframes movedelement {
    0% {
        -webkit-transform: translate(0) rotate(-15deg);
        transform: translate(0) rotate(-15deg);
    }

    25% {
        -webkit-transform: translate(10px, 10px) rotate(-15deg);
        transform: translate(10px, 10px) rotate(-15deg);
    }

    50% {
        -webkit-transform: translate(5px, 5px) rotate(-15deg);
        transform: translate(5px, 5px) rotate(-15deg);
    }

    75% {
        -webkit-transform: translate(10px, -5px) rotate(-15deg);
        transform: translate(10px, -5px) rotate(-15deg);
    }

    to {
        -webkit-transform: translate(0) rotate(-15deg);
        transform: translate(0) rotate(-15deg);
    }
}

.about-image-icon.top-icon {
    bottom: -5px;
    left: -10px;
    transform: rotate(21deg);
}

.about-image-icon img {
    width: 56px;
    object-fit: cover;
}

.about-image-icon.bottom-icon {
    right: 59px;
    top: 108px;
    transform: rotate(-14deg);
}

.students-endroll-box {
    position: absolute;
/*    top: 168px;*/
margin-top: -360px;
    left: 50px;
    border-radius: var(--border-radius-10);
    padding: 14px 22px 19px;
    background: linear-gradient(-120deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 100%);
    box-shadow: 10px 14px 60px -1px rgb(0 0 0 / 20%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.students-endroll-title .h5-title {
    margin-bottom: 11px;
}

.students-endroll-image {
    margin-bottom: 13px;
}

.students-endroll-text p {
    color: rgb(25 37 75 / 70%);
}

.about-content {
    margin-left: 23px;
    max-width: 550px;
}

.about-content .sec-title .h2-title {
    margin-bottom: 5px;
}
.our-event-box-wp .h4-title{
      font-size: 20px;
}
.about-text {
/*    margin-bottom: 19px;*/
}
.about-text p{ 
    font-size: 17px;
    line-height: 29px;
}
.about-feature-info {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.about-feature-box {
    display: flex;
    align-items: center;
    gap: 14px;
}

.about-feature-icon {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    box-shadow: 0px 4px 40px -1px rgb(0 0 0 / 20%);
}

.about-feature-box:hover .about-feature-icon img {
    animation: hvr-buzz-out 0.75s linear 1;
}

.about-content-btn {
    margin-top: 27px;
}

.about-counter-row {
    --width: 25%;
    --gap: 24px;
    margin-top: 126px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 33px var(--gap);
}

.about-counter-row .about-counter-box-wp {
    flex: 0 0 calc(var(--width) - calc(var(--gap)));
    display: block;
}

.about-counter-text {
    position: relative;
}

.about-counter-text::before {
   /* content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background-color: var(--primary-color);*/
}

.about-counter-text p {
/*    padding-left: 19px;*/
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    color: #000;
}

.our-event-sec {
    background-color: #8697c3;
}

.our-event-content .sec-title .h2-title {
    color: var(--white-color);
}

.our-event-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px;
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
    transition: var(--transition);
}

.our-event-box-wp .our-event-box:not(:last-child) {
    margin-bottom: 30px;
}

.our-event-image-text {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 850px;
}

.our-event-image {
    width: 270px;
    height: auto;
    aspect-ratio: 1 / 0.554;
    border-radius: var(--border-radius-10);
    overflow: hidden;
    flex: 0 0 auto;
}

.our-event-image img {
    width: 100%;
    transform: scale(1);
    transition: var(--transition);
}

.our-event-title {
    margin-bottom: 6px;
}

.our-event-box:hover .our-event-image img {
    transform: scale(1.05);
}

.our-event-title a {
    display: inline-block;
}

.our-event-title .h4-title {
    transition: var(--transition);
        margin-bottom: 0;
}

.our-event-title a:hover .h4-title {
    color: var(--primary-color);
}

.our-skills-content {
    max-width: 610px;
}

.our-skills-content .sec-title .h2-title {
    margin-bottom: 2px;
}

.our-skills-text {
    margin-bottom: 23px;
}

.our-skills-feature-info {
       display: grid
;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 24px;
}

.our-skills-feature-box {
       padding: 23px 30px;
    background-color: #fff;
    border-radius: var(--border-radius-10);
    border: 1px solid #d1d2e0;
}

.our-skills-feature-icon-title {
    display: flex;
    gap: 9px;
    margin-bottom: 4px;
        align-items: center;
}

.our-skills-feature-icon {
    flex: 0 0 auto;
}

.skill-counter-box .skill-progress-one:not(:last-child) {
    margin-bottom: 53px;
}

.skill-bar-box-one {
    position: relative;
}

.skill-bar-box-one .h4-title {
    margin-bottom: 9px;
}

.skill-bar-percent-one {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--secondary-color);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.skill-bar-percent-one .h4-title {
    margin-bottom: 0;
}

.skill-bar-one {
    width: 100%;
    height: 20px;
    border-radius: 30px;
    position: relative;
}

.skill-bar-one:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    border-radius: 30px;
    opacity: 0.2;
}

.skill-bar-inner-one {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 0;
    height: 100%;
    overflow: hidden;
    box-shadow: 0px 4px 30px -1px rgb(166 69 253 / 50%);
    border-radius: 30px;
}

.skill-bar-inner-one:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
}

.skill-shape-one {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
}



.testimonial-sec {
        position: relative;
    overflow: hidden;
    padding: 50px 0;
    background: #9e9e9e17;
}

.testimonial-slider-wp {
    position: relative;
        padding-bottom: 50px;
}

.testimonial-sec::before,
.testimonial-sec::after {
    content: "";
    width: 208px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 22%, rgba(255, 255, 255, 0.5) 68%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.testimonial-sec::after {
    left: auto;
    right: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 32%, rgba(255, 255, 255, 1) 77%);
}

.testimonial-slider-wp .container-fluid {
    padding-inline: 42px;
}

.testimonial-slider,
.testimonial-slider-2 {
    overflow: visible;
}

.testimonial-slider .swiper-wrapper,
.testimonial-slider-2 .swiper-wrapper {
    transition-timing-function: linear;
}

.testimonial-slider .swiper-slide,
.testimonial-slider-2 .swiper-slide {
    height: auto;
}

.testimonial-slider-2 {
    margin-top: 30px;
}

.testimonial-box {
    position: relative;
    height: 100%;
    padding: 25px 30px 23px;
    box-shadow: var(--box-shadow-1);
    background-color: var(--white-color);
    border-radius: var(--border-radius-10);
    z-index: 1;
}

.quote-icon {
    position: absolute;
    top: 31px;
    right: 30px;
    display: inline-block;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

.client-image-title-wp {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.client-image {
    --size: 80px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    overflow: hidden;
    flex: 0 0 auto;
}

.client-info .client-profession {
    display: inline-block;
    color: var(--primary-color);
    margin-bottom: 13px;
}

.client-info .star-group i {
    font-size: 16px;
    color: var(--yellow-color);
}

.best-instructor-sec {
  padding-top: 50px;
    padding-bottom: 80px;
}

.instructor-box {
    position: relative;
    transition: var(--transition);
}

.professional-instructor-slider {
    padding-block: 40px;
    margin-block: -40px;
}

.instructor-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.20192307692;
    border-radius: var(--border-radius-10);
    overflow: hidden;
}

.instructor-image-box img {
    width: 100%;
    transition: var(--transition);
    transform: scale(1);
}

.instructor-box:hover .instructor-image-box img {
    transform: scale(1.05);
}

.instructor-content-info {
       position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 10px);
    padding: 10px 16px;
    border-radius: var(--border-radius-10);
    display: flex
;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background-color: #ffffffd4;
    transition: var(--transition);
}

.instructor-text a:hover .h4-title {
    color: var(--primary-color);
}

.instructor-text .h4-title {
    transition: var(--transition);
    margin-bottom:0px;
}
.swiper-pagination-bullet-active{
background: #8697c3;
}

.instructor-text .instructor-profession {
    display: inline-block;
    color: var(--primary-color);
}

.share-icon {
    position: relative;
    --size: 35px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(208 94 252 / 20%);
    cursor: pointer;
    transition: var(--transition);
    z-index: 1;
}

.instructor-content-info:hover .share-icon {
    background-color: var(--pink-color-2);
}

.share-icon img {
    transition: var(--transition);
}

.instructor-content-info:hover .share-icon img {
    filter: brightness(0) invert(1);
}

.social-container {
    position: relative;
    display: inline-block;
}

.social-icons {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}

.social-icons a {
    background-color: var(--primary-color);
    color: var(--white-color);
    --size: 35px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    transform: translateY(50px);
    opacity: 0;
}

.social-icons a:hover {
    background-color: var(--pink-color-2);
    color: var(--white-color);
}

.instructor-content-info:hover .social-container .social-icons {
    opacity: 1;
    visibility: visible;
}

.instructor-content-info:hover .social-container .social-icons a {
    transform: translateY(0);
    opacity: 1;
    transition-delay: calc(0.2s * (var(--ch-tb-social)));
}
.newsletter-box {
    position: relative;
    padding: 80px 80px 63px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-10);
    z-index: 1;
    overflow: hidden;
}

.newsletter-shape {
    position: absolute;
    top: -80px;
    left: 108px;
    --width: 838.65px;
    width: var(--width);
    height: calc(var(--width) * 0.58254337327);
    z-index: -1;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.newsletter-content .sec-title {
    max-width: 555px;
}

.newsletter-content .sec-title .sub-title,
.newsletter-content .sec-title .h3-title {
    color: var(--white-color);
}

.newsletter-form {
    flex: auto;
}

.newsletter-form .form-element {
    width: 100%;
    display: inline-block;
}

.newsletter-form .form-input {
    width: 100%;
    height: 70px;
    padding: 5px 210px 5px 19px;
    color: var(--common-color);
    border-radius: var(--border-radius-10);
    border: none;
    background: var(--white-color);
}

.newsletter-form .sec-btn {
      position: absolute;
    /* top: 5px; */
    right: 85px;
    z-index: 1;
    margin-top: 5px;
}
@media screen and (max-width: 1399px) {
    .newsletter-box {
        padding: 60px 60px 43px;
    }
}


.apply-now-box {
    position: relative;
    padding: 26px 80px 0px;
    background-color: var(--primary-color);
    border-radius: var(--border-radius-10);
    z-index: 1;
    overflow: hidden;
}

.apply-now-shape {
    position: absolute;
    top: -96px;
    left: 171px;
    --width: 838.65px;
    width: var(--width);
    height: calc(var(--width) * 0.58254337327);
    z-index: -1;
}

.apply-now-content {
    display: flex;
    gap: 55px;
}

.apply-now-image-box {
    width: 305px;
    align-self: end;
    flex: 0 0 auto;
}

.apply-now-text {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-bottom: 23px;
}

.apply-now-text .sec-title {
    max-width: 425px;
}

.apply-now-text .sec-title .sub-title,
.apply-now-text .sec-title .h3-title {
    color: var(--white-color);
}

/*==========Apply Now CSS End==========*/

/*==========Footer CSS Start==========*/

.top-footer {
     padding-bottom: 55px;
    --extra-space-top: 155px;
    --sec-space-top: 55px;
    margin-top: calc(var(--extra-space-top) * -1);
    padding-top: calc(var(--extra-space-top) + var(--sec-space-top));
    background-color: #EDE8F5;
    position: relative;
}

.footer-bg-aliment-wp {
/*    position: absolute;*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-bg-aliment-wp div[class^="bg-aliment-"] {
    position: absolute;
    display: inline-block;
}

.footer-bg-aliment-wp .bg-aliment-1 {
    top: 56px;
    left: 141px;
}

.footer-bg-aliment-wp .bg-aliment-2 {
    top: 70px;
    right: 110px;
}

.footer-bg-aliment-wp .bg-aliment-3 {
    top: 197px;
    left: 892px;
}

.footer-bg-aliment-wp .bg-aliment-4 {
    top: 204px;
    right: 113px;
}

.footer-bg-aliment-wp .bg-aliment-5 {
    top: 270px;
    left: 84px;
}

.footer-bg-aliment-wp .bg-aliment-6 {
    left: 195px;
    bottom: 262px;
}

.footer-bg-aliment-wp .bg-aliment-6 img {
    width: 19px;
    transform: rotate(30deg);
}

.footer-bg-aliment-wp .bg-aliment-7 {
    right: 196px;
    bottom: 238px;
}

.footer-bg-aliment-wp .bg-aliment-7 img {
    width: 19px;
    transform: rotate(30deg);
}

.footer-bg-aliment-wp .bg-aliment-8 {
    bottom: 20px;
    left: 176px;
}

.footer-bg-aliment-wp .bg-aliment-9 {
    bottom: 32px;
    left: 784px;
}

.footer-bg-aliment-wp .bg-aliment-10 {
    bottom: 78px;
    right: 71px;
}

.footer-bg-aliment-wp .bg-aliment-11 {
    bottom: 26px;
    right: 265px;
}

.footer-about {
    margin-top: 7px;
}

.footer-logo {
    margin-bottom: 23px;
}

.footer-logo a {
    display: inline-block;
}

.footer-logo-about-text {
    margin-bottom: 16px;
}

.footer-logo-about-text p {
    color: #000;
}

.social-info .underline-title,
.our-link-content .underline-title,
.contact-info-box .underline-title {
    color: #000;
}

.social-info .footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.footer-social-icons a {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    background:#8697c3;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background-position: right center;
    background-size: 200% 100%;
}
.our-link-box {
    display: block;
    text-align: center;
    width: 100%;
}

.our-link-content {
    display: inline-block;
    text-align: left;
}

.our-link-content ul {
    margin-top: 22px;
}

.our-link-content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 5px;
}


.our-link-content ul li::before {

      content: '✓';
    position: absolute;
       left: 0px;
    top: 0px;
  /*  width: 9px;
    height: 1px;
    border-radius: 2px;*/
/*    background-color: var(--pink-color-2);*/
}

.our-link-content ul li::before {
    height: 5px;
    width: 5px;
       left: 0px;
    top: 0px;
        color: #ede8f5;
}

.our-link-content ul li:last-child {
    margin-bottom: 0;
}

.our-link-content ul li a {
    color: #000;
    display: inline-block;
}

.our-link-content ul li a:hover {
    color: var(--primary-color);
}

.contact-info-box ul {
    margin-top: 22px;
}

.contact-info-box ul li .contact-icon {
    --size: 40px;
    width: var(--size);
    height: var(--size);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--white-color);
    background: #8697c3;
}

.contact-info-box ul li {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 16px;
}

.contact-info-box ul li:last-child {
    margin-bottom: 0;
}

.contact-info-box ul li span a {
    color: #000;
    display: block;
    word-break: break-word;
}

.contact-info-box ul li span a:hover {
    color: var(--primary-color);
}

.bottom-footer {
    padding: 10px 0 10px;
    background-color: #3c54a0;
}

.footer-bottom-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.copy-right p {
    color: var(--white-color);
        margin-bottom: 0;
}

.copy-right p a {
    color: var(--primary-color);
    text-decoration: none !important;
}

.copy-right p a:hover {
    text-decoration: underline !important;
}

.footer-bottom-link {
    display: inline-block;
    text-align: right;
}

.footer-bottom-link ul {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom-link ul li {
    display: inline-block;
    padding-left: 19px;
    position: relative;
}

.footer-bottom-link ul li:before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.footer-bottom-link ul li a {
    display: inline-block;
    color: var(--white-color);
}

.footer-bottom-link ul li a:hover {
    color: var(--primary-color);
}

/*==========Footer CSS End==========*/

/*==========Back To Top CSS Start==========*/

.scroll-to-top {
    --size: 46px;
    position: fixed;
    height: var(--size);
    width: var(--size);
    right: 50px;
    bottom: 50px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    background: var(--gradient-color);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    z-index: 99;
}

.scroll-to-top:hover {
    animation: waveBtn 2s infinite;
}

@keyframes waveBtn {
    0% {
        box-shadow: 0 0 0 0 rgb(166 69 253 / 50%);
    }

    50% {
        box-shadow: 0 0 0 40px transparent;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
    }
}

.scroll-to-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top::after {
    position: absolute;
    content: "\f062";
    font-family: "FontAwesome";
    text-align: center;
    line-height: var(--size);
    font-size: 20px;
    color: var(--white-color);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-to-top svg path {
    fill: none;
}

.scroll-to-top svg.progress-circle path {
    stroke: var(--white-color);
    stroke-width: 4;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}
.zoom-fade-animation {
    animation-name: zoom-fade-animation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: zoom-fade-animation;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: zoom-fade-animation;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: zoom-fade-animation;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: zoom-fade-animation;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade-animation {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
}

@keyframes zoom-fade-animation {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    100% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
    }
}

.rotate-animation {
    animation-name: rotate-animation;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotate-animation;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotate-animation;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotate-animation;
    -ms-animation-duration: 4s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotate-animation;
    -o-animation-duration: 4s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes rotate-animation {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-animation {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.move-element-animation-1 {
    animation: move-element-animation-1 5s linear infinite;
}

@keyframes move-element-animation-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }

    50% {
        -webkit-transform: translate(5px, 5px);
        transform: translate(5px, 5px);
    }

    75% {
        -webkit-transform: translate(10px, -5px);
        transform: translate(10px, -5px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

.move-element-animation-2 {
    -webkit-animation: move-element-animation-2 8s linear infinite;
    animation: move-element-animation-2 8s linear infinite;
}

@keyframes move-element-animation-2 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    25% {
        -webkit-transform: translate(15px, 15px);
        transform: translate(15px, 15px);
    }

    50% {
        -webkit-transform: translate(8px, 8px);
        transform: translate(8px, 8px);
    }

    75% {
        -webkit-transform: translate(15px, -8px);
        transform: translate(15px, -8px);
    }

    to {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.our-features-image {
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1.08962264151;
    margin: 0 auto;
    overflow: hidden;
}

.our-features-image img {
    width: 80.19%;
    aspect-ratio: 1/1.35882352941;
}

.our-features-image::before {
    content: "";
    position: absolute;
    top: 14.142%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 82.39%;
    height: auto;
    aspect-ratio: 1/1;
    background-color: transparent;
    border: 21px solid rgb(135 150 193);
    border-radius: 100%;
    z-index: -2;
}

.our-features-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.69811320754;
    background: #8796c1;
    --mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MzYiIGhlaWdodD0iNDMwIiB2aWV3Qm94PSIwIDAgNjM2IDQzMCIgZmlsbD0ibm9uZSI+CjxwYXRoIGQ9Ik02MzYgMzAuMjg1MUM2MzYgOS4wNjgxNCA2MTQuNTc3IC01LjQ0NDMzIDU5NC44NzMgMi40MjQ3OEwxOC44NzM0IDIzMi40NjNDNy40NzU3MSAyMzcuMDE0IDAgMjQ4LjA1IDAgMjYwLjMyM1Y0MDBDMCA0MTYuNTY5IDEzLjQzMTUgNDMwIDMwIDQzMEg2MDZDNjIyLjU2OSA0MzAgNjM2IDQxNi41NjkgNjM2IDQwMFYzMC4yODUxWiIgZmlsbD0idXJsKCNwYWludDBfbGluZWFyXzFfNjkyNykiLz4KPGRlZnM+CjxsaW5lYXJHcmFkaWVudCBpZD0icGFpbnQwX2xpbmVhcl8xXzY5MjciIHgxPSIwIiB5MT0iMjA4IiB4Mj0iNjM2IiB5Mj0iMjA4IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CjxzdG9wIHN0b3AtY29sb3I9IiNBNDQ0RkQiLz4KPHN0b3Agb2Zmc2V0PSIxIiBzdG9wLWNvbG9yPSIjRDA1RUZDIi8+CjwvbGluZWFyR3JhZGllbnQ+CjwvZGVmcz4KPC9zdmc+");
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: var(--transition);
    z-index: -1;
}
.strike{
      text-decoration: line-through;
      color: #717171;
}
.save-offer{
  color: #df4271;
}
.join-now{
  background: #8796c1  !important;
    padding: 10px !important;
    font-size: 12px !important;
    color: #000;
}

.inner-banner {
    position: relative;
    padding: 85px 0 50px;
    background-color: var(--light-white-color);
    overflow: hidden;
}

.inner-banner .main-banner-bg-shape .shape-1 {
    top: 273px;
    bottom: auto;
    left: 42.1%;
}

.inner-banner .main-banner-bg-shape .shape-2 {
    top: -110px;
    right: 1%;
}

.inner-banner-bg-aliment-wp {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.inner-banner-bg-aliment-wp div[class^="bg-aliment-"] {
    position: absolute;
    display: inline-block;
}

.inner-banner-bg-aliment-wp .bg-aliment-1 {
    top: 234px;
    left: 132px;
}

.inner-banner-bg-aliment-wp .bg-aliment-2 {
    top: 179px;
    left: 395px;
}

.inner-banner-bg-aliment-wp .bg-aliment-3 {
    top: 201px;
    left: 575px;
}

.inner-banner-bg-aliment-wp .bg-aliment-4 {
    top: 174px;
    right: 882px;
}

.inner-banner-bg-aliment-wp .bg-aliment-5 {
    top: 192px;
    right: 558px;
}

.inner-banner-bg-aliment-wp .bg-aliment-6 {
    top: 272px;
    right: 315px;
}

.inner-banner-bg-aliment-wp .bg-aliment-7 {
    top: 170px;
    right: 154px;
}

.inner-banner-bg-aliment-wp .bg-aliment-8 {
    bottom: 86px;
    left: 227px;
}

.inner-banner-bg-aliment-wp .bg-aliment-9 {
    bottom: 47px;
    left: 338px;
}

.inner-banner-bg-aliment-wp .bg-aliment-9 img {
    width: 19px;
    transform: rotate(30deg);
}

.inner-banner-bg-aliment-wp .bg-aliment-10 {
    bottom: 111px;
    left: 483px;
}

.inner-banner-bg-aliment-wp .bg-aliment-11 {
    bottom: 54px;
    left: 679px;
}

.inner-banner-bg-aliment-wp .bg-aliment-12 {
    bottom: 34px;
    right: 707px;
}

.inner-banner-bg-aliment-wp .bg-aliment-13 {
    bottom: 66px;
    right: 454px;
}

.inner-banner-bg-aliment-wp .bg-aliment-14 {
    bottom: 86px;
    right: 122px;
}

.inner-banner .banner-content .h1-title {
    margin-bottom: 5px;
    font-size: 38px;
}

.banner-breadcrum {
    background-color: var(--primary-color);
    display: inline-block;
    padding: 8px 20px 7px;
    border-radius: 5px;
        position: relative;
}
.banner-content{
  position: relative;
}
.banner-breadcrum ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
        position: relative;
}

.banner-breadcrum ul li,
.banner-breadcrum ul li a {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
        font-size: 12px;
}

.banner-breadcrum ul li i {
    color: var(--white-color);
    font-size: 12px;
}

.banner-breadcrum ul li a:hover {
    text-decoration: underline !important;
}


.courses-search-form {
    position: relative;
    margin-bottom: 30px;
}

.courses-search-form .form-input {
    width: 100%;
    height: 60px;
    padding: 12px 60px 12px 30px;
    border-radius: var(--border-radius-10);
    box-shadow: var(--box-shadow-1);
    background-color: var(--white-color);
    color: var(--common-color);
    outline: none;
    border: none;
}

.courses-search-form .sec-btn {
    --size: 50px;
    width: var(--size);
    height: var(--size);
    position: absolute;
    top: 5px;
    right: 5px;
    border-radius: var(--border-radius-10);
    padding: 0;
}

.courses-search-form .sec-btn span img {
    filter: brightness(0) invert(1);
    width: 18px;
}

.courses-search-form .sec-btn::after,
.courses-search-form .sec-btn span::after {
    content: none;
}

.courses-sidebar-pricing,
.courses-sidebar-categories,
.courses-sidebar-rating {
    background-color: var(--white-color);
    border-radius: var(--border-radius-10);
    margin-bottom: 30px;
    box-shadow: var(--box-shadow-1);
    padding: 24px 30px 30px;
}

.courses-sidebar-title {
    margin-bottom: 23px;
}

.courses-sidebar-pricing {
    padding: 24px 30px 25px;
}

.courses-sidebar-pricing .courses-sidebar-title {
    margin-bottom: 34px;
}

.courses-price-range-wp .slider-box label,
.courses-price-range-wp .slider-box span {
    display: inline-block;
}

.courses-price-range-wp .slider-box .ui-slider {
    width: 95%;
    margin: 0 auto 19px;
}

.courses-price-range-wp .ui-slider {
    border-radius: 30px;
    border: none;
    position: relative;
    height: 8px;
}

.courses-price-range-wp .ui-slider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    border-radius: 30px;
    opacity: 0.2;
}

.courses-price-range-wp .ui-slider .ui-slider-range {
    background: var(--gradient-color);
}

.courses-price-range-wp .ui-slider .ui-slider-handle {
    --size: 20px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    width: var(--size);
    height: var(--size);
    background: var(--gradient-color);
    border-radius: 100%;
    box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0.1);
    border: none;
    z-index: 2;
    cursor: pointer;
}

.courses-price-range-wp .ui-slider .ui-slider-handle.ui-state-hover,
.courses-price-range-wp .ui-slider .ui-slider-handle.ui-state-focus,
.courses-price-range-wp .ui-slider .ui-slider-handle.ui-state-active {
    border: none;
    outline: none;
    background: var(--gradient-color);
}

.courses-price-range-wp .ui-slider .ui-slider-handle:hover,
.courses-price-range-wp .ui-slider .ui-slider-handle:focus {
    outline: none;
}

.courses-price-range-wp .ui-slider .ui-slider-handle::before {
    content: '';
    --size: 12px;
    position: absolute;
    width: var(--size);
    height: var(--size);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 100%;
    background-color: var(--white-color);
    cursor: pointer;
}

.courses-sidebar-categories ul .form-check {
    margin-bottom: 0;
}

.courses-sidebar-categories ul li:not(:last-child) {
    margin-bottom: 14px;
}

.courses-sidebar-categories ul .form-check-label {
    cursor: pointer;
}

.courses-sidebar-categories ul .form-check .form-check-input {
    float: left;
    margin-right: 10px;
    margin-top: 2px;
}

.courses-sidebar-categories ul li .form-check-input {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    border: 1px solid var(--common-color);
    cursor: pointer;
    transition: var(--transition);
}

.courses-sidebar-categories ul li .form-check-input:checked {
    background-color: var(--pink-color-2);
    border-color: var(--pink-color-2);
    transition: var(--transition);
}

.courses-sidebar-categories ul li .form-check-input:focus {
    box-shadow: none;
}

.courses-sidebar-categories ul li .form-check-input[type="checkbox"] {
    border-radius: 4px;
}

.courses-sidebar-rating {
    margin-bottom: 0;
}

.courses-sidebar-rating .star-group {
    display: inline-flex;
    gap: 10px;
}

.courses-sidebar-rating .star-group i {
    font-size: 18px;
    color: var(--yellow-color);
}

.courses-sidebar-rating .star-group i.normal-start {
    color: var(--gray-color-2);
}

.courses-list-box-row-wp {
    padding-left: 26px;
}

.courses-list-style-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 9px 10px;
    border-radius: var(--border-radius-10);
    background-color: var(--light-white-color);
}

.courses-list-show-box {
    display: flex;
    align-items: center;
    gap: 9px;
}

.courses-list-show-box ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.courses-list-show-box ul li a {
    --size: 40px;
    position: relative;
    width: var(--size);
    height: var(--size);
    border-radius: var(--border-radius-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: var(--transition);
    overflow: hidden;
    z-index: 1;
}

.courses-list-show-box ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-color);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.courses-list-show-box ul li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    border: 1px solid var(--common-color);
    border-radius: var(--border-radius-10);
    transition: var(--transition);
    z-index: -1;
}

.courses-list-show-box ul li.active a::before,
.courses-list-show-box ul li a:hover:before {
    opacity: 0;
}

.courses-list-show-box ul li a img {
    transition: var(--transition);
}

.courses-list-show-box ul li.active a:after,
.courses-list-show-box ul li a:hover:after {
    opacity: 1;
}

.courses-list-show-box ul li.active a,
.courses-list-show-box ul li a:hover {
    border-color: transparent;
}

.courses-list-show-box ul li.active a img,
.courses-list-show-box ul li a:hover img {
    filter: brightness(0) invert(1);
}

.courses-list-dropdown-box .form-element {
    width: 185px;
    padding: 7px 30px 8px 19px;
    border-radius: var(--border-radius-10);
    color: var(--common-color);
    border: 1px solid var(--common-color);
    display: flex;
}

.courses-list-dropdown-box .sort-by-text {
    color: var(--secondary-color);
    flex: 0 0 auto;
}

.courses-list-dropdown-box .form-input {
    padding: 0 5px;
    color: var(--common-color);
    border: none;
    background: transparent;
    outline: none;
    width: calc(100% - 40px);
    height: auto;
    flex: 0 0 auto;
}

.courses-list-dropdown-box .form-element i {
    color: var(--common-color);
    position: absolute;
    top: 11px;
    right: 16px;
    pointer-events: none;
}

.courses-list-box-row {
    padding-top: 30px;
}

.courses-list-box-row .row:not(.courses-pagination-row) {
    --bs-gutter-y: 24px;
}

.courses-grid-sec .courses-list-box-row-wp .post-image {
    aspect-ratio: 1 / 0.67055393586;
}

.courses-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.pagination-arrow {
    display: inline-block;
    color: var(--common-color);
    font-size: 20px;
    transition: var(--transition);
}

.pagination-arrow:hover {
    color: var(--primary-color);
}

.courses-pagination ul {
    display: flex;
    gap: 10px;
    vertical-align: middle;
    font-size: 0;
}

.courses-pagination ul li a {
    --size: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: var(--size);
    height: var(--size);
    background-color: var(--gray-color-2);
    color: #000;
    font-size: 18px;
    line-height: 28px;
    border-radius: var(--border-radius-10);
    cursor: pointer;
    transition: var(--transition);
}

.courses-pagination ul li.active a,
.courses-pagination ul li a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}
@media screen and (max-width: 575px) {
    .courses-list-style-box {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }
}

.course-detail-box {
    padding-right: 26px;
}

.course-detail-image {
    width: 100%;
/*    aspect-ratio: 1/0.60240963;*/
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.course-detail-image img {
    transform: scale(1);
    transition: var(--transition);
    border-radius: 20px;

    height: 500px;
    width: 100%;
    object-fit: none;
    border: 1px solid #ececec;
}

.course-detail-image:hover img {
    transform: scale(1.05);
}

.course-detail-content .post-tag {
    margin-bottom: 10px;
}

.course-detail-title {
    margin-bottom: 13px;
}

.course-detail-content .post-author-review-info {
    padding-top: 0;
    border-top: none;
    margin-bottom: 21px;
}

.course-detail-description-text {
    margin-bottom: 39px;
}

.course-detail-feature-box {
    margin-bottom: 30px;
}

.course-detail-feature-box .h4-title {
    margin-bottom: 16px;
}

.course-detail-feature-box ul {
    column-count: 2;
    column-gap: 24px;
    break-inside: avoid;
}

.course-detail-feature-box ul li {
    break-inside: avoid;
    padding-left: 30px;
    color: var(--secondary-color);
}

.course-detail-feature-box.common-list-style ul li::before {
    --size: 20px;
}

.course-requirement-detail .h4-title {
    margin-bottom: 19px;
}

.course-requirement-box-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-requirement-box {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 10px;
    padding: 19px 20px 20px;
    background-color: var(--white-color);
    border-radius: var(--border-radius-10);
    box-shadow: var(--box-shadow-1);
    overflow: hidden;
    transition: var(--transition);
}

.course-requirement-box:hover {
    box-shadow: 0 4px 60px -1px rgb(0 0 0 / 15%);
}

.course-requirement-box:hover .course-requirement-icon img {
    animation: hvr-buzz-out 0.75s linear 1;
}

.course-requirement-text p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.related-courses-wp .row {
    --bs-gutter-y: 24px;
}

.related-courses-wp .post-image {
    aspect-ratio: 1 / 0.67055393586;
}

.course-fees-info-box {
    padding: 30px;
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
    margin-bottom: 30px;
}

.course-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.61797752809;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius-10);
}

.course-video-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.course-video-box:hover:before {
    opacity: 0.5 !important;
}

.course-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-video-box a {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.course-video-description {
    margin: 25px 0 43px;
}

.course-video-description .course-fees {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.course-video-description .course-fees p {
    color: var(--secondary-color);
}

.course-video-description .course-fees .h4-title {
    color: var(--primary-color);
}

.course-join-btn {
    margin-top: 23px;
}

.course-join-btn .sec-btn {
    width: 100%;
}

.course-includes-wp {
    margin-bottom: 43px;
}

.course-includes-wp .h4-title {
    margin-bottom: 15px;
}

.course-includes-wp ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 48px;
}

.course-includes-wp ul li {
    display: flex;
    align-items: center;
    gap: 9px;
}
.course-includes-wp ul li p{
  margin-bottom: 0;
}
.course-includes-wp ul li span.icon {
    flex: 0 0 auto;
}

.share-now-wp .h4-title {
    margin-bottom: 19px;
}

.share-now-wp .footer-social-icons {
    display: flex;
    gap: 10px;
}

.share-now-wp .footer-social-icons a {
    background: var(--primary-color);
}

.share-now-wp .footer-social-icons a:hover {
    background: var(--pink-color-2);
}

.recent-courses-added-wp {
    padding: 25px 30px 30px;
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
}

.recent-courses-added-box-wp .recent-courses-added-box:not(:last-child) {
    margin-bottom: 20px;
}

.recent-courses-added-wp .underline-title {
    margin-bottom: 30px;
}

.recent-courses-added-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.recent-courses-added-image {
    width: 100px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-10);
    overflow: hidden;
    flex: 0 0 auto;
}

.recent-courses-added-image img {
    transform: scale(1);
    transition: var(--transition);
        width: 100px;
    height: 100px;
}

.recent-courses-added-box:hover .recent-courses-added-image img {
    transform: scale(1.05);
}

.recent-courses-added-content .star-group {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.recent-courses-added-content .star-group i {
    font-size: 12px;
    color: var(--yellow-color);
}

.recent-courses-added-title {
    margin-bottom: 2px;
}

.recent-courses-added-title a {
    display: inline-block;
    color: var(--secondary-color);
}

.recent-courses-added-title a:hover {
    color: var(--primary-color) !important;
}

.recent-courses-added-price p {
    color: var(--primary-color);
}
.common-list-style ul li {
    position: relative;
    padding-left: 28px;
}

.common-list-style ul li::before {
    content: "";
    --size: 18px;
    position: absolute;
    top: 2px;
    left: 0;
    width: var(--size);
    height: var(--size);
    background-image: url(../images/circle-check-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.common-list-style ul li:not(:last-child) {
    margin-bottom: 18px;
}

.pricing-join-btn {
    text-align: center;
    margin-top: 24px;
}
.course-fees-info-box {
    padding: 30px;
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
    margin-bottom: 30px;
}

.course-video-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.61797752809;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius-10);
}

.course-video-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.3;
    transition: var(--transition);
}

.course-video-box:hover:before {
    opacity: 0.5 !important;
}

.course-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-video-box a {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.course-video-description {
    margin: 15px 0 43px;
}

.course-video-description .course-fees {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 5px;
}

.course-video-description .course-fees p {
    color: var(--secondary-color);
    margin-bottom: 0;
}

.course-video-description .course-fees .h4-title {
    color: #3d539f;
}

.course-join-btn {
    margin-top: 23px;
}

.course-join-btn .sec-btn {
    width: 100%;
}

.course-includes-wp {
    margin-bottom: 43px;
}

.course-includes-wp .h4-title {
    margin-bottom: 15px;
}

.form-input {
    width: 100%;
    height: 50px;
    padding: 13px 30px 12px;
    font-size: 15px;
    line-height: 25px;
    color: var(--dark-color);
    border-radius: var(--border-radius-10);
    outline: none;
    box-shadow: none;
    border: 1px solid var(--common-color);
    background: var(--white-color);
}
.play-btn {
    --size: 60px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: var(--white-color);
    transition: var(--transition);
}

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

.play-btn::before,
.play-btn::after {
    content: "";
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    background-color: rgb(255 255 255 / 70%);
    border-radius: 50%;
    z-index: -2;
    transition: var(--transition) all;
    animation: blink-animation 2s linear infinite;
    animation-delay: 0.7s;
    opacity: 0;
}

.play-btn::after {
    width: calc(100% + 15px);
    height: calc(100% + 15px);
    background-color: rgb(255 255 255 / 90%);
    z-index: -1;
}

@keyframes blink-animation {
    0% {
        -webkit-transform: translate(-50%, -50%) scale(0.5);
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1
    }

    100% {
        -webkit-transform: translate(-50%, -50%) scale(1.3);
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0
    }
}

.play-btn i {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 3px;
    transition: var(--transition);
}

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

.contact-us-links-row .row {
    --bs-gutter-y: 24px;
}

.contact-us-link-box {
    height: 100%;
    display: flex;
    gap: 20px;
    padding: 22px 30px 24px;
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
    transition: var(--transition);
}

.contact-us-link-box:hover {
    box-shadow: 0 4px 60px -1px rgb(0 0 0 / 15%);
}

.contact-us-link-box .contact-us-link-icon {
    width: 50px;
    flex: 0 0 auto;
    margin-top: 7px;
}

.contact-us-text .h4-title {
    margin-bottom: 6px;
}

.contact-us-link-text a {
    display: block;
    color: rgb(102 102 102 / 80%);
}

.contact-us-link-text a:hover {
    color: var(--primary-color);
}

.contact-us-map-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.78616352201;
    border-radius: var(--border-radius-10);
    overflow: hidden;
}

.contact-us-map-box iframe {
    width: 100%;
    height: 100%;
}

.contact-us-box {
    padding-left: 26px;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

.form-element {
    position: relative;
}

.form-input-wp {
    display: block;
    position: relative;
    font-size: 0;
    line-height: 1;
    margin-bottom: 24px;
}

.form-input::placeholder {
    color: var(--common-color);
    opacity: 1;
}

.form-input {
    width: 100%;
    height: 50px;
    padding: 13px 30px 12px;
    font-size: 15px;
    line-height: 25px;
    color: var(--dark-color);
    border-radius: var(--border-radius-10);
    outline: none;
    box-shadow: none;
    border: 1px solid var(--common-color);
    background: var(--white-color);
}

textarea.form-input {
    height: 120px;
    resize: none;
}

.form-box form .sec-btn {
    margin-top: 2px;
}

.about-image-box-bg1 {
    width: 100%;
    top: -45px;
    aspect-ratio: auto;
    /* padding-bottom: 24px; */
    bottom: -26px;
    /* padding: 20px; */
}
.about-image-box-wp1 {
  max-width: 100%;
}
.text-left{
  text-align: left;
}
.contact-us-box1 {
    padding-left: 26px;
    padding: 0 30px;
}
.about-content1 {
   
     max-width: 650px; 
}
.content-img-wrap {
    max-width: 634px;
    width: 100%;
    height: 608px;
    position: relative;
}.content-img-wrap .content-img-1 {
    max-width: 302px;
    width: 100%;
    height: 480px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 60px 0 60px 0;
    overflow: hidden;
    z-index: 1;
}.content-img-wrap .content-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}.content-img-wrap .content-img-2 {
    max-width: 302px;
    width: 100%;
    height: 294px;
    overflow: hidden;
    border-radius: 0 60px 0 60px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}.content-img-wrap .content-img-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}.content-img-wrap .content-img-3 {
    max-width: 302px;
    width: 100%;
    height: 294px;
    overflow: hidden;
    border-radius: 60px 0 60px 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}.content-img-wrap .content-img-3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}.content-img-wrap .border-shape {
    max-width: 347px;
    width: 100%;
    height: 552px;
    border: 10px inset #8796c1;
    border-radius: 60px 0 60px;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.content-item {
    display: grid
;
    align-items: center;
    grid-template-columns: 85px 1fr;
    padding: 30px;
    border: 1px solid #E0E5EB;
    border-radius: 10px;
    grid-gap: 20px;
    -webkit-transition: all 0.3sease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease-in-out;
}
.content-item .icon {
    background-color: #ECF3F8;
    height: 85px;
    width: 85px;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.3sease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease-in-out;
}
.content-item .icon img {
    -webkit-transition: all 0.3sease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease-in-out;
}
.content-item .content p {
    margin-bottom: 0;
}

.promo-item-2 {
    text-align: center;
    border: 1px solid #E0E5EB;
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    background: #fff;
}

.promo-item-2:hover{
  box-shadow: 0px 10px 28px rgba(19, 36, 39, 0.13);

}
.promo-item-2 .number {
    color: rgb(135 150 193 / 32%);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    position: absolute;
    top: 40px;
    left: 30px;
    -webkit-transition: all 0.3sease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3sease-in-out;
}.promo-item-2 .icon {
    display: flex
;
    align-items: center;
    justify-content: center;
    height: 100px;
    width: 100px;
    border: 1px solid #E0E5EB;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 25px;
  transition: all 0.9sease-in-out;
}
.promo-item-2 .title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.promo-item-2:hover .number {
    color: #3a54a6;
}
.mb-30 {
    margin-bottom: 30px;
}


.promo-item-2:hover .icon {
   
    border: 1px solid #3a54a6;
    
}
.content-item:hover {
    border: 1px solid transparent;
    box-shadow: 0px 10px 28px rgba(19, 36, 39, 0.13);
}

.become-ins{
  padding: 120px 0 !important;
}
.choose-us{
   padding: 100px 0 !important;
}
.resons{
  padding: 120px 0 !important;
    background-image: url(../images/course_bg_1.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.read-more-btn span {
    position: relative;
    display: flex
;
    align-items: center;
    z-index: 2;
    gap: 10px;
}
.row.our-blog-row {
    --bs-gutter-y: 24px;
}

.common-post-card.blog-card {
    padding: 30px 30px 22px;
}

.common-post-card.blog-card .post-lessons-info ul {
    justify-content: start;
}

.common-post-card.blog-card .post-image {
    aspect-ratio: 1 / 0.74719101123;
    border-radius: var(--border-radius-10);
}

.common-post-card.blog-card .common-post-content .post-lessons-info {
    margin-bottom: 18px;
}

.post-content-btn {
    margin-top: 13px;
}.read-more-btn {
    display: inline-block;
    color: var(--pink-color-2);
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: underline !important;
}.read-more-btn span::after {
    content: "";
    position: relative;
    left: 0;
    display: block;
    width: 18px;
    height: 13px;
    background: linear-gradient(-90deg, rgba(208, 94, 252, 1) 0%, rgba(208, 94, 252, 0) 100%);
    --mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDIwIDE0IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTE4LjkyMzIgNi4wODQ4NEwxMy4wODk4IDAuMjUxNTA1QzEyLjkzMjcgMC4wOTk3MDY2IDEyLjcyMjEgMC4wMTU3MTA5IDEyLjUwMzcgMC4wMTc2MDk2QzEyLjI4NTIgMC4wMTk1MDgzIDEyLjA3NjEgMC4xMDcxNDkgMTEuOTIxNiAwLjI2MTY1NkMxMS43NjcxIDAuNDE2MTYzIDExLjY3OTUgMC42MjUxNzMgMTEuNjc3NiAwLjg0MzY3QzExLjY3NTcgMS4wNjIxNyAxMS43NTk3IDEuMjcyNjcgMTEuOTExNSAxLjQyOTg0TDE2LjMyMjMgNS44NDA2N0gxLjY2NzMyQzEuNDQ2MyA1Ljg0MDY3IDEuMjM0MzQgNS45Mjg0NyAxLjA3ODA2IDYuMDg0NzVDMC45MjE3ODIgNi4yNDEwMyAwLjgzMzk4NCA2LjQ1Mjk5IDAuODMzOTg0IDYuNjc0MDFDMC44MzM5ODQgNi44OTUwMiAwLjkyMTc4MiA3LjEwNjk4IDEuMDc4MDYgNy4yNjMyNkMxLjIzNDM0IDcuNDE5NTQgMS40NDYzIDcuNTA3MzQgMS42NjczMiA3LjUwNzM0SDE2LjMyMjNMMTEuOTExNSAxMS45MTgyQzExLjgzMTkgMTEuOTk1IDExLjc2ODQgMTIuMDg3IDExLjcyNDcgMTIuMTg4N0MxMS42ODExIDEyLjI5MDMgMTEuNjU4MSAxMi4zOTk3IDExLjY1NzEgMTIuNTEwM0MxMS42NTYxIDEyLjYyMSAxMS42NzcyIDEyLjczMDcgMTEuNzE5MSAxMi44MzMxQzExLjc2MSAxMi45MzU1IDExLjgyMjkgMTMuMDI4NiAxMS45MDEyIDEzLjEwNjhDMTEuOTc5NCAxMy4xODUxIDEyLjA3MjQgMTMuMjQ3IDEyLjE3NDkgMTMuMjg4OUMxMi4yNzczIDEzLjMzMDggMTIuMzg3IDEzLjM1MTggMTIuNDk3NyAxMy4zNTA5QzEyLjYwODMgMTMuMzQ5OSAxMi43MTc3IDEzLjMyNjkgMTIuODE5MyAxMy4yODMzQzEyLjkyMSAxMy4yMzk2IDEzLjAxMjkgMTMuMTc2MSAxMy4wODk4IDEzLjA5NjVMMTguOTIzMiA3LjI2MzE3QzE5LjA3OTQgNy4xMDY5IDE5LjE2NzEgNi44OTQ5OCAxOS4xNjcxIDYuNjc0MDFDMTkuMTY3MSA2LjQ1MzA0IDE5LjA3OTQgNi4yNDExMSAxOC45MjMyIDYuMDg0ODRaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4=);
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: cover;
    mask-size: cover;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: var(--transition);
}

.pos-r {
    position: relative;
}
/*section{padding: 80px 0;}*/
.section-title{margin-bottom:50px; position: relative;}
.section-title p{font-size: 16px;}
.title-effect {width: 50px; height: 50px; top: 0; position: absolute; left: 0; opacity: 0.5; animation: rotation 12.8s steps(1) 0s infinite;}
.text-center .title-effect{left: 50%; margin-left: -25px;}
.text-center .section-title h6{padding: 15px 0;}

.title-effect .bar {background: #2575fc;}
.title-effect .bar-top {width: 100%; height: 7px; position: absolute; top: 0; left: 0; transform-origin: left top; transform: scale(0, 1); animation: bar-top 3.2s linear 0s infinite;}
.title-effect .bar-right {width: 7px; height: 100%; position: absolute; top: 0; right: 0; transform-origin: left top; transform: scale(1, 0); animation: bar-right 3.2s linear 0s infinite;}
.title-effect .bar-bottom {width: 100%; height: 7px; position: absolute; right: 0; bottom: 0; transform-origin: right top; transform: scale(0, 1); animation: bar-bottom 3.2s linear 0s infinite;}
.title-effect .bar-left {width: 7px; height: 100%; position: absolute; left: 0; bottom: 0; transform-origin: left bottom; transform: scale(1, 0); animation: bar-left 3.2s linear 0s infinite;}

.title {position: relative; color: #1c1d3e; margin-bottom: 0;}
.section-title h2{margin-bottom: 15px;}

/* ------------------------
    How It Work
------------------------*/
.work-process{position: relative;}
.step-num {background: #fff; border-radius: 50%; box-shadow: 0 12px 20px 0 rgba(117, 178, 240, 0.4); color: #8796c1; display: inline-block; font-size: 18px; font-weight: 600; height: 50px; right: 0; line-height: 55px; position: absolute; text-align: center; top: 0; width: 50px;}
.theme-bg .work-process h4, .theme-bg .work-process p{color: #ffffff;}
.step-icon {     background: #8796c1;
    width: 140px;
    height: 140px;
    position: relative;
    border: 3px solid #fff;
    border-radius: 50%;
    line-height: 140px;
    font-size: 54px;
    text-align: center;
    color: #ececec;}
.step-icon span {position: relative;}
.step-icon span::after, .step-icon span::before {border-radius: 50%; content: ""; height: 40px; position: absolute; width: 40px; z-index: -1;}
.step-icon span::after {background: #cdf3f6; height: 25px; left: -10px; top: 5px; width: 25px;}
.step-icon span::before {background: #d4f8e6; bottom: 0; right: -10px;}
.dark-bg .step-icon{color: rgba(255,255,255,0.9); background: none;}
.dark-bg .step-desc h4{color: #2575fc;}
.dark-bg .step-icon{border-color: rgba(255,255,255,0.1);}
.dark-bg .step-desc p{color: rgba(255,255,255,0.7);}
.step-num-box{position: relative; display: inline-block; margin-bottom: 20px;}
.work-process .box-loader{position: absolute; top: 30%; right: -15%; left: inherit;}
.work-process.style-2 {padding: 0; display: flex; align-items: center;}
.work-process.style-2:before{display: none;}
.work-process.style-2 .step-num-box {margin-bottom: 0; margin-right: 30px;}
.work-process.style-3 {padding: 70px 30px 0;}
.work-process.style-3 .step-num {background: none; box-shadow: none; color: rgba(255, 255, 255, 0.1); font-size: 120px; height: auto; left: 50%; line-height: 120px; margin-bottom: 0; position: absolute; top: 0; transform: translateX(-50%); width: auto;}
#svg-container {position: absolute; width: 100%; left: 52%;  z-index: 999; transform: translateX(-50%); width: 75%;}
#svgC {margin: 0 auto; width: 100%;}


/* ------------------------
    box-loader
------------------------*/
.box-loader {border-radius: 100%; margin: 0 auto; position: absolute; top: 15px; left: 15px;}
.box-loader span{display: inline-block; width: 10px; height: 10px; border-radius: 100%; background: #2575fc; margin: 0 5px; opacity: 0;}
.box-loader span:nth-child(1){animation: opacitychange 1s ease-in-out infinite;}
.box-loader span:nth-child(2){animation: opacitychange 1s ease-in-out 0.33s infinite;}
.box-loader span:nth-child(3){animation: opacitychange 1s ease-in-out 0.66s infinite;}


/*--rotation--*/

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(270deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes bar-top {
  0% {
    transform: scale(0, 1);
  }
  12.5% {
    transform: scale(1, 1);
  }
  87.5% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
@keyframes bar-right {
  0% {
    transform: scale(1, 0);
  }
  12.5% {
    transform: scale(1, 0);
  }
  25% {
    transform: scale(1, 1);
  }
  75% {
    transform: scale(1, 1);
  }
  87.5% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 0);
  }
}
@keyframes bar-bottom {
  0% {
    transform: scale(0, 1);
  }
  25% {
    transform: scale(0, 1);
  }
  37.5% {
    transform: scale(1, 1);
  }
  62.5% {
    transform: scale(1, 1);
  }
  75% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(0, 1);
  }
}
@keyframes bar-left {
  0% {
    transform: scale(1, 0);
  }
  37.5% {
    transform: scale(1, 0);
  }
  50% {
    transform: scale(1, 1);
  }
  62.5% {
    transform: scale(1, 0);
  }
  100% {
    transform: scale(1, 0);
  }
}

/*--opacitychange--*/

@keyframes opacitychange{
  0%, 100%{
    opacity: 0;
  }

  60%{
    opacity: 1;
  }
}

/* responsive */
@media (max-width: 1200px){
  #svg-container { width: 85%; }
}
@media (max-width: 992px){
  .md-mt-5 { margin-top: 50px !important; }
  /*Step*/
  .work-process .box-loader{display: none;}
  .step-desc p {max-width: 300px;  margin: 0 auto;}
  #svg-container {width: 100%; transform: rotate(90deg); left: 0; top: 50%;}
}
.process-bg{
background-image: url(../images/event-bg_1.png);
background-repeat: no-repeat;
background-size: cover;
    padding: 80px 0;
}
.contact-us-links-row{
  padding-bottom: 40px;
}
.edufit-image-box.style-one {
  height: 585px;
  position: relative;
  z-index: 1;
  padding-top: 90px;
}
@media screen and (max-width: 1199px) {
  .edufit-image-box.style-one {
    max-width: 690px;
    margin: 0 auto 50px;
  }
}
.edufit-image-box.style-one .shape {
  position: absolute;
  z-index: -1;
}
.edufit-image-box.style-one .shape.shape_one {
  left: -90px;
  top: 0;
}
.edufit-image-box.style-one .shape.shape_two {
  right: 100px;
  bottom: 20%;
}
.edufit-image-box.style-one .edufit-img.image_one img {
  border-radius: 10px;
}
.edufit-image-box.style-one .edufit-img.image_two {
  position: absolute;
  top: 0;
  right: 30px;
  display: inline-block;
  padding: 20px;
  border-radius: 15px;
  background-color: var(--white-color);
  -webkit-box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
          box-shadow: -3px 0px 50px 0px rgba(98, 85, 250, 0.1);
}
.edufit-image-box.style-one .edufit-img.image_two img {
  width: 100%;
  border-radius: 10px;
}
.edufit-image-box.style-one .edufit-img.image_two .line {
  display: block;
  border-radius: 10px;
  background-color: #F5F5F5;
  height: 10px;
}
.edufit-image-box.style-one .edufit-img.image_two .line.line1 {
  width: 80%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.edufit-image-box.style-one .edufit-img.image_two .line.line2 {
  width: 40%;
}
.edufit-image-box.style-one .ef-iconic-box {
  position: absolute;
  bottom: 0;
  left: 30px;
  max-width: 300px;
  border-radius: 15px;
}

.academics-programs-sec {
      background-image: url(../images/event-bg_1.png);
    background-repeat: no-repeat;
    background-size: cover;
   
}

.academics-programs-box-row.row {
    --bs-gutter-y: 24px;
}

.academics-box {
    position: relative;
    transition: var(--transition);
}

.academics-image-box {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.08169934641;
    border-radius: var(--border-radius-10);
    overflow: hidden;
}

.academics-image-box img {
    width: 100%;
    transition: var(--transition);
    transform: scale(1);
}

.academics-box:hover .academics-image-box img {
    transform: scale(1.05);
}

.academics-content-info {
    width: calc(100% - 60px);
    padding: 23px 30px;
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
    text-align: center;
    margin: -63px auto 0;
    box-shadow: var(--box-shadow-1);
    position: relative;
}

.academics-content-info .h4-title {
    margin-bottom: 8px;
}
.ef-iconic-info-box.style-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.ef-iconic-info-box.style-one .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  margin-right: 20px;
  font-size: 55px;
  color: var(--heading-color);
}
@media (max-width: 575px) {
  .ef-iconic-info-box.style-one .icon {
    margin-bottom: 10px;
  }
}
.ef-iconic-info-box.style-one .content p {
  font: 600 20px var(--heading-font);
  color: var(--heading-color);
  line-height: 30px;
}
.ef-iconic-info-box.style-one .content p:hover a {
  color: var(--primary-color);
}
.ef-iconic-info-box.style-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
          align-items: center;
}
.ef-iconic-info-box.style-two .icon-box {
  width: 80px;
  height: 80px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 30px;
}
.ef-iconic-info-box.style-two .icon-box .icon {
  width: 55px;
  height: 55px;
  border-radius: 20px;
  background-color: var(--primary-color);
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
}
.ef-iconic-info-box.style-two .content h4 {
  font-size: 20px;
}
.ef-iconic-info-box.style-two .content p {
  font-size: 16px;
  line-height: 22px;
      margin-bottom: 5px;
}
.ef-iconic-info-box.style-two .content p:hover a {
  color: var(--primary-color);
}
.ef-iconic-info-box.style-two .content p a{
    font-size: 16px;
    line-height: 22px;
     color: #000; 
     margin-bottom: 0px;
}
.contact-us-sec {
  padding: 80px 0 0;
}
.apply-now-sec{
  padding: 0 !important;
  margin-top: 0px;
}

.v-list li{
font-size: 50px;
}

/*.vrudhhi-list li:before {
content: ‘✓’;
}*/
.columns1 ul{
  columns: 1 !important;
}
ol{
  padding-left: 20px !important;
}
ol li{
  list-style-type: circle !important;
      padding-left: 0 !important;
}
ol li:before{
  display: none !important;
}
.form-select,select {
    display: block;
    width: 100%;
    line-height: 1.5;
    vertical-align: middle;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right 26px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer
}

.form-select.nice-select,select.nice-select {
    border: none;
    padding: 15px 25px;
    background-color: var(--smoke-color);
    background-image: none;
    z-index: 11
}

.form-select.nice-select .list,select.nice-select .list {
    width: 100%
}

.form-select.nice-select:after,select.nice-select:after {
    border-bottom: 1px solid #9FAAB7;
    border-right: 1px solid #9FAAB7;
    height: 8px;
    right: 25px;
    width: 8px
}

.form-select.style-white,select.style-white {
    background: var(--white-color)
}

textarea.form-control,textarea {
    min-height: 150px;
    padding-top: 16px;
    padding-bottom: 17px;
    border-radius: 5px
}

.form-group {
    margin-bottom: var(--bs-gutter-x);
    position: relative;
    display: inline-block;
    width: 100%
}

.form-group>i {
    display: inline-block;
    position: absolute;
    right: 25px;
    top: 19px;
    font-size: 16px;
    color: #93a5be
}

.form-group>i.fa-envelope {
    padding-top: 1px
}

.form-group>i.fa-comment {
    margin-top: -2px
}

.form-group>i.fa-chevron-down {
    width: 17px;
    background-color: var(--white-color)
}

.form-group.has-label>i {
    top: 50px
}

[class*="col-"].form-group>i {
    right: calc((var(--bs-gutter-x) / 2) + 25px)
}

[class*="col-"].form-group .style2 ~ i {
    left: calc((var(--bs-gutter-x) / 2) + 25px)
}

/*option:checked,option:focus,option:hover {
    background-color: var(--theme-color);
    color: var(--white-color)
}

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

input[type="number"] {
    -moz-appearance: textfield
}

input[type="checkbox"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none
}

input[type="checkbox"]:checked ~ label:before {
    content: "\f00c";
    color: var(--white-color);
    background-color: var(--theme-color);
    border-color: var(--theme-color)
}

input[type="checkbox"] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: block
}

input[type="checkbox"] ~ label:before {
    content: "";
    font-family: var(--icon-font);
    font-weight: 700;
    position: absolute;
    left: 0px;
    top: 3.5px;
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    height: 18px;
    width: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px
}

input[type="radio"] {
    visibility: hidden;
    opacity: 0;
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 0;
    display: none
}

input[type="radio"] ~ label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 1;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 0
}

input[type="radio"] ~ label::before {
    content: "\f111";
    position: absolute;
    font-family: var(--icon-font);
    left: 0;
    top: -2px;
    width: 20px;
    height: 20px;
    padding-left: 0;
    font-size: 0.6em;
    line-height: 19px;
    text-align: center;
    border: 1px solid var(--theme-color);
    border-radius: 100%;
    font-weight: 700;
    background: var(--white-color);
    color: transparent;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease
}

input[type="radio"]:checked ~ label::before {
    border-color: var(--theme-color);
    background-color: var(--theme-color);
    color: var(--white-color)
}*/

label {
    margin-bottom: 0.5em;
    margin-top: -0.3em;
    display: block;
    color: var(--title-color);
    
    font-size: 16px;
    font-family: "Mulish";
}

textarea.is-invalid,select.is-invalid,input.is-invalid,.was-validated input:invalid {
    border: 1px solid var(--error-color) !important;
    background-position: right calc(0.375em + 0.8875rem) center;
    background-image: none
}

textarea.is-invalid:focus,select.is-invalid:focus,input.is-invalid:focus,.was-validated input:invalid:focus {
    outline: 0;
    box-shadow: none
}

textarea.is-invalid {
    background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem)
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-image1{
/*     background-image: url(../images/contact_bg_1.png);*/
    background-color: #ecf1f9;
    padding: 30px 10px 30px;
    background-size: 100%;
    border-radius: 50px;
    box-shadow: 0px 10px 8px rgba(19, 36, 39, 0.13);
   /* background-blend-mode: overlay;
    background-color: #40519e54;*/
}
.about-image1 .l-logo{
max-width: 170px;
padding-bottom: 30px;
}

.login_bg{

     background-image: url(../images/login_bg.png);
    padding: 30px 10px 50px;
    background-size: contain;
    border-radius: 50px;
    box-shadow: 0px 10px 8px rgba(19, 36, 39, 0.13);
    background-blend-mode: overlay;
    background-color: #40519e54;
}
.shape-mockup {
    position: absolute;
    z-index: -1;
/*    top: 0px;*/
    left: -2%;
    -webkit-animation: jumpReverseAni 7slinear infinite;
    animation: jumpReverseAni 7slinear infinite;
}@-webkit-keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

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

@keyframes jumpReverseAni {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    50% {
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
.login-sec{
  padding: 40px 0 0 ;
}
.about-us-sec{
  padding: 80px 0;
}
.academics-programs-sec{
   padding: 80px 0;
}
.goals-sec{
   padding: 80px 0;
}
.contact-right-bg{
/*  background-image: url(../images/contact_bg_1.png);background-repeat: no-repeat;  */
    padding: 50px 50px 20px;background-size: cover;
    border-radius: 50px;box-shadow: 0px 10px 8px rgba(19, 36, 39, 0.13); 
            background-position: right;
                background-color: #ecf1f9;
}
.mb-10{
  margin-bottom: 150px;
}
.my-dashboard-box{
  padding: 30px !important;
  background: linear-gradient(180deg, #ecedfa, rgba(236, 237, 250, 0)), #fff;
      position: relative;
    display: block !important;   
    height: 100%;
    gap: 19px;
    padding: 20px 15px;
    border-radius: var(--border-radius-10);
    box-shadow: var(--box-shadow-1);
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 1;
    text-align: center;
}
.about-feature-icon1 {
    --size: 75px;
  
        margin: auto;
          margin-bottom: 10px;
}
.height-fix{
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 50px;
/*    line-height: 20px;*/
}
.right-sidebar{
  padding: 20px 15px;
    border-radius: var(--border-radius-10);
    box-shadow: var(--box-shadow-1);
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: 1;
     position: sticky;
      top: 100px;
      z-index: 10;
      background: white;
      padding: 1rem;
      border: 1px solid #ccc;
}
.right-sidebar ul{
  list-style-type: none;
  padding: 10px 20px;

}
.right-sidebar ul li{
/*  background-color: #ececec;*/
padding: 10px 20px;

  margin-bottom: 5px;
  border-bottom: 1px solid #f3f3f3;
}
.right-sidebar ul li a{
  color: #000;
  display: flex
;
    gap: 10px;
}
.radio-btn label{
  display: inline-block;
  margin-right: 15px;
}
.prof {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .upload-icon {
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    background-color: #f0f0f0;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .upload-icon:hover {
    background-color: #e0e0e0;
  }

  #uploadInput {
    display: none;
  }

  .prof img {
   /* width: 40px;
    height: 40px;*/
    object-fit: cover;
    border-radius: 50%;
  }
  .prof {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: sans-serif;
  }

  .upload-container {
    border: 1px solid #000;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
  }

  .upload-container:hover {
    background-color: #f5f5f5;
  }

  .upload-icon svg {
    display: block;
  }

  #uploadInput {
    display: none;
  }
  .box-bg{
       background: linear-gradient(91deg, #e7e8f9 24.88%, rgba(236, 237, 250, 0) 130.03%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #ccc;
  }
  .faq-image {
    width: 100%;
    aspect-ratio: 1/1.06132075472;
    border-radius: var(--border-radius-10);
    overflow: hidden;
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: var(--transition);
}

.faq-image:hover img {
    transform: scale(1.05);
}

/*.faq-content-wp {
    max-width: 611px;
}*/

.faq-content-wp .sec-title .h2-title {
    margin-bottom: 45px;
}

.faq-accordian .faq-box:not(:last-child) {
    margin-bottom: 24px;
}

.faq-box {
    box-shadow: var(--box-shadow-1);
    border-radius: var(--border-radius-10);
    background-color: var(--white-color);
}

.faq-accordian-title {
    position: relative;
    padding: 15px 75px 15px 32px;
    width: 100%;
    margin-bottom: 0;
    font-size: 20px;
    line-height: 30px;
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.faq-icon {
    --size: 40px;
    position: absolute;
    width: var(--size);
    height: var(--size);
    border-radius: var(--border-radius-10);
    background-color: var(--primary-color);
    display: block;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
}

.faq-box.active .faq-icon {
    background-color: var(--pink-color-2);
}

.faq-icon:before,
.faq-icon:after {
    content: "";
    position: absolute;
    height: 14px;
    width: 2px;
    top: 50%;
    left: 50%;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    background-color: var(--white-color);
    transition: var(--transition);
}

.faq-icon:after {
    width: 14px;
    height: 2px;
}

.faq-box.active .faq-accordian-title .faq-icon:after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-box.active .faq-accordian-title .faq-icon:before {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-box-text {
    border-top: 1px solid var(--gray-color-2);
    padding-block: 22px 23px;
    margin-inline: 30px 32px;
}

.faq-box-text ul {
    list-style: disc;
    margin: 0 0 1.5em 1.5em;
}
.recent-courses-added-box-wp{
  height: 340px;
    overflow-y: auto;
}



.course-detail-description-text h2 {
    font-size:28px;
    margin-top: 15px;
}

.course-detail-description-text h3{
    font-size: 22px;
    margin-top: 15px;
}


.course-detail-description-text ul {
  list-style: none;
  padding-left: 0;
}

.course-detail-description-text li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.course-detail-description-text li::before {
  content: "\f0a4"; /* hand-point-right (regular/outline) */
  font-family: "Font Awesome 6 Free";
  font-weight: 400; /* important for outline version */
  position: absolute;
  left: 0;
  color: #4051aa;
}
.sub-h{
  font-size: 20px;
}
