.rss-link {
  padding: 20px 10px;
  text-align: center;
  display: none;
}
.rss-link a {
  display: inline-block;
  padding: 5px 10px;
  background: #1D3557;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}
.rss-link a:hover, .rss-link a:focus {
  background: #C4273F;
}
.home-news .section-header {
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .home-news .section-header {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 900px) {
  .home-news .section-header {
    padding: 40px 20px;
  }
}
.home-news .section-header h2 {
  font-size: 40px;
  line-height: normal;
  font-weight: 900;
  margin: 0;
  color: #1D3557;
  font-family: 'Martel', serif;
  position: relative;
  z-index: 10;
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 1200px) {
  .home-news .section-header h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 900px) {
  .home-news .section-header h2 {
    font-size: 30px;
  }
}
.home-news .section-header h2:after {
  content: '';
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C4273F;
  display: block;
  margin-left: 3px;
}
@media screen and (max-width: 700px) {
  .home-news .section-header h2:after {
    display: none;
  }
}
.home-news .section-header .background-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 170px;
  font-weight: 900;
  line-height: normal;
  width: 100%;
  color: rgba(170, 222, 227, 0.25);
  z-index: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .home-news .section-header .background-text {
    font-size: 150px;
  }
}
@media screen and (max-width: 900px) {
  .home-news .section-header .background-text {
    font-size: 110px;
  }
}
.home-news .news-container {
  display: flex;
  flex-wrap: wrap;
}
.home-news .news-container .news-item {
  width: 50%;
  display: flex;
  align-items: flex-end;
  height: 35vw;
  max-height: 800px;
  position: relative;
  background: #1D3557;
  color: #fff;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
}
@media screen and (max-width: 900px) {
  .home-news .news-container .news-item {
    width: 100%;
    height: 70vw;
  }
}
.home-news .news-container .news-item:after {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 53, 87, 0.75);
  z-index: 2;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
}
.home-news .news-container .news-item:hover, .home-news .news-container .news-item:focus {
  background: #101e31;
}
.home-news .news-container .news-item:hover:after, .home-news .news-container .news-item:focus:after {
  background: rgba(16, 30, 49, 0.98);
}
.home-news .news-container .news-item .image {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home-news .news-container .news-item .news-content {
  position: relative;
  z-index: 10;
  padding: 30px;
  padding-bottom: 50px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .home-news .news-container .news-item .news-content {
    padding: 20px 30px;
  }
}
.home-news .news-container .news-item .news-content .news-date {
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
}
.home-news .news-container .news-item .news-content .news-title {
  font-size: 30px;
  line-height: 38px;
  font-weight: 900;
  font-family: 'Martel', serif;
  padding: 20px 0;
}
@media screen and (max-width: 1200px) {
  .home-news .news-container .news-item .news-content .news-title {
    font-size: 26px;
    line-height: 34px;
    padding: 15px 0;
  }
}
.home-news .news-container .news-item .news-content .news-summary {
  font-size: 16px;
  line-height: normal;
  max-height: 60px;
  overflow: hidden;
}
.home-news .news-container .news-item .news-content .read-more {
  display: flex;
  justify-content: flex-end;
  padding-top: 30px;
}
.home-news .news-container .news-item .news-content .read-more .fa {
  font-size: 34px;
  line-height: normal;
}
@media screen and (max-width: 1200px) {
  .home-news .news-container .news-item .news-content .read-more .fa {
    font-size: 28px;
  }
}
.home-news .news-container.odd-news .news-item {
  width: 33.33%;
}
@media screen and (max-width: 1000px) {
  .home-news .news-container.odd-news .news-item {
    width: 100%;
  }
}
.home-news .news-container.single-news .news-item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .home-news .news-container.single-news .news-item {
    max-width: 100%;
  }
}
.home-news .news-footer {
  padding: 20px 10px;
  text-align: center;
}
.home-news .news-footer a {
  display: inline-block;
  padding: 7px 20px;
  background: #1D3557;
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: all 400ms cubic-bezier(0.19, 1, 0.22, 1);
  text-decoration: none;
}
.home-news .news-footer a:hover, .home-news .news-footer a:focus {
  background: #C4273F;
}
