body {
  background-color: #edf2f4;
  font-family: 'Open Sans', sans-serif;
}
.logo-carousel {
  overflow: hidden;
  padding: 20px 0;
}
.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 100s linear infinite;
}
.logo-track img {
  width: 100px;
  height: 100px;
  margin: 0 20px;
  border-radius: 50%;        /* circular logos */
  object-fit: cover;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.logo-track img:hover {
  transform: scale(1.1);
}
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.img_div{
    width: 100%;
    height: 120px;
    padding: 10px;
    overflow: hidden;
    object-fit: cover;
}
.info{
    width: 100%;
}
.image{
  padding: 1;
  width: 100%;
  height: 150px;
   object-fit: cover;
  transition: transform 0.4s ease;
}
.card {
  /* height: 250px; */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 1px solid #D32A31;
}

.card:hover {
  transform: translateY(-5px);
}
a {
  color: inherit;          /* use parent’s color */
  text-decoration: none;   /* remove underline */
}

a:hover,
a:focus,
a:visited {
  color: inherit;          /* keep same color on all states */
  text-decoration: none;
}
.heading{
  color: #D32A31;
  font-weight: bold;
  margin-top: 15px;
  font-size: 17px;
}
.main_heading{
  text-align: center;
  margin-top: 50px;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 50px;
}
.more_shares_div{
  width: 100%;
  height: 100px;
}