@charset "utf-8";

.news {
  height: 310px;
  background-image: url(../images/news/bg-main.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #f3dfdf;
}

.info h2 {
  background-color: #ac6142;
  font-size: 2rem;
  text-align: center;
  padding: 30px 10px 10px 10px;
  margin: 50px;
}

.info h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 6px;
  background-color: #000000;
  margin: 20px auto;
}

.info-img {
  display: flex;
  width: 400px;
  padding-bottom: 30px;
}

.info-text {
  width: 50%;
}
/* .info-text p {
  font-size: 1.5rem;
  line-height: 50px;
  text-align: center;
} */

.info-inner {
  display: flex;
  justify-content: center;
  position: relative;
}

@media(max-width: 800px) {
  .news {
    height: 150px;
  }

  .news h1 {
    font-size: 2rem;
  }

  .info h2 {
  margin: 50px 0 40px 0;
  padding: 20px 0 5px 0;
  }


.info-inner {
  flex-direction: column; 
  align-items: center;
}

.info-img {
  /* margin: 0 20px; */
  padding: 50px 50px;

}



}