* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main: #392d7d;
  --black: #231f20;
  --light_pink: #fff8f3;
  --white: #fff;
  --brown: #5a2c0b;
  --yellow: #f1b51c;
  --orange: #e86e25;
  --dark_red: #e31f26;
  --sky: #ecf4f7;
  --green: #00833e;
  --gray: #ecf4f7;
  --nse_gray: #6d6e71;
  --sky_gray: #eceaf5;
}

body {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
}

a {
  text-decoration: none !important;
}

hr.line {
  width: 90%;
  margin: auto;
}

ul {
  margin: 5px;
  padding: 5px;
}

/* 
ul li{
    list-style-type: none;
} */

section.section {
  padding: 30px 60px;
}

.section_heading {
  position: relative;
}

.section_headingsecond:after

/* .posts-title:after  */ {
  content: "";
  position: absolute;
  z-index: 0;
  top: 75%;
  transform: translateY(-50%);
  left: 0;
  width: 99%;
  /* border: 4px double #eee; */
  border: 4px double rgb(232 37 37);
  z-index: -2;
}

.section_heading:after

/* .posts-title:after  */ {
  content: "";
  position: absolute;
  z-index: 0;
  top: 75%;
  transform: translateY(-50%);
  left: 0;
  width: 99%;
  /* border: 4px double #eee; */
  border: 4px double rgba(109, 110, 113, 0.4);
  z-index: -2;
}

.section_heading h1 {
  /* color: #1c1c1c; */
  color: #392d7d;
  text-transform: capitalize;
  position: relative;
  font-size: 30px;
  z-index: 1;
  display: inline-block;
  background-color: #fff;
  padding-right: 10px;
  font-weight: 800;
  /* opacity: 0.6; */
}

.section_heading h1 {
  /* color: #1c1c1c; */
  color: #392d7d;
  text-transform: capitalize;
  position: relative;
  font-size: 30px;
  z-index: 1;
  display: inline-block;
  background-color: #fff;
  padding-right: 10px;
  font-weight: 800;
  /* opacity: 0.6; */
}

/* .section_heading h1::first-letter{
    font-size: 60px;
    color: #e86e25;
} */

.section_heading h1 span {
  font-size: 60px;
  color: #e86e25;
}

.section_heading h1 .abs_header {
  position: absolute;
  top: 15px;
  left: 10%;
  font-size: 13px;
  font-weight: 400;
}

.section_inner_container {
  padding: 10px 0px !important;
}

.center_item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center_items {
  /* background-color: red; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============== social_links ============== */
.social_links {
  position: fixed;
  left: -5px;
  bottom: 3%;
  width: 55px;
  height: 200px;
  background-color: #fff;
  /* background-color: #ECEAF5; */
  border-top-right-radius: 2rem;
  border-bottom-right-radius: 2rem;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  padding: 10px 0px;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  z-index: 99;
}

.social_links ul {
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 90%;
}

.social_links ul li {
  color: #ea7d3b;
  display: flex;
  width: 35px;
  height: 35px;
  /* background-color: #392d7d; */
  border-radius: 50%;
  position: relative;
  transition: all 0.5s ease;
}

/* .social_links ul li:hover{
    background-color: #392d7d;
} */

.social_links ul li a {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  margin-right: 19px;
  position: absolute;
  /* top: 50%;
    left: 50%;
    transform: translate(-50% , -50%); */
  /* color: #f1b51c; */
  color: #ea7d3b;
  display: grid;
  display: -moz-grid;
  display: -ms-grid;
  place-items: center;
  transition: all 0.5s ease;
}

.social_links ul li a:hover {
  background-color: #ea7d3b;
  color: #ffffff;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.social_links ul li h4 {
  margin-right: 19px;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(-50%, -50%);
  /* color: #231f20; */
  color: #fff;
  font-size: 14px;
  background-color: #ea7d3b;
  padding: 3px 8px;
  border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
}

.social_links ul li:hover h4 {
  opacity: 1;
  visibility: visible;
}

.social_links ul li h4::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #ea7d3b;
  top: 50%;
  left: -4px;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 2px;
  z-index: -1;
}

/* =============== header =================== */
header {
  box-shadow: 0 0 6px 0 #ddddddb3;
  width: 100%;
  background-color: #fff;
}

header.scrolled {
  box-shadow: 0 0 8px 0 #392d7d;
}

