@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;200;300;400;500;600;700&display=swap');
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'IBM Plex Sans', sans-serif;
}

:root {
  --ss-bg-main: #f8f8f8;
  --ss-primary-black: #101616;
  --ss-text-primary: #1a2638;
  --ss-text-primary2: #0d0d0d;
  --ss-text-secondary: #6c6c6c;
  --ss-text-light-primary: #8d9eb5;
  --ss-text-light-primary2: #61748f;
  --ss-red: #e22028;
  --ss-white: #fff;
  --ss-black: #000;
  --ss-gray: #dadada;
  --ss-light-gray: #eee;
  --ss-light-bg: #f7f8fc;
  --nse-purple: #392e7d;
  --nse-orange: #e96f24;
  --nse-red: #e41f28;
  --nse-yellow: #f1b519;
  --nse-light-cyan: #4cd9f5b0;
  --nse-light-purple: #4c3ea7a6;
  --nse-light-orange: #fd7e14c4;
  --nse-light-red: #f33c44a8;
  --nse-light-yellow: #f9c53da8;
  --nse-ex-light-cyan: #0dcaf066;
  --nse-ex-light-purple: #392e7d89;
  --nse-ex-light-orange: #fd7e1461;
  --nse-ex-light-red: #e41f284f;
  --nse-ex-light-yellow: #f1b51952;
  --bg-main-theme: #f3f6f8;
  --bg-secondary-theme: #f7fcff;
  --ss-btn-clr: #192939;
  --ss-top-inner-gap: 5rem;
  --ss-top-inner-p-gap: 1.6rem;
  --main-purple: #4b164c;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 62.5%;
  font-weight: 500;
  line-height: 1.5rem;
  /* font-family: "IBM Plex Sans", sans-serif; */
  color: var(--primary-black);
  /* background-color: var(--ss-bg-main); */
  user-select: none;
  scroll-behavior: smooth;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}
button {
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
  width: fit-content;
}
.section_inner {
  width: 90%;
  margin: 0 auto;
}
.para {
  font-size: 1.6rem;
  color: var(--ss-text-primary);
  line-height: 2.2rem;
  text-align: justify;
  font-weight: 400;
  margin-bottom: 10px;
}

.main-btn {
  align-items: center;
  appearance: button;
  /* background-color: var(--ss-btn-clr); */
  background-color: white;
  /* color: black; */
  border-radius: 4px;
  border-style: none;
  box-shadow: rgba(255, 255, 255, 0.26) 0 1px 2px inset;
  box-sizing: border-box;
  color: var(--ss-white);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  padding: 1rem 2rem;
  text-align: center;
  text-transform: none;
  transition: color 0.13s ease-in-out, background 0.13s ease-in-out,
    opacity 0.13s ease-in-out, box-shadow 0.13s ease-in-out;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  font-size: 1.4rem;
  height: fit-content;
}

/* .main-btn:active {
  background-color: white;
  color: black;
}

.main-btn:hover {
  background-color: #233e58;
} */
.ss-main {
  width: 100%;
  position: relative;
}
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 4rem 0;
}
.section-heading .top {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-radius: 3px;
}
.section-heading .icon {
  color: var(--nse-purple);
  width: 3.5rem;
}
.section-heading .icon:first-child {
  transform: scaleX(-1);
}
.section-heading h6 {
  text-transform: uppercase;
  color: var(--nse-orange);
  font-weight: 500;
  font-size: 2.6rem;
}
.section-heading h5.sub {
  color: var(--nse-purple);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3.3rem;
}

/* ========== scrollbar setup start ========== */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  display: none;
  min-width: 3rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #000C3F;
  /* box-shadow: 0px 5px 0px 0px #1e4c31; */
  color: var(--ss-white);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999999;
}

@keyframes jiggle {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-3px);
  }
  50% {
    transform: translateY(3px);
  }
  75% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

#scrollToTopBtn.show {
  display: flex;
  opacity: 1;
  animation: jiggle 1s ease-in-out infinite;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--ss-gray);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--nse-red);
}
/* ========== scrollbar setup end ========== */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  background-color: var(--ss-white);
  /* background-color: #ffffff18; */
  top: 0;
  width: 100%;
  /* height: 4.5rem; */
  z-index: 999;
  backdrop-filter: blur(10px);
  padding: 2rem 5%;
  transition: 0.3s ease;
}
header.active1 {
  background-color: #a1a1a196;
  height: 3rem;
}
header .logo {
  width: 11rem;
  z-index: 99999;
  display: inline-block;
}
header .menu {
  width: fit-content;
  height: 100%;
  display: flex;
  transition: 0s;
}
header .menu-shadow {
  display: none;
}
header .menu .close-menu {
  display: none;
}

.menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.2rem;
  padding: 0rem 1rem;
  height: 100%;
  color: var(--ss-text-primary);
  font-weight: 500;
  letter-spacing: 0.1rem;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 1px;
}
header .menu a:hover,
header .menu a.active {
  color: var(--nse-red);
  transition: color 0.1s ease-in;
}
header.active1 .menu a:hover,
header.active1 .menu a.active {
  background-color: var(--nse-red);
  color: var(--ss-text-primary);
}

