:root{
    --home-sprite-new: url(courseimages/sprite_v2.svgz);
    --color-primary: #2f57ef;
    --color-secondary: #b966e7;
    --color-banprime: #7b4397;
    --color-bansec: #dc2430;
}
body {
    font-size: 16px;
    font-family: open sans,sans-serif!important;
    color: #2e3d49;
}
/***********NavStyle.css*********/
/*******************************Nav Bar Starts******************************/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
a:hover{
    text-decoration:none!important;
}
#navajc {
    margin-left: 250px;
    margin-top: -100px;
}
#nav_img {
    height: 50px;
    width: 120px;
    margin-top: 5px;
}
.menu-main {
    margin-top: -50px;
}
#mabout{
    font-size:24px;   
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
/* header */
.header{
	display: block;
	width: 100%;
	z-index: 99;
	padding:15px 15px 5px 15px;
    position: sticky;
      top: 0; 
      background-color: white;
}
.header .item-left{
	flex:0 0 17%;
}
.header .logo a{
	font-size: 30px;
	color:#000000;
	font-weight: 700;
	text-decoration: none;
}
.header .item-center{
	flex:0 0 66%;
}
.header .item-right{
	flex:0 0 17%;
	display: flex;
	justify-content: flex-end;
}
.header .item-right a{ 
     text-decoration: none;
     font-size: 16px;
     color:#555555;
     display: inline-block;
     margin-left: 10px;
     transition: color 0.3s ease;
}
.header .menu > ul > li{
	display: inline-block;
	line-height: 50px;
	margin-left: 25px;
}
.header .menu > ul > li > a{
	font-size: 15px;
	font-weight: 500;
	color:#000000;
	position: relative;
	text-transform: capitalize;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu{
	position: absolute;
	z-index: 500;
	background-color:#ffffff;
	box-shadow: -2px 2px 70px -25px rgba(0,0,0,0.3); 
	padding: 20px 30px;
	transition: all 0.5s ease;
	margin-top:25px;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > ul > li.menu-item-has-children:hover .sub-menu{
	margin-top: 0;
	visibility: visible;
	opacity: 1;
}
}
.header .menu > ul > li .sub-menu > ul > li{
	line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a{
	display: inline-block;
	padding: 10px 0;
	font-size: 15px;
	color: #555555;
	transition: color 0.3s ease;
	text-decoration: none;
	text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu{
	min-width: 280px;
	max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li{
   line-height: 1;
   display: block; 
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
	padding:10px 0;
	display: inline-block;
	font-size: 15px;
	color:#555555;
	transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu{ 
    left: 50%;
    transform: translateX(-50%);	
}

.header .menu > ul > li .sub-menu.mega-menu-column-4{
  max-width: 1100px;
  width: 100%; 	
  display: flex;
  flex-wrap: wrap;
  padding:20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
  flex:0 0 25%;
  padding:0 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title{
	font-size: 16px;
	color:#ea4636;
	font-weight: 500;
	line-height: 1;
	padding:10px 0;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
	text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
	max-width: 100%;
	width: 100%;
	vertical-align: middle;
	margin-top: 10px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a{
	color:#ea4636;
}
/* banner section */
.banner-section{
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger{
	display: none;
}

/*responsive*/
@media(max-width: 991px){

	.header .item-center{
		order:3;
		flex:0 0 100%;
	}
	.header .item-left,
	.header .item-right{
		flex:0 0 auto;
	}
	.banpic{
	    width:200px;
	}
	.v-center{
		justify-content: space-between;
	}
	.header .mobile-menu-trigger{
		display: flex;
		height: 30px;
		width: 30px;
		margin-left: 15px;
		cursor: pointer;
		align-items: center;
		justify-content: center;
	}
	.header .mobile-menu-trigger span{
		display: block;
		height: 2px;
		background-color: #333333;
		width: 24px;
		position: relative;
	}
	.header .mobile-menu-trigger span:before,
	.header .mobile-menu-trigger span:after{
		content: '';
		position: absolute;
		left:0;
		width: 100%;
		height: 100%;
		background-color: #333333;
	}
	.header .mobile-menu-trigger span:before{
		top:-6px;
	}
	.header .mobile-menu-trigger span:after{
		top:6px;
	}
	.header .item-right{
		align-items: center;
	}

	.header .menu{
		position: fixed;
		width: 320px;
		background-color:#ffffff;
		left:0;
		top:0;
		height: 100%;
		overflow: hidden;
		transform: translate(-100%);
		transition: all 0.5s ease;
		z-index: 1099;
	}
	.header .menu.active{
	   transform: translate(0%);	
	}
	.header .menu > ul > li{
		line-height: 1;
		margin:0;
		display: block;
	}
	.header .menu > ul > li > a{
		line-height: 50px;
		height: 50px;
		padding:0 50px 0 15px;
		display: block;
		border-bottom: 1px solid rgba(0,0,0,0.1);
	}
	.header .menu > ul > li > a i{
		position: absolute;
		height: 50px;
		width: 50px;
		top:0;
		right: 0;
		text-align: center;
		line-height: 50px;
		transform: rotate(-90deg);
	}
	.header .menu .mobile-menu-head{
		display: flex;
		height: 50px;
		border-bottom: 1px solid rgba(0,0,0,0.1);
		justify-content: space-between;
		align-items: center;
		position: relative;
		z-index: 501;
		position: sticky;
		background-color: #ffffff;
		top:0;
	}
	.header .menu .mobile-menu-head .go-back{
		height: 50px;
		width: 50px;
		border-right: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;
		font-size: 16px;
		display: none;
	}
	.header .menu .mobile-menu-head.active .go-back{
		display: block;
	}
	.header .menu .mobile-menu-head .current-menu-title{
		font-size: 15px;
		font-weight: 500;
		color:#000000;
	}
	.header .menu .mobile-menu-head .mobile-menu-close{
	    height: 50px;
		width: 50px;
		border-left: 1px solid rgba(0,0,0,0.1);
		cursor: pointer;
		line-height: 50px;
		text-align: center;
		color:#000000;	
		font-size: 25px;
	}
	.header .menu .menu-main{
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.header .menu > ul > li .sub-menu.mega-menu,
	.header .menu > ul > li .sub-menu{
		visibility: visible;
		opacity: 1;
		position: absolute;
		box-shadow: none;
		margin:0;
		padding:15px;
		top:0;
		left:0;
		width: 100%;
		height: 100%;
		padding-top: 65px;
		max-width: none;
		min-width: auto;
		display: none;
		transform: translateX(0%);
		overflow-y: auto;
	}
.header .menu > ul > li .sub-menu.active{
	display: block;
}
@keyframes slideLeft{
	0%{
		opacity:0;
		transform: translateX(100%);
	}
	100%{
	    opacity:1;
		transform: translateX(0%);	
	}
}
@keyframes slideRight{
	0%{
		opacity:1;
		transform: translateX(0%);
	}
	100%{
	    opacity:0;
		transform: translateX(100%);	
	}
}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img{
		margin-top:0;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center .title{
		margin-bottom: 20px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item.text-center:last-child .title{
		margin-bottom:0px;
	}
	.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item{
		flex: 0 0 100%;
        padding: 0px;
	}
	.header .menu > ul > li .sub-menu > ul > li > a,
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a{
		display: block;
	}
	.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
		margin-bottom: 15px;
	}
	.menu-overlay{
		position: fixed;
		background-color: rgba(0,0,0,0.5);
		left:0;
		top:0;
		width: 100%;
		height: 100%;
		z-index: 1098;
		visibility: hidden;
		opacity:0;
		transition: all 0.5s ease;
	}
	.menu-overlay.active{
	  visibility: visible;
	  opacity:1;	
	}
	#nav_img{
		top: 0px;
		position:absolute;
	}
    #navajc{
        margin-left: 0px;
    }
    #navajc{
        margin-top: 50px;
    }
    .menu-main{
        margin-top: -50px;
    }
}
@media(max-width:480px){
    #nav_img {
        top: 0px;
        position: absolute;
    }
    #navajc {
        margin-left: 0px;
    }
    #navajc {
        margin-top: 50px;
    }
    .menu-main{
        margin-top: -50px;
    }
}
/********************************Nav Bar Ends*********************************/
/************************Company Logo****************************************/
#ourclients {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom:5px;
  height:220px;
}
#ourclients .clients-wrap {
  display: block;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}
#ourclients .clients-wrap ul {
  display: block;
  list-style: none;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
#ourclients .clients-wrap ul li {
  display: block;
  float: left;
  position: relative;
  width: 220px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}
#ourclients .clients-wrap ul li img {
  vertical-align: middle;
  max-width: 100%;
  width:150px;
  max-height: 100%;
  -webkit-transition: 0 linear left;
  -moz-transition: 0 linear left;
  transition: 0 linear left;
}
#ourclients h4{
padding:20px 0 0 0;
}
/************************Company Logo Ends***********************************/
/************************Support Starts**************************************/
.Support::before
        {
 content:"";
        }
        #Suphead
        {
          color:darkorange;
          font-size:30px;
        }
        #sui
        {
          font-size:40px;
          font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
          font-weight: 700; 
        }
        .SencondSupport
        {
          font-size: 20px;
          font-weight: 500;
          line-height: 25px;
          font-family: Mulish,Mulish,Helvetica,Arial,sans-serif;; 
        }
        .underw
        {
          font-size: 20px;
          font-weight: 300;
        }
        #tsum-tabs h3 {
          padding: 10px 0 0 0;
          font-weight: 250;
          text-align: center;
        }

