.svg{
   margin: 30px 140px;
   box-sizing: border-box;
  }
  .breadcrumb {
  display: inline-block;
  padding: 0;
  text-transform: capitalize;
  color: #6e6e6e;
  font-size: 0.875rem;
  background: none;
  margin: 0;
  border-radius: 0;
}
.breadcrumb {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  border-radius: .25rem;
}
.breadcrumb {
  text-transform: capitalize;
  color: #6e6e6e;
  font-size: 0.875rem;
}

.breadcrumb span {
  position: relative;
 
  padding: 0 5px;
}
.breadcrumb span i{
    text-align: center;
    font-size:10px;
}
  .border-color-1 {
  border-color: rgb(225,225,225)!important;
}
.bt-1 {
  border-top: 1px solid;
    border-top-color: currentcolor;
    width: 100%;
  margin-top: 10px;
}
/* DEFAULT STYLE */
:root {
	 font-size: 16px;
	 --card-img-height: 200px;
}
 .card-container {
	 width: 100%;
	 /* height: 100vh; */
	 display: flex;
	 flex-flow: row wrap;
	 justify-content: center;
	 align-items: center;
	 transition: all 200ms ease-in-out;
}
 .card {
	 align-self: flex-start;
	 position: relative;
	 width: 31%;
	 min-width: 275px;
	 margin: 1.25rem 0.75rem;
	 background: white;
	 transition: all 300ms ease-in-out;
}
 .card .card-img {
	 visibility: hidden;
	 width: 100%;
	 height: var(--card-img-height);
	 background-repeat: no-repeat;
	 background-position: center center;
	 background-size: cover;
}
 .card .card-img-hovered {
	 --card-img-hovered-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
	 transition: all 350ms ease-in-out;
	 background-repeat: no-repeat;
	 background-position: center center;
	 background-size: cover;
	 width: 100%;
	 position: absolute;
	 height: var(--card-img-height);
	 top: 0;
}
 .card .card-info {
	 position: relative;
	 padding: 0.75rem 1.25rem;
	 transition: all 200ms ease-in-out;
}
 .card .card-info .card-about {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
	 padding: 0.75rem 0;
	 transition: all 200ms ease-in-out;
}
 .card .card-info .card-about .card-tag {
	 width: 60px;
	 max-width: 100px;
	 padding: 0.2rem 0.5rem;
	 font-size: 12px;
	 text-align: center;
	 text-transform: uppercase;
	 letter-spacing: 1px;
	 background: #505f79;
	 color: #fff;
}
 .card .card-info .card-about .card-tag.tag-news {
	 background: #36b37e;
}
 .card .card-info .card-about .card-tag.tag-deals {
	 background: #ffab00;
}
 .card .card-info .card-about .card-tag.tag-politics {
	 width: 71px;
	 background: #ff5630;
}
 .card .card-info .card-title {
	 z-index: 10;
	 font-size: 1.5rem;
	 padding-bottom: 0.75rem;
	 transition: all 350ms ease-in-out;
}
 .card .card-info .card-creator {
	 padding-bottom: 0.75rem;
	 transition: all 250ms ease-in-out;
}
 .card:hover {
	 cursor: pointer;
	 box-shadow: 0px 15px 35px rgba(227, 252, 239, 0.1), 0px 5px 15px rgba(0, 0, 0, 0.07);
	 transform: scale(1.025);
}
 .card:hover .card-img-hovered {
	 --card-img-hovered-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
	 height: 100%;
}
 .card:hover .card-about, .card:hover .card-creator {
	 opacity: 0;
}
 .card:hover .card-info {
	 background-color: transparent;
}
 .card:hover .card-title {
	 color: #ebecf0;
	 transform: translate(0, 40px);
}
.card-link h1 {
		color: #000;
 }