header .container {
  /* background-color: red; */
  padding: 0px !important;
}

header .navbar {
  /* background-color: green; */
  padding: 0px 3rem 0px 2rem !important;
}

header .navbar-brand img {
  width: 130px;
}

header .navbar-brand2 img {
  width: 250px;
}

header nav {
  /* padding: 8px 2rem !important; */
  margin: 0px !important;

  width: 100%;
  background-color: #fff;
}

header .navbar-nav {
  margin-left: auto;
}

.brochure_btn {
  margin-left: 1rem !important;
  margin-top: 5px;
}

.brochure_btn a {
  border: 1px solid #e86e25 !important;
  color: #e86e25 !important;
  transition: 0.5s ease-in-out;
}

.brochure_btn a:hover {
  background-color: #e86e25 !important;
  color: #fff !important;
}

.pay_btn {
  margin-left: 1rem !important;
  margin-top: 5px;
}

.pay_btn a {
  border: 1px solid #e86e25 !important;
  background-color: #e86e25 !important;
  color: #fff !important;
  transition: 0.5s ease-in-out;
}

.pay_btn a:hover {
  background-color: #fff !important;
  color: #e86e25 !important;
}

.navbar-light .navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ============ banner_section =============== */
section.banner_section {
  /* height: 70vh; */
  /* height: 65vh; */
  height: 100%;
  /* background-color: #392d7d; */
  /* padding: 100px 0px; */
  position: relative;
  /* background: #392d7d url('../images/banner.jpg'); */
  background: url("../images/Banner\ Image.png");
  /* background: #402ea7 url('../images/banner3.jpg'); */
  background-position: center;
  background-size: cover;
  /* object-fit: cover; */
  /* padding: 80px auto; */
  background-repeat: no-repeat;
  z-index: 1;
  /* background-blend-mode: color-dodge; */
}

section.banner_section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.7);
  /* background-color: rgba(57, 45, 125, 0.8); */
}

.banner_section .banner_text {
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner_section .banner_text .text_p {
  /* color: #e86e25; */
  color: #f1b51c;
  /* color: #231f20; */
  font-style: italic;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 10px 0px;
  display: inline-block;
  line-height: 0px;
  /* background-color: red; */
  margin-bottom: 0px;
  /* border-bottom: 1px dashed rgba(0,0,0,0.9); */
  position: absolute;
  font-weight: 500;
  left: 2rem;
  top: 2rem;
}

.banner_section .banner_text h1 {
  /* font-size: 60px; */
  font-size: 40px;
  font-weight: 1000;
  /* color: #392d7d; */
  /* color: #fff8f3; */
  color: #ffffff;
  margin-bottom: 5px;
  opacity: 0.9;
  /* text-transform: uppercase; */
  position: relative;
  text-transform: capitalize;
}

.banner_section .banner_text h1::first-letter {
  font-size: 80px;
  font-weight: 900;
}

.banner_section .banner_text img {
  margin-bottom: 10px;
  width: 95%;
  height: 8px;
  margin-top: 1rem;
}

.banner_section .banner_text h6 {
  font-size: 25px;
  /* color: #f1b51c; */
  color: #fff8f3;
  /* color: #392d7d; */
  font-weight: 800;
}

.banner_section .banner_text h6 span {
  /* background-color: #f1b51c; */
  background-color: #392d7d;
  color: #fff;
  padding: 0px 15px;
  text-transform: uppercase;
}

.online_row.center_items {
  justify-content: space-between;
  width: 100%;
  /* background: red; */
}

.online_row .bannerApplyBtns.center_item {
  justify-content: flex-start;
}

/* .online_row .bannerApply_text{
    background: #00833e;
} */

.online_row .bannerApply_text h5 {
  font-size: 20px;
  color: #eceaf5;
  font-weight: 600;
  margin-top: 1rem;
}

.online_row .bannerApply_text h6 {
  color: #ccc;
  /* color: #231f20;
    color: #e86e25; */
  font-size: 25px;
  font-weight: 700;
}

.online_row .bannerApply_text h6 span {
  font-size: 18px;
}

.online_row .bannerApply_text h5 span {
  font-size: 35px;
  color: #f1b51c;
  margin-right: 10px;
  font-weight: 800;
}

.online_row .applyBtns {
  margin-top: 0px;
  /* margin-left: 1rem; */
  /* margin-top: 1rem; */
  position: relative;
  overflow: hidden;
  z-index: 1;
  /* width: 200px; */
}

.online_row a:nth-child(1) {
  border-bottom-left-radius: 14px;
}

.online_row a:nth-child(1)::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 100%;
  background-color: #e86e25;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease;
}