#tsum-tabs p {
  margin: 0 0 20px;
  line-height: 1.5;
  font-size: 1.2em;
}

#tsum-tabs main {
  min-width: 300px;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
}

#tsum-tabs section {
  display: none;
  padding: 20px 0 0;
  border-top: 1px solid #ddd;
}

#tsum-tabs input {
  display: none;
}

#tsum-tabs label 
{
    width: 220px;
  display: inline-block;
  margin: 0 0 -1px;
  padding: 15px 25px;
  font-weight: 600;
  text-align: center;
  color: #bbb;
  border: 1px solid transparent;
}

#tsum-tabs label:before {
  font-family: fontawesome;
  font-weight: normal;
  margin-right: 10px;
}

#tsum-tabs label[for*='1']:before { 
    content: '\f1cb'; 
    height:50px;
}
#tsum-tabs label[for*='2']:before { content: '\f007'; }
#tsum-tabs label[for*='3']:before { content: '\f0ea'; }
#tsum-tabs label[for*='4']:before { content: '\f0c0'; }

#tsum-tabs label:hover {
  color: black;
  cursor: pointer;
}

#tsum-tabs input:checked + label {
  color: #555;
  border: 1px solid #ddd;
  border-top: 2px solid orange;
  border-bottom: 1px solid #fff;
}

#tsum-tabs #tab1:checked ~ #content1,
#tsum-tabs #tab2:checked ~ #content2,
#tsum-tabs #tab3:checked ~ #content3,
#tsum-tabs #tab4:checked ~ #content4 {
  display: block;
}
.pad
{
  padding-top:45px;
}
.Imma 
{
    margin-top: -30px;
    margin-left:60px;
  height:300px;
  width:300px;
}
@media screen and (max-width: 650px) {
  #tsum-tabs label
   {
    font-size: 0;
    width: 80px;
  }
  .pad
  {
    padding-top:45px;
  }
  #tsum-tabs label:before {
    margin: 0;
    font-size: 18px;
  }
  .Imma
  {
    height: 350px;
    width:350px;
    margin-left: -30px;
    margin-top: 5px;
  }
  
}

@media screen and (max-width: 900px) {
  #tsum-tabs label
   {
    font-size: 0;
    width: 80px;
  }
  .pad
  {
    padding-top:45px;
  }
  #tsum-tabs label:before {
    margin: 0;
    font-size: 18px;
  }
  .Imma
  {
    height: 350px;
    width:350px;
    margin-left: -20px;
    margin-top: 5px;
  }
  
}
@media screen and (max-width: 768px) 
{
    #tsum-tabs label {
      font-size: 0;
      width: 80px;
    }
    .pad{
        padding-top:0px;
      }
    .Imma
  {
    height: 350px;
    width:350px;
    margin-left: -30px;
    margin-top: 5px;
  }
   
  }

@media screen and (max-width: 400px) {
  #tsum-tabs label {
    padding: 15px;
  }
  .Imma
  {
    height: 350px;
    width:275px;
    margin-left: -1px;
    margin-top: 5px;
  }
}
/************************Support Ends****************************************/
/**************************Pop Up*************************************/

.login-popuprk{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	background-color:rgba(0,0,0,0.6);
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;
}
.login-popuprk.show{
	visibility:visible;
	opacity: 1;
}
.login-popuprk .box{
	background-color:#ffffff;
	width: 750px;
	position: absolute;
	left: 50%;
	top:50%;
	transform:translate(-50%,-50%);
	display: flex;
	flex-wrap: wrap;
	opacity: 0;
	margin-left: 50px;
	transition: all 1s ease;

}
.login-popuprk.show .box{
	opacity: 1;
	margin-left: 0;
}
.login-popuprk .box .img-area{
	flex:0 0 50%;
	max-width: 50%;
	position: relative;
	overflow: hidden;
	padding:30px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.login-popuprk .box .img-area h1{
	font-size: 30px;
}
.login-popuprk .box .img-area .img{
	position: absolute;
	left:0;
	top:0;
	width: 100%;
	height: 100%;
	background-image: url('https://hejextechnology.com/images/sample.jpg');
	background-size: cover;
	background-position: center;
	animation: zoomInOut 7s linear infinite;
	z-index: -1;

}
@keyframes zoomInOut{
	0%,100%{
		transform: scale(1);
	}
	50%{
		transform: scale(1.1);
	}
}
.login-popuprk .box .form{
	flex:0 0 50%;
	max-width: 50%;
	padding:40px 30px;
}

.login-popuprk .box .form h1{
	color:#000000;
	font-size: 30px;
	margin:0 0 30px;
}
.login-popuprk .box .form .form-control{
	height: 45px;
	margin-bottom: 30px;
	width: 100%;
	border:none;
	border-bottom:1px solid #cccccc;
	font-size: 15px;
	color:#000000;
}
.login-popuprk .box .form .form-control:focus{
	outline: none;
}
.login-popuprk .box .form label{
	font-size: 15px;
	color:#555555;
}
.login-popuprk .box .form .btn{
	width: 100%;
	background-color: #E91E63;
	margin-top:40px;
	height: 45px;
	border:none;
	border-radius: 25px;
	font-size: 15px;
	text-transform: uppercase;
	color:#ffffff;
	cursor: pointer;
}
.login-popuprk .box .form .btn:focus{
	outline: none;
}

.login-popuprk .box .form .closepop{
	position: absolute;
	right: 10px;
	top:0px;
	font-size: 30px;
	cursor: pointer;
}

/*responsive*/
@media(max-width: 767px){
	.login-popuprk .box{
		width: calc(100% - 30px);
	}
	.banner-img{
        margin-left:20px;
    }
	.login-popuprk .box .img-area{
		display: none;
	}
	.login-popuprk .box .form{
		flex: 0 0 100%;
        max-width: 100%;
	}
	.reviw1, .review2, .review3 {
	    width: calc(100% - 30px);
	}
	.centered{
	    width: calc(100% - 30px);
	    height: 400px;
        margin-left:10px;
        box-shadow: 4px 4px 4px 1px #08142B;
	}

}
.textwidget {
    text-align: justify;
}
.left-border {
    border-left: #e87407 solid;
    padding-left: 10px;
}
.socialmedia {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.smi a {
  text-decoration: none;
  width: 4.8rem;
  height: 4.8rem;
  background-color: hsl(203, 92%, 97%);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border: 3px solid hsl(203, 92%, 97%);
  overflow: hidden;
}

.smi a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-color);
  z-index: 0;
  scale: 1 0;
  transform-origin: bottom;
  transition: scale 0.5s ease;
}

.smi:hover a::before {
  scale: 1 1;
}

.icon {
  font-size: 2rem;
  color: hsl(203, 92%, 8%);
  transition: 0.5s ease;
  z-index: 2;
}

.smi a:hover .icon {
  color: #fff;
  transform: rotateY(360deg);
}

