.blog_des_main_con{
  padding: 2rem 6%;
  display: flex;
  flex-direction: column;
}
.title h1{
  font-size: 2.2rem;
  padding-bottom: 2rem;
  color: var(--blue);
}
.blog_dis_img_con{
  width: 100%;
  max-height: 60vh;
  background: #f4f4f4;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog_dis_img_con img{
  width: 100%;
  max-height: 60vh;
  border-radius: 1rem;
  object-fit: contain;
}
.blog_des_info{
  padding: 1rem 3%;
}
.blog_des_info p{
  font-size: 1.1rem;
  color: #555;
}
/* ==================================more blogs=========================================== */
.other_posts {
  max-width: 1000px;
  margin: 0 auto 3rem auto;
  padding: 0 1rem;
}
.other_posts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.2rem;
}
.other_posts-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 30rem;
  background-color: #f5f5f5;
}
.other_posts-image-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.other_posts-image-container img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  object-position: center;
}
.other_posts-image-container:hover img {
  transform: scale(1.2);
}
.other_posts-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.9));
  border-radius: 10px;
}
.other_posts-text {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1rem;
  font-weight: 100;
  text-align: center;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: .1rem;
  line-height: 1.5rem;
  width: 90%;
}
.other_posts-text strong {
  color: var(--brown);
  font-size: .8rem;
  display: inline-block;
  letter-spacing: normal;
  font-weight: 400;
}
@media screen and (max-width: 765px) {
  .other_posts-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem 1rem 0.5rem;
    scrollbar-width: thin;
  }
  .other_posts-item {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin-right: 10px;
  }
}
.multi-item-slider-text{
  text-align: center;
  padding: 1rem 0;
}
.multi-item-slider-text h2 {
  font-size: 2rem;
  margin-bottom: 0;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  
  .multi-item-slider-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--blue);
  }
}
.read_more_con{
  text-align: center;
  margin-bottom: 5rem;
}
.read_more_con a{
  cursor: pointer;
  outline: 0;
  text-decoration: none;
  color: var(--black);
  background-color: transparent;
  border: 1px solid var(--blue);
  display: inline-block;
  font-weight: 100;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: 2px;
  transition: all .5s ease;
  font-family: var(--font-gara);
}
.read_more_con a:hover{
  border-color: var(--brown);
  color: var(--brown);
}