.honours .row .col-lg-6
{
  margin-top:3rem;
}
.wrapper {
  display: flex;
  width: 90%;
  justify-content: space-around;
}

.card {
  width: auto;
  height: 98%;
  border-radius: 15px;
  padding: 1.5rem;
  background: white;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: 0.4s ease-out;
  box-shadow: 0px 7px 10px rgba(0, 0, 0, 0.5);
}
.card:hover {
  transform: translateY(20px);
}
.card:hover:before {
  opacity: 1;
}
.card:hover .info {
  opacity: 1;
  transform: translateY(0px);
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition: 0.5s;
  opacity: 0;
}
.card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px;
}
.card .info {
  position: relative;
  z-index: 3;
  color: white;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s;
  height: 100%;
    display: flex;
    align-items: center;
}
.card .info h1 {
  margin: 0px;
}
.card .info p {
  letter-spacing: 1px;
  font-size: 1.2rem;
  margin-top: 8px;
  color: white;
}
iframe
{
  border-width: 5px;
  border-radius: 15px;
}
.honours-embed
{
  border:5px solid var(--blue);
  border-radius: 15px;
  padding: 0px;
}
.honours h6
{
  padding: 0.5rem 1rem;
}
.honours
{
  padding: 3rem 2rem;
  margin:2rem 0rem;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width:768px)
{
  .honours
  {
    padding: 1rem 0.5rem;

  }
}