
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&family=Lexend:wght@100..900&display=swap");
:root {
  --fontFamily: "Kumbh Sans", sans-serif;
  --headingFontFamily: "Lexend", sans-serif;
  --mainColor: #8a47cb;
  --bodyColor: #555;
  --whiteColor: #fbfbfb;
  --blackColor: #070707;
  --transition: .5s;
  --fontSize: 16px;
}

body {
  margin: 0;
  padding: 0;
  color: var(--bodyColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
  background-color: var(--whiteColor);
}

a {
  transition: var(--transition);
  text-decoration: none;
  outline: 0 !important;
}
a:hover {
  text-decoration: none;
}

:focus {
  outline: 0 !important;
}

.d-table {
  width: 100%;
  height: 100%;
}
.d-table-cell {
  vertical-align: middle;
}

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

p {
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.5;
}
p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.pt-75 {
  padding-top: 75px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pt-136 {
  padding-top: 31px;
}

.ptb-110 {
  padding-top: 110px;
  padding-bottom: 110px;
}

.pt-110 {
  padding-top: 110px;
}

.pb-110 {
  padding-bottom: 30px;
}

.default-btn {
  z-index: 1;
  position: relative;
  border-radius: 5px;
  display: inline-block;
  color: var(--blackColor);
  padding: 15px 30px 15px 100px;
  border: 1px solid var(--bodyColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.default-btn img {
  top: 50%;
  left: 0;
  position: absolute;
  padding: 21px 20px;
  transform: translateY(-50%);
  transition: var(--transition);
  border-radius: 4px 0px 0px 4px;
  background-color: var(--blackColor);
}
.default-btn::before {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  transition: var(--transition);
  background-color: var(--blackColor);
}
.default-btn:hover {
  color: var(--whiteColor);
}
.default-btn:hover img {
  left: 15px;
}
.default-btn:hover::before {
  width: 100%;
}
.default-btn.style-2 {
  color: var(--whiteColor);
  border-color: #f0f0f0;
}
.default-btn.style-2 img {
  background-color: var(--whiteColor);
}
.default-btn.style-2::before {
  background-color: var(--whiteColor);
}
.default-btn.style-2:hover {
  color: var(--blackColor);
}

.default-btn2 {
  z-index: 1;
  position: relative;
  padding: 17px 30px;
  border-radius: 4px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.default-btn2 img {
  margin-left: 8px;
  margin-bottom: 3px;
}
.default-btn2::before {
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  border-radius: 4px;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.default-btn2:hover::before {
  width: 100%;
}
.default-btn2.style-3 {
  background-color: var(--mainColor);
}
.default-btn2.style-3::before {
  background-color: var(--blackColor);
}

.section-title {
  margin-bottom: 40px;
}
.section-title .sub-title {
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
.section-title h2 {
  line-height: 1.3;
  color: var(--blackColor);
  font-size: 28px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.section-title h2 span {
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title h2 span img {
  left: 0;
  right: 0;
  margin: auto;
  bottom: -5px;
  text-align: center;
  position: absolute;
}


@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-15px);
  }
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
  .preloader-area .preloader .waviy {
    font-size: 30px;
  }
}
/* Min width 576px to Max width 767px */
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .preloader-area .preloader .waviy {
    font-size: 45px;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .preloader-area .preloader .waviy {
    font-size: 55px;
  }
}
/* Min width 1200px to Max width 1399px */
/* Min width 1600px */
/*================================================
Header Area CSS
=================================================*/
.navbar-area {
  z-index: 111;
  position: absolute;
  padding-top: 22px;
  padding-bottom: 22px;
}
.navbar-area.is-sticky {
  padding-top: 0px;
  padding-bottom: 0px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  position: fixed;
  background-color: var(--whiteColor);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar-area.style-2.is-sticky {
  position: fixed !important;
}
.navbar-area.style-3.is-sticky {
  background-color: #0c1327;
}

.desktop-nav {
  padding-top: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar {
  transition: all ease 0.5s;
  z-index: 2;
  padding-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar ul {
  margin-bottom: 0;
  list-style-type: none;
}
.desktop-nav .navbar .navbar-nav {
  z-index: 1;
}
.desktop-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding-bottom: 15px;
  padding-top: 15px;
  padding-right: 0;
  padding-left: 0;
  margin-left: 20px;
  margin-right: 20px;
}
.desktop-nav .navbar .navbar-nav .nav-item a {
  line-height: 1;
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--fontFamily);
  font-size: 18px;
  font-weight: 600;
  padding-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 15px;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  content: "\ea4e";
  position: absolute;
  top: 4px;
  right: 0;
  line-height: 1;
  color: rgb(12, 11, 11);
  transition: var(--transition);
  font-family: remixicon !important;
  font-size: 12px;
  font-weight: 600;
}
.desktop-nav .navbar .navbar-nav .nav-item a:hover, .desktop-nav .navbar .navbar-nav .nav-item a:focus, .desktop-nav .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item a:hover.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item a:focus.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item a.active.dropdown-toggle::before {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item a i {
  font-size: 18px;
  line-height: 0;
  position: relative;
  top: 4px;
}
.desktop-nav .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:first-child a {
  margin-left: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a, .desktop-nav .navbar .navbar-nav .nav-item:focus a, .desktop-nav .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item:hover a.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item:focus a.dropdown-toggle::before, .desktop-nav .navbar .navbar-nav .nav-item.active a.dropdown-toggle::before {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  position: absolute;
  visibility: hidden;
  border-radius: 0;
  display: block;
  width: 250px;
  border: none;
  z-index: 99;
  opacity: 0;
  top: 80px;
  left: 0;
  padding: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li {
  padding: 0;
  margin: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
  margin: 0;
  padding: 15px;
  line-height: 1;
  display: block;
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--fontFamily);
  border-bottom: 1px dashed #ededed;
  font-size: 14px;
  font-weight: 600;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  top: 14px;
  right: 13px;
  line-height: 1;
  font-size: 17px;
  content: "\ea4e";
  position: absolute;
  color: var(--blackColor);
  font-family: remixicon !important;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::after, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::after, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::after {
  opacity: 1;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  top: 0;
  left: 0;
  width: 4px;
  opacity: 0;
  height: 100%;
  content: "";
  position: absolute;
  transition: 0.1s all;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
.desktop-nav .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}
.desktop-nav.style-3 .navbar .navbar-nav {
  z-index: 1;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item a {
  color: var(--whiteColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 15px;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item a.dropdown-toggle::after {
  display: none;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item a.dropdown-toggle::before {
  color: var(--whiteColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item a:hover, .desktop-nav.style-3 .navbar .navbar-nav .nav-item a:focus, .desktop-nav.style-3 .navbar .navbar-nav .nav-item a.active {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item a:hover.dropdown-toggle::before, .desktop-nav.style-3 .navbar .navbar-nav .nav-item a:focus.dropdown-toggle::before, .desktop-nav.style-3 .navbar .navbar-nav .nav-item a.active.dropdown-toggle::before {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item:last-child a {
  margin-right: 0;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item:hover a, .desktop-nav.style-3 .navbar .navbar-nav .nav-item:focus a, .desktop-nav.style-3 .navbar .navbar-nav .nav-item.active a {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item:hover a.dropdown-toggle::before, .desktop-nav.style-3 .navbar .navbar-nav .nav-item:focus a.dropdown-toggle::before, .desktop-nav.style-3 .navbar .navbar-nav .nav-item.active a.dropdown-toggle::before {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a {
  margin: 0;
  padding: 15px;
  line-height: 1;
  display: block;
  position: relative;
  color: var(--blackColor);
  transition: var(--transition);
  font-family: var(--fontFamily);
  border-bottom: 1px dashed #ededed;
  font-size: 16px;
  font-weight: 600;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::after {
  display: none;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a.dropdown-toggle::before {
  top: 14px;
  right: 13px;
  line-height: 1;
  font-size: 17px;
  content: "\ea4e";
  position: absolute;
  color: var(--blackColor);
  font-family: remixicon !important;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::after, .desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::after, .desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a.active::after {
  opacity: 1;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a:hover::before, .desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a:focus::before, .desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a.active::before {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li a::after {
  top: 0;
  left: 0;
  width: 4px;
  opacity: 0;
  height: 100%;
  content: "";
  position: absolute;
  transition: 0.1s all;
  transition: var(--transition);
  background-color: var(--primaryColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: var(--mainColor);
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 0;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item .dropdown-menu li:last-child a {
  border-bottom: none;
}
.desktop-nav.style-3 .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  top: 100%;
  opacity: 1;
  margin-top: 0;
  visibility: visible;
}

.mobile-responsive-nav {
  display: none;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*=========================================
Others Option For Responsive Area Style
===========================================*/
.others-option-for-responsive {
  display: none !important;
}
.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 999;
  position: absolute;
  right: 60px;
  top: -37px;
}
.others-option-for-responsive .dot-menu .inner {
  height: 30px;
  display: flex;
  align-items: center;
}
.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  transition: all ease 0.5s;
  background-color: var(--mainColor);
}
.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: var(--mainColor);
}
.others-option-for-responsive .container {
  position: relative;
}
.others-option-for-responsive .container .container {
  right: 0;
  top: 15px;
  opacity: 0;
  z-index: 1;
  max-width: 253px;
  margin-left: auto;
  visibility: hidden;
  position: absolute;
  padding-left: 15px;
  padding-right: 15px;
  transform: scaleY(0);
  transition: all ease 0.5s;
}
.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}
.others-option-for-responsive .others-options {
  background-color: var(--whiteColor);
  text-align: center;
  padding: 15px;
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .desktop-nav .navbar .navbar-brand {
    max-width: 125px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item {
    margin-left: 16px;
    margin-right: 16px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 16px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 16px;
  }
  .desktop-nav .navbar .others-option .option-item {
    margin-right: 15px;
  }
  .desktop-nav .navbar .others-option .option-item .language-info .form-select {
    width: 50px;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
  }
  .desktop-nav .navbar .others-option .option-item .button a {
    padding: 12px 16px;
    font-size: 16px;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .navbar-area {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .desktop-nav .navbar .navbar-brand {
    max-width: 125px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item {
    margin-left: 16px;
    margin-right: 16px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item a {
    font-size: 17px;
  }
  .desktop-nav .navbar .navbar-nav .nav-item .dropdown-menu li a {
    font-size: 15px;
  }
  .desktop-nav .navbar .others-option .option-item {
    margin-right: 25px;
  }
  .desktop-nav .navbar .others-option .option-item .language-info .form-select {
    width: 50px;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
  }
  .desktop-nav .navbar .others-option .option-item .button a {
    padding: 12px 16px;
    font-size: 16px;
  }
}
/* Min width 1600px */
/* Mobile and iPad Navbar */
@media only screen and (max-width: 991px) {
  .navbar-area {
    background-color: transparent;
    z-index: 2;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .navbar-area .dropdown-toggle::after {
    display: none;
  }
  .navbar-area.navbar-top {
    transform: translateY(0);
  }
  .navbar-area.is-sticky {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .mobile-responsive-nav {
    display: block;
  }
  .mobile-responsive-nav .mobile-responsive-menu {
    position: relative;
  }
  .mobile-responsive-nav .mobile-responsive-menu .logo {
    position: relative;
    z-index: 2;
    max-width: 120px;
  }
  .mobile-responsive-nav .mobile-responsive-menu .logo .black-logo {
    display: none;
  }
  .mobile-responsive-nav .mobile-responsive-menu .logo .white-logo {
    display: block;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav {
    margin-top: 56px;
    background-color: #ffffff;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul {
    border: none !important;
    background-color: #ffffff;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a {
    border-top-color: #efefef;
    color: var(--blackColor) !important;
    font-size: 16px !important;
    font-weight: 500;
    opacity: 100%;
    text-transform: capitalize;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a.mean-expand {
    width: 100%;
    height: 28px;
    text-align: right;
    padding: 11px !important;
    background: transparent !important;
    border-left: none !important;
    border-bottom: none !important;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li a.active {
    font-weight: 600;
    color: var(--mainColor) !important;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 15px;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .others-option {
    display: none !important;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav {
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    margin-top: 0 !important;
    max-height: 50vh;
    overflow-y: scroll;
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar {
    width: 7px;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar-thumb {
    background: #888;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .navbar-nav::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container a.meanmenu-reveal {
    top: 1px;
    padding: 0;
    width: 35px;
    height: 30px;
    font-size: 20px !important;
    padding-top: 3px;
    color: var(--mainColor);
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container a.meanmenu-reveal span {
    background-color: var(--mainColor);
    height: 4px;
    margin-top: -6px;
    border-radius: 0;
    position: relative;
    top: 8px;
  }
  .mobile-responsive-nav .mobile-responsive-menu.mean-container .mean-bar {
    background: transparent;
    position: absolute;
    z-index: 2;
    padding: 0;
            margin-top: 65px;
  }
  .mobile-responsive-nav .others-options {
    display: none !important;
  }
  .desktop-nav {
    display: none !important;
  }
  .others-option-for-responsive {
    display: block !important;
  }
  .others-option-for-responsive .container .container {
    right: 0;
  }
}
/*================================================
Banner Area CSS
=================================================*/
.banner-area {
  padding-top: 165px;
  padding-bottom: 40px;
  background-image: url(../images/banner-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-area .banner-shape1 {
  top: 135px;
  left: 116px;
  z-index: -1;
  position: absolute;
  animation: zoom-in-zoom-out 5s ease-out infinite;
}
.banner-area .banner-shape2 {
  left: 56px;
  top: 300px;
  z-index: -1;
  position: absolute;
}
.banner-area .banner-shape2 img {
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.banner-area .banner-shape3 {
  top: 530px;
  left: 168px;
  z-index: -1;
  position: absolute;
  animation: movebounce 10s linear infinite;
}
.banner-area .banner-shape4 {
  top: 485px;
  left: 881px;
  z-index: -1;
  position: absolute;
  animation: rotateme 10s linear infinite;
}
.banner-area .banner-shape5 {
  left: 556px;
  bottom: 65px;
  z-index: -1;
  position: absolute;
  animation: rotateme 20s linear infinite;
}
.banner-area .banner-shape6 {
  top: 232px;
  right: 331px;
  z-index: -1;
  position: absolute;
}
.banner-area .banner-shape7 {
  top: 256px;
  right: 625px;
  z-index: -1;
  position: absolute;
}
.banner-area .banner-shape8 {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
  position: absolute;
}

.banner-content {
  max-width: 545px;
  margin-top: 56px;
  margin-bottom: 25px;
}
.banner-content .title {
  margin-bottom: 35px;
}
.banner-content .title .sub-title {
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.banner-content .title h2 {
  line-height: 1.3;
  margin-bottom: 25px;
  color: var(--blackColor);
  font-size: 52px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.banner-content .title h2 span {
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.banner-content .title h2 span img {
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  text-align: center;
  position: absolute;
}
.banner-content .title p {
  color: var(--bodyColor);
  font-size: 20px;
  font-weight: 500;
}
.banner-content .button-list .play-button {
  width: 60px;
  height: 60px;
  font-size: 48px;
  margin-left: 40px;
  line-height: 60px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  color: var(--mainColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.banner-content .button-list .play-button i {
  margin-right: -4px;
}
.banner-content .button-list .play-button:hover {
  color: var(--whiteColor);
  background-color: var(--blackColor);
}
.banner-content.style-2 {
  margin-top: 115px;
}
.banner-content.style-2 .title h2 {
  color: var(--whiteColor);
}
.banner-content.style-2 .title p {
  color: var(--whiteColor);
}
.banner-content.style-2 .button-list .play-button.style-2:hover {
  background-color: var(--mainColor);
}
.banner-content.style-3 {
  max-width: 625px;
  margin-top: 0;
}
.banner-content.style-3 .title h2 {
  color: var(--whiteColor);
}
.banner-content.style-3 .title p {
  color: var(--whiteColor);
}
.banner-content.style-3 .button-list .play-button.style-3:hover {
  background-color: var(--mainColor);
}

.banner-image .image {
  margin-left: -34px;
}
.banner-image .udemy-item {
  top: 285px;
  right: 0;
  padding: 15px;
  border-radius: 8px;
  position: absolute;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.banner-image .udemy-item ul li {
  margin-right: 15px;
}
.banner-image .udemy-item ul li h3 {
  top: 2px;
  margin-bottom: 0;
  position: relative;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.banner-image .udemy-item ul li h3 i {
  color: rgb(255, 178, 0);
}
.banner-image .udemy-item ul li:last-child {
  margin-right: 0;
}
.banner-image .udemy-item:hover {
  transform: translateY(-7px);
}
.banner-image .user-info {
  bottom: 0;
  left: -65px;
  padding: 20px;
  position: absolute;
  border-radius: 10px;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.banner-image .user-info .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  margin-bottom: 18px;
  border-radius: 100%;
  display: inline-block;
  background-color: #f2f2f2;
  transition: var(--transition);
}
.banner-image .user-info h2 {
  margin-bottom: 10px;
  letter-spacing: 4.4px;
  color: var(--blackColor);
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--headingFontFamily);
}
.banner-image .user-info h3 {
  color: #000;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.banner-image .user-info ul {
  margin-bottom: 10px;
}
.banner-image .user-info ul li {
  margin-left: -18px;
}
.banner-image .user-info ul li img {
  width: 52px;
  height: 52px;
  border-radius: 100%;
  border: 2px solid #fbfbfb;
}
.banner-image .user-info ul li:first-child {
  margin-left: 0;
}
.banner-image .user-info:hover {
  transform: translateY(-7px);
}
.banner-image .user-info:hover .icon {
  background-color: var(--mainColor);
}
.banner-image .mentor-info {
  right: 0;
  z-index: 1;
  bottom: 15px;
  padding: 20px;
  max-width: 296px;
  position: absolute;
  border-radius: 10px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.banner-image .mentor-info .content h3 {
  color: #000;
  margin-bottom: 8px;
  transition: var(--transition);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.banner-image .mentor-info .content span {
  color: var(--bodyColor);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.banner-image .mentor-info .icon {
  width: 60px;
  height: 60px;
  margin-left: 15px;
  line-height: 60px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background: linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%);
}
.banner-image .mentor-info::before {
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  transition: var(--transition);
  border-radius: 10px 0px 0px 10px;
  background-color: var(--mainColor);
}
.banner-image .mentor-info:hover {
  transform: translateY(-7px);
}
.banner-image .mentor-info:hover .content h3 {
  color: var(--whiteColor);
}
.banner-image .mentor-info:hover .content span {
  color: var(--whiteColor);
}
.banner-image .mentor-info:hover::before {
  opacity: 1;
  width: 100%;
  border-radius: 10px;
  visibility: visible;
}

.banner-warp-info {
  max-width: 1620px;
  border-radius: 10px;
  padding-top: 32px;
  padding-bottom: 190px;
  background-image: url(../images/banner-warp-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-warp-image {
  margin-bottom: 25px;
}
.banner-warp-image .user-image {
  margin-left: 40px;
}
.banner-warp-image .bg-shape {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
  position: absolute;
}
.banner-warp-image .line-shape {
  left: -30px;
  bottom: 0;
  position: absolute;
}
.banner-warp-image .round-shape {
  top: 50%;
  left: -33px;
  position: absolute;
  transform: translateY(-50%);
  animation: movebounce 8s linear infinite;
}
.banner-warp-image .round-shape img {
  background-color: var(--blackColor);
}
.banner-warp-image .user-info {
  left: 0;
  right: 0;
  margin: auto;
  bottom: -60px;
  padding: 30px 40px;
  max-width: 351px;
  position: absolute;
  border-radius: 10px;
  background-color: var(--whiteColor);
}
.banner-warp-image .user-info .image {
  margin-right: 20px;
}
.banner-warp-image .user-info .image ul li {
  margin-right: -14px;
}
.banner-warp-image .user-info .image ul li img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 1px solid var(--whiteColor);
}
.banner-warp-image .user-info .image ul li:last-child {
  margin-right: 0;
}
.banner-warp-image .user-info .content h3 {
  margin-bottom: 5px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.banner-warp-image .user-info .content span {
  font-weight: 500;
  font-size: 16px;
  color: var(--bodyColor);
}

.banner-widget-area {
  padding-top: 160px;
  padding-bottom: 0;
  background-color: var(--blackColor);
}
.banner-widget-area .banner-widget-shape1 {
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}
.banner-widget-area .banner-widget-shape2 {
  right: 0;
  bottom: -1px;
  position: absolute;
}
.banner-widget-area .shape15 {
  top: 87px;
  left: 95px;
  position: absolute;
}
.banner-widget-area .shape16 {
  top: 60px;
  right: 190px;
  position: absolute;
  animation: movebounce 10s linear infinite;
}
.banner-widget-area .shape17 {
  top: 295px;
  right: 98px;
  position: absolute;
}
.banner-widget-area .shape17 img {
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.banner-widget-area .dot1 {
  left: 67px;
  bottom: 340px;
  position: absolute;
}
.banner-widget-area .dot1 img {
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.banner-widget-area .dot2 {
  left: 161px;
  bottom: 220px;
  position: absolute;
  animation: movebounce 10s linear infinite;
}
.banner-widget-area .banner-shape9 {
  right: 0;
  bottom: 175px;
  position: absolute;
}
.banner-widget-area .shape24 {
  top: 134px;
  left: 643px;
  position: absolute;
  animation: rotateme 20s linear infinite;
}
.banner-widget-area::before {
  top: 0;
  right: 0;
  content: "";
  z-index: -1;
  width: 616px;
  height: 616px;
  position: absolute;
  border-radius: 616px;
  background: #008BF0;
  filter: blur(277px);
}

.banner-widget-image {
  max-width: 561px;
  margin-left: auto;
  margin-right: 0;
}
.banner-widget-image .mentor-info {
  right: 0;
  bottom: 49px;
  padding: 20px;
  max-width: 296px;
  position: absolute;
  border-radius: 10px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.banner-widget-image .mentor-info .content h3 {
  color: #000;
  margin-bottom: 8px;
  transition: var(--transition);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.banner-widget-image .mentor-info .content span {
  color: var(--bodyColor);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.banner-widget-image .mentor-info .icon {
  width: 60px;
  height: 60px;
  margin-left: 15px;
  line-height: 60px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  background: linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%);
}
.banner-widget-image .mentor-info::before {
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  transition: var(--transition);
  border-radius: 10px 0px 0px 10px;
  background-color: var(--mainColor);
}
.banner-widget-image .mentor-info:hover {
  transform: translateY(-7px);
}
.banner-widget-image .mentor-info:hover .content h3 {
  color: var(--whiteColor);
}
.banner-widget-image .mentor-info:hover .content span {
  color: var(--whiteColor);
}
.banner-widget-image .mentor-info:hover::before {
  opacity: 1;
  width: 100%;
  border-radius: 10px;
  visibility: visible;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
}
@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes movebounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(200px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes MOVE-BG {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(60px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@keyframes ripple {
  0% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/*================================================
Categories Area CSS
=================================================*/
.categories-area.style-2 {
  margin-top: -50px;
}

.categories-section-title {
  margin-bottom: 30px;
}
.categories-section-title .default-btn2 {
  margin-bottom: 25px;
}

.single-categories-card {
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 25px;
  background-color: #ffebdf;
  transition: var(--transition);
}
.single-categories-card .icon {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
}
.single-categories-card .icon .bg-shape {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  text-align: center;
  display: inline-block;
  transform: translateY(-50%);
}
.single-categories-card h3 {
  color: #0c1327;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-categories-card p {
  color: #7b7b8a;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.single-categories-card:hover {
  transform: translateY(-7px);
}
.single-categories-card.second-color {
  background-color: #efffdf;
}
.single-categories-card.style-2 {
  padding: 20px;
}
.single-categories-card.style-2 .icon {
  width: 90px;
  height: 90px;
}
.single-categories-card.style-2 .icon img {
  width: auto;
}
.single-categories-card.style-2 .icon .bg-shape {
  top: 58%;
}
.single-categories-card.style-2:hover {
  transform: unset;
}

.categories-slider-items {
  padding: 50px;
  padding-bottom: 15px;
  border-radius: 10px;
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.categories-slider-items .categories-slider-info .owl-nav .owl-prev, .categories-slider-items .categories-slider-info .owl-nav .owl-next {
  top: 44%;
  margin: 0;
  left: -69px;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 43px;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  display: inline-block;
  color: var(--bodyColor);
  transform: translateY(-50%);
  background-color: #f0f0f0;
  transition: var(--transition);
}
.categories-slider-items .categories-slider-info .owl-nav .owl-prev:hover, .categories-slider-items .categories-slider-info .owl-nav .owl-next:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.categories-slider-items .categories-slider-info .owl-nav .owl-next {
  right: -69px;
  left: auto;
}

/*================================================
About Area CSS
=================================================*/
.about-area {
  background-color: #fff7fc;
}
.about-area.style-2 {
  background-color: #fbfbfb;
}
.about-area.style-3 {
  background-color: #fbfbfb;
}

.about-image .image-1 {
  margin-left: 40px;
  margin-bottom: 25px;
}
.about-image .image-1 img {
  max-width: 222px;
  border-radius: 10px;
}
.about-image .image-2 {
  margin-bottom: 25px;
}
.about-image .image-2 img {
  max-width: 264px;
  border-radius: 10px;
}
.about-image .image-3 {
  margin-bottom: 25px;
  margin-left: -35px;
  margin-top: 50px;
}
.about-image .image-3 img {
  max-width: 320px;
  border-radius: 10px;
}
.about-image .experience-info {
  padding: 25px 40px;
  border-radius: 10px;
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  margin-left: -35px;
  margin-right: 20px;
  margin-bottom: 25px;
}
.about-image .experience-info .content h3 {
  margin-bottom: 0;
  color: var(--whiteColor);
  font-size: 44px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.about-image .experience-info .content p {
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
}
.about-image .experience-info .icon {
  font-size: 40px;
  color: var(--whiteColor);
}
.about-image .experience-info .icon:hover {
  color: var(--blackColor);
}
.about-image .shape .shape1 {
  top: 20px;
  left: -50px;
  z-index: -1;
  position: absolute;
  animation: rotateme 20s linear infinite;
}
.about-image .shape .shape2 {
  top: -10px;
  left: 308px;
  z-index: -1;
  position: absolute;
}
.about-image .shape .shape2 img {
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.about-image.style-2 {
  margin-right: 20px;
  margin-bottom: 25px;
}
.about-image.style-2 .image-one img {
  max-width: 540px;
  border-radius: 10px;
}
.about-image.style-2 .image-two {
  margin-top: -240px;
}
.about-image.style-2 .image-two img {
  max-width: 308px;
  border-radius: 10px;
  border: 5px solid var(--whiteColor);
}
.about-image.style-3 {
  margin-right: 25px;
}
.about-image.style-3 .about-shape {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: auto;
  position: absolute;
  text-align: center;
}

.about-content {
  margin-bottom: 25px;
  margin-left: 40px;
}
.about-content p {
  color: #4b4956;
  font-size: 18px;
  font-weight: 500;
}
.about-content .mission {
  color: #0a0624;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
  margin-top: 35px;
  margin-bottom: 30px;
}
.about-content .about-list {
  margin-top: 50px;
}
.about-content .about-list .user {
  margin-left: 40px;
}
.about-content .about-list .user .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}
.about-content .about-list .user .image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.about-content .about-list .user .content h3 {
  margin-bottom: 8px;
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.about-content .about-list .user .content span {
  color: var(--bodyColor);
  font-size: 16px;
  font-weight: 500;
}
.about-content.style-2 .awards-info {
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
  margin-top: 50px;
  margin-bottom: 35px;
}
.about-content.style-2 .awards-info .awards-list {
  margin-bottom: 25px;
}
.about-content.style-2 .awards-info .awards-list ul li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 17px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.about-content.style-2 .awards-info .awards-list ul li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.about-content.style-2 .awards-info .awards-list ul li:last-child {
  margin-bottom: 0;
}
.about-content.style-2 .awards-info .awards-card {
  margin-bottom: 25px;
  border-radius: 10px;
  padding-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 15px 45px -5px rgba(0, 0, 0, 0.1);
}
.about-content.style-2 .awards-info .awards-card .icon {
  margin-bottom: 30px;
}
.about-content.style-2 .awards-info .awards-card h3 {
  margin-bottom: 6px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
}
.about-content.style-2 .awards-info .awards-card p {
  font-size: 16px;
  color: var(--bodyColor);
}
.about-content.style-2 .awards-info .awards-card:hover {
  transform: translateY(-7px);
}
.about-content.style-2 .video-info .icon {
  flex: 0 0 auto;
  display: block;
}
.about-content.style-2 .video-info .icon a {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-right: 20px;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--whiteColor);
  transition: var(--transition);
  box-shadow: 0px 15px 45px rgba(0, 0, 0, 0.1);
}
.about-content.style-2 .video-info .icon a:hover {
  transform: translateY(-7px);
}
.about-content.style-2 .video-info .content {
  max-width: 328px;
}
.about-content.style-2 .video-info .content h3 {
  margin-bottom: 9px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.about-content.style-2 .video-info .content p {
  color: var(--bodyColor);
}
.about-content.style-3 .learning-info .learning-card {
  border-radius: 8px;
  padding: 20px 40px;
  background-color: #f0f0f0;
  margin-top: 40px;
  margin-bottom: 45px;
}
.about-content.style-3 .learning-info .learning-card .icon {
  flex: 0 0 auto;
  margin-right: 30px;
  border-radius: 100%;
  display: inline-block;
  border: 2px solid #f0f0f0;
}
.about-content.style-3 .learning-info .learning-card .content h3 {
  margin-bottom: 10px;
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.about-content.style-3 .learning-info .learning-card .content p {
  color: var(--bodyColor);
  transition: var(--transition);
  font-size: 16px;
  font-weight: 500;
}
.about-content.style-3 .learning-info .learning-card::before {
  top: 0;
  left: 0;
  width: 16%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  transition: var(--transition);
  border-radius: 8px 0px 0px 8px;
  background-color: var(--mainColor);
}
.about-content.style-3 .learning-info .learning-card:hover .content h3 {
  color: var(--whiteColor);
}
.about-content.style-3 .learning-info .learning-card:hover .content p {
  color: var(--whiteColor);
}
.about-content.style-3 .learning-info .learning-card:hover::before {
  width: 100%;
  border-radius: 8px;
}
.about-content.style-3 .learning-info .learning-list ul li {
  display: block;
  position: relative;
  padding-left: 60px;
  margin-bottom: 45px;
  color: var(--blackColor);
  transition: var(--transition);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.about-content.style-3 .learning-info .learning-list ul li i {
  left: 0;
  top: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  background-color: var(--mainColor);
}
.about-content.style-3 .learning-info .learning-list ul li i.active {
  background-color: #1cca81;
}
.about-content.style-3 .learning-info .learning-list ul li:hover {
  transform: translateY(-7px);
}

/*================================================
Video Area CSS
=================================================*/
.video-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: #fff7fc;
}
.video-area.style-3::before {
  height: 50%;
  background-color: var(--blackColor);
}

.video-area-info {
  padding: 60px;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/video1.jpg);
}
.video-area-info::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  position: absolute;
  border-radius: 10px;
  background: rgba(7, 7, 7, 0.6);
}
.video-area-info.style-3 {
  padding-top: 90px;
  padding-bottom: 90px;
  border-radius: 8px;
  background-image: url(../images/video2.jpg);
}
.video-area-info.style-3::before {
  display: none;
}

.video-content h1 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  color: transparent;
  font-size: 80px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.video-content h1 span {
  margin-left: 129px;
}
.video-content.style-3 h1 {
  font-size: 100px;
}

.video-button {
  max-width: 336px;
}
.video-button img {
  animation: border-transform 7s linear infinite alternate forwards;
}
.video-button .play-button {
  top: 50%;
  left: 0;
  right: 0;
  width: 104px;
  height: 104px;
  margin: auto;
  font-size: 30px;
  text-align: center;
  position: absolute;
  line-height: 104px;
  border-radius: 100%;
  display: inline-block;
  color: var(--blackColor);
  transform: translateY(-50%);
  background-color: var(--whiteColor);
}
.video-button .play-button i {
  margin-right: -4px;
}
.video-button .play-button::before {
  top: -14px;
  bottom: -14px;
  left: -14px;
  right: -14px;
  content: "";
  opacity: 0.12;
  position: absolute;
  border-radius: 152px;
  border: 1px solid var(--whiteColor);
  animation: ripple 4s linear infinite;
}

/*================================================
Courses Area CSS
=================================================*/
.courses-area .section-title {
  margin-bottom: 50px;
}
.courses-area.style-2 {
  background-color: #fff7fc;
}
.courses-area.style-2 .shape15 {
  top: 87px;
  left: 95px;
  position: absolute;
}
.courses-area.style-2 .shape16 {
  top: 68px;
  right: 197px;
  position: absolute;
}
.courses-area.style-2 .shape17 {
  top: 306px;
  right: 105px;
  position: absolute;
}
.courses-area.style-2 .dot1 {
  left: 67px;
  bottom: 605px;
  position: absolute;
}
.courses-area.style-2 .dot2 {
  left: 161px;
  bottom: 369px;
  position: absolute;
}
.courses-area.style-2 .shape26 {
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}
.courses-area.style-3 {
  background-color: #fff7fc;
}

.single-courses-card {
  border-radius: 10px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.single-courses-card .image {
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}
.single-courses-card .image img {
  transition: var(--transition);
  border-radius: 10px 10px 0px 0px;
}
.single-courses-card .image .price {
  left: 30px;
  bottom: 0;
  position: absolute;
  padding: 9px 21px;
  display: inline-block;
  color: var(--whiteColor);
  border-radius: 15px 15px 0px 0px;
  background-color: var(--mainColor);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card .content {
  padding: 20px 30px;
}
.single-courses-card .content .beginner-info {
  margin-bottom: 25px;
}
.single-courses-card .content .beginner-info .beginner {
  z-index: 1;
  padding: 11px 15px;
  border-radius: 4px;
  color: var(--bodyColor);
  background-color: #f0f0f0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card .content .beginner-info .beginner::before {
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-courses-card .content .beginner-info .beginner:hover {
  color: var(--whiteColor);
}
.single-courses-card .content .beginner-info .beginner:hover::before {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.single-courses-card .content .beginner-info .icon {
  z-index: 1;
  width: 46px;
  height: 46px;
  font-size: 20px;
  line-height: 46px;
  border-radius: 4px;
  text-align: center;
  display: inline-block;
  color: var(--bodyColor);
  background-color: #f0f0f0;
}
.single-courses-card .content .beginner-info .icon::before {
  top: 0;
  left: 0;
  width: 0px;
  height: 100%;
  content: "";
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  position: absolute;
  transition: var(--transition);
  background-color: var(--mainColor);
}
.single-courses-card .content .beginner-info .icon:hover {
  color: var(--whiteColor);
}
.single-courses-card .content .beginner-info .icon:hover::before {
  opacity: 1;
  width: 100%;
  visibility: visible;
}
.single-courses-card .content h3 {
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-courses-card .content h3 a {
  color: var(--blackColor);
}
.single-courses-card .content h3 a:hover {
  color: var(--mainColor);
}
.single-courses-card .content .ratings-info {
  margin-bottom: 20px;
}
.single-courses-card .content .ratings-info span {
  color: #878787;
  margin-right: 13px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card .content .ratings-info .icon ul {
  line-height: 1;
}
.single-courses-card .content .ratings-info .icon ul li {
  margin-right: 3px;
}
.single-courses-card .content .ratings-info .icon ul li i {
  font-size: 18px;
  color: rgb(138, 71, 203);
  display: none;
}
.single-courses-card .content .ratings-info .icon ul li:last-child {
  margin-right: 0;
}
.single-courses-card .content .user-info {
  padding-bottom: 30px;
  margin-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
  display: none !important;
}
.single-courses-card .content .user-info .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}
.single-courses-card .content .user-info .image img {
  width: 46px;
  height: 46px;
  transform: unset;
  border-radius: 100%;
}
.single-courses-card .content .user-info h6 {
  margin-bottom: 0;
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card .content .list-info .title .icon {
  line-height: 1;
  margin-right: 13px;
  margin-bottom: 2px;
}
.single-courses-card .content .list-info .title span {
  color: #878787;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card .content .list-info .button a {
  color: var(--blackColor);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card .content .list-info .button a i {
  top: 3px;
  margin-left: 6px;
  position: relative;
  font-size: 20px;
  font-weight: 600;
}
.single-courses-card .content .list-info .button a:hover {
  color: var(--mainColor);
}
.single-courses-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.1);
}
.single-courses-card:hover .image img {
  transform: scale(1.08);
}
.single-courses-card.style-2 {
  position: relative;
  border-bottom: 5px solid var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}
.single-courses-card.style-2 .image .price {
  top: 30px;
  right: 30px;
  left: auto;
  bottom: auto;
  padding: 5px 11px;
  border-radius: 4px;
  position: absolute;
  background-color: #1cca81;
}
.single-courses-card.style-2 .content {
  padding: 25px 30px;
}
.single-courses-card.style-2 .content h6 {
  color: #1cca81;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-card.style-2 .content .list-info {
  margin-top: 20px;
}
.single-courses-card.style-2 .content .list-info ul li {
  font-size: 18px;
  font-weight: 500;
  color: #878787;
  position: relative;
  margin-right: 30px;
  padding-left: 25px;
}
.single-courses-card.style-2 .content .list-info ul li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-courses-card.style-2 .content .list-info ul li:last-child {
  margin-right: 0;
}
.single-courses-card.style-2:hover {
  border-bottom: 5px solid var(--mainColor);
}

.single-courses-button {
  margin-top: 30px;
  margin-bottom: 25px;
}

.courses-section-title {
  margin-bottom: 10px;
}
.courses-section-title .list li {
  margin-right: 32px;
}
.courses-section-title .list li .filter {
  border: 0;
  padding: 0;
  position: relative;
  color: var(--bodyColor);
  background-color: transparent;
  font-size: 18px;
  font-weight: 700;
}
.courses-section-title .list li .filter img {
  top: -30px;
  right: -13px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.courses-section-title .list li .filter.mixitup-control-active {
  color: var(--mainColor);
}
.courses-section-title .list li .filter.mixitup-control-active img {
  opacity: 1;
  visibility: visible;
}
.courses-section-title .list li:last-child {
  margin-right: 0;
}

.single-courses-info {
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border-bottom: 3px solid var(--whiteColor);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
}
.single-courses-info .image {
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  margin-right: 26px;
}
.single-courses-info .image img {
  width: 151px;
  height: 160px;
  border-radius: 4px;
  transition: var(--transition);
}
.single-courses-info .content .star-icon {
  margin-bottom: 20px;
}
.single-courses-info .content .star-icon span {
  color: var(--mainColor);
  transition: var(--transition);
  font-size: 18px;
  font-weight: 700;
}
.single-courses-info .content .star-icon ul li i {
  color: rgb(255, 188, 31);
}
.single-courses-info .content h3 {
  max-width: 390px;
  line-height: 1.3;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-courses-info .content h3 a {
  color: var(--blackColor);
}
.single-courses-info .content h3 a:hover {
  color: var(--mainColor);
}
.single-courses-info .content .list li {
  padding-left: 28px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-courses-info .content .list li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-courses-info:hover {
  transform: translateY(-7px);
  border-color: var(--mainColor);
}
.single-courses-info:hover .image img {
  transform: scale(1.08);
}
.single-courses-info:hover .content .star-icon span {
  color: #1cca81;
}

/*================================================
Choose Area CSS
=================================================*/
.choose-area {
  background-color: #fff7fc;
}
.choose-area .shapes .shape3 {
  top: 86px;
  left: 35px;
  z-index: -1;
  position: absolute;
}
.choose-area.style-2 {
  background-color: var(--whiteColor);
}
.choose-area.style-3 {
  background-color: var(--blackColor);
}
.choose-area.style-3::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 28%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: var(--whiteColor);
}

.choose-content {
  margin-bottom: 25px;
  margin-right: 20px;
}
.choose-content p {
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 500;
}
.choose-content .choose-progress {
  margin-top: 30px;
  margin-bottom: 30px;
}
.choose-content .choose-progress .ce-ixelgen-progress-bar {
  max-width: 615px;
}
.choose-content .choose-progress .ce-ixelgen-progress-bar .progress-bar-item {
  position: relative;
  margin-bottom: 40px;
}
.choose-content .choose-progress .ce-ixelgen-progress-bar .progress-bar-item h3 {
  margin-bottom: 10px;
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.choose-content .choose-progress .ce-ixelgen-progress-bar .progress-bar-item .item-value {
  right: 0;
  top: -2px;
  position: absolute;
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.choose-content .choose-progress .ce-ixelgen-progress-bar .progress-bar-item .item-bar {
  position: relative;
  height: 10px;
  width: 100%;
  border-radius: 100px;
  background-color: rgb(217, 217, 217);
}
.choose-content .choose-progress .ce-ixelgen-progress-bar .progress-bar-item .item-bar .progress {
  left: 2px;
  top: 50%;
  bottom: 0;
  width: 0;
  height: 6px;
  margin: 0;
  position: absolute;
  border-radius: 100px;
  transition: width 100ms ease;
  transform: translateY(-50%);
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
}
.choose-content .choose-progress .ce-ixelgen-progress-bar .progress-bar-item:last-child {
  margin-bottom: 0;
}
.choose-content.style-2 .section-title {
  max-width: 385px;
}
.choose-content.style-2 .industry-info {
  margin-top: 40px;
  border-radius: 10px;
  border: 1px solid #878787;
}
.choose-content.style-2 .industry-info .items {
  padding: 25px 30px;
  padding-left: 70px;
  position: relative;
  border-bottom: 1px solid var(--Grey, #878787);
}
.choose-content.style-2 .industry-info .items .icon {
  top: 28px;
  left: 30px;
  width: 20px;
  height: 20px;
  font-size: 13px;
  line-height: 20px;
  border-radius: 3px;
  text-align: center;
  position: absolute;
  display: inline-block;
  color: var(--whiteColor);
  transition: var(--transition);
  background-color: var(--blackColor);
}
.choose-content.style-2 .industry-info .items h3 {
  margin-bottom: 10px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.choose-content.style-2 .industry-info .items p {
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 500;
}
.choose-content.style-2 .industry-info .items:last-child {
  border-bottom: unset;
}
.choose-content.style-2 .industry-info .items:hover .icon, .choose-content.style-2 .industry-info .items.active .icon {
  background-color: var(--mainColor);
}
.choose-content.style-3 {
  margin-right: -85px;
}
.choose-content.style-3 .section-title h2 {
  color: var(--whiteColor);
  margin-bottom: 30px;
}
.choose-content.style-3 .section-title p {
  color: var(--whiteColor);
}

.choose-image {
  margin-left: 90px;
  text-align: center;
}
.choose-image .bg-shape {
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.choose-image .shape4 {
  top: 8px;
  z-index: -2;
  right: -60px;
  position: absolute;
}
.choose-image .shape5 {
  top: 130px;
  left: 25px;
  position: absolute;
}
.choose-image .shape6 {
  left: 60px;
  bottom: 42px;
  position: absolute;
}
.choose-image .shape7 {
  right: 60px;
  bottom: 8px;
  position: absolute;
}
.choose-image.style-2 {
  margin-left: 40px;
  margin-bottom: 25px;
}
.choose-image.style-2 .play-button {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.choose-image.style-2 .play-button a {
  z-index: 1;
  width: 147px;
  height: 147px;
  font-size: 30px;
  line-height: 147px;
  text-align: center;
  border-radius: 100%;
  position: relative;
  display: inline-block;
  color: var(--mainColor);
  background-color: var(--whiteColor);
}
.choose-image.style-2 .play-button a img {
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.choose-image.style-2 .play-button a i {
  top: 2px;
  position: relative;
}
.choose-image.style-2 .play-button a::before {
  top: 50%;
  left: 0;
  right: 0;
  content: "";
  z-index: -1;
  margin: auto;
  width: 135px;
  height: 135px;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: var(--mainColor);
}
.choose-image.style-2 .shape {
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.choose-image.style-2 .shape18 {
  top: 50px;
  right: 30px;
  position: absolute;
  animation: rotateme 20s linear infinite;
}
.choose-image.style-3 {
  margin-left: 75px;
  margin-right: -200px;
  margin-top: -113px;
  position: relative;
}
.choose-image.style-3 .udemy-item {
  left: 20px;
  bottom: 179px;
  padding: 15px;
  border-radius: 8px;
  position: absolute;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.choose-image.style-3 .udemy-item ul li {
  margin-right: 15px;
}
.choose-image.style-3 .udemy-item ul li h3 {
  top: 2px;
  margin-bottom: 0;
  position: relative;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.choose-image.style-3 .udemy-item ul li h3 i {
  color: rgb(255, 178, 0);
}
.choose-image.style-3 .udemy-item ul li:last-child {
  margin-right: 0;
}
.choose-image.style-3 .udemy-item:hover {
  transform: translateY(-7px);
}

.single-choose-info {
  padding-top: 0;
  padding-left: 50px;
  padding-bottom: 0;
  border-radius: 12px;
  background-color: #0c1327;
}

.single-choose-content {
  border-radius: 0px 10px 10px 0px;
  margin-left: -46px;
  margin-right: -1px;
}
.single-choose-content .items {
  padding: 46px 30px;
  background-color: #fff7fc;
  border-bottom: 1px solid #878787;
}
.single-choose-content .items .icon {
  width: 100px;
  height: 120px;
  flex: 0 0 auto;
  border-radius: 8px;
  margin-right: 20px;
  line-height: 120px;
  text-align: center;
  display: inline-block;
  background-color: #f0f0f0;
}
.single-choose-content .items .icon::before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  content: "";
  z-index: -1;
  position: absolute;
  transition: var(--transition);
  border-radius: 0px 0px 8px 8px;
  background-color: var(--mainColor);
}
.single-choose-content .items .content h3 {
  margin-bottom: 14px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-choose-content .items:first-child {
  border-radius: 0px 10px 0px 0px;
}
.single-choose-content .items:last-child {
  border-bottom: unset;
  border-radius: 0px 0px 10px 0px;
}
.single-choose-content .items:hover .icon::before {
  height: 100%;
  border-radius: 8px;
}

/*================================================
Team Area CSS
=================================================*/
.team-area.style-2 {
  background-color: #fff7fc;
}
.team-area.style-2 .section-title {
  margin-bottom: 55px;
}
.team-area.style-2 .shapes .shape10 {
  top: 92px;
  left: 64px;
  position: absolute;
}
.team-area.style-2 .shapes .shape25 {
  right: 50px;
  bottom: 75px;
  position: absolute;
  animation: rotateme 20s linear infinite;
}
.team-area.style-3 .section-title {
  margin-bottom: 45px;
}

.single-team-content {
  margin-bottom: 25px;
}
.single-team-content p {
  font-size: 18px;
  font-weight: 500;
}
.single-team-content .default-btn {
  margin-top: 20px;
}

.single-team-card {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border: 2px dashed var(--mainColor);
}
.single-team-card .image {
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: 10px;
}
.single-team-card .image img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-team-card .content h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-team-card .content h3 a {
  color: var(--blackColor);
}
.single-team-card .content h3 a:hover {
  color: var(--mainColor);
}
.single-team-card .content p {
  font-weight: 500;
}
.single-team-card .content ul li {
  margin-right: 20px;
}
.single-team-card .content ul li a {
  z-index: 1;
  width: 36px;
  height: 36px;
  font-size: 17px;
  line-height: 36px;
  text-align: center;
  position: relative;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-team-card .content ul li a::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
  content: "";
  margin: -1px;
  visibility: hidden;
  position: absolute;
  border-radius: 100%;
  transition: var(--transition);
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
}
.single-team-card .content ul li a:hover::before {
  margin: -1px;
  opacity: 1;
  visibility: visible;
}
.single-team-card .content ul li:last-child {
  margin-right: 0;
}
.single-team-card:hover {
  transform: translateY(-10px);
}
.single-team-card:hover .image img {
  transform: scale(1.08);
}

.single-team-info {
  margin-bottom: 25px;
}
.single-team-info .content {
  border-radius: 8px;
  padding: 40px 20px 140px;
  background-color: #0c1327;
}
.single-team-info .content h3 {
  margin-bottom: 10px;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-team-info .content p {
  font-weight: 500;
  color: var(--whiteColor);
}
.single-team-info .image {
  margin-top: -100px;
  margin-left: 20px;
  margin-right: 20px;
}
.single-team-info .image img {
  border-radius: 8px;
}
.single-team-info .image .social-list {
  transition: var(--transition);
}
.single-team-info .image .social-list .share-icon {
  top: -30px;
  right: 20px;
  position: absolute;
  transition: var(--transition);
  width: 60px;
  height: 60px;
  line-height: 55px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  background-color: var(--mainColor);
  transition: var(--transition);
}
.single-team-info .image .social-list .icons {
  top: 0;
  opacity: 0;
  right: 20px;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-team-info .image .social-list .icons li a {
  width: 60px;
  height: 58px;
  font-size: 24px;
  line-height: 57px;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-team-info .image .social-list .icons li:nth-child(2) a {
  height: 40px;
  line-height: 40px;
}
.single-team-info .image .social-list .icons li:last-child a {
  border-radius: 0px 0px 4px 4px;
}
.single-team-info .image .social-list:hover .share-icon {
  opacity: 0;
  visibility: hidden;
}
.single-team-info .image .social-list:hover .icons {
  opacity: 1;
  visibility: visible;
}
.single-team-info.style-3 {
  transition: var(--transition);
}
.single-team-info.style-3 .content {
  padding: 0;
  background-color: transparent;
}
.single-team-info.style-3 .content h3 {
  color: var(--blackColor);
}
.single-team-info.style-3 .content p {
  color: var(--bodyColor);
}
.single-team-info.style-3 .image {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 25px;
}
.single-team-info.style-3 .image img {
  border-radius: 10px;
}
.single-team-info.style-3 .image .social-list {
  transition: var(--transition);
}
.single-team-info.style-3 .image .social-list .share-icon {
  top: auto;
  right: 0;
  width: 60px;
  height: 60px;
  bottom: -86px;
  font-size: 25px;
  font-weight: 900;
  line-height: 60px;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  display: inline-block;
  color: var(--mainColor);
  background-color: #ffebdf;
  transition: var(--transition);
}
.single-team-info.style-3 .image .social-list .icons {
  right: 0;
  top: auto;
  opacity: 0;
  bottom: -86px;
  visibility: hidden;
  position: absolute;
  transition: var(--transition);
}
.single-team-info.style-3 .image .social-list .icons li a {
  width: 60px;
  height: 58px;
  font-size: 24px;
  line-height: 57px;
  text-align: center;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-team-info.style-3 .image .social-list .icons li:nth-child(2) a {
  height: 40px;
  line-height: 40px;
}
.single-team-info.style-3 .image .social-list .icons li:first-child a {
  border-radius: 4px 4px 0px 0px;
}
.single-team-info.style-3 .image .social-list .icons li:last-child a {
  border-radius: 0px 0px 4px 4px;
}
.single-team-info.style-3 .image .social-list:hover .share-icon {
  opacity: 0;
  visibility: hidden;
}
.single-team-info.style-3 .image .social-list:hover .icons {
  opacity: 1;
  visibility: visible;
}
.single-team-info.style-3:hover {
  transform: translateY(-7px);
}

.col-lg-3:nth-child(1) .single-team-info.style-3 {
  margin-top: 30px;
}
.col-lg-3:nth-child(2) .single-team-info.style-3 .image .social-list .share-icon {
  color: rgb(28, 202, 129);
}
.col-lg-3:nth-child(3) .single-team-info.style-3 {
  margin-top: 30px;
}

.team-pages-area .shape26 {
  top: 444px;
  left: 174px;
  z-index: -1;
  position: absolute;
}
.team-pages-area .shape27 {
  top: 160px;
  z-index: -1;
  right: 188px;
  position: absolute;
}
.team-pages-area .shape28 {
  top: 925px;
  left: 197px;
  z-index: -1;
  position: absolute;
}
.team-pages-area .shape29 {
  left: 205px;
  bottom: 274px;
  position: absolute;
}
.team-pages-area .shape30 {
  right: 188px;
  bottom: 549px;
  position: absolute;
}

.team-user-info {
  margin-bottom: 25px;
}
.team-user-info .image {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.07);
}
.team-user-info .image img {
  border-radius: 8px 8px 0px 0px;
}
.team-user-info .content {
  padding: 30px;
  border-radius: 8px;
  background-color: #ffffff;
  border-radius: 0px 0px 8px 8px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.07);
}
.team-user-info .content h3 {
  color: #0c1327;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.team-user-info .content h4 {
  color: #0c1327;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.team-user-info .content p {
  max-width: 286px;
  font-weight: 500;
}
.team-user-info .content .list {
  margin-top: 40px;
  margin-bottom: 32px;
}
.team-user-info .content .list li {
  padding-left: 44px;
  margin-bottom: 30px;
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.team-user-info .content .list li .icon {
  left: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  line-height: 29px;
  text-align: center;
  border-radius: 4px;
  position: absolute;
  display: inline-block;
  transform: translateY(-50%);
  background-color: #1cca81;
}
.team-user-info .content .list li a {
  color: var(--bodyColor);
}
.team-user-info .content .list li a:hover {
  color: var(--blackColor);
}
.team-user-info .content .list li:last-child {
  margin-bottom: 0;
}
.team-user-info .content .social-link li {
  margin-right: 8px;
  transition: var(--transition);
}
.team-user-info .content .social-link li:hover {
  transform: translateY(-7px);
}
.team-user-info .content .social-link li:last-child {
  margin-right: 0;
}

.team-right-sidebar {
  margin-left: 30px;
}
.team-right-sidebar p {
  font-weight: 500;
}
.team-right-sidebar .team-right-info {
  margin-bottom: 60px;
}
.team-right-sidebar .team-right-info .content {
  margin-bottom: 115px;
}
.team-right-sidebar .team-right-info .content .title {
  margin-bottom: 20px;
}
.team-right-sidebar .team-right-info .content .title h3 {
  margin-bottom: 13px;
  color: var(--blackColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.team-right-sidebar .team-right-info .content .title p {
  font-size: 18px;
  font-weight: 700;
  color: var(--mainColor);
}
.team-right-sidebar .team-right-info .rate-card {
  padding: 25px;
  padding-top: 0;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: #ffffff;
  transition: var(--transition);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.07);
}
.team-right-sidebar .team-right-info .rate-card .icon {
  top: -40px;
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 100%;
  margin-bottom: -15px;
  display: inline-block;
  box-shadow: 0px 15px 25px rgba(138, 71, 203, 0.2);
}
.team-right-sidebar .team-right-info .rate-card h3 {
  margin-bottom: 15px;
  color: var(--blackColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.team-right-sidebar .team-right-info .rate-card p {
  color: #7b7b8a;
  font-size: 18px;
  font-weight: 600;
}
.team-right-sidebar .team-right-info .rate-card:hover {
  transform: translateY(-7px);
}
.team-right-sidebar .team-right-info .col-lg-4:nth-child(1) .rate-card {
  margin-right: 30px;
}
.team-right-sidebar .team-right-info .col-lg-4:nth-child(2) .rate-card {
  margin-left: 15px;
  margin-right: 15px;
}
.team-right-sidebar .team-right-info .col-lg-4:nth-child(3) .rate-card {
  margin-left: 30px;
}

/*================================================
Newsletter Area CSS
=================================================*/
.newsletter-area.style-2 {
  padding-bottom: 170px;
  background-color: #ffebdf;
}
.newsletter-area.style-2 .shapes .shape15 {
  top: 87px;
  left: 78px;
  position: absolute;
}
.newsletter-area.style-2 .shapes .shape16 {
  top: 58px;
  right: 187px;
  position: absolute;
}
.newsletter-area.style-2 .shapes .shape16 img {
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}
.newsletter-area.style-2 .shapes .shape17 {
  top: 306px;
  right: 80px;
  position: absolute;
  animation: movebounce 10s linear infinite;
}
.newsletter-area.style-2 .shapes .dot1 {
  left: 57px;
  bottom: 300px;
  position: absolute;
  animation: movebounce 10s linear infinite;
}
.newsletter-area.style-2 .shapes .dot2 {
  left: 151px;
  bottom: 81px;
  position: absolute;
}
.newsletter-area.style-2 .shapes .dot2 img {
  animation-duration: 5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: MOVE-BG;
}

.newsletter-info {
  padding: 80px 40px;
  border-radius: 10px;
  background: var(--Gradient, linear-gradient(100deg, #b72ac4 7.82%, #00F0AA 87.12%));

}
.newsletter-info .shape8 {
  top: 26px;
  left: 18px;
  position: absolute;
}
.newsletter-info .shape9 {
  right: 41px;
  bottom: 20px;
  position: absolute;
}

.newsletter-content .icon {
  display: block;
  flex: 0 0 auto;
  margin-right: 40px;
}
.newsletter-content h2 {
  margin-bottom: 0;
  line-height: 1.5;
  color: var(--whiteColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}

.newsletter-form form .form-group .form-control {
  border: 0;
  height: 80px;
  box-shadow: unset;
  border-radius: 4px;
  padding-left: 30px;
  background-color: var(--whiteColor);
}
.newsletter-form form .form-group button {
  top: 50%;
  right: 10px;
  border: 0;
  position: absolute;
  box-shadow: unset;
  transform: translateY(-50%);
}

.newsletter-image {
  margin-right: 30px;
  margin-bottom: 25px;
}
.newsletter-image .image-one {
  max-width: 308px;
}
.newsletter-image .image-one img {
  max-width: 308px;
  border-radius: 10px;
}
.newsletter-image .image-one .udemy-item {
  top: 82px;
  padding: 15px;
  right: -135px;
  border-radius: 8px;
  position: absolute;
  display: inline-block;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.newsletter-image .image-one .udemy-item ul li {
  margin-right: 15px;
}
.newsletter-image .image-one .udemy-item ul li h3 {
  top: 2px;
  margin-bottom: 0;
  position: relative;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.newsletter-image .image-one .udemy-item ul li h3 i {
  color: rgb(255, 178, 0);
}
.newsletter-image .image-one .udemy-item ul li:last-child {
  margin-right: 0;
}
.newsletter-image .image-one .udemy-item:hover {
  transform: translateY(-7px);
}
.newsletter-image .image-two {
  max-width: 308px;
  margin-top: -35px;
  margin-left: auto;
  margin-right: 70px;
}
.newsletter-image .image-two img {
  max-width: 308px;
  border-radius: 10px;
}
.newsletter-image .image-two .award-items {
  top: -41px;
  right: -30px;
  padding: 10px;
  display: block;
  position: absolute;
  text-align: center;
  border-radius: 8px;
  background-color: #ffffff;
  transition: var(--transition);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.newsletter-image .image-two .award-items span {
  color: var(--mainColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.newsletter-image .image-two .award-items p {
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
}
.newsletter-image .image-two .award-items:hover {
  transform: translateY(-7px);
}
.newsletter-image .image-two .award-items-two {
  left: -130px;
  bottom: 75px;
  padding: 10px;
  display: block;
  position: absolute;
  text-align: center;
  border-radius: 8px;
  background-color: #ffffff;
  transition: var(--transition);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.08);
}
.newsletter-image .image-two .award-items-two span {
  color: var(--mainColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.newsletter-image .image-two .award-items-two p {
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
}
.newsletter-image .image-two .award-items-two:hover {
  transform: translateY(-7px);
}
.newsletter-image .newsletter-shape {
  top: 45px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  position: absolute;
}

.newsletter-date-content {
  margin-left: 20px;
  margin-bottom: 25px;
}
.newsletter-date-content .title h2 {
  margin-bottom: 30px;
  color: var(--blackColor);
  font-size: 44px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.newsletter-date-content .title p {
  font-weight: 500;
}
.newsletter-date-content .newsletter-form {
  margin-top: 35px;
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-area.style-2 .section-title {
  max-width: 563px;
  margin-bottom: 55px;
}

.testimonial-image {
  max-width: 496px;
  margin-left: auto;
  margin-right: 40px;
  margin-bottom: 25px;
  padding-top: 100px;
  padding-bottom: 100px;
}
.testimonial-image .image .main-image {
  top: 38px;
  left: 38px;
  max-width: 420px;
  position: absolute;
  border-radius: 100%;
}
.testimonial-image .user-image img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.testimonial-image .user-image .image1 {
  top: 0;
  left: 70px;
  position: absolute;
}
.testimonial-image .user-image .image2 {
  top: 169px;
  left: -102px;
  position: absolute;
}
.testimonial-image .user-image .image3 {
  top: 407px;
  left: -111px;
  position: absolute;
}
.testimonial-image .user-image .image4 {
  bottom: 6px;
  left: 60px;
  position: absolute;
}
.testimonial-image.style-3 {
  max-width: 100%;
  margin-right: 0;
  margin-left: 70px;
  padding: 0;
}

.testimonial-content {
  margin-left: -10px;
  margin-bottom: 25px;
}
.testimonial-content .section-title {
  margin-bottom: 40px;
}
.testimonial-content p {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.testimonial-content .users-info {
  margin-top: 45px;
}
.testimonial-content .users-info .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}
.testimonial-content .users-info .image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.testimonial-content .users-info .content h3 {
  margin-bottom: 8px;
  color: var(--blackColor);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.testimonial-content .users-info .content span {
  font-size: 16px;
  font-weight: 500;
}
.testimonial-content .testimonial-slider-info .owl-nav .owl-prev, .testimonial-content .testimonial-slider-info .owl-nav .owl-next {
  left: 303px;
  bottom: 0;
  margin: 0;
  width: 60px;
  height: 60px;
  font-size: 20px;
  line-height: 60px;
  margin-right: 20px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  border: 1px solid #878787;
  transition: var(--transition);
  color: rgb(135, 135, 135);
  background-color: var(--whiteColor);
}
.testimonial-content .testimonial-slider-info .owl-nav .owl-prev:hover, .testimonial-content .testimonial-slider-info .owl-nav .owl-next:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}
.testimonial-content .testimonial-slider-info .owl-nav .owl-next {
  right: 170px;
  left: auto;
}
.testimonial-content.style-3 {
  margin-left: 0;
}
.testimonial-content.style-3 .testimonial-slider-info .owl-nav .owl-prev, .testimonial-content.style-3 .testimonial-slider-info .owl-nav .owl-next {
  left: 276px;
}
.testimonial-content.style-3 .testimonial-slider-info .owl-nav .owl-next {
  right: 90px;
  left: auto;
}

.testimonial-responsive-image {
  margin-bottom: 25px;
}

.single-testimonials-card {
  padding: 28px;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.single-testimonials-card .icon {
  margin-bottom: 30px;
}
.single-testimonials-card h3 {
  margin-bottom: 16px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-testimonials-card p {
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 500;
}
.single-testimonials-card .user {
  margin-top: 20px;
}
.single-testimonials-card .user .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 20px;
}
.single-testimonials-card .user .image img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
.single-testimonials-card .user .content h4 {
  margin-bottom: 5px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}

.single-testimonials-card-user {
  padding: 28px;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.single-testimonials-card-user .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 46px;
}
.single-testimonials-card-user .image img {
  width: 270px;
  height: 270px;
  border-radius: 100%;
}
.single-testimonials-card-user .content {
  margin-bottom: 27px;
}
.single-testimonials-card-user .content .icon {
  margin-bottom: 30px;
}
.single-testimonials-card-user .content h3 {
  margin-bottom: 30px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-testimonials-card-user .content h4 {
  margin-bottom: 5px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.single-testimonials-card-user .content p {
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 500;
}

.testimonials-next-info {
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 10px;
  background-color: #ffebdf;
}
.testimonials-next-info .section-title {
  max-width: 682px;
  margin-bottom: 25px;
}
.testimonials-next-info .section-title h2 {
  margin-bottom: 32px;
}
.testimonials-next-info .section-title p {
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 600;
}
.testimonials-next-info .section-title ul {
  margin-top: 32px;
}
.testimonials-next-info .section-title ul li {
  margin-right: 40px;
}
.testimonials-next-info .section-title ul li:last-child {
  margin-right: 0;
}
.testimonials-next-info .next-image {
  top: 50%;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
}
.testimonials-next-info.style-3 {
  background-color: #1cca81;
}
.testimonials-next-info.style-3 .section-title {
  max-width: 710px;
}
.testimonials-next-info.style-3 .section-title h2 {
  color: var(--whiteColor);
}
.testimonials-next-info.style-3 .section-title p {
  font-size: 20px;
  color: var(--whiteColor);
}
.testimonials-next-info.style-3 .section-title .default-btn {
  margin-top: 25px;
}
.testimonials-next-info.style-3 .image-one {
  top: 30px;
  left: 30px;
  position: absolute;
}
.testimonials-next-info.style-3 .image-one img {
  width: 150px;
  height: 150px;
}
.testimonials-next-info.style-3 .image-two {
  top: 30px;
  right: 30px;
  position: absolute;
}
.testimonials-next-info.style-3 .image-two img {
  width: 193px;
  height: 100px;
}
.testimonials-next-info.style-3 .image-three {
  left: 30px;
  bottom: 30px;
  position: absolute;
}
.testimonials-next-info.style-3 .image-three img {
  width: 193px;
  height: 100px;
}
.testimonials-next-info.style-3 .image-four {
  right: 30px;
  bottom: 30px;
  position: absolute;
}
.testimonials-next-info.style-3 .image-four img {
  width: 150px;
  height: 150px;
  border-radius: 100%;
}

.testimonials-next.style-3 {
  background-color: var(--blackColor);
}
.testimonials-next.style-3::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  content: "";
  z-index: -1;
  position: absolute;
  background-color: #fff7fc;
}
.testimonials-next.style-3 .shapes .footer-shape3 {
  right: 0;
  top: 0;
  pointer-events: none;
  position: absolute;
  margin-top: 288px;
  margin-bottom: 0;
}

/*================================================
Learning Area CSS
=================================================*/
.learning-area {
  background-color: #fff7fc;
}
.learning-area .shapes .shape10 {
  top: 118px;
  left: 66px;
  z-index: -1;
  position: absolute;
}
.learning-area .shapes .shape11 {
  z-index: -1;
  right: 63px;
  bottom: 190px;
  position: absolute;
  animation: rotateme 10s linear infinite;
}

.learning-section-title {
  margin-bottom: 50px;
}

.learning-info .live-info {
  top: 30px;
  right: 30px;
  position: absolute;
  padding: 16px 30px;
  border-radius: 4px;
  background-color: var(--whiteColor);
}
.learning-info .live-info h3 {
  padding-left: 25px;
  position: relative;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
  margin-bottom: 0;
  margin-right: 20px;
}
.learning-info .live-info h3::before {
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: rgb(255, 85, 62);
}
.learning-info .live-info p {
  color: #878787;
}
.learning-info .user-info {
  left: 50px;
  bottom: 50px;
  position: absolute;
  border-radius: 10px;
}
.learning-info .user-info img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  border: 5px solid var(--whiteColor);
}
.learning-info .list {
  left: 0;
  right: 0;
  margin: auto;
  bottom: 50px;
  text-align: center;
  position: absolute;
}
.learning-info .list li {
  margin-right: 15px;
}
.learning-info .list li a {
  width: 60px;
  height: 60px;
  font-size: 22px;
  line-height: 65px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: rgb(255, 85, 62);
}
.learning-info .list li:last-child {
  margin-right: 0;
}
.learning-info .list li:nth-child(1) a {
  color: var(--blackColor);
  background-color: var(--whiteColor);
}
.learning-info .list li:nth-child(3) a {
  color: var(--whiteColor);
  background-color: rgb(28, 202, 129);
}

/*================================================
Blog Area CSS
=================================================*/
.blog-area.style-3 {
  background-color: #fff7fc;
}
.blog-area.style-3 .shape10 {
  top: 126px;
  right: 40px;
  position: absolute;
}
.blog-area.style-3 .shape25 {
  left: 50px;
  bottom: 180px;
  position: absolute;
  animation: rotateme 20s linear infinite;
}

.blog-section-title {
  margin-bottom: 40px;
}
.blog-section-title .button .default-btn2 {
  margin-bottom: 25px;
}
.blog-section-title.style-2 {
  margin-bottom: 25px;
}

.single-blog-card {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.single-blog-card .image {
  overflow: hidden;
  border-radius: 10px;
}
.single-blog-card .image img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-blog-card .list {
  z-index: 1;
  padding: 20px;
  max-width: 320px;
  position: relative;
  border-radius: 10px;
  background-color: var(--whiteColor);
  margin-top: -32px;
  margin-bottom: 20px;
}
.single-blog-card .list ul li {
  color: #7b7b8a;
  font-weight: 500;
  margin-right: 40px;
  padding-left: 26px;
}
.single-blog-card .list ul li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-card .list ul li a {
  color: #7b7b8a;
}
.single-blog-card .list ul li a:hover {
  color: var(--mainColor);
}
.single-blog-card .list ul li:last-child {
  margin-right: 0;
}
.single-blog-card .content {
  margin-bottom: 10px;
}
.single-blog-card .content h3 {
  line-height: 1.3;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-blog-card .content h3 a {
  color: var(--blackColor);
}
.single-blog-card .content h3 a:hover {
  color: var(--mainColor);
}
.single-blog-card .content .read-more {
  font-weight: 500;
  color: var(--bodyColor);
}
.single-blog-card .content .read-more i {
  top: 3px;
  font-size: 22px;
  margin-left: 8px;
  position: relative;
}
.single-blog-card .content .read-more:hover {
  color: var(--blackColor);
}
.single-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 35px 55px 0px rgba(0, 0, 0, 0.1);
}
.single-blog-card:hover .image img {
  transform: scale(1.08);
}

.single-blog-info {
  z-index: 1;
  padding: 30px;
  position: relative;
  border-radius: 10px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.single-blog-info .image {
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 10px;
}
.single-blog-info .image img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-blog-info h3 {
  line-height: 1.5;
  margin-bottom: 55px;
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-blog-info h3 a {
  color: var(--blackColor);
}
.single-blog-info h3 a:hover {
  color: var(--mainColor);
}
.single-blog-info ul li {
  font-weight: 500;
  padding-left: 28px;
  position: relative;
  margin-right: 20px;
  color: var(--bodyColor);
}
.single-blog-info ul li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-blog-info ul li a {
  color: var(--bodyColor);
}
.single-blog-info ul li a:hover {
  color: var(--mainColor);
}
.single-blog-info ul li:last-child {
  margin-right: 0;
}
.single-blog-info .border-image {
  left: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}
.single-blog-info:hover .image img {
  transform: scale(1.08);
}

.single-blog-items {
  padding: 30px;
  border-radius: 10px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  transition: var(--transition);
  background-color: var(--whiteColor);
  border-bottom: 3px solid var(--whiteColor);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
}
.single-blog-items .image {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-blog-items .image img {
  border-radius: 10px;
  transition: var(--transition);
}
.single-blog-items .content ul {
  margin-bottom: 20px;
}
.single-blog-items .content ul li {
  color: var(--bodyColor);
  font-size: 16px;
  font-weight: 500;
}
.single-blog-items .content ul li span {
  padding: 11px;
  border-radius: 4px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
}
.single-blog-items .content h3 {
  max-width: 510px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-blog-items .content h3 a {
  color: var(--blackColor);
}
.single-blog-items .content h3 a:hover {
  color: var(--mainColor);
}
.single-blog-items .content p {
  font-weight: 500;
}
.single-blog-items:hover {
  border-color: var(--mainColor);
}
.single-blog-items:hover .image img {
  transform: scale(1.08);
}
.single-blog-items.d-flex .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 30px;
  margin-bottom: 0;
}
.single-blog-items.d-flex .image img {
  width: 198px;
  height: 198px;
  border-radius: 10px;
}

.single-blog-button {
  margin-top: 20px;
  margin-bottom: 25px;
}

/*================================================
Funfact Area CSS
=================================================*/
.funfact-area {
  background-image: url(../images/funfact-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.funfact-area::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  position: absolute;
  background: linear-gradient(0deg, rgba(14, 26, 45, 0.8) 0%, rgba(14, 26, 45, 0.8) 100%), 0px -214.922px/100% 243.281%;
}

.single-funfact-info {
  position: relative;
  transition: var(--transition);
}
.single-funfact-info .image {
  opacity: 0;
  visibility: hidden;
  position: relative;
  transition: var(--transition);
}
.single-funfact-info .image::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  mix-blend-mode: multiply;
  background-color: var(--mainColor);
}
.single-funfact-info .content {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-funfact-info .content .icon {
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  margin-right: 20px;
  line-height: 100px;
  text-align: center;
  display: inline-block;
  border-radius: 0px 100px 100px 0px;
  background-color: var(--whiteColor);
}
.single-funfact-info .content .text h3 {
  margin-bottom: 8px;
  color: var(--whiteColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-funfact-info .content .text p {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 500;
}
.single-funfact-info::before {
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  z-index: 1;
  position: absolute;
  transition: var(--transition);
  border-left: 1px solid var(--whiteColor);
}
.single-funfact-info:hover .image {
  opacity: 1;
  visibility: visible;
}
.single-funfact-info:hover::before {
  opacity: 0;
  visibility: hidden;
}

/*================================================
Partner Area CSS
=================================================*/
.partner-area {
  background-color: var(--blackColor);
}

.single-partner-logo {
  margin-bottom: 25px;
}
.single-partner-logo img {
  margin: auto;
  width: auto !important;
}
.single-partner-logo.margin-top {
  margin-top: 9px;
}

/*================================================
Page Title Area CSS
=================================================*/
.page-title-area {
  background-color: #fff7fc;
    padding-top: 195px;
    padding-bottom: 120px;
}
.page-title-area .pages1 {
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  margin: auto;
  text-align: center;
  position: absolute;
}
.page-title-area .pages2 {
  left: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}
.page-title-area .pages3 {
  right: 0;
  bottom: 0;
  z-index: -1;
  position: absolute;
}
.page-title-area .pages4 {
  right: 431px;
  bottom: 116px;
  position: absolute;
}
.page-title-area .pages5 {
  top: 229px;
  left: 154px;
  position: absolute;
}

.page-title-content h2 {
  margin-bottom: 13px;
  color: var(--blackColor);
  font-size: 44px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.page-title-content ul li {
  padding-right: 13px;
  position: relative;
  color: var(--mainColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.page-title-content ul li a {
  color: var(--blackColor);
}
.page-title-content ul li a:hover {
  color: var(--mainColor);
}
.page-title-content ul li::before {
  top: 15px;
  right: 0;
  content: "";
  width: 7px;
  height: 2px;
  position: absolute;
  background-color: var(--blackColor);
}
.page-title-content ul li:last-child {
  padding-right: 0;
}
.page-title-content ul li:last-child::before {
  display: none;
}

.pages-grid-list-info {
  margin-bottom: 30px;
}
.pages-grid-list-info .items {
  margin-bottom: 25px;
}
.pages-grid-list-info .items ul li {
  margin-right: 16px;
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 600;
}
.pages-grid-list-info .items ul li a {
  width: 60px;
  height: 60px;
  font-size: 25px;
  line-height: 64px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  color: var(--blackColor);
  background-color: #f0f0f0;
}
.pages-grid-list-info .items ul li a:hover, .pages-grid-list-info .items ul li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.pages-grid-list-info .items ul li:last-child {
  margin-right: 0;
  margin-left: 10px;
}
.pages-grid-list-info .items .form-select {
  border: 0;
  font-size: 18px;
  font-weight: 600;
  max-width: 272px;
  box-shadow: unset;
  padding: 17px 20px;
  color: var(--bodyColor);
  background-color: #f0f0f0;
}
.pages-grid-list-info .items.style-2 ul li {
  font-size: 16px;
}
.pages-grid-list-info .items.style-2 .form-select {
  font-size: 16px;
}

.courses-grid-left-sidebar {
  margin-right: 10px;
}

.single-pages-widget {
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.07);
}
.single-pages-widget h3 {
  color: #0c1327;
  margin-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-pages-widget.form-info form .form-group {
  position: relative;
}
.single-pages-widget.form-info form .form-group .form-control {
  border: 0;
  height: 60px;
  font-weight: 500;
  box-shadow: unset;
  padding-left: 20px;
  border-radius: 4px;
  color: var(--bodyColor);
  background-color: #f0f0f0;
}
.single-pages-widget.form-info form .form-group button {
  top: 50%;
  right: 0;
  border: 0;
  width: 60px;
  height: 60px;
  box-shadow: unset;
  line-height: 55px;
  text-align: center;
  position: absolute;
  display: inline-block;
  transform: translateY(-50%);
  transition: var(--transition);
  border-radius: 0px 4px 4px 0px;
  background-color: var(--mainColor);
}
.single-pages-widget.form-info form .form-group button:hover {
  background-color: var(--blackColor);
}
.single-pages-widget.price-filter {
  /* Reset style for input range */
  /* Style toddler input range */
  /* Style track input range */
  /* Style for input value block */
  /* Style for active state input */
}
.single-pages-widget.price-filter .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-pages-widget.price-filter .filter-price {
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
}
.single-pages-widget.price-filter .price-title {
  position: relative;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.single-pages-widget.price-filter .price-field {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--blackColor);
  padding-top: 0;
  padding-left: 0;
  border-radius: 3px;
  margin-top: 15px;
  margin-bottom: 45px;
}
.single-pages-widget.price-filter .price-field input[type=range] {
  position: absolute;
}
.single-pages-widget.price-filter .price-field input[type=range] {
  width: 100%;
  height: 4px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  -webkit-appearance: none;
  background-color: var(--blackColor);
}
.single-pages-widget.price-filter .price-field input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.single-pages-widget.price-filter .price-field input[type=range]:active,
.single-pages-widget.price-filter .price-field input[type=range]:focus {
  outline: 0;
}
.single-pages-widget.price-filter .price-field input[type=range]::-ms-track {
  width: 100%;
  height: 4px;
  border: 0;
  outline: 0;
  box-sizing: border-box;
  border-radius: 5px;
  pointer-events: none;
  background: transparent;
  border-color: transparent;
  color: transparent;
  border-radius: 5px;
}
.single-pages-widget.price-filter .price-field input[type=range]::-webkit-slider-thumb {
  /* WebKit/Blink */
  position: relative;
  -webkit-appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 4px;
  height: 20px;
  width: 20px;
  margin-top: -8px;
  background-color: var(--whiteColor);
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
  border: 6px solid var(--mainColor);
}
.single-pages-widget.price-filter .price-field input[type=range]::-moz-range-thumb {
  /* Firefox */
  position: relative;
  -moz-appearance: none;
       appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin-top: -5px;
  background-color: var(--mainColor);
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}
.single-pages-widget.price-filter .price-field input[type=range]::-ms-thumb {
  /* IE */
  position: relative;
  appearance: none;
  margin: 0;
  border: 0;
  outline: 0;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  margin-top: -5px;
  background-color: var(--mainColor);
  cursor: pointer;
  cursor: pointer;
  pointer-events: all;
  z-index: 100;
}
.single-pages-widget.price-filter .price-field input[type=range]::-webkit-slider-runnable-track {
  /* WebKit/Blink */
  width: 188px;
  height: 5px;
  cursor: pointer;
  background-color: var(--mainColor);
  border-radius: 5px;
}
.single-pages-widget.price-filter .price-field input[type=range]::-moz-range-track {
  /* Firefox */
  width: 188px;
  height: 2px;
  cursor: pointer;
  background: var(--mainColor);
  border-radius: 5px;
}
.single-pages-widget.price-filter .price-field input[type=range]::-ms-track {
  /* IE */
  width: 188px;
  height: 4px;
  cursor: pointer;
  background-color: var(--mainColor);
  border-radius: 5px;
}
.single-pages-widget.price-filter .price-wrap {
  display: flex;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.single-pages-widget.price-filter .price-wrap-1,
.single-pages-widget.price-filter .price-wrap-2 {
  display: flex;
}
.single-pages-widget.price-filter .price-title {
  margin-right: 5px;
}
.single-pages-widget.price-filter .price-wrap-line {
  margin: 0 10px;
}
.single-pages-widget.price-filter .price-wrap #one,
.single-pages-widget.price-filter .price-wrap #two {
  width: 30px;
  text-align: right;
  margin: 0;
  padding: 0;
  margin-right: 2px;
  background: 0;
  border: 0;
  outline: 0;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.single-pages-widget.price-filter .price-wrap label {
  text-align: right;
}
.single-pages-widget.price-filter .price-field input[type=range]:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #fff;
  transition-duration: 0.3s;
}
.single-pages-widget.price-filter .price-field input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 0 0 0.5px #fff;
  transition-duration: 0.3s;
}
.single-pages-widget.categories-info ul li {
  margin-bottom: 20px;
}
.single-pages-widget.categories-info ul li a {
  display: block;
  font-weight: 500;
  border-radius: 4px;
  position: relative;
  padding: 18px 20px;
  color: var(--bodyColor);
  background-color: #f0f0f0;
}
.single-pages-widget.categories-info ul li a i {
  top: 50%;
  right: 27px;
  font-weight: 500;
  position: absolute;
  transform: translateY(-50%);
}
.single-pages-widget.categories-info ul li a:hover, .single-pages-widget.categories-info ul li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pages-widget.categories-info ul li:last-child {
  margin-bottom: 0;
}
.single-pages-widget.skill-info ul li {
  margin-bottom: 22px;
}
.single-pages-widget.skill-info ul li a {
  font-size: 16px;
  font-weight: 500;
  padding-left: 40px;
  position: relative;
  color: var(--bodyColor);
}
.single-pages-widget.skill-info ul li a i {
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  font-size: 16px;
  color: #f0f0f0;
  line-height: 25px;
  text-align: center;
  position: absolute;
  border-radius: 2px;
  display: inline-block;
  background-color: #f0f0f0;
  transform: translateY(-50%);
  transition: var(--transition);
}
.single-pages-widget.skill-info ul li a:hover i, .single-pages-widget.skill-info ul li a.active i {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pages-widget.skill-info ul li:last-child {
  margin-bottom: 0;
}
.single-pages-widget.rating-info ul {
  padding-left: 40px;
  position: relative;
  margin-bottom: 20px;
}
.single-pages-widget.rating-info ul li {
  margin-right: 1px;
}
.single-pages-widget.rating-info ul li i {
  font-size: 20px;
  color: rgb(255, 188, 31);
}
.single-pages-widget.rating-info ul li.disabled i {
  color: rgb(207, 207, 207);
}
.single-pages-widget.rating-info ul li:last-child {
  margin-right: 0;
}
.single-pages-widget.rating-info ul::before {
  top: 50%;
  left: 0;
  width: 26px;
  height: 26px;
  content: "";
  position: absolute;
  border-radius: 2px;
  border: 1px solid #ececec;
  background-color: #f8f8f8;
  transform: translateY(-50%);
}
.single-pages-widget.free-info .image {
  margin-bottom: 30px;
}
.single-pages-widget.free-info .image img {
  border-radius: 4px;
}
.single-pages-widget.free-info .image .play-button {
  top: 50%;
  left: 0;
  right: 0;
  width: 80px;
  height: 56px;
  margin: auto;
  font-size: 22px;
  line-height: 58px;
  text-align: center;
  position: absolute;
  border-radius: 16px;
  display: inline-block;
  color: var(--whiteColor);
  transform: translateY(-50%);
  background-color: rgb(28, 202, 129);
}
.single-pages-widget.free-info h2 {
  margin-bottom: 25px;
  color: #0c1327;
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-pages-widget.free-info .default-btn2 {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
.single-pages-widget.free-info .list {
  margin-bottom: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgb(236, 236, 236);
}
.single-pages-widget.free-info .list li {
  font-weight: 500;
  position: relative;
  color: var(--blackColor);
}
.single-pages-widget.free-info .list li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.single-pages-widget.free-info .list li span {
  color: #7b7b8a;
}
.single-pages-widget.free-info .list li:first-child {
  padding-left: 28px;
}
.single-pages-widget.free-info .social-link {
  margin-top: 25px;
}
.single-pages-widget.free-info .social-link li {
  margin-right: 20px;
  transition: var(--transition);
}
.single-pages-widget.free-info .social-link li span {
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.single-pages-widget.free-info .social-link li:first-child {
  margin-right: 25px;
}
.single-pages-widget.free-info .social-link li:first-child:hover {
  transform: unset;
}
.single-pages-widget.free-info .social-link li:last-child {
  margin-right: 0;
}
.single-pages-widget.free-info .social-link li:hover {
  transform: translateY(-7px);
}
.single-pages-widget.courses-info .items {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgb(236, 236, 236);
}
.single-pages-widget.courses-info .items .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 20px;
}
.single-pages-widget.courses-info .items .image img {
  width: 80px;
  height: 82px;
  border-radius: 4px;
}
.single-pages-widget.courses-info .items .content ul {
  margin-bottom: 10px;
}
.single-pages-widget.courses-info .items .content ul li {
  margin-right: 1px;
}
.single-pages-widget.courses-info .items .content ul li i {
  color: rgb(255, 188, 31);
}
.single-pages-widget.courses-info .items .content ul li:last-child {
  margin-right: 0;
}
.single-pages-widget.courses-info .items .content h6 {
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-pages-widget.courses-info .items .content span {
  color: var(--mainColor);
  font-size: 16px;
  font-weight: 500;
}
.single-pages-widget.courses-info .items:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.single-pages-widget.recent-blogs .items {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.single-pages-widget.recent-blogs .items .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 16px;
}
.single-pages-widget.recent-blogs .items .image img {
  width: 80px;
  height: 86px;
  border-radius: 4px;
}
.single-pages-widget.recent-blogs .items .content h4 {
  line-height: 1.5;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.single-pages-widget.recent-blogs .items .content h4 a {
  color: var(--blackColor);
}
.single-pages-widget.recent-blogs .items .content h4 a:hover {
  color: var(--mainColor);
}
.single-pages-widget.recent-blogs .items .content .read-more {
  color: #1cca81;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.single-pages-widget.recent-blogs .items .content .read-more:hover {
  color: var(--mainColor);
}
.single-pages-widget.recent-blogs .items:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.single-pages-widget.tag ul li {
  margin-right: 15px;
  margin-bottom: 20px;
}
.single-pages-widget.tag ul li a {
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  color: var(--bodyColor);
  background-color: #f0f0f0;
}
.single-pages-widget.tag ul li a:hover, .single-pages-widget.tag ul li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.single-pages-widget.tag ul li:nth-child(7) {
  margin-bottom: 0;
}
.single-pages-widget.tag ul li:nth-child(8) {
  margin-bottom: 0;
}
.single-pages-widget.tag ul li:last-child {
  margin-bottom: 0;
}
.single-pages-widget.instagram ul li {
  margin-right: 15px;
  margin-bottom: 20px;
}
.single-pages-widget.instagram ul li a {
  position: relative;
  border-radius: 4px;
  display: inline-block;
}
.single-pages-widget.instagram ul li a img {
  width: 106px;
  height: 91px;
  border-radius: 4px;
}
.single-pages-widget.instagram ul li a .icon {
  top: 50%;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  margin: auto;
  text-align: center;
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
}
.single-pages-widget.instagram ul li a .icon img {
  width: 27px;
  height: 24px;
}
.single-pages-widget.instagram ul li a::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  visibility: hidden;
  position: absolute;
  border-radius: 4px;
  transition: var(--transition);
  background-color: var(--blackColor);
}
.single-pages-widget.instagram ul li a:hover {
  transform: translateY(-7px);
}
.single-pages-widget.instagram ul li a:hover .icon {
  opacity: 1;
  visibility: visible;
}
.single-pages-widget.instagram ul li a:hover::before {
  opacity: 0.3;
  visibility: visible;
}
.single-pages-widget.instagram ul li:nth-child(4) {
  margin-bottom: 0;
}
.single-pages-widget.instagram ul li:nth-child(5) {
  margin-bottom: 0;
}
.single-pages-widget.instagram ul li:nth-child(6) {
  margin-bottom: 0;
}
.single-pages-widget.instagram ul li:last-child {
  margin-right: 0;
}

.course-details-left-sidebar {
  margin-bottom: 25px;
}
.course-details-left-sidebar .tab-info .nav {
  margin-bottom: 40px;
}
.course-details-left-sidebar .tab-info .nav .nav-item {
  margin-right: 1px;
}
.course-details-left-sidebar .tab-info .nav .nav-item .nav-link {
  border-radius: 0;
  padding: 16px 65px;
  color: var(--bodyColor);
  transition: var(--transition);
  background-color: #f0f0f0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .nav .nav-item .nav-link:hover, .course-details-left-sidebar .tab-info .nav .nav-item .nav-link.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.course-details-left-sidebar .tab-info .nav .nav-item:first-child .nav-link {
  border-radius: 4px 0px 0px 4px;
}
.course-details-left-sidebar .tab-info .nav .nav-item:last-child {
  margin-right: 0;
}
.course-details-left-sidebar .tab-info .nav .nav-item:last-child .nav-link {
  border-radius: 0px 4px 4px 0px;
}
.course-details-left-sidebar .tab-info .tab-content .overview-item p {
  font-weight: 500;
  color: var(--bodyColor);
}
.course-details-left-sidebar .tab-info .tab-content .overview-item h3 {
  margin-bottom: 20px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .learn-card {
  padding: 30px;
  padding-bottom: 0;
  border-radius: 8px;
  background-color: #f0f0f0;
  margin-top: 45px;
  margin-bottom: 40px;
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .learn-card h6 {
  margin-bottom: 30px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .learn-card .items {
  padding-left: 35px;
  margin-bottom: 30px;
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .learn-card .items img {
  top: 0;
  left: 0;
  position: absolute;
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .requirements h6 {
  margin-bottom: 30px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .requirements ul li {
  margin-right: 30px;
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .requirements ul li button {
  border: 0;
  font-weight: 500;
  padding: 17px 50px;
  border-radius: 4px;
  display: inline-block;
  color: var(--blackColor);
  transition: var(--transition);
  background-color: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .requirements ul li button img {
  margin-right: 10px;
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .requirements ul li button:hover {
  transform: translateY(-7px);
}
.course-details-left-sidebar .tab-info .tab-content .overview-item .requirements ul li:last-child {
  margin-right: 0;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item {
  border: 0;
  border-radius: 5px;
  margin-bottom: 25px;
  color: var(--blackColor);
  background-color: #1cca81;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button {
  border: 0;
  display: block;
  border-radius: 4px;
  box-shadow: unset;
  color: var(--whiteColor);
  background-color: transparent;
  transition: var(--transition);
  padding: 29.5px 30px 29.5px 60px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button p {
  top: 50%;
  right: 30px;
  font-weight: 500;
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button::before {
  top: 50%;
  left: 25px;
  content: "\ea01";
  position: absolute;
  color: var(--whiteColor);
  transform: translateY(-50%);
  transition: var(--transition);
  font-family: "Phosphor";
  font-size: 20px;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button::after {
  display: none;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button.collapsed {
  background-color: #f0f0f0;
  transition: var(--transition);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button.collapsed::before {
  content: "\e9fe";
  color: var(--blackColor);
  transition: var(--transition);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button.collapsed.accordion-button {
  color: var(--blackColor) !important;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-button.collapsed.accordion-button p {
  color: var(--bodyColor);
  transition: var(--transition);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body {
  padding: 30px;
  border-radius: 0px 0px 4px 4px;
  background: var(--whiteColor);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.05);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body .mb-20 {
  margin-bottom: 25px;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body p {
  font-weight: 500;
  max-width: 714px;
  color: var(--bodyColor);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body h4 {
  margin-bottom: 17px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body .videos-info {
  padding-bottom: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body .videos-info .item-one {
  padding-left: 35px;
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body .videos-info .item-one img {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body .videos-info .item-two button {
  border: 0;
  margin-right: 15px;
  padding: 5px 18px;
  border-radius: 2px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #1cca81;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--headingFontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .curriculum-info .accordion .accordion-item .accordion-body .videos-info:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info {
  padding: 30px;
  border-radius: 8px;
  background-color: #f0f0f0;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info p {
  font-weight: 500;
  color: var(--bodyColor);
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user {
  margin-bottom: 30px;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 30px;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .image img {
  width: 270px;
  height: 312px;
  border-radius: 4px;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content h2 {
  margin-bottom: 10px;
  color: var(--blackColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content span {
  color: var(--mainColor);
  font-size: 16px;
  font-weight: 500;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .list {
  margin-top: 30px;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .list li {
  font-weight: 500;
  padding-left: 35px;
  color: var(--bodyColor);
  margin-bottom: 20px;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .list li img {
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .social-link {
  margin-top: 25px;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .social-link li {
  margin-right: 30px;
  transition: var(--transition);
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .social-link li:last-child {
  margin-right: 0;
}
.course-details-left-sidebar .tab-info .tab-content .instructor-info .instructor-user .content .social-link li:hover {
  transform: translateY(-7px);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .rating-image {
  margin-bottom: 25px;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .rating-card {
  padding: 48px 40px;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: var(--White);
  box-shadow: 0px 4px 45px 0px rgba(0, 0, 0, 0.06);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .rating-card h3 {
  margin-bottom: 10px;
  color: var(--blackColor);
  font-size: 44px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .rating-card ul li i {
  font-size: 20px;
  color: rgb(255, 188, 31);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .rating-card span {
  margin-top: 8px;
  display: block;
  font-weight: 500;
  color: var(--bodyColor);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item {
  margin-top: 10px;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item h3 {
  margin-bottom: 25px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews .image {
  display: block;
  flex: 0 0 auto;
  margin-right: 25px;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews .image img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews .content p {
  font-weight: 500;
  max-width: 570px;
  color: var(--bodyColor);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews .content ul {
  margin-bottom: 20px;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews .content ul li i {
  font-size: 20px;
  color: rgb(255, 188, 31);
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews .content h4 {
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
  margin-top: 22px;
  margin-bottom: 10px;
}
.course-details-left-sidebar .tab-info .tab-content .reviews-info .reviews-item .reviews:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.course-details-card {
  margin-bottom: 50px;
}
.course-details-card .image {
  margin-bottom: 40px;
}
.course-details-card .image img {
  border-radius: 8px;
}
.course-details-card .science {
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 4px;
  margin-bottom: 25px;
  color: var(--whiteColor);
  background-color: #1ccA81;
}
.course-details-card h3 {
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--blackColor);
  font-size: 44px;
  font-weight: 700;
  font-family: var(--headingFontFamily);
}
.course-details-card .list li {
  font-weight: 500;
  position: relative;
  margin-right: 125px;
  color: var(--blackColor);
}
.course-details-card .list li span {
  color: #1cca81;
}
.course-details-card .list li img {
  left: 0;
  top: 50%;
  width: 44px;
  height: 44px;
  position: absolute;
  border-radius: 2px;
  transform: translateY(-50%);
  border: 4px solid var(--whiteColor);
  box-shadow: 0px 8px 35px 0px rgba(0, 0, 0, 0.07);
}
.course-details-card .list li:first-child {
  padding-left: 60px;
}
.course-details-card .list li:last-child {
  margin-right: 0;
}

.blog-grid-left-sidebar {
  margin-bottom: 25px;
}

.blog-grid-right-sidebar {
  margin-bottom: 25px;
}

.pages-blog-card {
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.05);
}
.pages-blog-card .image {
  overflow: hidden;
  border-radius: 8px 8px 0px 0px;
}
.pages-blog-card .image img {
  transition: var(--transition);
  border-radius: 8px 8px 0px 0px;
}
.pages-blog-card .image span {
  top: 16px;
  left: 16px;
  position: absolute;
  border-radius: 4px;
  padding: 6px 17px;
  display: inline-block;
  color: var(--whiteColor);
  background-color: #1cca81;
}
.pages-blog-card .content {
  padding: 30px;
}
.pages-blog-card .content ul {
  margin-bottom: 20px;
}
.pages-blog-card .content ul li {
  font-weight: 500;
  padding-left: 25px;
  margin-right: 40px;
  color: var(--bodyColor);
}
.pages-blog-card .content ul li a {
  color: var(--bodyColor);
}
.pages-blog-card .content ul li a:hover {
  color: var(--mainColor);
}
.pages-blog-card .content ul li img {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.pages-blog-card .content ul li:last-child {
  margin-right: 0;
}
.pages-blog-card .content h3 {
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.pages-blog-card .content h3 a {
  color: var(--blackColor);
}
.pages-blog-card .content h3 a:hover {
  color: var(--mainColor);
}
.pages-blog-card .content .read-more {
  position: relative;
  color: var(--bodyColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.pages-blog-card .content .read-more::before {
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--blackColor);
}
.pages-blog-card .content .read-more:hover {
  color: var(--blackColor);
}
.pages-blog-card .content .read-more:hover::before {
  width: 100%;
}
.pages-blog-card:hover .image img {
  transform: scale(1.08);
}
.pages-blog-card.style-2 p {
  font-weight: 500;
  color: var(--bodyColor);
}
.pages-blog-card.style-2 .content h3 {
  font-size: 34px;
  max-width: 626px;
}

.pagination {
  margin-top: 25px;
  margin-bottom: 25px;
}
.pagination .page-item {
  margin-right: 12px;
}
.pagination .page-item .page-link {
  border: 0;
  width: 48px;
  height: 48px;
  font-weight: 500;
  box-shadow: unset;
  line-height: 39px;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  color: var(--bodyColor);
  background-color: #f0f0f0;
  transition: var(--transition);
}
.pagination .page-item .page-link:hover, .pagination .page-item .page-link.active {
  color: var(--whiteColor);
  background-color: #ff7e84;
}
.pagination .page-item:last-child {
  margin-right: 0;
}

.blog-details-info {
  border-radius: 8px;
  margin-bottom: 60px;
  background-color: #f0f0f0;
}
.blog-details-info .content {
  padding: 40px;
}
.blog-details-info .content .list {
  margin-bottom: 25px;
}
.blog-details-info .content .list li {
  font-weight: 500;
  padding-left: 30px;
  margin-right: 80px;
  color: var(--bodyColor);
}
.blog-details-info .content .list li a {
  color: var(--bodyColor);
}
.blog-details-info .content .list li a:hover {
  color: var(--mainColor);
}
.blog-details-info .content .list li img {
  left: 0;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
}
.blog-details-info .content .list li:last-child {
  margin-right: 0;
}
.blog-details-info .content h2 {
  line-height: 1.5;
  margin-bottom: 20px;
  color: var(--blackColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.blog-details-info .content p {
  font-weight: 500;
  color: var(--bodyColor);
}
.blog-details-info .content blockquote {
  padding: 30px;
  border-radius: 4px;
  position: relative;
  background-color: #1cca81;
  margin-top: 30px;
  margin-bottom: 25px;
}
.blog-details-info .content blockquote .icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.blog-details-info .content blockquote h6 {
  line-height: 1.5;
  margin-bottom: 25px;
  color: var(--whiteColor);
  font-size: 20px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.blog-details-info .content blockquote h3 {
  padding-left: 65px;
  position: relative;
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: 500;
  font-family: var(--fontFamily);
}
.blog-details-info .content blockquote h3::before {
  top: 50%;
  left: 0;
  width: 48px;
  height: 3px;
  content: "";
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--whiteColor);
}
.blog-details-info .content blockquote .shape {
  right: 35px;
  bottom: 25px;
  position: absolute;
}
.blog-details-info .content blockquote .shape img {
  animation: rotateme 10s linear infinite;
}
.blog-details-info .content .card-image {
  margin-bottom: 30px;
}
.blog-details-info .content .card-image img {
  border-radius: 4px;
}
.blog-details-info .content h5 {
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--blackColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.blog-details-info .content .dot-list {
  margin-top: 30px;
  margin-bottom: 35px;
}
.blog-details-info .content .dot-list li {
  font-weight: 500;
  position: relative;
  padding-left: 22px;
  margin-bottom: 20px;
  color: var(--bodyColor);
}
.blog-details-info .content .dot-list li::before {
  top: 50%;
  left: 0;
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 100%;
  transform: translateY(-50%);
  background-color: rgb(28, 202, 129);
}
.blog-details-info .content .tag-list {
  margin-bottom: 35px;
}
.blog-details-info .content .tag-list ul li {
  margin-right: 16px;
}
.blog-details-info .content .tag-list ul li span {
  font-size: 18px;
  font-weight: 600;
  color: var(--blackColor);
}
.blog-details-info .content .tag-list ul li a {
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 2px;
  display: inline-block;
  color: var(--bodyColor);
  background-color: var(--whiteColor);
}
.blog-details-info .content .tag-list ul li a:hover, .blog-details-info .content .tag-list ul li a.active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}
.blog-details-info .content .tag-list ul li:last-child {
  margin-right: 0;
}
.blog-details-info .content .share-list {
  margin-bottom: 35px;
}
.blog-details-info .content .share-list ul {
  justify-content: end;
}
.blog-details-info .content .share-list ul li {
  margin-right: 11px;
}
.blog-details-info .content .share-list ul li span {
  font-size: 18px;
  font-weight: 600;
  color: var(--blackColor);
}
.blog-details-info .content .share-list ul li a {
  height: 32px;
  width: 32px;
  display: inline-block;
}
.blog-details-info .content .share-list ul li a:hover {
  transform: translateY(-7px);
}
.blog-details-info .content .share-list ul li:first-child {
  margin-right: 20px;
}
.blog-details-info .content .share-list ul li:last-child {
  margin-right: 0;
}
.blog-details-info .content .prev-post {
  padding: 20px;
  border-radius: 8px;
  background-color: var(--whiteColor);
}
.blog-details-info .content .prev-post .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 16px;
}
.blog-details-info .content .prev-post .image img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
}
.blog-details-info .content .prev-post .contents span {
  display: block;
  margin-bottom: 7px;
  color: var(--mainColor);
  font-size: 16px;
  font-weight: 500;
}
.blog-details-info .content .prev-post .contents h3 {
  max-width: 213px;
  line-height: 1.5;
  color: var(--blackColor);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.blog-details-info .content .prev-post.style-2 .image {
  margin-right: 0;
  margin-left: 16px;
}

.comments-info {
  margin-bottom: 60px;
}
.comments-info h3 {
  margin-bottom: 30px;
  color: var(--blackColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.comments-info .comments-card {
  padding-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid #f0f0f0;
}
.comments-info .comments-card .image {
  flex: 0 0 auto;
  display: block;
  margin-right: 25px;
}
.comments-info .comments-card .image img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
}
.comments-info .comments-card .content h5 {
  margin-bottom: 10px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}
.comments-info .comments-card .content p {
  max-width: 578px;
  font-size: 16px;
  font-weight: 500;
  color: var(--bodyColor);
}
.comments-info .comments-card .reply {
  top: 30px;
  right: 0;
  font-weight: 500;
  color: #1cca81;
  position: absolute;
  border-radius: 4px;
  display: inline-block;
  padding: 8px 13px 8px 46px;
  background-color: #e3f9f6;
}
.comments-info .comments-card .reply i {
  top: 50%;
  left: 15px;
  font-size: 20px;
  position: absolute;
  transform: translateY(-50%);
}
.comments-info .comments-card .reply:hover {
  color: var(--whiteColor);
  background-color: #1cca81;
}
.comments-info .comments-card.ml-100 {
  margin-left: 100px;
}

.single-contact-form h3 {
  margin-bottom: 20px;
  color: var(--blackColor);
  font-size: 34px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-contact-form p {
  font-weight: 500;
  margin-bottom: 30px;
  color: var(--bodyColor);
}
.single-contact-form form .form-group {
  margin-bottom: 25px;
}
.single-contact-form form .form-group .form-control {
  border: 0;
  height: 60px;
  font-weight: 500;
  box-shadow: unset;
  padding-left: 20px;
  color: var(--bodyColor);
  background-color: #f0f0f0;
}
.single-contact-form form .form-group .form-control.textarea {
  height: 200px;
  padding-top: 20px;
}
.single-contact-form.style-2 {
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 45px 0px rgba(0, 0, 0, 0.07);
}

.single-contact-content {
  margin-bottom: 25px;
}
.single-contact-content .section-title {
  margin-bottom: 60px;
}
.single-contact-content .contact-list {
  margin-bottom: 40px;
}
.single-contact-content .contact-list .icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  line-height: 56px;
  border-radius: 4px;
  text-align: center;
  margin-right: 20px;
  display: inline-block;
  background-color: #efe8f6;
}
.single-contact-content .contact-list .icon.bg-2 {
  background-color: #e3f9f6;
}
.single-contact-content .contact-list .content h3 {
  margin-bottom: 7px;
  color: var(--blackColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-contact-content .contact-list .content a {
  font-weight: 500;
  color: var(--bodyColor);
}
.single-contact-content .contact-list .content a:hover {
  color: var(--mainColor);
}
.single-contact-content .contact-list .content span {
  font-weight: 500;
  color: var(--bodyColor);
}

.contact-map iframe {
  width: 100%;
  height: 600px;
  margin-bottom: -5px;
}

.terms-conditions-content {
  margin-bottom: 25px;
}
.terms-conditions-content .title {
  margin-bottom: 25px;
}
.terms-conditions-content .title h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blackColor);
}
.terms-conditions-content .title p {
  font-weight: 500;
  color: var(--bodyColor);
}
.terms-conditions-content .title p a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title p a:hover {
  color: var(--mainColor);
}
.terms-conditions-content .title ul li {
  margin-bottom: 10px;
}
.terms-conditions-content .title ul li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.terms-conditions-content .title ul.general li:last-child {
  margin-bottom: 0;
}
.terms-conditions-content .title ul.general li strong {
  left: 0;
  position: absolute;
}
.terms-conditions-content .title ul.confidential li {
  padding-left: 20px;
  position: relative;
}
.terms-conditions-content .title ul.confidential li a {
  color: #92210f;
  text-decoration: none;
}
.terms-conditions-content .title ul.confidential li a:hover {
  color: var(--blackColor);
}
.terms-conditions-content .title ul.confidential li::before {
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  position: absolute;
  border-radius: 100%;
  background-color: var(--blackColor);
}
.terms-conditions-content .title strong {
  color: var(--blackColor);
}
.terms-conditions-content .title:last-child {
  margin-bottom: 0;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  background-color: #0c1327;
}
.footer-area .shapes .shape12 {
  left: 83px;
  bottom: 96px;
  z-index: -1;
  position: absolute;
}
.footer-area .shapes .shape13 {
  top: 113px;
  right: 101px;
  z-index: -1;
  position: absolute;
}
.footer-area .shapes .shape14 {
  right: 477px;
  bottom: 65px;
  z-index: -1;
  position: absolute;
}
.footer-area.style-2 {
  background-color: var(--whiteColor);
}
.footer-area.style-2 .footer-shape {
  top: -80px;
  position: absolute;
}
.footer-area.style-3 {
  background-color: var(--blackColor);
}
.footer-area.style-3 .shape24 {
  left: 10px;
  top: -120px;
  z-index: 1;
  position: absolute;
  animation: rotateme 20s linear infinite;
}

.single-footer-widget {
  margin-bottom: 25px;
}
.single-footer-widget h3 {
  margin-bottom: 40px;
  color: var(--whiteColor);
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-footer-widget.logo-info .logo {
  margin-bottom: 25px;
}
.single-footer-widget.logo-info p {
  opacity: 0.7;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
}
.single-footer-widget.logo-info .email {
  color: #8a47cb;
  margin-bottom: 30px;
  display: inline-block;
  text-decoration: underline;
  font-size: 18px;
  font-weight: 500;
}
.single-footer-widget.logo-info .social-link li {
  margin-right: 15px;
}
.single-footer-widget.logo-info .social-link li a {
  width: 36px;
  height: 36px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--bodyColor);
}
.single-footer-widget.logo-info .social-link li a:hover {
  background-color: var(--mainColor);
  transform: translateY(-7px);
}
.single-footer-widget.logo-info .social-link li:last-child {
  margin-right: 0;
}
.single-footer-widget.links-info ul li {
  margin-bottom: 20px;
}
.single-footer-widget.links-info ul li a {
  opacity: 0.7;
  color: #f0f0f0;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-footer-widget.links-info ul li a:hover {
  color: var(--mainColor);
}
.single-footer-widget.links-info ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.app-info span {
  opacity: 0.7;
  display: block;
  margin-bottom: 40px;
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-footer-widget.app-info ul li {
  margin-right: 20px;
  transition: var(--transition);
}
.single-footer-widget.app-info ul li:hover {
  transform: translateY(-10px);
}
.single-footer-widget.app-info ul li:last-child {
  margin-right: 0;
}
.single-footer-widget.style-2 h3 {
  color: var(--blackColor);
}
.single-footer-widget.style-2.logo-info p {
  color: var(--blackColor);
}
.single-footer-widget.style-2.logo-info .social-link li a {
  background-color: var(--blackColor);
}
.single-footer-widget.style-2.logo-info .social-link li a:hover {
  background-color: var(--mainColor);
}
.single-footer-widget.style-2.links-info ul li a {
  color: var(--bodyColor);
}
.single-footer-widget.style-2.links-info ul li a:hover {
  color: var(--mainColor);
}
.single-footer-widget.style-2.links-info ul li:last-child {
  margin-bottom: 0;
}
.single-footer-widget.style-2.app-info span {
  color: var(--bodyColor);
}
.single-footer-widget.style-3.logo-info {
  margin-right: -3px !important;
}
.single-footer-widget.style-3.logo-info p {
  opacity: 100%;
  font-size: 16px;
}
.single-footer-widget.style-3.logo-info h4 {
  color: var(--whiteColor);
  margin-top: 30px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fontFamily);
}
.single-footer-widget.style-3.logo-info .social-link li {
  margin-right: 15px;
}
.single-footer-widget.style-3.logo-info .social-link li a {
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 37px;
  border-radius: 4px;
  border: 1px solid #878787;
  background-color: var(--blackColor);
}
.single-footer-widget.style-3.logo-info .social-link li a:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}
.single-footer-widget.style-3.logo-info .social-link li:last-child {
  margin-right: 0;
}
.single-footer-widget.style-3.links-info {
  margin-right: -22px !important;
}
.single-footer-widget.style-3.links-info ul li {
  padding-left: 22px;
  position: relative;
}
.single-footer-widget.style-3.links-info ul li a {
  opacity: 100%;
  color: var(--whiteColor);
  font-size: 16px;
  font-weight: 500;
}
.single-footer-widget.style-3.links-info ul li a:hover {
  color: var(--mainColor);
}
.single-footer-widget.style-3.links-info ul li img {
  left: 0;
  top: 8px;
  position: absolute;
}
.single-footer-widget.style-3.contact-info {
  margin-left: 65px !important;
}
.single-footer-widget.style-3.contact-info .items {
  margin-bottom: 18px;
}
.single-footer-widget.style-3.contact-info .items .icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  line-height: 38px;
  text-align: center;
  margin-right: 16px;
  border-radius: 100%;
  display: inline-block;
  background-color: var(--mainColor);
}
.single-footer-widget.style-3.contact-info .items .content p {
  color: #878787;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 500;
}
.single-footer-widget.style-3.contact-info .items .content span {
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
}
.single-footer-widget.style-3.contact-info .items .content a {
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
}
.single-footer-widget.style-3.contact-info .items .content a:hover {
  color: var(--mainColor);
}
.single-footer-widget.style-3.subscribe-info {
  margin-left: 67px !important;
}
.single-footer-widget.style-3.subscribe-info form .form-group {
  margin-bottom: 20px;
}
.single-footer-widget.style-3.subscribe-info form .form-group .form-control {
  height: 60px;
  border: 0;
  font-weight: 500;
  box-shadow: unset;
  padding-left: 20px;
  background-color: var(--whiteColor);
}
.single-footer-widget.style-3.subscribe-info form .form-group .form-control::-moz-placeholder {
  color: #878787;
}
.single-footer-widget.style-3.subscribe-info form .form-group .form-control::placeholder {
  color: #878787;
}

.col-lg-3:nth-child(1) .single-footer-widget {
  margin-right: 10px;
}
.col-lg-3:nth-child(3) .single-footer-widget {
  margin-left: 50px;
}

.col-lg-2:nth-child(2) .single-footer-widget {
  margin-left: 50px;
}

.col-lg-4:nth-child(4) .single-footer-widget {
  margin-left: -10px;
}

/*================================================
Copyright Area CSS
=================================================*/
.copyright-area {
  padding-top: 17px;
  padding-bottom: 17px;
  background-color: var(--mainColor);
}
.copyright-area .icon-info a {
  left: 0;
  right: 0;
  top: -35px;
  z-index: -1;
  width: 65px;
  height: 65px;
  margin: auto;
  line-height: 50px;
  position: absolute;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  border: 5px solid var(--whiteColor);
}
.copyright-area .icon-info a:hover {
  background-color: var(--blackColor);
}
.copyright-area.style-3 {
  border-top: 1px solid #878787;
  background-color: var(--blackColor);
}

.copyright-content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--whiteColor);
  font-family: var(--fontFamily);
}
.copyright-content.style-3 p {
  color: #878787;
  font-size: 14px;
  font-weight: 400;
}

.copyright-list {
  text-align: end;
}
.copyright-list ul li {
  margin-right: 40px;
}
.copyright-list ul li a {
  font-weight: 500;
  position: relative;
  color: var(--whiteColor);
}
.copyright-list ul li a::before {
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  content: "";
  position: absolute;
  transition: var(--transition);
  background-color: var(--whiteColor);
}
.copyright-list ul li a:hover::before, .copyright-list ul li a.active::before {
  width: 100%;
}
.copyright-list ul li:last-child {
  margin-right: 0;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  z-index: 9;
  opacity: 0;
  right: 20px;
  width: 48px;
  height: 50px;
  bottom: 20px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 30px;
  visibility: hidden;
  transition: var(--transition);
  background-color: var(--mainColor);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}
.go-top img {
  left: 0;
  top: 50%;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
}
.go-top.active {
  opacity: 1;
  z-index: 999;
  bottom: 20px;
  visibility: visible;
}
.go-top:hover {
  transform: translateY(-7px);
}
.course-container{
    display:flex;
    gap:30px;
    justify-content:center;
    padding-bottom: 80px;
    flex-wrap:wrap;
}

.course-card{
    width:300px;
    padding:45px 30px;
    border-radius:18px;
    text-align:center;
    background:#f3e0d4;
    transition:.45s ease;
    cursor:pointer;
    position:relative;
    overflow:hidden;
}

/* middle card color */
.course-card:nth-child(2){
    background:#dceccf;
}

/* ICON */
.icon-box{
    font-size:55px;
    margin-bottom:20px;
    transition:.45s;
}

/* TEXT */
.course-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
    transition:.45s;
}

.course-card p{
    font-size:17px;
    color:#666;
    transition:.45s;
}

/* 🔥 PROFESSIONAL HOVER */
.course-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 25px 50px rgba(0,0,0,0.18);
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
}

/* text white on hover */
.course-card:hover h3,
.course-card:hover p{
    color:white;
}

/* icon zoom */
.course-card:hover .icon-box{
    transform:scale(1.2) rotate(5deg);
}
body {
  margin: 0;
  font-family: 'Times New Roman', serif;
  background: #f4f4f4;
}

/* Center layout */
.form-section {
  display: flex;
  justify-content: center;
  padding: 30px;
}

/* Paper style box */
.form-box {
  width: 800px;
  background: #fff;
  padding: 25px 40px;
  border: 2px solid #000;
}

/* Heading */
h2 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 22px;
}

.subtitle {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Paragraph spacing */
p {
  margin: 12px 0;
  font-size: 15px;
  text-align: justify;
}

/* Input line style */
input[type="text"] {
  border: none;
  border-bottom: 1px solid #000;
  
  outline: none;
  font-size: 14px;
}

/* Small input */
.small {
  width: 150px;
}

/* Textarea */
textarea {
  width: 100%;
  border: 1px solid #000;
  margin-top: 5px;
}

/* Checkbox */
label {
  margin-right: 10px;
  font-size: 14px;
}

/* Button */
button {
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background: #444;
}

body{
  margin:0;
  font-family:'Poppins', sans-serif;
  background:#f8fafc;
  color:#1e293b;
}

.container{
  max-width:1100px;
  margin:auto;
  padding:0 20px;
}

.section{
  padding:70px 0;
}

/* HERO */
.hero{
  text-align:center;
}

.hero h1{
  font-size:38px;
  color:#1d4ed8;
}

.subtitle{
  color:#f59e0b;
  font-weight:600;
  margin:10px 0;
}

.desc{
  color:#64748b;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:25px;
  padding:12px 30px;
  background:#facc15;
  color:#000;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  background:#f59e0b;
  transform:translateY(-3px);
}

/* HEADINGS */
h2{
  text-align:center;
 
}

/* CARDS */
.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  padding:25px;
  border-radius:15px;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,0.05);
  transition:0.3s;
}

.card h3{
  margin-bottom:10px;
}

.card p{
  color:#64748b;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 25px rgba(0,0,0,0.1);
  border-top:4px solid #facc15;
}

/* LIST */
.light-bg{
  background:#eef2ff;
}

.list{
  max-width:600px;
  margin:auto;
  list-style:none;
  padding:0;
}

.list li{
  background:#fff;
  margin:12px 0;
  padding:12px 18px;
  border-radius:8px;
  box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

.list li::before{
  content:"✔ ";
  color:#facc15;
  font-weight:bold;
}

/* CENTER */
.center{
  text-align:center;
}

/* CONTACT */
.contact{
  background:#1d4ed8;
  color:#fff;
  padding:35px;
  border-radius:15px;
  text-align:center;
}

.phone{
  margin-top:10px;
  font-size:18px;
  font-weight:600;
}

/* SCROLL ANIMATION */
.wow{
  opacity:0;
  transform:translateY(40px);
  transition:all 0.8s ease;
}

.wow.show{
  opacity:1;
  transform:translateY(0);
}

:root {
  --rk-gradient: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  --rk-primary: #0063F4;
  --rk-secondary: #00F0AA;
  --rk-dark: #0f172a;
  --rk-text: #475569;
  --rk-white: #ffffff;
  --rk-border: rgba(0, 99, 244, 0.12);
  --rk-shadow: 0 10px 35px rgba(15, 23, 42, 0.08);
  --rk-shadow-hover: 0 24px 60px rgba(0, 99, 244, 0.16);
}

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

.rk-coaching-page {
  font-family: "Poppins", sans-serif;
  color: var(--rk-dark);
  background: #ffffff;
}

.rk-container {
  width: min(1220px, 92%);
  margin: 0 auto;
}

.rk-section {
  padding: 90px 0;
}

/* Different section backgrounds */
.rk-hero {
  padding: 30px 0;
  background:
    radial-gradient(circle at top right, rgba(0, 240, 170, 0.14), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0, 99, 244, 0.10), transparent 35%),
    linear-gradient(135deg, #f8fcff 0%, #eef8ff 100%);
}

.rk-about {
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.rk-why {
  background: linear-gradient(135deg, #f4fbff 0%, #edf9ff 100%);
}

.rk-courses {
  background: linear-gradient(135deg, #ffffff 0%, #f4fcf9 100%);
}

.rk-maths {
  background: linear-gradient(135deg, #f7fbff 0%, #eef5ff 100%);
}

.rk-system {
  background: linear-gradient(135deg, #fcfffd 0%, #eefdfa 100%);
}

.rk-cta {
  background: linear-gradient(135deg, #f6fbff 0%, #eefaff 100%);
}

.rk-hero-grid {
  min-height: 60vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.rk-section-heading {
  margin-bottom: 40px;
}

.rk-section-heading.center {
  text-align: center;
}

.rk-mini-title {
  display: flex;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--rk-primary);
    margin-bottom: 12px;
    position: relative;
    align-content: center;
    flex-direction: column-reverse;
    flex-wrap: wrap;
}

.rk-mini-title::after {
  content: "";
  width: 52px;
  height: 4px;
  border-radius: 20px;
  background: var(--rk-gradient);
  display: block;
  margin-top: 8px;
}

.rk-section-heading.center .rk-mini-title::after {
  margin-left: auto;
  margin-right: auto;
}

.rk-section-heading h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
}

.rk-badge {
  display: inline-flex;
  align-items: center;
  padding: 11px 20px;
  background: rgba(0, 99, 244, 0.08);
  color: var(--rk-primary);
  border: 1px solid rgba(0, 99, 244, 0.12);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.rk-hero h1 {
  font-size: 45px;
  line-height: 1.08;
  font-weight: 700;
  max-width: 760px;
}

.rk-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--rk-text);
  margin-top: 22px;
  max-width: 720px;
}

.rk-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.rk-hero-points span {
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 99, 244, 0.12);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: 0.4s ease;
}

.rk-hero-points span:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 99, 244, 0.14);
  border-color: rgba(0, 99, 244, 0.24);
}

.rk-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.rk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.rk-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: translateX(-120%);
  transition: 0.7s ease;
}

.rk-btn:hover::before {
  transform: translateX(120%);
}

.rk-btn-primary {
  background: var(--rk-gradient);
  color: var(--rk-white);
  box-shadow: 0 14px 28px rgba(0, 99, 244, 0.18);
}

.rk-btn-primary:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 24px 42px rgba(0, 99, 244, 0.24);
}

.rk-btn-outline {
  border: 1px solid rgba(0, 99, 244, 0.18);
  background: rgba(255, 255, 255, 0.85);
  color: var(--rk-primary);
}

.rk-btn-outline:hover {
  transform: translateY(-5px) scale(1.02);
  background: #ffffff;
  box-shadow: 0 20px 35px rgba(0, 99, 244, 0.12);
}

.rk-hero-card {
  display: flex;
  justify-content: center;
}

.rk-highlight-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.97) 0%, rgba(244,251,255,0.97) 100%);
  border: 1px solid var(--rk-border);
  border-radius: 30px;
  padding: 42px 34px;
  box-shadow: var(--rk-shadow);
  position: relative;
  overflow: hidden;
  transition: 0.45s ease;
}

.rk-highlight-box::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--rk-gradient);
}

.rk-highlight-box:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: var(--rk-shadow-hover);
}

.rk-highlight-box h3 {
  font-size: 28px;
  margin-bottom: 14px;
}

.rk-highlight-box p {
  color: var(--rk-text);
  line-height: 1.9;
  font-size: 16px;
}

.rk-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: start;
}

.rk-about-text p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--rk-text);
  margin-bottom: 18px;
  text-align: justify;
}

.rk-stats-grid,
.rk-card-grid,
.rk-course-grid,
.rk-maths-grid,
.rk-system-grid {
  display: grid;
  gap: 24px;
}

.rk-stats-grid {
  grid-template-columns: repeat(2, 1fr);
}

.rk-card-grid {
  grid-template-columns: repeat(3, 1fr);
}

.rk-course-grid {
  grid-template-columns: repeat(4, 1fr);
}

.rk-maths-grid {
  grid-template-columns: repeat(2, 1fr);
}

.rk-system-grid-two {
  grid-template-columns: repeat(2, 1fr);
}

.rk-stat-card,
.rk-feature-card,
.rk-course-card,
.rk-check-card,
.rk-system-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(245,250,255,0.96) 100%);
  border: 1px solid var(--rk-border);
  border-radius: 24px;
  padding: 30px 24px;
  box-shadow: var(--rk-shadow);
  transition: 0.45s ease;
  position: relative;
  overflow: hidden;
}

.rk-stat-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: var(--rk-gradient);
  transition: 0.45s ease;
}

.rk-stat-card:hover::after {
  width: 100%;
}

.rk-feature-card::before,
.rk-course-card::before,
.rk-check-card::before,
.rk-system-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,99,244,0.04), rgba(0,240,170,0.05));
  opacity: 0;
  transition: 0.45s ease;
}

.rk-feature-card:hover::before,
.rk-course-card:hover::before,
.rk-check-card:hover::before,
.rk-system-card:hover::before {
  opacity: 1;
}

.rk-stat-card:hover,
.rk-feature-card:hover,
.rk-course-card:hover,
.rk-check-card:hover,
.rk-system-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--rk-shadow-hover);
  border-color: rgba(0, 99, 244, 0.22);
}

.rk-stat-card h3,
.rk-feature-card h3,
.rk-course-card h3,
.rk-check-card h3,
.rk-system-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  transition: 0.35s ease;
}

.rk-stat-card h3 {
  font-size: 34px;
  font-weight: 700;
  background: var(--rk-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rk-feature-card:hover h3,
.rk-course-card:hover h3,
.rk-check-card:hover h3,
.rk-system-card:hover h3 {
  color: var(--rk-primary);
}

.rk-stat-card p,
.rk-feature-card p,
.rk-course-card p,
.rk-check-card p,
.rk-system-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--rk-text);
  position: relative;
  z-index: 1;
}

.rk-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rk-gradient);
  color: var(--rk-white);
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 12px 22px rgba(0, 99, 244, 0.16);
  transition: 0.4s ease;
  position: relative;
  z-index: 1;
}

.rk-feature-card:hover .rk-icon {
  transform: rotate(-8deg) scale(1.08);
}

.rk-maths-wrap {
  background: transparent;
}

.rk-system-card ul {
  padding-left: 18px;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.rk-system-card ul li {
  color: var(--rk-text);
  line-height: 1.9;
  margin-bottom: 6px;
  font-size: 15px;
}

.rk-cta-box {
  background: var(--rk-gradient);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  color: var(--rk-white);
  box-shadow: 0 18px 40px rgba(0, 99, 244, 0.22);
  position: relative;
  overflow: hidden;
}

.rk-mini-light {
  color: rgba(255, 255, 255, 0.9);
}

.rk-mini-light::after {
  background: rgba(255, 255, 255, 0.9);
}

.rk-cta-box h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

.rk-cta-box p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.94);
}

.rk-cta-box .rk-hero-buttons {
  justify-content: center;
  margin-top: 28px;
}

.rk-btn-white {
  background: var(--rk-white);
  color: var(--rk-primary);
}

.rk-btn-white:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.18);
}

.rk-btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--rk-white);
  background: rgba(255,255,255,0.08);
}

.rk-btn-outline-light:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1100px) {
  .rk-hero-grid,
  .rk-about-grid,
  .rk-card-grid,
  .rk-course-grid,
  .rk-system-grid-two {
    grid-template-columns: repeat(2, 1fr);
  }

  .rk-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rk-hero h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .rk-section,
  .rk-hero {
    padding: 70px 0;
  }

  .rk-hero-grid,
  .rk-about-grid,
  .rk-card-grid,
  .rk-course-grid,
  .rk-maths-grid,
  .rk-system-grid-two,
  .rk-stats-grid {
    grid-template-columns: 1fr;
  }

  .rk-hero h1,
  .rk-section-heading h2,
  .rk-cta-box h2 {
    font-size: 34px;
  }

  .rk-subtitle,
  .rk-about-text p,
  .rk-cta-box p {
    font-size: 16px;
  }

  .rk-cta-box {
    padding: 35px 22px;
  }

  .rk-btn {
    width: 100%;
  }

  .rk-hero-buttons {
    flex-direction: column;
  }
}

.other-subjects-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #f7f9fc, #edf4fb);
  font-family: 'Poppins', sans-serif;
}

.other-subjects-section * {
  box-sizing: border-box;
}

.other-subjects-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.other-subjects-section .section-heading {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
}

.other-subjects-section .section-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(0, 99, 244, 0.08);
    color: var(--rk-primary);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.other-subjects-section .section-heading h2 {
  font-size: 44px;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 18px;
  font-weight: 700;
}

.other-subjects-section .section-heading p {
  font-size: 16px;
  line-height: 1.8;
  color: #5b6475;
}

.other-subjects-section .highlight-strip {
  display: flex;
  align-items: center;
  gap: 20px;
 background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  padding: 25px 30px;
  border-radius: 22px;
  margin-bottom: 45px;
  box-shadow: 0 18px 40px rgba(15, 76, 129, 0.18);
  transition: all 0.35s ease;
}

.other-subjects-section .highlight-strip:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 76, 129, 0.25);
}

.other-subjects-section .highlight-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-subjects-section .highlight-icon i {
  font-size: 28px;
  color: #ffd166;
}

.other-subjects-section .highlight-text h3 {
  font-size: 24px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 600;
}

.other-subjects-section .highlight-text p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin: 0;
}

.other-subjects-section .subjects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.other-subjects-section .subject-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid #ebf0f7;
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.other-subjects-section .subject-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0f4c81, #ffd166);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.other-subjects-section .subject-card:hover::before {
  transform: scaleX(1);
}

.other-subjects-section .subject-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(15, 76, 129, 0.14);
}

.other-subjects-section .subject-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 76, 129, 0.12), rgba(31, 111, 178, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}

.other-subjects-section .subject-card:hover .subject-icon {
  transform: rotateY(180deg);
}

.other-subjects-section .subject-icon i {
  font-size: 28px;
  color: var(--rk-primary);;
}

.other-subjects-section .subject-card h3 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 12px;
  font-weight: 600;
}

.other-subjects-section .subject-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #5b6475;
  margin: 0;
}

.other-subjects-section .support-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.other-subjects-section .support-box {
  background: #fff;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 14px 35px rgba(15, 76, 129, 0.08);
  border: 1px solid #ebf0f7;
  transition: all 0.35s ease;
}

.other-subjects-section .support-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 45px rgba(15, 76, 129, 0.14);
}

.other-subjects-section .support-box-dark {
 background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  color: #fff;
}

.other-subjects-section .mini-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: rgba(15, 76, 129, 0.10);
  color: var(--rk-primary);;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.other-subjects-section .mini-badge.light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.other-subjects-section .support-box h3 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 14px;
  font-weight: 600;
}

.other-subjects-section .support-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #5b6475;
  margin-bottom: 18px;
}

.other-subjects-section .support-box-dark p {
  color: rgba(255, 255, 255, 0.88);
}

.other-subjects-section .support-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-subjects-section .support-box ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #374151;
  font-size: 15px;
}

.other-subjects-section .support-box ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #0f4c81;
  font-weight: 700;
}

.other-subjects-section .btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.other-subjects-section .custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.35s ease;
}

.other-subjects-section .primary-btn {
  background: #fff;
  color: #0f4c81;
}

.other-subjects-section .primary-btn:hover {
  transform: translateY(-4px);
  background: #ffd166;
  color: #0f172a;
}

.other-subjects-section .outline-btn {
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.other-subjects-section .outline-btn:hover {
  background: #fff;
  color: #0f4c81;
  transform: translateY(-4px);
}

@media (max-width: 1024px) {
  .other-subjects-section .subjects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-subjects-section .support-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .other-subjects-section {
    padding: 70px 0;
  }

  .other-subjects-section .section-heading h2 {
    font-size: 34px;
  }

  .other-subjects-section .highlight-strip {
    flex-direction: column;
    text-align: center;
  }

  .other-subjects-section .subjects-grid {
    grid-template-columns: 1fr;
  }

  .other-subjects-section .support-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .other-subjects-section .container {
    width: 92%;
  }

  .other-subjects-section .section-heading h2 {
    font-size: 30px;
  }

  .other-subjects-section .section-heading p,
  .other-subjects-section .subject-card p,
  .other-subjects-section .support-box p {
    font-size: 14px;
  }

  .other-subjects-section .subject-card,
  .other-subjects-section .support-box {
    padding: 24px 18px;
  }

  .other-subjects-section .btn-group {
    flex-direction: column;
  }
}

:root{
  --Gradient: linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%);
  --rk-primary: #0063F4;
  --rk-secondary: #00F0AA;
  --rk-dark: #0f172a;
  --rk-text: #475569;
  --rk-light-text: #64748b;
  --rk-white: #ffffff;
  --rk-bg: #f8fbff;
  --rk-soft: #eef7ff;
  --rk-border: rgba(0, 99, 244, 0.10);
  --rk-shadow: 0 14px 40px rgba(0, 99, 244, 0.10);
}

.rk-admission-guidance-page{
  background: var(--rk-bg);
  overflow: hidden;
}

.rk-container{
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.rk-ag-section{
  padding: 80px 0;
}

.rk-ag-soft-bg{
  background: #f2f9ff;
}

.rk-ag-heading{
  margin-bottom: 40px;
}

.rk-ag-heading.center{
  text-align: center;
}

.rk-ag-mini-title{
 display: flex;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--rk-primary);
    margin-bottom: 12px;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: center;
}

.rk-ag-heading h2{
  font-size: 42px;
  line-height: 1.2;
  color: var(--rk-dark);
  margin: 0 0 12px;
}

.rk-ag-heading p{
  font-size: 17px;
  line-height: 1.7;
  color: var(--rk-light-text);
  max-width: 820px;
  margin: 0 auto;
}

/* Hero */
.rk-ag-hero{
  padding: 90px 0 70px;
  background:
    linear-gradient(180deg, rgba(0,99,244,.05) 0%, rgba(0,240,170,.05) 100%);
}

.rk-ag-hero-wrap{
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 32px;
  align-items: center;
}

.rk-ag-badge{
  display: inline-block;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(0, 99, 244, 0.08);
  color: var(--rk-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.rk-ag-hero-content h1{
  font-size: 54px;
  line-height: 1.15;
  color: var(--rk-dark);
  margin: 0 0 20px;
}

.rk-ag-hero-content p{
  font-size: 18px;
  line-height: 1.8;
  color: var(--rk-text);
  margin: 0 0 28px;
  max-width: 720px;
}

.rk-ag-hero-btns{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.rk-ag-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.rk-ag-btn-primary{
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  color: #fff;
  box-shadow: var(--rk-shadow);
}

.rk-ag-btn-primary:hover{
  transform: translateY(-2px);
}

.rk-ag-btn-outline{
  border: 1px solid var(--rk-primary);
  color: var(--rk-primary);
  background: #fff;
}

.rk-ag-btn-outline:hover{
  background: rgba(0,99,244,.05);
}

.rk-ag-hero-card{
  display: flex;
  justify-content: flex-end;
}

.rk-ag-mini-card{
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--rk-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--rk-shadow);
  position: relative;
}

.rk-ag-mini-card::before{
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 24px;
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.rk-ag-mini-card h3{
  font-size: 24px;
  color: var(--rk-dark);
  margin: 0 0 18px;
}

.rk-ag-mini-card ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

.rk-ag-mini-card ul li{
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  color: var(--rk-text);
  font-size: 16px;
}

.rk-ag-mini-card ul li::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  position: absolute;
  left: 0;
  top: 9px;
}

/* Course Grid */
.rk-ag-course-grid,
.rk-ag-support-grid,
.rk-ag-why-grid,
.rk-ag-contact-grid{
  display: grid;
  gap: 24px;
}

.rk-ag-course-grid{
  grid-template-columns: repeat(3, 1fr);
}

.rk-ag-course-card,
.rk-ag-support-card,
.rk-ag-why-card,
.rk-ag-contact-card{
  background: #fff;
  border: 1px solid var(--rk-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
}

.rk-ag-course-card:hover,
.rk-ag-support-card:hover,
.rk-ag-why-card:hover,
.rk-ag-contact-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--rk-shadow);
}

.rk-ag-course-card h3,
.rk-ag-support-card h3,
.rk-ag-why-card h3,
.rk-ag-contact-card h3{
  font-size: 20px;
  color: var(--rk-dark);
  margin: 0 0 14px;
}

.rk-ag-course-card p,
.rk-ag-support-card p,
.rk-ag-why-card p,
.rk-ag-contact-card p{
  font-size: 16px;
  line-height: 1.8;
  color: var(--rk-text);
  margin: 0;
}

/* Support */
.rk-ag-support-grid{
  grid-template-columns: repeat(3, 1fr);
}

.rk-ag-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Area */
.rk-ag-area-box{
  background: #fff;
  border: 1px solid var(--rk-border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--rk-shadow);
}

.rk-ag-area-list{
  display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: center;
}

.rk-ag-area-list span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  background: rgba(0, 99, 244, 0.06);
  color: var(--rk-primary);
  font-size: 15px;
  font-weight: 600;
}

/* Why */
.rk-ag-why-grid{
  grid-template-columns: repeat(4, 1fr);
}

/* CTA */
.rk-ag-cta{
  padding: 90px 0;
}

.rk-ag-cta-box{
  background: var(--Gradient, linear-gradient(100deg, #0063F4 7.82%, #00F0AA 87.12%));
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 20px 50px rgba(0, 99, 244, 0.18);
}

.rk-ag-cta-box .rk-ag-heading h2,
.rk-ag-cta-box .rk-ag-heading p,
.rk-ag-mini-light{
  color: #fff;
}

.rk-ag-contact-grid{
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
}

.rk-ag-contact-card{
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}

.rk-ag-contact-card h3,
.rk-ag-contact-card p,
.rk-ag-contact-card a{
  color: #fff;
  text-decoration: none;
}

.rk-ag-center-btn{
  justify-content: center;
  margin-top: 35px;
}

.rk-ag-btn-white{
  background: #fff;
  color: var(--rk-primary);
}

.rk-ag-btn-outline-white{
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.rk-ag-btn-outline-white:hover{
  background: rgba(255,255,255,.10);
}

/* Responsive */
@media (max-width: 1199px){
  .rk-ag-course-grid,
  .rk-ag-support-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .rk-ag-why-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px){
  .rk-ag-section,
  .rk-ag-cta{
    padding: 65px 0;
  }

  .rk-ag-hero{
    padding: 70px 0 50px;
  }

  .rk-ag-hero-wrap{
    grid-template-columns: 1fr;
  }

  .rk-ag-hero-content h1{
    font-size: 40px;
  }

  .rk-ag-heading h2{
    font-size: 34px;
  }

  .rk-ag-contact-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px){
  .rk-ag-course-grid,
  .rk-ag-support-grid,
  .rk-ag-why-grid{
    grid-template-columns: 1fr;
  }

  .rk-ag-hero-content h1{
    font-size: 32px;
  }

  .rk-ag-heading h2{
    font-size: 28px;
  }

  .rk-ag-hero-content p,
  .rk-ag-course-card p,
  .rk-ag-support-card p,
  .rk-ag-why-card p,
  .rk-ag-contact-card p{
    font-size: 15px;
  }

  .rk-ag-cta-box{
    padding: 40px 22px;
    border-radius: 22px;
  }

  .rk-ag-area-box,
  .rk-ag-course-card,
  .rk-ag-support-card,
  .rk-ag-why-card,
  .rk-ag-contact-card,
  .rk-ag-mini-card{
    padding: 22px;
  }
}

.course-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: #f5f5f5;
}

.slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 10s linear infinite;
}

.card {
  width: 300px;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.card img {
  width: 100%;
  
  object-fit: contain;
  
}

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

/* 🔥 FIXED LOOP */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}