.page-header {
  position: relative;
}
.page-header .genericon {
  display: block;
  width: 30px;
  height: 30px;
  font-size: 26px;
  line-height: 30px;
}
.page-header .logo svg {
  width: 100%;
  vertical-align: top;
}
@media only screen and (max-width: 1023px) {
  .page-header {
    background-color: #0e406a;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 50px;
  }
  .page-header .logo svg {
    fill: white;
    max-width: 300px;
    height: 24px;
  }
  .page-header .genericon-search {
    position: fixed;
    top: 8px;
    right: 10px;
    color: white;
  }
  .page-header .genericon-menu {
    position: fixed;
    top: 8px;
    left: 10px;
    font-size: 16px;
    color: white;
  }
  .page-header .genericon-menu.active {
    background-color: white;
    color: #0e406a;
  }
}
@media only screen and (min-width: 1024px) {
  .page-header {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
  }
  .page-header .logo {
    margin-right: 20px;
  }
  .page-header .logo svg {
    fill: #0e406a;
    max-width: 470px;
    height: 38px;
  }
  .page-header .genericon-menu {
    display: none;
  }
}

.page-nav a {
  position: relative;
}
.page-nav a::after {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
}
.page-nav a.active::after, .page-nav a:hover::after {
  width: 100%;
}
@media only screen and (max-width: 1023px) {
  .page-nav {
    font: 400 18px/24px "Roboto", sans-serif;
    text-transform: uppercase;
  }
  .page-nav ul {
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transform: translateX(-260px);
    -ms-transform: translateX(-260px);
    -webkit-transform: translateX(-260px);
    transform: translateX(-260px);
    position: fixed;
    top: 44px;
    left: 0;
    background-color: white;
    width: 260px;
    height: calc(100vh - 44px);
    z-index: 10;
    overflow-y: scroll;
    padding-top: 15px;
  }
  .page-nav.expand ul {
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  .page-nav a {
    display: block;
    padding: 12px 15px;
  }
  .page-nav a.active, .page-nav a:hover {
    color: white;
  }
  .page-nav a::after {
    background-color: #025da4;
    height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .page-nav {
    font: 600 18px/22px "EB Garamond", serif;
  }
  .page-nav a {
    padding-bottom: 10px;
  }
  .page-nav a::after {
    background-color: #0e406a;
    height: 1px;
  }
  .page-nav li {
    padding-left: 10px;
    padding-right: 10px;
  }
}

div.main::before {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  visibility: hidden;
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.35);
  position: fixed;
  z-index: 9;
  top: 44px;
  left: 0;
  right: 0;
  bottom: 0;
}
.show-menu div.main::before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}

.search .genericon-search.active {
  background-color: black;
  color: white;
}
.search .genericon-search.active::before {
  content: "\f405";
}
.search form {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 0;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 50px;
}
.search form .form-submit {
  position: absolute;
  width: 0;
  height: 0;
}
.search form .form-text {
  background-color: white;
  border: 1px solid #ccc;
  width: 100%;
  height: 36px;
  text-indent: 15px;
}
@media only screen and (max-width: 1023px) {
  .search form .form-text {
    border-color: transparent;
  }
}
.search.expand form {
  width: 260px;
  overflow: visible;
}

.shrinkHeader .page-header {
  max-width: inherit;
  background-color: #0e406a;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 50px;
}
.shrinkHeader .page-header .logo.f1 {
  -webkit-flex: unset;
  flex: unset;
}
.shrinkHeader .page-header .logo svg {
  fill: white;
  max-width: 300px;
  height: 24px;
}
.shrinkHeader .page-header .genericon-search {
  position: fixed;
  top: 8px;
  right: 10px;
  color: white;
}
.shrinkHeader .page-header .genericon-menu {
  display: block;
  position: fixed;
  top: 8px;
  left: 10px;
  font-size: 16px;
  color: white;
}
.shrinkHeader .page-header .genericon-menu.active {
  background-color: white;
  color: #0e406a;
}
.shrinkHeader .page-header .page-nav {
  font: 400 18px/24px "Roboto", sans-serif;
  text-transform: uppercase;
}
.shrinkHeader .page-header .page-nav ul {
  display: block;
  -moz-transform: translateX(-260px);
  -ms-transform: translateX(-260px);
  -webkit-transform: translateX(-260px);
  transform: translateX(-260px);
  position: fixed;
  top: 44px;
  left: 0;
  background-color: white;
  width: 260px;
  height: calc(100vh - 44px);
  z-index: 10;
  overflow-y: scroll;
  padding-top: 15px;
}
.shrinkHeader .page-header .page-nav li {
  padding: 0;
}
.shrinkHeader .page-header .page-nav.expand::before {
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  visibility: visible;
}
.shrinkHeader .page-header .page-nav.expand ul {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}
.shrinkHeader .page-header .page-nav a {
  display: block;
  padding: 12px 15px;
}
.shrinkHeader .page-header .page-nav a.active, .shrinkHeader .page-header .page-nav a:hover {
  color: white;
}
.shrinkHeader .page-header .page-nav a::after {
  background-color: #025da4;
  height: 100%;
}
.shrinkHeader .search form {
  top: 50%;
  transform: translateY(-50%);
}
.shrinkHeader .search form .form-text {
  border-color: transparent;
}

