/* STYLESHEET */

/* FONTS ADDENDUM */

@import url('https://fonts.googleapis.com/css?family=Assistant');

@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,600,700');

html, body
{ 
    font-family: 'Assistant',Helvetica,Arial,sans-serif; 
    margin: 0;
}

/* ##**  BASE BUILDINGS  **############################################################################# */

body {
    color: #474747;
    background-color: #f5f5f5;
}

/* Custom, iPhone Retina */ 
@media only screen and (min-width : 320px) { body { font-size: 14px; } }

/* Extra Small Devices, Phones */ 
@media only screen and (min-width : 480px) { body { font-size: 15px; } }

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) { body { font-size: 16px; } }

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) { body { font-size: 16px; } }

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) { body { font-size: 17px; } }

/* Custom, Extra-Large Devices */
@media only screen and (min-width : 1600px) { body { font-size: 18px; } }

h1 { font-size: 1.8em; margin-top: 0; }
h2 { font-size: 1.6em; margin-top: 0; }
h3 { font-size: 1.4em; margin-top: 0; }
p { margin-bottom: 1.3em; }
.lead { font-size: 1.2em; }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 { 
    letter-spacing: 1px;
    font-weight: 400;
    font-family: 'Merriweather', 'Assistant',Helvetica,Arial,sans-serif;
    color: #656565;
    margin-bottom: 1em;
}

h1 { margin-bottom: 1em; }
h2 { color: #008dd5; font-size: 27px; }
p { font-weight: 300; }
p strong, p b { font-weight: 600; }

.btn { 
    border-width: 5px; 
    border-top: 0; 
    border-left: 0; 
    border-right: 0; 
    background-color: #f5f5f5;
    text-decoration: none;
}

.btn-primary {
    background-color: #008dd5;
    border-color: #0073bb;
    color: #fff;
    text-decoration: none;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #0073bb;
    border-color: #005aa2;
}

/*  === === === === === === === === === === === === === === === === === === ===
    ROUND CORNERS OVERWRITE
=== === === === === === === === === === === === === === === === === === === === */
.img-thumbnail, code, kbd, pre,.form-control, .input-sm, 
.form-group-sm .form-control, .input-lg, 
.form-group-lg .form-control, .btn, .btn-link,
.btn-lg,
.btn-group-lg > .btn,
.btn-sm,
.btn-group-sm > .btn,
.btn-xs,
.btn-group-xs > .btn,
.dropdown-menu,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.input-group-addon,
.input-group-addon.input-sm,
.input-group-addon.input-lg,
.list-group-item:first-child,
.list-group-item:last-child,
.nav-tabs > li > a,
.nav-tabs.nav-justified > li > a,
.nav-pills > li > a,
.nav-tabs-justified > li > a,
.navbar, .navbar-static-top,
.navbar-fixed-top, .navbar-fixed-bottom,
.navbar-toggle, .breadcrumb, .pagination, 
.container .jumbotron, .container-fluid .jumbotron,
.alert, .progress, .panel, .panel-group .panel, .panel-heading,
.well, .well-lg, .well-sm { border-radius: 0; }

/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  HEADER  **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */

.navbar-custom .brand-logo img {
    max-height: 40px;
    margin: 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media(min-width:768px)
{
    .navbar-custom .brand-logo img {
        margin: 5px 0;
    }

    .navbar-custom.top-nav-collapse .brand-logo img {
        max-height: 40px;
        margin: 5px 0;
    }
}

/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  NAVBAR  **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */

.navbar-custom {
    border-radius: 0;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    margin-bottom: 0;
    background: #fff;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

@media(min-width:768px)
{
    .navbar-custom {
        padding: 0;
        border: 0;
    }
    
    .navbar-custom.top-nav-collapse {
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0,0.3);
        background: #fff;
    }
}

.navbar-custom .nav li a {
    color: #000;
    border-bottom: 5px solid white;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    color: #474747;
    background-color: transparent;
    border-color: #005aa2;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
    border-color: #005aa2;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a {
    background-color: #efefef;
    color: #008dd5;
    border-bottom: 5px solid #008dd5;
}


/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  BANNER  **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */


#banner {
    background-image: -moz-linear-gradient(45deg, rgba(0, 141, 213, 0.6), rgba(0, 201, 114, 0.65)), url(../img/background.jpg);
    background-image: -webkit-linear-gradient(45deg, rgba(0, 141, 213, 0.6), rgba(0, 201, 114, 0.65)), url(../img/background.jpg);
    background-image: -ms-linear-gradient(45deg, rgba(0, 141, 213, 0.6), rgba(0, 201, 114, 0.65)), url(../img/background.jpg);
    background-image: linear-gradient(45deg, rgba(0, 141, 213, 0.6), rgba(0, 201, 114, 0.65)), url(../img/background.jpg);
    background-position: center center;
    background-size: cover, cover;
    background-attachment: fixed, scroll;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    min-height: 80vh;
    height: 500px;
}

/* ----------- iPad Pro ----------- */
/* Portrait and Landscape */
@media only screen 
  and (min-device-width: 1024px) 
  and (max-device-width: 1366px) 
  and (-webkit-min-device-pixel-ratio: 1.5) {
  
  #banner { background-attachment: initial; }
}
/* ----------- iPad Pro ----------- */

#banner .content {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgb(0, 141, 213);
    background-color: rgba(0, 141, 213, 0.6);
    color: #ffffff;
    padding: 30px 0 0 0;
    width: 100%;
    font-size: 30px;
}