.online_row a:nth-child(1):hover::before {
  width: 100%;
}

.online_row a:last-child {
  border-top-right-radius: 14px;
}

.online_row a:last-child::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0%;
  background-color: #e86e25;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.5s ease;
}

.online_row a:last-child:hover::before {
  height: 100%;
}

.applyBtns {
  /* display: inline-block; */
  text-align: center;
  /* margin-top: 15px; */
  color: #fff !important;
  /* background-color: #e86e25; */
  /* background-color: red; */
  border: 2px solid #f1b51c;
  position: relative;
  /* width: 170px; */
  width: 220px;
  /* height: 45px; */
  height: 50px;
  z-index: 1;
  transform: 0.5s ease-in-out;
}

.applyBtns:hover {
  /* border: 2px solid #e86e25;
    border-left: 5px solid #e86e25;
    border-right: 5px solid #e86e25; */
}

/* .applyBtns::before{
    content: '';
    position: absolute;
    width: 95%;
    height: 85%;
    left: 50%;
    top: 50%;
    border-radius: 3px;
    transform: translate(-50%, -50%);
    background-color: #e86e25;
    z-index: -1;
    transform: .5s  ease-in-out;
}

.applyBtns:hover:before{
    background-color: #f1b51c;
    color: #392d7d !important;
} */

/* .applyBtns.downloadBrochure{
    white-space: nowrap;
    width: 30% !important;
} */

/* .downloadBrochure{
    position: relative;
} */

.sectionBtns {
  /* margin: 1rem  auto; */
}

.sectionBtnsdfg .applyBtnsdfg {
  padding: 2rem;
  color: white !important;
  background-color: #392d7d;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: all 0.5s ease;
}

.sectionBtnsdfg .applyBtnsdfg:hover {
  background-color: #e86e25;
  color: #fff !important;
}

.sectionBtns .applyBtns {
  /* color: #e86e25 !important; */
  background-color: #e86e25;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: all 0.5s ease;
}

.sectionBtns .applyBtns:hover {
  background-color: #f1b51c;
  /* color: #fff !important; */
}

.applyBtnss {
  /* display: inline-block; */
  text-align: center;
  /* margin-top: 15px; */
  color: #fff !important;
  /* background-color: #e86e25; */
  /* background-color: red; */
  border: 2px solid #e86e25;
  position: relative;
  /* width: 170px; */
  width: 220px;
  /* height: 45px; */
  height: 50px;
  z-index: 1;
  transform: 0.5s ease-in-out;
}

.sectionBtns .applyBtnss {
  /* color: #e86e25 !important; */
  background-color: #f1b51c;
  border-bottom-left-radius: 15px;
  border-top-right-radius: 15px;
  transition: all 0.5s ease;
}

.sectionBtns .applyBtnss:hover {
  background-color: #e86e25;
  /* color: #fff !important; */
}

/* ============= investmentDetails =============== */
.investmentDetails {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* flex-wrap: wrap; */
  align-self: normal;
}

.investmentDetails .investment {
  width: 130px;
  height: 130px;
  /* background-color: #ecf4f7; */
  /* background-color: #231f20; */
  /* background-color: #f1b51c; */
  background-color: #e31f26;
  border-radius: 50%;
  display: flex;
  display: -ms-flexbox;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  box-shadow: 0px 0px 8px rgba(109, 110, 113, 0.4);
  transition: all 0.5s ease-in-out;
  border: 1px solid #fff;
}

.investmentDetails .investment:hover {
  opacity: 0.9;
  transform: translateY(-10px);
}

.investmentDetails .investment:nth-child(2) {
  margin: 0 10px;
}

.investmentDetails .investment:nth-child(3) {
  margin: 0 10px;
}

.investmentDetails .investment p {
  font-size: 12px;
  /* color: #6d6e71; */
  color: #eceaf5;
}

.investmentDetails .investment span {
  font-size: 18px;
  font-weight: 700;
  /* color: #5a2c0b; */
  /* color: #f1b51c; */
  /* color: #6d6e71; */
  color: #eceaf5;
  /* padding: 3px 0px;
    border-bottom: 1px solid #6d6e71;
    display: block; */
}

