img {
    max-width: 100%;
}

body {
    background: #EEE url("/img/accent/cubes.png");
}

.feature-image {
    position: relative;
    z-index: 200;
    width: 100%;
    height: 300px;
    background-position: center;
    background-size: cover;
    line-height: 300px;
    text-align: center;
    color: #fff;
    transition: color 0.35s;
}

.feature-image:hover {
    color: rgba(240, 95, 64, 1)
}

.feature-image-text {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    font-family: 'Montserrat', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-image-footer {
    margin: auto;
    width: 100%;
    padding: 10px;
    padding-left: 25%;
    padding-right: 25%;
    position: relative;
    z-index: 200;
    color: #fff;
    text-align: justify;
    background: #222 url("/img/accent/cubes.png");
}

.article-card {
    border-left: 1px solid #d0d0d0;
    border-right: 1px solid #d0d0d0;
}

.article-slab {
    padding-left: 17%;
    padding-right: 17%;
}

.article-text {
    font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #222;
}

.article-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5
}

.article-text h1 {
    font-family: 'Montserrat', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    font-size: 55px;
    font-weight: 700;
    text-transform: uppercase;
}

.article-text h2 {
    font-family: 'Montserrat', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    color: #222;
    font-size: 30px;
}

/**
 * Fancy full-width image styling.
 */
.alicorn-image-full-width-wrapper {
    position: relative;
    z-index: 200;
    height: 455px;
    cursor: pointer;
}

.alicorn-image-full-width {
    height: 100%;
    background-attachment: fixed !important;
}

.alicorn-image-full-width-cover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 210;
    opacity: 0;
    transition: opacity 0.5s;
}

.alicorn-image-full-width-cover-text {
    position: absolute;
    bottom: 0;
    right: 2%;
    z-index: 220;
    opacity: 0;
    transition: opacity 0.5s;
}

.alicorn-image-full-width-cover-text p {
    color: #fff;
    text-align: right;
    font-family: 'Montserrat', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.alicorn-image-full-width-wrapper:hover .alicorn-image-full-width-cover {
    opacity: 0.7;
}

.alicorn-image-full-width-wrapper:hover .alicorn-image-full-width-cover-text {
    opacity: 1;
}

.alicorn-breaking-notice {
    font-size: 14px !important;
    font-weight: 500;
    color: #eb3812 !important;
}

/*
 * Navigation tab styles for use with dual-languages.
 */

/* tab color */
.nav-pills.nav-justified>li>a {
  background-color: #222;
  border: 1px solid #CCC;
  color: #fff;
}

/* active tab color */
.nav-pills.nav-justified>li.active>a,
.nav-pills.nav-justified>li.active>a:hover,
.nav-pills.nav-justified>li.active>a:focus {
  background-color: #118EE1;
  border: 1px solid #CCC;
  color: #fff;
}

/* hover tab color */
.nav-pills.nav-justified>li>a:hover {
  background-color: #118EE1;
}