@media only screen and (max-width : 767px)
{
    #banner .content {
        font-size: 24px;
    }
    
    #banner { background-attachment: initial; }
}

#banner.medium {
    min-height: 95vh;
    height: 500px;
}

#banner.smaller {
    min-height: 5vh;
    height: 250px;
}

#banner .zinecontent {
    background-color: transparent;
    padding: 0;
    top: 0;
    height: 100%;
    display: table;
    position: relative;
} 

#banner .zinecontent .container {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.zinelogo {
   margin: 10px 0;
   display: inline-block;
}

/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  CONTENT **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */

#content, .section {
    background-color: white;
    padding-top: 100px;
    padding-bottom: 100px;
}


.teaser { 
    background-color: #333;
    color: #fff;
}

@media only screen and (max-width : 767px)
{
    .heroimg {
        margin-bottom: 1em;
    }
}

.btn-imelda {
    background-color: #aaaaaa;
    border-color: #cccccc;    
    color: #000;
}

.btn-imelda:hover {
    background-color: #cccccc;
    border-color: #999999;
}

/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  PILLS NAVBAR **######################################################################## */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */

.nav.nav-pills {
	margin-bottom: 20px;
	margin-top: 22px;
}

.nav-pills > li {
	margin-bottom: 5px;
}

.nav-pills > li > a {
    color: #008dd5;
    background-color: #e5e6e9;
	border-radius: 0;
	line-height: 1.2em;
}

.nav-pills > li.active > a {
    background-color: #008dd5;
}

.nav-pills > li > a:focus, 
.nav-pills > li > a:hover,
.nav-pills > li.active > a:focus, 
.nav-pills > li.active > a:hover {
    color: #ffffff;
    background-color: #40cdff;
}


/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  GALLERY **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */

.gal.item {
    border: 1px solid #f5f5f5;
}

.gal .meta {
    color: white;
    background-color: #008dd5;
    margin: 0;
    min-height: 48px;
}

.gal .meta a {
    padding: 11px 10px;
    display: block;
    color: white;
}

.gal .meta a:hover {
    text-decoration: none;
    color: #ffffff;
    background-color: #40cdff;
}

@media only screen and (max-width : 767px)
{
    .gal .meta-large {
        font-size: 1.25em;
    }
}
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  PEOPLE  **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */

.people.item {
    background-color: #efefef;
    border-bottom: 2px solid #ffffff;
    
    color: 333;
    margin-bottom: 25px;
    overflow: hidden;
}

.people.item p {
    margin: 0 15px;
}

.people.item p.name {
    margin-top: 10px;
    font-weight: 700;
    font-size: 1.2em;
}

.people.item p.meta {
    margin-bottom: 10px;
}

/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */
/* ##**  FOOTER  **############################################################################# */
/* ##*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*#*# */


#footer {
	background-color: #f5f5f5;
	padding-top: 30px;
}

.sideblob {
	border-left: 1px solid #fff;
}



