
/* 
  ADMISSION BLOCK
*/
.title_wrapper{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title_wrapper a{
  border-bottom: 2px solid rgb(var(--main-color), 1);
}
/* more in UI-Blocks.css */
/* 
  NEWS n EVENTS
*/
.home_news_events .news .news_cards .news_card .image_wrapper{
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  /* height: 20vw;
  min-height: 200px;
  max-height: 280px; */
  aspect-ratio: 16/10;
}
.home_news_events .news .news_cards .news_card:first-child .image_wrapper{
  /* height: 25vw;
  min-height: 250px;
  max-height: 350px; */
  aspect-ratio: 16/10;
}
.home_news_events .news .news_cards .news_card .image_wrapper time{
  position: absolute;
  z-index: 1;
  border-radius: 3px 0 0 0;
  background-color: rgb(var(--white-color), 1);
  bottom: 0; right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.home_news_events .news .news_cards .news_card .image_wrapper img{
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: .5s ease-in-out;
  filter: 
    brightness(90%)
    saturate(90%);
}
.home_news_events .news .news_cards .news_card .image_wrapper img:hover{
  scale: 1.05;
  filter: none;
}
/*  */
.home_news_events .events .events_cards .event_card .event_card_footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* 
  RECTOR BLOCK
*/
.home_rector_block{
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.home_rector_block .text_block{
  max-width: 635px;
}
.home_rector_block .text_block .message{
  text-align: justify;
}
.home_rector_block .text_block div.text-right{
  text-align: right;
}
.home_rector_block .image_wrapper{
  position: relative;
  background-color: rgb(var(--white-color), 1);
  height: 370px;
  width: 370px;
  min-width: 300px;
  overflow: hidden;
  border-radius: 10px;
}
.home_rector_block .image_wrapper img{
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 1400px){
  .home_rector_block .text_block{
    max-width: 750px;
  }
}
@media screen and (max-width: 991px){
  .home_rector_block{
    gap: 40px;
    align-items: center;
  }
  .home_rector_block .image_wrapper{
    min-width: 250px;
  }
}
@media screen and (max-width: 767px){
  .home_rector_block{
    gap: 0;
    flex-direction: column;
    justify-content: start;
    align-items: flex-end;
  }
  .home_rector_block .image_wrapper{
    height: 75px;
    width: 75px;
    aspect-ratio: 1;
    min-width: 0;
    border-radius: 50%;
    margin-top: -55px;
  }
  .home_rector_block .text_block div.text-right{
    margin-right: 100px;
    margin-top: 50px !important;
  }
}



