/* font-family ******************************************************************************** */
@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/gilroy/Gilroy-Light.ttf");
}

@font-face {
  font-family: "Inter-Black";
  src: url("../fonts/inter/Inter-Black.ttf");
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/inter/Inter-Bold.ttf");
}
@font-face {
  font-family: "Inter-ExtraBold";
  src: url("../fonts/inter/Inter-ExtraBold.ttf");
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../fonts/inter/Inter-Medium.ttf");
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/inter/Inter-Regular.ttf");
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("../fonts/inter/Inter-SemiBold.ttf");
}

/* common css ******************************************************************************/
:root {
  --white: #fff;
  --black: #000;
  --charcoal: #333333;
  --light-peach: #fed9a6;
  --paris-green: #5ec97e;
  --saffron-mango: #fdc34b;
  --bright-sky-blue: #26cdfc;
  --light-peach: #fed9a6;
  --light-grey: #efefef;
  --smokey-grey: #707070;
  --hit-grey: #a7a7a7;
  --gray-D5D5D5: #d5d5d5;
  --blue: #000044;
  --red: #ff4a54;
  --lavendor: #e6edff;
  --light-yellow: #fff9e8;
  --light-green: #eafaf1;
  --light-red: #ffdcdc;

  --brandeis-blue: #0073e6;
  --pale-mauve: #f9d3ff;
  --gainsboro: #dfdfdf;
  --pink-sherbet: #f38aae;
  --light-salmon-pink: #e92626;
  --violet-pink: #ab0dc5;
  --yellow: #ffc700;
  --platinum: #b3b3b3;
  --gold-tips: #eab308;
  --lavendor-dark: #c7bdf6;
  --light-pink: #ffd2e1;
  --tropical-blue: #badcff;
  --colonial-white: #fdeeb8;
  --light-apricot: #ffd4be;
  --water-leaf: #9de8cf;
  --buff: #eef997;
  --pale-cerulean: #a3beee;
}
.white {
  color: var(--white) !important;
}
.black {
  color: var(--black) !important;
}
.blue {
  color: var(--blue) !important;
}
.charcoal {
  color: var(--charcoal) !important;
}
.red {
  color: var(--red);
}
.gold-tips {
  color: var(--gold-tips) !important;
}
.brandeis-blue {
  color: var(--brandeis-blue) !important;
}
.light-salmon-pink {
  color: var(--light-salmon-pink);
}
.violet-pink {
  color: var(--violet-pink);
}

