@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Quattrocento&display=swap');

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #FFD8B0;
  font-family: "Poppins", sans-serif;
}

a:hover {
  text-decoration: none;
}

.header {
  /*float: left;
    width: 100%;
    height: 100px;
    background: transparent;
    padding: 10px;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  padding: 10px;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
  background-color: rgb(0 0 0 / 5%);
}

.header.active {
  background: #000;
  /*-webkit-box-shadow: 0 1px 25px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0 1px 25px rgba(0, 0, 0, 0.25);
	box-shadow: 0 1px 25px rgba(0, 0, 0, 0.25);*/
}

.header .logo {
  float: left;
  width: 15%;
  height: auto;
  margin-right: 10px;
}
.logo img {
    border-radius: 10px;
}
/*.headermenu {
  float: right;
  width: 80%;
  height: 100px;
  text-align: right;
}

.mainmenu {
  float: right;
  width: 100%;
  margin-top: 18px;
  display: block;
}

.headermenu ul {
  list-style: none;
  margin: 0;
  padding: 5px;
}

.headermenu ul li {
  display: inline;
}

.headermenu ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease;
  padding: 10px;
  border-bottom: 2px solid transparent;
  border-radius: 10px;
}

.headermenu ul li a:hover {
  transition: 0.4s ease;
  padding: 10px;
  background: #394b61;
  border-radius: 10px;
}*/
.banner-video {
  float: left;
  width: 100%;
  height: 100vh;
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.banner-video-mobile {
  display: none;
}

@media (min-aspect-ratio:16/9) {
  .banner-video {
    width: 100%;
    height: auto;
  }
}

@media (max-aspect-ratio:16/9) {
  .banner-video {
    width: 100%;
    height: 90vh;
  }
}

.banner-video h1 {
  width: 100%;
  position: absolute;
  bottom: 150px;
  left: 0px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
}

.banner-video img {
  width: 100%;
  height: 100vh;
}

/*-------------------------- Banner ----------------------------*/
/*
.carousel {
	float: left;
	width: 100%;
	height: 100vh;
}

.carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 10px;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-right: 15%;
	margin-bottom: 1rem;
	margin-left: 15%;
	list-style: none;
}

.carousel-inner {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	top: 0px;
}

.carousel-item {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	height: 100vh;
	margin-right: -100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transition: transform .6s ease-in-out;
}

.carousel-item span {
	position: absolute;
	bottom: 20%;
	left: 10%;
	padding: 40px 40px 0px 40px;
	width: 100%;
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	float: left;
	text-shadow: 0px 0px 50px #000;
	text-align: center;
	z-index: 9;
}

.carousel-item img {
	width: 100%;
	height: 100vh;
}
*/

/*.intro {
    padding: 40px 100px;
    margin-top: 60px;
}*/
/*-------------------------- End Banner ----------------------------*/
/*-------------------------- Start Mobile Menu ----------------------------*/
.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgb(30 41 55 / 96%);
  overflow-y: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
  margin-top: 0px;
}

.overlay-content a {
  padding: 15px 40px;
  text-decoration: none;
  font-size: 20px;
  line-height: 25px;
  color: #00BEB9;
  display: block;
  transition: 0.3s;
  list-style: none;
  text-align: left;
  text-transform: uppercase;
}

.overlay-content a:hover,
.overlay-content a:focus {
  color: #f1f1f1;
}

.overlay li {
  list-style: none;
}

.overlay .closebtn {
  position: absolute;
  top: 5px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 200;
  /* background: #6e4040; */
  /* border-radius: 100px; */
  /* width: 32px; */
  /* height: 32px; */
  /* padding: 14px; */
}

@media screen and (max-height: 450px) {
  .overlay {
    overflow-y: auto;
  }

  .overlay a {
    font-size: 20px
  }

  .overlay-content .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}

.hmenu-mobile {
  display: none;
}

/*-------------------------- End Mobile Menu ----------------------------*/

.download-btn a {
  position: fixed;
  right: -44px;
  top: 400px;
  background: #bb1918;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transform: rotate(-90deg);
  z-index: 99;
  letter-spacing: 1px;
}

