section.about {
  padding: 50px 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}

section.about .about-item {
  width: 50%;
}

section.about .about-text .about-title {
  font-size: 3em;
  margin: 20px 0;
  color: #3d4449;
}

section.about .about-text .about-subtitle {
  font-size: 1em;
  margin: 20px 0;
  color: #7f888f;
}

section.about .about-text .about-content {
  font-size: 1em;
  margin-bottom: 50px;
  color: #7f888f;
}

section.about .about-text .btn-more {
  border: solid 2px #f56a6a;
  border-radius: 3px;
  padding: 15px 50px;
  font-weight: 300;
  color: #f56a6a;
}

section.about .about-text .btn-more:hover {
  background: #f56a6a;
  color: #ffffff;
}

section.about .about-image {
  text-align: center;
}

section.about .about-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 10px;
}

section.newsy {
  padding: 40px 0;
  border-top: 1px solid #e6ebed;
}

section.newsy .newsy-list {
  margin: 30px 0 0 0px;
}

section.newsy .newsy-list .newsy-icon {
  width: 100px;
  height: 100px;
  border: 2px solid #e6ebed;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 30px 20px;
}

section.newsy .newsy-list .newsy-icon .icon {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  font-size: 40px;
  margin-top: 28px;
  margin-left: 11px;
  letter-spacing: 8.1px;
  color: #f56a6a;
  text-align: center;
}

section.newsy .newsy-list .newsy-content .newsy-item {
  color: #3d4449;
}

section.article {
  padding: 40px 0;
  border-top: 1px solid #e6ebed;
}

section.article .article-list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}

section.article .article-item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 30%;
}

section.article .article-item .item-photo {
  width: 100%;
  height: 200px;
  text-align: center;
  margin-bottom: 10px;
}

section.article .article-item .item-photo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 5px;
}

section.article .article-item .item-title {
  margin: 15px 0;
  color: #3d4449;
  font-size: 18px;
}

section.article .article-item .item-content {
  color: #7f888f;
  margin-bottom: 40px;
}

section.article .article-item .btn-more {
  border: solid 2px #f56a6a;
  border-radius: 3px;
  padding: 10px 30px;
  color: #f56a6a;
}

section.article .article-item .btn-more:hover {
  background: #f56a6a;
  color: #ffffff;
}

@media screen and (max-width: 600px) {
  section.article .article-item {
    width: 100%;
    max-width: 100%;
  }
}

