.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 0px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 7%;
}
.button1 {
  background-color: white;
  color: black;
  border: 3px solid #7d213ee6;
  border-radius: 7%;
  font-size: 20px;
}
.button1:hover {
  background-color: white;
  color: #b35555;
  border: 3px solid #c86e91e6;
  border-radius: 7%;
  font-size: 20px;
}
.button2 {
  background-color: #008CBA;
  color: white;  
  border: 2px solid #008CBA;
}
.button2:hover {
  background-color: #b7b7b7; 
  color: black;   
  border: 2px solid #555555;
}
.button2_m {
  background-color: #b7b7b7;
  color: black;
  border: 2px solid #555555;
}
.button2_m:hover{
  background-color: #008CBA;
  color: white;
}

.button5 {
  background-color: #555555;
  color: #fff;
  border: 2px solid #555555;
}
.button5:hover {
  background-color: #b7b7b7;
  color: #000;
  border: 2px solid #555555;
}
.button5_m {
  background-color: #b7b7b7;
  color: black;
  border: 2px solid #555555;
}
.button5_m:hover {
  background-color: #555555;
  color: white;
}
.apply_now{
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  width: 35%;
  background-color: #8a3751;
  color:#fff;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px
}
.apply_now:hover {
  background-color: #d16d8c;
  color: #000;
}
.testimonial{
  margin-bottom: 2px;
  text-align: justify;
  padding: 5px;
  font-family: sans-serif;
}
.card{
  border: 2px solid #998484;
}
.avatar1{
  width: 120px;
  margin-top: -60px;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 20%;
}
.rounded-circle1{
  border-radius: 20%;
}
.faculty img{
  width: auto;
}
.faculty1 .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-9{
  padding-right: 2px;
  padding-left: 2px;
}

.faculty1 .col-md-12{
  padding-right: 5px;
  padding-left: 10px;
}
.faculty1 h5{
  padding-top: 1px;
  padding-bottom: 0px;
  font-size: 15px;
  font-weight: 500;
}
.studentPast img{
  width: auto;
}
.placement-snapshot-key-stats {
  display: flex;
  margin-top: 30px;
  height: 160px
}
.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.cardBox {
  box-shadow: 0 2px 40px 0 rgba(204,204,204,0.5);
  border: 35px solid #ececec !important;
}
.highlights{
  float: left;
  position: relative;
  width: 100%;
}
.highlights .col-md-3{
  width: 20%;
}
.flexslider{
  height: 635px;
} 
.sticky_add {
  position: absolute;
  bottom: 5%;
  z-index: 81;
  width: 100%;
  z-index: 9999;
}

/*===== Header Banner =====*/
    @media screen and (max-width: 375px) {
      .flexslider{
        height: 190px;
      }
    }
    @media only screen and (min-device-width : 376px) and (max-device-width : 400px) {
      .flexslider{
        height: 190px;
      }
    }
    @media only screen and (min-device-width : 401px) and (max-device-width : 460px) {
      .flexslider{
        height: 217px;
      }
    }
    @media only screen and (min-device-width : 461px) and (max-device-width : 767px) {
      .flexslider {
        height: 242px;
      }
    }    
    @media only screen and (min-device-width : 768px) and (max-device-width : 1024px){
      .flexslider{
        height: 402px;
      }
    }
/*===== Header Banner =====*/

/*===== Video Button Start =============*/
  .video-play-button {
    position: absolute;
    z-index: 10;
    top: 72%;
    left: 65%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 31px 11px 18px 28px;
  }
  .video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #ba1f24;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
  }
  .video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #fa183d;
    border-radius: 50%;
    transition: all 200ms;
  }
  .video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
  }
  .video-play-button img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 22px solid #fff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }  
  .video-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.80);
    opacity: 0;
    transition: all ease 500ms;
  }
  .video-overlay.open {
    position: fixed;
    z-index: 1000;
    opacity: 1;
  }
  .video-overlay-close {
    position: absolute;
    z-index: 1000;
    top: 15px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 200ms;
  }
  .video-overlay-close:hover {
    color: #fa183d;
  }
  .video-overlay iframe {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    /* width: 90%; */
    /* height: auto; */
    box-shadow: 0 0 15px rgba(0,0,0,0.75);
  }
/*===== Video Button End =============*/

/*===== Popup Window Start ============*/
  #fade {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 9999;
    -moz-opacity: 0.8;
    opacity: .80;
    filter: alpha(opacity=80);
  }
  #light {
    display: none;
    position: absolute;
    top: 6%;
    left: 5%;
    width: 1200px;
    height: 500px;
    margin-left: ;
    margin-top:;
    border: 2px solid #FFF;
    background: #FFF;
    z-index: 99999;
    overflow: visible;
  }
  #boxclose {
    float: right;
    cursor: pointer;
    color: #fff;
    border: 1px solid #AEAEAE;
    border-radius: 3px;
    background: #222222;
    font-size: 31px;
    font-weight: bold;
    display: inline-block;
    line-height: 0px;
    padding: 11px 3px;
    position: absolute;
    right: 2px;
    top: 2px;
    z-index: 1002;
    opacity: 0.9;
  }
  .boxclose:before {
    content: "×";
  }
  #fade:hover ~ #boxclose {
    display:none;
  }