.section {
  float: left;
  width: 100%;
  height: auto;
  padding: 100px 50px;
}

.center-text .l-size {
  font-size: 60px;
  color: #ED7B04;
  text-align: center;
  /* font-family: 'Quattrocento', serif; */
  font-weight: bold;
  margin-bottom: 30px;
}

.center-text p {
  font-size: 30px !important;
  text-align: center;
  color: #FFD8B0;
  width: 70%;
  margin: 0 auto;
}

.defaultbtn {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 100px;
}

.defaultbtn a {
  font-size: 16px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  background: #F39C00;
  color: #fff;
  border-radius: 10px;
}

.defaultbtn a img {
  position: relative;
  left: 15px;
  top: -1px;
  border-radius: 5px;
}

.circle-img {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  top: 140px;
}

.row1 {
  padding: 100px 0px;
}

.row1 h2 {
  color: #ED7B04;
  font-family: 'Quattrocento', serif;
  font-weight: bold;
  font-size: 36px;
}

.row1 p {
  color: #F3F4F5;
  font-size: 16px;
  width: 80%;
}

.grp1 {
  padding: 70px 0px;
}
.grp3 {
    background: #333;
    padding: 40px !important;
    border-radius: 50px;
}
.grp2 h1 {
  text-align: left;
  width: 100%;
  /* margin: 0 auto; */
  margin-bottom: 30px;
  color: #fff;
  /* font-size: 60px; */
  font-weight: bold;
  /* font-family: 'Quattrocento', serif; */
}

.bg1 {
  background: #424242;
}

.bg2 {
  background: #000000;
}

.bg3 {
  background: #1E2937;
}

.bg4 {
  background: url(../images/bg4.png) no-repeat fixed;
  background-size: cover;
}

.bg5 {
  background: #202020;
}

.bg6 {
  background: url(../images/noisebg.png) no-repeat fixed;
  background-size: cover;
}

.padding-top {
  padding-top: 0px;
}

.padding-bottom {
  padding-bottom: 0px;
}

.zoom {
  overflow: hidden;
}

.img-box1 {
  float: left;
  width: 100%;
  height: 500px;
  background: url(../images/image01.png) no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: 0.4s ease;
  border-radius: 10px;
}
.img-box1 a {
    text-decoration: none;
}
.img-box1:hover {
    transform: scale(0.95);
}
.boxlink a {
  color: #F39C00;
  border-bottom: 1px solid #F39C00;
  text-decoration: none;
    transition: 0.4s ease;
}
.boxlink a:hover {
  color: #fff;
    transition: 0.4s ease;
}
.img-box2 {
  float: left;
  width: 100%;
  height: 500px;
  background: url(../images/image02.png) no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: 0.4s ease;
  border-radius: 10px;
}
.img-box2 a {
    text-decoration: none;
}
.img-box2:hover {
    transform: scale(0.95);
}
.img-box3 {
  float: left;
  width: 100%;
  height: 500px;
  background: url(../images/image03.png) no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: 0.4s ease;
  border-radius: 10px;
}
.img-box3 a {
    text-decoration: none;
}
.img-box3:hover {
    transform: scale(0.95);
}
.img-box4 {
  float: left;
  width: 100%;
  height: auto;
}

.img-box4 img {
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  border-radius: 10px;
}

.img-box4 h5 {
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
}

.img-box4 p {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 14px;
}

.img-box4 a {
  color: #F39C00;
  border-bottom: 1px solid #F39C00;
  text-decoration: none;
    transition: 0.4s ease;
}
.img-box4 a:hover {
  color: #fff;
    transition: 0.4s ease;
}
.img-box4 p {
    margin-bottom: 10px !important;
}
.img-box4 h5 {
    font-size: 16px !important;
    line-height: 24px !important;
}
.img-mask {
  position: relative;
  left: 0;
  top: 310px;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 75%, rgba(0, 0, 0, 0.65) 100%);
}