/* ================================= section ================== */

.about_course .aboutCourse_text p {
  font-size: 16px;
  letter-spacing: 0.6px;
}

.card.formCard {
  max-height: 31rem;
  overflow: auto;
  margin-top: 5%;
  z-index: 99;
  margin-left: 10px;
  border: none;
  box-shadow: 0px 0px 8px rgba(109, 110, 113, 0.4);
}

.card.formCard .card-header {
  background-color: #e86e25;
  /* background-color: #f1b51c; */
  color: #fff;
}

.card.formCard .card-body {
  padding: 00px 00px;
}

.card.formCard .form-control,
.card.formCard .form-select {
  margin-bottom: 15px;
  border: 1px solid #ccc;
  color: #e86e25;
  border-radius: 2rem;
  padding-left: 20px;
  font-size: 14px;
  transition: all 0.5s ease;
}

.card.formCard .form-control:focus,
.card.formCard .form-select:focus {
  box-shadow: 0px 0px 6px #e86e25;
  border: 1px solid rgba(232, 110, 37, 0.1);
}

.card.formCard .form-control::placeholder,
.card.formCard .form-select::placeholder {
  color: #ccc;
  opacity: 0.6;
}

.card.formCard form .btn {
  display: block;
  background-color: #392d7d;
  color: #fff;
  width: 200px;
  border-bottom: 2px solid #f1b51c;
  margin: 10px auto;
  border-radius: 2rem;
  transition: all 0.5s ease;
}

.card.formCard form .btn:hover {
  color: #f1b51c;
  opacity: 0.8;
}

/* ==================== courseQuality_container =============== */

.courseQuality_container {
  /* background-color: red; */
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

/* .courseQuality_containerPrograms a{
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin: 0px 30px !important;
} */

.courseQuality_container .accordion {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  /* background: red; */
  padding: 0px;
}

.courseQuality_container .card,
.courseQuality_container .card-header {
  background-color: transparent !important;
  border: none !important;
  padding: 0px !important;
  margin-bottom: 20px;
}

.courseQuality_container .card {
  box-shadow: 0 2px 20px 0 rgba(110, 130, 208, 0.18) !important;
  /* width: 23%;
    margin: 1rem; */
  -ms-flex: 0 0 18%;
  flex: 0 0 18%;
  max-width: 18%;
  /* margin-bottom: 30px; */
  /* display: -ms-flexbox;
    display: flex; */
  outline: 1px solid #ccc;
  overflow: hidden;
}
.courseQuality_container .card-style {
  /* width: 23%;
    margin: 1rem; */
  -ms-flex: 0 0 18%;
  flex: 0 0 18%;
  max-width: 18%;
  /* margin-bottom: 30px; */
  /* display: -ms-flexbox;
    display: flex; */

  overflow: hidden;
}

.courseQuality_container .card:hover img {
  transform: scale(1.08);
}

.courseQuality_container .card img {
  height: 150px;
  transition: 0.5s ease;
}

/* ================= not using this code============= */
.courseQuality_container .btn-link {
  /* text-decoration: none; */
  width: 100%;
  height: 60px;
  color: #000;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  position: relative;
  box-shadow: none;
  outline: none;
}

.courseQuality_container .btn-link::after {
  content: "\2212";
  /* \2212 */
  width: 35px;
  height: 30px;
  font-size: 25px;
  text-align: center;
  border-radius: 5px;
  right: 15px;
  top: 11px;
  position: absolute;
  background-color: #e8eeff;
  line-height: 25px;
}

.courseQuality_container .btn-link.collapsed::after {
  content: "\002B";
  /* \002B */
}

.courseQuality_container .btn-link::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  background: #fff;
  z-index: 1;
  left: 2rem;
  bottom: -12px;
  transform: rotate(45deg);
}

/* ======================================================= */
.courseQuality_container .card-body {
  background: #e8eeff;
}

/* ================== course_image_box ===================== */
.course_image_box .course_img {
  width: 100%;
  height: 100%;
  /* background-color: #392d7d; */
  /* padding: 10px; */
  /* height: 400px; */
  z-index: 1;
  position: relative;
}

.course_image_box .course_img::before,
.course_image_box .course_img::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 55%;
  background-color: #392d7d;
  z-index: -1;
}

.course_image_box .course_img::before {
  top: -6px;
  left: -6px;
}

