* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.brown{background:#efefef !important;}
body{
	line-height: 1.5;
	font-weight: 400;
}
body.hidden-scrolling{
	overflow-y: hidden;
}
.container{
	max-width: 1250px;
    margin: auto;
	width:100%;
}
ul{
	list-style: none;
	margin:0;
	padding:0;
}
a{
	text-decoration: none;
}
.bxsha{
	box-shadow:0px 0px 4px #bbb;
}
hr.two {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
hr.eight {
    overflow: visible; /* For IE */
    padding: 0;
    border: none;
    border-top: medium double #333;
    color: #333;
    text-align: center;
}
hr.eight:after {
    content: "§";
    display: inline-block;
    position: relative;
    top: -0.7em;
    font-size: 1.5em;
    padding: 0 0.25em;
    background: white;
}
/* Loader start */
.pgloader{
    width: 100%;
    height: 100vh;
    position: absolute;
    background: #0d31c5;
    z-index: 1000;
    .txt{
        color: #fff;
        text-align: center;
        top: 40%;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.3rem;
        font-weight: bold;
        line-height: 1.5;
    }
}

/* Spinner animation */
.spinner {
  position: relative;
  top: 35%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;  
  -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }
  100% {
    -webkit-transform: scale(1.0);
    opacity: 0;
  }
}

@keyframes sk-scaleout {
  0% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 100% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    opacity: 0;
  }
}
/* Loader End */
.header{
	position: relative;
	width: 100%;
	left:0;
	top:0;
	z-index: 99;
	padding: 7px;
	border-bottom: 2px solid #efefef;
}
.header-main{
	background-color: #ffffff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 4px;
}
.header .logo img{
	width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo a{
	font-size: 30px;
	text-transform: capitalize;
	color: #e91e63;
	font-weight: 600;
}
.header .nav-menu{
	padding: 0 15px;
}
.header .menu > .menu-item{
	display: inline-block;
	margin-left: 20px;
	position: relative;
}
.header .menu > .menu-item > a{
	display: block;
	padding: 12px 0;
	font-size: 15px;
	color: #000000;
	text-transform: capitalize;
	font-weight: 600;
	transition: all 0.3s ease;
}
.header .menu > .menu-item > a .plus{
	display: inline-block;
	height: 12px;
	width: 12px;
	position: relative;
	margin-left:5px; 
	pointer-events: none;
	border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
/*.header .menu > .menu-item > a .plus:before,
.header .menu > .menu-item > a .plus:after{
	content:'';
	position: absolute;
	box-sizing: border-box;
	left: 50%;
	top:50%;
	background-color: #000000;
	height: 2px;
	width: 100%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease;
}
*/
.header .menu > .menu-item:hover > a .plus:before,
.header .menu > .menu-item:hover > a .plus:after{
   background-color: #fff;
}
.header .menu > .menu-item > a .plus:after{
   transform: translate(-50%,-50%) rotate(-90deg);	
}
.header .menu > .menu-item > .sub-menu > .menu-item > a:hover,
.header .menu > .menu-item:hover > a{
	color: #000;
}
.header .menu > .menu-item > .sub-menu{
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	width: 220px;
	position: absolute;
	left:0;
	top:100%;
	background-color: #ffffff;
	padding: 10px 0;
	border-top: 3px solid #e91e63;
	transform: translateY(10px);
	transition: all 0.3s ease;
	opacity:0;
	visibility: hidden;
}
@media(min-width: 992px){
.header .menu > .menu-item-has-children:hover > .sub-menu{
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
 }
 .header .menu > .menu-item-has-children:hover > a .plus:after{
    transform: translate(-50%,-50%) rotate(0deg);		
 }
}
.header .menu > .menu-item > .sub-menu > .menu-item{
	display: block;
}
.header .menu > .menu-item > .sub-menu > .menu-item > a{
	display: block;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	transition: all 0.3s ease;
	text-transform: capitalize;
}
.header .open-nav-menu{
	height: 34px;
	width: 40px;
	margin-right: 15px;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.header .open-nav-menu span{
	display: block;
	height: 3px;
	width: 24px;
	background-color: #000000;
    position: relative;
}
.header .open-nav-menu span:before,
.header .open-nav-menu span:after{
	content: '';
	position: absolute;
	left:0;
	width: 100%;
	height: 100%;
	background-color: #000000;
	box-sizing: border-box;
}
.header .open-nav-menu span:before{
	top:-7px;
}
.header .open-nav-menu span:after{
	top:7px;
}
.header .close-nav-menu{
	height: 40px;
	width: 40px;
	background-color: #ffffff;
	margin:0 0 15px 15px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
}
.header .close-nav-menu img{
	width: 16px;
}
.header .menu-overlay{
	position: fixed;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
	left:0;
	top:0;
	height: 100%;
	width: 100%;
	visibility: hidden;
	opacity:0;
	transition: all 0.3s ease;
}

/*home section*/
.home-section{
	width: 100%;
	display: block;
	min-height: 100vh;
	background-image: url('../img/home.jpg');
	background-position: center top;
	background-size: cover;
}


/* responsive */

@media(max-width: 991px){
	.header .menu-overlay.active{
		visibility: visible;
		opacity: 1;
	}
	.header .nav-menu{
		position: fixed;
		right: -280px;
		visibility: hidden;
		width: 280px;
		height: 100%;
		top:0;
		overflow-y: auto;
		background-color: #4f3dd4;
		z-index: 1000;
		padding: 15px 0;
		transition: all 0.5s ease;
	}
	.header .nav-menu.open{
		visibility: visible;
		right: 0px;
	}
	.header .menu > .menu-item{
		display: block;
		margin:0;
	}
	.header .menu > .menu-item-has-children > a{
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header .menu > .menu-item > a{
		color: #ffffff;
		padding: 12px 15px;
		border-bottom: 1px solid #333333;
	}
	.header .menu > .menu-item:first-child > a{
	    border-top: 1px solid #333333;	
	}
	.header .menu > .menu-item > a .plus:before, 
	.header .menu > .menu-item > a .plus:after{
		background-color: #ffffff;
	}
	.header .menu > .menu-item-has-children.active > a .plus:after{
        transform: translate(-50%,-50%) rotate(0deg);
	}
	.header .menu > .menu-item > .sub-menu{
		width: 100%;
		position: relative;
		opacity: 1;
		visibility: visible;
		border:none;
		background-color: transparent;
		box-shadow: none;
		transform: translateY(0px);
		padding: 0px;
		left: auto;
		top:auto;
		max-height: 0;
		overflow: hidden;
	}
	.header .menu > .menu-item > .sub-menu > .menu-item > a{
		padding: 12px 45px;
		color: #ffffff;
		border-bottom: 1px solid #333333;
	}
	.header .close-nav-menu,
	.header .open-nav-menu{
		display: flex;
	}
}

.boxcel {
    display: flex;
	justify-content: space-between;
    vertical-align: middle;
    width: 100%;
	height:auto;
	flex-wrap:wrap;
}
.boxcelitems1 {
    display: flex;
    justify-content: space-between;
	flex-wrap:wrap;
	height:auto;
	width:21%;
}
.boxcelitems3 {
    display: flex;
    justify-content: space-between;
	background: #ffffff;
    flex-wrap:wrap;
	width:30%;
	margin-right:-5rem;
}
.form-info{
	width:100%;
}
.form-info h2{
	background: #0f5fdc;
    color: #fff;
    text-align: center;
    padding: 1rem;
}
#message{
	padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
}
.imgslide{
	/*
	background-image:linear-gradient(rgba(4,9,30,0.4),rgba(4,9,30,0.4)),url(../img/bg.jpg)
	background-image: url(https://sastra.edu/images/sastra/SASTRA_Slide.jpg);
	*/
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/bbg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:70vh;
	position:relative;
	width:100%;
}
.bcaimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/bcabk.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:70vh;
	position:relative;
	width:100%;
}
.mcaimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/mcabk.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:70vh;
	position:relative;
	width:100%;
}
.mscimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/mscdata.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:70vh;
	position:relative;
	width:100%;
}
.contactimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/contact.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:45vh;
	position:relative;
	width:100%;
}
.text_box {
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text_box img{
	width:40%;
}
.text_box h2 {
    font-size: 50px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.5vmax;
}

.text_box #headtext {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-top: -1%;
    margin-bottom: 1%;
    color: #c8fff2;
}