.img-mask h5 {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
  transition: 0.4s ease;
  margin-bottom: 15px;
}

.img-mask p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

.grp2 label {
  float: left;
  width: 100%;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}

.grp2 .custom-text {
  float: left;
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 10px;
  outline: none;
  background: #444;
  color: #fff !important;
}

.grp2 .newsletter-btn {
  text-align: left;
  margin: 0 auto;
}

.grp2 .newsletter-btn a {
  background: #F39C00;
  font-size: 16px;
  padding: 15px 30px;
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease;
  border-radius: 10px;
}

.grp2 .newsletter-btn a:hover {
  background: #BB1919;
  transition: 0.4s ease;
}

.footer {
  padding: 100px 0px 10px 0px;
  background: #000;
}

.footer-logo {
  width: 80%;
  margin-bottom: 30px;
}
.footer-logo img {
    border-radius: 10px;
}
.footer-grp {
  margin-bottom: 30px;
}

.footer-grp h5 {
  color: #ED7B04;
  text-transform: uppercase;
}

.footer-grp a {
  color: #FFD8B0;
  font-size: 14px;
}

.footer-grp p {
  color: #fff;
  font-size: 14px;
  width: 80%;
}

.footer-grp ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grp ul li {
  display: block;
}

.footer-grp ul li a {
  color: #FFD8B0;
  font-size: 14px;
  text-decoration: none;
  line-height: 30px;
  transition: 0.4s ease;
}

.footer-grp ul li a:hover {
  color: #ED7B03;
  transition: 0.4s ease;
  border-bottom: 1px solid #fff;
}

.footer hr {
  color: #fff;
}
.copyright {
    float: left;
    width: 100%;
    color: #ddd;
}
.footer-social {
  float: left;
  width: 100%;
  margin-bottom: 10px;
}

.footer-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social ul li {
  display: inline;
  line-height: 40px;
}

.footer-social ul li a {
  margin: 0px;
  padding: 10px;
  fill: #fff;
  background: #3d3d3d;
  padding: 10px;
  border-radius: 40px;
}

.copyright p {
  font-size: 12px;
  color: #fff;
  padding-top: 10px;
}

.copyright a {
  color: #F39C00;
  font-size: 14px;
  text-decoration: none;
  margin-left: 30px;
}

.copyright a:hover {
  color: #ED7B03;
  transition: 0.4s ease;
  border-bottom: 1px solid #fff;
}

.scroll-downs {
  position: absolute;
  /* top: 0; */
  right: 0;
  bottom: 50px;
  left: 0;
  margin: auto;
  width: 34px;
  height: 55px;
}

.mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15, .41, .69, .94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }

  10% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.bannergrp {
  position: absolute;
  top: 200px;
  left: 100px;
  float: left;
}
.bannergrp h4 {
    width: 100%;
}
.innerpagebanner {
  width: 100%;
  height: 70vh;
  background: #333;
}

.aboutus {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-about.jpg) center fixed;
  background-size: cover;
}
.ourprogram {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-program.png) center fixed;
  background-size: cover;
}
.facility {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-facility.png) center fixed;
  background-size: cover;
}
.admission {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-admission.png) center fixed;
  background-size: cover;
}
.careers {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-careers.png) center fixed;
  background-size: cover;
}
.internship {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-internship.png) center fixed;
  background-size: cover;
}
.collaboration {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-collaboration.png) center fixed;
  background-size: cover;
}
.events {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-events.png) center fixed;
  background-size: cover;
}
.campusplacement {
  width: 100%;
  height: 70vh;
  background: url(../images/innerpage-campusplacement.png) center fixed;
  background-size: cover;
}
.ourteam {
  width: 100%;
  height: 80vh;
  background: url(../images/innerpage-team.jpg) center fixed;
  background-size: cover;
}

.section h1 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}
.section p {
    color: #ddd;
    font-weight: 300;
    font-size: 15px;
}

.color-grey {
  color: #888 !important;
}

.innerpagebanner h1 {
  color: #fff;
  font-size: 60px;
}

.innerpagebanner h4 {
  color: #fff;
  font-weight: 400;
}

