.home-layout-1-children-1,
.home-layout-1-children-2,
.home-layout-1-children-3,
.home-layout-2-children,
.home-layout-2-children-5,
.home-layout-2-children-1,
.home-layout-2-children-2,
.home-layout-2-children-3,
.home-layout-3-children-1,
.home-layout-3-children-2,
.home-layout-3-children-3,
.home-layout-3-children,
.home-layout-4-children-2,
.home-layout-4-children-3,
.home-layout-5-children-1,
.home-layout-5-children-2,
.home-layout-5-children-3,
.home-layout-6-children-1,
.home-layout-6-children-2,
.home-layout-6-children-3,
.home-layout-7-children-1,
.home-layout-7-children-2,
.home-layout-7-children-3,
.home-layout-8-children-1,
.home-layout-8-children-2,
.home-layout-8-children-3,
.home-layout-9-children-1,
.home-layout-9-children-2,
.home-layout-9-children-3,
.home-layout-10-children-1,
.home-layout-10-children-2,
.home-layout-10-children-3 {
    margin-bottom: 20px;
}
.post-item-container{
    background: #fff;
}


/*---------------------------------------
        Start HomePage special-block
-----------------------------------------*/
.block-left-container,
.block-right-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.special_block {}

.special_block .post-item {

}

.special_block .item-box {
    position: relative;
 
}
.special_block.two .post-title-header {
    font-size: 21px;
    line-height: 1.3;
}

/* .special_block .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 8px 8px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
} */

.special_block .title {
    font-size: 30px;
    line-height: 42px;
    margin: 0;
}

.special_block .post-content p{
    padding: 10px 5px;
    clear: both;
    margin-bottom: 0;
}
.special_block .post-title-header {
    margin: 0;
    font-size: 35px;
    line-height: 1.1;
}
.special_block .post-title-header a {
    color: #116DBD;
}

.special_block .post-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    float: none;
}
.special_block.slider-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.special_block.slider-block .post-item {
    border: 0;
}
.special_block.slider-block .lSAction a {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    top: 45%;
}
.special_block.slider-block .lSPager.lSpg {
    margin-top: 10px;
}
/*---------------------------------------
      CUSTOM SLIDER STYLES
-----------------------------------------*/
.custom-slider-block {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.custom-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f9f9f9;
}

.custom-slider-container {
    display: flex;
    width: 100%;
    transition: transform 0.6s ease;
}

.custom-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.custom-slide .item-box {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-slide .post-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.custom-slide .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.custom-slide:hover .post-image img {
    transform: scale(1.05);
}

.custom-slide .caption {
    padding: 20px;
    background: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.custom-slide .news-title-bold {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
    color: #2c3e50;
}

.custom-slide .news-title-bold a {
    color: #2c3e50;
    text-decoration: none;
}

.custom-slide .news-title-bold a:hover {
    color: #e74c3c;
}

.custom-slide .content {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
    flex: 1;
}

/* Navigation Buttons */
.custom-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 18px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.custom-slider-btn.prev-btn {
    left: 10px;
}

.custom-slider-btn.next-btn {
    right: 10px;
}

/* Dots/Indicators */
.custom-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 15px 0;
    background: #fff;
}

.custom-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-slider-dot.active {
    background: #e74c3c;
}

.custom-slider-dot:hover {
    background: #e74c3c;
}

@media (max-width: 768px) {
    .custom-slide .post-image {
        height: 250px;
    }
    .custom-slide .caption {
        padding: 15px;
    }
    .custom-slide .news-title-bold {
        font-size: 18px;
    }
    .custom-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .custom-slide .post-image {
        height: 200px;
    }
    .custom-slide .caption {
        padding: 12px;
    }
    .custom-slide .news-title-bold {
        font-size: 16px;
    }
    .custom-slide .content {
        font-size: 13px;
    }
    .custom-slider-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}
.special_block.slider-block .post-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}
.special_block.slider-block .caption {
    padding: 12px;
}
.home-layout.special_block_two .post-title-header {
    font-size: 20px;
    margin: 0;
    padding: 0;
}
.home-layout.special_block_two .post-item {
   border-bottom: 1px solid #dedede;
}
.home-layout.special_block_two .post-item:last-child {
   border-bottom:none;
}

/*------Start sub block-------- */
.home-02-sub-special-block ul.post-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.home-02-sub-special-block .post-item {
    border: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    max-width: 49%;
}
.home-02-sub-special-block .post-item:nth-child(1),
.home-02-sub-special-block .post-item:nth-child(3) {
    margin-bottom:2% !important;
    margin-right: 2%;
}
.home-02-sub-special-block .post-item:nth-child(2) ,
.home-02-sub-special-block .post-item:nth-child(4) {
    margin-bottom:2% !important;
}
.home-02-sub-special-block .item-box::after {
    position: absolute;
    content: "\f18c ";
    font-family: FontAwesome;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #06060670;
    text-align: center;
    line-height: 40px;
    font-size: 25px;
    border-radius: 0 0 15px 0;
    color: #dedede;
}
.home-02-sub-special-block .caption {
    padding-top: 10px;
}
.home-02-sub-special-block .post-image {
    width: 100%;
    float: none;
}
/*---------------------------------------
        End HomePage special-block
-----------------------------------------*/

