 /*--------------- top Image section --------------------- */
 .bg-zoom {
  width: 100vw;              /* full viewport width */
  height: 400px;
  background-image: url(img/leadership/Student-Leadership-25-26.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
  transform-origin: center center;
  animation: zoomOut 8s ease-in-out forwards;

  /* important fix */
  will-change: transform;    /* optimize GPU rendering */
  backface-visibility: hidden;
}

@keyframes zoomOut {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}

/* Extra: stop page scrollbar flicker */
html, body {
  margin: 0;
  padding: 0;
 
}

.HeadingBar{
	  width:100px;margin:0 auto;height:3px;border-width:0;background-color:#3dcfe0;opacity:1
  		   }
 /*--------------- top Image section --------------------- */
 
.ParaText {
font-family: "Gordita", Sans-serif;
  font-size: 15px;
  color: #575757;
  line-height:28px;
}

.SubHeading {
    font-family: "Butler", Sans-serif;
    font-size: 30px;
    color: #003728;
	font-weight:600;
}


.HeadingBox {
  
  font-family: Butler;
    font-weight: 700;
	font-size:45px;
    letter-spacing: 0.02em;
	color:#333333;
	line-height: 1.37em;
}

.branch-name {
  background: #3DCFE0;
  padding: 3px 0;
  font-weight: 500;
  color: #000;
  font-family: 'Gordita', Sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  text-align:center;
}



@media (max-width: 992px) {
.bg-zoom {
height:300px;
}
  

  .HeadingBox {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
.bg-zoom {
height:180px;
}
 .HeadingBox {
    font-size: 35px;
    text-align: center;
  }

  .SubHeading {
    text-align: center;
	font-size:1.2em;
  }

}

@media (max-width: 480px) {
.bg-zoom {
height:150px;
}
  .HeadingBox {
    font-size: 1rem;
  }
  
  .SubHeading {
    text-align: center;
	font-size:1.1em;
  }

  .ParaText {
    font-size: 15px;
  }
}