/* *** Divi Blog Module *** */ 
/* Only for VB */
.et-db #et-boc .et-fb-modules-list li.dgbm_blog_module .et-fb-icon {
    padding-top: 7px;
    padding-left: 7px;
  }
  .et-db #et-boc .et-fb-modules-list li.dgbm_blog_module .et-fb-icon svg {
    width:16px !important;
    height:16px !important;
  }
  .et-db #et-boc .et-fb-modules-list li.dgbm_blog_module {
    background-color: #e1e7ec !important;
  }
  .et-db #et-boc .et-fb-modules-list li.dgbm_blog_module:hover {
    background-color: #94a7b7 !important;
    color:#fff;
  }
  .et-db #et-boc .et-fb-form__toggle.et-fb-form__toggle-opened[data-name="border"] > div:nth-of-type(3) {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f1f5f9;
  }
  .et-db #et-boc .et-fb-form__toggle.et-fb-form__toggle-opened[data-name="border"] > div:nth-of-type(3):after {
    content: "";
    width: 9px;
    height: 9px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #dee7f1;
    border-radius: 15px;
  }
  
/* Layout */
/*.dgbm_blog_module {*/
/*    background: none !important;*/
/*}*/
.dg-blog-inner-wrapper .dgbm_post_item,
.dg-blog-inner-wrapper .dgbm_post_item .content-wrapper {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
}
.dg-blog-inner-wrapper .dgbm_post_item,
.dg-blog-inner-wrapper .dgbm_post_item .dg-post-thumb,
.dg-blog-inner-wrapper .dgbm_post_item .content-wrapper {
    border-style: solid;
    border-width:0;
}
.dg-blog-inner-wrapper .dgbm_post_item .content-wrapper .dg_bm_title {
    padding-bottom: 0;
    font-size: 20px;
}

/*******************
**** Post Item *****
********************/
.dg-blog-inner-wrapper .dgbm_post_item {
    z-index: 1;
}
.dg-blog-inner-wrapper .dgbm_post_item:hover {
    z-index: 9;
}
/*******************
*** Grid Layout ****
********************/
.dgbm_blog_module .dg-blog-grid {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
    flex-direction: row;
    /* height: 100%; */
}
.dgbm_blog_module .dg-blog-module .dg-blog-grid .dgbm_post_item {
    display: flex;
    position: relative;
    flex-direction: column;
    height: 100%;
}
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-grid .dgbm_post_item {
    height: auto;
}
.dgbm_blog_module .dg-blog-module .dg-blog-grid .content-wrapper {
    position: relative;
    z-index: 9;
}
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-grid .content-wrapper{
    flex-grow: 1;
}
.dgbm_blog_module .dg-blog-grid .dg-post-thumb a,
.dgbm_blog_module .dg-blog-grid .dg-post-thumb img {
    display: block;
    width: 100%;
}
/* Desktop */
@media (min-width:981px) {
    .dgbm_blog_module .column-2 .dg-blog-grid .dgbm_post_item:nth-child(2n) {
        margin-right:0px !important;
    }
    .dgbm_blog_module .column-3 .dg-blog-grid .dgbm_post_item:nth-child(3n) {
        margin-right:0px !important;
    }
    .dgbm_blog_module .column-4 .dg-blog-grid .dgbm_post_item:nth-child(4n) {
        margin-right:0px !important;
    }
    .dgbm_blog_module .column-5 .dg-blog-grid .dgbm_post_item:nth-child(5n) {
        margin-right:0px !important;
    }
}
/* Tablet */
@media (min-width:768px) and (max-width:980px) {
    .dgbm_blog_module .column-tablet-2 .dg-blog-grid .dgbm_post_item:nth-child(2n) {
        margin-right:0px !important;
    }
    .dgbm_blog_module .column-tablet-3 .dg-blog-grid .dgbm_post_item:nth-child(3n) {
        margin-right:0px !important;
    }
    .dgbm_blog_module .column-tablet-4 .dg-blog-grid .dgbm_post_item:nth-child(4n) {
        margin-right:0px !important;
    }
}
/* Mobile */
@media (max-width:767px) {
    .dgbm_blog_module .column-mobile-1 .dg-blog-grid .dgbm_post_item {
        margin-right:0px !important;
    }
    .dgbm_blog_module .column-mobile-2 .dg-blog-grid .dgbm_post_item:nth-child(2n) {
        margin-right:0px !important;
    }
}