.bg-pale-mauve {
  background-color: var(--pale-mauve);
}
.bg-pink-sherbet {
  background-color: var(--pink-sherbet);
}
.bg-brandeis-blue {
  background-color: var(--brandeis-blue);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-white {
  background-color: var(--white);
}

.bg-lavendor {
  background-color: var(--lavendor);
}
.bg-lavendor-dark {
  background-color: var(--lavendor-dark);
}
.bg-light-yellow {
  background-color: var(--light-yellow);
}
.bg-light-green {
  background-color: var(--light-green);
}
.bg-light-red {
  background-color: var(--light-red);
}
.bg-light-pink {
  background-color: var(--light-pink);
}

.bg-paris-green {
  background-color: var(--paris-green);
}
.bg-saffron-mango {
  background-color: var(--saffron-mango);
}
.bg-bright-sky-blue {
  background-color: var(--bright-sky-blue);
}
.bg-tropical-blue {
  background-color: var(--tropical-blue);
}
.bg-colonial-white {
  background-color: var(--colonial-white);
}
.bg-light-apricot {
  background-color: var(--light-apricot);
}
.bg-water-leaf {
  background-color: var(--water-leaf);
}
.bg-buff {
  background-color: var(--buff);
}
.bg-pale-cerulean {
  background-color: var(--pale-cerulean);
}

.bg-gradiant-light-apricot {
  background: linear-gradient(180deg, #ffffff 53%, #fedece 100%);
}
.bg-gradiant-lavendor {
  background: linear-gradient(180deg, #ffffff 53%, #ccc4f4 100%);
}
.bg-gradiant-water-leaf {
  background: linear-gradient(180deg, #ffffff 53%, #d3e5f2 100%);
}
.bg-gradiant-colonial-white {
  background: linear-gradient(180deg, #ffffff 53%, #f7eab9 100%);
}

.inter-semibold {
  font-family: "Inter-SemiBold" !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
*::before,
*::after {
  box-sizing: border-box;
}
.common::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #000;
}
body {
  background-image: linear-gradient(180deg, #121d37, #0a0f1a 2%);
}
body.show {
  position: fixed;
  top: 0;
  width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--white);
  font-family: "Inter-Bold";
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}
h1 {
  font-size: 56px;
}
h2 {
  font-size: 44px;
}
h3 {
  font-size: 36px;
}
h4 {
  font-size: 28px;
}
h5 {
  font-size: 24px;
}
h6 {
  font-size: 20px;
}
p {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--black);
  font-family: "Inter-Medium";
}
p:last-child {
  margin-bottom: 0;
}
.small {
  font-size: 16px;
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  text-transform: capitalize;
  display: inline-block;
  line-height: 1.2;
  color: inherit;
  font-family: inherit;
}
span {
  display: inline-block;
}
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h3 {
  font-size: 36px;
  margin: 0 auto;
  width: max-content;
  text-align: center;
  position: relative;
  margin-bottom: 40px;
}
.section-heading p {
  color: var(--platinum);
}
.section-heading h3:after {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 2px solid var(--red);
  left: 0;
  bottom: -6px;
}
.section-heading h4 {
  font-family: "Inter-Bold";
  color: var(--blue);
  font-size: 35px;
}
.btn-common {
  font-size: 20px;
  padding: 12px 40px;
  background: #000a20;
  color: #cbccd0 !important;
  border-radius: 10px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-common img {
  max-width: 30px;
  margin-right: 10px;
}
section {
  padding: 80px 0;
  overflow: hidden;
}
.bg {
  padding: 40px 0;
}
.mobile {
  display: none !important;
}
.desktop {
  display: block !important;
}
img,
video {
  max-width: 100%;
}
.button-box {
  padding-top: 20px;
}
.button-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: transparent;
}
.owl-theme .owl-dots .owl-dot span {
  background: #555454;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--white);
  /* outline: 2px solid var(--white); */
  /* outline-offset: 3px; */
}
.owl-nav {
  margin-top: 30px !important;
}
.owl-nav button {
  position: absolute;
  /* top: 50%; */
  transform: translateY(-50%);
}
.owl-nav button.owl-prev {
  right: 70px;
}
.owl-nav button.owl-next {
  right: 10px;
}
.owl-carousel .owl-nav button .left,
.owl-carousel .owl-nav button .right {
  background-color: var(--white);
  border-radius: 6px;
}

.form-control-common {
  background: var(--white);
  border: 1px solid var(--black);
  font-size: 20px;
  padding: 15px 50px 15px 20px;
  width: 100%;
  appearance: textfield;
  color: var(--black);
  border-radius: 0;
  box-shadow: none;
  resize: none;
  outline: none;
}
.input-group {
  padding-bottom: 30px;
}
input[type="email"] {
  text-transform: lowercase !important;
}
input[type="email"]::placeholder {
  text-transform: capitalize !important;
}

/* header css start ******************************************************************************/
@keyframes smoothScroll {
  0% {
    transform: translateY(-60px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
#header.show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: smoothScroll 1s forwards;
  z-index: 1000;
  box-shadow: 0 0 10px 2px #000;
}
#header {
  background: transparent;
  padding: 16px 0;
  transition: 0.5s all;
  position: relative;
  top: 0;
  z-index: 99;
  width: 100%;
}
#header .header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header .logo-box img {
  max-width: 180px;
  width: 100%;
}
#header .main-nav .click-menu,
#header .main-nav .cancel-menu {
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 11;
  width: 30px;
  height: 30px;
}
#header .main-nav .click-menu span,
#header .main-nav .cancel-menu span {
  width: 25px;
  height: 3px;
  background: var(--white);
  transition: 0.5s all ease-in-out;
  position: relative;
  border-radius: 5px;
}
#header .main-nav .cancel-menu span {
  position: absolute;
  height: 4px;
}
#header .main-nav .cancel-menu span:first-child {
  transform: rotate(45deg);
}
#header .main-nav .cancel-menu span:last-child {
  transform: rotate(-45deg);
}
#header .main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 20px;
}
#header .button-box {
  margin-left: 20px;
  padding-top: 0;
}
#header .main-nav nav ul li {
  display: inline-block;
  position: relative;
  margin-right: 20px;
}
#header .main-nav nav ul li a {
  color: var(--white);
  padding: 5px;
  font-size: 18px;
}