.course_image_box .course_img::after {
  bottom: -6px;
  right: -6px;
  background-color: #f1b51c;
}

.course_image_box .course_img img {
  width: 100%;
  height: 100%;
}

/* .course_text_box{
    background-color: red;
} */

/* .course_text_box .course_heading{
    background-color: red;
} */

.course_text_box .course_heading h2 {
  font-size: 28px;
  /* color: #6d6e71; */
  /* color: #231f20; */
  color: #e86e25;
  margin-bottom: 2rem;
  font-weight: 800;
  opacity: 0.9;
  /* padding-top: 10px; */
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.course_text_box .course_heading h2 div {
  width: 25px;
  height: 22px;
  background-color: #392d7d;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 5px;
  font-size: 10px;
  font-weight: 800;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  /* clip-path: -ms-p */
}

/* .course_details .nav-item{
    background-color: red;
} */

.course_details .nav-item {
  width: 100%;
  /* background: red; */
  -ms-flex: 0 0 33.33%;
  flex: 0 0 33.33%;
  max-width: 33.33%;
}

.course_details .nav-link {
  background: transparent;
  border-radius: 0px;
  border: none;
  outline: none;
  color: #ccc;
  font-weight: 600;
  border-bottom: 4px solid #ccc;
  transition: all 1s ease;
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  /* border-radius: 2rem; */
}

.course_details .nav-link.active {
  background: transparent;
  color: #e86e25;
  /* font-size: 20px; */
  /* border-bottom: 2px solid #e86e25; */
  transition: all 1s ease;
}

.course_details .nav-link::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 4px;
  left: 0;
  bottom: -4px;
  background: #e86e25;
  border-radius: 2rem;
  z-index: 9999;
  transition: all 1s ease;
}

.course_details .nav-link.active::before {
  width: 100%;
}

.tab-pane {
  padding: 10px 5px 5px 5px;
}

.tab-pane p {
  color: #392d7d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-align: justify;
}

.tab-pane ul {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tab-pane li {
  box-shadow: 0 2px 20px 0 rgba(110, 130, 208, 0.18) !important;
  /* width: 23%;
    margin: 1rem; */
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  max-width: 49%;
  padding: 10px 6px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #392d7d;
  font-weight: 500;
  align-self: normal;
}

.tab-pane li i {
  color: #e86e25;
  font-size: 12px;
  box-shadow: 0px 0px 10px rgba(109, 110, 113, 0.4);
  margin-right: 4px;
}

.tab-pane h4 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.tab-pane h4 img {
  width: 40px;
  margin: 0px 5px;
}

.tab-pane h4 span {
  color: #e86e25;
  margin-right: 5px;
  font-weight: 800;
}

/* =============== courseActivateSteps =================== */
.courseActivateSteps_section .activateCourse_box {
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.activateCourse_box .activateBox {
  -ms-flex: 0 0 16%;
  flex: 0 0 16%;
  max-width: 16%;
  text-align: center;
  border: 1px solid #e86e25;
  /* margin: 10px 0px; */
  margin: 10px auto;
  align-self: normal;
  border-radius: 8px;
  box-shadow: 0 2px 20px 0 rgba(110, 130, 208, 0.18);
  position: relative;
  transition: all 1s ease;
}

.activateCourse_box .activateBox:hover {
  background-color: #fef9e7;
  transform: scale(1.05);
}

/* .activateCourse_box .activateBox:nth-child(1){
    background-color: #FEF9E7;
} */

/*
.activateCourse_box .activateBox:nth-child(1){
    border: 1px solid #e86e25;
    border-radius: 8px;
    border-top-right-radius: 0px;
}

.activateCourse_box .activateBox:nth-child(1)::before{
    content: '';
    position: absolute;
    width: 35%;
    height: 5px;
    top: -1px;
    right: -1px;
    background-color: #fff;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(2){
    border: 1px solid #e86e25;
    border-bottom: none !important;
    border-left: none !important;
}

.activateCourse_box .activateBox:nth-child(3){
    border-bottom: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(4){
    border-top: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(5){
    border-bottom: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(6){
    border-top: 1px solid #e86e25;
    border-right: 1px solid #e86e25;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-bottom: 1px solid #e86e25;
}

.activateCourse_box .activateBox:nth-child(6)::before{
    content: '';
    position: absolute;
    width: 50%;
    height: 5px;
    bottom: -1px;
    left: -0.5px;
    background-color: #fff;
    border-left: 1px solid #e86e25;
}*/

.activateCourse_box .activateBox .step_img {
  /* background: red; */
  display: inline-block;
  position: relative;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -ms-grid;
  display: grid;
  place-items: center;
  left: 50%;
  transform: translateX(-50%);
}

.activateCourse_box .activateBox .step_img img {
  /* width: 100%;
    height: 100%; */
  width: 60px;
}

.activateCourse_box .activateBox .step_text {
  padding: 10px 5px;
}

.activateCourse_box .activateBox .step_text h5 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 15px;
}

.activateCourse_box .activateBox:nth-child(1) .step_text h5 {
  color: #e31f26;
}

.activateCourse_box .activateBox:nth-child(2) .step_text h5 {
  color: #00833e;
}

.activateCourse_box .activateBox:nth-child(3) .step_text h5 {
  color: #e86e25;
}

.activateCourse_box .activateBox:nth-child(4) .step_text h5 {
  color: #5a2c0b;
}

.activateCourse_box .activateBox:nth-child(5) .step_text h5 {
  color: #6d6e71;
}

.activateCourse_box .activateBox:nth-child(6) .step_text h5 {
  color: #392d7d;
}

.activateCourse_box .activateBox .step_text p {
  font-size: 15px;
  font-weight: 600;
  /* text-align: left; */
}

.activateCourse_box .activateBox .step_text p a {
  color: #e86e25;
  text-decoration: underline !important;
}

/* ================= certificate_section ======================= */

.certification_box {
  padding: 1.5rem 1.5rem;
  background-color: #f4ecf7;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.certification_box .certificate_img {
  width: 100%;
  height: auto;
}

.certification_box .certificate_img img {
  width: 100%;
  height: 100%;
}

.certificate_text {
  /* background-color: red; */
  background-color: #fff;
  /* display: flex;
    align-items: center;
    justify-content: center; */
  height: 100%;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  position: relative;
  overflow: hidden;
}

.certificate_text::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  right: -30px;
  top: -35px;
  border-radius: 50%;
  background-color: rgb(232, 110, 37, 0.2);
}

