.update{
  font-size: small;
  font-family: "Monserrat", sans-serif;
  left: 20px;
}
body{
  background-color: rgb(247, 240, 241);
}
header {
  text-align: center;
  background-color: #b64747;
  padding: 15px 8px;
  font-size: xx-large;
  font-weight: 900;
  color: rgb(255, 255, 255);
  font-family: "Monserrat", sans-serif;
}
.search {
  position: absolute;
  left: 75%;
}
.heading {
  text-align: center;
}
.card {
  width: 18rem;
  z-index: 1;
}
.news-card {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
}

.card-img-top {
  width: 100%;
  height: 15vw;
  object-fit: cover;
}
.card:after {
  position: absolute;
  width: 80%;
  height: 0px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  content: "";
  background: #ca5c5c;
  transition: 0.5s;
  z-index: -1;
}
.card:hover:after {
  width: 100%;
  height: 100%;
}

.global .social {
  width: 100%;
  background-color: #111;
  margin: 0 auto;
  text-align: center;
  padding: 35px;
  padding-bottom: 0px;
  border-top: 1px solid #eee;
  margin-top: 40px;
}
.global .social a {
  font-size: 22px;
  width: 45px;
  height: 45px;
  line-height: 39px;
  display: inline-block;
  border-radius: 50%;
  border: 2px solid #ca5850;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, 0.4);
  margin: 10px;
  color: #fff;
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}
.global .social a:hover {
  opacity: 0.9;
  box-shadow: 0px 1px 3px 2px rgba(255, 255, 255, 0.9);
}
.footer-bottom {
  background: #000;
  padding: 13px 0;
  text-align: center;
  color: white;
}
.footer-bottom h6 {
  word-spacing: 2px;
  text-transform: capitalize;
}
