/*!
 * Start Bootstrap - Blog Post (https://startbootstrap.com/template/blog-post)
 * Copyright 2013-2020 Start Bootstrap
 * Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-blog-post/blob/master/LICENSE)
 */
body {
  padding-top: 56px;
  background-color: #f5f5f5;
  font-size: 17px;
  line-height: 1.6;
}

a{
  color:rgb(33, 37, 41);
}

a:hover{
  color:#7cb342;
  text-decoration:none;
}

.blog-post a{
  color:#7cb342;
}

.blog-post a:hover{
  color:#7cb342;
  text-decoration:underline;
}

img[data-lazy-src]{
  will-change:contents;
}

.blog .image {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
  border: 1px solid #cccccc;
  padding: 10px;
}

.blog .image img {
  width: 100%;
  height: auto;
}

.blog .date {
  top: -10px;
  z-index: 99;
  width: 65px;
  right: -10px;
  height: 65px;
  padding: 10px;
  position: absolute;
  color:#FFFFFF;
  font-weight:bold;
  background: #5bc0de;
  border-radius: 999px;
}

.blog .blog-details {
  padding: 0 20px 0 0;
}


.blog {
  padding: 0;
}

.well {
  border: 0;
  padding: 20px;
  min-height: 63px;
  background: #fff;
  box-shadow: none;
  border-radius: 3px;
  position: relative;
  max-height: 100000px;
  border-bottom: 2px solid #ccc;
}
/* 
.blog .blog-details h2 {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
} */

.blog .date .blog-number {
  color: #fff;
  display: block;
  font-size: 24px;
  text-align: center;
}                    

.text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4; /* number of lines to show */
  line-clamp: 4; 
  -webkit-box-orient: vertical;
}

.grid-sizer, .grid-item { 
  width: 100%;
}

@media (min-width: 768px) { 
  .grid-sizer, .grid-item {
    width: 33.33%;
  }
 }

@media (min-width: 992px){
  .grid-sizer, .grid-item  { 
    width: 25%;
  }
}

.social img{
  filter:saturate(0);
}
 .social img:hover{
   filter:none;
 }

.card{
  box-shadow:
      1px 2px 2px hsl(79deg 57% 23% / 0.5);
}

.card:hover{
  box-shadow:
      1px 2px 2px hsl(79deg 57% 23% / 0.2),
      2px 4px 4px hsl(79deg 57% 23% / 0.2),
      4px 8px 8px hsl(79deg 57% 23% / 0.2),
      8px 16px 16px hsl(79deg 57% 23% / 0.2);
}

/* Search */
#search-container {
  position: relative;
}
#search-input {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  color: #fff;
  padding: 5px 14px;
  font-size: 14px;
  width: 190px;
  transition: width 0.2s ease, background 0.2s ease;
}
#search-input:focus {
  outline: none;
  background: rgba(255,255,255,0.1);
  width: 260px;
}
#search-input::placeholder {
  color: rgba(255,255,255,0.5);
}
#search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  display: none;
  z-index: 1050;
  overflow: hidden;
}
.search-result-item {
  display: block;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: #333;
}
.search-result-item:last-child {
  border-bottom: none;
}
.search-result-item:hover {
  background: #f8f9fa;
  text-decoration: none;
  color: #333;
}
.search-result-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  color: #212529;
}
.search-result-date {
  font-size: 11px;
  color: #888;
  margin-top: 3px;
}
.search-no-results {
  padding: 12px 14px;
  font-size: 14px;
  color: #888;
}
@media (max-width: 575px) {
  #search-input {
    width: 110px;
  }
  #search-input:focus {
    width: 140px;
  }
  #search-results {
    width: 260px;
    right: -60px;
  }
}