/* New cards of news*/

a.news_link:active,
a.news_link:hover,
a.news_link {
  text-decoration: none;
  color: #274ca9;
}

.container1 {
  display: flex;
  width: auto;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.card1 {
  margin: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgb(40 138 200 / 35%);
  overflow: hidden;
  width: 250px;
  transition: 0.4s;
}

.card1:hover {
  box-shadow: 0px 5px 5px 5px rgb(40 138 200 / 25%);
  transform: scale(1.05, 1.05);
}

.card1-header {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.card1Other-header {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.card1-header img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: 0.4s;
  position: absolute;
}

.card1Other-header img {
    width: 100%;
    height: 200px;
    object-fit: scale-down;
    position: absolute;
}

/*
.card1-header img:hover {
    transform: scale(1.3, 1.3);
}
*/

.card1-body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  padding: 10px;
  min-height: 120px;
}

.card1-body h4{
  font-size: 14px;
}

.user {
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

.userOther {
  display: flex;
  margin-top: 10px;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}


.user img {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin-right: 10px;
}

.user-info h5 {
  margin: 0;
}
.user-info small {
  color: #545d7a;
}