.blog-banner {
    width: 100%;
    background-image: url(../img/Asssets-V1/list-property-banner.jpg);
    height: 100%;
    max-height: 400px;
    background-size: cover;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-content {
    color: #fff;
    position: relative;
    width: 100%;
}

h1.banner-title {
    font-weight: 800;
}

span.banner-text {
    font-weight: 700;
    font-size: 28px;
}

span.font-bold {
    font-size: 48px;
    font-weight: 800;
}

.banner-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FF911A 20%, #ffffff21);
    left: 0;
    top: -10px;
}

.banner-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #ffffff21 20%, #FF911A);
    left: 0;
    top: 100%;
}

.title-image{
    width: 65%;
}

.single-blog-inner {
    max-width: 1200px;
    margin: 0px auto;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 0px;
}

.single-blog-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
}

.blog-content-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 20px;
    flex: 2 0 70%;
}

.subscribe-btn-div{
margin: 20px 0;
}

.popular-div{
    width: 100%;
}

.property-search{
margin: 80px 0;
padding: 20px;
position: sticky;
top: 30;
z-index: 2;
box-shadow: 5px 5px 18px #888888;
border-radius: 15px;
}

#tab1,#tab2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-direction: column;
}



.blog-section-main {
    height: fit-content;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1200px;
    padding: 40px 10px;
    margin: 0px auto;
    grid-gap: 50px;
}

.blog-card-2 {
    height: 550px;
    background-color: white;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -1px 3px 7px 0px #00000029;
}

.blog-2-image-div {
    height: 300px;
    overflow: hidden;
    flex: 0 0 128px;
}

.blog-card-2-text-div {
    padding: 20px;
    height: 265px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.similar_article {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.author-div{
display: inline-flex;
}

.author{
    width: 160px;
    margin:13px 3px ;
    color:#408f8c
}

@media only screen and (max-width: 600px) {
    .author{
      width: min-content;
      white-space: nowrap;
    }

    .dash{
        display: none !important;
    }
    .on{
    display: none !important;
    }
    .date{
    display: none !important;
    }   
      
}

.author-img{
    width: 100%;
}

.tag{
    display: inline;
    font-size: 10px;
    padding: 5px 4px;
    margin: 2px;
}

.category-div{
    display: inline-block;
    padding: 4px;
    color:white;
    background-color: #408f8c;
}

/* social share icons */

.social-share{
    display:flex;
    flex-wrap: wrap;
}

.single-icon{
    width: 50px;
}
.fa {
    padding: 10px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }
  
  .fa:hover {
    opacity: 0.7;
  }
  
  .fa-facebook {
    background: #3B5998;
    color: white !important;
  }

  .fa-whatsapp {
    background: #25d366;
    color: white !important;
  }
  
  
  .fa-twitter {
    background: #55ACEE;
    color: white !important;
  }

  .fa-pinterest {
    background: #BD081C;
    color: white !important;
  }

  .fa-linkedin {
    background: #0E76A8;
    color: white !important;
  }
  
  .fa-google-plus {
    background: #DB4437;
    color: white !important;
  }

  .fa-envelope {
    background: gray;
    color: white !important;
  }
/* social icons end */

.video-container {
    overflow: hidden;
    position: relative;
    width: 65%;
    margin-top: 40px;
}

.video-container::after {
    padding-top: 56.25%;
    display: block;
    content: '';
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content{
    margin-top: 5px;
}
.long-desc img {
    width: 100%;
   object-fit: contain;
}
a {
    text-decoration: none !important;
    color: #408f8c !important;
    font-weight: 700;
  }

  tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 1;
}

@media(max-width:1024px){
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 1200px;
        padding: 40px 10px;
        margin: 0px auto;
        grid-gap: 20px;
    }
}


@media(max-width:768px){
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr));
        max-width: 1200px;
        padding: 40px 10px;
        margin: 0px auto;
        grid-gap: 20px;
    }
}

@media(max-width:1024px){
    .recent {
        display: none;
       
    }

    .title-image{
        width: 100%;
    }

    .content{
        flex-direction: column;
        margin-top: 0px;
    }

    .blog-content-body {
        width: 100%;
    }
    
    .popular-div{
        width: 100%;
    }

    .video-container{
        width: 100%;
    }

}