.smi:nth-child(2) {
  --bg-color: linear-gradient(to bottom right, #f9ce34, #ee2a7b, #6228d7);
}
.smi:nth-child(3) {
  --bg-color: #0077b5;
}
.smi:nth-child(4) {
  --bg-color: #ff0000;
}
.smi:nth-child(5) {
  --bg-color: #000;
}

/***********NavStyle CSS Ends********/
.coursebanner {
    background: url(https://hejextechnology.com/courseimages/white-wave-bg.svg) center bottom -0.5px / 100% 14% no-repeat scroll padding-box border-box, linear-gradient(60deg, rgb(82, 67, 170), rgb(237, 80, 180)) 0% 0% / auto repeat scroll padding-box border-box rgb(82, 67, 170);
    background-blend-mode: normal, normal;
    color: rgb(255, 255, 255);
}
.row1{
    margin-right: -15px;
    margin-left: -15px;
    display: flex;
    flex-wrap: wrap;
}
.belban {
    overflow-x: hidden;
    line-height: 1.7em;
}
.coursebanner h1{
    color: #fff;
    font-size: 28px;
}
.course-banner-rating-wrap{
    margin-bottom: 20px;
}
.course-banner-reviews{
    position: relative;
    padding: 0 5px;
    width: 106px;
    display: inline-block;
    height: 15px;
}
.course-banner-rating-wrap:before {
    position: absolute;
    background-image: url(courseimages/master-course-sprite.svg);
    width: 106px;
    height: 15px;
    background-position: -4px -271px;
    content: "";
}
.course-banner-rcount{
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    position: relative;
    top: -2px;
    text-decoration: underline;
}
.course-banner-description{
    line-height: 26px;
    margin-bottom: 30px;
    color: rgba(255,255,255,.8);
    font-weight:bold;
    text-align:justify;
}
.course-banner-enrollnow{
    margin-top: 25px;
}
.course-banner-enrollnow-btn {
    display: inline-block;
    background: linear-gradient(270deg, #00c6ff 0, #0072ff 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    padding: 11px 20px;
    border: 1px hidden #00c6ff;
    box-shadow: 0 2px 16px rgb(0 0 0 / 12%);
    min-width: 160px;
    text-align: center;
    font-family: open sans, sans-serif !important;
}
.course-banner-left-section{
    margin-top: 25px;
    line-height: 30px;
}
.mb-4 {
    margin-bottom: 1.5rem!important;
    margin-top: 3rem!important;
}
.course-banner-image .ip-vk-mk-new-dg{
    position: relative;
    display: inline-block;
    width: 100%;
}
.ip-vk-mk-new-dg img {
    width: 100%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.course-banner-image .single-video-icon {
    left: calc(50% - 37px);
    width: 100px;
    height: 80px;
    top: calc(50% - 37px);
    position: absolute;
}
.single-video-icon:before {
    width: 50px;
    height: 50px;
    background-position: -102px -88px;
    border-radius: 50%;
    z-index: 1;
    bottom: 15px;
}
.single-video-icon:after {
    content: "";
    width: 80px;
    height: 80px;
    bottom: 0;
    background-position: -86px -259px;
    -webkit-animation: intro 2s infinite;
    animation: intro 2s infinite;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
.single-video-icon:after, .single-video-icon:before {
    content: "";
    display: inline-block;
    background-image: url(courseimages/course-sprite.svg);
    border-radius: 100%;
    background-color: #091ab791;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
}
.course-modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 0.3rem;
    outline: 0;
}
.modal-dialog-centered {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - 1rem);
}
.cb-feature-wraper{
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 24px rgb(0 0 0 / 8%);
    border-radius: 2px;
    padding: 20px 20px 0;
    top: -10px;
    margin-bottom: 5px;
    border-bottom: 2px solid #333366;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.cb-key-features-items {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    text-align: center;
    padding: 0 15px;
    border-right: 1px solid #f2f2f2;
    margin-bottom: 30px;
}
.cb-key-feature-head {
    font-size: 15px;
    line-height: 26px;
    color: #000;
    margin-bottom: 2px;
}
.cb-key-feature-text {
    font-size: 16px;
    line-height: 26px;
    color: #ff630b;
    margin-bottom: 0;
}
.hr-line {
    width: 72px;
    border-top: 5px solid #333366;
}
.cp-skill-required{
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 3px 0 #6659b8;
    border-radius: 4px;
    padding: 40px 40px 20px;
    margin-bottom: 40px;
}
.what-role-tools-images .what-tools-images-max-height{
    height: 45px;
    overflow: hidden;
}
.what-role-tools-images img {
    margin-bottom: 22px;
    max-width: 48%;
    display: inline-block;
}
.about-course-skills{
    background-color: #f5f8fb;
    padding:30px 0 30px;
    margin-bottom:60px;
}
.cp-allied-courses{
    background: #fff;
    box-shadow: 0 2px 16px rgb(0 0 0/8%);
    border-radius: 4px;
    padding:20px;
    margin-bottom:20px;
}
.cp-ac-parts:hover{
    box-shadow: 0 2px 20px 0 rgba(17,121,239,.2);
}
.cp-ac-parts{
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 5px 0 rgba(17,121,239,.15);
    border-radius: 6px;
    border: 1px solid #e6ecef;
    background: #fff;
    transition: box-shadow .5s ease;
}
.cp-ac-parts a {
    display: inline-block;
    width: 100%;
    height: 100%;
    padding-bottom: 20px;
    position: relative;
    color:black;
}
.cp-ac-parts a:hover{
    text-decoration: none;
    color:black;
}
.cp-ac-parts .slider-img {

    text-align: center;
    background: rgba(0,66,141,.3);
    border-radius: 6px;
    overflow: hidden;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.cp-ac-parts img{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.cp-ac-parts .slider-info {
    padding: 24px 10px 0 10px;
    margin: 0px 10px 0 10px;
    background: #fff;
    position: relative;
    border-radius: 0px;
}
.cp-ac-parts .info-list {
    margin-top: 16px;
}
.cp-ac-parts .slider-info h2 {
    font-size: 18px;
    line-height: 1.44;
}
.cp-ac-parts .info-list span{
    position: relative;
    padding-left: 26px;
    font-size: 14px;
    font-weight: 500;
    color: #51565e;
    margin-bottom: 14px;
    line-height: 16px;
}
.cp-ac-parts .info-list span:nth-child(2) {
    margin-left: 8px;
    padding-left: 30px;
}
.cp-ac-parts .info-list span:nth-child(2)::before {
    left: 10px;
}
.cp-ac-parts .info-list span::before {
    content: "";
    width: 14px;
    height: 14px;
    display: inline-block;
    position: absolute;
    top: 1px;
    left: 0;
    background: var(--home-sprite-new) no-repeat;
    background-position: -117px -21px;
}
.cp-ac-parts .info-list span:last-child::before {
    background-position: -84px -21px;
}
.cp-ac-parts .info-list span:nth-child(2)::after {
    display: inline-block;
    content: "";
    width: 1px;
    height: 16px;
    position: absolute;
    left: 0;
    background: #d2d6de;
}
/* CP Project Section */ 
#cp-project-section{
    margin-bottom: -70px;
    position: relative;
    top: -100px;
}
#cp-project-section-wrapper{
    color: #fff;
    background: linear-gradient(89.98deg,rgba(129,69,237,.88) .01%,rgba(46,113,191,.88) 99.99%);
    border-radius: 4px;
}
.p-4 {
    padding: 1.5rem!important;
}
#cp-project-section-wrapper h3{
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    font-weight: 400;
}
#cp-project-section-wrapper>p{
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
}
.mb-2 {
    margin-bottom: 0.5rem!important;
}
.mb-0 {
    margin-bottom: 0!important;
}
.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}
.d-none {
    display: none!important;
}
.master-lead-capture-form.form-default input{
    height:48px;
    font-size: 14px;
    line-height: 150%;
    color: #4a4a4a;
}
.m-0 {
    margin: 0!important;
}

.pl-0 {
    padding-left: 0!important;
}
.text-center {
    text-align: center!important;
}
.master-lead-capture-form.form-default input[type=submit] {
    background: linear-gradient(270deg,#ff630b 0,#f90 100%);
    border-radius: 4px;
    color: #fff;
    height: 48px;
    font-size: 15px;
    line-height: 20px;
    border: none;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
#master-project-work-tab {
    border: none;
    margin-bottom: 30px;
}
#cp-project-section h2{
    font-size:20px;
}
.master-project-work-carousel-items{
    display:block;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border-radius: 0 0 12px 12px;
    padding: 35px 30px 15px;
    border-top: 4px solid #729df5;
    min-height: 300px;
    width: 350px;
}
.master-project-work-carousel-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}
.master-project-work-carousel-description {
    font-size: 14px;
    line-height: 26px;
    color: #000;
    margin-bottom: 0;
}
.ps-content{
    background-color:#fff;
    box-shadow: 0 2px 16px rgb(0 0 0/8%);
    border-radius: 4px;
    margin-top:20px;
    padding: 20px;
}
.ps-content h3{
    font-size:16px;
}
.master-project-work-wrapper {
    margin: 25px 0;
}
li{
    list-style: none;
}
.master-project-work-wrapper li {
    display: inline-block;
    padding-right: 60px;
    position: relative;
    margin-bottom: 25px;
}
.master-project-work-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.master-project-work-item i {
    width: 56px;
    height: 56px;
    min-width: 56px;
    display: inline-block;
    background-image: url(courseimages/master-course-sprite.svg);
    margin-right: 12px;
}
.master-course-kp h2{
    font-size:20px;
    margin-bottom:20px;
}
.master-project-work-item p {
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    color: #000;
    margin: 0;
}
.master-project-work-wrapper li:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 40px;
    background-color: #cecece;
    right: 30px;
    top: calc(50% - 20px);
}
.master-project-work-icon-practice {
    background-position: -8px -343px;
}
.master-project-work-icon-project-work {
    background-position: -68px -343px;
}
.master-project-work-icon-real-world-experience {
    background-position: -128px -343px;
}
.ps-content h2 {
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
}
.ps-content .ps-content-description{
    font-size: 14px;
    line-height: 26px;
    color: #000;
    margin-bottom: 0;
    text-align:justify;
}
.ps-content-points{
    list-style-type: none;
    font-size: 14px;
    line-height: 26px;
    color: #000;
    margin-bottom: 0;
    text-align:justify;
}
.ps-content-points::before{
    content: "✔ ";
    color: #1181da;
}
/* QA About Section */
#master-about-section {
    background-color: #f5f8fb;
    padding: 20px 0;
    margin-top: -40px;
}
#master-about-section h2 {
    font-size: 18px;
    line-height: 41px;
    font-weight: 400;
    color: #000;
}
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 0.25rem;
}
.master-project-work-carousel-items .card-image {
    width: 50px;
    height: 50px;
    background: #fff;
    box-shadow: 2px 4px 13px rgba(17,121,239,.1);
    border-radius: 10px;
    position: absolute;
    top: -25px;
}
.master-project-work-carousel-items .card-image::before {
    content: "";
    width: 22px;
    height: 28px;
    background: none;
    background-position: -8px -18px;
    position: absolute;
    left: 1px;
    top: 10px;
    display: inline-block;
}
.master-project-work-carousel-items .card-image img {
    width: 40px;
    height: 40px;
    position: relative;
    left: 5px;
    top: 6px;
    border-radius: 8px;
}
.support-section{
    margin-top:-40px;
}
.master-project-work-carousel-items h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    text-transform: none;
    margin-top: 40px;
}
.master-project-work-carousel-items p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 22px;
    color: #51565e;
    max-width: 300px;
    display: inline-block;
}
.who-can-apply-wrapper {
    background: #fff;
    box-shadow: 0 2px 16px rgb(0 0 0/8%);
    border-radius: 4px;
    margin-bottom: 80px;
}
.who-can-apply-content ul {
    padding: 10px 0 10px 0;
}
.who-can-apply-content ul li {
    font-size: 15px;
    line-height: 35px;
    color: #000;
    position: relative;
    padding-left: 27px;
}
.who-can-apply-content ul li:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 15px;
    background-image: url(https://hejextechnology.com/courseimages/master-course-sprite.svg);
    background-position: -305px -8px;
    top: 10px;
    left: 0;
}
.what-role-section {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 3px 0 #6659b8;
    border-radius: 4px;
    padding: 40px 40px 20px;
    margin-bottom:30px;
}
.what-role-first-section {
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 40px;
}
.what-role-first-section .col-lg-4 {
    margin-bottom: 40px;
    position: relative;
}
.what-role-first-section .col-lg-4:before {
    position: absolute;
    content: "";
    width: 4px;
    height: 100%;
    background-color: #6659b8;
    border-radius: 100px;
    left: 15px;
}
.what-role-first-list {
    padding-left: 15px;
}
.what-role-first-list h3 {
    font-weight: 700;
    font-size: 16px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 5px;
    color: #000;
}
.what-role-first-list p {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    padding-right: 40px;
    text-align:justify;
}
#pg-156-1{
    webkit-align-items: flex-start;
    align-items: flex-start;

}
#pgc-156-1-0{
    width: 100%;
    width: calc(100% - (0*30px));
}
#pl-156 .so-panel:last-of-type{
    margin-bottom:0px;
}
.panel-grid-cell .so-panel:before {
    content: "";
    display: block;
}
.textwidget {
    text-align: justify;
}
.hr-line {
    width: 72px;
    border-top: 5px solid #333366;
}
.panel-grid-cell .so-panel:after {
    content: "";
    display: table;
    clear: both;
}
/* About Section */
#pg-about-section {
    padding: 30px 0 0;
    background-color: #fff;
}
.justify-content-between {
    -ms-flex-pack: justify!important;
    justify-content: space-between!important;
}
.pg-about-second-section {
    padding-bottom: 60px;
    position: relative;
}
.pg-about-second-section h3 {
    font-size: 30px;
    line-height: 41px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 400;
    position: relative;
}
.pg-about-second-description {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 30px;
    color: #000;
    text-align:justify;
}
.pg-about-second-content {
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border-radius: 4px;
    padding: 30px 20px;
    border-top: 2px solid #f5c723;
}
.pg-about-second-content p {
    font-size: 15px;
    line-height: 26px;
}
.pg-about-second-content ul {
    font-size: 15px;
}
.pg-about-second-content ul li {
    list-style: none;
    position: relative;
    line-height: 24px;
    font-size: 15px;
    margin-bottom: 12px;
}
.pg-about-second-content ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #1289ee;
    left: 5px;
    top: 8px;
    border-radius: 50%;
}
.pg-about-second-content ul li span {
    padding-left: 20px;
}
.pg-about-third-section h3 {
    font-size: 20px;
    line-height: 41px;
    margin-bottom: 30px;
    color: #000;
    font-weight: 400;
    position: relative;
}