.certificate_text::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  right: 0px;
  top: -50px;
  border-radius: 50%;
  background-color: rgb(241, 181, 28, 0.2);
}

.certificate_text .benefit_img {
  display: flex;
  align-items: center;
  /* background: green; */
  justify-content: center;
}

.certificate_text .benefit_img img {
  width: 200px;
}

.certificate_text .benefit_img span {
  margin: auto 1rem;
  font-size: 20px;
  font-weight: 800;
  color: #ccc;
}

.certificate_text .benefit_text {
  padding: 20px 15px 0px 15px;
}

.certificate_text .benefit_text p {
  color: #5a2c0b;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 10px 0px;
  border-bottom: 1px dashed #ccc;
  font-style: italic;
}

.certificate_text .benefit_text p:last-child {
  border: none;
}

/* ======================= contact_section ================= */
/* .contact_section .contactUs_inner{
} */

.contact_section .contactUs_inner {
  text-align: center;
  /* display: flex;
    align-items: center;
    justify-content: center; */
}

.contact_section .contactUs_inner .contact_box {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #6d6e71;
  margin: 10px auto;
  align-self: normal;
  justify-content: center;
}

.contactUs_inner .contact_box i {
  color: #6d6e71;
  font-size: 20px;
  margin-right: 8px;
  font-weight: 800;
  opacity: 0.5;
}

.contactUs_inner .contact_box p {
  font-size: 18px;
  color: #392d7d;
  font-weight: 800;
}

.contactUs_inner .contact_box p span {
  color: #e86e25;
  margin-left: 5px;
}

.contactUs_inner .contact_box a {
  font-size: 18px;
  font-weight: 800;
}

.contactUs_inner .contact_box a span {
  color: #e86e25;
  margin-left: 5px;
}

.contact_section .contactUs_inner .form_box {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 1px solid #6d6e71;
  margin: 10px auto;
  align-self: normal;
}

.contactUs_inner .form_box i {
  color: #6d6e71;
  font-size: 20px;
  margin-right: 8px;
  font-weight: 800;
  opacity: 0.5;
}

.contactUs_inner .form_box p {
  font-size: 18px;
  color: #392d7d;
  font-weight: 800;
}

.contactUs_inner .form_box p span {
  color: #e86e25;
  margin-left: 5px;
}

