
:root {
  --mxt-pr-color: #F0834D;
  --mx-clr-white-1: #ffffff;
  --mx-clr-black-1: #000000;
  --mx-clr-black-2: #363636;
  --mx-cube-1: all .25s cubic-bezier(.645,.045,.355,1);
  --mx-cube-2: cubic-bezier(.1,.75,.25,1);
}

.blog-post17 {
  background-color: #fff;
  box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.08);
}
.blog-post17:hover .thumb img {
  transform: scale(1.05);
}
.blog-post17 .thumb {
  position: relative;
  overflow: hidden;
}
.blog-post17 .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.blog-post17 .date {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  display: inline-block;
  position: absolute;
  bottom: -1px;
  left: 41px;
  color: #fff;
  padding: 7px 50px;
  background-color: #fff;
  clip-path: polygon(40px 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}
@media only screen and (max-width: 1199px) {
  .blog-post17 .date {
    left: 15px;
  }
}
.blog-post17 .date:before {
  position: absolute;
  width: calc(100% - 32px);
  height: calc(100% - 14px);
  background-color: var(--mxt-pr-color);
  content: "";
  top: 7px;
  left: 16px;
  z-index: -1;
  clip-path: polygon(26px 0, calc(100% - 26px) 0, 100% 100%, 0 100%);
}
.blog-post17 .content {
  padding: 25px 30px 30px;
}
@media only screen and (max-width: 1199px) {
  .blog-post17 .content {
    padding: 10px 15px 15px;
  }
}
.blog-post17 .meta {
  display: flex;
  gap: 5px 20px;
  flex-wrap: wrap;
}
.blog-post17 .author {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #737373;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .blog-post17 .author {
    font-size: 14px;
  }
}
.blog-post17 .author i {
  color: var(--mxt-pr-color);
}
.blog-post17 .comment {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #737373;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
@media only screen and (max-width: 1199px) {
  .blog-post17 .comment {
    font-size: 14px;
  }
}
.blog-post17 .comment i {
  color: var(--mxt-pr-color);
}
.blog-post17 .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.33;
  text-transform: capitalize;
  margin-top: 18px;
}
.blog-post17 .title a {
  color: var(--mx-clr-black-2);
}
@media only screen and (max-width: 1919px) {
  .blog-post17 .title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1199px) {
  .blog-post17 .title {
    font-size: 18px;
  }
}
.blog-post17 .btn-wrapper {
  margin-top: 23px;
}

.image-shadow-anim {
  position: relative;
  overflow: hidden;
}
.image-shadow-anim:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.image-shadow-anim:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.mx-btn-1 {
  background: var(--mxt-pr-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--mx-clr-white-1);
  gap: 10px;
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 30px;
  padding: 10px 26px;
  position: relative;
  border: 1px solid  var(--mxt-pr-color);
  z-index: 1;
  overflow: hidden;
  transition: var(--mx-cube-1);
  align-items: center;
}
.mx-btn-1 .shape {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #fafafa;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.mx-btn-1 .icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 2px;
}
.mx-btn-1 .icon i {
  transition: var(--mx-cube-1);
}
.mx-btn-1 .icon i:nth-child(2) {
  position: absolute;
  transform: translateX(-30px);
  color: var(--mxt-pr-color);
}
.mx-btn-1:hover {
  color: var(--mxt-pr-color);
}
.mx-btn-1:hover .shape {
  width: 500px;
  height: 500px;
}
.mx-btn-1:hover .text {
  animation: bsBtn1 0.8s;
}
.mx-btn-1:hover .icon i:nth-child(1) {
  transform: translateX(30px);
}
.mx-btn-1:hover .icon i:nth-child(2) {
  transform: translateX(0px);
  transition-delay: 0.6s;
}

@keyframes bsBtn1 {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}