/* ==========================================================================
   Base
   ========================================================================== */

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

html,
body,
button,
input,
select,
textarea {
    font-family: "cantarell", arial, sans-serif;
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

h1 {
    font-size: 22px;
    font-weight: bold;
}

h2,
h3,
h4,
h5,
h6 {
    font-size: 14px;
    font-weight: bold;
}

.intro {
    font-weight: bold;
    margin-bottom: 25px;
}

/* ==========================================================================
   Links
   ========================================================================== */

a {
    text-decoration: none;
    color: #A90403;
}

a:hover {
    text-decoration: underline;
}

/* ==========================================================================
    Lists
    ========================================================================== */

ol,
ul {
    padding: 0 0 0 20px;
    margin: 1em 0;
}

ul {
    list-style-type: square;
}

/* ==========================================================================
    Forms
    ========================================================================== */

textarea {
    resize: vertical;
}

input[type="submit"],
button,
.button {
    display: inline-block;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    padding: 7px 18px;
    border: none;
    font-size: 11px;
    text-decoration: none;
}

input[type="submit"]:hover,
button:hover,
.button:hover {
    background: #A90403;
    text-decoration: none
}

/* ==========================================================================
    Media
    ========================================================================== */

iframe,
object,
embed,
img {
    max-width: 100% !important;
}

img {
    height: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    display: block;
    margin-bottom: 10px;
}

.video-wrapper iframe, 
.video-wrapper object, 
.video-wrapper embed,
.video-wrapper img {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}

img.full-width-image {
    width: 100% !important;
    height: auto !important;
}

/* ==========================================================================
    Gallery
    ========================================================================== */

.gallery {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
    overflow: visible !important;
}

.gallery .gallery-icon {
    width: 100% !important;
}

.gallery img {
    width: 100% !important;
    height: auto !important;
    border: none !important;
    display: block !important;
}

.gallery .gallery-caption {
    display: none !important;
}

.gallery .gallery-item {
    float: left !important;
    padding: 0 !important;
    margin: 0 !important;
}

.gallery.gallery-columns-1 .gallery-item {
    width: 100% !important;
}

.gallery.gallery-columns-2 .gallery-item {
    width: 50% !important;
}

.gallery.gallery-columns-3 .gallery-item {
    width: 33.33333% !important;
}

.gallery.gallery-columns-4 .gallery-item {
    width: 25% !important;
}

.gallery.gallery-columns-5 .gallery-item {
    width: 20% !important;
}

.gallery.gallery-columns-6 .gallery-item {
    width: 16.66666% !important;
}

.gallery.gallery-columns-7 .gallery-item {
    width: 14.28571% !important;
}

.gallery.gallery-columns-8 .gallery-item {
    width: 12.5% !important;
}

.gallery.gallery-columns-9 .gallery-item {
    width: 11.11111% !important;
}

/* ==========================================================================
    Other
    ========================================================================== */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

.alignleft {
    float: left;
    margin: 0.3em 1.3em 1.3em 0;
}

.alignright {
    float: right;
    margin: 0.3em 0 1.3em 1.3em;
}

.aligncenter {
    display: block;
    margin: 0.8em auto 1em auto;
}