.banBlogImgTxt {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .banBlogImgTxt {
    gap: 20px;
  }
}
.banBlogImgTxt.left {
  flex-direction: row;
}
@media screen and (max-width: 991px) {
  .banBlogImgTxt.left {
    flex-direction: column;
  }
}
.banBlogImgTxt.right {
  flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
  .banBlogImgTxt.right {
    flex-direction: column;
  }
}
.banBlogImgTxt-img {
  width: 40%;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .banBlogImgTxt-img {
    width: 100%;
    aspect-ratio: 16/9;
  }
}
.banBlogImgTxt-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banBlogImgTxt-txt {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .banBlogImgTxt-txt {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */