
.darken { 
  background: #EEE; 
  color: #FFF; 
  }
          .nav-pills {
              display:none;
          }
          .tab-content>.tab-pane1 {
               display: none;
               }
               .tab-content>.active {
                 display: block !important;
          }
          .card-header
          {
              text-transform: uppercase;             
              background-color:#868686;
          }
          .card-header a{
              color:#fff;
          }
          
          @media(min-width:768px) {
              .nav-pills {
                  display: flex;
              }
              
              .card {
                  border: none;
              }
                  .card-body {
                      padding: 0;
                  }
          
              .card .card-header {
                  display:none;
              }  
          
              .card .collapse{
                  display:block;
              }
          }
          
          @media(max-width:767px){
              .tab-pane1 {
                  display: block !important;
                  opacity: 1;
              }
          }
          .card-header.active 
          {   
              background-color: #1260b6;
          }
          .card-header.active a {
              color: #fff !important;            
          }
          body
  {
      width: 100%;
      height: 100%;
      margin: 0px;
      padding: 0px;
      overflow-x:hidden;
  }
  

.campus .slick-next{
  right: -50px !important;
  width: 80%;
}
button.slick-prev.slick-arrow {
  left: -50px !important;
  width: 80%;
}
.campus .slick-track{
	left: 100px !important;
  align-self: center;
}
.my-slider1 .slick-track{
  display: flex !important;
  align-items: center !important;
  gap: 15px;
}
.slick-slider {
  margin:0 -15px;
}
.sticky-button {
  position: fixed;
  right: -40px;
  bottom: 50%;
  z-index: 1000;
  background-color: #fbca38;
  color: #0c529f;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transform: rotate(-90deg);
  border-radius: 30px;
}

.acree h4{
	font-size: 20px;
	font-weight: 600 !important;
 }
 
 .slick-next:before, .slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #000 !important;}

.acree{
	
	background-color: #EFF5FE;
	/* padding: 100px 0px; */
}
.out-wrp{
	text-align: center;
	padding: 20px;
	background-color: #fff;
	margin: 10px;
	box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.1);
	border-radius: 10px;
}
.out-wrp img:nth-child(1){
	width: 100px;
	margin-right: 40px;
	border-radius: 50%;
}
.out-wrp img{
	margin-bottom: 20px;
	width: 100px;
}
.accbox{
	display: flex;
	gap: 10px;
	justify-content: flex-start;
	align-items: center;
	height: 200px;
	min-height: 200px;
	background-color: #fff;
	padding: 20px;
	margin: 20px 5px;
	border-radius: 10px;
	box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.1);
}

.acree h4 {
  font-size: 20px;
  font-weight: 600 !important;
}

.accbox p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.8;
  color: #676767;
  margin-bottom: 15px;
}

.accbox img{
	height: 100px;
	width: 150px;
	object-fit: contain;
}
.accbox p{
	margin-bottom: 0px;
}

.single-counter-area h1 {
    font-size: 60px;
    font-weight: 700;
}
.single-placement-contetnt {
	box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.1);
	padding: 17px;
	height: 210px;
	min-height: 222px;
  background-color: #fff;
  border-radius: 10px;
  color: #0065B3;
  margin-bottom: 10px;
  }
  .single-placement-contetnt p{
    color: #000;
  }
  .single-placement-contetnt span{
    
    color: #0065B3;
  }
  .placement-content{
    padding-top: 15px;
  }
.bg-blue {
    background-color: #0065B3;
    color: #fff;
    padding: 50px 0px 30px 0px;
}


:root {
	--marquee-width: 80vw;
	--marquee-height: 20vh;
	/* --marquee-elements: 12; */ /* defined with JavaScript */
	--marquee-elements-displayed: 5;
	--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
	--marquee-animation-duration: calc(var(--marquee-elements) * 3s);
  }
  @media (max-width:767px) {
    :root{
        --marquee-width: 280vw;}
        .marquee-content{gap:0px;}}

  .marquee {
	width: 100%;
	height: 135px;
	background-color: #fff;
	color: #eee;
	overflow: hidden;
	position: relative;
}
  .marquee:before, .marquee:after {
	position: absolute;
	top: 0;
	width: 10rem;
	height: 100%;
	content: "";
	z-index: 1;
  }

  marquee:before {
	left: 0;
	background: linear-gradient(to right, #111 0%, transparent 100%);
  }

  .marquee-content {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
  /* .marquee-content:hover {
	animation-play-state: paused;
  } */
  @keyframes scrolling {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
  }
  .marquee-content li {
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
	white-space: nowrap;
  }
  
  .marquee-content li img {
	width: 100%;
	/* height: 100%; */
	border: 2px solid #fff;
}
/* End font-face css*/
.accordion-item {
  margin-bottom: 13px;}

button.accordion-button.cname {
  padding: 30px 20px;
  font-size: 17px;
  border: 1px solid #ddd;
}
button.accordion-button.cname1 {
  padding: 20px 0px;
  font-size: 17px;
  
    
    color: #0065B3;
    font-weight: 700;
  
}
button.accordion-button.cname1.collapsed:focus{
  border-color: white!important;

}
.cname-3 {


    font-weight: 700;
    font-size: 15px;
  
}.cname-4 {

  font-weight: 700;
  font-size: 15px;
  color: #0065B3;
}
.chage{
  padding: 5px 0px !important;
}
button.accordion-button.name-2 {
  
  font-size: 17px;
  
}

.accordion-button:not(.collapsed) {
  color: black !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
.accordion-button:focus{
  border-color: transparent !important;
}
.marquee-content li img {
	max-width: 200px;
  width: 130px;
	}


a{
  text-decoration: none !important;
  color: white !important;
  
    font-size: 16px;
    font-weight: 600;

}

.new-slider .thumbnail-holder img{
    width:330px;
}
.acree h4{
	font-size: 20px;
	font-weight: 600 !important;
 }
 .accbox img{
	height: 100px;
	width: 150px;
	object-fit: contain;
}
.acree{
	
	background-color: #EFF5FE;
	/* padding: 100px 0px; */
}
.out-wrp{
	text-align: center;
	padding: 20px;
	background-color: #fff;
	margin: 10px;
	box-shadow: 0px 0px 24px -6px rgba(0,0,0,0.1);
	border-radius: 10px;
}

.marquee-content {
	list-style: none;
	height: 100%;
  gap: 10px;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
  }
/* #Navigation
================================================== */
span {
  font-size: 16 px;
  font-weight: 600;}

.cname{
  
  color: #0065B3;
  font-weight: 700;
}
.cname1{
 
  color: #0065B3;
  font-weight: 700;
}
.cname-2{
  font-size: 14px !important;
 
  
}
#border{
  border: none;
 
 
  padding:0px 10px;
}
#accordionExample-1{
  border-bottom:1px solid black ;
}
.inbox {
  border-bottom: 1px solid;
  padding: 10px;
  
}
.DURATION{
  font-size: 16px;
  font-weight: 700;
} 

.title p{
  padding-top: 10px;
  font-size: 19px;
}


i.fa-phone.fas {
  /* transform: rotate(90deg); */
}
.slick-initialized .slick-slide {
  display: flex !important;
}
.start-header {
    
        padding: 20px 0;
  
  }
  .btn2 {
    border-radius: 30px;
    color: #0c529f;
    background-color: #fbdedb;
    display: inline-block;
    background: #fbca38;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
    font-size: 14px; 
    text-align: center;
    text-decoration: none !important;
    position: relative;
    padding: 10px 20px !important;
}

.btn2 {
  position: relative;
  border-color: #979695;
  color: #979695;
}
.btn2:hover {
  transform: translateY(-0.25em);
  border-color: #5e5e5e;
  color: #5e5e5e;
}
.btn2:hover::before {
  opacity: 1;
}
.btn2::before {
  width: 100%;
  height: 1em;
  position: absolute;
  left: 0;
  bottom: -1.35em;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 0;
  transition: all 0.65s;
  content: "";
}
.nav-item .btn2 {
    color: #0c529f !important; 
    text-decoration: none !important;    
}
  .start-header.scroll-on {
    box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
    padding: 10px 0;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .start-header.scroll-on .navbar-brand img {
    height: 24px;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .navigation-wrap {
    position: realtive;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background-color: #0c529f !important;
  }

  
  .navbar {
    padding: 0;
  }
  .navbar-brand img {
    
    width: auto;
    display: block;
    
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .navbar-toggler {
    float: right;
    border: none;
    padding-right: 0;
  }
  .navbar-toggler:active,
  .navbar-toggler:focus {
    outline: none;
  }
  .navbar-light .navbar-toggler-icon {
    width: 24px;
    height: 17px;
    background-image: none;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all 300ms linear;
  }
  .navbar-light .navbar-toggler-icon:after,
  .navbar-light .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 1px;
    background-color: #fff;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
  }
  .navbar-light .navbar-toggler-icon:after {
    top: 8px;
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
  }
  .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
  }
  li.nav-link {
    color: #fff !important;
    font-weight: 500;
    transition: all 200ms linear;
  }
  li.nav-item:hover .nav-link {
    color: #fff !important;
  }
  li.nav-item.active .nav-link {
    color: #fff !important;
  }
  .navbar-light .navbar-nav .nav-link {
    color:#fff;;
}



  li.nav-link {
    position: relative;
    padding: 5px 0 !important;
    display: inline-block;
  }
  li.nav-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    
    opacity: 0;
    transition: all 200ms linear;
  }
  li.nav-item:hover:after {
    bottom: 0;
    opacity: 1;
  }
  li.nav-item.active:hover:after {
    opacity: 0;
  }
  li.nav-item {
    position: relative;
    transition: all 200ms linear;
  }
  

/* Strart body css */
html,body{
  overflow-x: hidden;
}
body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x:hidden;
}
body{
    font-family: 'Open Sans', sans-serif;}
h1, h2, h3, h4, h5, h6{  font-family: 'Open Sans', sans-serif;}
p{ font-family: 'Open Sans', sans-serif;}
a{
    color:#fff;
}a:hover{
    color:#fff !important;
    text-decoration: none;
}
.hero-section
{
    
background: #0c529f;
    
background-size: cover;
    
background-position: center;
    
transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    
margin-top: 0px;
    
margin-bottom: 0px;
    
padding: 97px 0px 0px 0px;
    
background-blend-mode: overlay;
}
.hero-section h1
{
    color:#fff;
    font-size:45px;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 0px;
}
.hero-section h1 span
{
    color:#fbca38;
    font-size:46px;
    font-weight:800;
    font-family: 'Open Sans', sans-serif;
}
.hero-logo
{
 
  background-image: url(../images/hero-back.png);
  background-size: 100%; 
  background-repeat: no-repeat;
     
}
.hero-logo .blue-line
{
  border-right: 2px solid #395b99;
}
.hero-logo img{width:100%; }
.orange
{
    background-color: #f8fbff;
    color:#000;
}
/*.orange a{
    color:#000;
}*/

.orange .text{ font-size:19px; line-height:30px;}
.nav-tabs
{
  margin: 0;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  border-radius: 2px 2px 0px 0px;
}
.nav-tabs .nav-link.active {
    text-transform: uppercase;
    color: #fff !important;
    background-color: #0c529f !important;  
    font-size: 20px;
    font-weight:800;
    font-family: 'Open Sans', sans-serif;
     width: 33.3%;    
    letter-spacing: 0px !important;    
    bottom: 0px;
    overflow: hidden;    
    transition: 0.3s ease;
    height: 110px;
    
}

.move-up:hover{
    background-color: crimson;
    transition: all .5s;
    transform : translateY(-10px);
}

.nav-tabs .nav-link{
  text-transform: uppercase;
  font-weight: 600;
  color: #fff !important;
  background-color: #fbca38 !important;
  border-color: none;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Open Sans', sans-serif;
  height: 100px;
  width: 33.3%;
  letter-spacing: 0px !important;   
  cursor: pointer; 
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center !important;
  align-items: end;
  overflow: hidden;
  transition: 0.3s ease;
}
.tab-content
{
    padding:20px 10px;
}
.nav-pills .nav-link {
   
    background-color: #868686;
    border-radius: 0px;
    margin: 10px 0px;
    padding:15px 0px;
    color: #fff;
}
.nav-pills .nav-link.active {
    color: #fff;
    background-color: #1260b6;
}
.tab-pane p span{
    color:#0065B3;
    font-weight:700;
    text-transform: uppercase;
    padding-right:10px;
}
.btn1 {
    padding: 10px 20px;
    border-radius: 30px;
    color: #fbdedb;
    background-color: #fbdedb;
    display: inline-block;
    background: #2169b9;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
    font-size: 16px !important;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none !important;
    position: relative;
}