/* homeBanner css ******************************************************************************/
#homeBanner {
  padding: 0 0;
  margin-top: -105px;
  position: relative;
}
#homeBanner .item {
  /* padding-top: 150px; */
  padding-top: 165px;
  height: 100%;
}
#homeBanner .owl-stage {
  display: flex;
  height: 100%;
}
#homeBanner .row {
  max-width: 80%;
  margin: 0 auto;
  height: 100%;
}
#homeBanner .item .col-md-6:first-child {
  place-items: end;
}
#homeBanner .text-box h5 {
  color: var(--blue);
  font-family: "Inter-SemiBold";
  font-size: 36px;
  line-height: 1;
}
#homeBanner .text-box h6 {
  color: var(--blue);
  font-family: "Inter-SemiBold";
  font-size: 33px;
  line-height: 1;
}
/* #homeBanner .text-box .title {
  border: 1px solid var(--white);
  padding: 4px 70px 10px 40px;
  width: max-content;
  margin-bottom: 12px;
  position: relative !important;
} */
#homeBanner .text-box .title {
  border: 1px solid var(--white);
  /* padding: 4px 70px 10px 40px; */
  padding: 4px 65px 10px 30px;
  width: max-content;
  margin: 0 auto;
  margin-bottom: 12px !important;
  display: block;
  position: relative !important;
}
#homeBanner .text-box .title::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: var(--blue);
  top: 0;
  left: 0;
  transform: skewY(-1deg);
}
/* #homeBanner .banner-1 .text-box .title::after {
  background-color: var(--saffron-mango);
} */
/* #homeBanner .banner-3 .text-box .title::after {
  transform: skewY(-2deg);
} */
/* #homeBanner .banner-3 .text-box .title {
  padding: 10px 20px 15px 10px;
  width: 45%;
} */
#homeBanner .banner-3 .text-box h5 {
  font-size: 30px;
}
#homeBanner .text-box .title h1 {
  color: var(--white);
  position: relative;
  z-index: 9;
  font-family: "Inter-ExtraBold";
}
#homeBanner .banner-3 .text-box .title h2 {
  font-size: 23px;
  color: var(--white) !important;
  text-align: center;
  z-index: 1;
  position: relative;
}
#homeBanner .banner-3 .boxes {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
}
/* #homeBanner .logo-boxes {
  display: flex;
  background-color: var(--white);
  border-radius: 10px;
  column-gap: 20px;
  align-items: center;
  padding: 15px;
  justify-content: space-around;

  margin-top: 30px;
} */

#homeBanner .logo-boxes {
  display: flex;
  background-color: var(--white);
  border-radius: 10px;
  column-gap: 12px;
  align-items: center;
  padding: 10px 15px;
  justify-content: space-around;
  margin-top: 30px !important;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}

/* #homeBanner .logo-boxes img {
  max-width: 100px;
  height: 50px;
  object-fit: contain;
} */
#homeBanner .logo-boxes img {
  max-width: 80px;
  height: 42px;
  object-fit: contain;
}
#homeBanner .owl-nav button {
  bottom: unset;
  top: 50%;
}
#homeBanner .owl-nav button.owl-prev {
  left: 10px;
  right: unset;
}

#homeBanner .owl-carousel .owl-nav button .left,
#homeBanner .owl-carousel .owl-nav button .right {
  background-color: transparent;
  border-radius: 0;
}
#homeBanner .owl-nav {
  margin-top: 0 !important;
}

/* Home banner New Css */
#homeBanner .text-box {
  text-align: center;
}

#homeBanner .item.banner-1 .img-box img {
  max-width: 63%;
}
#homeBanner .item.banner-2 .img-box img {
  max-width: 80%;
}
#homeBanner .item.banner-3 .img-box img {
  max-width: 65%;
}
#homeBanner .item .img-box img {
  width: 100%;
  max-width: 65%;
  margin: 0 auto;
  display: block;
}

