/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}



/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}



/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    /* Make sure images are scaled correctly. */
    max-width: 100%;
    /* Adhere to container width. */
}

figure {
    margin: 1em 0;
    /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}



/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 0px;
    background: #fff;
    /*color: rgba(0, 0, 0, 0.8);*/
    font-size: 14px;
    line-height: 1;
    padding: 10px 15px;
    transition: .6s;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    /*border-color: rgba(244,67,54,1);*/
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #666;
    border: 1px solid #ccc;
    border-radius: 0px;
    padding: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
}



/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {
    color: royalblue;
}



/*a:hover, a:focus, a:active {
    color: midnightblue;
}*/

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}



/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/

.main-navigation {
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li.focus>ul {
    left: 100%;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
    left: auto;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
}



/* Small menu. */

.menu-toggle,
.main-navigation.toggled ul {
    display: block;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}



/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/


/* Text meant only for screen readers. */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}



/* Do not show the outline on the skip link target. */

#content[tabindex="-1"]:focus {
    outline: 0;
}



/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/

.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}



/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/

.widget {
    margin: 0 0 1.5em;
    /* Make sure select elements fit in widgets. */
}

.widget select {
    max-width: 100%;
}



/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/


/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/

.sticky {
    display: block;
}

.hentry {
    margin: 0 0 1.5em;
}

.updated:not(.published) {
    display: none;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}

.page-links {
    clear: both;
    margin: 0 0 1.5em;
}



/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}



/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/


/* Globally hidden elements when Infinite Scroll is supported and in use. */

.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}



/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */

.infinity-end.neverending .site-footer {
    display: block;
}



/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}



/* Make sure embeds and iframes fit their containers. */

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



/* Make sure logo link wraps around logo image. */

.custom-logo-link {
    display: inline-block;
}



/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}

.wp-caption-text {
    text-align: center;
}



/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

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

.gallery-columns-3 .gallery-item {
    max-width: 32.3%;
}

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

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

.gallery-columns-6 .gallery-item {
    max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
    max-width: 14.28%;
}

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

.gallery-columns-9 .gallery-item {
    max-width: 11.11%;
}

.gallery-caption {
    display: block;
}


/*! #######################################################################

    MeanMenu 2.0.7
    --------

    To be used with jquery.meanmenu.js by Chris Wharton (http://www.meanthemes.com/plugins/meanmenu/)

####################################################################### */

/* hide the link until viewport size is reached */
a.meanmenu-reveal {
    display: none;
}

/* when under viewport size, .mean-container is added to body */
.mean-container .mean-bar {
    float: left;
    width: 100%;
    position: relative;
    background: #0c1923;
    padding: 4px 0;
    min-height: 42px;
    z-index: 999999;
}

.mean-container a.meanmenu-reveal {
    width: 22px;
    height: 22px;
    padding: 13px 13px 11px 13px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-indent: -9999em;
    line-height: 22px;
    font-size: 1px;
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
    display: block;
    background: #fff;
    height: 3px;
    margin-top: 3px;
}

.mean-container .mean-nav {
    float: left;
    width: 100%;
    background: #0c1923;
    margin-top: 44px;
}

.mean-container .mean-nav ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
}

.mean-container .mean-nav ul li {
    position: relative;
    float: left;
    width: 100%;
}

.mean-container .mean-nav ul li a {
    display: block;
    float: left;
    width: 90%;
    padding: 1em 5%;
    margin: 0;
    text-align: left;
    color: #fff;
    border-top: 1px solid #383838;
    border-top: 1px solid rgba(255,255,255,0.5);
    text-decoration: none;
    text-transform: uppercase;
}

.mean-container .mean-nav ul li li a {
    width: 80%;
    padding: 1em 10%;
    border-top: 1px solid #f1f1f1;
    border-top: 1px solid rgba(255,255,255,0.25);
    opacity: 0.75;
    filter: alpha(opacity=75);
    text-shadow: none !important;
    visibility: visible;
}

.mean-container .mean-nav ul li.mean-last a {
    border-bottom: none;
    margin-bottom: 0;
}

.mean-container .mean-nav ul li li li a {
    width: 70%;
    padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
    width: 60%;
    padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
    width: 50%;
    padding: 1em 25%;
}

.mean-container .mean-nav ul li a:hover {
    background: #252525;
    background: rgba(255,255,255,0.1);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 1px;
    width: 26px;
    height: 32px;
    padding: 12px !important;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    font-weight: 700;
    background: rgba(255,255,255,0.1);
    border: none !important;
    border-left: 1px solid rgba(255,255,255,0.4) !important;
    border-bottom: 1px solid rgba(255,255,255,0.2) !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background: rgba(0,0,0,0.9);
}

.mean-container .mean-push {
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
    clear: both;
}

.mean-nav .wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
}

/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar, .mean-container .mean-bar * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}


.mean-remove {
    display: none !important;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
}

.main-wrapper {
    max-width: 100%;
    margin: auto;
    width: 1200px;
    background: #ffffff;
}