.center-text h5 {
  width: 90%;
  font-size: 30px;
  font-weight: normal;
  line-height: 45px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.center-text h1 {
  width: 100%;
  font-size: 48px;
  color: #333;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0px;
}

.center-text h3 {
  width: 100%;
  font-size: 32px;
  color: #F2F3F5;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 0px;
  margin-top: 20px;
}

.center-text h6 {
  width: 70%;
  color: #FFD8B0;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
  line-height: 26px;
  font-weight: normal;
  font-size: 18px;
}

.gradient-red {
  background-image: linear-gradient(140deg, #F80200, #FFA84C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-blue {
  background-image: linear-gradient(140deg, #0093D3, #00D3AD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-black {
  background: #333333 !important;
}

.bg-grey {
  background: #f5f5f7;
}

.row-separator {
  margin-bottom: 30px;
  margin-top: 50px;
}

.valunteer-list {
  float: left;
  width: 100%;
  height: auto;
  /*border: 1px solid #ccc;*/
  padding: 20px;
  margin-bottom: 30px;
}

.valunteer-list img {
  margin-bottom: 20px;
  width: 50%;
  height: auto;
}

.valunteer-list h6 {
  color: #ED7B04 !important;
  margin-bottom: 10px;
  font-size: 26px;
}

.valunteer-list p {
  width: 100%;
  text-align: left;
  padding: 0px;
  font-size: 16px;
  color: #FFD8B0 !important;
  line-height: 24px;
}

.uploadcv h2 {
  margin-bottom: 30px;
  line-height: 40px;
}

.uploadcv h5 {
  font-weight: normal;
  margin-bottom: 30px;
  line-height: 30px;
}

.uploadcv a {
  color: #04A6A2;
}

.form-link {
  margin-bottom: 100px;
}

.form-link h5 a {
  background: #04A6A2;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: normal;
  color: #fff;
  text-decoration: none;
  transition: 0.4s ease;
}

.form-link h5 a:hover {
  background: #00BEB9;
  transition: 0.4s ease;
}

.bgimg01 {
  background: url(../images/bgimg01.png) fixed;
  background-size: cover;
  color: #fff;
}

.ourculture {
  width: 100%;
  height: 100vh;
  background: url(../images/bgimg02.png) center fixed;
  background-size: cover;
  color: #fff;
}

.culture-pos {
  padding-top: 100px;
}

.ourculture p {
  font-size: 18px;
  width: 70%;
}

.mgb-50 {
  margin-bottom: 50px;
}

.mgb-100 {
  margin-bottom: 100px;
}

.imgeffect01 {
  background: transparent;
  padding: 20px 10px;
  transition: 0.4s ease;
}

.imgeffect01:hover {
  background: #333;
  padding: 20px 10px;
  transition: 0.4s ease;
}

.imgeffect01 .box {
  float: left;
  width: 100%;
  height: auto;
  overflow: hidden;
  transform: scale(1);
  transition: 0.4s ease;
}

.imgeffect01:hover .box img {
  transform: scale(1.3);
  transition: 0.4s ease;
}

.box-content h3 {
  color: #ED7B04;
  padding-top: 30px;
}

.box-content p {
  color: #FFD8B0;
}

.contact-setion h4 {
  color: #ED7B04;
}

.contact-setion p {
  width: 60%;
  color: #FFD8B0;
}

.contact-setion a {
  color: #73B62A;
}
.contact-setion a {
    text-decoration: none;
}
.contact-setion a:hover {
    text-decoration: underline;
}
#partnerone {
  padding-top: 100px;
}

#partnertwo {
  padding-top: 130px;
}

#partnerthree {
  padding-top: 130px;
}

.download-img {
  float: left;
  width: 15%;
  height: auto;
  margin-right: 20px;
}

.download-img img {
  float: left;
  width: 100%;
  height: auto;
}

.download-text {
  float: left;
  width: 80%;
  padding: 30px 0px;
}

.download-text h4 {
  float: left;
  /* width: 70%; */
}