#homeBanner .text-box h6 span {
  font-size: inherit;
  line-height: 1;
  font-family: "Inter-ExtraBold";
}
.zero-to-pro-bx {
  font-size: 22px;
  line-height: 1;
  font-family: "Inter-SemiBold";
}
.zero-to-pro-bx .button-box ul {
  justify-content: center;
  column-gap: 15px;
  row-gap: 15px;
}
.zero-to-pro-bx .button-box span {
  margin-bottom: 4px;
}
.certification-bx-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  padding: 10px 15px;
  margin: 0 auto;
  /* column-gap: 10px; */
  border-radius: 10px;
  width: 100%;
  /* max-width: 75%; */
  margin-top: 30px;
  flex-wrap: wrap;
  row-gap: 8px;
  position: relative;
}
#homeBanner .item.banner-1 .certification-bx-main {
  max-width: 78%;
  margin-top: 0;
}

#homeBanner .banner-4 .certification-bx-main {
  margin-top: 50px;
  width: max-content;
}
#homeBanner .banner-4 .img-box img {
  max-width: 58%;
}

.certification-bx {
  font-size: 20px;
  line-height: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  column-gap: 7px;
  background-color: var(--white);
  font-family: "Inter-SemiBold";
  /* justify-content: space-between; */
  white-space: nowrap;
}
.certification-bx img {
  width: 100%;
  max-width: 10%;
}

/* Register Button Css *******************************/
.register-btn {
  padding: 10px 22px;
  border-radius: 45px;
  display: inline-block;
  background-color: var(--blue);
  z-index: 99;
  overflow: hidden;
  position: relative;
}
.register-btn ::before {
  position: absolute;
  content: "";
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 45px;
  border: 2px solid var(--red);
  z-index: -1;
}
.register-btn .white {
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Inter-SemiBold";
}

/* logo-section css ******************************************************************************/
.logo-section {
  padding: 20px 0;
  border: 1px solid var(--saffron-mango);
  background: white;
  margin-top: -20px;
  position: relative;
  z-index: 9;
}
.logo-section-main {
  display: flex;
  width: max-content;
  animation: scroll-marquee 30s linear infinite;
}
.logo-wrapper {
  display: flex;
}
@keyframes scroll-marquee {
  100% {
    transform: translateX(0);
  }
  0% {
    transform: translateX(-50%);
  }
}
.logo-section-main .logo-img {
  flex: 0 0 auto;
  padding: 0 30px;
}
.logo-section-main .logo-img img {
  height: 40px;
  object-fit: contain;
}

/* Roadmap start ******************************************************************************/
#roadmap .image-box img {
  text-align: center;
  margin: 0 auto;
}

/* syllabus start ******************************************************************************/
#syllabus {
  padding-top: 20px;
}
#syllabus .syllabus-main-box .row {
  row-gap: 23px;
}
#syllabus .box {
  padding: 20px 20px;
  border-radius: 10px;
  height: 100%;
}
#syllabus .box span {
  font-size: 14px;
}
#syllabus .box h6 {
  color: var(--black);
}
#syllabus .box ul li {
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
#syllabus .box ul li:after {
  position: absolute;
  content: "";
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  background: url("../images/small-next.png") no-repeat;
  background-size: 100% 100%;
}
#syllabus .more-content {
  margin-top: 22px;
}
/* See More *********************/
#syllabus .see-more-btn {
  margin-top: 32px;
  border: 0;
  position: relative;
}
#syllabus .see-more-btn {
  font-size: 14px;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 45px;
  display: inline-block;
  background-color: var(--blue);
  border: 2px solid var(--red);
  position: relative;
  text-transform: uppercase;
  font-family: "Inter-SemiBold";
}

/* Meet training experts start ******************************************************************************/
#meet-training-experts,
#placement,
#feature-job-title,
#you-will-learn,
#success-stories,
#build-skills,
#accreditation,
#video-slider-section {
  padding-top: 0;
}
#meet-training-experts .expert-bx {
  padding: 20px 0px;
  border-radius: 10px;
  background-color: white;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
