.mos-img img {display: none !important;}
:root {
  scroll-behavior: inherit;
  --mx-clr-pr-1: #f16319;
  --lw-clr-sd-1: #C4EF17;
  --mx-clr-h-4: #060606;
  --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-entry*/
.mxnews-thumb img {
    width: 100%;
}

.mxnews-thumb {
    position: relative;
    overflow: hidden;
}

.mxnews-thumb img:nth-child(1) {
    transition: transform 0.8s;
}

.mxnews-thumb img:nth-child(2),
.mxnews-thumb img:nth-child(3) {
    position: absolute;
    top: 0;
    z-index: 3;
    transition: transform 1.6s;
}

.mxnews-thumb img:nth-child(2) {
    left: 0;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0% 100%);
}

.mxnews-thumb img:nth-child(3) {
    right: 0;
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

.mxnews-single-box:hover .mxnews-thumb img:nth-child(1) {
    transform: scale(1.3);
}

.mxnews-single-box:hover .mxnews-thumb img:nth-child(2) {
    transform: translateX(-700px) skewX(40deg);
}

.mxnews-single-box:hover .mxnews-thumb img:nth-child(3) {
    transform: translateX(700px) skewX(-40deg);
}

.mxnews-images-link {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(14, 19, 23, 0.4);
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.mxnews-single-box:hover .mxnews-images-link {
    opacity: 1;
    transform: translateY(0);
}

.mxnews-images-link {
    color: #fff;
    font-size: 24px;
}

.enmx-content{
    padding: 20px;
    margin: 15px;
    z-index: 200;
    border: 1px solid #e5e5e5;
    position: relative;
    background-color: #fff;
    margin-top: -15px;
}
.enmx-content h3 { font-size: 28px; color: #222; }
.enmx-content h3 a { color: #222; }
.enmx-content h3 a {
    font-size: 28px;
    line-height: 40px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.5s;
    position: relative;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 2s ease;
}

.nspost_sett:hover .enmx-content h3 a {
    background-size: 100% 1px;
}
.enmx-meta { margin-bottom: 5px; margin-top: 5px; }
.enmx-meta a, .enmx-meta p { color: #9d9d9d; margin-right: 10px; font-size: 13px; display: inline-block; }
.enmx-meta a:hover { color: #e93e21; }
.enmx-meta a i { color: #e93e21; padding-right: 3px; }

.mx-btn-1 {
  background: var(--mx-clr-pr-1);
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--mx-clr-white-1);
  gap: 12px;
  display: inline-flex;
  flex: 0 0 auto;
  border-radius: 30px;
  padding: 12px 32px;
  position: relative;
  border: 1px solid  var(--mx-clr-pr-1);
  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(--mx-clr-pr-1);
}
.mx-btn-1:hover {
  color: var(--mx-clr-pr-1);
}
.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%);
  }
}