header .show-bar {
  display: none;
  padding: 0.5rem 0.7rem;
  transition: 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1.6rem;
  color: var(--ss-text-primary);
}
header .show-bar:hover {
  background-color: #dddddd63;
}
header .right {
  display: flex;
  gap: 1rem;
  align-items: center;
}
@media (max-width: 750px) {
  body header .menu {
    position: fixed;
    top: 0;
    left: -20rem;
    width: 20rem;
    height: 100vh;
    flex-direction: column;
    background-color: var(--ss-text-light-primary);
    padding: 0;
    padding-top: 3.5rem;
    z-index: 99999;
    overflow-y: auto;
    transition: left 0.5s linear;
  }
  body header .menu-active {
    left: 0;
  }
  header .menu-shadow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000b7;
    backdrop-filter: blur(50px);
  }
  header .shadow-active {
    display: block;
  }
  header .menu a {
    text-align: center;
    color: var(--ss-white);
    height: 4rem;
    margin: 10px 0;
    margin-bottom: 0;
    cursor: pointer;
    border-radius: 0;
    transition: 0s;
  }
  header .menu a.active {
    font-weight: 600;
    background: var(--nse-red);
    color: var(--ss-white);
  }
  header .menu a:hover {
    background-color: var(--nse-red);
    color: var(--ss-white);
    font-weight: 600;
  }
  header .show-bar {
    display: block;
  }
  header .hide-bar {
    display: none;
  }
  header .menu .close-menu {
    display: block;
    position: absolute;
    top: 1.2rem;
    right: 30px;
    padding: 0.5rem;
    font-size: 1.5rem;
    font-weight: 0;
    color: var(--ss-white);
    cursor: pointer;
  }
}

