
:root {
  --primary: #e83e8c;
  --text-color: #000;
}


/* Date Box */
.date__box {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ccc;
  border: 4px solid;
  font-weight: bold;
  padding: 5px 10px;
}

.date__box .date__day {
  font-size: 22px;
}

/* Blog Card */
.blog-card {
  padding: 5px;
  width:90vw;
  position: relative;
  border-radius: 8px !important;
}

.blog-card .date__box {
  opacity: 0;
  transform: scale(0.5);
  transition: 300ms ease-in-out;
}

.blog-card .blog-card__background,
.blog-card .card__background--layer {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.blog-card .blog-card__background {
  padding: 5px;
  background: #fff;
  border-radius: 10px;
}

.blog-card .card__background--wrapper {
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 60%);
  position: relative;
  overflow: hidden;
}

.blog-card .card__background--main {
  height: 100%;
  position: relative;
  transition: 300ms ease-in-out;
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-card .card__background--layer {
  z-index: 0;
  opacity: 0;
  background: #fff;
  transition: 300ms ease-in-out;
}

.blog-card .blog-card__head {
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blog-card .blog-card__info {
  z-index: 10;
  background: #fff;
  padding: 20px 15px;
  border-radius: 10px;
}

.blog-card .blog-card__info h5 {
  transition: 300ms ease-in-out;
}

.blog-card:hover .date__box {
  opacity: 1;
  transform: scale(1);
}

.blog-card:hover .card__background--main {
  transform: scale(1.2) rotate(5deg);
}

.blog-card:hover .card__background--layer {
  opacity: 1;
}

.blog-card:hover .blog-card__info h5 {
  color: var(--primary);
}

/* Icon Link */
a.icon-link {
  color: var(--text-color);
  transition: 200ms ease-in-out;
}

a.icon-link i {
  color: var(--primary);
}

a.icon-link:hover {
  color: var(--primary);
  text-decoration: none;
}

/* Buttons */
.btn {
  background: white;
  color: var(--text-color);
  font-weight: bold;
  outline: none;
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 0;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  padding: 0;
  border: none;
  border-radius: 8px;
}

.btn:focus {
  box-shadow: none;
}

.btn:hover {
  background: var(--primary);
  color: #fff;
}

.btn.btn--with-icon {
  padding-right: 20px;
}

.btn.btn--with-icon i {
  padding: 0px 30px 0px 15px;
  margin-right: 10px;
  height: 50px;
  line-height: 50px;
  vertical-align: bottom;
  color: white;
  background: var(--primary);
  clip-path: polygon(0 0, 70% 0, 100% 100%, 0% 100%);
}

.btn.btn--only-icon {
  width: 50px;
}




.m-more-less-content{
  display: inline;
}

.m-more-less-content .m-more-text {
  overflow: hidden;
  display: none;
}

.m-more-less-content .m-less-text{
	display: inline;
}