.btn1 {
  position: relative;
  border-color: #fff;
  color: #fff;
}
.btn1:hover {
  transform: translateY(-0.25em);
  border-color: #5e5e5e;
  color: #fff;
}
.btn1:hover::before {
  opacity: 1;
}
.btn1::before {
  width: 100%;
  height: 1em;
  position: absolute;
  left: 0;
  bottom: -1.35em;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  opacity: 0;
  transition: all 0.65s;
  content: "";
}
.btn3 {
  padding: 10px 20px;
  border-radius: 30px;
  color: #fbdedb;
  background-color: #fbdedb;
  display: inline-block;
  background: #fbca38;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none !important;
  position: relative;
}

.btn3 {
position: relative;
border-color: #fff;
color: #fff;
}
.btn3:hover {
transform: translateY(-0.25em);
border-color: #5e5e5e;
color: #fff;
}
.btn3:hover::before {
opacity: 1;
}
.btn3::before {
width: 100%;
height: 1em;
position: absolute;
left: 0;
bottom: -1.35em;
background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
opacity: 0;
transition: all 0.65s;
content: "";
}
  .btn:hover,
  .btn:focus {
    opacity: 0.8;
    color:#fff !important;
    text-decoration: none !important;
  }
  .btn:active {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
  }
  .btn.block {
    display: block !important;
  }
  .btn.circular {
    border-radius: 50em !important;
  }
  .nav-pills .nav-link.active:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 99%;
    border-right: 5px solid yellow;
    height: 15%;
    
}
.title{
    color:#0e54a4;
    font-size:35px;
    font-weight:700;
   
}
.blue
{
      
    background-color: #1260b6;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100%;   
   
}
.display-4 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}
.border-yellow
{
    border-left: 5px solid #fbca38;
}
.testimonial
{
   background-color:#125fb4;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;    
    color:#fff;
    background-repeat: no-repeat;
    background-position: center top;    
}
.testimonial h1
{      
    font-style: normal;
    text-decoration: none;
    color:#FFf;
    font-size:35px;
    font-weight:700;
    text-align: center !important;
    
}
.testimonial .sub-title
{
    color: #000;
    font-size: 18px;
    font-weight: bold;
    font-style: italic;
}
.testimonial .desc
{
    color: #115aab;
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
}
.student
{
  font-weight:900;
  font-size:20px;
}
.wrapper{
    padding: 10px 0;
    overflow-x: hidden;
  }
  .yellow-background
  {
    background-color: #fbca38;
    padding: 30px;
    margin-top:30px;
  }
  .yellow-business
  {
    background-image: url('../images/yellow-back-student.png');
    background-repeat: no-repeat;
    background-position: top;
    background-size:cover; 
    padding:50px;  
  }
  .yellow-business h1{
    color:#fff;
    font-size: 32px;
    font-weight:800;
    padding:20px 0px 0px 0px;
    
  }
  .human
  {   
    position: absolute; 
    z-index: 999;
     left:-30px;
     top:-10px;
  }
  .campus
{
 
    background-color: #EFF5FE;
}
.institute-info-wrapper {
  box-shadow: 0 60px 135px rgba(0,0,0,0.14), 0 15px 65px rgba(0,0,0,0.14);
  border-radius: 20px;
  padding: 20px 0px;
}
.single-institute-info {
  margin-bottom: 40px;
}
.tow-side-info {
  flex: 0 0 auto;
  width: 33.33%;
  text-align: center;
}
.single-institute-info p {
  font-size: 18px;
  color: #0c477f;
  margin-bottom: 0px;
}
.single-institute-info h1 {
  font-size: 62px;
  color: #0c477f;
  margin-bottom: 24px;
}
.center-intitution-logo {
  flex: 0 0 auto;
  width: 33.33%;
  text-align: center;
}
.campus p{
    font-size:18px;
    font-weight:700;
    color:#0e54a4;
    margin: 20px 0px;
}
.placement-bg
{
    background-image:url('../images/placement-bg.jpg');  
    background-repeat: no-repeat;    
    background-size: cover;   
}
.placement
{
   
margin: 20px 0px;
}
.placement-bg .title span
{
font-weight:800 !important;
}
.placement-bg .title{
  color: #0e54a4;
    font-size: 60px;
    font-weight: 500;
}
.placement-bg p{
  
    font-size: 25px;
    
}
.gain .title
{
  color:#0e54a4;
  font-weight:700;
}
.gain .title span
{
  color:#0e54a4;
  font-weight:900;
}
.life-srm
{
    background-image:url('../images/life-back.jpg');  
    background-repeat: no-repeat;    
    background-size: cover;   
}

