.outerContainer {
  display: flex;
  flex-direction: row;
  width: 40%;
  border: 1px solid silver;
  border-radius: 6px;
  overflow: hidden;
  margin: 1% 0 0 0;
  padding: 1%;
  align-items: center;
  background-color: var(--light-grey);
  @media (max-width: 900px) {
    width: 100%;
    margin: 2% 0;
  }
}

.scholarshipCardContainer > .active {
  background-color: var(--white);
  cursor: pointer;
}

.scholarshipCardContainer > .active:hover {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.HeadConatiner{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
}
.title {
  width: 90%;
  font-size: medium;
  font-weight: 500;
  padding-left: 25px;
  text-align: justify;
  @media (max-width: 500px) {
    width: 80%;
  }
}
.textContainer {
  font-size: 16px;
  letter-spacing: 1px;
  /* float: left; */
  width: 95%;
  margin-right: 1%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  @media (max-width: 900px) {
    width: 100%;
  }
}

.textContainer  .description {
  margin-top: 2%;
  font-size: medium;
  color: grey;
  text-align: left;
  padding-left: 25px;
  /* border: red solid; */
  @media (max-width:900px) {
    font-size: 11px;
  }
}

.blinking-div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-left: 2%;
  background-color: #D71313;
  animation: blink-animation 1s infinite; 
  @media(max-width: 500px){
    width:8px;
    height: 8px;
  }
}

@keyframes blink-animation {
  0%, 50%, 100% {
    opacity: 1; 
  }
  25%, 75% {
    opacity: 0; 
  }
}

.anouncementContainer {
  width: 100vw;
  padding: 2%;
}
.recentContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.scholarshipCardContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin: 2% 0 ;
  
}
.scholarshipTypeContainer {
  width: 100%;
  @media (max-width: 900px) {
    padding: 1% 0 0 2%;
    width: 90%;
    display: flex;
    flex-direction: column;
  }
}
.headText {
  font-size: medium;
  font-weight: 600;
  color: var(--darkGrey);
}
.verticalTitleBar {
  height: 5vh;
  width: 10px;
  background-color: var(--purple);
  margin-right: 2%;
  @media (max-width: 800px) {
    height: 3vh;
  }
}
.recentTextContainer{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.page-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  width: 100%;
}
.outerContainer > .duration {
  border: 1px solid silver;
  border-radius: .25em;
  text-align: center;
  min-width: 5rem;
  min-height: 5rem;
  /* background-color: #f6dddd; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
}
#from, #to {
  min-height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#from {
  background-color: #9dc3c9;
}
div#to {
  background-color: #dcb1e0;
}