#meet-training-experts .expert-bx .profile-box {
  display: flex;
  flex-direction: column;
  padding: 0px 20px 0 20px;
  border-right: 1px solid #dfdfdf;
  height: 100%;
}
#meet-training-experts .expert-bx .profile-box .top .user-bx {
  display: flex;
  justify-content: space-between;
}
#meet-training-experts .expert-bx .profile-box .top .user-bx .profile-left {
  display: flex;
  column-gap: 14px;
  align-items: center;
}
#meet-training-experts
  .expert-bx
  .profile-box
  .top
  .user-bx
  .profile-left
  .img-bx
  img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
#meet-training-experts
  .expert-bx
  .profile-box
  .top
  .user-bx
  .profile-left
  .details
  h6 {
  color: var(--black);
  margin-bottom: 0;
}
#meet-training-experts .expert-bx .profile-box .top .user-bx .profile-left p {
  font-size: 14px;
  color: #4b5563;
}
#meet-training-experts .expert-bx .profile-box .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #dfdfdf;
}
#meet-training-experts .expert-bx .profile-box .bottom .bottom-left {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
#meet-training-experts .expert-bx .profile-box .bottom .bottom-left span {
  color: #4b5563;
}
#meet-training-experts .expert-bx .profile-details-box .button-box {
  padding-top: 0;
}
#meet-training-experts .expert-bx .profile-details-box .button-box ul {
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
}
#meet-training-experts .expert-bx .profile-box .bottom .bottom-right img {
  width: 40px;
  height: 40px;
}
#meet-training-experts .expert-bx .profile-details-box {
  padding: 0 20px 0 0;
}
#meet-training-experts .expert-bx .profile-details-box .button-box ul li {
  position: relative;
}
#meet-training-experts
  .expert-bx
  .profile-details-box
  .button-box
  ul
  li:hover
  img {
  transform: scale(1.1);
  transition-duration: 300ms;
  filter: drop-shadow(0px 0px 10px rgba(255, 217, 0, 0.4));
}
#meet-training-experts .expert-bx .profile-details-box .button-box ul li img {
  width: 48px;
  height: 48px;
  padding: 5px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  background-color: var(--white);
  object-fit: contain;
}
#meet-training-experts
  .expert-bx
  .profile-details-box
  .button-box
  ul
  li:hover
  img {
  cursor: pointer;
}
#meet-training-experts .row {
  row-gap: 20px;
}
#meet-training-experts .expert-bx .profile-details-box .bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #dfdfdf;
}
#meet-training-experts .expert-bx .profile-details-box .bottom p {
  font-size: 18px;
  color: #4b5563;
  text-align: center;
}

/* Placement start ******************************************************************************/
#placement .section-heading {
  margin-bottom: 90px;
}
#placement .box {
  padding: 60px 20px 60px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  height: 100%;
}
#placement .box img {
  position: absolute;
  margin-top: -110px !important;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.5s;
}
#placement .box img:hover {
  transform: scale(1.1);
  cursor: pointer;
}
#placement .box p {
  font-size: 16px;
  color: var(--white);
}
#placement .section-heading h3.after:after {
  display: none;
}
#placement .section-heading p a {
  color: var(--white);
  text-decoration: underline;
}
#placement .box span {
  font-size: 38px;
  font-family: "Inter-Black";
}

/* Feature job title start ******************************************************************************/
#feature-job-title .box {
  padding: 60px 20px 60px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}
#feature-job-title .box p {
  font-size: 18px;
  color: var(--white);
}
#feature-job-title .section-heading h3.after:after {
  display: none;
}
#feature-job-title .section-heading p a {
  color: var(--white);
  text-decoration: underline;
  display: inline;
}
#feature-job-title .box span {
  font-size: 38px;
  font-family: "Inter-Black";
}
.animate-slide {
  animation: slideFade 1s ease forwards;
}

/* Internship start ******************************************************************************/
#internship .row {
  row-gap: 80px;
}
.internship-main-box {
  margin-top: 100px;
}
#internship .box {
  position: relative;
  padding: 25px 10px;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  max-width: 90%;
  transition: all 0.5s;
}
#internship .box:hover {
  transform: scale(1.1);
  cursor: pointer;
}
#internship .box .image-box {
  position: absolute;
  left: -20px;
  top: -26px;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  padding: 12px 6px;
}
#internship .box .image-box img {
  width: 30px;
  height: 30px;
}