.download-text a {
  float: right;
  /* width: 14%; */
  text-align: right;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  background: #04A6A2;
  text-decoration: none;
  font-size: 16px;
  transition: 0.4s ease;
}

.download-text a:hover {
  color: #fff;
  text-decoration: underline;
  transition: 0.4s ease;
}

.downloadbrcohure {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
  background: #333;
  padding: 20px;
}

a .policycard-01,
.policycard-02,
.policycard-03,
.policycard-04 {
  float: left;
  text-decoration: none;
  color: #424242;
}

.policycard-01 {
  float: left;
  width: 100%;
  height: 270px;
  background: #D4FE56;
  padding: 20px;
  border-radius: 20px;
}

.policycard-01 h3 {
  font-size: 24px;
}

.policycard-01 img {
  position: relative;
  top: 85px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

a:hover .policycard-01 img {
  position: relative;
  top: 80px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

.policycard-02 {
  float: left;
  width: 100%;
  height: 270px;
  background: #59F9BE;
  padding: 20px;
  border-radius: 20px;
}

.policycard-02 h3 {
  font-size: 24px;
}

.policycard-02 img {
  position: relative;
  top: 115px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

a:hover .policycard-02 img {
  position: relative;
  top: 110px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

.policycard-03 {
  float: left;
  width: 100%;
  height: 270px;
  background: #A88BFF;
  padding: 20px;
  border-radius: 20px;
}

.policycard-03 h3 {
  font-size: 24px;
}

.policycard-03 img {
  position: relative;
  top: 115px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

a:hover .policycard-03 img {
  position: relative;
  top: 110px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

.policycard-04 {
  float: left;
  width: 100%;
  height: 270px;
  background: #FFCF52;
  padding: 20px;
  border-radius: 20px;
}

.policycard-04 h3 {
  font-size: 24px;
}

.policycard-04 img {
  position: relative;
  top: 115px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

a:hover .policycard-04 img {
  position: relative;
  top: 110px;
  right: 0px;
  float: right;
  transition: 0.4s ease;
}

.policy h5 {
  text-align: left;
  width: auto;
  padding-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
  color: #ED7B04;
  background: url("../images/arrow-right-circle.svg") left no-repeat;
  padding-left: 30px;
  line-height: 24px;
}

.policy h4 {
  text-align: left;
  width: auto;
  padding-bottom: 0px;
  font-size: 14px;
  font-weight: 600;
  background: url("../images/arrow-right-circle.svg") left no-repeat;
  padding-left: 30px;
  margin-left: 0px;
  line-height: 24px;
}

.policy h6 {
  color: #ED7B04 !important;
  /* padding-left: 30px; */
}

.policy p {
  text-align: left;
  width: auto;
  padding-bottom: 0px;
  font-size: 14px;
  padding-left: 0px;
  font-weight: 300;
}

.policy ul {
  list-style: none;
}

.policy ul li {
  background: url("../images/bullet-down-right.svg") no-repeat 0px -4px;
  padding-left: 30px;
  font-size: 14px;
  font-weight: 300;
}

a .policycard-01,
.policycard-02,
.policycard-03,
.policycard-04 {
  float: left;
  text-decoration: none;
  color: #424242;
}

.policy ol li {
  font-size: 14px;
  font-weight: 300;
  margin-left: 0px;
  margin-bottom: 20px;
}

.policy h4 {
  font-size: 16px;
}

.MultiCarousel {
  float: left;
  overflow: hidden;
  padding: 15px;
  width: 100%;
  height: 450px;
  position: relative;
}

.MultiCarousel .MultiCarousel-inner {
  transition: 1s ease all;
  float: left;
}

.MultiCarousel .MultiCarousel-inner .item {
  float: left;
  width: 300px !important;
  height: 434px;
}

.MultiCarousel .MultiCarousel-inner .item>div {
  text-align: left;
  padding: 10px;
  margin: 00px;
  background: transparent;
  width: 270px;
  height: 435px;
  float: left;
  border: 1px solid #5a5a5a;
}

.MultiCarousel .leftLst,
.MultiCarousel .rightLst {
  position: absolute;
  border-radius: 50px;
  top: calc(50% - 80px);
  padding: 5px;
}

.MultiCarousel .leftLst {
  left: 0;
  background: #202020;
  border: none;
}

.MultiCarousel .rightLst {
  right: 0;
  background: #202020;
  border: none;
}

.MultiCarousel .leftLst.over .MultiCarousel .rightLst.over {
  pointer-events: none;

}

.pad15 img {
  margin-bottom: 20px;
}

.pad15 h4 {
  color: #ED7B04;
}

.pad15 p {
  color: #FFD8B0;
  font-size: 15px;
}

.pad15 a {
  color: #ED7B04;
  border-bottom: 1px solid #ED7B04;
  text-decoration: none;
}

#slider-item-mobile {
  display: none;
}

#partner-img1 {
  display: none;
}

#partner-img2 {
  display: block;
}

.ourteam-captions h2 {
  width: 90%;
  color: #ED7B04;
  font-weight: 400;
  text-align: left;
  line-height: 50px;
}

.team-list {
  float: left;
  width: 100%;
  height: auto;
  padding: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.team-list a {
  text-decoration: none;
  color: #fff;
}

.team-list img {
  margin-bottom: 20px;
  border-radius: 300px;
}

.team-list p {
  color: #999999;
}

.profile-pic {
  float: left;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.profile-pic img {
  margin-bottom: 20px;
  /*border-radius: 200px 0px 200px 200px;*/
}

.profile-pic h3 {
  margin-bottom: 0px;
}

.profile-pic h5 {
  margin-bottom: 20px;
  font-weight: 300;
}

.profile-pic p {
  color: #dddddd;
  font-size: 12px;
  font-weight: 300;
}

.profile-details {
  width: 100%;
  color: #F3F4F5;
}

.profile-details h4 {
  margin-bottom: 0px;
}

.profile-details h6 {
  margin-bottom: 5px;
  color: #ED7B04;
  font-size: 20px;
}

.profile-details p {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 20px;
}

/*----------------------------------- new css ---------------------*/
.newsevents h1 {
  font-weight: bold;
  margin-bottom: 30px;
  color: #fff;
}

.viewallbtn {
  float: right;
}

.viewallbtn a {
  font-size: 14px;
  font-weight: normal;
  color: #F39C00;
  text-decoration: none;
  background: transparent;
  border: 2px solid #F39C00;
  padding: 10px 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  transition: 0.4s ease;
}
.viewallbtn a:hover {
    color: #333;
    background: #fff;
    border: 2px solid #fff;
    transition: 0.4s ease;
}
.newsevents p {
  font-size: 12px;
  margin-bottom: 10px;
}

.newsevents h5 {
  font-weight: 500;
  font-size: 20px;
  color: #F39C00 !important;
}

.signup h1 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
}

.signup p {
  color: #fff;
  margin-bottom: 50px;
}

.signup .signup-text {
  margin-top: 100px;
}

.signup .defaultbtn {
  float: left;
  text-align: left;
  padding-top: 0px;
}

.signup .mobile-img {
  float: right;
}
.newsletter {
  background: url(../images/newsletter.png) no-repeat;
  background-size: cover;
}
.newsletter h1 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.newsletter .grp2 {
  padding: 30px 0px;
}

.newsletter .grp2 p {
  color: #999;
  text-align: left;
  margin-bottom: 50px;
}

.discover p {
  font-size: 16px;
  color: #fff;
  width: 50%;
  margin-bottom: 30px;
}

.footer-grp ul li a {
  color: #F39C00;
  font-size: 16px;
}

.footer-grp h5 {
  color: #fff;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.footer-defaultbtn a {
  font-size: 16px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  background: #F39C00;
  color: #fff;
  border-radius: 10px;
}

.footer-defaultbtn a img {
  position: relative;
  left: 15px;
  top: -1px;
  border-radius: 5px;
}

.about h1 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: left;
}

.about p {
  color: #fff;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 30px;
}

.discover-videothumb img {
  border-radius: 10px;
}

.about-pd {
  padding: 100px 50px;
}
.headermenu {
  float: right;
  width: 80%;
  height: auto;
  text-align: right;
  padding: 20px 10px;
}

.headermenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.headermenu ul li {
  display: inline;
  position: relative;
}

.headermenu ul li a {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 20px 10px 40px 10px;
  transition: 0.4s ease;
}

.headermenu ul li a:hover {
  color: #BB1919;
  transition: 0.4s ease;
}

.headermenu ul li #menu-submenu {
  float: left;
  width: 280px;
  background: #BB1919;
  position: absolute;
  left: -34%;
  top: 60px;
  z-index: 999;
  display: none;
  padding: 10px;
  border-top: none;
  margin-top: -1px;
  border-radius: 20px;
  box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 17%);
}

.headermenu ul li:hover #menu-submenu {
  display: block;
}

.headermenu ul li #menu-submenu::after {
  position: absolute;
  content: "";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #BB1919;
  top: -15px;
  left: 20%;
  transform: translate(-50%, 0%);
}