.btn-link {
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  padding: 10px 30px;
  background-color: #124069;
  color: white;
  text-align: center;
  cursor: pointer;
}
.btn-link:hover {
  background-color: #025da4;
}
.btn-link.gold {
  background-color: #a6885f;
}
.btn-link.gold:hover {
  background-color: #C0A279;
}
.btn-link.secondary, .btn-link.primary {
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
}
.btn-link.secondary:hover, .btn-link.primary:hover {
  background-color: white;
}
.btn-link.primary:hover {
  color: #0e406a;
}
.btn-link.secondary:hover {
  color: #a6885f;
}
.btn-link span {
  display: inline-block;
  margin-left: 15px;
}
.btn-link.gray {
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background-color: #c0c0c0;
}
.btn-link.gray:hover {
  background-color: #828282;
}

@keyframes slide1 {
  0%,100% {
    transform: translate(-5px, 0);
  }
  50% {
    transform: translate(5px, 0);
  }
}
.photo-slider2,
.photo-slider,
.slider {
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
}
.photo-slider2.slick-initialized,
.photo-slider.slick-initialized,
.slider.slick-initialized {
  visibility: visible;
  max-height: inherit;
  overflow: visible;
}

/* main slider */
.main-slider .slick-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 1;
  padding-left: 15px;
  padding-right: 15px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