@media( max-width: 1100px) {
    .main-wrapper {
        width: auto;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', sans-serif;
}

h3 { font-size: 19px;  }

h4 {
    font-size: 19px;
}

h5 {
    font-size: 16px;
}

a {
    color: inherit;
    transition-duration: .6s;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    transition-duration: .6s;
    color: #7ca2b4;
}


.news-content a {
    color:#7ca2b4;
    
}


.section-title,
.sidebar .widget-title {
    font-family: 'Roboto Condensed', sans-serif;
    background: #7ca2b4;
}

.entry-meta a:hover {
    /*color: rgba(244,67,54,1);*/
}

.top-header {
    background-color: rgba(0, 0, 0, 1);
    padding-top: 5px;
    padding-bottom: 5px;
}

.ticker-title-container {
    background-color: #7ca2b4;
    padding: 5px 0px;
}

.ticker-title {
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    margin-top: 0px;
    margin-bottom: 0px;
}

.ticker-detail-container {
    padding: 5px 0px;
}

.ticker-news {
    margin-top: 0px;
    margin-bottom: 0px;
}

.ticker-news a {
    color: rgba(255, 255, 255, 1);
}

.current-date-container,
.social-menu-container {
    float: right;
    text-align: right;
}

.current-date {
    color: rgba(255, 255, 255, 1);
    margin-bottom: 0px;
    margin-top: 0px;
    margin-left: 20px;
    line-height: 24px;
}

.social-menu {
    margin-bottom: 0px;
    margin-left: 0px;
    padding-left: 0px;
}

.social-menu li {
    font-size: 0px;
    float: left;
    margin-left: 15px;
    text-align: center;
}

.social-menu li:last-child {}

.social-menu li a {
    color: rgba(255, 255, 255, 1);
    display: block;
}

.social-menu li a[href*=".com"]::before {
    font-family: 'FontAwesome';
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    line-height: 24px;
}

.social-menu li a[href*="facebook.com"]::before {
    content: "\f09a";
}

.social-menu li a[href*="plus.google.com"]::before {
    content: "\f0d5";
}

.social-menu li a[href*="twitter.com"]::before {
    content: "\f099";
}

.social-menu li a[href*="instagram.com"]::before {
    content: "\f16d";
}

.social-menu li a[href*="youtube.com"]::before {
    content: "\f167";
}



/*
    Middle Header CSS
*/

.middle-header {
    padding-top: 10px;
    padding-bottom: 10px
}

.site-title {
    margin-top: 0px;
    margin-bottom: 0px;
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 10px;
}

.site-description {
    margin-top: 5px;
}




/*
    Bottom Header CSS
*/

.bottom-header {
    border-top: 1px solid rgba(0, 0, 0, .05);
    margin-bottom: 0px;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navigation-menu {
    border: none;
    background-color: transparent;
}

.navbar {
    margin-bottom: 0px;
}

.navbar-collapse {
    padding-right: 0px;
    padding-left: 0px;
}

.navigation-menu .navbar-nav>li>a {
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
    line-height: 22px;
}

.navigation-menu .navbar-nav>li>a:hover,
.navigation-menu .navbar-nav>li>a:focus {
    color: #7ca2b4;
}

.navigation-menu .navbar-nav>.active>a,
.navigation-menu .navbar-nav>.active>a:hover,
.navigation-menu .navbar-nav>.active>a:focus {
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:hover,
.navbar-default .navbar-nav>.open>a:focus {
    background-color: transparent;
}

.navbar-nav>li>.dropdown-menu {
    padding: 0px;
    border-radius: 0px;
}

.dropdown-menu>li>a {
    padding: 10px 20px;
    text-transform: uppercase;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    background-color: transparent;
    color: #7ca2b4;
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    background-color: #7ca2b4;
    color: rgba(255, 255, 255, 1);
}

.dropdown-menu .dropdown-menu {
    left: 100%;
    top: 0;
}

@media( min-width: 767px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
    }
}

.search-container {
    position: relative;
}

.search-icon {
    font-size: 18px;
    line-height: 52px;
    display: block;
    padding: 0px 15px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 0, 0, 1);
}

.search-icon:hover,
.search-icon:focus {
    cursor: pointer;
}

.search-form-container {
    position: relative;
    display: none;
    z-index: 2;
}

.search-form-container .search-form {
    position: absolute;
    right: 0;
    width: 350px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 1);
    border-top: 2px solid #7ca2b4;
    border-bottom: 2px solid #7ca2b4;
    border-left: 2px solid rgba(0, 0, 0, .1);
    border-right: 2px solid rgba(0, 0, 0, .1);
}


.section {
    margin-top: 30px;
}



/*
    Highlight Section CSS
*/

.highlight-section {
    margin-top: 30px;
}

.highlight-left,
.highlight-right {
    position: relative;
    overflow: hidden;
}

.highlight-left img {
    width: 100%;
    transition-duration: .6s;
}

.highlight-left:hover img {
    transform: scale(1.05);
    transition-duration: .6s;
}

.highlight-info .entry-meta a {
    color: rgba(255, 255, 255, .85);
}

.highlight-left .cat-links {
    position: absolute;
    left: 50px;
    top: 30px;
    right: 50px;
}

.highlight-left .cat-links a {
    padding: 5px 10px;
    background-color: #7ca2b4;
    color: rgba(255, 255, 255, 1);
}

.highlight-left .highlight-info {
    position: absolute;
    left: 50px;
    bottom: 50px;
    right: 50px;
    color: rgba(255, 255, 255, 1);
}

.highlight-right-top {
    margin-bottom: 9px;
}

.highlight-right img {
    transition-duration: .6s;
}

.highlight-right:hover img {
    transform: scale(1.05);
    transition-duration: .6s;
}

