.posts {
  background: #fff;
}

.seperator {
  width: 10%;
  height: 3px;
  border: none;
  background: #111;
  margin-bottom: 30px;
}

.title {
  text-align: center;
}
.title .row {
  padding: 50px 0 0;
}
.title h1 {
  text-transform: uppercase;
}
.title .seperator {
  margin: 0 auto 10px;
}

.item {
  min-height: 1px;
  margin-bottom: 30px;
  position: relative;
  float: left;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.item .item-in {
  padding: 20px 30px;
  background: #fbf9f9;
  position: relative;
  transition: all 0.5s ease;
}
.item .item-in:hover {
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}
.item .item-in:hover:before {
  width: 100%;
}
.item .item-in::before {
  content: "";
  position: absolute;
  bottom: 0px;
  height: 2px;
  width: 0%;
  background: #111;
  right: 0px;
  transition: width 0.4s;
}

.item h4 {
  font-size: 18px;
  margin-top: 15px;
}
.item p {
  font-size: 12px;
}
.item a {
  font-family: "Cinzel", serif;
  font-size: 12px;
  text-transform: uppercase;
  color: #111;
  margin-top: 10px;
}
.item a i {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  font-size: 24px;
  display: inline-block;
  top: 5px;
  position: relative;
}
.item a:hover {
  text-decoration: none;
}
.item a:hover i {
  padding-left: 10px;
  opacity: 1;
  font-weight: 300;
}

.item .icon {
  position: absolute;
  top: 27px;
  left: -16px;
  cursor: pointer;
}
.item .icon a {
  font-family: "Cinzel", serif;
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-transform: none;
}
.item .icon svg {
  width: 32px;
  height: 32px;
  float: left;
}
.item .icon .icon-topic {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  display: inline-block;
  top: 0px;
  position: relative;
}
.item .icon:hover .icon-topic {
  opacity: 1;
  padding-left: 10px;
}

@media only screen and (max-width: 768px) {
  .item .icon {
    position: relative;
    top: 0;
    left: 0;
  }
}
.projcard {
  position: relative;
  width: 100%;
  height: auto;
  font-size: 18px;
  overflow: hidden;
  margin-bottom: 40px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #888;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.projcard:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
.projcard:hover .projcard-img {
  transform: scale(1.05) rotate(1deg);
}
.projcard:hover .projcard-bar {
  width: 70px;
}
.projcard::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.07;
}
.projcard-innerbox {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.projcard-img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  transition: transform 0.2s ease;
}
.projcard:nth-child(2n) .projcard-img {
  left: initial;
  right: 0;
}
.projcard-textbox {
  position: relative;
  top: 7%;
  bottom: 7%;
  left: 430px;
  width: 100%;
  padding: 0 10px;
  font-size: 17px;
}
.projcard-textbox::before, .projcard-textbox::after {
  content: "";
  display: block;
  background: #fff;
  position: absolute;
  top: -20%;
  left: -55px;
  height: 140%;
  width: 60px;
  transform: rotate(8deg);
}
.projcard-textbox::after {
  display: none;
  left: initial;
  right: -55px;
}
.projcard-textbox * {
  position: relative;
}
.projcard-textbox .read_more {
  padding: 5px 20px;
  color: #ffffff;
  background: #26597E;
  transition: all 0.4s ease-in-out;
}
.projcard-textbox .read_more:hover {
  background: #26597E;
}
.projcard:nth-child(2n) .projcard-textbox {
  left: initial;
  right: 430px;
}
.projcard:nth-child(2n) .projcard-textbox::before {
  display: none;
}
.projcard:nth-child(2n) .projcard-textbox::after {
  display: block;
}
.projcard-title a {
  color: #26597E;
  font-size: 20px;
  font-family: "Voces", "Open Sans", arial, sans-serif;
}
.projcard-subtitle {
  font-size: 16px;
  font-family: "Voces", "Open Sans", arial, sans-serif;
  color: #888;
}
.projcard-bar {
  left: -2px;
  width: 50px;
  height: 5px;
  margin: 10px 0;
  border-radius: 5px;
  transition: width 0.2s ease;
}
.projcard-blue .projcard-bar {
  background-color: #26597E;
}
.projcard-description {
  z-index: 10;
  height: 80px;
  font-size: 15px;
  color: #424242;
  overflow-y: hidden;
  text-overflow: ellipsis;
}
.projcard-description:hover {
  overflow-y: scroll;
}
.projcard-description::-webkit-scrollbar {
  width: 3px;
}
.projcard-description::-webkit-scrollbar-track {
  background-color: #999;
}
.projcard-description::-webkit-scrollbar-thumb {
  background: #111;
}

.faculty_card_box {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
}
@media screen and (max-width: 450px) {
  .faculty_card_box {
    gap: 10px;
    grid-template-columns: auto;
  }
}
.faculty_card_box .faculty-title a {
  font-size: 16px;
}
.faculty_card_box .card-body ul li a {
  color: #26597E;
  font-size: 12px;
}
.faculty_card_box .faculty_card {
  width: 250px;
  height: 250px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.4s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.faculty_card_box .faculty_card:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.post_footer {
  margin-top: 40px;
}
.post_footer p {
  margin-bottom: 0;
}
.post_footer .time_and_view {
  display: flex;
  justify-content: space-between;
}
.post_footer .time_and_view span {
  font-weight: 500;
}

.post_img_bg {
  height: 400px;
  margin-bottom: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#brm_items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 5px;
}
#brm_items .brm_card {
  height: 220px;
  transition: all 0.1s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  opacity: 0.9;
}
#brm_items .brm_card:hover {
  opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
#brm_items .brm_card .top {
  padding: 10px;
  height: 100px;
  display: flex;
  justify-items: center;
  vertical-align: middle;
}
#brm_items .brm_card .top .left_number span a {
  color: white;
  font-size: 45px;
  margin-right: 10px;
  font-family: "Courier New", Courier, monospace;
}
#brm_items .brm_card .top .right_name {
  padding-top: 10px;
}
#brm_items .brm_card .top .right_name span a {
  color: white;
  line-height: 1;
  font-size: 22px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
#brm_items .brm_card .bottom {
  height: 120px;
  padding: 10px;
  text-align: center;
}
#brm_items .brm_card .bottom img {
  height: 80px;
}/*# sourceMappingURL=posts_list.css.map */