#menu-submenu li {
  display: block;
}

#menu-submenu li a {
  float: left;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  transition: 0.4s ease;
  text-align: left;
  margin-bottom: 0px;
    border-radius: 10px;
}

#menu-submenu li a:hover {
  color: #BB1919;
  background: #ffecec;
  border-radius: 10px;
}

#menu-submenu li img {
  float: left;
  margin-right: 10px;
}

.headermenu ul li #menu-submenu1 {
  float: left;
  width: 280px;
  background: #fff;
  position: absolute;
  left: -140%;
  top: 60px;
  z-index: 999;
  display: none;
  padding: 10px;
  border-top: none;
  margin-top: -1px;
  border-radius: 10px;
  box-shadow: 0px 20px 30px 0px rgb(0 0 0 / 17%);
}

.headermenu ul li:hover #menu-submenu1 {
  display: block;
}

.headermenu ul li #menu-submenu1::after {
  position: absolute;
  content: "";
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #fff;
  top: -15px;
  left: 80%;
  transform: translate(-50%, 0%);
}

#menu-submenu1 li {
  display: block;
}

#menu-submenu1 li a {
  float: left;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  font-weight: 400;
  color: #333;
  transition: 0.4s ease;
  text-align: left;
  margin-bottom: 0px;
}

#menu-submenu1 li a:hover {
  color: #333;
  background: #f2f3ff;
  border-radius: 10px;
}