.text_box p {
    margin: 10px 0 40px;
    font-size: 18px;
    color: #ffff;
}
/*
table {border-collapse: collapse;width: 100%;background:#fff; color:#000;box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);margin-bottom:10px;table-layout:auto;display:table;}
th, td {padding: 1rem; text-align: justify;  border: 1px solid #ddd;}
th {text-align:center;background-color: #0062cc;color: white;box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);}
*/
.cont1 table {border-collapse: collapse;width: 100%;background:#fff; color:#000;box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);margin-bottom:10px;table-layout:auto;display:table;}
.cont1 th, .cont1 td {padding: 5px;  border: 1px solid #ddd;font-size:12px;}
.cont1 th {text-align:center;background-color: #0062cc;color: white;box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 9px 26px 0 rgba(0, 0, 0, 0.19);}
.cont1 td ol li{margin-left:2rem;}

.abtn {
    position: relative;
    display: inline-block;
    color: #5138be;
    border: 1px solid #5138BE;
    border-radius: 5px;
    padding: 12px 34px;
    font-size: 25px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    background: #ffff00;
    font-weight: 900;
}

.abtn:hover {
    border: 1px solid #000;
    background: #ffff00;
    transition: 1s;
    color:#514202;
}
.boxtxt img{margin-left:-3rem;}
@media (max-width: 800px) {
	.boxtxt img{width:40%;}
	.header .logo img{
		width:300px;
	}
	.imgslide{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/bbg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:40vh;
	position:relative;
	width:100%;
	}
	
	.bcaimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/bcabk.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
	min-height:25vh;
	position:relative;
	width:100%;
	}
	.mcaimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/mcabk.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height:25vh;
	position:relative;
	width:100%;
	}
	.contactimage{
	background-image:linear-gradient(rgba(4,9,30,0.0),rgba(4,9,30,0.0)),url(../img/contact.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	min-height:20vh;
	position:relative;
	width:100%;
	}
	
.text_box h2 {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.1vmax;
}
.abtn{
	font-size:17px;
}
}
@media screen and (min-width: 250px) and (max-width: 950px){
.form-style-inner {
	width: auto !important;
	margin: 1px 5px 0px 0px  !important;
	padding: 5px  !important;
}

}
@media (max-width: 520px){
	.boxcelitems3{
		width:60%;
		margin-right: -2rem;
		justify-content:start;
		border:1px solid #000;
		display:block;
	}
	.form-info h2{
		padding:5px;
		font-size:15px;
	}
	.boxtxt img{
		width:150%;
	}
	.header .logo img{
		width:250px;
	}
	.text_box h2 {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.1vmax;
	}
	.abtn{
		font-size:12px;
		padding:5px 15px
	}



/* image slider Start */
.imgslider{
	width: 100%;
   display: flex;
	justify-content: space-between;
	align-items: center;
    position: relative;

}
.owl-carousel {
    width: 100%;
    height: 80vh;
}

.slide {
    width: 100%;
    height: 80vh;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.slide-1 {background-image: url(../img/bg.jpg);}
.slide-2 {background-image: url(../img/slider/bg-2.jpg);}
.slide-3 {background-image: url(../img/slider/bg-3.jpg);}

.slide-content {
    text-align: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding: 0 15%;
}

.slide-content h1 {
    font-family: "Anton", serif;
    font-size: 45px;
    text-transform: uppercase;
	color:#fff;
}

.slide-content p {
    font-family: "Lato", serif;
    font-size: 18px;
    margin-bottom: 20px;
}

.slide-content button {
    font-family: "Roboto", serif;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bolder;
    padding: 10px 25px;
    border: none;
}

.owl-dots {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 1%;
}

.owl-dots span {
    width: 20px !important;
    height: 20px !important;
}

.owl-dots button {
    border: none !important;
    outline: none !important;
}

.owl-nav button {
    border: none !important;
    outline: none !important;
}

.owl-prev, .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff !important;
    font-size: 65px !important;
    font-weight: bolder !important;
    background:none !important;
}

.owl-prev {
    left: 1%;
}

.owl-next {
    right: 1%;
}
/* Image Slider End */


/* Section Cont1 Start */
}
/*
.cont1 {
    margin: 0 auto;
    background: rgba(230, 167, 86, 1);
}
*/
.cont1 {
    margin: 0 auto;
    width: 100%;
    background: url(../img/syllabus.jpg) no-repeat center;
    background-attachment: fixed;
    background-size: cover;
    z-index: 0;
    position: relative;
}
.cont1:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.cont1 .contgrad{width: 100%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  column-gap: 30px;}

.cont1 .contgrad .grad{
	flex: 1 1;
	z-index:1;
	border-radius:10px;
	padding: 15px 12px;
    transition: 0.5s;
}

.cont1 .contgrad .grad h3 {
    text-align: center;
    font-weight: 600;
    border-bottom: 1px solid;
    padding: 10px 0px;
    line-height: 1.1;
}

.cont1 .contgrad .grad:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}



/* Section Cont1 End  #E77500*/

.mnt{display: flex;flex-wrap: wrap;align-content: center;background-size: cover;z-index: 0;position: relative;height: 150px;background: url(../img/bk1.jpg) no-repeat center;}
.mnt::before {position: absolute;content: "";top: 0;left: 0;right: 0;bottom: 0;background: rgba(0, 0, 0, 0.65);}
.mnt h1{font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  padding-bottom: 15px;
  position: relative;color:#fff;
 }
.mnt .bkcont {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  padding: 10px;
  text-transform: uppercase;
  position:relative;
}
.mnt .bkcont .lb {
  font-size: 3rem;
}
/* Section Cont0 Start */
.conabt {
	background: #fff;
	display: flex;
	
}
.conabt .conabttop .con{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	flex-direction: row; 
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	-webkit-justify-content: space-around;
	gap:10px;
}
.conabt .conabttop .con {
	-webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.conabt .conabttop .conimg {
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center center;
}
.conabt .conabttop .conimg img{
	max-width: 100%;
    max-height: 100%;
    box-shadow: 3px 0px 4px #ddd;
    padding: 5px;
}

.conabout h1{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1rem;
  position: relative;
}
.conabout h1:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #E77500;
}
.conabout h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #5138BE;
}
.imgs{
	border: 10px solid #efefef;
    padding: 10px;
    border-radius: 5px;
	width:100%;
}