/**********************
*** Masonry layouts ***
***********************/
.dg-blog-inner-wrapper .dg-blog-masonry[data-columns] {
    display: flex;
    flex-wrap: wrap;
}
.dgbm_blog_module .dg-blog-masonry .dg-post-thumb a,
.dgbm_blog_module .dg-blog-masonry .dg-post-thumb img {
    display: block;
    width: 100%;
}
.dgbm_blog_module .dg-blog-masonry .content-wrapper {
    position:relative;
    z-index: 9;
}
.dg-blog-inner-wrapper .dg-blog-masonry[data-columns]::before {
    visibility: hidden;
    height: 0;
    width: 0;
}
.dg-blog-inner-wrapper .dg-blog-masonry[data-columns] .column:last-child {
    margin-right:0 !important;
}
/* Masonry layouts for desktop */
.dg-blog-inner-wrapper.column-2 .dg-blog-masonry[data-columns]::before {
	content: '2 .column.size-1of2';
}
.dg-blog-inner-wrapper.column-3 .dg-blog-masonry[data-columns]::before {
	content: '3 .column.size-1of3';
}
.dg-blog-inner-wrapper.column-4 .dg-blog-masonry[data-columns]::before {
	content: '4 .column.size-1of4';
}
.dg-blog-inner-wrapper.column-5 .dg-blog-masonry[data-columns]::before {
	content: '5 .column.size-1of5';
}
/* Masonry layouts for tablet */
@media ( max-width:980px ) {
    .dg-blog-inner-wrapper.column-tablet-1 .dg-blog-masonry[data-columns]::before {
        content: '1 .column.size-1of1';
    }
    .dg-blog-inner-wrapper.column-tablet-2 .dg-blog-masonry[data-columns]::before {
        content: '2 .column.size-1of2';
    }
    .dg-blog-inner-wrapper.column-tablet-3 .dg-blog-masonry[data-columns]::before {
        content: '3 .column.size-1of3';
    }
}
/* Masonry layouts for mobile */
@media ( max-width:767px ) {
    .dg-blog-inner-wrapper.column-mobile-1 .dg-blog-masonry[data-columns]::before {
        content: '1 .column.size-1of1';
    }
    .dg-blog-inner-wrapper.column-mobile-2 .dg-blog-masonry[data-columns]::before {
        content: '2 .column.size-1of2';
    }
}
.dg-blog-inner-wrapper .dg-blog-masonry[data-columns] .dgbm_post_item{ 
    /* margin-bottom:18%; */
}
.size-1of3 { 
    width: 30%; 
}

/*************************
 *** Full width Layout ***
 *************************/
.dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item {
    overflow: visible;
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item {
    display: flex;
    width: auto;
    flex-direction: column;
    position:relative;
    box-sizing: content-box;
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item .content-wrapper {
    position: relative;
    z-index: 9;
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item .dg-post-thumb a.featured-image-link,
.dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item .dg-post-thumb img{
    width:100%;
    display:block;
}
/* Image Left */
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left .dgbm_post_item {
    flex-direction: row;
    align-items: flex-start; /* disable equal height */
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left .dgbm_post_item .column-image,
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left .dgbm_post_item .column-content {
    width: 50%;
    height:auto;
}

/* Image Right */
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-right .dgbm_post_item {
    flex-direction: row-reverse;
    align-items: flex-start; /* disable equal height */
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-right .dgbm_post_item .column-image,
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-right .dgbm_post_item .column-content {
    width: 50%;
    height:auto;
}
/* Image Left & Right Both */
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left-right .dgbm_post_item {
    align-items: flex-start; /* disable equal height */
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left-right .dgbm_post_item:nth-child(even) {
    flex-direction: row-reverse;
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left-right .dgbm_post_item:nth-child(odd) {
    flex-direction: row;
}
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left-right .dgbm_post_item .column-image,
.dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left-right .dgbm_post_item .column-content {
    width: 50%;
    height:auto;
}
.dgbm_blog_module .dg-blog-module .dg-blog-inner-wrapper.full-width .dgbm_post_item:not(.has-post-thumbnail) .column-content {
    width: 100% !important;
}
/* common */
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-inner-wrapper.full-width .dgbm_post_item {
    align-items: unset;
}
.dgbm_blog_module .dg-blog-module.featured-image-as-background .dg-blog-inner-wrapper .dgbm_post_item .dg-post-thumb {
    display: none;
}
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-inner-wrapper.full-width:not(.image-top) .dgbm_post_item .dg-post-thumb{
    height: 100%;
}
.dgbm_blog_module .dg-blog-module.content-middle:not(.equal-hieght) .dg-blog-inner-wrapper.full-width .dgbm_post_item {
    align-items: center;
}
.dgbm_blog_module .dg-blog-module.content-bottom:not(.equal-hieght) .dg-blog-inner-wrapper.full-width .dgbm_post_item {
    align-items: flex-end;
}
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-inner-wrapper.full-width .content-wrapper {
    display: flex;
    flex-direction: column;
}
.dgbm_blog_module .dg-blog-module.equal-hieght.content-middle .dg-blog-inner-wrapper.full-width .content-wrapper {
    justify-content: center;
}
.dgbm_blog_module .dg-blog-module.equal-hieght.content-bottom .dg-blog-inner-wrapper.full-width .content-wrapper {
    justify-content: flex-end;
}
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-inner-wrapper.full-width .dg-post-thumb a.featured-image-link {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-inner-wrapper.full-width:not(.image-top) .dg-post-thumb img {
    display: none;
}
.dgbm_blog_module .dgbm_post_item .dg-post-thumb,
.dgbm_blog_module .dgbm_post_item .content-wrapper,
.dgbm_blog_module .dgbm_post_item .dg_bm_title,
.dgbm_blog_module .dgbm_post_item .post-meta,
.dgbm_blog_module .dgbm_post_item .post-content,
.dgbm_blog_module .dgbm_post_item .btn-at-bottm,
.dgbm_blog_module .dgbm_post_item .btn-at-bottm a,
.dgbm_blog_module .dgbm_post_item .post-meta-over-image,
.dgbm_blog_module .dgbm-image-overlay .dgbm_post_item .dg-post-thumb:before,
.dgbm_blog_module .dgbm-image-overlay.dgbm-image-overlay-icon .dgbm_post_item .dg-post-thumb:after,
.dgbm_blog_module .dgbm-scale-effect .dgbm_post_item .dg-post-thumb img,
.dgbm_blog_module .dgbm-scale-effect .dgbm_post_item .post-meta > span,
.dgbm_blog_module .dgbm_post_item .dg_read_more_wrapper a {
    /* transition: all 300ms ease; */
    /* transition: all 300ms ease !important; */
}

/* Mobile */
@media ( max-width:767px ) {
    .dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left-right .dgbm_post_item,
    .dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-right .dgbm_post_item,
    .dgbm_blog_module .dg-blog-inner-wrapper.full-width.image-left .dgbm_post_item {
        flex-direction: column !important;
    }
    .dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item .dg-post-thumb, 
    .dgbm_blog_module .dg-blog-inner-wrapper.full-width .dgbm_post_item .content-wrapper,
    .dgbm_blog_module .dg-blog-module .dg-blog-inner-wrapper.full-width .dgbm_post_item .column-image, 
    .dgbm_blog_module .dg-blog-module .dg-blog-inner-wrapper.full-width .dgbm_post_item .column-content {
        width: 100% !important;
    }
    .dgbm_blog_module .dg-blog-module.equal-hieght .dg-blog-inner-wrapper.full-width .column-image .dg-post-thumb img {
        display: block;
    }
}
/*****************
 *** Post meta ***
 *****************/
.dgbm_blog_module .dgbm_post_item .content-wrapper .post-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
.dgbm_blog_module .has-meta-icon .dgbm_post_item .post-meta > span {
    margin-right:12px;
}
.dgbm_blog_module .dgbm_post_item .post-meta .blank-separator,
.dgbm_blog_module .dgbm_post_item .post-meta .pipe-separator {
 margin: 0 6px;
}
.dgbm_blog_module .dgbm_post_item .post-meta.meta-position-bottom {
   transition: all .3s ease;
   border-top: 1px solid transparent;
   margin-top: auto;
   margin-bottom: 0;
}
/* Post Meta icon */
.dgbm_blog_module .dgbm_post_item .post-meta .meta-icon{
   margin-right: 6px;
 }
 .dgbm_blog_module .dgbm_post_item p.post-meta .meta-icon:after {
   content: '';
   font-family: ETmodules!important;
   font-weight: 400;
   font-style: normal;
   font-variant: normal;
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   line-height: 0.96em;
   text-transform: none;
   speak: none;
   display: inline-block;
 }
 .dgbm_blog_module .dgbm_post_item .post-meta .author .meta-icon:after {
   content:'\e08a';
 }
 .dgbm_blog_module .dgbm_post_item .post-meta .published .meta-icon:after {
   content:"\e023";
 }
 .dgbm_blog_module .dgbm_post_item .post-meta .categories .meta-icon:after {
   content:"\e07b";
 }
 .dgbm_blog_module .dgbm_post_item .post-meta .comments .meta-icon:after {
   content:"\e065";
 }
 .dgbm_blog_module .dgbm_post_item .post-meta.post-meta-position-bottom {
    margin-top:auto;
    margin-bottom: 0;
 }
/****************************
 *** Post meta over image ***
 ****************************/
 .dgbm_blog_module .dg-post-thumb {
    position: relative;
 }
 .dgbm_blog_module .post-meta-over-image {
    display: flex;
    flex-wrap: wrap;
    /* width: 100%; */
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    padding: 20px;
    z-index: 9;
 }
 .dgbm_blog_module .post-meta-over-image > span {
     height:100%;
     background-color:#ffffff;
     padding:6px 9px;
 }
 .dgbm_blog_module .dg-blog-module .post-meta-over-image > span a {
    display: inline-block;
    width: auto;
 }
 .dgbm_blog_module .post-meta-over-image .author a {
     pointer-events: all;
 }
 /* .dgbm_blog_module .post-meta-over-image .published span {
     display: block;
     text-align: center;
 }
 .dgbm_blog_module .post-meta-over-image .published span:after {
    content: "";
    display: block;
    background-color: #333;
    height: 2px;
    margin: 5px 7px;
 }
 .dgbm_blog_module .post-meta-over-image .published span:last-child:after {
     display: none;
 } */

 /* Bottom */
 .dgbm_blog_module .post-meta-over-image.over-image-bottom {
     top:auto;
     bottom:0;
     align-items: flex-end;
 }

 .dgbm_blog_module .post-meta-over-image.over-image-left {
    right: auto;
    bottom: 0;
    flex-direction: column;
 }
 .dgbm_blog_module .post-meta-over-image.over-image-left > span,
 .dgbm_blog_module .post-meta-over-image.over-image-right > span {
    height: auto;
 }
 .dgbm_blog_module .post-meta-over-image.over-image-right {
     left:auto;
     bottom:0;
     flex-direction: column;
     align-items: flex-end;
 }
 /* Left & Right */
 .dgbm_blog_module .post-meta-over-image.over-image-left-right > span {
     height: auto;
 }
 .dgbm_blog_module .dgbm_post_item:nth-child(odd) .post-meta-over-image.over-image-left-right {
    right: auto;
    bottom: 0;
    flex-direction: column;
 }
 .dgbm_blog_module .dgbm_post_item:nth-child(even) .post-meta-over-image.over-image-left-right {
    left:auto;
    bottom:0;
    flex-direction: column;
    align-items: flex-end;
 }
/* Post Meta over image bottom */
.dgbm_blog_module .over-image-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 0px 20px 15px!important;
    z-index: 9;
}
.dgbm_blog_module .over-image-bottom > span,
.dgbm_blog_module .dg-blog-module .over-image-bottom > span a {
    display: inline-block;
    width: auto;
}
.dgbm_blog_module .post-meta.over-image-bottom > span {
    display: table;
}
.dgbm_blog_module .post-meta.over-image-bottom .pipe-separator:nth-child(1) {
    display:none;
}
.dgbm_blog_module .post-meta.over-image-bottom .blank-separator:nth-child(1) {
    display:none;
}

/*****************
 *** Read More ***
 *****************/
.dgbm_blog_module .dgbm_post_item .read-more {
    display: inline-block;
    text-align: center;
    border-style: solid;
    border-width: 0px;
}
.dgbm_blog_module .dgbm_post_item .content-wrapper .dg_read_more_wrapper.btn-at-bottm{
    margin-top:auto;
    margin-bottom:0;
}
.dgbm_blog_module .dgbm_post_item .dg_read_more_wrapper a:after {
    content: attr(data-icon);
    font-family: ETmodules!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1;
    text-transform: none;
    speak: none;
    margin-left:7px;
}
.dgbm_blog_module .dgbm_post_item .dg_read_more_wrapper a:after,
.dgbm_blog_module .dgbm_post_item .dg_read_more_wrapper a span {
    display: inline-block;
    vertical-align: top;
    line-height: inherit;
}
/******************
 *** Pagination ***
 ******************/
.dgbm_blog_module .pagination div a {
    display: block;
    border-style:solid;
}
/*********************
 *** Image Overlay ***
 *********************/
 
 .dgbm_blog_module .dgbm-image-overlay .dgbm_post_item .dg-post-thumb:before {
    content : '';
    position: absolute;
    top: 0;
    bottom: 0;
    left:0;
    right:0;
    background-color: transparent;
    z-index: 7;
    pointer-events: none;
 }
 .dgbm_blog_module .dgbm-image-overlay .dgbm_post_item:hover .dg-post-thumb:before {
    background-color: rgba(51, 51, 51, 0.59);
 }
 .dgbm_blog_module .dgbm-image-overlay.dgbm-image-overlay-icon .dgbm_post_item .dg-post-thumb:after {
    content: attr(data-ovrlayicon);
    font-family: ETmodules!important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1em;
    text-transform: none;
    speak: none;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(0);
    font-size: 30px;
    opacity: 0;
    z-index: 8;
    color:#fff;
    pointer-events: none;
 }
 .dgbm_blog_module .dgbm-image-overlay.dgbm-image-overlay-icon .dgbm_post_item:hover .dg-post-thumb:after {
     opacity: 1;
     transform: translateX(-50%) translateY(-50%) scale(1);
 }
 @media (min-width:768px) {
    .dgbm_blog_module .equal-hieght .full-width.image-left .dgbm_post_item .dg-post-thumb a.featured-image-link, 
    .dgbm_blog_module .equal-hieght .full-width.image-right .dgbm_post_item .dg-post-thumb a.featured-image-link, 
    .dgbm_blog_module .equal-hieght .full-width.image-left-right .dgbm_post_item .dg-post-thumb a.featured-image-link 
    {
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       bottom: 0;
    }
 }
/****************************
 *** Image scale on hover ***
 ****************************/
 .dgbm_blog_module .dgbm-scale-effect .dgbm_post_item .dg-post-thumb {
     overflow: hidden;
 }
 .dgbm_blog_module .dgbm-scale-effect .dgbm_post_item .dg-post-thumb img {
    transform: scale(1);
 }
 .dgbm_blog_module .dgbm-scale-effect .dgbm_post_item:hover .dg-post-thumb img {
    transform: scale(1.2);
 }

 .dgbm_blog_module .dgbm-scale-effect.equal-hieght .full-width.image-left-right .dgbm_post_item .dg-post-thumb a.featured-image-link,
 .dgbm_blog_module .dgbm-scale-effect.equal-hieght .full-width.image-left .dgbm_post_item .dg-post-thumb a.featured-image-link,
 .dgbm_blog_module .dgbm-scale-effect.equal-hieght .full-width.image-right .dgbm_post_item .dg-post-thumb a.featured-image-link
  {
    transform: scale(1);
    transition: all 300ms ease !important;
 }
 .dgbm_blog_module .dgbm-scale-effect.equal-hieght .full-width.image-left-right .dgbm_post_item:hover .dg-post-thumb a.featured-image-link,
 .dgbm_blog_module .dgbm-scale-effect.equal-hieght .full-width.image-left .dgbm_post_item:hover .dg-post-thumb a.featured-image-link,
 .dgbm_blog_module .dgbm-scale-effect.equal-hieght .full-width.image-right .dgbm_post_item:hover .dg-post-thumb a.featured-image-link
 {
    transform: scale(1.2);
 }

/**********************
 **** Border style ****
 **********************/

 .dgbm_blog_module .post-meta > span {
     border-style:solid;
     border-width:0px;
 }


 /**********************
 ****** Meta text ******
 **********************/

 .dgbm_blog_module .post-meta .author a,
 .dgbm_blog_module .post-meta .categories a {
     color:inherit;
     font: inherit;
     letter-spacing: inherit;
 }

  /*************************
 ****** ReadMore text ******
 ***************************/
 .dgbm_blog_module .read-more a span {
    color:inherit;
    font: inherit;
    letter-spacing: inherit;
 }

 /* //DIVI5  */
 .dgbm_blog_module.side_overlap_setting .dg-blog-module .dg-blog-inner-wrapper .dgbm_post_item .column-content{
    z-index: 10 !important;
 }
 .dg_read_more_wrapper a{
     font:inherit;
     color: inherit;
 }
.dg-blog-inner-wrapper.d5 .dgbm_post_item .dg-post-thumb{
    overflow: hidden;
}
.dg-blog-inner-wrapper.d5 .dgbm_post_item .dg-post-thumb img {
    transition: all 300ms ease 0ms!important;
}
