/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: iOS >= 7,Android >= 4
*/

body {
  position: relative;
}

.flex-row-around {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
          justify-content: space-around;
}

.flex-between-center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

#app {
  width: 100%;
  height: 100%;
}

#banner {
  width: 100%;
  background: url(../img/banner.png) center no-repeat;
  background-size: cover;
}

#main {
  width: 100%;
  padding-bottom: 2em;
}

.hr {
  width: 100%;
  height: .6em;
  background-color: #f3f4f5;
  margin-top: 1em;
}

.stories {
  margin-top: 1.4em;
  padding: 0 1.4em;
}

.title {
  font-size: 1em;
  font-weight: bolder;
}

.more>span {
  font-size: .8em;
  color: #999;
}

.more>img {
  width: .6em;
  margin-left: .2em;
}

.stories>.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  margin-top: .8em;
}

.story {
  width: 28%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  position: relative;
}

.story>img {
  width: 100%;
  border-radius: .4em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.story>.name {
  width: 100%;
  margin-top: 0.6em;
  font-size: .7em;
  text-align: left;
  color: #151515;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

#contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  padding: 45px 0;
}

#contacts .left {
  padding-left: 12%;
}

#contacts .right {
  padding-right: 12%;
}
#contacts .left .contact-heading,
#contacts .right .contact-heading {
  margin-bottom: 9px;
  font-weight: bold;
  color: #555;
}

#contacts .left .phone, #contacts .right .link-list {
  font-size: 14px;
  line-height: 22px;
  color: #666;
}

#contacts .right .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

#contacts .right .link-list a {
  color: inherit;
  text-decoration: none;
}