#menu-submenu1 li img {
  float: left;
  margin-right: 10px;
}
#apply-btn {
  background: #BB1919;
  border: 2px solid #BB1919;
  padding: 10px 20px;
  margin-left: 20px;
  transition: 0.4s ease;
  border-radius: 10px;
}

#apply-btn:hover {
    color: #BB1919;
  background: transparent;
  border: 2px solid #BB1919;
  transition: 0.4s ease;
}

#signin-btn {
  background: transparent;
  border: 2px solid #fff;
  padding: 10px 20px;
  margin-left: 20px;
  transition: 0.4s ease;
  border-radius: 10px;
}

#signin-btn:hover {
  background: #fff;
  border: 2px solid #fff;
  color: #333;
  transition: 0.4s ease;
}
.sliderimg {
    float: left;
    width: 100%;
    height: 100vh;
    background: url("../images/slider-02.jpg") no-repeat;
    background-size: cover;
}
.sliderimg .slidercaption {
    width: 100%;
    position: absolute;
    bottom: 100px;
    left: 0px;
    text-align: center;
    padding: 0px 150px;
}
.slidercaption h2 {
    color: #fff;
}
.course1 {
    margin-bottom: 100px;
}
.course1 h3 {
    margin-bottom: 20px;
}
.course2 {
    margin-bottom: 100px;
    padding-top: 100px;
    padding-left: 100px;
}
.course2 h3 {
    margin-bottom: 20px;
}
.course3 h3 span {
    color: aquamarine;
    font-weight: 300;
}
.course3 h3 {
    margin-bottom: 30px;
}
.course4 {
    padding-top: 50px;
}
.about h3 {
    color: #FFDD2D;
}
.about h5 {
    width: 85%;
    color: #FFDD2D;
    font-size: 24px;
    line-height: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}
