@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
.font-extralight {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

.font-black {
  color: #282828;
}

.background-black {
  background: #282828;
}

.font-white {
  color: #fff;
}

.background-white {
  background: #fff;
}

.font-red {
  color: #aa0607;
}

.background-red {
  background: #aa0607;
}

.font-gray {
  color: #828282;
}

.background-gray {
  background: #828282;
}

.font-darkprimary {
  color: #ff9203;
}

.background-darkprimary {
  background: #ff9203;
}

.font-primary {
  color: #ea9625;
}

.background-primary {
  background: #ea9625;
}

.font-lightprimary {
  color: #fae0b4;
}

.background-lightprimary {
  background: #fae0b4;
}

.font-secondary {
  color: #8fd9fb;
}

.background-secondary {
  background: #8fd9fb;
}

.font-lightsecondary {
  color: #b1e4fc;
}

.background-lightsecondary {
  background: #b1e4fc;
}

.font-darksecondary {
  color: #0084c1;
}

.background-darksecondary {
  background: #0084c1;
}

.font-lightgray {
  color: #e7eefa;
}

.background-lightgray {
  background: #e7eefa;
}

.font-lightgradient {
  color: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.background-lightgradient {
  background: linear-gradient(270deg, #e9defa 0%, rgba(251, 252, 219, 0.5) 100%);
}

.font-darkblue {
  color: #000048;
}

.background-darkblue {
  background: #000048;
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #282828;
}

ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

p {
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 160%;
  color: black;
}

.custom-container {
  width: 90%;
  margin: 0 auto;
}

.default-btn, .blue-btn, .primary-btn {
  font-size: 0.9rem;
  text-align: center;
  padding: 10px 15px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  display: inline-block;
  border-radius: 6px;
  font-weight: 500;
}

.primary-btn {
  background: #ea9625;
  color: #fff;
}
.primary-btn:hover {
  background: #e08a16;
}

.blue-btn {
  background: linear-gradient(0deg, #0060c5 -3.64%, #3598ff 100%);
  color: #fff;
}
.blue-btn:hover {
  background: linear-gradient(0deg, #004c9d -3.64%, #3598ff 100%);
}

.fixed-top-nav .navbar-brand img {
  width: 250px;
}
@media (max-width: 768px) {
  .fixed-top-nav .navbar-brand img {
    width: 180px;
  }
}

header {
  background: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
header .navbar-brand img {
  width: 280px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
@media (max-width: 768px) {
  header .navbar-brand img {
    width: 215px;
  }
}
@media (max-width: 996px) {
  header .nav-item {
    margin-bottom: 10px;
  }
}
header .nav-item .nav-link {
  padding: 0.5rem 1rem !important;
  font-weight: 500;
  text-transform: uppercase;
  color: #282828;
  font-size: 0.9rem;
}
header .nav-item .nav-link:hover {
  color: #ea9625;
}
@media (max-width: 996px) {
  header .nav-item .nav-link {
    background: #eee;
    padding: 14px 15px !important;
  }
}
header .nav-item .active-nav {
  display: block;
  padding: 0.5rem 1rem !important;
  color: #ea9625;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.9rem;
}
@media (max-width: 996px) {
  header .nav-item .active-nav {
    background: #ea9625;
    padding: 14px 15px !important;
    color: #fff;
  }
}
header .whatsappicon img {
  width: 45px;
}
header .offcanvas-title img {
  width: 250px;
}

main {
  margin-top: 60px;
}
@media (max-width: 996px) {
  main {
    margin-top: 52px;
  }
}

.bannerHome .swiper-container {
  color: #fff;
}
.bannerHome .swiper-slide {
  background: linear-gradient(262deg, #000020 -0.66%, #100024 100%);
  width: 100%;
}
@media (max-width: 996px) {
  .bannerHome .swiper-slide {
    padding: 0 0 25px 0;
    min-height: 60vh;
  }
}
.bannerHome .swiper-slide article {
  width: 75%;
  margin: 0 auto;
}
@media (max-width: 996px) {
  .bannerHome .swiper-slide article {
    width: 100%;
    padding: 10px;
  }
}
.bannerHome .swiper-slide article h2 {
  padding-bottom: 15px;
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  color: #fff;
}
@media (max-width: 996px) {
  .bannerHome .swiper-slide article h2 {
    padding-bottom: 5px;
    margin: 0;
  }
}
.bannerHome .swiper-slide article p {
  color: #fff;
}
.bannerHome .swiper-slide article ul li {
  color: #fff;
}
.bannerHome .swiper-pagination {
  text-align: left;
  left: 6%;
  bottom: 30px;
}
.bannerHome .leftArticle .frame01 {
  top: -33%;
  left: 0;
}
@media (max-width: 768px) {
  .bannerHome .leftArticle .frame01 {
    display: none;
  }
}
.bannerHome .leftArticle .frame02 {
  bottom: -33%;
  right: 0;
}
@media (max-width: 768px) {
  .bannerHome .leftArticle .frame02 {
    display: none;
  }
}

.homeSection {
  padding-top: 65px;
}
@media (max-width: 996px) {
  .homeSection {
    padding-top: 25px;
  }
}

.sectionTitle h3 {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  text-align: center;
  font-weight: 700;
}

.list-items li {
  padding-bottom: 15px;
  position: relative;
  padding-left: 35px;
  font-size: clamp(0.9rem, 1vw, 1rem);
}
.list-items li:before {
  content: "\e907";
  font-size: 18px;
  position: absolute;
  left: 0;
  top: -2px;
  font-family: "icomoon" !important;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 30px;
  height: 3px;
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #ea9625;
}

.popularCourses .card img {
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}
.popularCourses .card .card-title {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}
.popularCourses .card p {
  font-size: 14px;
  color: #5b5b5b;
}
.popularCourses .card a {
  font-weight: 600;
  font-size: 13px;
}
.popularCourses .card:hover a {
  color: #ea9625;
}

.homeLeaders {
  background: #ecf5fe;
  margin-top: 50px;
  padding-bottom: 50px;
  overflow: hidden;
}
.homeLeaders .marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  height: auto;
}
.homeLeaders .marquee .track {
  position: relative;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 25s linear infinite;
  display: flex;
  flex-direction: row;
}
.homeLeaders .marquee .track .item {
  width: 120px;
  display: flex;
  flex-direction: column;
}
.homeLeaders .marquee .track .item img {
  margin: 20px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}
.homeServices {
  padding-bottom: 60px;
}
.homeServices h4 {
  line-height: 150%;
}
@media (max-width: 768px) {
  .homeServices h4 {
    font-size: 15px;
  }
}
.homeServices .service-card img {
  width: 100%;
}
.homeServices .service-card article {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.1) 51.35%);
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  height: 100%;
}
.homeServices .service-card article p {
  font-size: 14px;
}

.otherCourses {
  background: linear-gradient(260deg, #e5f1ff 0%, #fff 100%);
  padding: 100px 0;
}
.otherCourses ul li {
  background: #e7eefa;
  padding: 3px 10px;
  border-radius: 5px;
  border: 1px solid #e2f5fe;
  margin: 4px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
.otherCourses ul li:hover {
  background: #ea9625;
  color: #fff;
}

.testimonial-home {
  background: linear-gradient(259deg, #ffe7d3 0%, #d4f3ff 100%);
  min-height: 500px;
  padding: 75px 0;
}
.testimonial-home .peopleimg {
  top: 0;
  left: 0;
}
.testimonial-home .quoteicon {
  top: 20px;
  right: 20px;
}
.testimonial-home .testimonials-swiper .swiper-slide {
  padding: 50px 0;
}
.testimonial-home .testimonials-swiper .swiper-slide img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-home .testimonials-swiper .swiper-slide .test-details h5 {
  font-size: clamp(1rem, 1.2vw, 1.2rem);
}
.testimonial-home .testimonials-swiper .swiper-slide .test-details p {
  font-size: 13px;
}
.testimonial-home .swiper-pagination-bullet {
  background: #ea9625;
}

.upskilling {
  padding-bottom: 75px;
  background: #000048;
}
.upskilling .upskillimg {
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
  position: relative;
  z-index: 1;
}
.upskilling .upskillfigure .dotsimg {
  bottom: 0;
  left: 0;
}
.upskilling .spec-col h4 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #ea9625;
}
.upskilling .form-home {
  width: 100%;
}
.upskilling .form-home form {
  padding: 25px;
  border: 1px solid #8fd9fb;
}

.mentors-home {
  background: linear-gradient(259deg, #e5feff 0%, #fffce8 100%);
}
.mentors-home .sectionTitle p {
  color: #ea9625;
}
.mentors-home .swiper-slide img {
  width: 125px;
  height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
  padding: 5px;
  background: #fff;
  box-shadow: 0 3px 3px #828282;
  -moz-box-shadow: 0 3px 3px #828282;
  -webkit-box-shadow: 0 3px 3px #828282;
  -ms-box-shadow: 0 3px 3px #828282;
}
.mentors-home .swiper-slide article h5 {
  color: #ea9625;
  font-size: 17px;
}
.mentors-home .swiper-slide article p {
  font-size: 14px;
}
.mentors-home .swiper-pagination-bullet {
  background: #ea9625;
}

footer {
  font-size: 13px;
  background: #000048;
  padding: 75px 0 25px 0;
  color: #fff;
  position: relative;
}
footer h6 {
  line-height: 25px;
}
footer p {
  font-size: 13px;
}
footer .icomoon {
  color: #ea9625;
}
footer .movetop {
  background: #ea9625;
  color: #ea9625;
  border-radius: 50px;
  text-align: center;
  line-height: 30px;
  position: fixed;
  border: 1px solid transparent;
  padding: 8px;
  position: fixed;
  right: 1%;
  bottom: 190px;
  z-index: 9999;
  width: 45px;
  height: 45px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  display: none;
}
footer .movetop:hover {
  background-color: #0084c1;
  text-decoration: none;
}
footer .movetop:hover .icomoon {
  color: #fff;
}
footer .movetop .icomoon {
  font-size: 20px;
  color: #fff;
}
@media (max-width: 996px) {
  footer {
    padding: 25px 0;
  }
}
footer p {
  color: #fff;
}
footer .footer-social a {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 40px;
  transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
}
footer .footer-social a .icomoon {
  color: #ea9625;
}
footer .footer-social a:hover {
  background: #ea9625;
}
footer .footer-social a:hover .icomoon {
  color: #fff;
}
footer .contactrow {
  border-bottom: 1px solid rgba(226, 95, 162, 0.5);
}
footer .nav a {
  color: #fff;
}
footer .nav a:hover {
  text-decoration: underline;
  color: #ea9625;
}

.subPageMain {
  min-height: 500px;
}
.subPageMain .subpageHeader {
  background-image: linear-gradient(-225deg, #000048 0%, #ff9aa7 100%);
  padding: 50px 0;
}
@media (max-width: 996px) {
  .subPageMain .subpageHeader {
    padding: 25px 0;
  }
}
.subPageMain .subpageHeader article h1,
.subPageMain .subpageHeader article p {
  color: #fff;
}
.subPageMain .subpageHeader article h1 {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 700;
}
.subPageMain .subpageSection {
  padding: 75px 0;
  min-height: 500px;
}
@media (max-width: 996px) {
  .subPageMain .subpageSection {
    padding: 20px 0;
  }
}
.subPageMain .subpageSection h2 {
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 600;
  color: #000048;
  position: relative;
  margin-bottom: 1rem;
  line-height: 135%;
}
@media (max-width: 996px) {
  .subPageMain .subpageSection h2 {
    margin-top: 25px;
  }
}
.subPageMain .subpageSection h2:before {
  content: "";
  width: 50px;
  height: 3px;
  background: #ea9625;
  position: absolute;
  top: -10px;
  left: 0;
}
.subPageMain .subpageSection h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: 600;
  color: #ea9625;
  margin-bottom: 0.6rem;
}

.contactDetailsRow {
  padding-bottom: 75px;
}
.contactDetailsRow .contactCol {
  border: 1px solid #ccc;
  min-height: 250px;
}
@media (max-width: 996px) {
  .contactDetailsRow .contactCol {
    min-height: auto;
    margin-bottom: 15px;
  }
}
.contactDetailsRow .contactCol .icomoon {
  font-size: 60px;
  color: #ea9625;
}

.courses-container .nav-item .nav-link {
  background: #fae4c8;
  color: #282828;
  padding: 15px 10px;
}
.courses-container .nav-item .active {
  background: #ea9625;
  color: #fff;
}
.courses-container .course-item {
  border: 1px dashed #8fd9fb;
  background: #fff;
}
.courses-container .course-item p {
  width: 75%;
  word-wrap: break-word;
}
.courses-container .accordion-button:not(.collapsed) {
  background: #c1ebff;
  box-shadow: none;
}
.courses-container .accordion-body {
  background: #fafafa;
}

.paycol .icomoon {
  font-size: 45px;
  color: #ea9625;
}

#load {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8) url("http://code.jquery.com/mobile/1.3.1/images/ajax-loader.gif") no-repeat center center;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.text-danger {
  font-size: 12px;
}

.breadcrumb {
  padding-top: 10px;
}/*# sourceMappingURL=style.css.map */