/* CSS Document */
.newsInfoBox .classTitle::before {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.newsInfoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1180px) {
  .newsInfoBox {
    margin-bottom: 10px;
  }
}
.newsInfoBox .classTitle {
  color: #0da4d3;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  padding-right: 60px;
}
@media (max-width: 640px) {
  .newsInfoBox .classTitle {
    font-size: 14px;
  }
}
.newsInfoBox .classTitle::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 1px;
  background-color: #0da4d3;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
}
.newsInfoBox .dateBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 0.5px;
  font-size: 13px;
  font-weight: 400;
  width: 70px;
  height: 70px;
  background-color: #0da4d3;
  color: #fff;
  padding: 10px 5px;
}
@media (max-width: 960px) {
  .newsInfoBox .dateBox {
    width: 60px;
    height: 60px;
  }
}
.newsInfoBox .dateBox .date {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1180px) {
  .newsInfoBox .dateBox .date {
    font-size: 28px;
  }
}

.newsList {
  width: 100%;
}
@media (max-width: 960px) {
  .newsList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 -10px;
  }
}
@media (max-width: 640px) {
  .newsList {
    margin: 0;
  }
}
.newsList .newsItem {
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 960px) {
  .newsList .newsItem {
    width: 50%;
    padding: 0px 10px;
  }
}
@media (max-width: 640px) {
  .newsList .newsItem {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
  }
}
.newsList .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media (max-width: 960px) {
  .newsList .item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.newsList .Img {
  width: 40%;
}
@media (max-width: 960px) {
  .newsList .Img {
    width: 100%;
  }
}
.newsList .Img img {
  width: 100%;
  height: auto;
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.newsList .Txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
  padding: 0px 20px;
  position: relative;
}
@media (max-width: 960px) {
  .newsList .Txt {
    width: 100%;
    padding: 20px 0;
  }
}
.newsList .Txt .textBox {
  width: 100%;
}
.newsList .Txt .textBox .title {
  font-weight: 500;
  height: 35px;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
}
@media (max-width: 1180px) {
  .newsList .Txt .textBox .title {
    font-size: 18px;
  }
}
@media (max-width: 640px) {
  .newsList .Txt .textBox .title {
    height: auto;
  }
}
.newsList .Txt .textBox .text {
  font-weight: 400;
  height: 90px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 1.8px;
}
@media (max-width: 640px) {
  .newsList .Txt .textBox .text {
    height: auto;
  }
}