.about p {
    color: #ddd;
}
.course-list h5 {
    color: #fff;
}
.course-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.course-list ul li {
    font-size: 14px;
    color: #ddd;
    background: url("../images/icon01.svg") no-repeat left 0px;
    background-size: 20px;
    padding-left: 30px;
    margin: 10px 20px;
}
.rowspacing {
    padding: 0px 0px 100px 0px;
}
.sticky01 {
    position: fixed;
    bottom: 0px;
    right: 10px;
    background: #fff;
    padding: 0px;
}
.sticky01 a {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
}
.recruiter-list {
    float: left;
    width: 100%;
}
.recruiter-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.recruiter-list ul li {
    display: inline-block;
    float: left;
    width: 20%;
}
.recruiter-list ul li a {
    float: left;
    width: 80%;
}
.recruiter-list ul li img {
    margin: 0px;
    width: 100%;
    border-radius: 10px;
}
.career-card1 {
    float: left;
    width: 100%;
    height: 400px;
    padding: 40px 20px;
    background: #CF2E26;
    border-radius: 10px;
    text-align: center;
}
.career-card1 h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 26px;
}
.career-card1, .career-card2, .career-card3 p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
}
.career-card2 {
    float: left;
    width: 100%;
    height: 400px;
    padding: 40px 20px;
    background: #D7592A;
    border-radius: 10px;
    text-align: center;
}
.career-card2 h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 26px;
}
.career-card3 {
    float: left;
    width: 100%;
    height: 400px;
    padding: 40px 20px;
    background: #E7A038;
    border-radius: 10px;
    text-align: center;
}
.career-card3 h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 26px;
}
.contact-defaultbtn {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding-top: 40px;
}

.contact-defaultbtn a {
  font-size: 16px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  background: #bb1918;
  color: #fff;
  border-radius: 10px;
}

.contact-defaultbtn a img {
  position: relative;
  left: 15px;
  top: -1px;
  border-radius: 5px;
}
#internship {
    background: #F39C00;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}
.desktopimg {
    display: block;
}
.mobimg {
    display: none;
}
.contact-map {
    float: left;
    width: 100%;
    height: auto;
    background: #fff;
    border: 10px solid #ccc;
    padding: 10px;
    border-radius: 20px;
    margin-top: 100px;
}
.content-space {
    padding: 50px;
}
.imgradius {
    border-radius: 20px;
}

.leftsociallinks {
	position: fixed;
	left: -20px;
	top: 340px;
	padding: 10px 20px;
    display: block;
}
.leftsociallinks ul {
    list-style: none;
    margin: 0;
    padding: 0;   
}
.leftsociallinks ul li {
    display: block;
    background: #333;
    padding: 8px;
    text-align: center;
}
.leftsociallinks ul li a {

}
.leftsociallinks #one {
    background: #2C46A1;
}
.leftsociallinks #two {
    background: #202020;
}
.leftsociallinks #three {
    background: #DB168C;
}
.leftsociallinks #four {
    background: #227CC8;
}
.leftsociallinks #five {
    background: #c81615;
}
.leftsociallinks #six {
    background: #ff0303;
}
.leftsociallinks #seven {
    background: #265D87;
}
.leftsociallinks #eight {
    background: #FFA504;
}
.leftsociallinks #nine {
    background: #494949;
}
.leftsociallinks #ten {
    background: #707070;
}
.leftsociallinks #eleven {
    background: #FFDD2D;
}
.leftsociallinks #twelve {
    background: #2BA537;
}
#active a {
    color: yellow;
}
.contact-setion {
    border: 1px solid #FFD8B0;
    padding: 20px;
    width: 100%;
    height: 270px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.contact-setion p {
    width: 100%;
    color: #FFD8B0;
}
.w-50 {
    width: 50%;
}