/* hero section start */
.main_section_inner{
  width: 100%;
}
.hero-section {
  width: 98%;
  min-height: 70vh;
  /* background: linear-gradient(0.25turn, #128c6b, #149b76, #147d62); */
  background-image: url(/images/banner-new.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
  background-position: center;
  border-radius: 1.4rem;
  margin: 0 auto;
  position: relative;
}
.hero-section .section_inner {
  display: flex;
  width: 92%;
}

.main_section_inner{
  min-height: 70vh;
  width: 100%;
  background-color: #040b31c2;
  position: relative;
}

.hero-section .section_inner .hero-left {
  width: 80%;
  padding: 5rem 0;
}

.hero-section .section_inner .hero-left .express-heading {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #607D8B;
  border-radius: 2rem;
  padding: 0.8rem 2.2rem;
  font-size: 1.8rem;
  font-weight: 600;

  color: var(--ss-white);
  letter-spacing: 0.16rem;
  font-style: italic;
}
.hero-section .section_inner .hero-left .express-heading .icon {
  width: 2rem;
}
@media (min-width:365px) and (max-width:700px) {
    .program-curriculum .section_inner .left-content .program-lists_main .list-card {
        height: 19rem!important;
        display: flex;
        align-items: center;
        gap: 1.2rem;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        padding: 1.2rem;
        border-radius: 0.4rem;
        color: var(--nse-purple);

        font-size: 1.6rem;
        line-height: 1.3;
    }
    .program-fee-header span {
margin-right: 0px!important;
  }
  .contactUs .cards-wrapper {
    display: flex;
   flex-wrap: wrap;
    gap: 2rem;
}
}
  

.hero-section .section_inner .hero-left .main-title {
  font-size: 4.5rem;
  font-weight: 600;
  color: #fff;
  line-height: 6rem;
  margin-top: 1rem;
}
.hero-section .section_inner .hero-left .nse-line {
  width: 64%;
  height: 1rem;
  margin-bottom: 3rem;
}
.hero-section .section_inner .hero-left .btn-container {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.hero-section .section_inner .hero-left .btn-container .main-btn:first-child {
  background-color: #e2702f;
  
}
/* .hero-section
  .section_inner
  .hero-left
  .btn-container
  .main-btn:first-child:hover {
  background-color: #44c3a1;
} */

.hero-section .btm-container {
  background: #065c75;
  color: white;
  /* border-radius: 20px; */
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  font-size: 1.8rem;
  line-height: 2.5rem;
  /* color: var(--ss-text-primary); */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  margin-top: 2rem;
  border-radius: 10px;
}

/* .hero-section .hero-right  {
  width: 100%;
  height: 100%;
  padding: 1rem;
  background-color: var(--nse-ex-light-cyan);
} */
/* .hero-section .section_inner .hero-right {
  width: 50%;
  position: relative;
} */

 .duration-highlight {
  background: transparent;
  border-radius: 10px;
  /* padding: 1rem; */
  display: flex;
  align-items: center;
  /* gap: 1rem; */
  width: fit-content;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  min-width: 195px;
  /* position: absolute; */
  /* top: 40%; */
  /* left: 0; */
}
 /* .duration-highlight.format {
  left: 18rem;
  top: 20%;
} */
 .duration-highlight .icon {
  min-width: 5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  /* background-color: var(--ss-white); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nse-orange);
  font-size: 2.5rem;
}
 .duration-highlight .heading {
  font-size: 1.6rem;
  color: white;
  font-weight: 700;
}
 .duration-highlight .value {
  font-size: 1.5rem;
  color: white;
  font-weight: 500;
  margin-top: 0.6rem;
}

/* hero section end */

/* why choose start */
.choose-inner-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 2rem;
  column-gap: 2%;
  padding: var(--ss-top-inner-p-gap) 0;
  margin: 0 auto;
  /* background-color: #000C3F; */
}
.choose-inner-wrapper .choose-card {
  min-width: 48%;
  width: 48%;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  background-color: var(--ss-white);
  border-radius: 2rem;
  /* box-shadow: 0 2px #768afe08; */
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.choose-inner-wrapper .choose-card .icon {
  min-width: 5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.choose-inner-wrapper .choose-card:nth-child(1) .icon {
  background-image: linear-gradient(#ee7939, #e1603e);
  filter: drop-shadow(0.2rem 0.2rem 0.6rem #e1613e7e);
}
.choose-inner-wrapper .choose-card:nth-child(2) .icon {
  background-image: linear-gradient(#13a3c8, #0a7aa9);
  filter: drop-shadow(0.2rem 0.2rem 0.6rem #0a79a94f);
}
.choose-inner-wrapper .choose-card:nth-child(3) .icon {
  background-image: linear-gradient(#f7b142, #f38e24);
  filter: drop-shadow(0.2rem 0.2rem 0.6rem #f38f245a);
}
.choose-inner-wrapper .choose-card:nth-child(4) .icon {
  background-image: linear-gradient(#2c9e90, #237e72);
  filter: drop-shadow(0.2rem 0.2rem 0.6rem #237e725b);
}
.choose-inner-wrapper .choose-card .icon i {
  font-size: 2rem;
  color: var(--ss-white);
}
.choose-inner-wrapper .choose-card .content .title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ss-text-primary);
  margin-bottom: 1.4rem;
}
.choose-inner-wrapper .choose-card .content .para {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.8rem;
  color: var(--ss-text-light-primary2);
}
/* why choose end */
/* why choose bootcamp start */
.why-bootcamp-section .choose-inner-wrapper {
  width: 70%;
}
#accordionChooseBootchamp.accordion {
  width: 100%;
}

#accordionChooseBootchamp .accordion-item {
  /* border: 1px solid var(--nse-orange); */
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
  transition: all 0.3s linear 0s;
  background: linear-gradient(to right, #fff4ea, #ecebf3);
  width: 100%;
}
#accordionChooseBootchamp .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
#accordionChooseBootchamp .accordion-item .accordion-button {
  font-size: 1.8rem;
  color: #000C3F;
  font-weight: 600;
  padding: 2.2rem;
}
#accordionChooseBootchamp .accordion-item .accordion-body {
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--ss-text-light-primary2);
  font-weight: 400;
  padding: 2.2rem;
  padding-top: 0;
}

#accordionChooseBootchamp .accordion-item .accordion-button::after {
  font-family: "Font Awesome 5 Free";
  content: "\2b";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  background-image: none;
  transition: all 0.3s ease;
}
#accordionChooseBootchamp
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  font-family: "Font Awesome 5 Free";
  content: "\f068";
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  background-image: none;
  transform: none;
  transition: all 0.3s ease;
}
/* why choose bootcamp end */

/* key takeways start */
.key-takeways .section_inner {
  display: flex;
  gap: 5rem;
}
.key-takeways .section_inner .section-heading {
  align-items: flex-start;
}
.key-takeways .section_inner .left-img {
  min-width: 40%;
  max-width: 30rem;
}
.key-takeways .section_inner .left-img img {
  width: 100%;
}
.key-takeways .section_inner .right-content {
  width: 100%;
}
.key-takeways .section_inner .right-content .keys-wrappers {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.bg_key_takeways{
  background-color: #021220;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0rem;
}
.bg_key_takeways .section_inner .right-content .keys-wrappers .list-1 {
  width: 100%;
  display: flex;
  gap: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 0.5rem 1rem;
  min-height: 80px;
  background-color: white;
  border-radius: 10px;
}
.section_inner .right-content .keys-wrappers .list-1 img {
  width: 3rem;
  height: fit-content;
}
 .section_inner .right-content .keys-wrappers .list-1 p {
  font-size: 1.6rem;
  color: var(--ss-text-primary);
  font-weight: 400;
  line-height: 2rem;
  margin-top: 0.4rem;
}
/* key takeways end */
/* program curriculum start */
.program-curriculum .section_inner {
  display: flex;
  gap: 5rem;
  margin-top: var(--ss-top-inner-gap);
}
.program-curriculum .section_inner .left-content {
  width: 100%;
}

.program-curriculum .section_inner .left-content .program-lists_main {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  gap: 2rem;
  padding: 0rem 3rem;
}
.program-lists_main .program-lists_main_left{
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.program-lists_main .program-lists_main_right{
  width: 25%;
}
.program-curriculum .section_inner .left-content .program-lists_main .list-card {

  height: 8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 1.2rem;
  border-radius: 0.4rem;
  color: var(--nse-purple);
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.3;
}
.program-curriculum .section_inner .right-img {
  min-width: 40%;
  /* max-width: 30rem; */
  display: flex ;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.program-curriculum .section_inner .right-img img{
border-radius: 10px 60px;
}
/* program curriculum end */


/* program-highlight start */

.program-highlight {
  margin-top: var(--ss-top-inner-gap);
}
.program-highlight .highlight-inner {
  width: 100%;
  display: flex;
  /* flex-wrap: wrap; */
  row-gap: 2rem;
  column-gap: 2%;
}
.program-highlight .highlight-inner .highlight-card {
  /* min-width: 32%; */
  width: 32%;
  display: flex;
  align-items: center;
  text-align: center;
  /* justify-content: center; */
  flex-direction: column;
  gap: 2rem;
  overflow: hidden;
  background: #040b31;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.program-highlight .highlight-inner .highlight-card::before {
  background-image: linear-gradient(135deg, #ffe9d5d5 0%, #e8e5f8d5 100%);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
}
/* .program-highlight .highlight-inner .highlight-card:hover::before {
  opacity: 1;
  animation: bottomToTopBG 0.6s ease forwards;
}
@keyframes bottomToTopBG {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
} */
.program-highlight .highlight-inner .highlight-card .icon,
.program-highlight .highlight-inner .highlight-card .txt {
  z-index: 9;
}
.program-highlight .highlight-inner .highlight-card .icon {
  min-width: 6rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1rem solid #f8f8f8;
  font-size: 4rem;
  color: #000C3F;
  background-color: var(--ss-white);
}
.program-highlight .highlight-inner .highlight-card .txt {
font-size: 1.6rem;
color: white;
    line-height: 2.2rem;
  font-weight: 400;
  /* text-align: center; */
}
.program-highlight .highlight-inner .highlight-card .txt b {
  color: var(--nse-light-orange);
  font-weight: 500;
}
/* program-highlight end */
/* program-fee start */
/* offer  staerts from here*/ 

.program-fee-container {
  width: 100%;
  /* max-width: 800px; */
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.program-fee-header {
  background-color: #000C3F; /* Purple color */
  color: white;
  padding: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.program-fee-header span {
  margin-right: 8px;
  color: #000C3F;
}

.fee-description {
  color: #999;
  font-size: 14px;
  margin-left: 5px;
}

.benefits-container {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  gap: 4rem;
  text-align: center;
}

.benefit {
  display: flex ;
      flex-direction: column;
      align-items: center;
      padding: 15px;
      border-radius: 0px 30px 30px;
      width: 29%;
      background: white;
      /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
      box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.benefit-icon {
  font-size: 24px;
  color: #4c3083;
  margin-right: 10px;
}

.benefit-text {
  color: #333;
}

.benefit-text strong {
  color: black;
  font-weight: 600;
}

.benefit-text span {
  font-size: 1.6rem;
  color: var(--ss-text-primary);
  line-height: 2.2rem;
}
#Program_Highlight{
  display: flex;
    gap: 4rem;
    width: 100%;
    justify-content: center;
    padding: 20px 0px;
}
#Program_Highlight .benefit {
  display: flex;
  border-radius: 30px 30px 0px;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  width: 12%;
  background: white;
  min-height: 155px;
  text-align: center;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.program-fee {
  width: 100%;
  background-color: #e8e5f8;
  margin-top: 8rem;
  padding: 6.8rem 0;
  overflow: hidden;
  position: relative;
}
.program-fee .section_inner .section-heading {
  align-items: flex-start;
  margin-top: 0;
}
.program-fee .section_inner {
  display: flex;
  gap: 5rem;
}
.program-fee .section_inner .left-img {
  min-width: 60%;
  max-width: 40rem;
  position: relative;
}
.program-fee .section_inner .left-img img {
  z-index: 2;
  position: relative;
}
.program-fee .section_inner .left-img::after,
.program-fee::after {
  min-width: 42rem;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  transform: scale(1);
  animation: pulse 2s infinite ease-in-out alternate;
  position: absolute;
  content: "";
  left: 0;
  background-image: linear-gradient(#bab0e8, #e1603e);
  z-index: 1;
  opacity: 0.6;
}
.program-fee::after {
  bottom: -8rem;
  right: -5rem;
  left: auto;
  min-width: 20rem;
  width: 20rem;
  height: 20rem;
}

@keyframes pulse {
  from {
    transform: scale(0.7);
  }

  to {
    transform: scale(1);
  }
}
.program-fee .section_inner .right-content {
  position: relative;
}

.program-fee .section_inner .highlight-wrapper .highlight-card {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  position: absolute;
  width: 32rem;
  z-index: 3;
}
.program-fee .section_inner .highlight-wrapper .highlight-card:nth-child(1) {
  width: 20rem;
  left: 2rem;
}
.program-fee .section_inner .highlight-wrapper .highlight-card:nth-child(2) {
  top: 48%;
  left: -4rem;
}
.program-fee .section_inner .highlight-wrapper .highlight-card:nth-child(3) {
  top: 80%;
  left: -20rem;
}
.program-fee .section_inner .highlight-wrapper .highlight-card .icon {
  min-width: 5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ss-white);
  font-size: 2rem;
  background-image: linear-gradient(#2c9e90, #237e72);
  filter: drop-shadow(0.2rem 0.2rem 0.6rem #237e725b);
}
.program-fee
  .section_inner
  .highlight-wrapper
  .highlight-card:nth-child(2)
  .icon {
  background-image: linear-gradient(#ee7939, #e1603e);
  filter: drop-shadow(0.2rem 0.2rem 0.6rem #e1613e7e);
}
.program-fee .section_inner .highlight-wrapper .highlight-card .text h5 {
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--ss-text-secondary);
}
.program-fee .section_inner .highlight-wrapper .highlight-card .text h5 b {
  font-weight: 800;
  color: var(--nse-purple);
}
.program-fee
  .section_inner
  .highlight-wrapper
  .highlight-card:nth-child(1)
  .text {
  margin: 0 auto;
}
.program-fee
  .section_inner
  .highlight-wrapper
  .highlight-card:nth-child(1)
  .text
  h5
  b {
  text-align: center;
  font-size: 3rem;
}
.program-fee
  .section_inner
  .highlight-wrapper
  .highlight-card:nth-child(1)
  .text
  h5 {
  text-align: center;
  font-size: 1.2rem;
}

/* program-fee end */

/* overview start */


.overview .credit {
  margin: 1em 0 0;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.overview .credit:before {
  content: "— ";
}

.credits {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
.credits a {
  color: var(--color);
}

/* overview end */
/* program overview start */
.program-overview{
  padding: 4rem 0;
  background-image: linear-gradient(180deg, #f8f8f8, #f8f8f8);
}
.program-curriculum {
  /* padding: 4rem 0; */
  padding-bottom: 4rem;
  background-image: linear-gradient(180deg, #f8f8f8, #f8f8f8);
}
.why-bootcamp-section{
  padding: 2rem 0;
  background-image: linear-gradient(180deg, #f8f8f8, #f8f8f8);
}
.evaluation {
  padding: 2rem 0;
  background-image: linear-gradient(180deg, #f8f8f8, #f8f8f8);
}
.section_container {
  width: 88%;
  margin: 0 auto;
}

.evaluation_inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.evaluation_inner_txt {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.para_size {
  font-size: 1.6rem;
  color: var(--ss-text-primary);
  line-height: 2.2rem;
  font-weight: 400;
}
.IT_Professionals_main {
  display: flex;
  gap: 4rem;
}
.text_size1 {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ss-white);
}
.IT_Professionals_main_cards h3 {
  color: var(--ss-white);
}
.IT_Professionals_main_cards {
  width: 90%;
  padding: 1rem 2rem;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}
.IT_Professionals_main_cards p {
  position: relative;
  top: -1rem;
}
.about_program_cardIMG {
  min-width: 50px;
  width: 50px;
  height: 50px;
  min-height: 50px;
  background-color: #000C3F;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  align-items: center;
  position: relative;
  bottom: 25px;
  padding: 1rem;
  margin: 0 auto;
}
.IT_Professionals_main_cards p b {
  color: var(--nse-purple);
}
/* program overview end */
/* program-intented start */
.program-intented .card-wrapper {
  width: 80%;
  display: flex;
  /* background-color: var(--nse-ex-light-cyan); */
  gap: 2rem;
  /* filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5)); */
  border-radius: 4px;
  margin: 0 auto;
  overflow: hidden;
}
.program-intented .card-wrapper .left-list {
  width: 100%;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.program-intented .card-wrapper .left-list .list-card {
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--nse-purple);
}
.program-intented .card-wrapper .left-list .list-card i {
  color: #e96f24;
  margin-right: 1rem;
  float: left;
}
.program-intented .card-wrapper .right-img {
  min-width: 36%;
  width: 36%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  overflow: hidden;
}
.program-intented .card-wrapper .right-img img {
  height: 100%;
  object-fit: cover;
}
/* program-intented end */
/* footer section start */
.footer_main {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-bottom: 1.2rem;
  margin-top: 5rem;
}
.footer_main .nse_line_footer {
  width: 98%;
  height: 0.6rem;
  margin: 0 auto;
}
.footer_inner {
  display: flex;
  justify-content: space-between;
}
.footer_inner .text_size3 {
  font-size: 1.2rem;
  color: var(--bs-gray);
  font-weight: 400;
}
.social_media ul {
  width: fit-content;
  display: flex;
  gap: 1rem;
}
.social_media .icon {
  min-width: 2.8rem;
  width: 2.8rem;
}
/* footer section end */

/* register form modal start */
#registerModal {
  z-index: 99999999999999999999999;
}
#registerModal .modal-header img {
  width: 8rem;
}
.get_in_touch_inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.get_in_touch_inner .section_heading_main {
  color: var(--bs-white);
}

.get_in_touch_innerForm {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.get_in_touch_innerForm form {
  width: 70rem;
  min-width: 40rem;
  padding: 2rem;
  padding-top: 0;
  border-radius: 0.8rem;
  background-color: #fff;
  /* box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px; */
  z-index: 9;
}

.get_in_touch_innerForm_title h4 {
  font-size: 2rem;
  color: #392d7d;
  font-weight: 600;
  text-align: center;
  margin: 1rem 0;
}
/* .get_in_touch_innerForm_title p{
  font-size: 1.5rem;
  color: var(--bs-gray);
  margin: 1rem 0;
 } */
.get_in_touch_innerForm_input {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.get_in_touch_innerForm_input .form-control {
  border-radius: 0px;
  border: none;
  background-color: #f2f2f3;
  font-size: 1.6rem;
  color: #777;
  padding: 1rem 1.2rem;
  border-radius: 0.3rem;
}
.get_in_touch_innerForm_input .form-control:focus {
  width: 100%;
  box-shadow: none;
  outline: none;
  background-color: #f2f2f3;
}
.get_in_touch_innerForm_input span {
  display: flex;
  gap: 1.2rem;
}
.get_in_touch_innerForm_input select {
  padding: 1rem 1.2rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
  font-size: 1.6rem;
  border: none;
  color: #777;
}
.get_in_touch_innerForm_input .form-control::placeholder {
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #777;
}
.get_in_touch_innerForm_input button {
  padding: 0.8rem 1.6rem;
  color: #fff;
  background-color: #392d7d;
  border: none;
  border-radius: 0.4rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.btn-close {
  font-size: 1.4rem;
}

#ajaxResponseCheckoutForm {
  font-size: 1.4rem;
}
/* register form modal end */

/* about start */
.about-section .section_inner {
  padding-top: var(--ss-top-inner-p-gap);
}
.about-section .container-wrapper {
  display: flex;
  align-items: center;
  gap: 5%;
}
.about-section .container-wrapper .img-wrapper {
  min-width: 50%;
  width: 100%;
  /* height: 30rem; */
  position: relative;
  /* background-color: var(--nse-orange); */
}
.about-section .container-wrapper .img-wrapper img {
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 8rem 0% 8rem 0%;
  border: 3rem solid var(--bs-white);
}
/* about end */
/* contactUs start */
.contactUs .section_inner {
  border-radius: 2rem;
  background-color: #000C3F;
  display: flex;
  justify-content: space-between;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  gap: 2rem;
  margin-top: 6rem;
  overflow: hidden;
}
.contactUs .section_inner .left-wrapper {
  padding: 4rem 6rem;
}
.contactUs .section_inner .title {
  font-size: 3rem;
  color: var(--ss-white);
  font-weight: 600;
  margin-bottom: 2rem;
}
.contactUs .section_inner p.para{
  margin-bottom: 2rem;
}
.contactUs .cards-wrapper{
  display: flex;
  /* flex-wrap: wrap; */
  gap: 2rem;
}
.contactUs .section_inner a {
  width: fit-content;
  border-radius: 0.6rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  font-size: 1.8rem;
  color: var(--nse-orange);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 88%);
  padding: 2rem;
  filter: drop-shadow(0.35rem 0.35rem 0.4rem rgba(0, 0, 0, 0.5));
  text-wrap: nowrap;
}
.contactUs .section_inner a i{
  color: var(--nse-purple);
}

.contactUs .right-wrapper{
  min-width: 40rem;
  width: 40rem;
}
.contactUs .right-wrapper img{
  height: 100%;
}
/* contactUs end */
/* disclaimer start */
.disclaimer .section_inner{
  margin-top: var(--ss-top-inner-gap);
}
.disclaimer .section-heading{
align-items: flex-start;
}
.disclaimer ul{
  list-style: number;
  padding-left: 2rem;
}
.disclaimer ul li{
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--ss-text-secondary);
  margin-bottom: 1rem;
}
/* disclaimer end */
@media (min-width: 299px) and (max-width: 699px) {
  #Program_Highlight{
    align-items: center;
  }
  #Program_Highlight .benefit{
    width: 80% !important;
  }
  .our-leaders .content-wrapper .quotes{
    font-size: 1.2rem;
  }
  .benefits-container{
    padding: 1rem;
  }
  #Program_Highlight , .program_list_inner{
    flex-direction: column;
    padding: 1rem;
  }
  #Program_Highlight .benefit{
    width: 100%;
  }
.duration_highlight_main{
  flex-direction: column;
}
.program-fee-header span{
  line-height: 3rem;
}
.program_highlight_inner{
  gap: 1rem;
}
.program_highlight_inner,.IT_Professionals_main,.benefits-container,.Ideal_For_main{
  flex-direction: column;
}
.program_highlight_card,.benefit,.Ideal_For_cards,.program-lists_main .program-lists_main_left,.program-lists_main .program-lists_main_right{
  width: 100% !important;
}
.program-curriculum .section_inner .left-content .program-lists_main{
  flex-direction: column-reverse;
}
}

@media (max-width: 999px) {
  html,
  body {
    font-size: 55.5%;
  }
  .hero-section {
    min-height: fit-content;
    /* padding-bottom: 4rem; */
  }
  .hero-section .section_inner {
    flex-direction: column;
  }
  .hero-section .section_inner .hero-left .main-title {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .hero-section .section_inner .hero-left,
  .hero-section .section_inner .hero-right {
    width: 100%;
  }
  .hero-section .section_inner .hero-left {
    padding: 4rem 0;
  }
  .hero-section .section_inner .hero-left .nse-line {
    margin-bottom: 2rem;
  }
  .hero-right .duration-highlight {
    top: 34%;
  }
  /* .hero-right .duration-highlight.format {
    left: 6rem;
    top: -4%;
  } */
.program-curriculum .section_inner .left-content .program-lists_main .list-card{
height: 10rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
    rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  padding: 1.2rem;
  border-radius: 0.4rem;
  color: var(--nse-purple);

  font-size: 1.6rem;
  line-height: 1.3;
}
  .program-highlight .highlight-inner {
    width: 100%;
    display: flex
;
    flex-wrap: wrap!important;
    row-gap: 2rem;
    column-gap: 2%;
}
  .hero-section .btm-container{
    width: 100%;
  }
  .choose-inner-wrapper .choose-card {
    width: 100%;
  }
  .key-takeways .section_inner {
    flex-direction: column-reverse;
    margin-top: 0;
  }
  .key-takeways .section_inner .left-img,
  .program-curriculum .section_inner .right-img {
    margin: 0 auto;
  }
  .program-curriculum .section_inner {
    flex-direction: column;
    margin-top: 0;
  }
  .program-highlight .highlight-inner .highlight-card {
    min-width: 100%;
    width: 100%;
    padding: 2rem;
  }
  .why-bootcamp-section .choose-inner-wrapper {
    width: 100%;
  }
  .our-leaders .carousel-main {
    padding: 0rem !important;
  }
  .our-leaders .carousel-main .carouser-inner-wrapper .carosel-item-inner {
    padding: 1rem !important;
  }
  .our-leaders
    .carousel-main
    .carouser-inner-wrapper
    .carosel-item-inner
    .img-left
    .alumni-img {
    min-width: 8rem;
    width: 8rem;
    height: 8rem;
  }
  .our-leaders
    .carousel-main
    .carouser-inner-wrapper
    .carosel-item-inner
    .img-left::after,
  .our-leaders
    .carousel-main
    .carouser-inner-wrapper
    .carosel-item-inner
    .img-left::before {
    display: none;
  }
  .our-leaders .carousel-main .carouser-inner-wrapper {
    width: 100%;
  }
  .our-leaders .carousel-main .carouser-inner-wrapper .carosel-item-inner {
    height: 100vh !important;
    flex-direction: column;
  }
  .our-leaders .carousel-control-next,
  .our-leaders .carousel-control-prev {
    top: 100%;
    min-width: 4rem;
    width: 4rem;
    height: 4rem;
  }
  .our-leaders .carousel-control-prev {
    left: 80%;
    display: none;
  }
  .our-leaders .carousel-control-next {
    left: 92%;
    display: none;
  }
  .program-fee {
    margin-top: 4rem;
    padding: 4rem 0;
  }
  .program-fee .section_inner {
    flex-direction: column-reverse;
  }
  .program-fee .section_inner .highlight-wrapper .highlight-card:nth-child(1) {
    margin: 0 auto;
    margin-bottom: 2rem;
  }
  .program-fee .section_inner .highlight-wrapper .highlight-card {
    position: relative;
    margin-bottom: 2rem;
    width: 100%;
  }
  .program-fee .section_inner .highlight-wrapper .highlight-card {
    left: 0 !important;
  }
  header .main-btn {
    display: none;
  }
  .program-curriculum .section_inner .left-content .program-lists .list-card {
    line-height: 2rem;
  }
  .program-intented .card-wrapper{
    width: 100%;
  }
  .contactUs .right-wrapper,
  .program-intented .card-wrapper .right-img{
    display: none;
  }
  .evaluation_inner{
    flex-direction: column;
  }
  .evaluation_inner_img,
  .evaluation_inner_txt{
    width: 100%;
  }
  .IT_Professionals_main_cards{
    width: 100%;
  }
  .evaluation_inner_txt{
    margin-top: 3rem;
  }
  .program-intented .card-wrapper .left-list .list-card i {
    height: 100%;
  }
  .about-section .container-wrapper{
    flex-direction: column;
    gap: 4rem;
  }
  .about-section .container-wrapper .img-wrapper{
    min-width: 100%;
    margin: 0 auto;
  }
  .contactUs .section_inner .left-wrapper{
    width: 100%;
    padding: 4rem;
  }
  .footer_inner{
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.6rem;
  }
  .footer_inner .text_size3{
    text-align: center;
  }
  .para_size{
    text-align: justify;
  }
  .key-takeways .section_inner .section-heading{
    margin-top: 0;
  }
}
.duration_highlight_main{
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}


.hgyd{
  background-color: #382d7c;
  
}



.program_highlight_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.program_highlight_card {
  width: 30%;
  display: flex
;
  flex-direction: column;
  align-items: center;
  /* gap: 1.2rem; */
}
.program_highlight_card_icon {
  padding: 1rem;
  border: 0.5rem solid #000c3f;
  border-radius: 50%;
  position: relative;
  min-width: 7rem;
  min-height: 7rem;
  max-width: 7rem;
  max-height: 7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.verline {
  height: 40px;
  width: 2px;
  background-color: #000c3f;
}
.program_highlight_card_txt {
  width: 100%;
  height: 15vh;
  padding: 1rem;
  border: 3px solid #000c3f;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  border-radius: 5px;
  text-align: center;
}
.text_size3 {
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: var(--bs-gray-dark);
  line-height: 2.2rem;
}
.font_icon{
  min-width: 5rem;
  min-height: 5rem;
  font-size: 1.8rem;
  background: silver;
  padding: 1rem;
  border-radius: 50%;
  display: flex
;
  align-items: center;
  justify-content: center;
}
.program_overview{
  margin-top: 3rem;
}




.Ideal_For_main{
  display: flex;
  gap: 2rem;
  justify-content:space-between;
  margin-top: 20px;
}
.Ideal_For_cards{
  display: flex;
  gap: 1rem;
  padding: 15px;
  border-radius: 8px;
  width: 30%;
  border: 1px solid #02121f;
  box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}

.Ideal_For img {
width: 20px;
}

.program_list li{
 list-style-image: url(../images/icons/tick-20.png);
}
.bg_Fee{
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
}


.program_list_inner {
  width: 100%;
  display: flex;
  /* flex-direction: column; */
  gap: 2rem;
}
.program_list_inner .list-1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 2rem;
  background-color: white;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.program_list_inner .list-1 img {
  width: 80px;
  height: 80px;
}
.program_list_inner .list-1 p {
  font-size: 1.6rem;
  color: var(--ss-text-primary);
  font-weight: 400;
  line-height: 2rem;
  text-align: justify;
}



/* program overview section code  */

ul.flag-list-ul {
  --col-gap: 2rem;
  --barH: 1rem;
  --roleH: 2rem;
  --flapH: 2rem;
  /* width: min(60rem, 90%); */
  margin: 4rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--col-gap);
  padding-inline: calc(var(--col-gap) / 2);
  justify-content: center;
  align-items: flex-start;
  list-style: none;
}
ul.flag-list-ul li {
  width: 20rem;
  display: grid;
  grid-template:
    "role"
    "icon"
    "title"
    "descr";
  align-items: flex-start;
  gap: 1rem;
  padding-block-end: calc(var(--flapH) + 2rem);
  text-align: center;
  background: var(--accent-color);
  background-image: linear-gradient(
    rgba(0, 0, 0, 0.6) var(--roleH),
    rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
    rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem)
  );
  clip-path: polygon(
    calc(var(--col-gap) / -2 - 5px) 0,
    calc(100% + var(--col-gap) / 2 + 5px) 0,
    calc(100% + var(--col-gap) / 2 + 5px) calc(100% - var(--flapH)),
    50% 100%,
    calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH))
  );
}

/* bar */
ul.flag-list-ul li::before {
  content: "";
  grid-area: role;
  height: var(--barH);
  width: calc(100% + var(--col-gap));
  margin-left: calc(var(--col-gap) / -2);
  margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
  background: grey;
  z-index: -1;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.4)
  );
}

/* role */
ul.flag-list-ul li::after {
  content: "";
  grid-area: role;
  background: var(--accent-color);
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.4),
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.2) 70%,
    rgba(0, 0, 0, 0.4)
  );
  height: var(--roleH);
}

ul.flag-list-ul li .icon,
ul.flag-list-ul li .title,
ul.flag-list-ul li .descr {
  padding-inline: 1rem;
  color: white;
  text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

ul.flag-list-ul li .icon {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 700;
}
ul.flag-list-ul li .title {
  font-size: 1.6rem;
  font-weight: 900;
}

ul.flag-list-ul li .descr {
  font-size: 1.4rem;
  line-height: 2rem;
}

.credits {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
.credits a {
  color: var(--color);
}
/* end  */








/* our leader start */
.our-leaders .carousel-main {
  width: 100%;
  position: relative;
  padding: 5.6rem 10rem;
}
.our-leaders .carousel-main::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 100%;
  content: "";
  background-color: #000c3f;
  z-index: 1;
}
.our-leaders .carousel,
.our-leaders .carousel .carousel-indicators {
  z-index: 9;
}
.our-leaders .carousel-main .carouser-inner-wrapper {
  width: 90%;
  margin: 0 auto;
}
.our-leaders .carousel-main .carouser-inner-wrapper .carosel-item-inner {
  width: 100%;
  display: flex;
  gap: 2rem;
  height: 50rem;
  z-index: 3;
  position: relative;
  background-color: #000c3f;
  border: 0.7rem solid var(--ss-bg-main);
  border-radius: 3rem;
  padding: 2rem 6rem;
}
.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .img-left {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  position: relative;
}
.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .img-left::after {
  height: 20%;
  width: 3.6rem;
  border-radius: 10rem;
  background-color: #ff795c;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .img-left::before {
  height: 100%;
  width: 3.6rem;
  border-radius: 10rem;
  background-color: #ff795c;
  position: absolute;
  top: 0;
  left: 4.6rem;
  content: "";
}
.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .img-left
  .alumni-img {
  min-width: 12rem;
  /* width: 18rem; */
  height: 12rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #eee;
  z-index: 2;
  margin-left: 3.2rem;
  background-color: var(--ss-white);
}
.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .img-left
  .alumni-img
  img {
  object-fit: cover;
  height: 100%;
}

.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .content-right
  .quote-icon {
  color: #10f0cd;
  font-size: 4rem;
}
.our-leaders
  .carousel-main
  .carouser-inner-wrapper
  .carosel-item-inner
  .quote-icon.right {
  float: right;
}
.our-leaders .content-wrapper .head .name {
  display: flex;
  flex-direction: column;
  color: var(--ss-white);
  font-size: 2rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  gap: 0.2rem;
}
.our-leaders .content-wrapper .head .name p {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.6rem;
  font-weight: 400;
}
.our-leaders .content-wrapper .quotes {
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 300;
  color: #cfcfcf;
  font-family: "Poppins", sans-serif;
  margin-top: 1.2rem;
}

.our-leaders .carousel-control-next,
.our-leaders .carousel-control-prev {
  background-color:#000c3f;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  box-shadow: 0px 5px 0px 0px #1e4c31;
  min-width: 6.8rem;
  width: 6.8rem;
  height: 6.8rem;
  color: var(--ss-white);
  position: absolute;
  top: 105%;
  right: 6rem;
  opacity: 1;
}
.our-leaders .carousel-control-prev {
  left: 92%;
}
.our-leaders .carousel-control-next {
  left: 100%;
}
/* our leader end */

hr{
  /* margin: 1rem 0; */
  color: #392e7d;
  border: 2px solid;
  border-top: var(--bs-border-width) solid;
  opacity: 4;
}