.blog-image-container {
  height:auto !important;
}
.dnd-section>.row-fluid{
max-width: inherit;
}
.fa-arrow-right{
    background-color: black;
    padding: 5px;
    border-radius: 50%;
    margin-left: 21px;
}
img {
  max-width: 100%;
  height: auto;
}
.blog-card img {
  max-width: 100%;
  height: auto;
}
.container {
  display: flex;
  background-color:#fff;
}
.content {
  flex-grow: 1; /* Allow the content to grow and fill the remaining space */
}

.blog-listing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center the cards */
  align-items: flex-start; /* Align cards to the top */
  padding: 20px;
  font-family: 'Plus Jakarta Sans';
  opacity: 1;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
  margin: -100px auto; /* Center the container */
  /*top: -100px;*/
}

.blog-card {
  width: calc(30% - 15px);
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 20px;
  margin-right: 20px; /* Add margin-right to create spacing between columns */
  display: flex;
  flex-direction: column;
  /* Initialize with opacity 1 and no vertical offset */
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}

.blog-card.show {
  opacity: 1;
  transform: translateY(0);
}

.blog-image-container {
  height: 200px;
  overflow: hidden;
}

.blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image { /* Added :hover selector */
  transform: scale(1.1);
}
.blog-content {
    padding: 20px;
    flex-grow: 1;
}
        .blog-tags {
        margin-top: 10px;
        }

.tag {
  font-family: 'Plus Jakarta Sans';
  font-size: 18px !important;
  font-weight: bold !important;
  color: #3574E3 !important;
  position: relative;
  display: inline-block;
}

.tag::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #3574E3;
  transition: width 0.3s ease;
}

.tag:hover::before {
  width: 100%;
}



.blog-text >p > span{
  margin-top: 10px;
  font-size: 17px;
  font-weight: 500;
  font-family: 'Plus Jakarta Sans'!important;
  color: black;
  text-decoration:none !important;
}

.author-date {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

.author-name {
  font-weight: bold;
  font-size: 14px;
}

.index-publish-date {
  color: gray;
  font-size: 12px;
}


.blog-listing-container{
  margin-left:75px;
  position: relative;
  z-index: 2;
}
        /* Add animation to fade in and slide up the blog listing */
.blog-listing.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.header-item {
    display: none;
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover; /* Add this line */
}
     
}
.header-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5); /* adjust the opacity as needed */
}
.header-item.active{
  display:block;
}
.header-container{
position:relative;
  z-index:1;
}
  .header-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding: 20px;
    animation: riseAnimation 1s ease-out;
    margin-left:75px;
  }

.header-info {
  margin-bottom: 10px;
  font-family: 'Plus Jakarta Sans'
  text-transform: uppercase;
  font-size:16px;
  font-weight:500;
  color:white !important;
  z-index:99;
}

.blog-title {
    font-family: 'Plus Jakarta Sans';
    font-size: 35px;
    font-weight: bolder;
    text-transform: uppercase;
    color: white;
    z-index:99;
}
.blog-card-title {
    font-family: 'Plus Jakarta Sans';
    font-size: 35px;
    font-weight: bolder;
    text-transform: uppercase;
    outline:none !important;
    color:black;
}
a.card-link{
text-decoration:none !important;
  color:black !important;
  font-weight:400;
}
a.card-link:active,
a.card-link:focus
a.card-link:hover{
  text-decoration:none !important;
  color:black !important;
  font-weight:400;
}
.customClass{
  font-size: 45px;
  font-weight:700 !important;
  text-decoration: none !important;
  cursor: pointer;
  font-family:'Plus Jakarta Sans';
  color:white !important;
}

.read-article {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 21px;
    background-color: #86868B !important;
    color: white;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans';
    animation: riseAnimation 1s ease-out;
    font-size: 14px ;
    font-weight: bold;
    cursor: pointer; /* Change cursor to pointer */
    z-index:99;
    border:none;
}

.read-article:hover {
  cursor: pointer; /* Change cursor to pointer on hover */
  border:none;
  font-weight:700;
}
.read-article:active {
  cursor: pointer; /* Change cursor to pointer on hover */
  border:none;
}
.read-article:focus {
  cursor: pointer; /* Change cursor to pointer on hover */
  border:none;
  font-weight:700;
}
.read-article-span {
  display: inline-block;
}

.arrow {
  display: inline-block;
  margin-left: 5px;
  border-radius: 50%;
  background-color: black;
  padding: 5px;
}
.hs-image-widget{
  width:300px
}
.blog-post__tag-link{
  color:#86868b !important;
  margin-bottom:20px;
}
.blog-post__tag-link:hover{
  text-decoration: underline;
}

  @keyframes riseAnimation {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @media (max-width: 1880px) {
    .header-content{
      margin-left:130px;
    }
}
@media screen and (max-width: 1520px) {
  .read-article{
  font-size:14px;
  }
} 
  @media (max-width: 1440px) {
    .header-content{
      margin-left:75px;
    }
}
@media screen and (max-width: 1285px) {
  .customClass {
    font-size: 35px;
  }
} 
@media screen and (max-width: 1024px) {
  .header-content{
    margin-left:0px;
    width:80%;
  }
  .header__container{
    margin-left:0px;
  }
  .blog-card-title{
    font-size:30px;
  }
  .blog-listing-container{
  margin-left:0px;
  }
}
@media (max-width: 1000px) {
  .header-content{
  margin-left:0px;
  }
  .blog-card {
    font-size: 14px;  /* adjust as needed */
    width: calc(45% - 20px);
  }
  .blog-listing{
  top: -50px;
  }
  .left-menu{
  width:200px;
    
  }
  .menu-button{
    font-size:20px;
  }
  .header-item{
    height:400px;
  }
  .customClass{
    font-size: 32px;
    line-height: 36px;
    color:white !important;
  }
    .customClass:hover{
      color:white !important;
  }
    .hs-image-widget{
    width:250px !important;
  }
}
@media screen and (max-width: 768px) {
  .left-menu{
      display:none;
    }
  .blog-card {
    width: calc(45% - 20px);
  }
  .menu-button{
    font-size:16px;
  }
  .hs-image-widget{
    width:100px !important;
  }
    .header-content{
    width:100%;
  }
}
@media (max-width: 458px) {
  .header-content{
    margin-left:0px;
    width:100%;
  }
  .blog-card {
    font-size: 14px;  /* adjust as needed */
    width: calc(95% - 20px);
  }

  .blog-listing{
  top: -20px;
  }
  .blog-title{
  margin:0px;
  }
  .left-menu{
  display:none;
  }
  .blog-card-title{
  font-size:24px;
  margin: 10px 0px;
    text-decoration:none !important;
  }
  .header-item{
    background-repeat: no-repeat;
  }
  .header-info{
    font-size:14px;
    margin-bottom:0px;
  }
  .customClass{
    font-size:27px;
    color:white !important;
    display: flex;
    margin-bottom: 10px;
    line-height: 36px;
  }
  .customClass:hover{
    font-size:27px;
    color:white !important;
  }
  .read-article{
  font-size:10px !important;
    padding:5px 10px;
    margin-top:0px;
  }
}
#go-to-top-btn {
  display: none; 
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  background-color: black;
  color: white;
  cursor: pointer;
  width: 75px;
  height: 75px;
  border-radius: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border: none;
}

#go-to-top-btn:hover {
  background-color: #ccc; /* Slightly darker on hover */
}
.blog-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.blog-card.show {
  opacity: 1;
  transform: translateY(0);
}
.hide {
  display: none;
}