.teacher-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  .teacher-card-header {
    background-color: #00bfa5;
    padding: 20px;
    color: white;
  }
  .teacher-card-body {
    padding: 20px;
  }
  .teacher-card img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 100px;
    height: 100px;
  }
  .teacher-card .row {
    margin-bottom: 10px;
  }
  .teacher-card-footer {
    background-color: #00bfa5;
    padding: 10px;
  }
  .teacher-card-footer a {
    color: white;
    text-decoration: none;
  }
  .teacher-card-footer a:hover {
    text-decoration: underline;
  }
  .teacher-card p{
    color:white;
}
/* enquiry card css */

.enquiry-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
  }
  .enquiry-card-header {
    background-color: #00bfa5;
    padding: 20px;
    color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .enquiry-card-body {
    padding: 20px;
    text-align: left;
  }
  .enquiry-card-body p {
    margin: 10px 0;
    font-size: 14px;
  }
  .enquiry-card-body strong {
    color: #00bfa5;
  }
  .enquiry-card-footer {
    background-color: #00bfa5;
    padding: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .enquiry-card-footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  .enquiry-card-footer a:hover {
    text-decoration: underline;
  }
  
  /*Loader Css*/
#loading{
  background-color: rgba(55,55,55,0.7);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  margin-top: 0px;
  top: 0px;
}
#loading-center{
  width: 100%;
  height: 100%;
  position: relative;
}
#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 150px;
  width: 150px;
  margin-top: -75px;
  margin-left: -75px;
}
.object{
  width: 20px;
  height: 20px;
  background-color: #FFF;
  float: left;
  margin-right: 20px;
  margin-top: 65px;
  -moz-border-radius: 50% 50% 50% 50%;
  -webkit-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
}
#object_one { 
  -webkit-animation: object_one 1.5s infinite;
  animation: object_one 1.5s infinite;
}
#object_two {
  -webkit-animation: object_two 1.5s infinite;
  animation: object_two 1.5s infinite;
  -webkit-animation-delay: 0.25s; 
  animation-delay: 0.25s;
}
#object_three {
  -webkit-animation: object_three 1.5s infinite;
  animation: object_three 1.5s infinite;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@-webkit-keyframes object_one {
  75% { -webkit-transform: scale(0); }
}
@keyframes object_one {
  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}
@-webkit-keyframes object_two {
  75% { -webkit-transform: scale(0); }
}
@keyframes object_two {
  75% { 
    transform: scale(0);
    -webkit-transform:  scale(0);
  }
}
@-webkit-keyframes object_three {
  75% { -webkit-transform: scale(0); }
}
@keyframes object_three {
  75% { 
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}


@media(max-width: 640px){
  .xs-hidden{
    display: none;
  }
}