/* Best course start ********************************************************/
#best-course .item {
  margin: 40px 0 20px;
}
#best-course .item .box {
  padding: 70px 20px 40px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  position: relative;
  min-height: 220px;
}
#best-course .item .box img {
  position: absolute;
  margin-top: -110px !important;
  display: block;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: all 0.5s;
  width: 85px;
  height: auto;
}
#best-course .item .box h6 {
  color: var(--black);
}
#best-course .item .box p {
  font-size: 16px;
}

/* You will learn start ********************************************************/
#you-will-learn .you-will-learn-main-box ul {
  justify-content: center;
  row-gap: 20px;
  justify-content: space-around;
}
#you-will-learn .you-will-learn-main-box ul li {
  text-align: center;
}
#you-will-learn .you-will-learn-main-box ul li img {
  width: 110px;
  height: auto;
  transition: all 0.5s;
}
#you-will-learn .you-will-learn-main-box ul li span {
  font-size: 18px;
  color: var(--white);
  display: block;
  text-align: center;
  margin: 5px 0 0 0;
  font-family: "Inter-Black";
}
#you-will-learn .you-will-learn-main-box ul li:hover img {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 15px rgba(255, 217, 0, 0.6));
  cursor: pointer;
}

/* Success stories start ********************************************************/
#success-stories .box {
  padding: 20px 20px 40px 20px;
  border-radius: 10px;
  background-color: var(--white);
  height: 100% !important;
  /* min-height: 390px; */
}
#success-stories .box .top-main .top .user-bx {
  display: flex;
  justify-content: space-between;
}
#success-stories .box .top-main .user-bx .profile-left {
  display: flex;
  column-gap: 14px;
}
#success-stories .box .top-main .user-bx .profile-left {
  display: flex;
  column-gap: 14px;
}
#success-stories .box .top-main .user-bx .profile-left .img-bx img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
}
#success-stories .box .top-main .user-bx .profile-left .details h6 {
  color: var(--black);
  font-size: 18px;
}
#success-stories .box .top-main .bottom {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  margin-top: 15px;
  border-top: 1px solid var(--lavendor-dark);
  padding-top: 15px;
}
#success-stories .box .bottom .bottom-left {
  display: flex;
  column-gap: 10px;
  align-items: center;
}
#success-stories .box .bottom .bottom-left span {
  font-size: 14px;
  color: #6c6c6c;
}
#success-stories .box .bottom .bottom-left i {
  font-size: 12px;
  color: var(--lavendor-dark);
}
#success-stories .box .bottom .bottom-right {
  display: flex;
  flex-direction: column;
  align-items: end;
  row-gap: 4px;
}
#success-stories .box .bottom .bottom-right .image-bx img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
#success-stories .box .bottom .bottom-right p.big {
  font-size: 16px;
  margin-bottom: 0;
}
#success-stories .box .bottom .bottom-right p.small {
  font-size: 15px;
  color: gray;
}
/* #success-stories .box .bottom-main {
  padding: 0 0 20px 0;
} */
#success-stories .box .bottom-main p {
  font-size: 15px;
  color: #555454;
}

.nav {
  justify-content: center;
  column-gap: 80px;
  margin-bottom: 50px;
}
.nav-tabs {
  border-bottom: 0;
}
.nav-tabs .nav-link {
  color: var(--white);
  border: 0;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--white);
  background-color: transparent;
  border-bottom: 1.5px solid var(--pale-cerulean);
}
.owl-nav button {
  bottom: -30px !important;
  transform: translateY(-50%);
  background-color: white;
}

#success-stories .success-stories-main-box .owl-stage {
  display: flex;
  height: 100%;
}
#success-stories .success-stories-main-box .item {
  height: 100%;
}