.faq
{
    background-image:url('../images/faq.png');  
    background-repeat: no-repeat;    
    background-size: cover;
    background-position: right top;  
     
}
.faq h1{
    color:#fff;
}

.faq .block{background-color:#f9cf00;
    padding:20px 10px;
    margin-top:30px;
    font-size:15px;
    font-weight:800;
}
.faq .block:after {
    position: absolute;    
    right: -10%;   
    pointer-events: none;  
    font-family: FontAwesome;
      content: "\f178";
      font-size:15px;   
   color:#fff;
   
  }
.faq .block:hover{background-color:#fff;
    padding:20px 10px;
    margin-top:30px;
    font-size:15px;
    font-weight:800;
    color:#000;
}

.faq .block:hover::after{position: absolute;    
    right: -10%;   
    pointer-events: none;  
    font-family: FontAwesome;
      content: "\f178";
      font-size:15px;   
   color:#f9cf00;
}

.apply
{
    background-image:url('../images/APPLY-BACK.jpg');  
    background-repeat: no-repeat;    
    background-size: 100%;
    background-position: center center;   
}
.apply h1{
    color:#fff;
}
.footer-sec
{
    background-color: #fff;
    padding:5px 0px;
} 
  .my-slider{
    padding: 0 0px;
  }
  .slick-initialized .slick-slide{  
    color: #115aab;   
   
    display: flex;
    align-items: center;
    justify-content: center;
  } 
  
  .slick-next, .slick-prev{
    z-index: 5;
  }
  .slick-next{
    right: 0px !important;
  }
  .slick-prev{
    left: 0px !important;
  }
  .slick-next:before, .slick-prev:before{
    color: #000;
    font-size: 26px;
  }
  .slick-prev:before {
    content: '←';
}
.slick-next:before, [dir=rtl] .slick-prev:before {
    content: '→';
}
.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #fbca38 !important;
}
.slick-dots li.slick-active button:before
{
  color:#fff !important;
}
.d-padd
{
    padding:0;
    margin:0;
}