/*---------------------------------------
      start featured_block post
-----------------------------------------*/
.featured_block ul.post-item-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.featured_block .post-item {
    border: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 100%;
    max-width: 100%;
}
.featured_block h2.post-title-header {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    margin: 0;
}
.featured_block .post-item:nth-child(1),
.featured_block .post-item:nth-child(3) {
   
}
.featured_block .post-item:nth-child(2) ,
.featured_block .post-item:nth-child(4) {
  
}
.featured_block .caption {
}
.featured_block .post-image {
    width: 30%;
}

/*---------------------------------------
       End featured_block post
-----------------------------------------*/

/*---------------------------------------
       Start home_recent_block post
-----------------------------------------*/
.home_recent_block .post-item .post-image {
    width: 28%;
}

.home_recent_block .post-item {
    border-bottom: 1px solid #ccc;
    background: #fff;
}
.home_recent_block .post-item:last-child {
    border-bottom:none;
}

/*---------------------------------------
       End home_recent_block post
-----------------------------------------*/

/*---------------------------------------
    End HomePage Layout-heighlight
-----------------------------------------*/
.home-layout-heighlight .post-item {
    border-bottom: 1px solid #dede;
}
.home-layout-heighlight .post-item:last-child {
    border-bottom: none;
}
/*---------------------------------------
    End HomePage Layout-heighlight
-----------------------------------------*/

/*---------------------------------------
    Start homepage-Layout one
----------------------------------------*/
.home-layout-1 .home-layout-3-children-2 ul li {
    width: 100%;
}
.home-layout-1-children-1 .post-item {
    float: left;
    width: 50%;
}
.home-layout-1-children-1 .post-item:first-child .post-image{
width: 100%;
}
.home-layout-1-children-1 .post-item .post-image{
width: 30%;
}
.home-layout-1-children-1 .post-title {
    font-size: 17px;
    line-height: 25px;
}
.home-layout-1-children-1 li:first-child .post-image{
    width: 100%;
    margin: 0;
    float: none;
}
/*---------------------------------------
    End homepage-Layout one
----------------------------------------*/

/*---------------------------------------
    Start homepage-Layout two
----------------------------------------*/
.home-layout-2-children .post-item:first-child .post-image{
    position: relative;
    width: 100%;
    float: none;
    margin: 0px;
    /* margin-bottom: 8px; */
    overflow: hidden;
}
.home-layout-2-children-5 .ch-post-item {
    float: left;
    width: 28%;
}
.home-layout-2-children-5  ul li:nth-child(2) {
    width: 44%;
    float: left;
}
.home-layout-2-children-5 .post-image {
    width: 100%;
    margin: 0;
    float: none;
}
.home-layout-2-children-5 .ch-post-container li:nth-child(1),
.home-layout-2-children-5 .ch-post-container li:nth-child(2){
    width: 100%;
    float: none;
}
.home-layout-2-children-5 .ch-post-container li:nth-child(1) .content,
.home-layout-2-children-5 .ch-post-container li:nth-child(2) .content{
    display: none;
}
.home-layout-2-children-5 .post-title {
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    margin: 0;
   padding: 11px 0;
}
.home-layout-2-children-5 .ch-post-container .post-title {
    font-size: 22px;
    padding: 11px 0;
}
.home-layout-3-children-2 ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.home-layout-3-children-2 .post-title {
    min-height: 53px;
}
.block-left-container .home-layout-3-children-2 .post-title {
    min-height:auto;
}
h2.post-title-header {
    font-size: 23px;
    line-height: 29px;
}
.home-layout-3-children-2 .post-title-header,
.home-layout-2-children .post-title-header {
    margin: 0;
}
.homepage-gallery .post-content {
    padding: 5px 0;
    display:block;
    clear:both;
}
/*---------------------------------------
    End homepage-Layout two
----------------------------------------*/
/*---------------------------------------
    Start homepage-Layout three
----------------------------------------*/
.home-layout-3-children-1 h2.post-title-header {
    font-size: 18px;
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 24px;
    color: #000;
    font-weight: 600;
} 

.home-layout-3-children-2 .post-item .post-image {
    position: relative;
    width: 100%;
    float: none;
    margin-right:0
}

.home-layout-3-children-2 .post-title {
    padding-top: 5px;
}

.home-layout-3-children-1 .post-item .post-image {
    float: left;
    width: 30%;
}
.home-layout-3-children-1 .post-item:first-child .post-image{
    position: relative;
    width: 100%;
    float: none;
    margin-right:0
}
.home-layout-3-children-2 .post-item:first-child .post-image {
    float:none;
    width: 100%;
    height: 100%;
    margin: 0;
}
.home-layout-3-children-2 .post-item .caption {
    width: 100%;
}
.home-layout-3-children-3 .post-item .post-image .post-image {
    width: 44%;
}
/*---------------------------------------
    End homepage-Layout three
----------------------------------------*/

/*---------------------------------------
    End homepage-Layout four
----------------------------------------*/
.home-layout-4-children-2 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: #fff;
}
.home-layout-4-children-2 .post-item {
    max-width: 50%;
    float: left;
    border-bottom: 1px solid #ccc;
    background: #fff;
}

.home-layout-4-children-2 .post-item:nth-child(3) {
    border-bottom: 0;
}
.home-layout-4-children-2 .post-item:nth-child(4) {
    border-bottom: 0;
}


/*---------------------------------------
   archive-layout
----------------------------------------*/
.archive-layout .post-image {
    float: none;
    width: 100%;
    display: block;
}
.archive-layout li:first-child {
    width: 66.666%;
    float: left;
}
.archive-layout li{
    width: 33.333%;
    float: left;
}