/* Build skills start ********************************************************/
#build-skills .category-bx .box {
  text-align: center;
  padding: 20px 20px;
}
#build-skills .category-bx .box .image-bx {
  margin-bottom: 10px;
}
#build-skills .category-bx .box .image-bx img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
#build-skills .build-skills-slider {
  margin-top: 30px;
}
#build-skills .build-skills-slider .box {
  border-radius: 10px;
  text-align: center;
}
#build-skills .build-skills-slider .box img.bg-img {
  border-radius: 10px 10px 0 0;
}
#build-skills .build-skills-slider .box .image-bx {
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  display: inline-block;
  background-color: var(--white);
  padding: 4px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  overflow: hidden;
  margin-top: -50px;
}
#build-skills .build-skills-slider .box .image-bx img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}
#build-skills .build-skills-slider .box .text-bx {
  padding: 46px 0;
}
#build-skills .build-skills-slider .box .text-bx .build-btn {
  border: 1px solid var(--black);
  padding: 6px 14px;
  border-radius: 6px;
  background-color: transparent;
  font-family: "Inter-Medium";
}
#build-skills .owl-nav button {
  bottom: -85px !important;
}

/* Our course start ********************************************************/
#our-course .item .box .image-bx {
  background: url("../images/our-course-bx-bg.svg") no-repeat;
  background-size: 100%;
  background-position: center;
  border-radius: 20px;
  padding: 30px 46px;
}
#our-course .item .box .text-bx {
  padding: 20px 20px;
  text-align: center;
}

/* Accreditation start ********************************************************/
#accreditation .accreditation-bx {
  border: 2px solid white;
  border-radius: 10px;
  display: flex;
  margin: 0 10px;
  width: 100%;
}
#accreditation .accreditation-inner {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  column-gap: 7px;
  padding: 10px 0;
}
#accreditation .accreditation-inner .text-bx {
  text-align: center;
}
#accreditation .accreditation-inner .text-bx p.small {
  font-size: 13px;
  color: var(--white);
  margin-bottom: 0;
}
#accreditation .accreditation-inner .text-bx p {
  font-size: 14px;
  color: var(--white);
}
.col-20 {
  flex: 0 0 18%;
  max-width: 18%;
}
@media (max-width: 768px) {
  .col-20 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Data Science Certification ***************/
.data-certification-bx {
  margin-top: 70px;
}
.data-certification-bx .text-box {
  padding: 40px 40px;
}
.data-certification-bx .text-box p {
  color: var(--platinum);
}
.data-certification-bx .text-box p a {
  color: var(--white);
  text-decoration: underline;
}

/* footer css ******************************************************************************/
#footer {
  background-color: var(--light-grey);
  padding: 30px 0 0;
}
#footer .top-box .logo-box img {
  max-width: 220px;
  margin-bottom: 30px;
}
.footer-box h3 {
  text-transform: capitalize;
  color: var(--charcoal);
  margin-bottom: 30px;
}
#footer .top-box .list-box li:not(:last-child) {
  margin-bottom: 20px;
}
#footer .link-box ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 10px;
  margin-top: 20px;
}
#footer .top-box .link-box ul img {
  max-width: 40px;
}
#footer .end-box {
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid var(--smokey-grey);
}
#footer .end-box p {
  color: var(--hit-grey);
  font-family: "Gilroy-Light";
  font-weight: 300;
  font-size: 16px;
}
#footer .top-box .link-box ul i,
.contact-info a,
#footer .contact-info i,
#footer .location-block h6 {
  color: var(--charcoal);
}
#footer .top-box .link-box ul i {
  font-size: 18px;
}
#footer .location-block img {
  margin-right: 20px;
}
.contact-info {
  font-size: 17px;
}
.contact-info a {
  text-transform: lowercase;
}
#footer .location-block h6 {
  font-size: 16px;
  font-weight: 600;
}
#footer .contact-info i,
#footer .contact-info img {
  margin-right: 20px;
}

/* All section Common Register Now ************************/
.register-bx {
  text-align: center;
  padding: 20px 0 30px;
}
.register-bx .price-tag {
  position: relative;
  padding: 12px 40px;
  background-color: var(--blue);
  border-radius: 50px;
  display: inline-block;
  z-index: 1;
  overflow: hidden;
  right: unset;
  bottom: unset;
}
.register-bx .price-tag::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 45px;
  border: 2px solid var(--red);
  z-index: -1;
}
.register-bx .price-tag .white {
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Inter-Black";
}
.register-bx .price-tag .red {
  font-size: 26px;
  line-height: 1;
  font-family: "Inter-ExtraBold";
}