.pg-about-third-content {
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border-radius: 4px;
    padding: 30px 20px;
    border-top: 2px solid #7ed321;
    margin-bottom: 50px;
}
.pg-about-third-content p {
    font-size: 15px;
    line-height: 26px;
}
.pg-about-third-content ul li {
    list-style: none;
    position: relative;
    line-height: 24px;
    font-size: 15px;
    display: inline-block;
    width: 49%;
    margin-bottom: 12px;
    padding-left: 25px;
    vertical-align: top;
}
.pg-about-third-content ul li:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #1289ee;
    left: 5px;
    top: 8px;
    border-radius: 50%;
}
.master-counselling-form-wrapper.sticky-position {
    position: -webkit-sticky;
    position: sticky;
    margin-top:150px;
}
.master-counselling-form-wrapper {
    box-shadow: 0 1px 2px rgb(0 0 0/12%);
    border-radius: 0 0 4px 4px;
}
.master-counselling-form-header {
    border-top: 3px solid #ff6e06;
    padding: 30px 20px;
    background-color: #6659b8;
    background-image: url(courseimages/enquiry-form.webp);
    background-size: cover;
}
.master-counselling-form-heading {
    font-size: 20px;
    line-height: 27px;
    color: #fff;
    margin-bottom: 5px;
}
.master-counselling-form-text {
    font-size: 17px;
    line-height: 19px;
    color: #2f1d8d;
    margin-bottom: 0;
}
.master-counselling-form-body {
    padding: 20px;
    background-color: #6659b8;
    border-radius: 0 0 4px 4px;
}
.master-counselling-form-body .form-default input, .master-counselling-form-body .form-default select {
    height: 42px;
}
.form-default input, .form-default label, .form-default select, .form-default textarea {
    color: #828282;
    font-size: 14px;
    border-color: #e0e0e0;
}
.master-counselling-form-body .form-default input[type=submit] {
    background: linear-gradient(270deg,#ff630b 0,#f90 100%);
    width: 100%;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    border: none;
}
.hire {
    margin-top: 40px;
}
.hire span.heading {
    color: #272c37;
    line-height: normal;
    margin-top: 16px;
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}
.hire span.heading::after {
    display: block;
    width: 35px;
    content: "";
    height: 2px;
    background: #1179ef;
    margin-top: 8px;
}
.hire-companys {
    width: 100%;
    text-align: center;
}
.hire-logos-wrapper div {
    height: 80px;
}
.hire-logos-wrapper div {
    display: inline-block;
    vertical-align: middle;
}
.hire .hire-companys img {
    margin: 20px 40px 20px 0;
    max-height: 60px;
    width: auto;
}
.salarys {
    margin-bottom: 56px;
}
.salarys span.heading {
    color: #272c37;
    line-height: normal;
    margin-top: 16px;
    display: inline-block;
    width: 100%;
    margin-bottom: 40px;
}
.salarys span.heading::after {
    display: block;
    width: 35px;
    content: "";
    height: 2px;
    background: #1179ef;
    margin-top: 8px;
}
.salarys .salary-line {
    width: 100%;
    text-align:center;
}
.salarys .salary-line .active {
    position: relative;
    border-bottom: 1px solid #000;
    width: auto;
    padding: 0 10px;
    text-align: center;
    display: inline-block;
}
.salarys .dual-bar {
    width: 40px;
    height: 128px;
    background-color: #79bdf6;
    display: inline-block;
    margin-left: 15px;
    vertical-align: bottom;
    position: relative;
}
.salarys .dual-bar .price {
    font-size: 10px;
    font-weight: 500;
    color: #272c37;
    position: absolute;
    top: -16px;
    right: 0;
    left: 0;
    margin: auto;
}
.salarys .dual-bar .percent {
    top: inherit;
    bottom: -20px;
}
.salarys .dual-bar:first-child {
    margin-left: 0;
    height: 20px;
}
.salarys .dual-bar:nth-child(2), .salarys .dual-bar:nth-child(4) {
    height: 60px;
}
.salarys .dual-bar:nth-child(5) {
    height: 20px;
}
/***Indiviual Course Page****/
.what-role-skill-to-master-section {
    margin-bottom: 20px;
}
.what-role-skill-to-master-max-height {
    overflow: hidden;
}
.what-role-skill-to-master-items {
    margin-bottom: 15px;
}
.what-role-skill-to-master-wrapper .what-role-skill-to-master-items p {
    box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 4px 0 0 #6659b8;
}
.what-role-skill-to-master-items p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    padding: 15px;
    text-align: center;
    border-radius: 0;
    background: #fff;
    border: 1px solid rgba(114,157,245,.2);
    margin-bottom: 5px;
}
.master-fee-online-class-wrap {
    background-color: #fff;
    box-shadow: inset 0 2px 0 #ff6e06;
    border-radius: 0 0 4px 4px;
    margin-bottom: 20px;
}
.master-fee-online-class-upper {
    padding: 30px;
}
.master-fee-online-class-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    margin-bottom: 20px;
}
.master-fee-online-class-preferred {
    position: relative;
    left: 10px;
    top: -1px;
    background: #6659b8;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 0 10px;
    text-transform: uppercase;
    min-height: 24px;
    display: inline-block;
}
.master-time-table-items {
    padding: 0;
    cursor: pointer;
    position: relative;
    margin-bottom: -2px;
    cursor: pointer;
    padding: 20px;
    width: 100%;
    border: 1px solid #e0e0e0;
    width: calc(25% - 10px);
    margin: 0 5px;
    border-radius: 8px;
    overflow: hidden;
}
.fee-timetable-wrap {
    display: -ms-flexbox;
    display: flex;
}
.master-fee-online-class-preferred:before {
    width: 0;
    height: 0;
    border-top: 10.5px solid transparent;
    border-right: 6px solid #6659b8;
    border-bottom: 13.5px solid transparent;
    content: "";
    position: absolute;
    left: -6px;
    top: 0;
}
.master-time-table-items.checked {
    border: 1px solid #ff6e06;
    position: relative;
    z-index: 1;
    background: linear-gradient(182deg,#FFF 0%,#FFF 0%,#FFF6F0 100%);
    box-shadow: 0 0 4px 0 #bdbdbd;
}
.class-timetable input[type=radio] {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    visibility: hidden;
    cursor: pointer;
    top: 0;
}
.master-time-table-items>div {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    vertical-align: middle;
    color: #000;
}
.master-time-table-items.checked .master-time-table-icon {
    display: block;
}
.master-time-table-icon {
    top: 0;
    left: 0;
    cursor: pointer;
    position: absolute;
    content: '';
    visibility: visible;
    width: 0;
    height: 0;
    border-top: 40px solid #ff6e06;
    border-right: 40px solid transparent;
    display: none;
}
.master-time-table-icon:before {
    content: '\2713';
    display: inline-block;
    color: #fff;
    padding: 0 6px 0 0;
    top: -38px;
    left: 6px;
    position: absolute;
    font-weight: 700;
    font-size: 13px;
    transform: rotate(13deg);
}
.master-time-table-date {
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
    text-align: center;
}
.master-time-table-items>div p {
    margin-bottom: 0;
    color: #323232;
}
.master-time-table-items.checked .master-time-table-weekdays-class {
    font-weight: 600;
}
.master-fee-online-class-price-wrapper {
    text-align: right;
    margin-top:20px;

}
.master-fee-online-class-offer-text {
    font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    color: #238ce7;
    display: block;
    margin-bottom: 15px;
}
.mb-3 {
    margin-bottom: 1rem!important;
}
.master-fee-online-class-main-price {
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    color: #323232;
    margin-bottom: 8px;
    display: block;
}
.master-fee-online-class-enroll-btn {
    border: none;
    color: #fff;
    box-sizing: border-box;
    font-weight: 600;
    background: linear-gradient(270deg,#ff630b 0,#ff7a00 100%);
    font-size: 16px;
    line-height: 22px;
    padding: 9px 25px;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    border-radius: 2px;
    box-shadow: 0 2px 16px rgb(0 0 0 / 12%);
}
/***********Syllabus Section********************/
#master-curriculum-section {
    padding: 70px 0 30px;
    background-color: #f5f8fb;
}
.master-curriculum-head-section {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center!important;
    align-items: center!important;
}
.master-curriculum-head-section h2 {
    font-size: 30px;
    line-height: 41px;
    color: #000;
    margin: 0;
    margin-left: 5px;
    margin-bottom: 20px;
}
#master-curriculum-section .master-curriculum-minimum-height {
    padding: 1px;
    position: relative;
}
#master-curriculum-accordion .card {
    border: 1px solid #fff;
    border-radius: 0;
    margin-top: 0;
    position: relative;
    margin-bottom: 4px;
}
#master-curriculum-accordion .card:first-child:before {
    top: 38px;
}
#master-curriculum-accordion .card:before {
    width: 2px;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    background-color: #f2f2f2;
    display: inline-block;
    z-index: 1;
}
#master-curriculum-accordion .card-header {
    background-color: #fff;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 15px 30px 15px 60px;
}
.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}
.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}
#master-curriculum-accordion .card-header.collapsed:before {
    transform: rotate(0);
    transition: all .2s;
}
#master-curriculum-accordion .card-header:before {
    background-image: url(courseimages/master-course-sprite.svg?tr=w-400,h-175);
    position: absolute;
    top: calc(50% - 4px);
    right: 25px;
    width: 19px;
    height: 9px;
    content: "";
    background-position: -278px -8px;
    transform: rotate(180deg);
    transition: all .2s;
}
.master-curriculum-accordion-heading {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin-bottom: 0px;
}
.master-faq-accordion-heading {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin-bottom: 0px;
}
#master-curriculum-accordion .card-header:after {
    width: 10px;
    height: 10px;
    content: "";
    display: inline-block;
    background-color: #238ce7;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - -4px);
    left: 26px;
    z-index: 1;
}
.collapse:not(.show) {
    display: none;
}
#master-curriculum-accordion .card .card-body {
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    line-height: 30px;
    color: #000;
    padding: 20px 20px 20px 60px;
    position: relative;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
