/*Section1*/
.section1 {
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url(../images/newsBg.png) no-repeat center center;
  background-size: cover;
}

.section1 h1,
.section1 h4 {
  line-height: 1em;
  margin: 10px 0;
}

.section1 h1 {
  font-size: 4.5vw;
}

.section1 h4 {
  color: var(--Green);
}
/*Section2*/
.section2 {
  padding: 100px 0;
  background: var(--White);
}
.section2 .w1280 {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 50px;
}
.pagenation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.pagenation a {
  color: var(--Black);
  transition: 0.3s;
}
a.furtherPage {
  color: var(--Gray04);
  transition: 0.3s;
}
.pagenation a:hover {
  color: var(--Green);
  transition: 0.3s;
}
/*Section3*/
.section3 {
  background: var(--White);
  padding: 100px 0;
  color: var(--Black);
}
.section3 .w1280 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.section3 .btn {
  width: fit-content;
}
.section3 .btn i {
  margin-right: 20px;
}
.newsBigImg {
  width: 100%;
  /* height: 50vw; */
  height: fit-content;
  border-radius: 20px 20px;
  overflow: hidden;
}
.newsBigImg img {
  width: 100%;
}
.date {
  color: var(--Green);
}
.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article a {
  color: var(--Green);
}
.article img {
  width: 100%;
  height: auto;
}

/*////RWD////*/
@media screen and (max-width: 1660px) {
}

@media screen and (max-width: 1440px) {
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1280px) {
}

@media (orientation: landscape) and (max-width: 1050px) {
}

@media (orientation: portrait) and (max-height: 1180px) {
  .section1 {
    height: 40vh;
  }
}

@media (orientation: portrait) and (max-height: 1024px) {
}

@media screen and (max-width: 640px) {
  .section1 {
    height: 80vh;
  }
  .section1 h1 {
    font-size: 8.5vw;
  }
}

/*Iphone XR 414*896 */
@media (orientation: portrait) and (max-width: 390px) {
}

@media (orientation: portrait) and (max-height: 896px) {
}

/*Iphone 12Pro 390*844 */
@media (orientation: portrait) and (max-height: 844px) {
}

/*Iphone 10 375*812 */
@media (orientation: portrait) and (max-width: 375px) {
}

@media (orientation: portrait) and (max-height: 812px) {
}

/*Iphone 8Plus 414*736 */
@media (orientation: portrait) and (max-height: 736px) {
}

/*Iphone 8 375*667 */
@media (orientation: portrait) and (max-height: 667px) {
}

@media screen and (max-width: 360px) {
}

@media screen and (max-width: 320px) {
}
