.subscribe-form button, .post-header, .btn.btn-outline:hover, .btn.btn-fill, .btn.btn-fill:hover {
    background-color: #990000; /* <- Paste here your prefered color */
}

blockquote, .tags > a:hover, .btn.btn-outline {
    border-color: #990000; /* <- Paste here your prefered color */
}

a, .post-title a:hover, .post-category:hover, .navigation .logo a,
.popular-feed li:hover h3 a, .popular-feed li:hover:before, .tags > a:hover,
.latest-feed li:hover h3, a:hover, a:focus, .link-list a:hover, .btn.btn-outline {
	color: #990000; /* <- Paste here your prefered color */
}

.popular-feed li span.city {
    display:block;
    font-size: 12px;
    padding-top:2px;
}

.btn.btn-outline.read-more {
    background-color: rgba(255,255,255,0.3);
}


/*--------------------
Reset
--------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,p,blockquote,hr,th,td {
	margin:0; 
	padding:0;
}



/*--------------------
General
--------------------*/
body {
	-webkit-font-smoothing: antialiased;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	/*background-image: url(/images/bg.jpg);*/
	background-repeat: no-repeat;
	background-position: center top;
}

a, a:hover, a:active, a:focus {
  outline: 0;
  text-decoration: none;
}

a {
    text-decoration:none;
}

a:hover {
    text-decoration:none;
}

p {
    margin: 0 0 20px 0;
    font-size: 1rem;
}

h1,h2,h3 {
    font-family: 'Merriweather', serif;
    font-weight: 400;
    color: #222222;
    margin: 0 0 1rem 0;
}

h4,h5 {
	font-weight: 400;
	margin: 0 0 1rem 0;
}

h1 {
    font-size: 28px;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.6rem;
}

blockquote {
	font-size: 1.6rem;
	font-style: italic;
	border-width: 0 0 0 2px;
    border-style: solid;
	padding: 1.5rem 0 1.5rem 2rem;
	margin: 0 0 1.5rem 0;
}

blockquote p {
    margin: 0;
}

ul,ol {
	font-size: 14px;
	padding: 0 0 0 2rem;
	margin: 0 0 1.5rem 0;
}

hr {
	width: 10rem;
	height: 2px;
    margin: 10px 0;
    background: #ebeef0;
}

input {
    line-height: 20px;
    padding: 15px;
    background: #fff;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #e4e4e4;
}

textarea {
    padding: 15px;
    background: #fff;
    border: 1px solid #e4e4e4;
}

.content {
    margin-top: 60px;
}

.content > * {
    margin-top: 40px;
}


/*--------------------
Header
--------------------*/

.header {
    position: fixed;
    top: 0;
    width: 100%;
    /*background: #333333;*/
    background: #4D0000;
    z-index: 100;
}

.search {
    position: absolute;
    right: 0;
    top: 0;
}

.search-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #8f8f8f;
    border: 0;
    background: 0;
    cursor: pointer;
    z-index: 150;

    -webkit-transition: all .1s ease; 
    -moz-transition: all .1s ease; 
    transition: all .1s ease;
}

.search-btn:hover { background: rgba(0, 0, 0, 0.1); }

.open .search-btn {
    position: relative;
    z-index: 210;
    background: #fff;
}
.open .search-btn:before { 
    content: "" 
}

.open .search-form { 
    display: table; 
    -moz-animation: bounceIn 0.4s;
    -webkit-animation: bounceIn 0.4s;
    animation: bounceIn 0.4s;
}