#master-curriculum-accordion .card .card-body ul {
    margin-bottom: 15px;
}
#master-curriculum-accordion .card .card-body ul, #master-curriculum-accordion .card .card-body ul li {
    font-size: 14px;
    line-height: 30px;
    list-style-type: disc;
    list-style-position: inside;
    color: #000;
}
.card-body ol, .card-body ul {
    padding-left: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 24px;
}
#master-curriculum-section .master-curriculum-minimum-height {
    box-shadow: 0 2px 16px rgb(0 0 0 / 8%);
}
.master-curriculum-download-btn {
    display: inline-block;
    background: linear-gradient(270deg,#ff630b 0,#ff7a00 100%);
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    padding: 9px 20px;
    border: none;
    box-shadow: 0 2px 16px rgb(0 0 0 / 12%);
    border: none;
}
.master-curriculum-syllabus{
    text-align: justify;
}
.master-curriculum-head-content {
    margin-bottom: 20px;
    text-align: center;
}
.ip-ck-cr {
    cursor: pointer;
}
iframe {
    box-shadow: 5px 5px 3px grey;
    border-radius: 5px;
    width:100%;
}
/******Review Section*******/
#master-reviews-section {
    padding: 30px 0 0;
}
.master-reviews-head-wrapper {
    margin-bottom: 30px;
}
#master-reviews-section h2 {
    font-size: 30px;
    line-height: 41px;
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
}
.master-reviews-video-carousel {
    margin: 0 -10px 50px;
}
.master-mentor-carousel .master-reviews-video-carousel-items {
    width: auto;
    float: left;
    margin: 50px 10px 14px;
}
.master-reviews-video-carousel-items {
    background-color: #fff;
    box-shadow: 0 2px 16px rgb(0 0 0 / 8%);
    border-bottom: 3px solid #1289ee;
    margin-bottom: 60px;
}
.master-reviews-video-carousel .master-reviews-video-carousel-items.slick-slide, .master-reviews-video-carousel .master-reviews-video-carousel-items:first-child {
    display: block;
}
.master-reviews-video-detail {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    min-height: 75px;
}
.master-reviews-video-detail p, .master-reviews-video-detail h4 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    color: #000;
}
/********Student Reviews**********/
.master-mentor-carousel {
    width: 100%;
    display: block;
    margin: 0 -10px 10px;
}
.master-mentor-carousel .master-mentor-carousel-item.slick-slide, .master-mentor-carousel .master-mentor-carousel-item:first-child, .master-mentor-carousel .master-mentor-carousel-item:nth-child(2), .master-mentor-carousel .master-mentor-carousel-item:nth-child(3) {
    display: block;
}
.master-mentor-carousel .master-mentor-carousel-item {
    display: none;
    width: 350px;
    float: left;
    margin: 50px 10px 14px;
}
.master-mentor-carousel-item {
    min-height: 390px;
    background-color: #fff;
    box-shadow: 0 2px 16px rgb(0 0 0 / 8%);
    border-radius: 0 0 12px 12px;
    padding: 0 22px 30px;
    border-top: 3px solid #1289ee;
}
.mentor-image-wrapper {
    margin-top: -50px;
    width: 100px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-bottom: 15px;
}
.mentor-linked-link {
    display: inline-block;
}
.mentor-image-wrapper img {
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #1289ee;
    border-radius: 50%;
    width: 100px;
    height: 100px;
}
.slick-slide img {
    display: block;
}
.mentor-detail h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #000;
    margin: 0;
}
.mentor-designation {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: #000;
    margin-bottom: 34px;
    position: relative;
}
.mentor-designation:before {
    background: rgba(18,137,238,.1);
    position: absolute;
    content: "";
    width: 100px;
    height: 2px;
    left: 0;
    right: 0;
    bottom: -16px;
    margin: 0 auto;
}
.mentor-description p {
    font-size: 14px;
    line-height: 26px;
    text-align: center;
    color: #000;
    opacity: .7;
    margin-bottom: 0;
}
/********Footer*********/
.site-footer {
    background-color: #282828;
}
footer{
    display: block;
    font-size: 14px;
    color: #3e3e3e;
}
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}
.site-footer:after {
    clear: both;
}
footer{
    display: block;
    font-size: 14px;
    color: #3e3e3e;
}
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}
.site-footer #footer-widgets {
    padding: 20px 0 60px;
}
.site-footer .footer-widget-title {
    color: #fff;
}
.site-footer .underline {
    margin-bottom: 50px;
}
.site-footer p,
.site-footer .textwidget {
    color: #fff;
    line-height: 30px;
    margin-bottom: 20px;
}
.site-footer address {
    margin: 0;
}
.site-footer .info {
    margin-bottom: 20px;
    color: #fff;
}
.site-footer .info:last-child {
    margin-bottom: 0;
}
.site-footer .info i {
    color: #ff7236;
    margin-right: 5px;
}
.site-footer .info a {
    color: #fff;
}
.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .menu li {
    clear: both;
    display: block;
    margin-bottom: 10px;
    position: relative;
}
.site-footer .menu li a {
    color: #fff;
    margin-left: 15px;
}
.site-footer .menu li a:hover {
    color: #ff7236;
}
.site-footer .menu li::before {
    color: #fff;
    content: "\f105";
    font-family: 'FontAwesome';
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.site-footer .menu li:hover::before {
    color: #ff7236;
}
.site-footer #twitter-feed{
    float: left;
    width: 100%;
}
.site-footer #twitter-feed ul li {
    padding-left: 40px;
    position: relative;
}