.contactUs_inner .form_box a {
  font-size: 18px;
  font-weight: 800;
}

.contactUs_inner .form_box a span {
  color: #e86e25;
  margin-left: 5px;
}

/* ======================= scrollTop ================ */

.scrolltop {
  position: fixed;
  width: 35px;
  height: 35px;
  background-color: #f1b51c;
  color: #fff;
  right: 1rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
  border: 2px solid #392d7d;
  opacity: 0;
  visibility: hidden;
  animation: scrollTop 5s ease-in-out infinite;
}

.scrolltop.show {
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.scrolltop:hover {
  background-color: #f1b51c;
  border: 2px solid #392d7d;
  animation-play-state: paused;
}

@keyframes scrollTop {
  0% {
    transform: translateY(0px);
  }

  25% {
    transform: translateY(-15px);
  }

  50% {
    transform: translateY(0px);
  }

  75% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ==============joinUsModal=============== */
#joinUsModal form input,
#joinUsModal form select {
  margin-bottom: 15px;
  outline: none;
  box-shadow: none;
}

#joinUsModal form input:focus,
#joinUsModal form select:focus {
  border: 1px solid #e86e25;
}

#joinUsModal .modal-content {
  border: 4px solid #f1b51c;
  border-radius: 15px;
  box-shadow: 0px 0px 20px rgba(109, 110, 113, 0.4);
  /* border-top: 4px solid #f1b51c;
    border-right: 4px solid #e86e25;
    border-bottom: 4px solid #f1b51c;
    border-left: 4px solid #e86e25; */
}

#joinUsModal .modal-content .modal-header button {
  position: absolute;
  width: 40px;
  height: 40px;
  /* left: 50%; */
  /* top: -20px; */

  right: 1rem;
  top: 1rem;

  /* top: 0;
    right: 0; */

  /* border: 5px solid #fff; */
  border: 4px solid #f1b51c;

  /* border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem; */

  /* border-bottom-left-radius: 50%; */

  border-radius: 50%;
  background-color: #e86e25;
  color: #fff;
  font-weight: 800;
  transition: all 0.5s ease;
}

#joinUsModal .modal-content .modal-header button:hover {
  opacity: 0.8;
}

#joinUsModal .modal-content .modal-header {
  flex-direction: column;
  padding-top: 2rem;
  text-align: center;
}

#joinUsModal .modal-content .modal-header h1 {
  color: #392d7d;
  font-size: 30px;
  font-weight: 700;
}

#joinUsModal .modal-content form .btn {
  background-color: #392d7d;
  color: #fff;
  width: 50%;
  /* border-radius: 2rem; */
  margin: 1rem auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

#joinUsModal .brochure_link {
  text-align: center;
  color: #e86e25;
  text-decoration: none;
  font-size: 16px;
}

/* ==================enquiry_form================ */
.enquiry_form.nav-link {
  margin: 0px !important;
  z-index: 9999;
}

.enquiry_form {
  background-color: #392d7d;
  color: #fff;
  padding: 5px 25px 6px 25px;
  position: fixed;
  right: -50px !important;
  right: 0;
  top: 50%;
  font-size: 14px;
  transform: rotate(-90deg);
  border-radius: 5px;
  /* border: 4px solid #f1b51c; */
  opacity: 0;
  visibility: hidden;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}

.enquiry_form:hover {
  color: #f1b51c;
  opacity: 0.8;
}

.enquiry_form.show {
  opacity: 1;
  visibility: visible;
}

.enquiry_form::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 2px;
  background-color: #f1b51c;
  border-radius: 2rem;
}

.enquiry_form::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  right: 2px;
  background-color: #f1b51c;
  border-radius: 2rem;
}

/* ====================footer====================== */

footer {
  width: 100%;
  /* height: 10px; */
  /* background-color: #392d7d; */
  margin-top: 0rem;
}

footer .copyrit {
  color: #6d6e71;
  padding: 1rem 3rem;
}

footer .footer_img {
  width: 100%;
  /* height: 10px; */
}

footer .footer_img img {
  width: 100%;
  /* height: 100%; */
  height: 6px;
}

/* ======================= media query ================== */