.main-slider .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  display:none;
}
.main-slider .slick-dots button {
  font-size: 0;
  width: 20px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-right: 4px;
  cursor: pointer;
}
.main-slider .slick-dots .slick-active button {
  background-color: white;
}
.main-slider .slider-item {
  font-weight: 400;
}
.main-slider .slider-item .container {
  position: relative;
}
.main-slider .slider-item .image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 480px;
  padding-bottom: 0;
}
.main-slider .slider-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: white;
  font: 14px/20px "Roboto", sans-serif;
  padding-bottom: 70px;
}
.main-slider .slider-item figcaption h2 {
  margin-bottom: 10px;
}
.main-slider .slider-item figure {
  position: relative;
}
.main-slider .slider-item figure::before {
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjEuMCIgeDI9IjEuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjg1Ii8+PHN0b3Agb2Zmc2V0PSI1MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 100%, 100% 0%, color-stop(0%, rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0)));
  background-image: -moz-linear-gradient(left bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  background-image: -webkit-linear-gradient(left bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  background-image: linear-gradient(to right top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 50%);
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
}
.main-slider .slider-item figure.nogradient::before {
  content:none;
}
.main-slider .description {
    color:rgba(255,255,255,.9);
    font:bold 16px/16px "Roboto", sans-serif;
    margin-top:20px;
    margin-bottom:20px;
    text-shadow: 0 0 5px #000000;
}
@media (min-width: 768px) {
    /*.main-slider .slider-item figcaption {
        min-height:65%;
    }
    .main-slider .slider-item figcaption > .row {
        height:100px;
    }*/
    .main-slider .description {
        position:absolute;
        bottom:-40px;
        right:15px;
    }
}
/*subpage slider */
.slider-item .container {
  position: relative;
  max-width: 1600px;
}

.slider-item .image {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 36.88888888%;
}

.slider-item .info {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjAuNSIgeDI9IjEuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2E2ODg1ZiIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iI2E2ODg1ZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-size: 100%;
  background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(166, 136, 95, 0.6)), color-stop(80%, #a6885f));
  background-image: -moz-linear-gradient(left, rgba(166, 136, 95, 0.6) 0%, #a6885f 80%);
  background-image: -webkit-linear-gradient(left, rgba(166, 136, 95, 0.6) 0%, #a6885f 80%);
  background-image: linear-gradient(to right, rgba(166, 136, 95, 0.6) 0%, #a6885f 80%);
  color: #fff;
  padding: 30px;
}

.slider-item .info p {
  font-size: 20px;
  line-height: 24px;
  margin-top: 17px;
}

.slider-item .info.gray, .slider-item .info.blue {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzEyNDA2OSIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iIzEyNDA2OSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(18, 64, 105, 0.6)), color-stop(80%, #124069));
  background-image: -moz-linear-gradient(top, rgba(18, 64, 105, 0.6) 0%, #124069 80%);
  background-image: -webkit-linear-gradient(top, rgba(18, 64, 105, 0.6) 0%, #124069 80%);
  background-image: linear-gradient(to bottom, rgba(18, 64, 105, 0.6) 0%, #124069 80%);
}

.slider-item .info.gray h3, .slider-item .info.blue h3 {
  font-size: 45px;
  line-height: 45px;
}

.slider-item .info.gray p, .slider-item .info.blue p {
  font-size: 16px;
  line-height: 18px;
  margin-top: 10px;
}

.slider-item .info.gray {
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzk5OGY4OSIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjgwJSIgc3RvcC1jb2xvcj0iIzk5OGY4OSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(153, 143, 137, 0.6)), color-stop(80%, #998f89));
  background-image: -moz-linear-gradient(top, rgba(153, 143, 137, 0.6) 0%, #998f89 80%);
  background-image: -webkit-linear-gradient(top, rgba(153, 143, 137, 0.6) 0%, #998f89 80%);
  background-image: linear-gradient(to bottom, rgba(153, 143, 137, 0.6) 0%, #998f89 80%);
}

@media only screen and (min-width: 1024px) {
  .slider-item .info {
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 0;
    padding: 60px 70px;
    max-width: 670px;
  }

  .slider-item .info.gray, .slider-item .info.blue {
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    top: inherit;
    bottom: -40px;
    padding: 40px 60px;
    max-width: 520px;
  }
}
@media (min-width: 1630px) {
  .slider-item .info {
    margin-right: -30px;
    padding-right: 100px;
  }

  .slider-item .info.blue {
    margin-right: 30px;
    padding-right: 70px;
    margin-right: 0;
  }
}
.slider-item figure {
  position: relative;
}

.slider-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  font: 14px/17px Roboto,sans-serif;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* homepage blocks */
.block-title {
  text-transform: uppercase;
  color: #0e406a;
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
  padding-top: 30px;
  padding-bottom: 20px;
}

.block {
  margin-bottom: 30px;
  position: relative;
}
.block::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  bottom: 0;
}
.block article {
  position: relative;
}
.block .info {
  padding: 22px 18px 40px;
}
.block .title {
  font: 600 20px/24px "EB Garamond", serif;
  color: #0e406a;
  margin-bottom: 16px;
}
.block .title a:hover {
  opacity: .8;
}
.block p {
  font-size: 14px;
  line-height: 18px;
}
.block .category {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  text-transform: uppercase;
  margin-bottom: 19px;
}

.block-1::before,
.block-2::before,
.block-3::before {
  background-color: #e9e9e9;
}

.block-1 p,
.block-4 p {
  max-height: 54px;
  overflow: hidden;
}

.block-1 .title {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 10px;
}
.block-1 time {
  color: #0e406a;
  font-size: 12px;
  line-height: 12px;
}
.block-1 .info {
  padding-top: 16px;
  padding-bottom: 20px;
}

.block-2 {
  color: #a6885f;
}
.block-2 .category {
  position: relative;
  margin-bottom: 24px;
}
.block-2 .category::after {
  content: "";
  display: block;
  background-color: rgba(165, 135, 91, 0.5);
  width: 50px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.block-2 .title {
  color: #a6885f;
}
.block-2 .info {
  position: relative;
  padding-bottom: 20px;
}
.block-2 .info .more {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  background-color: #a6885f;
  color: white;
  position: absolute;
  top: -30px;
  right: 25px;
  text-align: center;
  line-height: 60px;
}
.block-2 .info .more:hover {
  background-color: rgba(165, 135, 91, 0.9);
}
.block-2 .category {
  padding-bottom: 21px;
}
.bg .block-2::before {
  background-color: white;
}
.bg .block-2 .title {
  font-size: 18px;
  line-height: 22px;
  color: #444;
}

.block-3 {
  color: white;
}
.block-3::before {
  background-color: #0e406a;
}
.block-3 p {
  font-size: 16px;
  margin-bottom: 17px;
}
.block-3 p small {
  font-weight: normal;
  font-size: 12px;
  font-family: sans-serif;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .block-3 article {
    display: -webkit-flex;
    display: flex;
  }
  .block-3 .info,
  .block-3 figure {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .block-3 figure {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .block-3 .info {
    position: relative;
    z-index: 1;
    background-color: #0e406a;
    padding: 32px 29px 28px;
  }
}

.block-4::before {
  background-color: white;
}
.block-4 .category {
  color: #245d9f;
}
@media only screen and (min-width: 1024px) {
  .block-4 .info {
    position: relative;
    background-color: white;
    margin-top: -40px;
  }
}

.block-5 {
  color: white;
}
.block-5::before {
  background-color: #a6885f;
}
.block-5 .title {
  font-size: 24px;
  line-height: 24px;
  color: white;
}
.block-5 p {
  font-size: 14px;
  line-height: 20px;
}
@media only screen and (max-width: 1023px) {
  .block-5 p {
    margin-bottom: 20px;
  }
}
.block-5 article {
  padding-top: 28px;
  padding-bottom: 28px;
}
.block-5 article > div {
  padding-left: 28px;
  padding-right: 28px;
}

/* subpage slider */
.photo-slider2 .image {
  display: block;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 56.25%;
}
.photo-slider2 figcaption {
  font-size: 14px;
  line-height: 24px;
  padding: 6px 10px 50px;
}
.photo-slider2 .slick-dots {
  position: relative;
  z-index: 1;
  text-align: center;
  height: 0;
}
.photo-slider2 .slick-dots li {
  display: inline-block;
  vertical-align: middle;
  height: 0;
}
.photo-slider2 .slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
  margin: 0 3px;
  cursor: pointer;
}
.photo-slider2 .slick-dots .slick-active button {
  background-color: #025da4;
}

.photo-slider2-wrap {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .photo-slider2-wrap {
    padding-top: 60px;
    margin-left: 8.33333333%;
  }
}

.slick-arrows2 {
  height: 0;
  -moz-transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
  margin-left: 66.66666666%;
  position: relative;
  z-index: 1;
  top: -10px;
}

.slick-arrow {
  width: 60px;
  height: 42px;
  cursor: pointer;
  background-color: #0e406a;
  color: white;
}
.slick-arrow:hover {
  background-color: #a0a0a0;
}
.slick-arrow.slick-disabled {
  background-color: #eee;
}

.events {
  padding-top: 10px;
  padding-bottom: 50px;
}
.events .block-title {
  padding-bottom: 50px;
}
.events li {
  margin-bottom: 30px;
}
.events .date {
  text-align: center;
  border-right: 1px solid #0e406a;
  padding-top: 7px;
  padding-right: 25px;
  margin-right: 24px;
}
.events .date .day {
  font: 600 40px/40px "EB Garamond", serif;
  color: #0e406a;
  margin-bottom: 4px;
}
.events .date .month {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: #666;
  text-transform: uppercase;
}
.events .title {
  font: 600 24px/24px "EB Garamond", serif;
  color: #0e406a;
  margin-bottom: 12px;
}
.events .title a:hover {
  color: #025da4;
}
.events p {
  font-size: 14px;
  line-height: 20px;
}

.oli {
  background: url("../images/bg-oli.jpg") center top/cover no-repeat;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}
.oli .logo a {
  display: block;
  width: 138px;
  height: 63px;
  background:url('../images/oli-logo-white.svg') center / contain no-repeat;
}
.oli h2 {
  margin-bottom: 20px;
}
.oli p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .oli .logo {
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .oli {
    padding-top: 127px;
    padding-bottom: 158px;
  }
  .oli .logo {
    padding-left: 153px;
  }
}

.our-ministries {
  padding-bottom: 40px;
}
.our-ministries h6 {
  margin-bottom: 4px;
}
.our-ministries p {
  font-size: 12px;
  line-height: 18px;
  max-height: 54px;
  overflow: hidden;
}
.our-ministries .item {
  transition: 0.5s;
  margin-bottom: 30px;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 25%;
  position: relative;
}
.our-ministries .item a {
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .our-ministries .item {
    padding-top: 10%;
  }
}
.our-ministries .item::before, .our-ministries .item::after {
  content: "";
  display: block;
  width: 15px;
  background-color: white;
  position: absolute;
  top: 0;
  height: 100%;
}
.our-ministries .item::before {
  left: 0;
}
.our-ministries .item::after {
  right: 0;
}
.our-ministries .info {
  background-color: #a6885f;
  color: white;
  padding: 20px;
  flex: 1;
}
.our-ministries .item-3 .info,
.our-ministries .item-1 .info {
  background-color: #f5ebdf;
  color: #0e406a;
}
.our-ministries .item-2 .info {
  background-color: #43b4d2;
}
.our-ministries .item-5 .info {
  background-color: #5c8bb4;
}
.our-ministries .item-7 .info {
  background-color: #edeae7;
  color: #0e406a;
}
.our-ministries .item-9 .info {
  background-color: #edeae7;
  color: #333;
}
.our-ministries .item-11 .info {
  background-color: #f5ebdf;
  color: #0e406a;
}
.our-ministries .item-12 .info {
  background-color: #5c8bb4;
}
.our-ministries .item-13 .info {
  background-color: #418e7f;
}
.our-ministries .item-15 .info {
  background-color: #43b4d2;
}
.our-ministries.bg2 .item::before,
.our-ministries.bg2 .item::after {
  background-color: #e9e9e9;
}
.our-ministries.bg .item::before,
.our-ministries.bg .item::after {
  background-color: #f1f1f1;
}
.our-ministries .hidden {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

.also-explore {
  padding-bottom: 10px;
}
.also-explore .banner {
  position: relative;
  margin-bottom: 45px;
}
.also-explore .banner .ta-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  color: white;
}
.also-explore .banner h2 {
  margin-bottom: 40px;
  font-weight: normal;
}
@media only screen and (max-width: 767px) {
  .also-explore .banner h2 {
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}
.also-explore .block-4 article {
  height: 100%;
}
.also-explore .block-4 .info {
  margin-top: 0;
  padding-bottom: 20px;
}
.also-explore .block-4 .category {
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 10px;
}
.also-explore .block-4 .title {
  line-height: 20px;
  margin-bottom: 10px;
}

.verse {
  font: 600 24px/36px "EB Garamond", serif;
}
.verse p {
  padding: 30px;
}
@media only screen and (min-width: 768px) {
  .verse p {
    padding: 70px;
  }
}

/* subpages */
.breadcrumb {
  text-transform: uppercase;
  color: #707070;
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.breadcrumb li::after {
  content: "/";
  margin-left: 4px;
  margin-right: 4px;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb span {
  color: #025da4;
}
.breadcrumb span.gold {
  color: #a6885f;
}

.border-deco {
  height: 1px;
  background-color: #ddd;
  margin-top: 45px;
  margin-bottom: 45px;
}

.border-deco2 {
  height: 3px;
  background-color: #ddd;
}
article.full .border-deco2 {
  margin-top: 45px;
  margin-bottom: 45px;
}

article.full {
  position: relative;
  font-weight: 300;
  font-size: 20px;
  line-height: 30px;
  padding-bottom: 30px;
}
article.full h2,article.full h1 {
  margin-bottom: 55px;
}
article.full.clearfix {
  font-size: 18px;
}
article.full.clearfix h2,article.full.clearfix h1 {
  margin-bottom: 35px;
}
article.full time {
  display: block;
  color: #666;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 15px;
}
article.full figure {
  margin-bottom: 50px;
}
article.full h3 {
  font-size: 33px;
  line-height: 36px;
  margin-bottom: 25px;
}
article.full h5 {
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  margin-top: 70px;
  margin-bottom: 35px;
}
article.full p {
  margin-bottom: 30px;
}
article.full a {
  color: #025da4;
}
article.full a:hover {
  color: #0e406a;
}
article.full blockquote {
  font: 24px/32px "EB Garamond", serif;
}
article.full blockquote strong {
  font-weight: 600;
}
article.full .image {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  article.full .image {
    float: right;
    max-width: 50%;
    margin-left: 30px;
  }
}

article.full > label {
  display: none;
}
@media (min-width: 1487px) {
  article.full > label label {
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: inline-block;
    position: absolute;
    z-index: 1;
    top: 97px;
    left: -157px;
    font: bold 24px/45px "EB Garamond", serif;
    text-transform: uppercase;
    background-color: #a6885f;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
  }
}

article.full form label {
  display: block;
  font: 12px/12px "Roboto", sans-serif;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  color: #666;
}
article.full form input,
article.full form textarea {
  background-color: #f1f1f1;
  width: 100%;
  padding: 15px;
  font-size: 14px;
  line-height: 17px;
  margin-bottom: 20px;
  border-radius: 3px;
}
article.full form .btn {
  cursor: pointer;
  background-color: #0e406a;
  color: white;
  width: 100px;
  height: 40px;
  font-size: 14px;
  border-radius: 3px;
  margin-bottom: 70px;
  font-weight: 700;
}
article.full form .btn:hover {
  background-color: #025da4;
}

.more-blocks {
  margin-bottom: 30px;
}
.more-blocks .block-title {
  font-size: 20px;
  line-height: 20px;
}
.more-blocks article {
  padding: 50px;
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  margin-top: 35px;
}
.more-blocks article h3 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 20px;
}
.more-blocks article p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 22px;
}
.more-blocks article .btn-link {
  margin-top: 25px;
}
.more-blocks article.clearfix .image {
  width: 250px;
  float: left;
  margin-right: 30px;
}
.more-blocks article.clearfix h3 {
  margin-bottom: 15px;
}
.more-blocks article .more {
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  margin-top: 25px;
}
.more-blocks article .more span {
  margin-left: 10px;
}
.more-blocks article .more:hover {
  color: #0e406a;
}
.more-blocks.row article {
  padding: 30px 40px 50px;
}
@media only screen and (min-width: 768px) {
  .more-blocks .col-sm-6:nth-of-type(odd) {
    clear: left;
  }
}

.more-list {
  padding-top: 10px;
}
.more-list li {
  padding-top: 50px;
  padding-bottom: 60px;
  border-top: 1px solid #d8d8d8;
}
.more-list li:first-child {
  padding-top: 0;
  border-top: 0;
}
.more-list .image {
  -webkit-flex: none;
  flex: none;
}
@media only screen and (max-width: 1023px) {
  .more-list .image {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .more-list .image {
    margin-right: 30px;
  }
}
.more-list .info {
  -webkit-flex: 1;
  flex: 1;
}
.more-list h3 {
  font-size: 40px;
  line-height: 40px;
  margin-bottom: 25px;
}
.more-list p {
  line-height: 30px;
  margin-bottom: 15px;
}
article.full a.more,
.more-list .more {
  display: inline-block;
  vertical-align:middle;
  font-weight: bold;
  font-size: 14px;
  line-height:30px;
  color:#222;
}
article.full a.more span,
.more-list .more span {
  margin-left: 10px;
  display:inline-block;
  vertical-align:text-bottom;
  line-height:22px;
}
article.full a.more:hover,
.more-list .more:hover {
  color: #025da4;
}

.list-links {
  font: 600 22px/22px "EB Garamond", serif;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}
.list-links a {
  display: block;
  padding: 19px 30px;
  border-top: 1px solid #ddd;
}
.list-links a:hover {
  background-color: #f9f9f9;
}
.list-links .current a {
  background-color: #0e406a;
  color: white;
}

.featured-events {
  margin-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
}
.featured-events date {
  padding: 9px 14px;
  background-color: #7593ad;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.featured-events date .day {
  font: 600 40px/40px "EB Garamond", serif;
  color: white;
}
.featured-events date .month {
  font-weight: bold;
  font-size: 14px;
  line-height: 14px;
  color: white;
  text-transform: uppercase;
}
.featured-events h5 {
  color: #383737;
}
.featured-events h4 {
  padding-top: 30px;
}
.featured-events ul li {
  display: -webkit-flex;
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #cacaca;
}
.featured-events ul li:first-child {
  border-top: 0;
}
.featured-events ul li date {
  -webkit-flex: none;
  flex: none;
  margin-right: 30px;
}
.featured-events ul li h5 {
  -webkit-flex: 1;
  flex: 1;
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .featured-events {
    padding-left: 25px;
    padding-right: 25px;
  }
  .featured-events ul li date {
    width: 64px;
    margin-right: 20px;
  }
  .featured-events ul li h5 {
    font-size: 20px;
  }
}

.devotion {
  margin-bottom: 40px;
}
.devotion::before {
  left: 0;
  right: 0;
}
.devotion p {
  margin-bottom: 30px;
}

.resources {
  margin-bottom: 40px;
}
.resources .inner {
  padding: 0 30px 30px;
}
.resources .inner p {
  font-size: 18px;
  line-height: 24px;
  color: #787878;
}
.resources .banner {
  padding: 45px 30px 30px;
}
.resources .banner .btn-link {
  margin-bottom: 15px;
}

.region {
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  padding-bottom: 50px;
}
.region-wrap {
  padding-top: 70px;
  padding-bottom: 50px;
}
.region h5 {
  display: inline-block;
  border-top: 6px solid #0e406a;
  padding-top: 15px;
  padding-bottom: 20px;
}
.region li {
  width: 50%;
  margin-top: 10px;
}

.more-list2 {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-bottom: 70px;
}
@media only screen and (min-width: 1024px) {
  .more-list2 {
    margin-bottom: 130px;
  }
}
.more-list2 .title {
  font-weight: normal;
}
.more-list2 article {
  padding-top: 35px;
}
.more-list2 article h4 {
  margin-bottom: 6px;
}
.more-list2 .image {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .more-list2 .image {
    float: left;
    margin-right: 30px;
    margin-bottom: 5px;
  }
}
.more-list2 .more {
  text-transform: uppercase;
  display: inline-block;
  font-weight: bold;
  font-size: 14px;
  color: #025da4;
  margin-bottom: 4px;
}
.more-list2 .more:hover {
  color: #0e406a;
}
.more-list2 p {
  max-height: 73px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.list-links2 li div {
  padding-top: 20px;
  padding-bottom: 20px;
}
.list-links2 li:nth-child(n+3) div {
  border-top: 1px solid #ddd;
}
@media only screen and (min-width: 768px) {
  .list-links2 li:nth-child(odd) {
    clear: left;
  }
}

.list-articles .block-title {
  color: #025da4;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  padding-bottom: 25px;
}
.list-articles article {
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) {
  .list-articles article .image {
    margin-right: 40px;
  }
}
.list-articles article .category {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 16px;
  line-height: 16px;
  color: #afafaf;
  margin-bottom: 10px;
}
.list-articles article h4 {
  margin-bottom: 15px;
}
.list-articles article p {
  font-size: 18px;
  line-height: 20px;
}

.page-footer {
  background-color: #3d3d3d;
}
.page-footer .logo svg {
  fill: white;
  width: 100%;
  max-width: 470px;
  height: 38px;
  vertical-align: middle;
}
@media only screen and (min-width: 1024px) {
  .page-footer .logo {
    margin-right: 20px;
  }
}
.page-footer .top {
  color: white;
  padding-bottom: 45px;
}
@media only screen and (min-width: 1024px) {
  .page-footer .top {
    padding-top: 40px;
  }
}
.page-footer .bottom {
  border-top: 1px solid #6c6c6c;
  color: #939598;
  padding-top: 15px;
  padding-bottom: 15px;
}
.page-footer .bottom li {
  padding-top: 7.5px;
  padding-bottom: 7.5px;
}
.page-footer .bottom a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 768px) {
  .page-footer .bottom {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-footer .bottom {
    padding-top: 0;
    padding-bottom: 90px;
  }
}
.page-footer .logos {
  font-size: 12px;
  line-height: 16px;
}
.page-footer .logos img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  margin-right: 10px;
}
.page-footer .logos li {
  width: 50%;
  padding-right: 10px;
}
@media only screen and (min-width: 768px) {
  .page-footer .logos {
    width: 66.666666%;
  }
}
@media only screen and (min-width: 1024px) {
  .page-footer .logos {
    padding-top: 25px;
    width: 80%;
  }
  .page-footer .logos li {
    width: 25%;
  }
}
.page-footer .quicklinks {
  font-size: 14px;
}
.page-footer .quicklinks::before {
  content: "QUICK LINKS";
  display: block;
  color: white;
}
@media only screen and (max-width: 767px) {
  .page-footer .quicklinks {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .page-footer .quicklinks::before,
  .page-footer .quicklinks li {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-footer .quicklinks::before {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
  }
}
@media only screen and (min-width: 768px) {
  .page-footer .quicklinks {
    border-left: 1px solid #6c6c6c;
    padding-left: 50px;
    width: 33.333333%;
  }
}
@media only screen and (min-width: 1024px) {
  .page-footer .quicklinks {
    padding-top: 35px;
    width: 20%;
  }
}

.copyright {
  background-color: #373737;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  text-align: center;
  font-size: 10px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.logos a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.logos a::before {
  -webkit-flex: none;
  flex: none;
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../images/footer-logos.png?v=8");
  background-size: 149px;
  background-repeat: no-repeat;
  margin-right: 7px;
  opacity: .4;
}

.logo-ou a::before {
  background-position: 0 0;
  width: 33px;
  height: 30px;
}

.logo-f a::before {
  background-position: -35px 0;
  width: 31px;
  height: 31px;
}

.logo-y a::before {
  background-position: -66px 0;
  width: 26px;
  height: 31px;
}

.logo-c a::before {
  background-position: -117px 0;
  width: 31px;
  height: 31px;
}

.logo-r a::before {
  background-position: 0 -31px;
  width: 29px;
  height: 29px;
}

.logo-e a::before {
  background-position: -35px -31px;
  width: 15px;
  height: 31px;
}

.logo-a a::before {
  background-position: -66px -31px;
  width: 36px;
  height: 17px;
}

.logo-v a::before {
  background-position: -117px -31px;
  width: 32px;
  height: 32px;
}

.logo-ol a::before {
  background-position: 0 -63px;
  width: 29px;
  height: 27px;
}

.logo-j a::before {
  background-position: -35px -63px;
  width: 30px;
  height: 30px;
}

.logo-s a::before {
  background-position: -66px -63px;
  width: 33px;
  height: 33px;
}

.logo-b a::before {
  background-position: -117px -63px;
  width: 30px;
  height: 30px;
}

.logo-h a::before {
  background-position: 0 -96px;
  width: 31px;
  height: 20px;
}

.logo-ot a::before {
  background-position: -35px -96px;
  width: 29px;
  height: 29px;
}

.logo-g a::before {
  background-position: -66px -96px;
  width: 51px;
  height: 13px;
}

.logo-n a::before {
  background-position: -117px -96px;
  width: 31px;
  height: 25px;
}

.logo-se a::before {
  background-position: 0 -125px;
  width: 31px;
  height: 29px;
}
.logo-yd a::before {
  background-position: -35px -125px;
  width: 26px;
  height: 29px;
}

/* leadership page */
article.full.page-leadership figure {
    margin-bottom:16px;
}
article.full.page-leadership .row-top figure {
    margin-bottom:25px;
}
.page-leadership figure img {
    width:auto;
}
.page-leadership figcaption {
    padding-bottom:40px;
}
.page-leadership label {
    display:block;
    font-weight:600;
    font-size:12px;
    line-height:16px;
    text-transform:uppercase;
    margin-bottom:6px;
}
.page-leadership h2 {
    font-size:36px;
    line-height:42px;
}
.page-leadership h3 {
    font-size:26px;
    line-height:24px;
}
.page-leadership h4 {
    font-size:16px;
    line-height:20px;
}
.row-top p {
    color:#585656;
    font-weight:normal;
    font-size:14px;
    line-height:18px;
}
.row-bottom {
    padding-top:85px;
}
@media (min-width: 768px) {
    .page-leadership .row-top figcaption {
        text-align:right;
    }
}
@media (min-width:1200px) {
    .page-leadership .row {
        margin-left:-35px;
        margin-right:-35px;
    }
    .page-leadership .row > div {
        padding-left:35px;
        padding-right:35px;
    }
}