/*
.secbk{	
background: linear-gradient(-45deg, #090979 5%, #fff 0, #fff 95%, #090979 0, #090979 100%);
}

.seccont{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
}
.seconfpag{
	flex-grow:1;
}
.seconfpagig{
	flex-grow:1;
	flex-basis:100%;
}
*/
.secbk{
background: linear-gradient(-45deg, #090979 2%, #fff 0, #fff 98%, #090979 0, #090979 100%);
}
.secbk .seccont{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}
.secbk .seccont{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}
.secbk .seccont .seconfpagig{
	flex-grow: 1;
    flex-basis: 100%;
}
.secbk .seccont .seconfpag{
	flex-grow: 1;
}

@media (max-width: 900px) {
    .secbk{
	background: linear-gradient(-45deg, #090979 3%, #fff 0, #fff 98%, #090979 0, #090979 100%);
	}
	.secbk .container .seccont{
      flex-wrap: wrap;
    }
    .secbk .container .seccont .input-box{
      width: 40%;
      margin-top: 10px;
    }
	.secbk .seccont .seconfpagig{
		display:flex;
		justify-content:space-around;
	}
	.imgs{
		width:50%;
	}
  }

/*
img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
*/
.btn {
  background-color: white;
  border: 1px solid #cccccc;
  color: #696969;
  padding: 0.5rem;
  text-transform: lowercase;
}
.btn--block {
  display: block;
  width: 100%;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content:space-around;
}
.cards__item {
  display: flex;
  border: 1px solid antiquewhite;
  margin-bottom: 1rem;
  border-style: inset;
  width: 100%;
}
@media (min-width: 40rem) {
  .cards__item {
    width: 50%;
  }
}
@media (min-width: 56rem) {
  .cards__item {
    width: 33.3333%;
  }
}
.faccard {
  background-color: white;
  border-radius: 0.25rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 1rem;
  width:100%;
}
.faccard:hover .faccard__image {
  filter: contrast(100%);
}
.faccard__content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.faccard__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(70%);
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(0.43, 0.41, 0.22, 0.91);
}
.faccard__image img{
	width: 150px;
    height: 150px;
	display: flex;
    margin: 0px auto;
    border-radius: 56%;
    padding: 5px;
    border: 1px solid #efefef;
}
.faccard__conttitle{
	flex: 1 1 auto;
    font-size: 0.875rem;
    line-height: 1.5;
	font-weight:800;
}
.faccard__contdesc{
	margin-bottom: 1rem;
}
.faccard__image::before {
  content: "";
  display: block;
}

.faccard__image--flowers {
  background-image: url(https://unsplash.it/800/600?image=82);
}
.faccard__image--river {
  background-image: url(https://unsplash.it/800/600?image=11);
}
.faccard__image--record {
  background-image: url(https://unsplash.it/800/600?image=39);
}
.faccard__image--fence {
  background-image: url(https://unsplash.it/800/600?image=59);
}
.faccard__title {
  color: #2F3C7E;
  font-size: 1rem;
  font-weight: 700;
}
.faccard__text {
  flex: 1 1 auto;
  font-size: 0.875rem;
  line-height: 1.5;
}



.table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    display: table;
	table-layout:fixed;
} 
.table th {
    background-color: #0062cc;
    color: #fff;
    text-align: center;
}
.table th, .table td {
    padding: 5px;
}

.table, .table td, .table th {
    border: 1px solid #ddd;
}

.table td span{
	font-size: 12px;
    color: red;
}

.list {
	margin-bottom: 2rem;
}
.list li{
	list-style: square;
    margin-left: 1.5rem;
    text-align: justify;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.headtitle{
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5em;
  margin-bottom: 1rem;
  position: relative;
}
.headtitle:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #E77500;
}
.headtitle:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 95%;
  max-width: 255px;
  background-color: #5138BE;
}
.card {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 20%);
    transition: 0.3s;
    width: 20rem;
    margin: 0px auto;
    border-radius: 5px;
    border-top: 2px solid #549ef2;
    padding: 5px;
}
.card img {
    display: block !important;
    margin: 0px auto !important;
    width: 90%;
    padding: 5px;
}
.card .tit p {
    padding: 5px;
    background: #0062cc;
    color: #fff;
    font-size: 1.2em;
    text-transform: none !important;
    text-align: center!important;
    font-weight: bold;
}
.card p {
    text-align: center!important;
}


.conabout p {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
  text-align:justify;
  position: relative;
}
.conabout ul, .cont1 ul, .contxt ul{	
 margin-bottom:2rem;
}
.conabout ul li, .cont1 ul li, .contxt ul li{
	list-style: square;
	margin-left:2.5rem;
	text-align:justify;
	line-height:2;
}
@media (max-width: 800px) {
	.conabt .conabttop{
		display: -webkit-flex;
		-webkit-flex-direction: column;
		flex-direction: column;
	}
}

/* Section Cont0 End  #E77500*/

.PageBlock {
    position: relative;
    margin: 0px !important;
    padding: 0px;
}

.verticalLine {
    widtH: 2px;
    height: 100px;
    background: #000;
    margin: 0 auto 40px;
}

.Clear {
    clear: both;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    padding: 10px 0px;
	text-align:justify;
}

.row {
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
}

.twhite{color:#fff;}
.white{background:#fff;color:#000;}
.blue{background: #4267b2; color:#fff;}
.yellow{background: #ffc53a;color:#000;}
.cen{text-align:center !important; }

@media (max-width: 700px) {
    .verticalLine {
        widtH: 1px;
    }
	.conabout h1 {
    font-size: 18px;
	}
    h1 {
        font-size: 24px;
        line-height: unset;
    }
    .row {
        flex-direction: column;
    }
}

/* Course Section End */
.footer{background:#fff;box-shadow:2px 2px 4px #000;}
.pad{padding:2rem 40px }
.pads{padding:1rem 40px 0px; }
.footer .top{
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.footer .fottop{
	display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px
}
.footer .fottop .fotlogo{
	color: #243a64;
    font-size: 30px;
}
.footer .fottop .fotmediaicons{
	display: flex;
}
.footer .fottop .fotmediaicons a{
    height: 40px;
    width: 40px;
    margin: 0 8px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #fff;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.4s ease;
  }
	.fottop .fotmediaicons a:nth-child(1){background: #4267B2;}
	.fottop .fotmediaicons a:nth-child(1):hover{color: #4267B2;background: #fff;}
	.fottop .fotmediaicons a:nth-child(2){background: #1DA1F2;}
	.fottop .fotmediaicons a:nth-child(2):hover{ color: #1DA1F2; background: #fff;}
	.fottop .fotmediaicons a:nth-child(3){background: #E1306C;}
	.fottop .fotmediaicons a:nth-child(3):hover{color: #E1306C;background: #fff;}
	.fottop .fotmediaicons a:nth-child(4){background: #0077B5;}
	.fottop .fotmediaicons a:nth-child(4):hover{color: #0077B5;background: #fff;}
	.fottop .fotmediaicons a:nth-child(5){background: #FF0000;}
	.fottop .fotmediaicons a:nth-child(5):hover{color: #FF0000;background: #fff;}
.footer .fotmid {
	display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
}
.footer .fotmid .address{
    flex-grow: 1;
    flex-basis: 40%;
  }
  .footer .fotmid .address h2{
    border-bottom: 4px solid #140B5C;
    color: #140B5C;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom:20px;
  }
  .footer .fotmid .address ul{
    list-style-type: none;
    line-height: 1.6;
    color:#140B5C;
  }
  .footer .fotmid .address a{
    color:#140B5C;
    text-decoration: none;
  }

  .footer .fotmid .addressloc{
    flex-grow: 1;
    flex-basis: 100%;
  }
  .footer .bottom-details{
    width: 100%;
    background: #132e62;
  }
  .footer .bottom-details .bottom_text{
    max-width: 1250px;
    margin: auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-around;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
  }
  .bottom-details .bottom_text a:hover{
    opacity: 1;
    text-decoration: underline;
  }
  .bottom-details .bottom_text a{
    margin-right: 10px;
  }

 @media (max-width: 900px) {
    .footer .container .fotmid{
      flex-wrap: wrap;
    }
    .footer .container .fotmid .input-box{
      width: 40%;
      margin-top: 10px;
    }
  }
  @media (max-width: 700px){
    .footer{ position: relative; }
    .footer .container .fottop .fotlogo{ font-size: 26px; }
    .footer .container .fottop .fotmediaicons a{
      height: 35px;
      width: 35px;
      font-size: 14px;
      line-height: 35px;
    }
    .footer .container .fotmid .box{ width: calc(100% / 3 - 10px); }
    .footer .container .fotmid .input-box{ width: 60%; }
    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a{ font-size: 10px; }
  }
  @media (max-width: 520px){
    .footer::before{top: 145px;}
    .footer .container .fottop{flex-direction: column;}
	.footer .fotmid .address h2{font-size: 20px; margin-bottom:10px;}
	.footer .container .fottop .fotmediaicons{margin-top: 16px;}
    .footer .container .fotmid .box{width: calc(100% / 2 - 10px);}
    .footer .container .fotmid .input-box{width: 100%;}
	
  }