@media only screen and (max-width: 986px) {
  .margin-top-15rem-780pxmedia {
    margin-top: 20rem !important;
  }

  .display-non-logo {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  section.banner_section {
    height: auto;
    padding-bottom: 3rem;
  }

  .card.formCard {
    margin-top: 5rem;
  }
}

@media only screen and (max-width: 980px) {
  header .navbar-nav {
    padding: 0px 10px;
    padding-bottom: 20px;
  }

  header .brochure_btn {
    margin-left: 0px !important;
  }

  header .pay_btn {
    margin-left: 0px !important;
  }

  .card.formCard {
    margin: 1rem 0rem;
  }

  .courseQuality_container .card {
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }

  .course_details .reverse {
    flex-direction: column-reverse;
  }

  .course_image_box {
    margin-top: 1.5rem;
  }

  .online_row {
    margin-top: 1rem;
  }

  .investmentDetails {
    margin-top: 1.5rem;
  }

  .activateCourse_box .activateBox {
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    max-width: 49%;
    margin-bottom: 30px;
  }

  .certificate_text {
    margin: 1rem 0rem;
  }

  .contact_section .contactUs_inner {
    flex-direction: column;
  }

  .contact_section .contactUs_inner .contact_box {
    width: 100%;
  }
}

@media only screen and (max-width: 800px) {
  .courseModule_container .card {
    flex: none !important;
    max-width: 100% !important;
  }
}

@media only screen and (max-width: 680px) {
  header .container-fluid {
    padding: 0px !important;
  }

  header .navbar {
    padding: 0px !important;
  }

  section.section {
    padding: 30px 10px;
  }

  section.banner_section {
    height: auto;
  }

  /* .center_item{
        display: block;
    } */
  .online_row {
    margin-top: 1rem;
  }

  .investmentDetails {
    margin-top: 1.5rem;
  }

  .investmentDetails .investment {
    width: 110px;
    height: 110px;
  }

  .courseQuality_container .card {
    max-width: 100%;
    width: 100% !important;
  }

  .courseQuality_container .card img {
    height: 100% !important;
  }

  .courseQuality_container {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .courseModule_container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .courseModule_container .card {
    max-width: 100% !important;
  }

  .activateCourse_box .activateBox {
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    max-width: 49%;
    margin-bottom: 30px;
  }

  .certification_box {
    padding: 40px 5px;
  }

  .certificate_text {
    padding: 30px 10px;
    margin: 1rem 0rem;
  }

  .certificate_text .benefit_img {
    display: block;
    text-align: center;
  }

  .certificate_text .benefit_img span {
    display: none;
  }

  .certificate_text .benefit_text {
    padding: 10px;
  }

  .contact_section .contactUs_inner {
    flex-direction: column;
  }

  .contact_section .contactUs_inner .contact_box {
    width: 100%;
  }

  .applyBtns {
    width: 100%;
  }

  /* .course_details .nav-link{
        padding: 0.5rem 0rem;
        font-size: 10px;
    } */
}

@media only screen and (max-width: 480px) {
  .investmentDetails .investment {
    width: 140px;
    height: 140px;
  }

  .course_details .nav-link {
    padding: 0.5rem 0rem;
    font-size: 10px;
  }

  .activateCourse_box .activateBox {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .section_heading h1 .abs_header {
    left: 20%;
  }
}

h6.badges_heading {
  text-align: center;
  margin: 1rem;
  font-size: 20px;
  color: #392d7d;
  font-weight: 800;
}

.courseModule_container {
  /* background-color: red; */
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.courseModule_container .card {
  box-shadow: 0 2px 20px 0 rgb(110 130 208 / 18%) !important;
  -ms-flex: 0 0 21%;
  flex: 0 0 21%;
  max-width: 21%;
  margin-bottom: 30px;
  outline: 1px solid #ccc;
  overflow: hidden;
  justify-content: space-between;
}

.courseModule_container .card-text span {
  color: #e86e25;
  font-size: 14px;
  font-weight: 600;
}

.imageonbutton {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

/* Modal Form */
/*download brochure form*/
.modal-logo {
  max-width: 100px;
}

.get_in_touch_innerForm_input {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.get_in_touch_innerForm_input .form-control {
  border-radius: 0px;
  border: none;
  background-color: #f2f2f3;
  font-size: 1.1rem;
  color: #777;
  padding: 0.5rem 1.2rem;
  border-radius: 0.3rem;
}

.get_in_touch_innerForm_input span {
  display: flex;
  gap: 1.2rem;
}

.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.1rem;
  font-weight: 500;
}