.site-footer #twitter-feed ul li .interact {
    display: none;
}

.site-footer #twitter-feed ul .insta::before {
    color: #fff;
    content: "\f16d";
    font-family: 'FontAwesome';
    font-size: 28px;
    left: 0;
    position: absolute;
    top: 0;
}
.site-footer #twitter-feed ul .yt::before {
    color: #fff;
    content: "\f167";
    font-family: 'FontAwesome';
    font-size: 28px;
    left: 0;
    position: absolute;
    top: 0;
}
.site-footer #twitter-feed ul .link::before {
    color: #fff;
    content: "\f08c";
    font-family: 'FontAwesome';
    font-size: 28px;
    left: 0;
    position: absolute;
    top: 0;
}
.site-footer #twitter-feed ul li a {
    color: #ff7236;
}

.site-footer #twitter-feed ul li a:hover {
    color: #fff;
}
.layout-v2 .site-footer #footer-widgets .widget_text a {
    color: #fff;
}
.local-head{
    color:#ff7236;
}
iframe {
    box-shadow: 5px 5px 3px grey;
    border-radius: 5px;
}
/******Number************/
#info-stripe {
    position: sticky;
    bottom: 0;
    color: #fff;
    text-align: center;
    background-color: #000;
    z-index: 99;
}
.p-2 {
    padding: 0.5rem!important;
}
.d-none {
    display: none!important;
}
.footer-phone-icon {
    position: relative;
    top: 3px;
    right: 2px;
    width: 18px;
    height: 18px;
    background-image: url(courseimages/global-sprite.svg);
    background-position: -3px -173px;
    display: inline-block;
}
.contact-no a {
    color: #fff;
    text-decoration: none;
}
.home-feature-wrapper {
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 24px rgb(0 0 0 / 8%);
    border-radius: 2px;
    padding: 0px 20px 0px 40px;
}
.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}
.justify-content-center {
    -ms-flex-pack: center!important;
    justify-content: center!important;
}
.home-key-feature-wrap {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0px;
    position: relative;
}
.home-key-feature-wrap picture {
    background-image: url("images/iconns.svg");
    width: 40px;
    min-width: 40px;
    height: 40px;
    content: "";
    display: inline-block;
    margin-right: 13px;
}
.home-key-feature-instructor {
    background-position: -10px -70px;
}
.home-key-feature-mentor {
    background-position: -60px -70px;
}
.home-key-feature-partner {
    background-position: -110px -70px;
}
.home-key-feature-salary {
    background-position: -160px -70px;
}
.home-key-feature-wrap span {
    font-weight: 600;
    font-size: 14px;
    line-height: 18px;
    color: #000;
}
.home-key-feature-wrap:after {
    content: "";
    position: absolute;
    right: -10px;
    top: calc(50% - 15px);
    width: 1px;
    height: 30px;
    background-color: #e7e7e7;
}
/***Contact us****/
.dark-bg {
    background-color: #290743;
    color: #fff;
    padding: 20px 0px 30px;
}
.breadcrumb-wrapper ul {
    margin: 0;
    padding: 0px 0 15px;
}
.breadcrumb-wrapper .breadcrumbs span:first-child, .breadcrumb-wrapper ul li:first-child {
    padding-left: 0;
}

