#custom-search-input{
    padding: 3px;
    border: solid 1px var(--bs-border-color);
    border-radius: 6px;
}

#custom-search-input input{
    border: 0;
    box-shadow: none;
}

#custom-search-input button{
    margin: 2px 0 0 0;
    background: none;
    box-shadow: none;
    border: 0;
    color: var(--bs-border-color);
    padding: 0 8px 0 10px;
    /* border-left: solid 1px var(--bs-border-color); */
}

#custom-search-input button:hover{
    color: var(--bs-primary);
}

#custom-search-input .glyphicon-search{
    font-size: 23px;
}
div.list-group a.list-group-item h2 { font-size: 18px !important; }



.news {
    background: var(--bs-body-bg);
    position: relative;
    overflow: hidden;
    z-index:1;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;  
    border: 1px solid var(--bs-border-color);
}

.news .img-figure {
  position: relative;
}

.news .img-figure img {
  position: relative; 
  overflow: hidden;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.news:hover .img-figure img {
  -webkit-transform: scale(1.10);
  -moz-transform: scale(1.10);
  -ms-transform: scale(1.10);
  -o-transform: scale(1.10);
  transform: scale(1.10);
}

.news .title {
  /*padding: 29px 30px;*/
  padding: 45px 30px;
  position: absolute;
  left: 0;
  background: var(--bs-body-bg);
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;  
}

.news .title h2 {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 19px !important;
/*  color: #3D6AA2;*/
  text-align: center;
}

.news:hover .title  {
  margin-top: -90px;
  background: var(--bs-body-bg);
}

.news  p.description {
  position: relative;
  font-weight: normal;
  line-height: 22px;
  opacity: 0;
  text-align: center;
  padding: 15px 30px 0px 30px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;  
}

.news:hover p.description  {
  opacity: 1;
}

p.more {
  text-align: center;
}

.more a {
    position: relative;
    font-size: 13px;
    margin-top: 30px;
    display: block;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-block;
    color: var(--bs-primary);
}

.more a:after {
    content: '';
    width: 18px;
    height: 1px;
    position: absolute;
    left: 55px;
    top: 9px;
    background: var(--bs-primary);
    vertical-align: middle;
    margin-left: 30px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.news:hover a:after {
    width: 30px;
}

.cat {
  background: var(--bs-primary);
  color: var(--bs-body-bg);
  text-transform: uppercase;
  position: absolute;
  left: 0;
  top: 20px;
  z-index: 1;
  padding: 3px 15px;
}