/*===== Popup Window End ============*/

/*===== Responsive Popup Start ======*/
  @media screen and (max-width: 375px) {
    .video-play-button {
      top: 30%;
      left: 65%;
      padding: 35px 10px 18px 28px;
    }
    .video-play-button:before {
      width: 50px;
      height: 50px;
    }
    .video-play-button:after {
      width: 50px;
      height: 50px;
    }
    .video-play-button span {
      border-left: 19px solid #fff;
      border-top: 14px solid transparent;
      border-bottom: 13px solid transparent;
    }
    #light {
      top: 10%;
      left: 5%;
      width: 90%;
      height: 170px;        
    }
    .faculty1 img{
      width: auto;
    }
    .highlights{
      float: left;
      position: relative;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .highlights .col-md-3{
      width: 100%;
    }
    .cardBox {
      border: 5px solid #ececec !important;
    }
    .width_mobile_30{
      width: 30%;
      float: left;
    }
    .width_mobile_70{
      width: 70%;
      float: left;
    }
  }
  @media only screen and (min-device-width : 376px) and (max-device-width : 400px) {
    .video-play-button {
      top: 35%;
      left: 65%;
      padding: 35px 10px 18px 28px;
    }
    .video-play-button:before {
      width: 50px;
      height: 50px;
    }
    .video-play-button:after {
      width: 50px;
      height: 50px;
    }
    .video-play-button span {
      border-left: 19px solid #fff;
      border-top: 14px solid transparent;
      border-bottom: 13px solid transparent;
    }
    #light {
      top: 10%;
      left: 5%;
      width: 90%;
      height: 170px;        
    }
    .faculty1 img{
      width: auto;
    }
    .highlights{
      float: left;
      position: relative;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .highlights .col-md-3{
      width: 100%;
    }
    .cardBox {
      border: 5px solid #ececec !important;
    }
    .width_mobile_30{
      width: 30%;
      float: left;
    }
    .width_mobile_70{
      width: 70%;
      float: left;
    }
  } 
  @media only screen and (min-device-width : 401px) and (max-device-width : 460px) {
    .video-play-button {
      top: 35%;
      left: 65%;
      padding: 35px 10px 18px 28px;
    }
    .video-play-button:before {
      width: 50px;
      height: 50px;
    }
    .video-play-button:after {
      width: 50px;
      height: 50px;
    }
    .video-play-button span {
      border-left: 19px solid #fff;
      border-top: 14px solid transparent;
      border-bottom: 13px solid transparent;
    }
    #light {
      top: 10%;
      left: 5%;
      width: 90%;
      height: 170px;        
    }
    .faculty1 img{
      width: auto;%;
    }
    .highlights{
      float: left;
      position: relative;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .highlights .col-md-3{
      width: 100%;
    }
    .cardBox {
      border: 5px solid #ececec !important;
    }
    .width_mobile_30{
      width: 30%;
      float: left;
    }
    .width_mobile_70{
      width: 70%;
      float: left;
    }
  } 
  @media only screen and (min-device-width : 461px) and (max-device-width : 767px) {
    .video-play-button {
      top: 46%;
      left: 65%;
      padding: 35px 10px 18px 28px;
    }
    .video-play-button:before {
      width: 50px;
      height: 50px;
    }
    .video-play-button:after {
      width: 50px;
      height: 50px;
    }
    .video-play-button span {
      border-left: 19px solid #fff;
      border-top: 14px solid transparent;
      border-bottom: 13px solid transparent;
    }
    #light {
      top: 10%;
      left: 5%;
      width: 90%;
      height: 170px;        
    }
    .faculty1 img{
      width: auto;
    }
    .highlights{
      float: left;
      position: relative;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .highlights .col-md-3{
      width: 100%;
    }
    .cardBox {
      border: 5px solid #ececec !important;
    }
    .width_mobile_30{
      width: 30%;
      float: left;
    }
    .width_mobile_70{
      width: 70%;
      float: left;
    }
  }
  @media only screen and (min-device-width : 768px) and (max-device-width : 990px){
    .video-play-button {
      top: 32%;
      left: 65%;
      padding: 35px 10px 18px 28px;
    }
    .video-play-button:before {
      width: 60px;
      height: 60px;
    }
    .video-play-button:after {
      width: 60px;
      height: 60px;
    }
    .video-play-button span {
      border-left: 20px solid #fff;
      border-top: 14px solid transparent;
      border-bottom: 15px solid transparent;
    }
    #light {
      top: 10%;
      left: 5%;
      width: 90%;
      height: 370px;        
    }
    .highlights{
      float: left;
      position: relative;
      padding-top: 60px;
      padding-bottom: 54px;
    }
    .highlights .col-md-3{
      width: 50%;
      float: left;
      position: relative;
    }
  }
  @media only screen and (min-width : 767px){
    #formAddDesktop{
      display: block;  
      padding: 0px 15px 0px 15px;
    }
    #formAddMobile{
      display: none;  
      padding: 0px 15px 0px 15px;
    }
  }
  @media only screen and (max-width : 768px){
    #formAddDesktop{
      display: none;  
      padding: 0px 15px 0px 15px;
    }
    #formAddMobile{
      display: block;  
      padding: 0px 15px 0px 15px;
    }
  }
/*===== Responsive Popup End ======*/