.breadcrumb-wrapper ul li {
    display: inline-block;
    font-size: 12px;
}
.dark-bg h1, .dark-bg ul, .dark-bg ul li, .dark-bg ul li a {
    color: #fff;
}
.contact-form-wrapper>h2 {
    color: #4f4f4f;
    padding-bottom: 10px;
    position: relative;
}
.form-default label {
    font-weight: 600;
}
.form-default input, .form-default label {
    color: #828282;
    font-size: 14px;
    border-color: #e0e0e0;
}
.required {
    color: red;
}
.form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact-form-wrapper>h2 {
    color: #4f4f4f;
    padding-bottom: 10px;
    position: relative;
}
.coantactus-alldetail {
    background-color: #290743;
    padding: 20px 20px;
    color: #fff;
    font-weight: 600;
    border-radius: 4px 4px 0 0;
}
.coantactus-alldetail a {
    color: #fff;
    font-weight: 600;
}
.coantactus-alladdress {
    padding: 20px 20px;
    border: 1px solid #ddd;
    border-radius: 0 0 4px 4px;
}
.office-address {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}
.office-address h2 {
    font-size: 1.25rem;
    color: #4f4f4f;
}
.office-address p {
    font-size: 14px;
}
.office-address.emlast {
    margin-bottom: 15px;
    border-bottom: 0 solid;
}
.map-location{
    margin-bottom:20px;
}
.map-location>h2{
    color: #4f4f4f;
    padding-bottom: 20px;
    position: relative;
}
.contact-heading{
    font-size:20px;
}
@media (max-width: 767px){
#pl-156 .panel-grid-cell {
    padding: 0;
}
#pl-156 #panel-156-1-0-0 {
    margin: 0;
}
#mabout {
    margin-top: 30px;
    font-size:24px;
}
.back{
    height:400px;
}
}
.few_info_below_banner {
    
    bottom: -44px;
    left: 0;
    right: 0;
}
.few_info_below_banner .card_light_box a {
    display: inline-flex;
    background: #ffffff;
    height: 90px;
    border-radius: 2px;
    box-shadow: 0 0 15px 1px rgba(0,0,0,0.15);
    align-items: center;
    justify-content: space-between;
    padding: 25px 35px;
    width: 100%;
}
.few_info_below_banner .card_light_box a span.text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: #404040;
    display: inline-block;
    width: 65%;
    text-align: left;
    text-transform: uppercase;
}
.few_info_below_banner .card_light_box a span.knowmoretxt {
    font-size: 12px;
    font-weight: 800;
    text-align: right;
    color: #333366;
    display: inline-block;
    text-transform: uppercase;
    width: 35%;
}
.few_info_below_banner .card_light_box a span.knowmoretxt i {
    font-size: 12px;
    color: #333366;
    margin-left: 0px;
    font-weight: 800;
}
[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon-Arrow-rightward2:before {
    content: "\2794";
}
.ga4_job_role:hover{
    text-decoration:none;
}
.popsec{
    margin-top:25px;
}
.course-box{
    margin-top:10px;
}
.home-key-feature-wrap1 {
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 0px;
    position: relative;
}
.home-key-feature-wrap1 picture {
    background-image: url("images/all_in_one.svg");
    width: 60px;
    min-width: 60px;
    height: 60px;
    content: "";
    display: inline-block;
    margin-right: 13px;
}
.home-key-feature-react {
    background-position: -45px -80px;
}
.home-key-feature-angular {
    background-position: -250px -80px;
}
.home-key-feature-fullstack {
    background-position: -380px -80px;
}
.home-key-feature-java {
    background-position: -115px -82px;
}
.home-key-feature-python {
    background-position: -320px -80px;
}
.home-key-feature-selenium {
    background-position: -180px -80px;
}
.home-key-feature-blockchain {
    background-position: -460px -80px;
}
/************************Batch Slot**************************/
.home-batch{
    text-decoration: none;
    color:#999;
    padding-left:20px;
}

.home-batch:hover{
    text-decoration: none;
}
.home-schedule {
    background-color: #fff;
    box-shadow: 0 4px 24px rgb(0 0 0 / 8%);
    border-radius: 2px;
}
.home-date{
    color:#999;
    font-weight: normal;
}
.picksoltloc{
    color:#999;
    font-family: open sans,sans-serif!important;
    font-size:12px;
}
.hdate{
    padding-right:20px;
}
.home-batch1{
    margin:15px 0 0 20px;
    padding: 25px 20px;
    border: 0;
    border-bottom: 1px solid #eee;
}
.home-batch2{
    padding: 25px 0 0 20px;
    border: 0;
    border-bottom: 1px solid #eee;
}
.enquiry-section h4 {
    font-size: 20px;
    font-weight: 600;
    margin:40px 0 0 30px;
    padding:0 0 10px 40px;
    color:#333366
}
.batchtitle{
    color: #0d0d0d;
    font-weight:bold;
    font-size:18px;
}
.home-batch1 picture{
    position: absolute;
    content: "";
    background-image: url("images/all_in_one.svg");
    width: 60px;
    height: 50px;
    left: 25px;

}
.home-batch2 picture{
    position: absolute;
    content: "";
    background-image: url("images/all_in_one.svg");
    width: 60px;
    height: 50px;
    left: -5px;
}
.home-timeslot-b1{
    background-position: -40px -150px;
}

.home-batchcc{
    margin-left:40px;
}
.form-column {
    width: 315px;
    background: #fff;
    padding: 20px;
    margin-right: 118px;
    margin-left: 30px;
    box-shadow: 0 0 5px 3px #d4d4d4c2;
    margin-bottom: 20px;
}
.form-column strong {
    display: block;
}
.form-column form {
    font-size: 13px;
}
.form-column form button {
    width: 165px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #f97240;
    background: transparent;
    color: #f97540;
    text-transform: uppercase;
    margin: 10px auto 0;
    display: block;
}
.form-column form input {
    font-size: 13px;
    margin-top: 18px;
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    height: 41px;
    outline: none;
    padding: 0 0 0 7px;
}
.featurevideo{
    margin-top:40px;
}
/**Home Course**/
.master-reviews-header {
    display: -ms-flexbox;
    -ms-flex-align: center!important;
    align-items: center!important;
    margin-bottom: 8px;
    min-height: 101px;
}
.master-reviews-img-wrapper {
    position: relative;
    margin-right: 20px;
}
.master-reviews-img-wrapper img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
}
.master-reviews-auth{
    text-align: center;
}
.master-reviews-auth-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 25px;
    color: #000;
    margin-bottom: 2px;
}
.master-reviews-designation {
    font-size: 15px;
    line-height: 20px;
    color: #000;
    margin-bottom: 6px;
}
.master-reviews-description {
    min-height: 170px;
}
.master-reviews-description p {
    font-size: 14px;
    line-height: 26px;
    color: #000;
    margin-bottom: 0;
}
.home-explore-free-course-btn {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    display: inline-block;
    color: #fff;
    background: #ff6e06;
    border-radius: 100px;
    padding: 10px 25px;
    display:flex;
    justify-content:center;
    margin-top:10px;
}
.master-reviews-text-carousel-items {
    background: #fff;
    box-shadow: 0 2px 16px rgb(0 0 0/8%);
    border-radius: 0 0 12px 12px;
    border-top: 3px solid #ff6e06;
    padding: 30px;
    margin: 0 10px 30px;
}
/************************Batch Slot Ends**************************/
@media screen and (max-width: 767px){
    .fullstack-projects{
        margin-bottom:10px;
    }
    #info-stripe {
        background-color: #fff;
        box-shadow: 0 -8px 16px 0 #0000000f;
    }
    .course-outter{
        margin-bottom:0px;
    }
    #img-oo{
        display:none;
    }
    .kh-grid-childs{
        margin-left:12px;
    }
    .overview-heading{
        font-size:18px;
    }
    .specilaization{
        font-size:18px;
    }
    .overview-section{
        height:1800px !important;
    }
    
    .elig{
        height:650px !important;
    }
    .d-none {
        display: none!important;
    }
    .featurevideo{
        margin-top:0;
    }
    .master-time-table-items {
        padding: 15px;
        width: calc(50% - 10px);
        margin-bottom: 15px;
    }
    .call-our-advisor {
        padding: 0;
        background: linear-gradient(270deg, #a8c0ff 0, #3f2b96 100%);
        display: block;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        line-height: 30px;
        border: 1px solid #3f2b96;
        border-radius: 2px;
    }
    .projects{
        margin-top:10px;
    }
    .master-course-syllabus{
        margin-top:20px;
    }
    .master-faq-accordion-heading{
        font-weight:300;
    }
    .call-our-advisor a{
       color: #fff;
       text-decoration:none;
    }
    .call-our-advisor a:hover{
       text-decoration:none;
    }
    .cb-feature-wraper {
        max-width: 100%;
        top: -20px;
        margin: 0 0px -180px;
    }
    .master-project-work-carousel-items{
        margin-top:25px;
        margin-right:0px;
    }
    .mb-4{
        margin-top:2.5rem!important;
    }
    .preview-course-head {
        padding: 20px 0 0 0;
        font-size: 18px;
        line-height: 19px;
        color: #fff;
        font-weight: 400;
        display: inline-block;
        vertical-align: top;
    }
    .course-banner-image .single-video-icon {
        height: 100px!important;
        display: inline-block;
        position: relative !important;
        left: -14px!important;
        bottom: 10px!important;
    }
    .cb-key-features-items {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        border-right: none;
        margin-bottom: 40px;
        position: relative;
    }
    .about-course-skills{
        margin:180px 0 0 0;
    }
    .what-role-tools-images{
        text-align:center;
    }
    .cp-ac-parts .info-list span {
        font-size: 14px;
        display: inline-block;
        margin-left: 0;
    }
    .cp-ac-part2{
        margin-top:20px;
    }
    .who-can-apply-wrapper {
        margin-bottom: 30px;
    }
    .what-role-section {
        padding: 30px 30px 16px;
    }
    .pg-about-second-section {
        padding-bottom: 10px;
    }
    .pg-about-second-section h3 {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 34px;
    }
    .pg-about-second-description {
        margin-bottom: 30px;
    }
    .pg-about-second-content {
        padding: 10px;
    }
    .pg-about-second-content ul li {
        font-size: 14px;
    }
    .pg-about-third-section h3 {
        margin-bottom: 20px;
        font-size: 22px;
        line-height: 34px;
    }
    .pg-about-third-content {
        padding: 10px;
    }
    .pg-about-third-content ul li {
        width: 100%;
        font-size: 14px;
    }
    .pg-about-third-section h3:before{
        top:740px;
    }
    .master-counselling-form-wrapper.sticky-position {
        margin-top: 0px!important;
    }
    .hire {
        position: relative;
        margin: 0;
        padding-left: 25px;
        width: 100%;
        vertical-align: top;
    }
    .hire span.heading {
        margin-top: 24px;
        line-height: 1.57;
        text-align: center;
    }
    .hire span.heading:after {
        margin-left: auto;
        margin-right: auto;
    }
    .hire .hire-companys:before {
        width: 0;
        vertical-align: middle;
        content: "";
    }
    .hire .hire-companys .hire-logos-wrapper {
        display: inline-block;
        vertical-align: middle;
        max-height: 158px;
        overflow: hidden;
    }
    .hire .hire-logos-wrapper div {
        height: 78px;
    }
    .hire-logos-wrapper div::before {
        content: "";
        width: 0;
    }
    .benefits .hire-logos-wrapper div img {
        margin-top: 0;
        margin-bottom: 0;
        display: inline-block;
        vertical-align: middle;
    }
    .hire-companys img {
        margin: 20px 10px 20px 10px;
    }
    .master-curriculum-maximum-height {
        max-height:calc(100vh - 105px);
        overflow: hidden;
    }
    .master-reviews-head-rating {
        text-align: left;
    }
    .master-reviews-video-carousel.slick-dotted {
        margin: 0 0 60px;
        display: block;
    }
    .master-reviews-video-carousel .slick-list {
        padding: 0 20px 0 10px!important;
    }
    .slider-dot-style .slick-dots {
        margin: 0 auto 0 auto;
        left: 0;
        width: 200px;
        max-width: 200px;
    }
    .slider-dot-style .slick-dots {
        margin: 0 auto 0 auto;
        left: 0;
        width: 200px;
        max-width: 200px;
    }
    #master-curriculum-section .master-curriculum-maximum-height {
                max-height:calc(150vh - 125px)
            }
    .master-fee-online-class-enroll-btn {
        display: block;
        width: 100%;
    }
}
@media screen and (max-width: 920px){
    .master-time-table-items {
        padding: 15px;
        width: calc(50% - 10px);
        margin-bottom: 15px;
    }
    .fee-timetable-wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .master-fee-online-class-upper {
        padding: 20px;
    }
}
@media screen and (min-width: 768px) {
        .master-curriculum-maximum-height {
            max-height:calc(100vh - 105px);
            overflow: hidden;
            padding: 0px 15px;
            margin: 0px -15px
        }

        #master-faq-accordion.master-curriculum-maximum-height {
            padding: 0px;
            margin: 0px
        }
}

    @media screen and (max-width: 767px) {
        .master-curriculum-maximum-height {
            max-height:calc(130vh - 105px);
            overflow: hidden
        }
    }
@media (min-width: 768px){
    .d-md-none {
        display: none!important;
    }
    .d-md-block {
        display: block!important;
    }
    .salarys span.heading {
        color: #51565e;
    }
    .salarys .salary-line {
        text-align: left;
    }
    .hire {
        margin-bottom: 48px;
    }
    .hire-companys img {
        margin: 20px 35px 20px 0;
    }
    #master-curriculum-section .master-curriculum-maximum-height {
        max-height: calc(150vh - 125px);
    }
}
@media screen and (max-width: 991px){
    .master-fee-online-class-price-wrapper {
        text-align: center;
    }
}
@media (min-width: 992px){
     .salarys {
        margin-bottom: 0;
        min-height: 314px;
        position: relative;
        width: 33.333%;
        display: inline-block;
        vertical-align: top;
    }
    .salarys span.heading {
        margin-bottom: 60px;
        margin-top: 24px;
        line-height: 1.57;
        text-align: center;
    }
    .salarys span.heading b {
        display: block;
    }
    .salarys span.heading:after {
        margin-left: auto;
        margin-right: auto;
    }
    .salarys .salary-line {
        text-align: center;
    }
    .hire{
        display:none;
    }
}

@keyframes intro {
    0% {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(.5);
        transform: scale(.5)
    }
}
/***About US******/
.our-vision-section {
    padding: 48px 0px 24px;
}
.our-vision-section h2, .founder-section h2 {
    font-size: 26px;
    line-height: 32px;
    margin-top: 0px;
}
.our-vision-section h3 {
    font-size: 24px;
    line-height: 32px;
    font-style: italic;
    color: #8361C3;
    margin-bottom: 25px;
}
.our-vision-section p, .founder-section p {
    font-size: 14px;
    line-height: 24px;
    color: #4F4F4F;
    margin-bottom: 25px;
    text-align: justify;
}
.founder-img-wrapper {
    margin-top: 32px;
}
.founder-img-wrapper h4 {
    font-size: 16px;
    color: #8361C3;
    font-style: italic;
    line-height: 24px;
    font-weight: 400;
}
.about-box-shadow {
    text-align: center;
    box-shadow: 0px 0px 10px #eee;
    width: 111%;
    padding: 5px;
    border: 1px solid #e8e8e8;
    margin-top: 20px;
}
.about-box-shadow h2{
    padding-top:10px;
    color:#790dcb;
    font-weight: bold;
}
.about-box-shadow h4{
    font-weight:bold;
}
.founder-section {
    margin-top:30px;
    padding: 0px 0px 24px;
}
.founder-section h2{
    line-height: 32px;
    font-style: italic;
    color: #8361C3;
    margin-bottom: 25px;
}
.founder-section .mission{
    margin-top:30px;
}
.mission .vision{
    margin-top:20px;
}
/*********UIUX Page Design*************/