.highlight-right .cat-links {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
}

.highlight-right .cat-links a {
    padding: 5px 10px;
    background-color: #7ca2b4;
    color: rgba(255, 255, 255, 1);
}

.highlight-right .highlight-info {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 1);
}



/* Slider Highlight */

.highlight-section .no-gutter {
    padding: 0px;
}

.highlight-carousel .news-highlight-content {
    position: relative;
}

.highlight-carousel .owl-item img {
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.highlight-carousel .news-highlight-content .cat-links {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
}

.highlight-carousel .news-highlight-content .cat-links a {
    /* padding: 5px 10px;
    background-color: rgba(244,67,54,1);
    color: rgba(255,255,255,1); */
}

.highlight-carousel .news-highlight-content .highlight-info {
    position: absolute;
    left: 20px;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 1);
}

.highlight-carousel .news-highlight-content:hover .highlight-info .news-title {
    /* color: rgba(244,67,54,1); */
}

.mask {
    position: absolute;
    background-color: rgba(0, 0, 0, .2);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition-duration: .6s;
}

.highlight-left:hover .mask,
.highlight-right:hover .mask,
.highlight-carousel .news-highlight-content:hover .mask {
    background-color: rgba(0, 0, 0, 0);
    transition-duration: .6s;
}

@media ( min-width: 991px) {
    .gutter-right {
        padding-right: 5px;
    }
    .gutter-left {
        padding-left: 5px;
    }
}

@media ( max-width: 991px) {
    .highlight-right-top,
    .highlight-right-bottom {
        margin-top: 10px;
        width: 50%;
        float: left;
    }
    .highlight-right-top {
        margin-top: 10px;
    }
}