.thumbnail-holder img {
	-webkit-filter: sepia(10%);
	filter: sepia(10%);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
  border-radius:10px;
  
}
.thumbnail-holder:hover img {
	-webkit-filter: sepia(0);
	filter: sepia(0);
  transform: translateY(-0.25em);
}
.thumbnail-holder:hover p{ color:#1260b6;}

@media only screen and (max-width: 480px) and (min-width: 320px) {
  button.accordion-button.cname1{
    font-size: 15px !important;
  }
  .inbox-1  {

    font-weight: 700;
    font-size: 15px;
  
}.cname-4 {

  font-weight: 700;
  font-size: 15px;
  color: #0065B3;
}
.chage{
  padding: 5px 0px !important;
}
  
.thumbnail-holder p{
  font-size: 13px !important;
  text-align: left;
  padding-left: 10px;
  padding-bottom: 5px;
  position: absolute;
  bottom: -20px;
  width: 86%;
    color: #fff !important;
    border-radius: 0px 0px 10px 10px;
    background: linear-gradient(to bottom,rgba(15,15,15,0),rgb(0 0 0 / 100%) 100%);

}
     .circular{
     background-color: #fbca38 !important;
 }
    .institute-info-wrapper {
    flex-wrap: wrap;
    margin: 0px 10px;
}
.tow-side-info {
    width: 100%;
}
  button.accordion-button.cname {
    padding: 15px;
    font-size: 2vh;
  }

 
   
    
  .placement-bg .title {
    color: #0e54a4;
    font-size: 30px;
    font-weight: 500;
}

.fopad{
  padding-top: 3px;
}
  .hero-logo
{ 
  background-image: url(../images/hero-back.png);
  background-size: cover; 
  background-repeat: no-repeat;     
}
.hero-logo img{margin-bottom:10px;}
  .my-slider {
    margin: 25px;
}
  .nav-item .btn2 {
    color: #0c529f !important;
    text-decoration: none !important;
    margin-top: 15px;
    padding: 10px 25px !important;
}
    .hero-section
    {        
        padding: 20px 15px 0px 15px;
    } 
    .hero-section img
    {        
       width:100%;
    } 
    .hero-section h1 {
      color: #fff;
      font-size: 30px;
      font-family: 'Open Sans', sans-serif;
      letter-spacing: 0px;
      text-align: center;
  }
  .hero-section h1 span {
    color: #fbca38;
    font-size: 35px;
    font-weight: 800;
    font-family: 'Open Sans', sans-serif;
    text-align: center !important;
}
    .border-yellow {
      border-left:none !important;
    }   
    .padd
    {
        padding:0;
    }
    .blue
    {
      background-color: #1260b6;         
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size:cover;  
   }
    .blue h1
    {
        color:#fff;
    }
    .blue p
    {
        color:#fff;
    }
    .placement
    {
       
    margin: 20px 0px;
    }
    .yellow-background
    {
        background-color: #fbca38;
        padding: 50px 0px;
        margin-top: 50px;
    }
    .testimonial h1 {
        font-style: normal;
        text-decoration: none;
        color: #fff !important;
        font-size: 35px;
        font-weight: 700;
        padding-left: 0px;
        padding-top:20px;text-align:center;
    }
    .human
    {
        position: relative;
        z-index: 999;  
        right:auto;  
        width:100%; 
    }
    .human img
    {
        width:100%;
    }
    .apply {
        background-image: url(../images/APPLY-BACK.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .life-srm {
        background-image: url(../images/life-back.jpg);
        background-repeat: no-repeat;
        background-size: cover;
    }
    .life-srm img { width:100%;}
    .faq {
        background-image: url(../images/faq.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right !important;
        padding: 30px 0px !important;
    }
    
    .faq h1 {
      color: #fff;
      text-align:center;
  }
.yellow-business {
    background-color: #0065B3;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}
.yellow-business h1    
    {
  text-align:center;
    }
.nav-tabs .nav-link.active {
    text-transform: uppercase;
    color: #fff !important;
    background-color: #0c529f !important;
    border-color: none;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    width: 33.3%;
    transition: all .5s;
    transform: none;
    height: 110px;
    bottom: 0px;
    overflow: hidden;    
    transition: 0.3s ease;
    
}
.nav-tabs .nav-link {
    text-transform: uppercase;
    font-weight: 600;
    color: #fff !important;
    background-color: #fbca38 !important;
    border-color: none;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    width: 33.3%;
    letter-spacing: 0px !important;
    height: 100px;        
    cursor: pointer; 
    position: relative;
    display: flex;
    justify-content: center;
    align-items: end;
    overflow: hidden;
    transition: 0.3s ease;
}
.nav-tabs
{
  margin: 0;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  border-radius: 2px 2px 0px 0px;
}
.nav-pills .nav-link.active:after {
  content: '';
  position: relative;
  border-right: 5px solid yellow;
  border: none;
}
.title {
  color: #0e54a4;
  font-size: 30px;
  font-weight: 700;
}
}
@media only screen and (max-width: 900px) {
     
  .mob-first{
    background-color: #0c529f;
  }
     
  .mob-first h1{
    color: #fff;
    text-align: left;
    font-size: 22px;
  }
  
  .mob-first h1 span {color: #f9cf00;}
  .hero-logo {
    background-image: url(../images/hero-back.png);
    background-size: cover;
    background-repeat: no-repeat;
}
    .hero-section
    {        
        padding: 20px 15px 0px 15px;
    }  
    .hero-section img
    {        
       width:100%;
    }  
    .fopad{
      padding-top: 20px;
    }
    .padd
    {
        padding:0;
    }
    .blue
    {
      background-color: #1260b6;        
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size:cover;   
       
    }
        .yellow-background
        {
            background-color: #fbca38;
            padding: 50px 0px;
            margin-top: 0px;
        }
    .testimonial h1 {
      font-style: normal;
      text-decoration: none;
      color: #fff;
      font-size: 45px;
      font-weight: 700;
      padding-left: 0px;
      padding-top: 20px;
      text-align: center;
    }
    .testimonial {
      background-color:#125fb4;
      transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
      color: #fff;
      background-repeat: no-repeat;
      background-position: center top;
      background-size: cover;
  }
    .human
    {
        position: relative;
        z-index: 999;  
        right:auto;  
        width:100%; 
    }
    .human img
    {
        width:100%;
    }
    .apply {
        background-image: url(../images/APPLY-BACK.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }
    .life-srm {
        background-image: url(../images/life-back.jpg);
        background-repeat: repeat;
        background-size: contain;
    }
    .life-srm img { width:100%;}
    .faq {
        background-image: url(../images/faq.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
        padding: 30px 0px;
    }
    .faq .block:after {
        position: relative;
        
        pointer-events: none;
        font-family: FontAwesome;
        content: "\f178";
        font-size: 15px;
        color: #fff;
    }
    .yellow-business {
        background-image: url(../images/yellow-back-student.jpg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 50px 0px;
    }
    .nav-tabs .nav-link.active {
      text-transform: uppercase;
      color: #fff !important;
      background-color: #0c529f !important;
      border-color: none;
      font-size: 16px;
      font-weight: 800;
      font-family: 'Open Sans', sans-serif;
      width: 33.3%;
      transition: all .5s;
      transform: none;
      height: 110px;
      bottom: 0px;
      overflow: hidden;    
      transition: 0.3s ease;
     
  }
    .nav-tabs .nav-link {
      text-transform: uppercase;
      font-weight: 600;
      color: #fff !important;
      background-color: #fbca38 !important;
      border-color: none;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Open Sans', sans-serif;
      width: 33.3%;
              letter-spacing: 0px !important;
      height: 100px;        
      cursor: pointer; 
      position: relative;
      display: flex;
      justify-content: center;
      align-items: end;
      overflow: hidden;
      transition: 0.3s ease;
    }
    .nav-tabs
{
  margin: 0;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  border-radius: 2px 2px 0px 0px;
}
.thumbnail-holder img {
  -webkit-filter: sepia(10%);
  filter: sepia(10%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  width:100%;
}
.border-yellow {
  border-left: none !important;
}
.campus p {
  font-size: 24px;
  font-weight: 600;
  color: #868686;
}
}

@media only screen and (max-width: 1200px) and (min-width: 1100px)  {
     
     
  .campus p {
    font-size: 28px;
    font-weight: 800;
    color: #868686;
}
    .faq {
        background-image: url(../images/faq.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
        padding: 50px 0px;
    }
    .hero-section img
    {        
        width:100%;
    }  
    .life-srm {
      background-image: url(../images/life-back.jpg);
      background-repeat: repeat;
      background-size: cover;
  }
  .yellow-background {
    background-color: #fbca38;
    padding: 56px 0px 0px 70px;
    margin-top: 40px;
  }
  .yellow-business {
    background-image: url(../images/yellow-back.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
.thumbnail-holder img {
  width:100%;
}
.blue {
  background-image: url(../images/blue-back.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: inherit;
}
}
@media only screen and (max-width: 1100px) and (min-width: 1000px)  
{
  .campus p {
    font-size: 28px;
    font-weight: 800;
    color: #868686;
}
  .thumbnail-holder img {
    width:100%;
  }
    .faq {
        background-image: url(../images/faq.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right;
        padding: 50px 0px;
    }
    .hero-section img
    {        
       width:100%;
    }  
    .life-srm {
      background-image: url(../images/life-back.jpg);
      background-repeat: repeat;
      background-size: contain;
  }
  .yellow-business {
    background-image: url(../images/yellow-back.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}
.yellow-background {
  background-color: #fbca38;
  padding: 31px 30px 30px 59px;
  margin-top: 10px;
}
.border-yellow {
  border-left: none !important;
}
.blue {
  background-image: url(../images/blue-back.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: inherit;
}
}
.card {
   background-color: transparent !important;
}
/* ------------------------------------------------------------ Changes by nagi -------------------------------------------------------------------- */

#placement-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
}

.my-slider1 img {
  width: 200px;
  height: auto;
}

.nirf-container {
  text-align: center;
  padding: 20px;
}

.nirf-container h1 {
  color: #1d53a3;
  font-weight: bold;
  font-size: 35px;
  margin-bottom: 20px;
}

.grid-nirf {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  justify-content: center;
  border: 2px solid;
  font-size: 2.5rem;
  font-weight: bold;
  color: #0c477f;
  background-color: #e9f0fb;
  border-radius: 8px;
  height: 170px;
}

.grid-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  height: 100%;
}

.grid-image img {

  width: 40%;
  height: auto;
}

.grid-item span {
  display: block;
  margin-top: 5px;
  color: #333;
  font-weight: 600;
  font-size: 1.5rem;
}

.support {
  display: none;
}

@media screen and (max-width: 768px) {  
  .grid-nirf {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 10px;
  }

  .support {
    display: block;
  }


  .grid-item {
    font-size: 24px;
    height: 135px;
    padding: 15px;
  }

  .grid-image img {
    width: 60px;
    margin-right: 100%;
    /* height: 100px; */
    width: 100%;
  }

  .grid-item span {
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 10px;
  }

  .d-grid img {
    padding: 15px;
    max-width: 150px;
  }

  .sticky-button {
    bottom: 50%;
}
}

/* Company/Placement Logos Grid Styles */
.d-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.container-placement {
  padding-right: 11%;
  padding-left: 11%;
  margin-right: auto;
  margin-left: auto;
}

.d-grid img {
  height: 100px;
  width: 100%;
  object-fit: contain;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 0px 5px 0px #e3e3e3;
  transition: .3s ease-out;
}

.d-grid img:hover {
  scale: 1.1;
}

.company-area {
  padding: 60px 0;
  background-color: #fff;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: rgba(3, 78, 161);
  margin-bottom: 20px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 10px;
  }

  .d-grid img {
    padding: 15px;
    max-width: 150px;
  }

  .company-area {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 24px;
  }
}


/* Toggle arrow for prerequisites accordion - corner of prereq-heading */
.prerequisites-section .prereq-heading {
    position: relative;
    padding-right: 30px;
}
.prerequisites-section .prereq-heading:after {
    font-family: FontAwesome;
    content: "\f078"; /* fa-chevron-down */
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
}
.prerequisites-section .prereq-heading.active:after {
    content: "\f077"; /* fa-chevron-up */
}

/* Fallback divider for prerequisites list items */
.prerequisites-section .panel-body .list-group-item {
    border-bottom: 2px solid #ddd !important;
}
.prerequisites-section .panel-body .list-group-item:last-child {
    border-bottom: none !important;
}
#prerequisitesAccordion .prereq-heading{display:block !important;}

/* For Panel/Accordion */
.panel-default > .panel-heading {
    padding: 15px;
    background-color: #ffffff;
    border-color: #ddd;
    display: block;
    margin-top: 0px;
    cursor: pointer;
}

.panel-heading.active {
    background: linear-gradient(to right, #FBCA38, #FFA700);
    color: #000000;
}

.panel-heading {
    background-color: #fff;
    color: #000;
}

.panel-default{
    margin-bottom: 10px !important;
}

.panel-title {
    font-weight: 600;
    font-size: 16px;
    color: #000;
}

.accordion-button:after {
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    content: "\e114";
    float: right;
    color: #000;
    transition: all 0.3s;
}

.accordion-button.collapsed:after {
    content: "\e080";
}

#prerequisitesAccordion a{color:#000 !important;}
#prerequisites .panel-body{background-color: #fff !important;padding:10px;}
.panel-info {
    border-color: #bce8f1;
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