.uiux-banner{
        color: #090909;
        background: linear-gradient(89.98deg,rgba(243, 250, 248, 0.88) .01%,rgba(243, 250, 248, 0.88) 99.99%);
        border-radius: 4px;
        padding-bottom:40px;
}
.banner-desc{
    text-align:justify;
}
.uiux-banner h1{
    font-size: 28px;
}
.banner-title{
    color:#ff630b;
}
.banner-titleone{
    color:#FEC37D;
}
.uiux-banner-enrollnow{
    display: inline-block;
    background: linear-gradient(270deg, #179b45 0,#7cc956 100%);
    border-radius: 2px;
    color: #fff;
    font-size: 18px;
    line-height: 25px;
    padding: 11px 20px;
    border: 1px solid #7CC956;
    border-radius:20px;
    box-shadow: 0 2px 16px rgb(0 0 0/12%);
    min-width: 160px;
    text-align: center;
    font-family: open sans,sans-serif!important;
}
.ui-key-feature-text {
    font-size: 16px;
    line-height: 26px;
    color: #179B45;
    margin-bottom: 0;
}
.ui-feature-wraper {
    position: relative;
    background-color: #fff;
    box-shadow: 0 4px 24px rgb(0 0 0 / 8%);
    border-radius: 2px;
    padding: 20px 20px 0;
    top: -10px;
    margin-bottom: 5px;
    border-bottom: 2px solid #FEC37D;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.ui-line{
    width: 72px;
    border-top: 5px solid #7CC956;
}
.course-box{
    position: relative;
    padding: 5px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 0 6px 0.2rem rgb(178 178 178 / 16%);
    height: 100%;
}
.ccoverage{
    border:1px solid #179B45;
}
.ccoverage-even{
    border:1px solid #FBA33F
}
.ccoverage-odd{
    border: 1px solid #E8DFF7;
}
.uiuxcourse-heading{
    padding:5px;
    background-color: #179B45;
    color:#fff;
}
.uiuxcourse-description{
    padding:5px;
    background-color: #7CC956;
    color:#fff;
}
.uiuxcourse-headingeven{
    padding:5px;
    background-color: #FBA33F;
    color:#fff;
}
.uiuxcourse-headingodd{
    padding:5px;
    background-color: #A573F4;
    color:#fff;
}
.uiuxcourse-descriptioneven{
    padding:5px;
    background-color: #FEC37D;
    color:#fff;
}
.uiuxcourse-descriptionodd{
    padding:5px;
    background-color: #cab5ed;
    color:#fff;
}
.cc-row2{
    margin-top:20px;
}
.cp-role-courses{
    margin-top:20px;
    background: #fff;
    box-shadow: 0 2px 16px rgb(0 0 0/8%);
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.what-role-skill-to-master-wrapper .what-role-skill-to-master-ui p {
    box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 4px 0 0 #179B45;
}
.what-role-skill-to-master-wrapper .what-role-skill-to-master-ux p {
    box-shadow: 0 2px 4px rgba(0,0,0,.2), inset 4px 0 0 #FBA33F;
}
.what-role-skill-to-master-ui p, .what-role-skill-to-master-ux p {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #000;
    padding: 15px;
    text-align: center;
    border-radius: 0;
    background: #fff;
    border: 1px solid rgba(114,157,245,.2);
    margin-bottom: 5px;
}
.course-coverage{
    margin:-20px 0 20px 0;
}
.projects-text.p16 {
    margin-bottom: 16px;
    color: #334155;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}
.projects-info {
    color: #64748b;
    font-family: "Inter 400",sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.projects{
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
}
.projects-h.project-2 {
    color: #9a3412;
    background-color: #ffedd5;
}
.projects-h.project-1 {
    color: #1e40af;
    background-color: #dbeafe;
}
.projects-h.project-3 {
    color: #065f46;
    background-color: #d1fae5;
}
.projects-h {
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-h1 {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 32px;
}
.project-p1 {
    color: #475569;
    font-size: 16px;
    line-height: 24px;
}
.eligiblity{
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    align-items: center;
    padding: 16px;
    display: flex;
}
.eligibility-logo-class {
    width: 40px;
    height: 40px;
}
.kh-grid-child-sub {
    flex-direction: column;
    display: flex;
}
.eligibility-heading{
    color: #334155;
    font-size: 35px;
    line-height: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}
.eligibility-box{
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 24px;
    border: 2px solid ;
    border-color: rgb(207, 162, 232);
    border-radius: 8px;
    display: flex;
    align-items: center; 
    padding: 16px;
    margin-bottom: 25px;
}
.eligibility-box img{
    width: 40px;
    height: 40px;
}
.eligibility-text{
    color: #334155;
    line-height: 26px;
}
.elig{
    height:350px;
}
.job-title{
    color: #334155;
    font-family: Satoshi Variable,sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}
.job-description{
    line-height: 24px;
    margin-top: 16px;
    margin-bottom: 32px;
}
/* css code */
.points-space{
    width: 100%;
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
    margin-top:20px;
}
.points{
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    align-items: center;
    display: flex;
    margin-bottom:10px;
}
.inner-points{
    width: 28px;
    height: 28px;
    background-color: #dbeafe;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    display: flex;
}
.course-title{
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}
/* image */
@media screen and (max-width: 767px) {
    .job-roles {
      display:none !important;
    }
    
  }
.overview-section{
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 3px 0 #6659b8;
    border-radius: 4px;
    padding: 40px 40px 20px;
    margin-bottom: 40px;
    height:750px;
}
.overview-right{
    margin-top:30px;
}
.overview-heading{
    line-height: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}
.overview-par{
    font-size: 16px;
    line-height: 25px;
    font-weight: 400;
    text-align:justify;
} 
.overview-image{
    margin-bottom:10px;
}
.tools-used{
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 3px 0 #6659b8;
    border-radius: 4px;
    padding: 40px 40px 20px;
    margin-bottom: 20px;
}
/******New Frames *********/
/************21-02-2024**************/
.key-high{
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 3px 0 #6659b8;
    border-radius: 4px;
    padding: 40px 40px 20px px;
    margin-bottom: 40px;
}
.circular-bg-container {
    width: 64px;
    height: 64px;
    background-color: #dbeafe;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}
.key-highlight-logo {
    width: 32px;
    height: 32px;
}
.w-embed:before, .w-embed:after {
    content: " ";
    grid-area: 1/1/2/2;
    display: table;
}
.kh-grid-childs {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: center;
    display: flex;
    margin-bottom:15px;
}
.key-highlight-logo {
    width: 32px;
    height: 32px;
}
.kh-grid-child-sub {
    flex-direction: column;
    display: flex;
}
.kh-grid-child-sub-h1 {
    font-size: 18px;
    line-height: 28px;
}
.kh-grid-child-sub-p1 {
    font-size:14px;
}
.kwy-heading{
    padding-top:30px;
}
.skills-name{
    font-size: 10px;
    text-align: center;
}
@media (max-width: 990px) {
    .skills-image {
      display: none;
    }
  }
.skills-heading{
    color: #334155;
    font-family: Satoshi Variable,sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 36px;
}
.skills-tagline{
    color: #64748b;
    font-family: "Inter 400",sans-serif;
    font-size: 16px;
    line-height: 28px;
}
.skills-needed{
    margin:15px 0 ;
}
.theme-gradient {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.001);
}
.theme-prime{
    background: linear-gradient(90deg, var(--color-banprime), var(--color-bansec));
    -webkit-background-clip: text;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.001);
}
/************21-02-2024**************/
/************Ads*********************/
.overview-section-ads{
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,.08), inset 0 3px 0 #6659b8;
    border-radius: 4px;
    padding: 20px 40px 20px;
    margin-bottom: 40px;
}
.projects-head{
    font-size: 24px;
}
.projects-tagline{
    font-size: 16px;
    font-weight: 400;
    text-align:justify;
}
.outer-project{
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
}
.project-head{
    color: #9a3412;
    background-color: #ffedd5;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-head2{
    color: #1e40af;
    background-color: #dbeafe;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-head3{
    color: #065f46;
    background-color: #d1fae5;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-head4{
    color: #6b21a8;
    background-color: #f3e8ff;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-head5{
    color: #9d174d;
    background-color: #fce7f3;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-head6{
    color: #155e75;
    background-color: #cffafe;
    border-radius: 16px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    display: inline-block;
}
.project-name{
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 600;
    line-height: 32px;
}
.project-para{
    color: #475569;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
}
.rows{
    padding-bottom: 20px;
}
/*************Ads********************/
.enquiry-alert{
    display:none;
}