@media ( max-width: 767px) {
    .navbar-collapse {
        padding-left: 15px;
        padding-right: 15px;
    }
    .dropdown-menu {
        padding-top: 0px;
        padding-bottom: 0px;
    }
    .navbar-nav .open .dropdown-menu>li>a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navigation-menu .navbar-toggle {
        border: none;
    }
    .navbar-toggle .icon-bar {
        width: 30px;
    }
    .navbar-toggle .icon-bar+.icon-bar {
        margin-top: 6px;
    }
    .navigation-menu .navbar-toggle .icon-bar {
        background-color: #7ca2b4;
    }
    .navigation-menu .navbar-toggle:hover,
    .navigation-menu .navbar-toggle:focus {
        background-color: transparent;
    }
    .highlight-left {
        margin-bottom: 10px;
    }
    .highlight-right img {
        width: 100%;
    }
    .highlight-right-top,
    .highlight-right-bottom {
        width: 100%;
        float: none;
    }
    .highlight-left .cat-links {
        left: 20px;
        right: 20px;
        top: 20px;
    }
    .highlight-left .highlight-info {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}




/*
    News Section CSS
*/

.section-title {
    float: left;
    text-transform: uppercase;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 5px 15px;
}

.underline {
    height: 5px;
    width: 50px;
    background-color: rgba(0, 0, 0, 1);
    margin-top: 10px;
    margin-bottom: 20px;
}

.news-section {
    margin-bottom: 30px;
}

.news-section-info {
    margin-bottom: 20px;
    border-bottom: 3px solid;
}

.news-cat-link {
    float: right;
    text-transform: uppercase;
    line-height: 36px;
    font-weight: bold;
}

.news-section-content {}

.news-image {
    position: relative;
}

.news-detail {
    padding: 10px 10px;
}

.news-detail .entry-meta .cat-links a {
    padding: 0px;
}

.news-detail .entry-meta .cat-links a::after {
    content: ', ';
}

.news-detail .entry-meta .cat-links a:first-child::before {
    content: '\f07c';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.news-detail .entry-meta .cat-links a:last-child::after {
    content: '';
}

.news-title {
    font-weight: bold;
    margin-top: 0px;
    margin-bottom: 10px;
}

.news-title a:hover {
    color: #7ca2b4;
}

.posted-on {
    margin-right: 10px;
}

.posted-on a .entry-date::before,
.entry-meta a .entry-date::before {
    content: '\f017';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.entry-meta .author a::before {
    content: '\f007';
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.cat-links a {
    margin-right: 5px;
    margin-bottom: 5px;
    display: inline-block;
    padding: 5px 10px;
    color: #fff;
}

.cat-links a:first-child::before {
    /*content: '\f07c';
    font-family: 'FontAwesome';
    margin-right: 5px;*/
}

.news-section-two .news-section-content {
    padding-bottom: 0px;
}

.big-news-content {}

.big-news-content .news-image,
.small-news-content .small-thumbnail,
.news-content-top .news-image {
    overflow: hidden;
}

.big-news-content .news-image img,
.small-news-content .small-thumbnail img,
.news-content-top .news-image img {
    transition-duration: 0.6s;
}

.big-news-content:hover .news-image img,
.small-news-content:hover .small-thumbnail img,
.news-content-top:hover .news-image img {
    transform: scale(1.05);
    transition-duration: 0.6s;
}

.big-news-content:hover .news-title a,
.small-news-content:hover .news-title a,
.news-content-top:hover .news-title a {
    color: #7ca2b4;
}

.small-news-content {
    padding-top: 15px;
    padding-bottom: 10px;
    border-top: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 0px;
    /*display: flex;*/
}

.news-image .cat-links {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.news-content {
    margin-top: 10px;
}

.small-news-content .small-thumbnail {
    float: left;
    position: relative;
    /*margin-right: 10px;*/
    flex-basis: auto;
    width: 35%;
}

.small-news-content .small-thumbnail img {
    width: 100%;
}

.small-news-content .news-detail {
    float: left;
    padding-top: 0px;
    padding-right: 10px;
    flex-basis: auto;
    width: 65%;
}

.news-content-top {
    margin-bottom: 15px;
}

.news-section-carousel {
    margin-bottom: 10px;
}

.news-section-carousel .owl-item img {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center;
}

.news-section-carousel .owl-item .news-detail {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.news-section-carousel .owl-item .news-title a {
    color: rgba(255, 255, 255, 1);
}

.news-section-carousel .owl-item .entry-meta a {
    color: rgba(255, 255, 255, .7);
}

.news-section-carousel .owl-item .entry-meta a:hover {
    color: #7ca2b4;
}

.news-section-carousel .owl-item .item:hover .news-title a {
    color: #7ca2b4;
}

.news-section-carousel .owl-nav {
    position: absolute;
    top: 5px;
    right: 5px;
}

.news-section-carousel .owl-nav {
    font-size: 0px;
}

.news-section-carousel .owl-nav .owl-prev,
.news-section-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, .8);
    float: left;
    text-align: center;
    color: #7ca2b4;
    margin-left: 1px;
}

.news-section-carousel .owl-nav .owl-prev::before {
    content: '\f104';
    font-family: 'FontAwesome';
    font-size: 24px;
}

.news-section-carousel .owl-nav .owl-next::after {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 24px;
}

.big-news-content:hover .mask,
.small-news-content:hover .mask,
.news-content-top:hover .mask,
.news-section-carousel .owl-item .item:hover .mask {
    background-color: rgba(0, 0, 0, 0);
    transition-duration: .6s;
}

@media ( min-width: 767px) {
    .small-news-container:first-child .small-news-content {
        padding-top: 0px;
        border-top: none;
    }
    .news-content-top .news-detail {
        padding: 10px 0px;
    }
}

@media ( max-width: 767px) {
    .news-content-top:last-child {
        margin-bottom: 0px;
    }
    .news-section-carousel .owl-item img {
        width: 100%;
    }
}



/*
    Widget
*/

#recentcomments,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_recent_entries ul,
.widget_rew_plugin .rew-entries,
.widget_rss ul {
    margin-left: 0px;
    margin-bottom: 0px;
    padding: 0px 0px;
}

#recentcomments .recentcomments,
.widget_archive ul li,
.widget_categories ul li,
.widget_meta ul li,
.widget_nav_menu ul li,
.widget_pages ul li,
.widget_recent_entries ul li,
.widget_rew_plugin .rew-entries li,
.widget_rss ul li {
    list-style: none;
}

.widget_rew_plugin .rew-entries li p {
    margin-bottom: 0px;
}

.widget_nav_menu ul li.menu-item-has-children {
    border-bottom: none;
    padding-bottom: 0px;
}

.widget_nav_menu ul li.menu-item-has-children .sub-menu {
    margin-top: 8px;
}

.widget_nav_menu ul li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.widget_archive select,
.widget_categories select {
    height: 35px;
    width: 100%;
    margin-top: 8px;
    margin-bottom: 8px;
    padding: 8px 15px;
    border: 1px solid rgba(0, 0, 0, .08);
}

.widget_media_video div.wp-video,
.widget_media_audio div.mejs-audio,
.widget_media_image img.image,
.widget_tag_cloud div.tagcloud,
.widget_search .search-form,
.widget_calendar .calendar_wrap,
.widget_text .textwidget {
    margin-top: 15px;
}

.widget_tag_cloud .tagcloud .tag-cloud-link {
    font-size: 14px !important;
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 8px;
}

.widget_calendar .calendar_wrap table {
    border: 1px solid rgba(0, 0, 0, .08);
}

.widget_calendar .calendar_wrap table caption {
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, .08);
    border-bottom: none;
    padding-left: 15px;
}

.widget_calendar .calendar_wrap table thead tr {
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.widget_calendar .calendar_wrap table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.widget_calendar .calendar_wrap table tfoot tr td {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 15px;
}

.widget_calendar .calendar_wrap table thead tr th,
.widget_calendar .calendar_wrap table tbody tr td {
    padding: 5px;
    text-align: center;
    border-left: 1px solid rgba(0, 0, 0, .08);
}

#searchsubmit {
    padding: 4px 15px;
    border-radius: 0px;
    border-left: 0px;
}

.input-group-addon {
    padding: 0px;
    border: none;
    border-radius: 0px;
    line-height: 24px;
}

.widget a:hover {
    color: #7ca2b4;
}

.widget_media_gallery img.attachment-thumbnail.size-thumbnail {
    width: 100%;
}

.widget.widget_archive ul li a::before {
    content: '\f187';
    font-family: 'FontAwesome';
    margin-right: 10px;
    margin-bottom: 10px;
}

.widget.widget_categories ul li a::before {
    content: '\f02e';
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.widget .recentcomments::before {
    content: '\f075';
    font-family: 'FontAwesome';
    margin-right: 10px;
    margin-bottom: 10px;
}

.widget.widget_pages ul li a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.widget.widget_meta ul li a::before {
    content: '\f0c1';
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.widget.widget_recent_entries ul li a::before {
    content: '\f044';
    font-family: 'FontAwesome';
    margin-right: 10px;
}

.widget.widget_rss ul li a::before {
    content: '\f09e';
    font-family: 'FontAwesome';
    margin-right: 10px;
}



/*
    Sidebar
*/

.sidebar .widget {
    margin-bottom: 30px;
}

.sidebar .widget-info {
    margin-bottom: 20px;
    border-bottom: 3px solid;
}

.sidebar .widget-title {
    float: left;
    text-transform: uppercase;
    color: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 5px 15px;
}

.sidebar .widget-content {
    margin-top: 15px;
}

.sidebar #recentcomments .recentcomments,
.sidebar .widget_archive ul li,
.sidebar .widget_categories ul li,
.sidebar .widget_meta ul li,
.sidebar .widget_nav_menu ul li,
.sidebar .widget_pages ul li,
.sidebar .widget_recent_entries ul li,
.sidebar .rew-entries li,
.sidebar .widget_rss ul li {
    padding: 8px 0px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.sidebar .widget_archive select,
.sidebar .widget_categories select {
    padding: 8px 15px;
}

.sidebar .widget_tag_cloud .tagcloud .tag-cloud-link {
    border: 1px solid rgba(0, 0, 0, .08);
}

.sidebar .widget_calendar .calendar_wrap table {
    border: 1px solid rgba(0, 0, 0, .08);
}

.sidebar .widget_calendar .calendar_wrap table caption {
    border: 1px solid rgba(0, 0, 0, .08);
}

.sidebar .widget_calendar .calendar_wrap table thead tr {
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.sidebar .widget_calendar .calendar_wrap table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.sidebar .widget_calendar .calendar_wrap table thead tr th,
.sidebar .widget_calendar .calendar_wrap table tbody tr td {
    border-left: 1px solid rgba(0, 0, 0, .08);
}




/* Footer */

.footer {
    background-color: #c9a1aa;
    padding-top: 10px;
    color: rgba(255, 255, 255, 1);
}

.footer .widget {
    margin-bottom: 30px;
}

.footer .widget-info {
    margin-bottom: 15px;
}

.footer .widget-title {
    text-transform: uppercase;
    font-weight: bold;
    color: #7ca2b4;
    margin-top: 0px;
    margin-bottom: 0px;
}

.footer .widget-content {
    margin-top: 30px;
}

.footer .widget-content .small-news-content {
    padding-bottom: 0px;
}

.footer .widget-content .small-news-content .news-title {
    /*color: rgba(189,189,189,1);*/
}

.footer .widget-content .small-news-content .entry-meta a {
    /*color: rgba(255,255,255,.8); */
}

.footer #recentcomments .recentcomments,
.footer .widget_archive ul li,
.footer .widget_categories ul li,
.footer .widget_meta ul li,
.footer .widget_nav_menu ul li,
.footer .widget_pages ul li,
.footer .widget_recent_entries ul li,
.footer .widget_rew_plugin .rew-entries li,
.footer .widget_rss ul li {
    padding: 8px 0px;
    border-bottom: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_nav_menu ul li.menu-item-has-children .sub-menu {
    padding-left: 15px;
}

.widget_nav_menu ul li.menu-item-has-children {
    border-bottom: none;
    padding-bottom: 0px;
}

.widget_nav_menu ul li.menu-item-has-children .sub-menu li:first-child {
    border-top: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_tag_cloud .tagcloud .tag-cloud-link {
    border: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_calendar .calendar_wrap table caption {
    border: 1px solid rgba(117, 117, 117, 1);
    color: rgba(255, 255, 255, 1);
}

.footer .widget_calendar .calendar_wrap table thead tr {
    border-top: 1px solid rgba(117, 117, 117, 1);
    border-bottom: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_calendar .calendar_wrap table tbody tr {
    border-bottom: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_calendar .calendar_wrap table thead tr th,
.footer .widget_calendar .calendar_wrap table tbody tr td {
    border-left: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_calendar .calendar_wrap table thead tr th:last-child,
.footer .widget_calendar .calendar_wrap table tbody tr td:last-child {
    border-right: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_calendar .calendar_wrap table tfoot {
    border: 1px solid rgba(117, 117, 117, 1);
}

.footer .widget_tag_cloud div.tagcloud {
    margin-top: 30px;
}

.copyright-text { font-family: 'Roboto Condensed', sans-serif;  }

.footer-menu {
    margin-bottom: 0px;
    margin-top: 10px;
}

@media ( min-width: 767px) {
    .footer-menu {
        float: right;
    }
}

.footer-menu li {
    float: left;
    list-style: none;
    margin-left: 15px;
}

.footer-menu li a {}







/*
    Blog Page
*/

.archive-section-content {
    margin-bottom: 30px;
}

.archive-section-content:last-child {
    margin-bottom: 0px;
}

.archive-news-content .news-image {
    position: relative;
    overflow: hidden;
}

.archive-news-content .news-image img {
    transition-duration: .6s;
}

.archive-news-content .news-image .cat-links {
    position: absolute;
    left: 20px;
    top: 20px;
    right: 20px;
}



/* .archive-news-content .news-image .cat-links a {
    padding: 5px 10px;
    background-color: rgba(244,67,54,1);
    color: rgba(255,255,255,1);
}
.archive-news-content .news-image .cat-links a:first-child::before {
    content: '';
} */

.archive-news-content .news-content .btn-more {
    /*background-color: rgba(244,67,54,1);
    color: rgba(255,255,255,1);*/
    color: #7ca2b4;
    /*padding: 5px 10px;
    border-radius: 30px;*/
}

.archive-news-content:hover .news-image .mask {
    background-color: rgba(0, 0, 0, 0);
    transition-duration: .6s;
}

.archive-news-content:hover .news-image img {
    transform: scale(1.05);
    transition-duration: .6s;
}



/*
    Breadcrumb
*/

.breadcrumb {
    margin-top: 30px;
    background-color: #000;
    margin-bottom: 0px;
    background-position: center;
    background-size: cover;
    position: relative;
    border-radius: 0px;
}

.breadcrumbs .trail-items {
    margin: 0px;
    padding: 0px;
}

.breadcrumbs li {
    list-style: none;
    float: left;
}

.breadcrumbs li::after {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 14px;
    margin-right: 15px;
    margin-left: 15px;
    color: rgba(255, 255, 255, 1);
}

.breadcrumbs li:last-child::after {
    content: '';
    font-size: 0px;
    position: absolute;
}

.breadcrumbs li a {
    color: rgba(255, 255, 255, 1);
}

.trail-end {
    color: rgba(255, 255, 255, 1);
}



/*
    Pagination
*/

.pagination {
    margin-top: 30px;
    margin-bottom: 0px;
}

.post-navigation {
    margin-top: 15px;
}

.nav-links {
    text-align: center;
    overflow: auto;
}

.page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: rgba(255, 255, 255, 1);
    color: #7ca2b4;
    text-decoration: none;
    float: left;
    margin-right: 5px;
    transition: .6s;
    border: 1px solid #7ca2b4;
}

.next.page-numbers,
.prev.page-numbers {
    font-size: 0px;
}



/*.prev.page-numbers {
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
}
.next.page-numbers {
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
}*/

.prev.page-numbers:before {
    content: '\f177';
    font-family: 'FontAwesome';
    font-size: 14px;
}

.next.page-numbers:before {
    content: '\f178';
    font-family: 'FontAwesome';
    font-size: 14px;
}

.page-numbers.current {
    background-color: #7ca2b4;
    color: rgba(255, 255, 255, 1);
}

.page-numbers:hover,
.page-numbers:focus {
    transition: .6s;
    background-color: #7ca2b4;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
    color: #7ca2b4;
    text-decoration: none;
}

.post-navigation .nav-links .nav-previous a::before {
    content: '\f177';
    font-family: 'FontAwesome';
    font-size: 14px;
    margin-right: 5px;
}

.post-navigation .nav-links .nav-next a::after {
    content: '\f178';
    font-family: 'FontAwesome';
    font-size: 14px;
    margin-left: 5px;
}

.nav-links .nav-previous {
    float: left;
    text-align: left;
}

.nav-links .nav-next {
    float: right;
    text-align: right;
}



/*
    Scroll Top
*/

.scroll-top {
    position: fixed;
    bottom: 0;
    right: 0;
    padding: 5px 15px;
    color: #7ca2b4;
    border: 1px solid #7ca2b4;
    /*transition-duration: .6s;*/
    font-size: 18px;
    display: none;
}

.scroll-top:hover,
.scroll-top:focus {
    background-color: #7ca2b4;
    color: rgba(255, 255, 255, 1);
    transition-duration: .6s;
}



/*
    Post Page
*/

.single-news-content {}

.single-news-content .cat-links {
    margin-left: 15px;
}

.single-news-content .news-image {
    margin-bottom: 15px;
}



/*
    404 Page
*/

.error-404 {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 40px;
}

.page-header {
    margin: 0px;
    /*border: none;*/
    /*margin-bottom: 20px;*/
}

.title-404 {
    font-size: 90px;
    margin-top: 0px;
    color: rgba(255, 87, 34, 1);
}

.subtitle-404 {}



/*
    Comment Form
*/

.comments-area {
    margin-top: 50px;
}

.comments-area a:hover,
.comments-area a:focus {
    color: rgba(255, 87, 34, 1);
}

.comment-list {
    padding-left: 0px;
    margin-left: 0px;
    margin-top: 20px;
}

.comments-title {
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-bottom: 10px;
}

.comments-title::after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.comment .children {
    margin-top: 20px;
}

.comment-body {
    margin-bottom: 15px;
}

.avatar {
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}

b.fn {
    font-size: 18px;
    margin-bottom: 5px;
}

.comment-content {
    clear: both;
    margin-left: 75px;
}

.reply {
    margin-left: 75px;
}

.reply-title {
    text-transform: uppercase;
    font-weight: bold;
}

.submit-btn {
    margin-top: 5px;
    /*border-color: rgba(244,67,54,1);*/
    /*color: rgba(244,67,54,1);*/
    transition-duration: .6s;
}

.submit-btn:hover,
.submit-btn:focus {
    background-color: #7ca2b4;
    border-color: rgba(255, 255, 255, 1);
    color: rgba(255, 255, 255, 1);
    transition-duration: .6s;
}

.form-input {
    display: block;
    width: 100%;
    height: 35px;
}

.comment-respond {
    margin-top: 40px;
}



/*
    Custom Sidebar Widget
*/

.footer .widget-social-links .social-links-list {
    margin-top: 30px;
}

.widget-social-links .social-links-list {
    padding-left: 0px;
    margin-left: 0px;
    list-style: none;
}

.widget-social-links .social-links-list li a {
    padding: 8px 5px 8px 15px;
    border: 1px solid #eee;
    margin-bottom: 7px;
    display: block;
    transition: .6s;
}

.widget-social-links .social-links-list li a span.social-icon {
    text-align: center;
    float: right;
    width: 40px;
    border-left: 1px dotted #eee;
}

.widget-social-links .social-links-list li.facebook-link:hover a {
    background-color: #4267b2;
    transition: .6s;
    color: #fff;
}

.widget-social-links .social-links-list li.twitter-link:hover a {
    background-color: #48AAE6;
    transition: .6s;
    color: #fff;
}

.widget-social-links .social-links-list li.googleplus-link:hover a {
    background-color: #db4437;
    transition: .6s;
    color: #fff;
}

.widget-social-links .social-links-list li.instagram-link:hover a {
    background-color: #DC336E;
    transition: .6s;
    color: #fff;
}

.widget-social-links .social-links-list li.linkedin-link:hover a {
    background-color: #0077B5;
    transition: .6s;
    color: #fff;
}

.widget-social-links .social-links-list li.snapchat-link:hover a {
    background-color: #FFFC00;
    transition: .6s;
    color: #fff;
}

.widget-social-links .social-links-list li.youtube-link:hover a {
    background-color: #e00000;
    transition: .6s;
    color: #fff;
}



/* Main Navigation */

.mean-container .mean-bar {
    background-color: transparent;
}

.mean-container a.meanmenu-reveal span {
    background-color: #000;
    width: 27px;
    height: 2px;
    margin-top: 9px;
}

.mean-container a.meanmenu-reveal span:first-child {
    margin-top: 0px;
}

.mean-container a.meanmenu-reveal.meanclose {
    font-size: 0px !important;
    transition-duration: 0s;
}

.mean-container a.meanmenu-reveal.meanclose::before {
    content: url('../images/close-btn.png');
}

.main-navigation .primary-menu li a {
    padding: 16px 20px;
    display: block;
    text-transform: uppercase;
}

.main-navigation .primary-menu li.menu-item-has-children {}

.main-navigation .primary-menu li.menu-item-has-children>a::after {
    content: '\f107';
    margin-left: 5px;
    font-family: 'FontAwesome';
}

.main-navigation .primary-menu li .sub-menu li a:hover,
.main-navigation .primary-menu li .sub-menu li a:focus {
    color: #7ca2b4;
}

.main-navigation .primary-menu li.current-menu-item>a,
.main-navigation .primary-menu li.current-menu-item>a:hover,
.main-navigation .primary-menu li.current-menu-item>a:focus,
.main-navigation .primary-menu li .sub-menu .current-menu-item a,
.main-navigation .primary-menu li .sub-menu .current-menu-item a:hover,
.main-navigation .primary-menu li .sub-menu .current-menu-item a:focus {
    color: #fff;
    background-color: #7ca2b4;
}

.main-navigation ul ul {
    margin-top: 10px;
    opacity: 0;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li:focus>ul {
    margin-top: 0px;
    opacity: 1;
    transition-duration: .3s;
    transition-timing-function: ease-in;
}

.main-navigation .primary-menu li .sub-menu li a {
    background-color: #000;
    color: #fff;
}

.main-navigation ul ul ul {
    left: 100%;
}

.main-navigation ul ul li ul {
    margin-left: 10px;
    opacity: 0;
    transition-duration: .3s;
    transition-timing-function: ease-out;
}

.main-navigation ul ul li:hover>ul,
.main-navigation ul ul li:focus>ul {
    margin-top: 0px;
    margin-left: 0px;
    opacity: 1;
    transition-duration: .3s;
    transition-timing-function: ease-in;
}

.mean-container .mean-nav ul>li>a {
    padding: 15px 30px;
    border: none;
}

.mean-container .mean-nav ul li li a {
    border: none;
}

.mean-container .mean-nav ul li a.mean-expand {
    height: 25px;
    border: none !important;
    background-color: transparent;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
    background-color: transparent;
}



/*
    Featured Highlight Two
*/

.highlight-left-carousel {
    position: relative;
}

.highlight-left-carousel .owl-nav {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0px;
}

.highlight-left-carousel .owl-nav .owl-prev,
.highlight-left-carousel .owl-nav .owl-next {
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 1);
    float: left;
    text-align: center;
    color: rgba(0, 0, 0, 1);
    margin-left: 1px;
}

.highlight-left-carousel .owl-nav .owl-prev::before {
    content: '\f104';
    font-family: 'FontAwesome';
    font-size: 24px;
}

.highlight-left-carousel .owl-nav .owl-next::after {
    content: '\f105';
    font-family: 'FontAwesome';
    font-size: 24px;
}

.highlight-left:hover .highlight-fimg img {
    transform: none;
}



/*
    Bottom News Section
*/

.bottom-news-content .big-news-content .news-image .news-detail {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

.bottom-news-content .small-news-content {
    padding-top: ;
    border-top: none;
}


/*
 Media query for mobile device
 */

@media (max-width: 550px) {


    .small-news-content .small-thumbnail {

        float: none;
        width: 100%;
    }

    .small-news-content .news-detail {

        float: none;
        width: 100%;
        padding: 10px 0 0;
    }
}



#titre_commentaire, #titre_form_commentaire { font-size: 1.5em; line-height: 1.2em; margin:45px 0 30px 0; display: block; }
#titre_form_commentaire { margin: 15px 0 15px 0; }
#titre_commentaire a { float: right; font-size: 0.75em; }
.commentaire { margin: 0 0 15px 0; }
.commentaire_pseudo, .commentaire_date { color: #c9c9c9; font-size: 0.9em; }
.commentaire_pseudo { font-weight: bold; color: #d46d79; }
.commentaire_date { float: right; font-style: italic; }
.commentaire_content { margin: 5px 0 0 0; padding: 10px; background: #f3f3f3; -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; border-bottom:3px solid #e4e4e4; text-shadow:1px 1px 0 #FFF; }

#form_commentaire p { margin: 0 0 5px 0; }
#form_commentaire label { float: left; width: 255px; text-align: left; }
#form_commentaire input[type="text"] { width: 250px; }
#form_commentaire #captcha { width: 75px; float: left; margin-right: 10px ; }
#form_commentaire #label_captcha {  display: inline-block; float: none; margin: 7px 0 0 20px; }
#captcha_code { background: #e5e5e5; padding: 3px 6px 3px 6px; color:#505050; text-shadow: 0px 1px 0 #FFF; border-bottom:1px solid #a0a0a0; border-right:1px solid #a0a0a0; -webkit-border-radius: 3px;border-radius: 3px; }

#pagination { width: 450px; clear: both; text-align: center; margin: 5px auto 15px auto; height: 40px; overflow: auto; }
#pagination strong { padding: 0 7px 0 7px; }
#pagination a { color: #616161; background:#f2f2f2; border:1px solid #dbdbdb; padding: 2px 8px 5px 8px; display: inline-block; height: 30px; text-decoration: none; margin-right:5px; } /* changer ici */
#pagination a:hover { color: #FFF; text-decoration: none; border-color: #7ca2b4; background: #7ca2b4; }


div.confirmation li:before, div.erreur li:before, div.information li:before { display: none; }

div.confirmation li, div.erreur li, div.information li { margin: 0; }

div.confirmation, div.erreur, div.information {
  background:url(../img/admin/mini-icone-confirmation.png) no-repeat 10px center, #d5eebe;
  background:url(../img/admin/mini-icone-confirmation.png) no-repeat 10px center, -moz-linear-gradient(top, #eeffde 0%, #d5eebe 100%);
  background:url(../img/admin/mini-icone-confirmation.png) no-repeat 10px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eeffde), color-stop(100%,#d5eebe));
  background:url(../img/admin/mini-icone-confirmation.png) no-repeat 10px center, -o-linear-gradient(top, #eeffde 0%,#d5eebe 100%);
  background:url(../img/admin/mini-icone-confirmation.png) no-repeat 10px center, -ms-linear-gradient(top, #eeffde 0%,#d5eebe 100%);
  background:url(../img/admin/mini-icone-confirmation.png) no-repeat 10px center, linear-gradient(to bottom, #eeffde 0%,#d5eebe 100%);
  border:1px solid #a6d877;
  box-shadow: inset 0 1px 0 #FFF, 1px 1px 0px #FFF;
  color:#336801;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin:0 0 12px 0;
  padding:7px 0 7px 45px;
}
div.erreur {
  background:url(../img/admin/mini-icone-erreur.png) no-repeat 10px center #facccc;
  background:url(../img/admin/mini-icone-erreur.png) no-repeat 10px center, -moz-linear-gradient(top, #ffeaea 0%, #facccc 100%);
  background:url(../img/admin/mini-icone-erreur.png) no-repeat 10px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffeaea), color-stop(100%,#facccc));
  background:url(../img/admin/mini-icone-erreur.png) no-repeat 10px center, -o-linear-gradient(top, #ffeaea 0%,#facccc 100%);
  background:url(../img/admin/mini-icone-erreur.png) no-repeat 10px center, -ms-linear-gradient(top, #ffeaea 0%,#facccc 100%);
  background:url(../img/admin/mini-icone-erreur.png) no-repeat 10px center, linear-gradient(to bottom, #ffeaea 0%,#facccc 100%);
  color:#8d0d0d;
  border-color:#f3abab;
}
div.information {
  background:url(../img/admin/mini-icone-information.png) no-repeat 10px center, #c7e8ff;
  background:url(../img/admin/mini-icone-information.png) no-repeat 10px center, -moz-linear-gradient(top, #eaf7ff 0%, #c7e8ff 100%);
  background:url(../img/admin/mini-icone-information.png) no-repeat 10px center, -webkit-gradient(linear, left top, left bottom, color-stop(0%,#eaf7ff), color-stop(100%,#c7e8ff));
  background:url(../img/admin/mini-icone-information.png) no-repeat 10px center, -o-linear-gradient(top, #eaf7ff 0%,#c7e8ff 100%);
  background:url(../img/admin/mini-icone-information.png) no-repeat 10px center, -ms-linear-gradient(top, #eaf7ff 0%,#c7e8ff 100%);
  background:url(../img/admin/mini-icone-information.png) no-repeat 10px center, linear-gradient(to bottom, #eaf7ff 0%,#c7e8ff 100%);
  color:#005898;
  border-color:#9fd1f5;
}
div.confirmation a, div.erreur a, div.information a { text-decoration: underline; }
div.confirmation a:hover, div.erreur a:hover, div.information a:hover { text-decoration: none; }