/* Register Button Fixed Start ************************/
.price-tag {
  position: fixed;
  right: 40px;
  bottom: 40px;
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  background-color: var(--blue);
  z-index: 99;
  overflow: hidden;
}
.price-tag ::before {
  position: absolute;
  content: "";
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 45px;
  border: 2px solid var(--red);
  z-index: -1;
}
.price-tag-animate {
  animation: zoom 2s ease-in-out infinite;
}
.price-tag .white {
  font-family: "Inter-Black";
  text-transform: uppercase;
  font-size: 18px;
}
.price-tag .red {
  font-family: "Inter-ExtraBold";
  font-size: 30px;
  line-height: 1;
}
.price-tag .text-decoration-line-through {
  text-decoration: line-through !important;
  text-decoration-color: var(--white) !important;
}
.price-tag a {
  text-align: center;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Register Button Fixed End ************************/

/* Thank you Page ***************************************/
.page-template-thank-you-template #header {
  background-color: var(--blue);
  position: relative;
}
#thank-you {
  height: 59vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#thank-you .thank-you-box {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 2px 8px;
}
#thank-you .thank-you-box h4,
#thank-you .thank-you-box p {
  color: var(--blue);
}
#thank-you .thank-you-box .cmn-btn {
  font-size: 15px;
  color: var(--white);
  padding: 10px 22px;
  background-color: var(--blue);
  border-radius: 30px;
}

/* video-slider-section css */
.white-popup-block.popup-video {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.mfp-close-btn-in .mfp-close {
  color: #ffffff;
  top: -40px;
}
.video-popup-slider .item img {
  object-fit: cover;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
}
.popup-open {
  overflow: hidden;
}
.video-thumb {
  position: relative;
  display: block;
}
.carousel-wrap {
  padding: 0 10px;
}
.video-thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.video-popup-slider .item {
  margin: 0 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
}

.play-button::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid white;
}

/**/
.video-popup-slider {
  padding: 0 30px;
  position: relative;
}
.video-popup-slider button.owl-prev {
  left: 0;
  right: unset;
  top: 37%;
  transform: translateY(-50%);
}
.video-popup-slider button.owl-next {
  right: 0;
  left: unset;
  top: 37%;
  transform: translateY(-50%);
}

/**/
.our-course-slider {
  padding: 0 30px;
  position: relative;
}
.our-course-slider button.owl-prev {
  left: 0;
  right: unset;
  top: 30.5%;
  transform: translateY(-50%);
}
.our-course-slider button.owl-next {
  right: 0;
  left: unset;
  top: 30.5%;
  transform: translateY(-50%);
}

/**/
.best-course-slider {
  padding: 0 40px;
  position: relative;
}
.best-course-slider button.owl-prev {
  left: 0;
  right: unset;
  top: 50%;
  transform: translateY(-50%);
}
.best-course-slider button.owl-next {
  right: 0;
  left: unset;
  top: 50%;
  transform: translateY(-50%);
}

.offer-tag {
  position: fixed;
  left: 70px;
  bottom: 40px;
  z-index: 99;
}
.offer-tag img {
  max-width: 35%;
}

.limited-sates img {
  max-width: 40%;
  margin: -7px auto 0;
}
.limited-sates a {
  display: block;
}

/* Scholarship css 16-07-2025 */

#Scholarship table {
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
  color: var(--white);
}

#Scholarship table caption {
  font-size: 1.5em;
  margin: 0.5em 0 0.75em;
}

#Scholarship table tr {
  border-bottom: 1px solid var(--red);
  padding: 0.35em;
}
#Scholarship table thead tr {
  border: none;
}

#Scholarship table th,
#Scholarship table td {
  padding: 0.625em;
  text-align: left;
  font-family: "Inter-Bold";
}
#Scholarship table tr td:first-child {
  font-size: 25px;
  padding-right: 20px;
}

#Scholarship table tr th:not(:first-child) {
  padding-left: 30px;
}
#Scholarship table th:first-child,
#Scholarship table td:first-child {
  text-align: center;
}

#Scholarship table th {
  font-size: 1.25em;
  letter-spacing: 0.1em;
  /* text-transform: uppercase; */
}

#Scholarship td.img-box span {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}
#Scholarship td.img-box span img {
  height: 35px;
  width: 35px;
  object-fit: contain;
}
/* #Scholarship table tbody tr {
  display: flex;
} */