.search-form {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.search-form-content {
    display: table-cell;
    vertical-align: middle;
    padding: 0 10px;
}

.search-form input {
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    line-height: 40px;
    border-bottom: 1px solid #fff;
}

.navigation {
    position: relative;
    float: left;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.navigation .logo {
    float: left;
    height: 60px;
}

.navigation .logo a {
    display: block;
    font-size: 30px;
    line-height: 40px;
    padding: 10px 20px 10px 0;
    text-transform: uppercase;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu > li {
    float: left;
   
}

.menu > li:first-child { 
    
}

.menu a {
    display: block;
    padding: 20px;
    line-height: 20px;
    /*font-size: 13px;*/
    /*color: #8f8f8f;*/
    font-size: 15px;
    color: #ffffff;
    white-space: nowrap;
    text-transform: uppercase;

    -webkit-transition: all .1s ease; 
    -moz-transition: all .1s ease; 
    transition: all .1s ease;
}

.menu a:hover,
.menu-expand:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #8f8f8f;
}

@media (min-width: 992px) {
    li:hover > .sub-menu {
        display: block;

        -moz-animation: bounceIn 0.3s;
        -webkit-animation: bounceIn 0.3s;
        animation: bounceIn 0.3s;
    }
}

.sub-menu {
    display: none;
    position: absolute;
    margin: 0;
    padding: 0;
    list-style: none;
    background: #f4f4f4;
}

.sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.sub-menu a {
    padding: 10px 20px;
}


@media (max-width: 991px) {
    .menu.open {
        display: block;
        -moz-animation: bounceIn 0.4s;
        -webkit-animation: bounceIn 0.4s;
        animation: bounceIn 0.4s;
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #f4f4f4;
    }

    .menu li {
        float: none;
        width: 100%;
        border-width: 1px 0 0 0!important;
        border-style: solid;
        border-color: #e3e3e3;
    }

    .menu li a {
        padding: 20px;
    }

    .sub-menu {
    	display: none;
        position: static;
    }

    .sub-menu li a { padding-left: 40px; }
    .sub-menu li li a{ padding-left:  60px; }
    .sub-menu li li li a{ padding-left:  60px; }

    .menu-expand {
        position: absolute;
        top: 0;
        right: 0;
        background: #f4f4f4;
        display: block;
        width: 60px;
        height: 60px;
        line-height: 60px;
        cursor: pointer;
    }

    .menu-expand:after {
        width: 100%;
        text-align: center;
        content: "";
        font-style: normal;
        font-family: 'FontAwesome';
        position: absolute;
    }
    .open.menu-expand:after { content: ""; }

}

.menu-icon {
  position: relative;
  display: none;
  margin: 10px;
  width: 25px;
  height: 40px;
  cursor: pointer;
  float: right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu-icon > span {
  position: absolute;
  top: 50%;
  display: block;
  width: 100%;
  height: 5px;
  margin-top: -2px;
  background-color: #8f8f8f;
}

.menu-icon > span:before,
.menu-icon > span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #8f8f8f;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-icon > span:before {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.menu-icon > span:after {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
}

.menu-icon.open {
  -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
}

.menu-icon.open > span:before {
  -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.menu-icon.open > span:after {
  -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

@media (max-width: 991px) {
    .menu-icon {
        display: block;
    }
}


/*--------------------
Slider
--------------------*/
.slider {
    position: relative;
    /*height: 400px;*/
    height: 475px;
    margin: 0 0 20px 0; 
    overflow: hidden;
}

.slides img {
    position: relative;
    left: 50%;
    width: 100%;
    min-width: 620px;
}

.flex-control-paging {
    position: absolute;
    bottom: -50px;
    z-index: 15;
    -webkit-transition: all .3s ease; 
    -moz-transition: all .3s ease; 
    transition: all .3s ease;
}

.slider:hover .flex-control-paging {
    bottom: 20px;
}
.flex-control-paging li {
    overflow: hidden;
    margin: 0 5px;
}

.flex-control-paging li a {
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    opacity: 0.5;
    box-shadow: none;
    -webkit-transition: all .3s ease; 
    -moz-transition: all .3s ease; 
    transition: all .3s ease;
}

.flex-control-paging li a:hover {
    background: #fff;
}

.flex-control-paging li a.flex-active {
    background: #fff;
    opacity: 1;
}

.flex-direction-nav a {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 0;
    opacity: 1;
    color: #fff;
    text-shadow: none;
}
.slider:hover .flex-direction-nav .flex-prev { left: 0; }
.slider:hover .flex-direction-nav .flex-next { right: 0; }

.flex-direction-nav a:before {
    font-family: 'FontAwesome';
    font-size: 30px;
    width: 80px;
    line-height: 80px;
    text-align: center;
}
.flex-direction-nav a.flex-prev:before { content: ""; }
.flex-direction-nav a.flex-next:before { content: ""; }

.caption {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /*height: 400px;*/
    height: 475px;
    padding: 50px 80px;
    background: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.caption > div {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.caption h1 {
    color: #fff;
    line-height: 35px;
}

.caption span {
    display: block;
    color: #fff;
}

.caption .btn {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 25px;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fff;
    -webkit-transition: all .3s ease; 
    -moz-transition: all .3s ease; 
    transition: all .3s ease;
}

.btn:hover {
    background: #fff;
    color: #444;
}

.btn.btn-outline:hover { color: #fff; }
.btn.btn-fill { color: #fff; }
.btn.btn-fill:hover { opacity: 0.8; }

.section-title {
    position: relative;
    text-align: center;
    margin-bottom: 15px;
    border-top: 1px solid #e7e7e7;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    top: -10px;
    padding: 0 30px;
    line-height: 20px;
    background: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #444444;
    text-transform: uppercase;
}

.block-title {
    margin: 0 0 10px 0;
    padding: 15px 20px;
    background: #f4f4f4;
}

.block-title h3 {
    margin: 0;
    color: #b6b6b6;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
}

.category-title {
    margin: 0;
    padding: 20px;
    border: 1px solid #e5e5e5;
    font-family: 'Merriweather', serif;
    font-size: 36px;
    color: #444444;
    text-align: center;
}


/*--------------------
Post
--------------------*/
.post {
    position: relative;
    margin: 0 auto 20px auto;
}

.post:hover .post-image img {
    transform: scale(1.1);
}

.post-image {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;

    -webkit-transition: all .5s ease; 
    -moz-transition: all .5s ease; 
    transition: all .5s ease;
}

.post-category {
    display: block;
    margin-bottom: 5px;
    color: #909090;
    font-size: 14px;
}

.post-title {
    line-height: 22px;
    font-size: 16px;
}

.post-title a {
    color: #444444;
}

.post-meta {
    position: absolute;
    opacity: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10;

    -webkit-transition: all .5s ease; 
    -moz-transition: all .5s ease; 
    transition: all .5s ease;
}

.post:hover .post-meta { 
    opacity: 1; 
}

.post-meta > li + li {
    margin-left: 10px;
}

.post-meta > li {
    position: relative;
    top: 50%;
    display: inline-block;
    margin-top: -15px;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

.post-meta > li i {
    margin-right: 5px;
}


/*-- Popular --*/
.popular.post {
    max-width: 220px;
    text-align: center;
}

.popular .post-entry {
    margin: 0 10px;
}


/*-- Category Listing --*/
.category.post {
    position: relative;
    overflow: hidden;
}

.category .post-image {
    float: left;
    /* HC: max-width: 300px;*/
    max-width: 425px;
    max-height: 275px;
    margin: 0 20px 0 0;
    text-align: center;
}

.category .post-entry {
    position: static;
    overflow: hidden;
}

.category .post-title {
    font-size: 21px;
    line-height: 28px;
}

.category .post-entry p {
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    color: #555;
}

.category + .category {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}

.category .read-more {
    position: absolute;
    bottom: 0;
}


/*-- Latest --*/
.latest.post {
    max-width: 300px;
    text-align: center;
}

.latest .post-entry {
    /*margin: 0 55px;*/
    margin: 0 10px;
}

.latest .post-title a {
    font-size: 19px;
}


/*-- Small --*/
.small.post {
    display: table;
    max-width: 300px;
}

.small .post-image {
    float: left;
    width: 80px;
    height: 80px;
    margin: 0 20px 0 0;
    overflow: hidden;
    border-radius: 50%;
}

.small .post-entry {
    display: table-cell;
    vertical-align: middle;
}

.small .post-title {
    margin: 0;
}


/*-- Featured --*/
.featured.post {
    max-width: 300px;
    text-align: center;
}

.featured + .featured {
    margin-top: 20px;
}

.featured .post-image {
    margin: 0;
}

.featured .post-entry {
    display: table;
    position: absolute;
    top: 0;
    padding: 0 55px;
    width: 100%;
    height: 190px;
    background: rgba(0, 0, 0, 0.4);

    -webkit-transition: all .5s ease; 
    -moz-transition: all .5s ease; 
    transition: all .5s ease;
}

.featured .post-entry > div {
    display: table-cell;
    vertical-align: middle;
}

.featured .post-title {
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 25px;
}

.featured .post-title a {
    color: #fff;
}

.featured .post-category {
    color: #fff;
}

.featured.post:hover .post-entry {
    background: rgba(0, 0, 0, 0.6);  
}


/*-- Single--*/
@media (min-width: 992px) {
    .single.post {
        margin-right: 10px;
    }
}

.single.post > * {
    margin-bottom: 40px;
}

.post-header {
    padding: 20px;
    text-align: center;
}

.post-header * {
    color: #fff;
}

.post-header .post-category:hover {
    color: #fff;
}

.post-header .post-title {
    display: block;
    margin: 10px 100px 30px 100px;
    font-size: 36px;
    line-height: 40px;
}

.post-header img {
    max-width: 100%;
    height: auto;
    border: 3px solid #fff;
}

.post-header-meta {
    display: block;
    margin-top: 30px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.post-header-meta > span {
    margin-left: 10px;
}

.post-content {
    padding: 0 1.5rem;
}

.post-content > * {
    margin: 0 0 1.5rem 0;
}

.post-content p {
    font-size: 16px;
    text-align: justify;
    color: #434343;
    font-family: 'PT Sans', sans-serif;
}

.post-content .fit {
    margin-right: -4rem;
    margin-left: -4rem;
}

.post-content li + li {
    margin-top: 5px;
}


/*-- Tags --*/
.tags {
    overflow: hidden;
}

.tags > a {
    float: left;
    margin: 0 10px 10px 0;
    padding: 3px 12px;
    border-radius: 14px;
    line-height: 22px;
    font-size: 14px;
    color: #848484;
    font-family: 'PT Sans', sans-serif;
    border: 1px solid #d9d9d9;

    -webkit-transition: all .2s ease; 
    -moz-transition: all .2s ease; 
    transition: all .2s ease;
}


/*-- Post Author --*/
.author-image {
    float: left;
    width: 90px;
    height: 90px;
    margin-right: 20px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: auto;
}

.author-info {
    overflow: hidden;
}

.author-info h4 {
    margin: 0;
    font-family: 'Merriweather', serif;
}

.author-info p {
    margin: 0 0 5px 0;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #434343;
}

.author-links > a {
    margin-right: 15px;
    color: #434343;
}


/*-- Share --*/
.share {
    display: inline-block;
    width: 100%;
    padding: 10px 10px 0 10px;
    border: 1px solid #eaeaea;
}

.share h4 {
    float: left;
    margin: 0 0 0 10px;
    line-height: 30px;
    font-size: 16px;
    color: #b6b6b6;
    text-transform: uppercase;
}

.share-links {
    float: right;
}

.share-links a {
    float: left;
    margin: 0 0 10px 10px;
    color: #fff;
}

.share-links a i {
    width: 30px;
    line-height: 30px;
    text-align: center;
}

.share-links a span { 
    float: right;
    line-height: 30px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.1);
}

a.share-facebook { background: #3b5998; }
a.share-twitter { background: #09b0ee; }
a.share-google { background: #dd4c39; }
a.share-pinterest { background: #ce2020; }
a.share-linkedin { background: #007bb5; }


/*-- Related Posts --*/
.related {
    list-style: none;
    margin: 0 0 0 -10px;
    padding: 0;
    overflow: hidden;
}

.related li {
    width: 25%;
    float: left;
    padding-left: 10px;
}

.related li img {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
}

.related h3 {
    font-size: 14px;
    color: #444;
}


/*-- Comments --*/
.comment-list,
.comment-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
}

.comment-list li {
    position: relative;
    float: left;
    margin-top: 20px;
    padding: 20px 0 0 75px;
    border-top: 1px solid #eaeaea;
}

.comment-list > li:first-child {
    margin: 0;
    border: 0;
    padding-top: 5px;
}

.comment-author img {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    left: 0;
}

.comment-author-name {
    display: inline-block;
    font-family: 'Merriweather', serif;
    font-size: 18px;
    color: #434343;
}

.comment-meta {
    display: block;
    font-size: 12px;
    color: #b6b6b6;
}

.comment-body {
    margin-top: 10px;
}

.comment-body p {
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    font-size: 14px;
    color: #555555;
}

.comment-reply {
    display: block;
    margin-top: 10px;
}

.comment-reply:hover {
    color: #434343;
}

/*-- Comment form --*/
.comment-form {
    padding: 20px 20px 0;
    background: #f3f3f3;
    overflow: hidden;
}

.comment-form label {
    display: none;
}

.comment-form input[type="text"],
.comment-form textarea {
    text-transform: none;
    font-family: 'Merriweather', serif;
    font-style: italic;
    color: #aeaeae;
    border: none;
}

.comment-form textarea {
    width: 100%;
    max-width: 100%;
}


/*--------------------
Sidebar
--------------------*/
.widget {
    overflow: hidden;
}

.widget + .widget {
    margin-top: 30px;
}

.widget-title {
    margin: 0 0 15px 0;
    overflow: hidden;
}

.widget-title h3 {
    margin: 0;
    font-size: 16px;
    color: #b6b6b6;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}


/*-- Latest Post - Widget --*/
.latest-feed {
    padding: 0;
    list-style: none;
}

.latest-feed li {
    position: relative;
    background: #f4f4f4;
    margin: 0 0 10px 0;
    overflow: hidden;
}

.latest-feed img {
    float: left;
    width: 80px;
    height: 80px;
    margin: 0 20px 0 0;
}

.latest-feed h3 {
    margin: 20px 20px 20px 0;
    font-size: 14px;
    overflow: hidden;

    -webkit-transition: all .2s ease; 
    -moz-transition: all .2s ease; 
    transition: all .2s ease;
}


/*-- Popular Post - Widget --*/
.popular-feed {
    padding: 0;
    list-style: none;
    /*counter-reset: popular-feed 4;*/
}

.popular-feed li {
    border-bottom: 1px solid #dbdada;
    /*counter-increment: forum-top;*/
    counter-increment: popular-feed;
}

.popular-feed li:first-child {
    border-top: 1px solid #dbdada;
}

.popular-feed h3 {
    font-size: 16px;
    margin: 0;
}

.popular-feed h3 a {
    position: relative;
    display: block;
    padding: 30px 0 30px 65px;
    color: #444;

    -webkit-transition: all .2s ease; 
    -moz-transition: all .2s ease; 
    transition: all .2s ease;
}

.popular-feed h3 a:before {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 30px;
    font-size: 40px;
    line-height: 30px;
    margin-top: -20px;
    text-align: center;
    font-family: 'Merriweather', serif;
    /*content: counter(forum-top, decimal);*/
    content: counter(popular-feed, decimal);

    -webkit-transition: all .2s ease; 
    -moz-transition: all .2s ease; 
    transition: all .2s ease;
}


/*-- Advertisment --*/
.advertisment {
    display: block;
    max-width: 100%;
    margin: 20px auto 40px auto;
}

.banner {
    text-align: center;
}



/*--------------------
Footer
--------------------*/
.footer {
    margin-top: 100px;
    padding: 40px 0;
    background: #f4f4f4;
}

.link-list {
    list-style: none;
    padding: 0;
}

.link-list li + li {
    margin-top: 10px;
}

.link-list a {
    display: block;
    color: #434343;
}

.socials a {
    display: block;
    float: left;
    width: 40px;
    height: 40px;
    margin: 0 15px 15px 0;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #434343;
    font-size: 14px;
    text-align: center;

    -webkit-transition: all .2s ease; 
    -moz-transition: all .2s ease; 
    transition: all .2s ease;
}

.dark.socials a {
    background: #eeeeee;
    margin: 0 8px 8px 0;
}

.socials a:hover { color: #fff; }

.socials a.fa-dribbble:hover { background-color: #da2359; }
.socials a.fa-facebook:hover { background-color: #3b5998; }
.socials a.fa-twitter:hover { background-color: #09b0ee; }
.socials a.fa-tumblr:hover { background-color: #529ecc; }
.socials a.fa-behance:hover { background-color: #0096ff; }
.socials a.fa-vine:hover { background-color: #00bf8f; }
.socials a.fa-youtube:hover { background-color: #cc181e; }
.socials a.fa-linkedin:hover { background-color: #007bb5; }
.socials a.fa-google-plus:hover { background-color: #dd4c39; }

.subscribe p {
    font-family: 'PT Sans', sans-serif;
    font-size: 13px;
    color: #989898;
}

.subscribe-form {
    position: relative;
}

.subscribe-form input {
    padding-right: 60px;
    width: 100%;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    width: 52px;
    height: 52px;
    font-size: 28px;
    border: 0;
    color: #fff;
}

/*-- Copyrights --*/
.copyrights {
    margin: 50px 0 0 0;
    padding: 20px 0 0 0;
    border-top: 1px solid #e4e4e4;
    font-size: 13px;
    font-family: 'PT Sans', sans-serif;
    color: #989898;
}



/*--------------------
404 - Page
--------------------*/
.error {
    margin: 100px 0;
    text-align: center;
}

.error b {
    font-size: 200px;
    font-family: 'Montserrat', sans-serif;
    line-height: 200px;
}

.error h1 {
    color: #bfbfbf;
    font-size: 16px;
    font-family: 'Merriweather', serif;
    font-style: italic;
}

.post-header {background-color:#eee;}
.post-header * {color: #555;}


.top-header .col-md-5.logo-large {width:100%;max-width:190px;text-align:center;margin:auto;padding:0px;}
.logo-large img {width:100%;max-width:184px;}
.top-header .col-md-7.top-banner-728 {width:100%;max-width:728px;margin:0px;padding:0px;margin-top:15px;text-align:center;}
.top-banner-728 img {width:100%;max-width:728px;}

#finalists .post-entry {
    /*background-color: rgba(255,255,255,0.7);*/
    /*width:90%;*/
    /*height: 90%;*/
}
#finalists .entry {
    background-color: rgba(255,255,255,0.7);
    padding:10px;
    margin-top: 15px;
}
/*#finalists .row > div {
    background-color: rgba(255,255,255,0.7);
    width:90%;
    height: 90%;
}*/